Compare commits
1 Commits
implement_
...
niklas/imp
| Author | SHA1 | Date | |
|---|---|---|---|
| af152bf835 |
178
.gitignore
vendored
Normal file
178
.gitignore
vendored
Normal file
@@ -0,0 +1,178 @@
|
|||||||
|
# Allmende EMS specifics
|
||||||
|
terminal_log
|
||||||
|
modbus_log.csv
|
||||||
|
|
||||||
|
# Byte-compiled / optimized / DLL files
|
||||||
|
__pycache__/
|
||||||
|
*.py[cod]
|
||||||
|
*$py.class
|
||||||
|
|
||||||
|
# C extensions
|
||||||
|
*.so
|
||||||
|
|
||||||
|
# Distribution / packaging
|
||||||
|
.Python
|
||||||
|
build/
|
||||||
|
develop-eggs/
|
||||||
|
dist/
|
||||||
|
downloads/
|
||||||
|
eggs/
|
||||||
|
.eggs/
|
||||||
|
lib/
|
||||||
|
lib64/
|
||||||
|
parts/
|
||||||
|
sdist/
|
||||||
|
var/
|
||||||
|
wheels/
|
||||||
|
share/python-wheels/
|
||||||
|
*.egg-info/
|
||||||
|
.installed.cfg
|
||||||
|
*.egg
|
||||||
|
MANIFEST
|
||||||
|
|
||||||
|
# PyInstaller
|
||||||
|
# Usually these files are written by a python script from a template
|
||||||
|
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
||||||
|
*.manifest
|
||||||
|
*.spec
|
||||||
|
|
||||||
|
# Installer logs
|
||||||
|
pip-log.txt
|
||||||
|
pip-delete-this-directory.txt
|
||||||
|
|
||||||
|
# Unit test / coverage reports
|
||||||
|
htmlcov/
|
||||||
|
.tox/
|
||||||
|
.nox/
|
||||||
|
.coverage
|
||||||
|
.coverage.*
|
||||||
|
.cache
|
||||||
|
nosetests.xml
|
||||||
|
coverage.xml
|
||||||
|
*.cover
|
||||||
|
*.py,cover
|
||||||
|
.hypothesis/
|
||||||
|
.pytest_cache/
|
||||||
|
cover/
|
||||||
|
|
||||||
|
# Translations
|
||||||
|
*.mo
|
||||||
|
*.pot
|
||||||
|
|
||||||
|
# Django stuff:
|
||||||
|
*.log
|
||||||
|
local_settings.py
|
||||||
|
db.sqlite3
|
||||||
|
db.sqlite3-journal
|
||||||
|
|
||||||
|
# Flask stuff:
|
||||||
|
instance/
|
||||||
|
.webassets-cache
|
||||||
|
|
||||||
|
# Scrapy stuff:
|
||||||
|
.scrapy
|
||||||
|
|
||||||
|
# Sphinx documentation
|
||||||
|
docs/_build/
|
||||||
|
|
||||||
|
# PyBuilder
|
||||||
|
.pybuilder/
|
||||||
|
target/
|
||||||
|
|
||||||
|
# Jupyter Notebook
|
||||||
|
.ipynb_checkpoints
|
||||||
|
|
||||||
|
# IPython
|
||||||
|
profile_default/
|
||||||
|
ipython_config.py
|
||||||
|
|
||||||
|
# pyenv
|
||||||
|
# For a library or package, you might want to ignore these files since the code is
|
||||||
|
# intended to run in multiple environments; otherwise, check them in:
|
||||||
|
# .python-version
|
||||||
|
|
||||||
|
# pipenv
|
||||||
|
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
|
||||||
|
# However, in case of collaboration, if having platform-specific dependencies or dependencies
|
||||||
|
# having no cross-platform support, pipenv may install dependencies that don't work, or not
|
||||||
|
# install all needed dependencies.
|
||||||
|
#Pipfile.lock
|
||||||
|
|
||||||
|
# UV
|
||||||
|
# Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control.
|
||||||
|
# This is especially recommended for binary packages to ensure reproducibility, and is more
|
||||||
|
# commonly ignored for libraries.
|
||||||
|
#uv.lock
|
||||||
|
|
||||||
|
# poetry
|
||||||
|
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
|
||||||
|
# This is especially recommended for binary packages to ensure reproducibility, and is more
|
||||||
|
# commonly ignored for libraries.
|
||||||
|
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
|
||||||
|
#poetry.lock
|
||||||
|
|
||||||
|
# pdm
|
||||||
|
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
|
||||||
|
#pdm.lock
|
||||||
|
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
|
||||||
|
# in version control.
|
||||||
|
# https://pdm.fming.dev/latest/usage/project/#working-with-version-control
|
||||||
|
.pdm.toml
|
||||||
|
.pdm-python
|
||||||
|
.pdm-build/
|
||||||
|
|
||||||
|
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
|
||||||
|
__pypackages__/
|
||||||
|
|
||||||
|
# Celery stuff
|
||||||
|
celerybeat-schedule
|
||||||
|
celerybeat.pid
|
||||||
|
|
||||||
|
# SageMath parsed files
|
||||||
|
*.sage.py
|
||||||
|
|
||||||
|
# Environments
|
||||||
|
.env
|
||||||
|
.venv
|
||||||
|
env/
|
||||||
|
venv/
|
||||||
|
ENV/
|
||||||
|
env.bak/
|
||||||
|
venv.bak/
|
||||||
|
|
||||||
|
# Spyder project settings
|
||||||
|
.spyderproject
|
||||||
|
.spyproject
|
||||||
|
|
||||||
|
# Rope project settings
|
||||||
|
.ropeproject
|
||||||
|
|
||||||
|
# mkdocs documentation
|
||||||
|
/site
|
||||||
|
|
||||||
|
# mypy
|
||||||
|
.mypy_cache/
|
||||||
|
.dmypy.json
|
||||||
|
dmypy.json
|
||||||
|
|
||||||
|
# Pyre type checker
|
||||||
|
.pyre/
|
||||||
|
|
||||||
|
# pytype static type analyzer
|
||||||
|
.pytype/
|
||||||
|
|
||||||
|
# Cython debug symbols
|
||||||
|
cython_debug/
|
||||||
|
|
||||||
|
# PyCharm
|
||||||
|
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
|
||||||
|
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
|
||||||
|
# and can be added to the global gitignore or merged into this file. For a more nuclear
|
||||||
|
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
|
||||||
|
.idea/
|
||||||
|
|
||||||
|
# Ruff stuff:
|
||||||
|
.ruff_cache/
|
||||||
|
|
||||||
|
# PyPI configuration file
|
||||||
|
.pypirc
|
||||||
3
.idea/.gitignore
generated
vendored
3
.idea/.gitignore
generated
vendored
@@ -1,3 +0,0 @@
|
|||||||
# Default ignored files
|
|
||||||
/shelf/
|
|
||||||
/workspace.xml
|
|
||||||
15
.idea/inspectionProfiles/Project_Default.xml
generated
15
.idea/inspectionProfiles/Project_Default.xml
generated
@@ -1,15 +0,0 @@
|
|||||||
<component name="InspectionProjectProfileManager">
|
|
||||||
<profile version="1.0">
|
|
||||||
<option name="myName" value="Project Default" />
|
|
||||||
<inspection_tool class="PyPackageRequirementsInspection" enabled="true" level="WARNING" enabled_by_default="true">
|
|
||||||
<option name="ignoredPackages">
|
|
||||||
<value>
|
|
||||||
<list size="2">
|
|
||||||
<item index="0" class="java.lang.String" itemvalue="pandas" />
|
|
||||||
<item index="1" class="java.lang.String" itemvalue="Pyomo" />
|
|
||||||
</list>
|
|
||||||
</value>
|
|
||||||
</option>
|
|
||||||
</inspection_tool>
|
|
||||||
</profile>
|
|
||||||
</component>
|
|
||||||
6
.idea/inspectionProfiles/profiles_settings.xml
generated
6
.idea/inspectionProfiles/profiles_settings.xml
generated
@@ -1,6 +0,0 @@
|
|||||||
<component name="InspectionProjectProfileManager">
|
|
||||||
<settings>
|
|
||||||
<option name="USE_PROJECT_PROFILE" value="false" />
|
|
||||||
<version value="1.0" />
|
|
||||||
</settings>
|
|
||||||
</component>
|
|
||||||
6
.idea/misc.xml
generated
6
.idea/misc.xml
generated
@@ -1,6 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<project version="4">
|
|
||||||
<component name="Black">
|
|
||||||
<option name="sdkName" value="Python 3.12 (waermepumpen_logger)" />
|
|
||||||
</component>
|
|
||||||
</project>
|
|
||||||
8
.idea/modules.xml
generated
8
.idea/modules.xml
generated
@@ -1,8 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<project version="4">
|
|
||||||
<component name="ProjectModuleManager">
|
|
||||||
<modules>
|
|
||||||
<module fileurl="file://$PROJECT_DIR$/.idea/waermepumpen_logger.iml" filepath="$PROJECT_DIR$/.idea/waermepumpen_logger.iml" />
|
|
||||||
</modules>
|
|
||||||
</component>
|
|
||||||
</project>
|
|
||||||
6
.idea/vcs.xml
generated
6
.idea/vcs.xml
generated
@@ -1,6 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<project version="4">
|
|
||||||
<component name="VcsDirectoryMappings">
|
|
||||||
<mapping directory="$PROJECT_DIR$" vcs="Git" />
|
|
||||||
</component>
|
|
||||||
</project>
|
|
||||||
8
.idea/waermepumpen_logger.iml
generated
8
.idea/waermepumpen_logger.iml
generated
@@ -1,8 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<module type="PYTHON_MODULE" version="4">
|
|
||||||
<component name="NewModuleRootManager">
|
|
||||||
<content url="file://$MODULE_DIR$" />
|
|
||||||
<orderEntry type="jdk" jdkName="Python 3.12 (waermepumpen_logger)" jdkType="Python SDK" />
|
|
||||||
<orderEntry type="sourceFolder" forTests="false" />
|
|
||||||
</component>
|
|
||||||
</module>
|
|
||||||
38
README
38
README
@@ -11,42 +11,10 @@ Was needs to be done on the Raspberry pi before the tool can run.
|
|||||||
- pip install -r requirements.txt
|
- pip install -r requirements.txt
|
||||||
|
|
||||||
|
|
||||||
3) How to run the script for testing:
|
How to run the script:
|
||||||
|
|
||||||
nohup python main.py > terminal_log 2>&1 &
|
- nohup python main.py > terminal_log 2>&1 &
|
||||||
|
|
||||||
For reading out the terminal_log while script is runing:
|
For reading out the terminal_log while script is runing:
|
||||||
|
|
||||||
tail -f terminal_log
|
- tail -f terminal_log
|
||||||
|
|
||||||
|
|
||||||
4) Implement and run the ems as systemd service:
|
|
||||||
create:
|
|
||||||
/etc/systemd/system/allmende_ems.service
|
|
||||||
|
|
||||||
insert:
|
|
||||||
[Unit]
|
|
||||||
Description=Allmende EMS Python Script
|
|
||||||
After=network.target
|
|
||||||
|
|
||||||
[Service]
|
|
||||||
WorkingDirectory=/home/pi/projects/allmende_ems
|
|
||||||
ExecStart=/home/pi/allmende_ems/bin/python3.11 /home/pi/projects/allmende_ems/main.py
|
|
||||||
Restart=always
|
|
||||||
RestartSec=5
|
|
||||||
StandardOutput=journal
|
|
||||||
StandardError=journal
|
|
||||||
|
|
||||||
[Install]
|
|
||||||
WantedBy=multi-user.target
|
|
||||||
|
|
||||||
manage the service with the following commands:
|
|
||||||
Once:
|
|
||||||
sudo systemctl daemon-reload
|
|
||||||
sudo systemctl start allmende_ems.service
|
|
||||||
sudo systemctl enable allmende_ems.service
|
|
||||||
While running:
|
|
||||||
sudo systemctl status allmende_ems.service
|
|
||||||
sudo systemctl restart allmende_ems.service
|
|
||||||
sudo systemctl stop allmende_ems.service
|
|
||||||
journalctl -u allmende_ems.service
|
|
||||||
|
|||||||
@@ -1,31 +0,0 @@
|
|||||||
from pymodbus.client import ModbusTcpClient
|
|
||||||
|
|
||||||
def write_coils(ip):
|
|
||||||
# IP und Port der Wärmepumpe
|
|
||||||
port = 502
|
|
||||||
client = ModbusTcpClient(ip, port=port)
|
|
||||||
|
|
||||||
if not client.connect():
|
|
||||||
print("Verbindung zur Wärmepumpe fehlgeschlagen.")
|
|
||||||
return
|
|
||||||
|
|
||||||
try:
|
|
||||||
# Coil 300 = Kommunikation über Bus aktivieren (1)
|
|
||||||
response_300 = client.write_coil(300, True)
|
|
||||||
# Coil 301 = SG Ready Stufe 1 aktivieren (1)
|
|
||||||
response_301 = client.write_coil(301, False)
|
|
||||||
# Coil 302 = SG Ready Stufe 2 deaktivieren (0)
|
|
||||||
response_302 = client.write_coil(302, False)
|
|
||||||
|
|
||||||
# Optional: Rückmeldungen prüfen
|
|
||||||
for addr, resp in zip([300, 301, 302], [response_300, response_301, response_302]):
|
|
||||||
if resp.isError():
|
|
||||||
print(f"Fehler beim Schreiben von Coil {addr}: {resp}")
|
|
||||||
else:
|
|
||||||
print(f"Coil {addr} erfolgreich geschrieben.")
|
|
||||||
|
|
||||||
finally:
|
|
||||||
client.close()
|
|
||||||
|
|
||||||
# Testaufruf mit IP-Adresse deiner Wärmepumpe
|
|
||||||
write_coils("10.0.0.10") # <-- IP-Adresse hier anpassen
|
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
46
data_base_csv.py
Normal file
46
data_base_csv.py
Normal file
@@ -0,0 +1,46 @@
|
|||||||
|
import csv
|
||||||
|
import os
|
||||||
|
import tempfile
|
||||||
|
import shutil
|
||||||
|
|
||||||
|
class DataBaseCsv:
|
||||||
|
def __init__(self, filename: str):
|
||||||
|
self.filename = filename
|
||||||
|
|
||||||
|
def store_data(self, data: dict):
|
||||||
|
new_fields = list(data.keys())
|
||||||
|
|
||||||
|
# If file does not exist or is empty → create new file with header
|
||||||
|
if not os.path.exists(self.filename) or os.path.getsize(self.filename) == 0:
|
||||||
|
with open(self.filename, mode='w', newline='') as csv_file:
|
||||||
|
writer = csv.DictWriter(csv_file, fieldnames=new_fields)
|
||||||
|
writer.writeheader()
|
||||||
|
writer.writerow(data)
|
||||||
|
return
|
||||||
|
|
||||||
|
# If file exists → read existing header and data
|
||||||
|
with open(self.filename, mode='r', newline='') as csv_file:
|
||||||
|
reader = csv.DictReader(csv_file)
|
||||||
|
existing_fields = reader.fieldnames
|
||||||
|
existing_data = list(reader)
|
||||||
|
|
||||||
|
# Merge old and new fields (keep original order, add new ones)
|
||||||
|
all_fields = existing_fields.copy()
|
||||||
|
for field in new_fields:
|
||||||
|
if field not in all_fields:
|
||||||
|
all_fields.append(field)
|
||||||
|
|
||||||
|
# Write to a temporary file with updated header
|
||||||
|
with tempfile.NamedTemporaryFile(mode='w', delete=False, newline='', encoding='utf-8') as tmp_file:
|
||||||
|
writer = csv.DictWriter(tmp_file, fieldnames=all_fields)
|
||||||
|
writer.writeheader()
|
||||||
|
|
||||||
|
# Write old rows with updated field list
|
||||||
|
for row in existing_data:
|
||||||
|
writer.writerow({field: row.get(field, '') for field in all_fields})
|
||||||
|
|
||||||
|
# Write new data row
|
||||||
|
writer.writerow({field: data.get(field, '') for field in all_fields})
|
||||||
|
|
||||||
|
# Replace original file with updated temporary file
|
||||||
|
shutil.move(tmp_file.name, self.filename)
|
||||||
@@ -1,28 +0,0 @@
|
|||||||
from influxdb_client import InfluxDBClient, Point, WritePrecision
|
|
||||||
from datetime import datetime
|
|
||||||
|
|
||||||
class DataBaseInflux:
|
|
||||||
def __init__(self, url: str, token: str, org: str, bucket: str):
|
|
||||||
self.url = url
|
|
||||||
self.token = token
|
|
||||||
self.org = org
|
|
||||||
self.bucket = bucket
|
|
||||||
self.client = InfluxDBClient(url=self.url, token=self.token, org=self.org)
|
|
||||||
self.write_api = self.client.write_api()
|
|
||||||
|
|
||||||
def store_data(self, device_name: str, data: dict):
|
|
||||||
measurement = device_name # Fest auf "messungen" gesetzt
|
|
||||||
|
|
||||||
point = Point(measurement)
|
|
||||||
|
|
||||||
# Alle Key/Value-Paare als Fields speichern
|
|
||||||
for key, value in data.items():
|
|
||||||
point = point.field(key, value)
|
|
||||||
|
|
||||||
# Zeitstempel automatisch auf jetzt setzen
|
|
||||||
point = point.time(datetime.utcnow(), WritePrecision.NS)
|
|
||||||
|
|
||||||
# Punkt in InfluxDB schreiben
|
|
||||||
self.write_api.write(bucket=self.bucket, org=self.org, record=point)
|
|
||||||
|
|
||||||
|
|
||||||
10
heat_pump.py
10
heat_pump.py
@@ -3,17 +3,15 @@ import pandas as pd
|
|||||||
import time
|
import time
|
||||||
|
|
||||||
class HeatPump:
|
class HeatPump:
|
||||||
def __init__(self, device_name: str, ip_address: str, port: int=502):
|
def __init__(self, ip_address: str):
|
||||||
self.device_name = device_name
|
|
||||||
self.ip = ip_address
|
self.ip = ip_address
|
||||||
self.port = port
|
|
||||||
self.client = None
|
self.client = None
|
||||||
self.connect_to_modbus()
|
self.connect_to_modbus()
|
||||||
self.registers = None
|
self.registers = None
|
||||||
self.get_registers()
|
self.get_registers()
|
||||||
|
|
||||||
def connect_to_modbus(self):
|
def connect_to_modbus(self):
|
||||||
port = self.port
|
port = 502
|
||||||
self.client = ModbusTcpClient(self.ip, port=port)
|
self.client = ModbusTcpClient(self.ip, port=port)
|
||||||
try:
|
try:
|
||||||
if not self.client.connect():
|
if not self.client.connect():
|
||||||
@@ -27,7 +25,7 @@ class HeatPump:
|
|||||||
|
|
||||||
def get_registers(self):
|
def get_registers(self):
|
||||||
# Excel-Datei mit den Input-Registerinformationen
|
# Excel-Datei mit den Input-Registerinformationen
|
||||||
excel_path = "modbus_registers/heat_pump_registers.xlsx"
|
excel_path = "data/ModBus TCPIP 1.17(1).xlsx"
|
||||||
xls = pd.ExcelFile(excel_path)
|
xls = pd.ExcelFile(excel_path)
|
||||||
df_input_registers = xls.parse('04 Input Register')
|
df_input_registers = xls.parse('04 Input Register')
|
||||||
|
|
||||||
@@ -44,7 +42,7 @@ class HeatPump:
|
|||||||
for _, row in df_clean.iterrows()
|
for _, row in df_clean.iterrows()
|
||||||
}
|
}
|
||||||
|
|
||||||
def get_state(self):
|
def get_data(self):
|
||||||
data = {}
|
data = {}
|
||||||
data['Zeit'] = time.strftime('%Y-%m-%d %H:%M:%S')
|
data['Zeit'] = time.strftime('%Y-%m-%d %H:%M:%S')
|
||||||
for address, info in self.registers.items():
|
for address, info in self.registers.items():
|
||||||
|
|||||||
30
main.py
30
main.py
@@ -1,35 +1,17 @@
|
|||||||
import time
|
import time
|
||||||
from datetime import datetime
|
from datetime import datetime
|
||||||
from data_base_influx import DataBaseInflux
|
from data_base_csv import DataBaseCsv
|
||||||
from heat_pump import HeatPump
|
from heat_pump import HeatPump
|
||||||
from pv_inverter import PvInverter
|
|
||||||
from shelly_pro_3m import ShellyPro3m
|
|
||||||
|
|
||||||
# For dev-System run in terminal: ssh -N -L 127.0.0.1:8111:10.0.0.10:502 pi@192.168.1.146
|
interval = 10 # z.B. alle 10 Sekunden
|
||||||
# For productive-System change IP-adress in heatpump to '10.0.0.10' and port to 502
|
|
||||||
|
|
||||||
interval_seconds = 10
|
db = DataBaseCsv('modbus_log.csv')
|
||||||
|
hp = HeatPump(ip_address='10.0.0.10')
|
||||||
db = DataBaseInflux(
|
|
||||||
url="http://192.168.1.146:8086",
|
|
||||||
token="Cw_naEZyvJ3isiAh1P4Eq3TsjcHmzzDFS7SlbKDsS6ZWL04fMEYixWqtNxGThDdG27S9aW5g7FP9eiq5z1rsGA==",
|
|
||||||
org="allmende",
|
|
||||||
bucket="allmende_db"
|
|
||||||
)
|
|
||||||
|
|
||||||
hp = HeatPump(device_name='hp_master', ip_address='10.0.0.10', port=502)
|
|
||||||
shelly = ShellyPro3m(device_name='wohnung_2_6', ip_address='192.168.1.121')
|
|
||||||
wr = PvInverter(device_name='wr_master', ip_address='192.168.1.112')
|
|
||||||
|
|
||||||
#controller = SgReadyController(hp, wr)
|
|
||||||
|
|
||||||
while True:
|
while True:
|
||||||
now = datetime.now()
|
now = datetime.now()
|
||||||
if now.second % interval_seconds == 0 and now.microsecond < 100_000:
|
if now.second % interval == 0 and now.microsecond < 100_000:
|
||||||
db.store_data(hp.device_name, hp.get_state())
|
db.store_data(hp.get_data())
|
||||||
db.store_data(shelly.device_name, shelly.get_state())
|
|
||||||
db.store_data(wr.device_name, wr.get_state())
|
|
||||||
#controller.perform_action()
|
|
||||||
|
|
||||||
time.sleep(0.1)
|
time.sleep(0.1)
|
||||||
|
|
||||||
|
|||||||
713
modbus_log.csv
713
modbus_log.csv
@@ -1,713 +0,0 @@
|
|||||||
Zeit,0 - Primärpumpe,1 - Ventilator,2 - Ladepumpe,3 - Ladepumpe Kühlen,4 - Boilerpumpe,5 - Magroladepumpe 0-100%,6 - Kondensator Ventil,10 - Gebäudeseite Wärmepumpe Vorlauf/Austritt (Warm),11 - Gebäudeseite Wärmepumpe Rücklauf/Eintritt (Kalt),12 - Umweltseite/Quelle Wärmepumpe Eintritt (Warm),13 - Umweltseite/Quelle Wärmepumpe Austritt (Kalt),14 - Luftmodul.1 Lufteintritttemperatur,15 - Luftmodul.1 Lamellentemperatur,20 - Kondensationstemperatur,21 - Flüssigkeitstemperatur,22 - Verdampfunstemperatur,23 - Sauggastemperatur,32 - Expansionsventil A Öffnungsgrad,24 - Heisgastemperatur,28 - Verdampfungstemperatur Verdichter 2 bei CPV,25 - Sauggastemperatur 2,33 - Expansionsventil B Öffnungsgrad,26 - Grundwassertemperatur VL (Warm),27 - Grundwassertemperatur RL (Kalt),29 - Durchfluss Gebäudeseite Heizen,30 - Durchfluss Gebäudeseite Kühlen,31 - Durchfluss Umweltseite,40 - Betreibsstunden Verdichter 1 ,42 - Betreibsstunden Verdichter 2,44 - Betreibsstunden 2 Wäremeerzeuger,46 - WP Leistung in %,50 - Rücklauftemperatur Direkterheizkreis oder Puffertemperatur,70 - Vorlauftemperatur Mischerkreis 1,90 - Vorlauftemperatur Mischerkreis 2,110 - Vorlauftemperatur Mischerkreis 3,130 - Vorlauftemperatur Mischerkreis 4,230 - Vorlauftemperatur Mischerkreis 5,250 - Vorlauftemperatur Mischerkreis 6,150 - Trinkwarmwasserspiecher oben (Ein),151 - Betreibsstunden 2 Wäremeerzeuger Boiler,153 - Trinkwarmwasserspiecher unten (Aus),154 - VL Magroladung Sekundär,155 - TWW1 Magroladungventil 0-100%,160 - Trinkwarmwasserspiecher 2 oben (Ein),161 - Trinkwarmwasserspiecher 2 unten (Aus),162 - VL Magroladung Sekundär,170 - Puffertemperatur Heizung,171 - Maximale Anforderung Heizen an WP,210 - Puffertemperatur Kühlen,211 - Umweltseite Passivkühlen Wärmetauscher Eintritt,212 - Umweltseite Passivkühlen Wärmetauscher Asutritt,213 - Gebäudeseite Passivkühlen Wärmetauscher Asutritt,214 - Gebäudeseite Passivkühlen Wärmetauscher Eintritt,215 - Minimale Anforderung Kühlen an WP,300 - Aussentemperatur,310 - Sonderanwendungen ,"311 - Hz FU Ausgang bei ABB/FUJI, rps bei Carel",313 - Stromaufnahme FU Ausgang,315 - Spannung FU Ausgang,319 - Leistung FU Ausgang kW,323 - Energieverbrauch FU kWh bei ABB FU,330 - Fühlermodul Eingang 1,331 - Fühlermodul Eingang 2,332 - Fühlermodul Eingang 3,333 - Fühlermodul Eingang 4,334 - Fühlermodul Eingang 5,335 - Fühlermodul Eingang 6,336 - Fühlermodul Eingang 7,337 - Fühlermodul Eingang 8,338 - Fühlermodul Eingang 9,339 - Fühlermodul Eingang 10,510 - Störung 1 Nummer,512 - Störung 2 Nummer
|
|
||||||
2025-04-17 15:11:56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.2,25.4,25.8,15.6,0.0,0.0,25.7,23.0,25.6,38.8,30.0,43.3,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,38.3,24.4,5553.7,0.0,0.0,0.0,0.0,64.8,0,53.7,0.0,0.0,0.0,0.0,0.0,38.3,0.0,5553.7,13.0,14.9,20.0,19.7,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-17 15:12:06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.2,25.4,25.8,15.6,0.0,0.0,25.7,23.0,25.6,38.8,30.0,43.3,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,38.2,24.4,5553.7,0.0,0.0,0.0,0.0,64.8,0,53.7,0.0,0.0,0.0,0.0,0.0,38.2,0.0,5553.7,13.0,14.9,20.0,19.7,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-17 15:12:17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.2,25.4,25.8,15.6,0.0,0.0,25.7,23.0,25.6,38.8,30.0,43.3,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,38.0,24.4,5553.7,0.0,0.0,0.0,0.0,64.8,0,53.7,0.0,0.0,0.0,0.0,0.0,38.0,0.0,5553.7,13.0,14.9,20.0,19.7,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-17 15:20:16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.9,25.5,26.2,16.0,0.0,0.0,26.0,23.3,25.9,38.2,30.0,43.1,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,38.3,24.5,5553.7,0.0,0.0,0.0,0.0,64.7,0,53.4,0.0,0.0,0.0,0.0,0.0,38.3,0.0,5553.7,13.2,15.0,20.0,19.7,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-17 15:20:26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.9,25.5,26.2,16.0,0.0,0.0,26.1,23.3,25.9,38.2,30.0,43.1,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,38.3,24.5,5553.7,0.0,0.0,0.0,0.0,64.7,0,53.4,0.0,0.0,0.0,0.0,0.0,38.3,0.0,5553.7,13.2,15.0,20.0,19.7,0.0,11.0,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 10:45:01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.0,31.3,13.4,11.6,0.0,0.0,16.5,35.1,16.3,16.9,30.0,64.7,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,39.6,24.9,5553.7,0.0,0.0,0.0,0.0,65.2,0,63.4,0.0,0.0,0.0,0.0,0.0,39.6,0.0,5553.7,11.5,14.3,19.9,19.6,0.0,10.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 10:45:12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.1,31.3,13.5,11.6,0.0,0.0,16.5,34.8,16.3,17.0,30.0,64.5,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.0,24.9,5553.7,0.0,0.0,0.0,0.0,65.2,0,63.2,0.0,0.0,0.0,0.0,0.0,40.0,0.0,5553.7,11.5,14.3,19.9,19.6,0.0,10.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 10:45:22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.1,31.3,13.6,11.7,0.0,0.0,16.6,34.5,16.4,17.1,30.0,64.2,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.2,24.9,5553.7,0.0,0.0,0.0,0.0,65.2,0,63.1,0.0,0.0,0.0,0.0,0.0,40.2,0.0,5553.7,11.5,14.3,19.9,19.6,0.0,10.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 10:45:32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.2,31.3,13.7,11.7,0.0,0.0,16.7,34.2,16.5,17.2,30.0,64.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.4,24.9,5553.7,0.0,0.0,0.0,0.0,65.2,0,62.9,0.0,0.0,0.0,0.0,0.0,40.4,0.0,5553.7,11.5,14.3,19.9,19.6,0.0,10.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 10:45:42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.2,31.3,13.8,11.7,0.0,0.0,16.8,33.8,16.5,17.2,30.0,63.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.5,24.9,5553.7,0.0,0.0,0.0,0.0,65.2,0,62.7,0.0,0.0,0.0,0.0,0.0,40.5,0.0,5553.7,11.5,14.3,19.9,19.6,0.0,10.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 10:45:53,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.2,31.3,13.9,11.8,0.0,0.0,16.9,33.5,16.5,17.3,30.0,63.6,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.6,24.9,5553.7,0.0,0.0,0.0,0.0,65.2,0,62.6,0.0,0.0,0.0,0.0,0.0,40.6,0.0,5553.7,11.5,14.3,19.9,19.6,0.0,10.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 10:46:03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.2,31.4,14.0,11.8,0.0,0.0,16.9,33.1,16.6,17.3,30.0,63.4,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.7,24.9,5553.7,0.0,0.0,0.0,0.0,65.2,0,62.4,0.0,0.0,0.0,0.0,0.0,40.7,0.0,5553.7,11.5,14.3,19.9,19.6,0.0,10.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 10:46:13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.3,31.4,14.0,11.8,0.0,0.0,16.9,32.8,16.6,17.4,30.0,63.1,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.0,24.9,5553.7,0.0,0.0,0.0,0.0,65.2,0,62.3,0.0,0.0,0.0,0.0,0.0,41.0,0.0,5553.7,11.5,14.3,19.9,19.6,0.0,10.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 10:46:23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.3,31.4,14.1,11.9,0.0,0.0,17.0,32.4,16.7,17.5,30.0,62.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.8,24.9,5553.7,0.0,0.0,0.0,0.0,65.2,0,62.3,0.0,0.0,0.0,0.0,0.0,40.8,0.0,5553.7,11.5,14.3,19.9,19.6,0.0,10.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 10:46:34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.3,31.5,14.2,11.9,0.0,0.0,17.0,32.0,16.7,17.5,30.0,62.7,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.5,24.9,5553.7,0.0,0.0,0.0,0.0,65.2,0,62.3,0.0,0.0,0.0,0.0,0.0,40.5,0.0,5553.7,11.5,14.3,19.9,19.6,0.0,10.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 10:46:44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.4,31.5,14.3,11.9,0.0,0.0,17.0,31.6,16.7,17.6,30.0,62.4,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.5,24.9,5553.7,0.0,0.0,0.0,0.0,65.2,0,62.3,0.0,0.0,0.0,0.0,0.0,40.5,0.0,5553.7,11.5,14.3,19.9,19.6,0.0,10.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 10:46:54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.4,31.5,14.4,12.0,0.0,0.0,17.0,31.2,16.8,17.6,30.0,62.2,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.7,24.9,5553.7,0.0,0.0,0.0,0.0,65.2,0,62.2,0.0,0.0,0.0,0.0,0.0,40.7,0.0,5553.7,11.5,14.3,19.9,19.6,0.0,10.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 10:47:04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.4,31.5,14.4,12.0,0.0,0.0,17.1,30.8,16.8,17.7,30.0,61.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.7,24.9,5553.7,0.0,0.0,0.0,0.0,65.2,0,62.1,0.0,0.0,0.0,0.0,0.0,40.7,0.0,5553.7,11.6,14.3,19.9,19.6,0.0,10.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 10:47:15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.4,31.6,14.5,12.1,0.0,0.0,17.1,30.4,16.9,17.8,30.0,61.6,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.4,24.9,5553.7,0.0,0.0,0.0,0.0,65.2,0,62.1,0.0,0.0,0.0,0.0,0.0,40.4,0.0,5553.7,11.6,14.3,19.9,19.6,0.0,10.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 10:47:25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.4,31.6,14.6,12.1,0.0,0.0,17.2,30.0,16.9,17.8,30.0,61.4,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.3,24.9,5553.7,0.0,0.0,0.0,0.0,65.2,0,62.1,0.0,0.0,0.0,0.0,0.0,40.3,0.0,5553.7,11.6,14.3,19.9,19.6,0.0,10.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 10:47:35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.4,31.6,14.7,12.1,0.0,0.0,17.2,29.7,16.9,17.9,30.0,61.1,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.3,24.9,5553.7,0.0,0.0,0.0,0.0,65.2,0,62.1,0.0,0.0,0.0,0.0,0.0,40.3,0.0,5553.7,11.6,14.3,19.9,19.6,0.0,10.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 10:47:45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.4,31.7,14.7,12.1,0.0,0.0,17.2,29.4,17.0,18.0,30.0,60.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.2,24.9,5553.7,0.0,0.0,0.0,0.0,65.2,0,61.9,0.0,0.0,0.0,0.0,0.0,40.2,0.0,5553.7,11.6,14.3,19.9,19.6,0.0,10.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 10:47:56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.5,31.7,14.8,12.2,0.0,0.0,17.2,29.2,17.0,18.1,30.0,60.5,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.1,24.9,5553.7,0.0,0.0,0.0,0.0,65.2,0,61.8,0.0,0.0,0.0,0.0,0.0,40.1,0.0,5553.7,11.6,14.3,19.9,19.6,0.0,10.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 10:48:06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.5,31.7,14.9,12.2,0.0,0.0,17.3,28.8,17.1,18.2,30.0,60.3,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.3,24.9,5553.7,0.0,0.0,0.0,0.0,65.2,0,61.8,0.0,0.0,0.0,0.0,0.0,40.3,0.0,5553.7,11.6,14.3,19.9,19.6,0.0,10.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 10:48:16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.5,31.8,14.9,12.2,0.0,0.0,17.3,28.3,17.1,18.3,30.0,60.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.4,25.0,5553.7,0.0,0.0,0.0,0.0,65.2,0,61.8,0.0,0.0,0.0,0.0,0.0,40.4,0.0,5553.7,11.6,14.3,19.9,19.6,0.0,10.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 10:48:26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.5,31.8,15.0,12.2,0.0,0.0,17.4,26.2,17.2,18.4,30.0,59.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.4,25.0,5553.7,0.0,0.0,0.0,0.0,65.2,0,61.8,0.0,0.0,0.0,0.0,0.0,40.4,0.0,5553.7,11.6,14.3,19.9,19.6,0.0,10.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 10:48:37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.5,31.8,15.0,12.3,0.0,0.0,17.5,23.2,17.2,18.5,30.0,59.6,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.3,25.0,5553.7,0.0,0.0,0.0,0.0,65.2,0,61.7,0.0,0.0,0.0,0.0,0.0,40.3,0.0,5553.7,11.6,14.3,19.9,19.6,0.0,10.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 10:48:47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.5,31.9,15.1,12.3,0.0,0.0,17.5,21.1,17.3,18.7,30.0,59.3,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.2,25.0,5553.7,0.0,0.0,0.0,0.0,65.2,0,61.7,0.0,0.0,0.0,0.0,0.0,40.2,0.0,5553.7,11.6,14.3,19.9,19.6,0.0,10.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 10:48:57,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.5,31.9,15.2,12.3,0.0,0.0,17.6,20.0,17.4,18.9,30.0,59.1,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.2,25.0,5553.7,0.0,0.0,0.0,0.0,65.2,0,61.7,0.0,0.0,0.0,0.0,0.0,40.2,0.0,5553.7,11.6,14.3,19.9,19.6,0.0,10.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 10:49:07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.5,31.9,15.2,12.3,0.0,0.0,17.6,19.5,17.4,19.0,30.0,58.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.2,25.0,5553.7,0.0,0.0,0.0,0.0,65.2,0,61.6,0.0,0.0,0.0,0.0,0.0,40.2,0.0,5553.7,11.6,14.3,19.9,19.6,0.0,10.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 10:49:18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.5,31.9,15.3,12.3,0.0,0.0,17.7,19.1,17.4,19.2,30.0,58.7,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.3,25.0,5553.7,0.0,0.0,0.0,0.0,65.2,0,61.5,0.0,0.0,0.0,0.0,0.0,40.3,0.0,5553.7,11.6,14.3,19.9,19.6,0.0,10.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 10:49:28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.5,32.0,15.4,12.4,0.0,0.0,17.7,18.8,17.5,19.4,30.0,58.5,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.2,25.0,5553.7,0.0,0.0,0.0,0.0,65.2,0,61.3,0.0,0.0,0.0,0.0,0.0,40.2,0.0,5553.7,11.6,14.3,19.9,19.6,0.0,10.2,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 10:49:38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.5,32.0,15.4,12.4,0.0,0.0,17.8,18.6,17.5,19.5,30.0,58.3,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.1,25.0,5553.7,0.0,0.0,0.0,0.0,65.2,0,61.3,0.0,0.0,0.0,0.0,0.0,40.1,0.0,5553.7,11.6,14.3,19.9,19.6,0.0,10.2,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 10:49:48,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.5,32.0,15.5,12.4,0.0,0.0,17.8,18.5,17.6,19.7,30.0,58.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.0,25.0,5553.7,0.0,0.0,0.0,0.0,65.2,0,61.2,0.0,0.0,0.0,0.0,0.0,40.0,0.0,5553.7,11.6,14.3,19.9,19.6,0.0,10.2,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 10:49:59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.5,32.1,15.6,12.4,0.0,0.0,17.9,18.4,17.6,19.9,30.0,57.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.1,25.0,5553.7,0.0,0.0,0.0,0.0,65.2,0,61.1,0.0,0.0,0.0,0.0,0.0,40.1,0.0,5553.7,11.6,14.3,19.9,19.6,0.0,10.2,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 10:50:09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.5,32.1,15.6,12.4,0.0,0.0,17.9,18.3,17.7,20.1,30.0,57.6,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.0,25.0,5553.7,0.0,0.0,0.0,0.0,65.2,0,61.0,0.0,0.0,0.0,0.0,0.0,40.0,0.0,5553.7,11.6,14.3,19.9,19.6,0.0,10.2,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 10:50:19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.5,32.1,15.7,12.5,0.0,0.0,18.0,18.3,17.7,20.3,30.0,57.4,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.2,25.0,5553.7,0.0,0.0,0.0,0.0,65.2,0,60.9,0.0,0.0,0.0,0.0,0.0,40.2,0.0,5553.7,11.6,14.3,19.9,19.6,0.0,10.2,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 10:50:29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.4,32.1,15.8,12.5,0.0,0.0,18.0,18.3,17.8,20.5,30.0,57.2,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.6,25.0,5553.7,0.0,0.0,0.0,0.0,65.2,0,60.8,0.0,0.0,0.0,0.0,0.0,40.6,0.0,5553.7,11.6,14.3,19.9,19.6,0.0,10.2,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 10:50:40,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.4,32.2,15.8,12.5,0.0,0.0,18.1,18.3,17.9,20.8,30.0,57.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.9,25.0,5553.7,0.0,0.0,0.0,0.0,65.2,0,60.7,0.0,0.0,0.0,0.0,0.0,40.9,0.0,5553.7,11.6,14.3,19.9,19.6,0.0,10.2,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 10:50:50,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.4,32.2,15.9,12.5,0.0,0.0,18.1,18.3,17.9,21.0,30.0,56.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.1,25.0,5553.7,0.0,0.0,0.0,0.0,65.2,0,60.5,0.0,0.0,0.0,0.0,0.0,41.1,0.0,5553.7,11.6,14.3,19.9,19.6,0.0,10.2,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 10:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.4,32.2,15.9,12.5,0.0,0.0,18.2,18.3,18.0,21.3,30.0,56.6,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.2,25.0,5553.7,0.0,0.0,0.0,0.0,65.2,0,60.4,0.0,0.0,0.0,0.0,0.0,41.2,0.0,5553.7,11.6,14.3,19.9,19.6,0.0,10.2,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 10:51:11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.4,32.2,16.0,12.5,0.0,0.0,18.3,18.4,18.0,21.5,30.0,56.4,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.5,25.0,5553.7,0.0,0.0,0.0,0.0,65.2,0,60.2,0.0,0.0,0.0,0.0,0.0,41.5,0.0,5553.7,11.6,14.3,19.9,19.6,0.0,10.2,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 10:51:21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.4,32.2,16.1,12.5,0.0,0.0,18.3,18.4,18.1,21.8,30.0,56.2,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.8,25.0,5553.7,0.0,0.0,0.0,0.0,65.2,0,60.1,0.0,0.0,0.0,0.0,0.0,41.8,0.0,5553.7,11.6,14.3,19.9,19.6,0.0,10.2,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 10:51:31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.4,32.3,16.1,12.6,0.0,0.0,18.4,18.5,18.1,22.0,30.0,56.1,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.8,25.0,5553.7,0.0,0.0,0.0,0.0,65.2,0,60.0,0.0,0.0,0.0,0.0,0.0,41.8,0.0,5553.7,11.6,14.3,19.9,19.6,0.0,10.3,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 10:51:41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.4,32.3,16.2,12.6,0.0,0.0,18.4,18.5,18.1,22.3,30.0,55.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.8,25.0,5553.7,0.0,0.0,0.0,0.0,65.2,0,59.9,0.0,0.0,0.0,0.0,0.0,41.8,0.0,5553.7,11.6,14.3,19.9,19.6,0.0,10.2,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 10:51:52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.4,32.3,16.3,12.6,0.0,0.0,18.5,18.5,18.2,22.5,30.0,55.7,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.7,25.0,5553.7,0.0,0.0,0.0,0.0,65.1,0,59.8,0.0,0.0,0.0,0.0,0.0,41.7,0.0,5553.7,11.6,14.3,19.9,19.6,0.0,10.2,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 10:52:02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.4,32.3,16.3,12.6,0.0,0.0,18.5,18.5,18.2,22.8,30.0,55.5,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.6,25.0,5553.7,0.0,0.0,0.0,0.0,65.1,0,59.8,0.0,0.0,0.0,0.0,0.0,41.6,0.0,5553.7,11.6,14.3,19.9,19.6,0.0,10.3,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 10:52:12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.4,32.3,16.4,12.6,0.0,0.0,18.5,18.6,18.3,23.1,30.0,55.3,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.4,25.0,5553.7,0.0,0.0,0.0,0.0,65.1,0,59.7,0.0,0.0,0.0,0.0,0.0,41.4,0.0,5553.7,11.6,14.3,19.9,19.6,0.0,10.3,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 10:52:22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.4,32.3,16.4,12.6,0.0,0.0,18.6,18.6,18.3,23.3,30.0,55.1,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.5,25.0,5553.7,0.0,0.0,0.0,0.0,65.1,0,59.6,0.0,0.0,0.0,0.0,0.0,41.6,0.0,5553.7,11.6,14.3,19.9,19.6,0.0,10.3,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 10:52:33,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.4,32.3,16.5,12.6,0.0,0.0,18.6,18.7,18.3,23.5,30.0,55.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.6,25.0,5553.7,0.0,0.0,0.0,0.0,65.1,0,59.6,0.0,0.0,0.0,0.0,0.0,41.6,0.0,5553.7,11.5,14.3,19.9,19.6,0.0,10.3,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 10:52:43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.4,32.3,16.6,12.7,0.0,0.0,18.7,18.7,18.4,23.8,30.0,54.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.5,25.0,5553.7,0.0,0.0,0.0,0.0,65.1,0,59.5,0.0,0.0,0.0,0.0,0.0,41.5,0.0,5553.7,11.6,14.3,19.9,19.6,0.0,10.3,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 10:52:53,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.3,32.3,16.6,12.7,0.0,0.0,18.7,18.7,18.4,24.0,30.0,54.7,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.5,25.0,5553.7,0.0,0.0,0.0,0.0,65.1,0,59.4,0.0,0.0,0.0,0.0,0.0,41.5,0.0,5553.7,11.6,14.3,19.9,19.6,0.0,10.3,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 10:53:03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.3,32.3,16.7,12.7,0.0,0.0,18.7,18.8,18.5,24.2,30.0,54.6,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.6,25.0,5553.7,0.0,0.0,0.0,0.0,65.1,0,59.4,0.0,0.0,0.0,0.0,0.0,41.6,0.0,5553.7,11.6,14.3,19.9,19.6,0.0,10.3,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 10:53:14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.3,32.3,16.8,12.7,0.0,0.0,18.8,18.8,18.5,24.5,30.0,54.4,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.5,25.0,5553.7,0.0,0.0,0.0,0.0,65.1,0,59.3,0.0,0.0,0.0,0.0,0.0,41.5,0.0,5553.7,11.6,14.3,19.9,19.6,0.0,10.3,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 10:53:24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.3,32.3,16.8,12.7,0.0,0.0,18.8,18.8,18.6,24.7,30.0,54.3,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.6,25.0,5553.7,0.0,0.0,0.0,0.0,65.1,0,59.2,0.0,0.0,0.0,0.0,0.0,41.6,0.0,5553.7,11.6,14.3,19.9,19.6,0.0,10.3,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 10:53:34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.3,32.3,16.9,12.7,0.0,0.0,18.8,18.8,18.6,24.9,30.0,54.2,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.7,25.0,5553.7,0.0,0.0,0.0,0.0,65.1,0,59.1,0.0,0.0,0.0,0.0,0.0,41.7,0.0,5553.7,11.6,14.3,19.9,19.6,0.0,10.4,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 10:53:44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.3,32.3,16.9,12.7,0.0,0.0,18.9,18.9,18.7,25.2,30.0,54.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.8,25.0,5553.7,0.0,0.0,0.0,0.0,65.1,0,59.0,0.0,0.0,0.0,0.0,0.0,41.8,0.0,5553.7,11.6,14.3,19.9,19.6,0.0,10.3,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 10:53:55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.3,32.3,17.0,12.7,0.0,0.0,18.9,18.9,18.7,25.4,30.0,53.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.7,25.0,5553.7,0.0,0.0,0.0,0.0,65.1,0,58.9,0.0,0.0,0.0,0.0,0.0,41.7,0.0,5553.7,11.6,14.3,19.9,19.6,0.0,10.3,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 10:54:05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.3,32.3,17.0,12.8,0.0,0.0,19.0,19.0,18.7,25.7,30.0,53.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.7,25.0,5553.7,0.0,0.0,0.0,0.0,65.1,0,58.8,0.0,0.0,0.0,0.0,0.0,41.7,0.0,5553.7,11.6,14.3,19.9,19.6,0.0,10.3,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 10:54:15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.3,32.3,17.1,12.8,0.0,0.0,19.0,19.0,18.8,25.9,30.0,53.6,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.8,25.0,5553.7,0.0,0.0,0.0,0.0,65.1,0,58.8,0.0,0.0,0.0,0.0,0.0,41.8,0.0,5553.7,11.6,14.3,19.9,19.6,0.0,10.4,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 10:54:25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.3,32.3,17.1,12.8,0.0,0.0,19.0,19.0,18.8,26.2,30.0,53.5,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.8,25.0,5553.7,0.0,0.0,0.0,0.0,65.1,0,58.7,0.0,0.0,0.0,0.0,0.0,41.8,0.0,5553.7,11.6,14.3,19.9,19.6,0.0,10.4,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 10:54:36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.2,32.3,17.2,12.8,0.0,0.0,19.1,19.0,18.8,26.4,30.0,53.4,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.7,25.0,5553.7,0.0,0.0,0.0,0.0,65.1,0,58.6,0.0,0.0,0.0,0.0,0.0,41.7,0.0,5553.7,11.6,14.3,19.9,19.6,0.0,10.4,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 10:54:46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.2,32.3,17.3,12.8,0.0,0.0,19.1,19.1,18.9,26.6,30.0,53.2,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.7,25.0,5553.7,0.0,0.0,0.0,0.0,65.1,0,58.5,0.0,0.0,0.0,0.0,0.0,41.7,0.0,5553.7,11.6,14.3,19.9,19.6,0.0,10.4,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 10:54:56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.2,32.2,17.3,12.8,0.0,0.0,19.1,19.1,18.9,26.9,30.0,53.1,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.7,25.0,5553.7,0.0,0.0,0.0,0.0,65.1,0,58.5,0.0,0.0,0.0,0.0,0.0,41.7,0.0,5553.7,11.6,14.3,19.9,19.6,0.0,10.4,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 10:55:06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.2,32.2,17.3,12.8,0.0,0.0,19.2,19.1,18.9,27.1,30.0,53.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.8,25.0,5553.7,0.0,0.0,0.0,0.0,65.1,0,58.4,0.0,0.0,0.0,0.0,0.0,41.8,0.0,5553.7,11.6,14.3,19.9,19.6,0.0,10.4,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 10:55:17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.2,32.2,17.4,12.8,0.0,0.0,19.2,19.2,19.0,27.3,30.0,52.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.9,25.0,5553.7,0.0,0.0,0.0,0.0,65.1,0,58.4,0.0,0.0,0.0,0.0,0.0,41.9,0.0,5553.7,11.7,14.3,19.9,19.6,0.0,10.4,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 10:55:27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.2,32.2,17.4,12.8,0.0,0.0,19.2,19.2,19.0,27.5,30.0,52.7,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.8,25.0,5553.7,0.0,0.0,0.0,0.0,65.1,0,58.3,0.0,0.0,0.0,0.0,0.0,41.8,0.0,5553.7,11.7,14.3,19.9,19.6,0.0,10.4,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 10:55:37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.2,32.2,17.5,12.9,0.0,0.0,19.3,19.2,19.0,27.7,30.0,52.6,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.7,25.0,5553.7,0.0,0.0,0.0,0.0,65.1,0,58.3,0.0,0.0,0.0,0.0,0.0,41.7,0.0,5553.7,11.7,14.3,19.9,19.6,0.0,10.4,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 10:55:47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.2,32.2,17.5,12.9,0.0,0.0,19.3,19.3,19.1,27.9,30.0,52.5,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.7,25.0,5553.7,0.0,0.0,0.0,0.0,65.1,0,58.2,0.0,0.0,0.0,0.0,0.0,41.7,0.0,5553.7,11.7,14.3,19.9,19.6,0.0,10.4,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 10:55:58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.2,32.2,17.6,12.9,0.0,0.0,19.4,19.3,19.1,28.1,30.0,52.4,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.7,25.0,5553.7,0.0,0.0,0.0,0.0,65.1,0,58.2,0.0,0.0,0.0,0.0,0.0,41.7,0.0,5553.7,11.7,14.3,19.9,19.6,0.0,10.4,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 10:56:08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.2,32.2,17.6,12.9,0.0,0.0,19.4,19.3,19.1,28.3,30.0,52.3,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.7,25.0,5553.7,0.0,0.0,0.0,0.0,65.1,0,58.1,0.0,0.0,0.0,0.0,0.0,41.7,0.0,5553.7,11.7,14.3,19.9,19.6,0.0,10.4,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 10:56:18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.2,32.1,17.7,12.9,0.0,0.0,19.4,19.4,19.2,28.5,30.0,52.2,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.6,25.0,5553.7,0.0,0.0,0.0,0.0,65.1,0,58.1,0.0,0.0,0.0,0.0,0.0,41.6,0.0,5553.7,11.7,14.3,19.9,19.6,0.0,10.4,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 10:56:28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.1,32.1,17.7,12.9,0.0,0.0,19.4,19.4,19.2,28.6,30.0,52.1,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.6,25.0,5553.7,0.0,0.0,0.0,0.0,65.1,0,58.1,0.0,0.0,0.0,0.0,0.0,41.6,0.0,5553.7,11.7,14.3,19.9,19.6,0.0,10.4,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 10:56:39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.1,32.1,17.8,12.9,0.0,0.0,19.5,19.4,19.2,28.8,30.0,52.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.5,25.0,5553.7,0.0,0.0,0.0,0.0,65.1,0,58.1,0.0,0.0,0.0,0.0,0.0,41.5,0.0,5553.7,11.7,14.3,19.9,19.6,0.0,10.4,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 10:56:49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.1,32.1,17.8,12.9,0.0,0.0,19.5,19.4,19.3,29.0,30.0,51.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.5,25.0,5553.7,0.0,0.0,0.0,0.0,65.1,0,58.1,0.0,0.0,0.0,0.0,0.0,41.5,0.0,5553.7,11.7,14.3,19.9,19.6,0.0,10.4,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 10:56:59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.1,32.1,17.9,12.9,0.0,0.0,19.5,19.5,19.3,29.1,30.0,51.7,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.4,25.0,5553.7,0.0,0.0,0.0,0.0,65.1,0,58.1,0.0,0.0,0.0,0.0,0.0,41.4,0.0,5553.7,11.7,14.3,19.9,19.6,0.0,10.4,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 10:57:09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.1,32.1,17.9,13.0,0.0,0.0,19.6,19.5,19.3,29.3,30.0,51.6,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.4,25.0,5553.7,0.0,0.0,0.0,0.0,65.1,0,58.0,0.0,0.0,0.0,0.0,0.0,41.4,0.0,5553.7,11.7,14.3,19.9,19.6,0.0,10.4,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 10:57:20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.1,32.0,18.0,13.0,0.0,0.0,19.6,19.5,19.4,29.4,30.0,51.5,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.6,25.0,5553.7,0.0,0.0,0.0,0.0,65.1,0,58.0,0.0,0.0,0.0,0.0,0.0,41.6,0.0,5553.7,11.7,14.3,19.9,19.6,0.0,10.4,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 10:57:30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.1,32.0,18.0,13.0,0.0,0.0,19.6,19.6,19.4,29.6,30.0,51.4,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.7,25.0,5553.7,0.0,0.0,0.0,0.0,65.1,0,58.0,0.0,0.0,0.0,0.0,0.0,41.7,0.0,5553.7,11.7,14.3,19.9,19.6,0.0,10.4,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 10:57:40,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.1,32.0,18.1,13.0,0.0,0.0,19.7,19.6,19.5,29.7,30.0,51.3,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.4,25.0,5553.7,0.0,0.0,0.0,0.0,65.1,0,57.9,0.0,0.0,0.0,0.0,0.0,41.4,0.0,5553.7,11.7,14.3,19.9,19.6,0.0,10.4,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 10:57:50,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.1,32.0,18.1,13.0,0.0,0.0,19.7,19.6,19.5,29.9,30.0,51.2,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.6,25.0,5553.7,0.0,0.0,0.0,0.0,65.1,0,57.9,0.0,0.0,0.0,0.0,0.0,41.6,0.0,5553.7,11.7,14.3,19.9,19.6,0.0,10.5,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 10:58:01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.0,32.0,18.1,13.0,0.0,0.0,19.7,19.7,19.5,30.0,30.0,51.1,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.9,25.0,5553.7,0.0,0.0,0.0,0.0,65.1,0,57.8,0.0,0.0,0.0,0.0,0.0,41.9,0.0,5553.7,11.7,14.3,19.9,19.6,0.0,10.5,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 10:58:11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.0,31.9,18.2,13.0,0.0,0.0,19.8,19.7,19.6,30.2,30.0,51.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.1,25.0,5553.7,0.0,0.0,0.0,0.0,65.1,0,57.7,0.0,0.0,0.0,0.0,0.0,42.1,0.0,5553.7,11.7,14.3,19.9,19.6,0.0,10.4,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 10:58:21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.0,31.9,18.2,13.0,0.0,0.0,19.8,19.7,19.6,30.3,30.0,50.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.1,25.0,5553.7,0.0,0.0,0.0,0.0,65.1,0,57.7,0.0,0.0,0.0,0.0,0.0,42.1,0.0,5553.7,11.7,14.3,19.9,19.6,0.0,10.5,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 10:58:32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.0,31.9,18.3,13.0,0.0,0.0,19.9,19.7,19.6,30.5,30.0,50.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.3,25.1,5553.7,0.0,0.0,0.0,0.0,65.1,0,57.6,0.0,0.0,0.0,0.0,0.0,42.3,0.0,5553.7,11.8,14.3,19.9,19.6,0.0,10.5,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 10:58:42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.0,31.9,18.3,13.0,0.0,0.0,19.9,19.8,19.7,30.7,30.0,50.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.3,25.0,5553.7,0.0,0.0,0.0,0.0,65.1,0,57.5,0.0,0.0,0.0,0.0,0.0,42.3,0.0,5553.7,11.8,14.3,19.9,19.6,0.0,10.5,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 10:58:52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.0,31.9,18.4,13.0,0.0,0.0,19.9,19.8,19.7,30.8,30.0,50.7,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.2,25.0,5553.7,0.0,0.0,0.0,0.0,65.1,0,57.4,0.0,0.0,0.0,0.0,0.0,42.2,0.0,5553.7,11.8,14.3,19.9,19.6,0.0,10.5,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 10:59:02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.0,31.9,18.4,13.1,0.0,0.0,19.9,19.8,19.7,30.9,30.0,50.6,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.3,25.1,5553.7,0.0,0.0,0.0,0.0,65.1,0,57.4,0.0,0.0,0.0,0.0,0.0,42.3,0.0,5553.7,11.8,14.3,19.9,19.6,0.0,10.5,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 10:59:13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.0,31.8,18.4,13.1,0.0,0.0,19.9,19.8,19.8,31.1,30.0,50.5,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.3,25.1,5553.7,0.0,0.0,0.0,0.0,65.1,0,57.4,0.0,0.0,0.0,0.0,0.0,42.3,0.0,5553.7,11.8,14.3,19.9,19.6,0.0,10.5,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 10:59:23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.0,31.8,18.5,13.1,0.0,0.0,20.0,19.9,19.8,31.2,30.0,50.4,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.0,25.1,5553.7,0.0,0.0,0.0,0.0,65.1,0,57.3,0.0,0.0,0.0,0.0,0.0,42.0,0.0,5553.7,11.8,14.3,19.9,19.6,0.0,10.5,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 10:59:33,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.0,31.8,18.5,13.1,0.0,0.0,20.0,19.9,19.8,31.3,30.0,50.3,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.9,25.1,5553.7,0.0,0.0,0.0,0.0,65.0,0,57.3,0.0,0.0,0.0,0.0,0.0,41.9,0.0,5553.7,11.8,14.3,19.9,19.6,0.0,10.5,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 10:59:43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.9,31.8,18.5,13.1,0.0,0.0,20.1,19.9,19.8,31.5,30.0,50.2,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.0,25.0,5553.7,0.0,0.0,0.0,0.0,65.0,0,57.3,0.0,0.0,0.0,0.0,0.0,42.0,0.0,5553.7,11.8,14.4,19.9,19.6,0.0,10.5,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 10:59:54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.9,31.8,18.6,13.1,0.0,0.0,20.1,19.9,19.9,31.6,30.0,50.2,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.0,25.0,5553.7,0.0,0.0,0.0,0.0,65.0,0,57.3,0.0,0.0,0.0,0.0,0.0,42.0,0.0,5553.7,11.8,14.3,19.9,19.6,0.0,10.5,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:00:04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.9,31.7,18.6,13.1,0.0,0.0,20.1,20.0,19.9,31.7,30.0,50.1,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.0,25.0,5553.7,0.0,0.0,0.0,0.0,65.0,0,57.2,0.0,0.0,0.0,0.0,0.0,42.0,0.0,5553.7,11.8,14.3,19.9,19.6,0.0,10.5,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:00:14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.9,31.7,18.7,13.1,0.0,0.0,20.2,20.0,19.9,31.8,30.0,50.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.8,25.0,5553.7,0.0,0.0,0.0,0.0,65.0,0,57.2,0.0,0.0,0.0,0.0,0.0,41.8,0.0,5553.7,11.8,14.3,19.9,19.6,0.0,10.5,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:00:24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.9,31.7,18.7,13.1,0.0,0.0,20.2,20.0,20.0,31.9,30.0,49.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.8,25.0,5553.7,0.0,0.0,0.0,0.0,65.1,0,57.2,0.0,0.0,0.0,0.0,0.0,41.8,0.0,5553.7,11.8,14.3,19.9,19.6,0.0,10.5,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:00:35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.9,31.7,18.7,13.1,0.0,0.0,20.2,20.1,20.0,32.1,30.0,49.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.8,25.0,5553.7,0.0,0.0,0.0,0.0,65.0,0,57.2,0.0,0.0,0.0,0.0,0.0,41.8,0.0,5553.7,11.8,14.3,19.9,19.6,0.0,10.5,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:00:45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.9,31.7,18.8,13.1,0.0,0.0,20.3,20.1,20.0,32.2,30.0,49.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.9,25.0,5553.7,0.0,0.0,0.0,0.0,65.0,0,57.2,0.0,0.0,0.0,0.0,0.0,41.9,0.0,5553.7,11.8,14.3,19.9,19.6,0.0,10.5,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:00:55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.9,31.6,18.8,13.1,0.0,0.0,20.3,20.1,20.1,32.3,30.0,49.7,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.9,25.0,5553.7,0.0,0.0,0.0,0.0,65.0,0,57.2,0.0,0.0,0.0,0.0,0.0,41.9,0.0,5553.7,11.8,14.3,19.9,19.6,0.0,10.5,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:01:05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.8,31.6,18.9,13.2,0.0,0.0,20.3,20.1,20.1,32.4,30.0,49.7,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.9,25.0,5553.7,0.0,0.0,0.0,0.0,65.0,0,57.1,0.0,0.0,0.0,0.0,0.0,41.9,0.0,5553.7,11.8,14.3,19.9,19.6,0.0,10.6,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:01:16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.8,31.6,18.9,13.2,0.0,0.0,20.4,20.2,20.1,32.5,30.0,49.6,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.8,25.0,5553.7,0.0,0.0,0.0,0.0,65.0,0,57.1,0.0,0.0,0.0,0.0,0.0,41.8,0.0,5553.7,11.8,14.3,19.9,19.6,0.0,10.5,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:01:26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.8,31.6,18.9,13.2,0.0,0.0,20.4,20.2,20.2,32.6,30.0,49.5,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.7,25.0,5553.7,0.0,0.0,0.0,0.0,65.0,0,57.1,0.0,0.0,0.0,0.0,0.0,41.7,0.0,5553.7,11.8,14.3,19.9,19.6,0.0,10.6,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:01:36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.8,31.6,19.0,13.2,0.0,0.0,20.4,20.2,20.2,32.7,30.0,49.5,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.7,25.1,5553.7,0.0,0.0,0.0,0.0,65.0,0,57.0,0.0,0.0,0.0,0.0,0.0,41.7,0.0,5553.7,11.8,14.3,19.9,19.6,0.0,10.5,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:01:46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.8,31.5,19.0,13.2,0.0,0.0,20.5,20.2,20.2,32.8,30.0,49.4,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.8,25.1,5553.7,0.0,0.0,0.0,0.0,65.0,0,57.0,0.0,0.0,0.0,0.0,0.0,41.7,0.0,5553.7,11.8,14.3,19.9,19.6,0.0,10.6,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:01:57,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.8,31.5,19.0,13.2,0.0,0.0,20.5,20.3,20.3,32.9,30.0,49.4,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.7,25.1,5553.7,0.0,0.0,0.0,0.0,65.0,0,57.0,0.0,0.0,0.0,0.0,0.0,41.7,0.0,5553.7,11.8,14.3,19.9,19.6,0.0,10.6,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:02:07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.8,31.5,19.1,13.2,0.0,0.0,20.5,20.3,20.3,33.0,30.0,49.3,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.6,25.0,5553.7,0.0,0.0,0.0,0.0,65.0,0,57.0,0.0,0.0,0.0,0.0,0.0,41.6,0.0,5553.7,11.8,14.3,19.9,19.6,0.0,10.6,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:02:17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.8,31.5,19.1,13.2,0.0,0.0,20.5,20.3,20.3,33.0,30.0,49.2,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.6,25.0,5553.7,0.0,0.0,0.0,0.0,65.0,0,56.9,0.0,0.0,0.0,0.0,0.0,41.6,0.0,5553.7,11.8,14.3,19.9,19.6,0.0,10.6,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:02:27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.8,31.5,19.1,13.2,0.0,0.0,20.6,20.4,20.4,33.1,30.0,49.2,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.5,25.0,5553.7,0.0,0.0,0.0,0.0,65.0,0,56.9,0.0,0.0,0.0,0.0,0.0,41.5,0.0,5553.7,11.8,14.3,19.9,19.6,0.0,10.6,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:02:38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.8,31.4,19.2,13.2,0.0,0.0,20.6,20.4,20.4,33.2,30.0,49.1,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.3,25.0,5553.7,0.0,0.0,0.0,0.0,65.0,0,56.9,0.0,0.0,0.0,0.0,0.0,41.3,0.0,5553.7,11.8,14.3,19.9,19.6,0.0,10.6,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:02:48,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.7,31.4,19.2,13.2,0.0,0.0,20.6,20.4,20.4,33.3,30.0,49.1,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.0,25.0,5553.7,0.0,0.0,0.0,0.0,65.0,0,56.9,0.0,0.0,0.0,0.0,0.0,41.0,0.0,5553.7,11.8,14.3,19.9,19.6,0.0,10.6,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:02:58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.7,31.4,19.3,13.3,0.0,0.0,20.6,20.5,20.5,33.4,30.0,49.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.1,25.0,5553.7,0.0,0.0,0.0,0.0,65.0,0,56.9,0.0,0.0,0.0,0.0,0.0,41.1,0.0,5553.7,11.8,14.3,19.9,19.6,0.0,10.6,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:03:09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.7,31.4,19.3,13.3,0.0,0.0,20.6,20.5,20.5,33.4,30.0,49.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.3,25.0,5553.7,0.0,0.0,0.0,0.0,65.0,0,56.8,0.0,0.0,0.0,0.0,0.0,41.3,0.0,5553.7,11.8,14.3,19.9,19.6,0.0,10.6,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:03:19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.7,31.4,19.3,13.3,0.0,0.0,20.7,20.5,20.5,33.5,30.0,48.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.6,25.0,5553.7,0.0,0.0,0.0,0.0,65.0,0,56.8,0.0,0.0,0.0,0.0,0.0,41.6,0.0,5553.7,11.9,14.3,19.9,19.6,0.0,10.6,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:03:29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.7,31.4,19.4,13.3,0.0,0.0,20.7,20.6,20.5,33.6,30.0,48.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.7,25.0,5553.7,0.0,0.0,0.0,0.0,65.0,0,56.8,0.0,0.0,0.0,0.0,0.0,41.7,0.0,5553.7,11.9,14.3,19.9,19.6,0.0,10.6,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:03:39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.7,31.3,19.4,13.3,0.0,0.0,20.7,20.6,20.6,33.6,30.0,48.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.8,25.0,5553.7,0.0,0.0,0.0,0.0,65.0,0,56.7,0.0,0.0,0.0,0.0,0.0,41.8,0.0,5553.7,11.9,14.3,19.9,19.6,0.0,10.6,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:03:50,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.7,31.3,19.4,13.3,0.0,0.0,20.8,20.6,20.6,33.7,30.0,48.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.6,25.0,5553.7,0.0,0.0,0.0,0.0,65.0,0,56.7,0.0,0.0,0.0,0.0,0.0,41.6,0.0,5553.7,11.9,14.4,19.9,19.6,0.0,10.6,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.7,31.3,19.5,13.3,0.0,0.0,20.8,20.6,20.6,33.8,30.0,48.7,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.4,25.0,5553.7,0.0,0.0,0.0,0.0,65.0,0,56.7,0.0,0.0,0.0,0.0,0.0,41.4,0.0,5553.7,11.9,14.4,19.9,19.6,0.0,10.6,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:04:10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.7,31.3,19.5,13.3,0.0,0.0,20.8,20.7,20.7,33.8,30.0,48.7,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.2,25.0,5553.7,0.0,0.0,0.0,0.0,65.0,0,56.7,0.0,0.0,0.0,0.0,0.0,41.2,0.0,5553.7,11.9,14.4,19.9,19.6,0.0,10.6,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:04:20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.6,31.3,19.5,13.3,0.0,0.0,20.9,20.7,20.7,33.9,30.0,48.6,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.3,25.0,5553.7,0.0,0.0,0.0,0.0,65.0,0,56.6,0.0,0.0,0.0,0.0,0.0,41.3,0.0,5553.7,11.9,14.3,19.9,19.6,0.0,10.6,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:04:31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.6,31.2,19.6,13.3,0.0,0.0,20.9,20.7,20.7,33.9,30.0,48.6,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.5,25.0,5553.7,0.0,0.0,0.0,0.0,65.0,0,56.6,0.0,0.0,0.0,0.0,0.0,41.5,0.0,5553.7,11.9,14.4,19.9,19.6,0.0,10.6,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:04:41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.6,31.2,19.6,13.3,0.0,0.0,20.9,20.7,20.7,34.0,30.0,48.5,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.7,25.0,5553.7,0.0,0.0,0.0,0.0,65.0,0,56.5,0.0,0.0,0.0,0.0,0.0,41.7,0.0,5553.7,11.9,14.3,19.9,19.6,0.0,10.6,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:04:51,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.6,31.2,19.6,13.4,0.0,0.0,20.9,20.8,20.8,34.1,30.0,48.5,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.9,25.0,5553.7,0.0,0.0,0.0,0.0,65.0,0,56.5,0.0,0.0,0.0,0.0,0.0,41.9,0.0,5553.7,11.9,14.4,19.9,19.6,0.0,10.6,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:05:01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.6,31.2,19.7,13.4,0.0,0.0,21.0,20.8,20.8,34.1,30.0,48.4,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.2,25.0,5553.7,0.0,0.0,0.0,0.0,65.0,0,56.5,0.0,0.0,0.0,0.0,0.0,42.2,0.0,5553.7,11.9,14.4,19.9,19.6,0.0,10.7,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:05:12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.6,31.2,19.7,13.4,0.0,0.0,21.0,20.8,20.8,34.2,30.0,48.4,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.2,25.0,5553.7,0.0,0.0,0.0,0.0,65.0,0,56.5,0.0,0.0,0.0,0.0,0.0,42.2,0.0,5553.7,11.9,14.3,19.9,19.6,0.0,10.7,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:05:22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.6,31.1,19.7,13.4,0.0,0.0,21.0,20.8,20.8,34.2,30.0,48.3,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.0,25.0,5553.7,0.0,0.0,0.0,0.0,65.0,0,56.4,0.0,0.0,0.0,0.0,0.0,42.0,0.0,5553.7,11.9,14.3,19.9,19.6,0.0,10.7,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:05:32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.6,31.1,19.8,13.4,0.0,0.0,21.0,20.9,20.9,34.3,30.0,48.3,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.9,25.0,5553.7,0.0,0.0,0.0,0.0,65.0,0,56.4,0.0,0.0,0.0,0.0,0.0,41.9,0.0,5553.7,11.9,14.4,19.9,19.6,0.0,10.7,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:05:42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.6,31.1,19.8,13.4,0.0,0.0,21.0,20.9,20.9,34.3,30.0,48.2,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.0,25.0,5553.7,0.0,0.0,0.0,0.0,65.0,0,56.4,0.0,0.0,0.0,0.0,0.0,42.0,0.0,5553.7,11.9,14.3,19.9,19.6,0.0,10.7,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:05:53,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.5,31.1,19.8,13.4,0.0,0.0,21.1,20.9,20.9,34.4,30.0,48.2,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.8,25.0,5553.7,0.0,0.0,0.0,0.0,65.0,0,56.3,0.0,0.0,0.0,0.0,0.0,41.8,0.0,5553.7,11.9,14.4,19.9,19.6,0.0,10.7,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:06:03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.5,31.1,19.9,13.4,0.0,0.0,21.1,20.9,21.0,34.4,30.0,48.2,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.7,25.0,5553.7,0.0,0.0,0.0,0.0,65.0,0,56.3,0.0,0.0,0.0,0.0,0.0,41.7,0.0,5553.7,11.9,14.4,19.9,19.6,0.0,10.7,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:06:13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.5,31.1,19.9,13.5,0.0,0.0,21.2,20.9,21.0,34.5,30.0,48.1,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.9,25.0,5553.7,0.0,0.0,0.0,0.0,65.0,0,56.3,0.0,0.0,0.0,0.0,0.0,41.9,0.0,5553.7,11.9,14.3,19.9,19.6,0.0,10.7,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:06:24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.5,31.0,19.9,13.5,0.0,0.0,21.2,20.9,21.0,34.5,30.0,48.1,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.1,25.0,5553.7,0.0,0.0,0.0,0.0,65.0,0,56.3,0.0,0.0,0.0,0.0,0.0,42.1,0.0,5553.7,11.9,14.3,19.9,19.6,0.0,10.7,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:06:34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.5,31.0,19.9,13.5,0.0,0.0,21.2,21.0,21.1,34.6,30.0,48.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.0,25.0,5553.7,0.0,0.0,0.0,0.0,64.9,0,56.3,0.0,0.0,0.0,0.0,0.0,42.0,0.0,5553.7,11.9,14.3,19.9,19.6,0.0,10.7,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:06:44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.5,31.0,20.0,13.5,0.0,0.0,21.2,21.0,21.1,34.6,30.0,48.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.9,25.0,5553.7,0.0,0.0,0.0,0.0,65.0,0,56.3,0.0,0.0,0.0,0.0,0.0,41.9,0.0,5553.7,11.9,14.3,19.9,19.6,0.0,10.7,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:06:54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.5,31.0,20.0,13.5,0.0,0.0,21.3,21.0,21.1,34.6,30.0,47.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.8,25.0,5553.7,0.0,0.0,0.0,0.0,65.0,0,56.3,0.0,0.0,0.0,0.0,0.0,41.8,0.0,5553.7,11.9,14.4,19.9,19.6,0.0,10.7,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:07:04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.5,31.0,20.0,13.5,0.0,0.0,21.3,21.0,21.1,34.7,30.0,47.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.8,25.0,5553.7,0.0,0.0,0.0,0.0,65.0,0,56.2,0.0,0.0,0.0,0.0,0.0,41.8,0.0,5553.7,11.9,14.3,19.9,19.6,0.0,10.7,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:07:15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.5,30.9,20.1,13.5,0.0,0.0,21.3,21.0,21.2,34.7,30.0,47.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.9,25.0,5553.7,0.0,0.0,0.0,0.0,65.0,0,56.2,0.0,0.0,0.0,0.0,0.0,41.9,0.0,5553.7,11.9,14.4,19.9,19.6,0.0,10.7,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:07:25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.4,30.9,20.1,13.5,0.0,0.0,21.4,21.1,21.2,34.8,30.0,47.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.8,25.0,5553.7,0.0,0.0,0.0,0.0,65.0,0,56.2,0.0,0.0,0.0,0.0,0.0,41.8,0.0,5553.7,12.0,14.4,19.9,19.6,0.0,10.7,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:07:35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.4,30.9,20.1,13.5,0.0,0.0,21.4,21.1,21.2,34.8,30.0,47.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.8,25.0,5553.7,0.0,0.0,0.0,0.0,64.9,0,56.2,0.0,0.0,0.0,0.0,0.0,41.8,0.0,5553.7,12.0,14.3,19.9,19.6,0.0,10.7,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:07:46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.4,30.9,20.2,13.5,0.0,0.0,21.4,21.1,21.2,34.8,30.0,47.7,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.7,25.0,5553.7,0.0,0.0,0.0,0.0,65.0,0,56.2,0.0,0.0,0.0,0.0,0.0,41.7,0.0,5553.7,12.0,14.4,19.9,19.6,0.0,10.7,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:07:56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.4,30.9,20.2,13.5,0.0,0.0,21.4,21.1,21.3,34.9,30.0,47.7,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.5,25.0,5553.7,0.0,0.0,0.0,0.0,65.0,0,56.2,0.0,0.0,0.0,0.0,0.0,41.5,0.0,5553.7,12.0,14.4,19.9,19.6,0.0,10.7,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:08:06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.4,30.9,20.2,13.6,0.0,0.0,21.5,21.1,21.3,34.9,30.0,47.7,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.5,25.0,5553.7,0.0,0.0,0.0,0.0,65.0,0,56.1,0.0,0.0,0.0,0.0,0.0,41.5,0.0,5553.7,12.0,14.4,19.9,19.6,0.0,10.7,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:08:16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.4,30.8,20.3,13.6,0.0,0.0,21.5,21.2,21.3,35.0,30.0,47.6,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.5,25.0,5553.7,0.0,0.0,0.0,0.0,65.0,0,56.2,0.0,0.0,0.0,0.0,0.0,41.5,0.0,5553.7,11.9,14.4,19.9,19.6,0.0,10.7,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:08:27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.4,30.8,20.3,13.6,0.0,0.0,21.5,21.2,21.3,35.0,30.0,47.6,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.4,24.9,5553.7,0.0,0.0,0.0,0.0,64.9,0,56.1,0.0,0.0,0.0,0.0,0.0,41.4,0.0,5553.7,11.9,14.4,19.9,19.6,0.0,10.8,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:08:37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.4,30.8,20.4,13.6,0.0,0.0,21.5,21.2,21.4,35.0,30.0,47.5,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.6,25.0,5553.7,0.0,0.0,0.0,0.0,64.9,0,56.1,0.0,0.0,0.0,0.0,0.0,41.6,0.0,5553.7,11.9,14.4,19.9,19.6,0.0,10.8,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:08:47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.4,30.8,20.4,13.6,0.0,0.0,21.5,21.2,21.4,35.1,30.0,47.5,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.7,24.9,5553.7,0.0,0.0,0.0,0.0,64.9,0,56.1,0.0,0.0,0.0,0.0,0.0,41.7,0.0,5553.7,11.9,14.4,19.9,19.6,0.0,10.8,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:08:57,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.4,30.8,20.4,13.6,0.0,0.0,21.6,21.2,21.4,35.1,30.0,47.5,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.6,24.9,5553.7,0.0,0.0,0.0,0.0,64.9,0,56.1,0.0,0.0,0.0,0.0,0.0,41.6,0.0,5553.7,11.9,14.4,19.9,19.6,0.0,10.8,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:09:08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.3,30.7,20.5,13.6,0.0,0.0,21.6,21.3,21.4,35.2,30.0,47.4,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.4,24.9,5553.7,0.0,0.0,0.0,0.0,64.9,0,56.1,0.0,0.0,0.0,0.0,0.0,41.4,0.0,5553.7,12.0,14.4,19.9,19.6,0.0,10.8,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:09:18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.3,30.7,20.5,13.6,0.0,0.0,21.6,21.3,21.5,35.2,30.0,47.4,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.5,24.9,5553.7,0.0,0.0,0.0,0.0,64.9,0,56.1,0.0,0.0,0.0,0.0,0.0,41.5,0.0,5553.7,12.0,14.4,19.9,19.6,0.0,10.8,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:09:28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.3,30.7,20.5,13.6,0.0,0.0,21.7,21.3,21.5,35.2,30.0,47.4,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.4,24.9,5553.7,0.0,0.0,0.0,0.0,64.9,0,56.1,0.0,0.0,0.0,0.0,0.0,41.4,0.0,5553.7,12.0,14.4,19.9,19.6,0.0,10.8,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:09:38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.3,30.7,20.6,13.6,0.0,0.0,21.7,21.3,21.5,35.3,30.0,47.3,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.4,24.9,5553.7,0.0,0.0,0.0,0.0,64.9,0,56.1,0.0,0.0,0.0,0.0,0.0,41.4,0.0,5553.7,12.0,14.4,19.9,19.6,0.0,10.8,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:09:49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.3,30.7,20.6,13.7,0.0,0.0,21.7,21.3,21.5,35.3,30.0,47.3,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.5,24.9,5553.7,0.0,0.0,0.0,0.0,64.9,0,56.0,0.0,0.0,0.0,0.0,0.0,41.5,0.0,5553.7,12.0,14.4,19.9,19.6,0.0,10.8,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:09:59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.3,30.6,20.6,13.7,0.0,0.0,21.8,21.4,21.5,35.4,30.0,47.2,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.9,24.9,5553.7,0.0,0.0,0.0,0.0,64.9,0,56.0,0.0,0.0,0.0,0.0,0.0,41.9,0.0,5553.7,12.0,14.4,19.9,19.6,0.0,10.8,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:10:09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.3,30.6,20.7,13.7,0.0,0.0,21.8,21.4,21.6,35.4,30.0,47.2,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.8,24.9,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.9,0.0,0.0,0.0,0.0,0.0,41.8,0.0,5553.7,12.0,14.4,19.9,19.6,0.0,10.8,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:10:19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.3,30.6,20.7,13.7,0.0,0.0,21.8,21.4,21.6,35.4,30.0,47.2,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.9,24.9,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.9,0.0,0.0,0.0,0.0,0.0,41.9,0.0,5553.7,12.0,14.4,19.9,19.6,0.0,10.8,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:10:30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.3,30.6,20.7,13.7,0.0,0.0,21.8,21.4,21.6,35.5,30.0,47.1,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.1,24.9,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.9,0.0,0.0,0.0,0.0,0.0,42.1,0.0,5553.7,12.0,14.4,19.9,19.6,0.0,10.8,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:10:40,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.3,30.6,20.7,13.7,0.0,0.0,21.8,21.4,21.7,35.5,30.0,47.1,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.1,24.9,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.9,0.0,0.0,0.0,0.0,0.0,42.1,0.0,5553.7,12.0,14.4,19.9,19.6,0.0,10.8,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:10:50,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.3,30.5,20.8,13.7,0.0,0.0,21.9,21.5,21.7,35.6,30.0,47.1,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.0,24.9,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.9,0.0,0.0,0.0,0.0,0.0,42.0,0.0,5553.7,12.0,14.4,19.9,19.6,0.0,10.9,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.2,30.5,20.8,13.7,0.0,0.0,21.9,21.5,21.7,35.6,30.0,47.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.2,24.9,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.9,0.0,0.0,0.0,0.0,0.0,42.2,0.0,5553.7,12.0,14.4,19.9,19.6,0.0,10.9,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:11:11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.2,30.5,20.8,13.7,0.0,0.0,21.9,21.5,21.7,35.6,30.0,47.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.2,24.9,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.8,0.0,0.0,0.0,0.0,0.0,42.2,0.0,5553.7,12.0,14.4,19.9,19.6,0.0,10.8,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:11:21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.2,30.5,20.9,13.7,0.0,0.0,22.0,21.6,21.8,35.7,30.0,47.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.0,24.9,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.8,0.0,0.0,0.0,0.0,0.0,42.0,0.0,5553.7,12.0,14.4,19.9,19.6,0.0,10.9,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:11:31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.2,30.4,20.9,13.7,0.0,0.0,22.0,21.6,21.8,35.7,30.0,46.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.7,24.9,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.8,0.0,0.0,0.0,0.0,0.0,41.7,0.0,5553.7,12.0,14.4,19.9,19.6,0.0,10.9,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:11:41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.2,30.4,20.9,13.8,0.0,0.0,22.0,21.6,21.8,35.7,30.0,46.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.8,24.9,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.8,0.0,0.0,0.0,0.0,0.0,41.8,0.0,5553.7,12.0,14.4,19.9,19.6,0.0,10.9,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:11:52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.2,30.4,21.0,13.8,0.0,0.0,22.0,21.6,21.8,35.8,30.0,46.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.0,24.9,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.8,0.0,0.0,0.0,0.0,0.0,42.0,0.0,5553.7,12.1,14.4,19.9,19.6,0.0,10.9,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:12:02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.2,30.4,21.0,13.8,0.0,0.0,22.1,21.6,21.9,35.8,30.0,46.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.7,24.9,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.8,0.0,0.0,0.0,0.0,0.0,41.7,0.0,5553.7,12.1,14.4,19.9,19.6,0.0,10.9,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:12:12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.2,30.3,21.0,13.8,0.0,0.0,22.1,21.6,21.9,35.8,30.0,46.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.7,24.9,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.7,0.0,0.0,0.0,0.0,0.0,41.7,0.0,5553.7,12.1,14.4,19.9,19.6,0.0,10.9,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:12:22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.2,30.3,21.1,13.8,0.0,0.0,22.1,21.6,21.9,35.9,30.0,46.7,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.7,24.8,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.8,0.0,0.0,0.0,0.0,0.0,41.7,0.0,5553.7,12.1,14.4,19.9,19.6,0.0,10.9,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:12:33,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.1,30.3,21.1,13.8,0.0,0.0,22.1,21.7,21.9,35.9,30.0,46.7,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.7,24.9,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.7,0.0,0.0,0.0,0.0,0.0,41.7,0.0,5553.7,12.1,14.4,19.9,19.6,0.0,10.9,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:12:43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.1,30.3,21.1,13.8,0.0,0.0,22.1,21.7,21.9,35.9,30.0,46.7,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.6,24.9,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.7,0.0,0.0,0.0,0.0,0.0,41.6,0.0,5553.7,12.1,14.4,19.9,19.6,0.0,10.9,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:12:53,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.1,30.2,21.2,13.8,0.0,0.0,22.2,21.7,22.0,35.9,30.0,46.6,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.6,24.9,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.7,0.0,0.0,0.0,0.0,0.0,41.6,0.0,5553.7,12.1,14.4,19.9,19.6,0.0,10.9,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:13:03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.1,30.2,21.2,13.8,0.0,0.0,22.2,21.7,22.0,36.0,30.0,46.6,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.5,24.9,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.8,0.0,0.0,0.0,0.0,0.0,41.5,0.0,5553.7,12.1,14.4,19.9,19.6,0.0,10.9,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:13:14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.1,30.2,21.2,13.8,0.0,0.0,22.2,21.7,22.0,36.0,30.0,46.6,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.5,24.9,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.7,0.0,0.0,0.0,0.0,0.0,41.5,0.0,5553.7,12.1,14.4,19.9,19.6,0.0,10.9,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:13:24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.1,30.2,21.2,13.8,0.0,0.0,22.2,21.7,22.0,36.0,30.0,46.5,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.6,24.9,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.7,0.0,0.0,0.0,0.0,0.0,41.6,0.0,5553.7,12.1,14.4,19.9,19.6,0.0,10.9,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:13:34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.1,30.1,21.3,13.8,0.0,0.0,22.3,21.7,22.1,36.1,30.0,46.5,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.5,24.9,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.7,0.0,0.0,0.0,0.0,0.0,41.5,0.0,5553.7,12.1,14.4,19.9,19.6,0.0,10.9,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:13:44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.1,30.1,21.3,13.9,0.0,0.0,22.3,21.8,22.1,36.1,30.0,46.5,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.5,24.9,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.7,0.0,0.0,0.0,0.0,0.0,41.5,0.0,5553.7,12.1,14.4,19.9,19.6,0.0,10.9,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:13:55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.1,30.1,21.3,13.9,0.0,0.0,22.3,21.8,22.1,36.1,30.0,46.5,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.4,24.9,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.7,0.0,0.0,0.0,0.0,0.0,41.4,0.0,5553.7,12.1,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:14:05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.1,30.1,21.4,13.9,0.0,0.0,22.3,21.8,22.1,36.1,30.0,46.4,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.4,25.0,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.7,0.0,0.0,0.0,0.0,0.0,41.4,0.0,5553.7,12.1,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:14:15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.1,30.0,21.4,13.9,0.0,0.0,22.4,21.8,22.2,36.2,30.0,46.4,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.3,25.0,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.7,0.0,0.0,0.0,0.0,0.0,41.3,0.0,5553.7,12.1,14.4,19.9,19.6,0.0,10.9,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:14:26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.1,30.0,21.4,13.9,0.0,0.0,22.4,21.8,22.2,36.2,30.0,46.4,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.2,24.9,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.7,0.0,0.0,0.0,0.0,0.0,41.2,0.0,5553.7,12.1,14.4,19.9,19.6,0.0,10.9,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:14:36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.1,30.0,21.4,13.9,0.0,0.0,22.4,21.8,22.2,36.2,30.0,46.3,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.9,25.0,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.7,0.0,0.0,0.0,0.0,0.0,40.9,0.0,5553.7,12.1,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:14:46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.0,30.0,21.5,13.9,0.0,0.0,22.4,21.9,22.2,36.3,30.0,46.3,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.2,25.0,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.7,0.0,0.0,0.0,0.0,0.0,41.2,0.0,5553.7,12.1,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:14:56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.0,30.0,21.5,13.9,0.0,0.0,22.5,21.9,22.2,36.3,30.0,46.3,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.2,25.0,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.7,0.0,0.0,0.0,0.0,0.0,41.2,0.0,5553.7,12.1,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:15:07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.0,29.9,21.5,13.9,0.0,0.0,22.5,21.9,22.3,36.3,30.0,46.2,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.2,25.0,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.7,0.0,0.0,0.0,0.0,0.0,41.2,0.0,5553.7,12.1,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:15:17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.0,29.9,21.5,14.0,0.0,0.0,22.5,21.9,22.3,36.3,30.0,46.2,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.2,25.0,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.7,0.0,0.0,0.0,0.0,0.0,41.2,0.0,5553.7,12.1,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:15:27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.0,29.9,21.6,14.0,0.0,0.0,22.5,21.9,22.3,36.3,30.0,46.2,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.3,25.0,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.7,0.0,0.0,0.0,0.0,0.0,41.3,0.0,5553.7,12.1,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:15:37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.0,29.9,21.6,14.0,0.0,0.0,22.5,21.9,22.3,36.4,30.0,46.2,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.2,25.0,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.7,0.0,0.0,0.0,0.0,0.0,41.2,0.0,5553.7,12.1,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:15:48,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.0,29.8,21.6,14.0,0.0,0.0,22.6,21.9,22.4,36.4,30.0,46.1,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.0,25.0,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.6,0.0,0.0,0.0,0.0,0.0,41.0,0.0,5553.7,12.1,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:15:58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.0,29.8,21.7,14.0,0.0,0.0,22.6,21.9,22.4,36.4,30.0,46.1,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.2,25.0,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.6,0.0,0.0,0.0,0.0,0.0,41.2,0.0,5553.7,12.1,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:16:08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.0,29.8,21.7,14.0,0.0,0.0,22.6,22.0,22.4,36.4,30.0,46.1,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.0,25.0,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.6,0.0,0.0,0.0,0.0,0.0,41.0,0.0,5553.7,12.1,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:16:18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.0,29.8,21.7,14.0,0.0,0.0,22.6,22.0,22.4,36.5,30.0,46.1,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.0,25.0,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.6,0.0,0.0,0.0,0.0,0.0,41.0,0.0,5553.7,12.1,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:16:29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.0,29.8,21.7,14.0,0.0,0.0,22.6,22.0,22.4,36.5,30.0,46.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.1,25.0,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.6,0.0,0.0,0.0,0.0,0.0,41.1,0.0,5553.7,12.1,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:16:39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.0,29.7,21.8,14.0,0.0,0.0,22.6,22.0,22.4,36.5,30.0,46.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.1,25.0,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.6,0.0,0.0,0.0,0.0,0.0,41.1,0.0,5553.7,12.1,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:16:49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.9,29.7,21.8,14.0,0.0,0.0,22.6,22.0,22.5,36.5,30.0,46.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.1,25.0,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.6,0.0,0.0,0.0,0.0,0.0,41.1,0.0,5553.7,12.1,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:16:59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.9,29.7,21.8,14.0,0.0,0.0,22.7,22.0,22.5,36.5,30.0,46.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.4,25.0,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.5,0.0,0.0,0.0,0.0,0.0,41.4,0.0,5553.7,12.1,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:17:10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.9,29.7,21.8,14.0,0.0,0.0,22.7,22.0,22.5,36.6,30.0,45.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.5,25.0,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.5,0.0,0.0,0.0,0.0,0.0,41.5,0.0,5553.7,12.1,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:17:20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.9,29.6,21.9,14.1,0.0,0.0,22.7,22.0,22.5,36.6,30.0,45.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.5,25.0,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.5,0.0,0.0,0.0,0.0,0.0,41.5,0.0,5553.7,12.2,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:17:30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.9,29.6,21.9,14.1,0.0,0.0,22.7,22.1,22.5,36.6,30.0,45.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.5,25.0,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.5,0.0,0.0,0.0,0.0,0.0,41.5,0.0,5553.7,12.1,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:17:40,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.9,29.6,21.9,14.1,0.0,0.0,22.7,22.1,22.6,36.6,30.0,45.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.6,25.0,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.4,0.0,0.0,0.0,0.0,0.0,41.6,0.0,5553.7,12.1,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:17:51,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.9,29.6,21.9,14.1,0.0,0.0,22.7,22.1,22.6,36.6,30.0,45.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.7,25.0,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.4,0.0,0.0,0.0,0.0,0.0,41.7,0.0,5553.7,12.1,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:18:01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.9,29.6,22.0,14.1,0.0,0.0,22.8,22.1,22.6,36.7,30.0,45.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.8,25.0,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.3,0.0,0.0,0.0,0.0,0.0,41.8,0.0,5553.7,12.1,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:18:11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.9,29.5,22.0,14.1,0.0,0.0,22.8,22.1,22.6,36.7,30.0,45.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.0,25.0,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.3,0.0,0.0,0.0,0.0,0.0,42.0,0.0,5553.7,12.2,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:18:21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.9,29.5,22.0,14.1,0.0,0.0,22.8,22.1,22.6,36.7,30.0,45.7,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.1,25.0,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.3,0.0,0.0,0.0,0.0,0.0,42.1,0.0,5553.7,12.1,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:18:32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.8,29.5,22.0,14.1,0.0,0.0,22.8,22.1,22.6,36.7,30.0,45.7,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.2,25.0,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.3,0.0,0.0,0.0,0.0,0.0,42.2,0.0,5553.7,12.1,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:18:42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.8,29.5,22.1,14.1,0.0,0.0,22.8,22.1,22.6,36.7,30.0,45.7,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.2,25.0,5553.7,0.0,0.0,0.0,0.0,64.8,0,55.3,0.0,0.0,0.0,0.0,0.0,42.2,0.0,5553.7,12.2,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:18:52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.8,29.4,22.1,14.1,0.0,0.0,22.8,22.1,22.7,36.8,30.0,45.7,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.3,25.0,5553.7,0.0,0.0,0.0,0.0,64.8,0,55.3,0.0,0.0,0.0,0.0,0.0,42.3,0.0,5553.7,12.2,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:19:02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.8,29.4,22.1,14.1,0.0,0.0,22.9,22.2,22.7,36.8,30.0,45.6,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.0,25.0,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.3,0.0,0.0,0.0,0.0,0.0,42.0,0.0,5553.7,12.2,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:19:13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.8,29.4,22.1,14.1,0.0,0.0,22.9,22.2,22.7,36.8,30.0,45.6,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.1,25.0,5553.7,0.0,0.0,0.0,0.0,64.9,0,55.2,0.0,0.0,0.0,0.0,0.0,42.1,0.0,5553.7,12.2,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:19:23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.8,29.4,22.2,14.2,0.0,0.0,22.9,22.2,22.7,36.8,30.0,45.6,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.3,25.0,5553.7,0.0,0.0,0.0,0.0,64.8,0,55.3,0.0,0.0,0.0,0.0,0.0,42.3,0.0,5553.7,12.2,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:19:33,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.8,29.4,22.2,14.2,0.0,0.0,22.9,22.2,22.7,36.8,30.0,45.6,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.3,25.0,5553.7,0.0,0.0,0.0,0.0,64.8,0,55.2,0.0,0.0,0.0,0.0,0.0,42.3,0.0,5553.7,12.2,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:19:43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.8,29.3,22.2,14.2,0.0,0.0,22.9,22.2,22.7,36.8,30.0,45.5,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.0,25.0,5553.7,0.0,0.0,0.0,0.0,64.8,0,55.3,0.0,0.0,0.0,0.0,0.0,42.0,0.0,5553.7,12.2,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:19:54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.8,29.3,22.2,14.2,0.0,0.0,22.9,22.2,22.7,36.9,30.0,45.5,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.1,25.0,5553.7,0.0,0.0,0.0,0.0,64.8,0,55.3,0.0,0.0,0.0,0.0,0.0,42.1,0.0,5553.7,12.2,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:20:04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.8,29.3,22.2,14.2,0.0,0.0,22.9,22.2,22.8,36.9,30.0,45.5,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.3,25.0,5553.7,0.0,0.0,0.0,0.0,64.8,0,55.2,0.0,0.0,0.0,0.0,0.0,42.3,0.0,5553.7,12.2,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:20:14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.8,29.3,22.3,14.2,0.0,0.0,23.0,22.2,22.8,36.9,30.0,45.5,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.3,25.0,5553.7,0.0,0.0,0.0,0.0,64.8,0,55.2,0.0,0.0,0.0,0.0,0.0,42.3,0.0,5553.7,12.2,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:20:24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.8,29.2,22.3,14.2,0.0,0.0,23.0,22.2,22.8,36.9,30.0,45.4,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.2,25.0,5553.7,0.0,0.0,0.0,0.0,64.8,0,55.2,0.0,0.0,0.0,0.0,0.0,42.2,0.0,5553.7,12.2,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:20:35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.8,29.2,22.3,14.2,0.0,0.0,23.0,22.2,22.8,36.9,30.0,45.4,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.5,25.0,5553.7,0.0,0.0,0.0,0.0,64.8,0,55.2,0.0,0.0,0.0,0.0,0.0,42.5,0.0,5553.7,12.2,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:20:45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.7,29.2,22.3,14.2,0.0,0.0,23.0,22.2,22.8,37.0,30.0,45.4,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.9,25.0,5553.7,0.0,0.0,0.0,0.0,64.8,0,55.2,0.0,0.0,0.0,0.0,0.0,42.9,0.0,5553.7,12.2,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:20:55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.7,29.2,22.4,14.2,0.0,0.0,23.0,22.2,22.8,37.0,30.0,45.4,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,43.1,25.0,5553.7,0.0,0.0,0.0,0.0,64.8,0,55.1,0.0,0.0,0.0,0.0,0.0,43.1,0.0,5553.7,12.2,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:21:05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.7,29.2,22.4,14.2,0.0,0.0,23.0,22.2,22.8,37.0,30.0,45.3,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,43.2,25.0,5553.7,0.0,0.0,0.0,0.0,64.8,0,55.1,0.0,0.0,0.0,0.0,0.0,43.3,0.0,5553.7,12.2,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:21:16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.7,29.1,22.4,14.2,0.0,0.0,23.0,22.1,22.8,37.0,30.0,45.3,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,43.5,25.0,5553.7,0.0,0.0,0.0,0.0,64.8,0,55.1,0.0,0.0,0.0,0.0,0.0,43.5,0.0,5553.7,12.2,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:21:26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.7,29.1,22.4,14.3,0.0,0.0,23.0,22.1,22.9,37.0,30.0,45.3,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,43.8,25.0,5553.7,0.0,0.0,0.0,0.0,64.8,0,55.1,0.0,0.0,0.0,0.0,0.0,43.8,0.0,5553.7,12.2,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:21:36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.7,29.1,22.4,14.3,0.0,0.0,23.1,22.1,22.9,37.0,30.0,45.2,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,43.8,25.0,5553.7,0.0,0.0,0.0,0.0,64.8,0,55.1,0.0,0.0,0.0,0.0,0.0,43.8,0.0,5553.7,12.2,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:21:47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.7,29.1,22.5,14.3,0.0,0.0,23.1,22.1,22.9,37.1,30.0,45.2,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,43.9,25.0,5553.7,0.0,0.0,0.0,0.0,64.8,0,55.1,0.0,0.0,0.0,0.0,0.0,43.9,0.0,5553.7,12.2,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:21:57,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.7,29.1,22.5,14.3,0.0,0.0,23.1,22.1,22.9,37.1,30.0,45.2,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,44.3,25.0,5553.7,0.0,0.0,0.0,0.0,64.8,0,55.0,0.0,0.0,0.0,0.0,0.0,44.3,0.0,5553.7,12.2,14.4,19.9,19.6,0.0,10.9,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:22:07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.7,29.0,22.5,14.3,0.0,0.0,23.1,22.1,22.9,37.1,30.0,45.2,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,44.3,25.0,5553.7,0.0,0.0,0.0,0.0,64.8,0,55.0,0.0,0.0,0.0,0.0,0.0,44.3,0.0,5553.7,12.2,14.4,19.9,19.6,0.0,10.9,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:22:17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.7,29.0,22.5,14.3,0.0,0.0,23.1,22.1,22.9,37.1,30.0,45.1,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,44.4,25.0,5553.7,0.0,0.0,0.0,0.0,64.8,0,55.0,0.0,0.0,0.0,0.0,0.0,44.4,0.0,5553.7,12.2,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:22:28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.7,29.0,22.5,14.3,0.0,0.0,23.1,22.1,22.9,37.1,30.0,45.1,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,44.5,25.0,5553.7,0.0,0.0,0.0,0.0,64.8,0,55.0,0.0,0.0,0.0,0.0,0.0,44.5,0.0,5553.7,12.2,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:22:38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.6,29.0,22.6,14.3,0.0,0.0,23.1,22.1,23.0,37.1,30.0,45.1,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,44.5,25.0,5553.7,0.0,0.0,0.0,0.0,64.8,0,55.0,0.0,0.0,0.0,0.0,0.0,44.5,0.0,5553.7,12.3,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:22:48,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.6,28.9,22.6,14.3,0.0,0.0,23.2,22.1,23.0,37.2,30.0,45.1,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,44.5,25.1,5553.7,0.0,0.0,0.0,0.0,64.8,0,55.0,0.0,0.0,0.0,0.0,0.0,44.5,0.0,5553.7,12.3,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:22:58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.6,28.9,22.6,14.3,0.0,0.0,23.2,22.1,23.0,37.2,30.0,45.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,44.5,25.1,5553.7,0.0,0.0,0.0,0.0,64.8,0,55.0,0.0,0.0,0.0,0.0,0.0,44.5,0.0,5553.7,12.3,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:23:09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.6,28.9,22.6,14.3,0.0,0.0,23.2,22.1,23.0,37.2,30.0,45.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,44.4,25.1,5553.7,0.0,0.0,0.0,0.0,64.8,0,55.0,0.0,0.0,0.0,0.0,0.0,44.4,0.0,5553.7,12.3,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:23:19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.6,28.9,22.6,14.3,0.0,0.0,23.2,22.2,23.0,37.2,30.0,45.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,44.4,25.1,5553.7,0.0,0.0,0.0,0.0,64.8,0,55.0,0.0,0.0,0.0,0.0,0.0,44.4,0.0,5553.7,12.3,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:23:29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.6,28.9,22.7,14.3,0.0,0.0,23.2,22.2,23.0,37.2,30.0,45.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,44.2,25.1,5553.7,0.0,0.0,0.0,0.0,64.8,0,55.0,0.0,0.0,0.0,0.0,0.0,44.2,0.0,5553.7,12.3,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:23:39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.6,28.8,22.7,14.3,0.0,0.0,23.2,22.2,23.0,37.2,30.0,45.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,44.3,25.1,5553.7,0.0,0.0,0.0,0.0,64.8,0,55.0,0.0,0.0,0.0,0.0,0.0,44.3,0.0,5553.7,12.3,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:23:50,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.6,28.8,22.7,14.4,0.0,0.0,23.2,22.2,23.1,37.2,30.0,44.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,44.3,25.1,5553.7,0.0,0.0,0.0,0.0,64.8,0,55.0,0.0,0.0,0.0,0.0,0.0,44.3,0.0,5553.7,12.3,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.6,28.8,22.7,14.4,0.0,0.0,23.3,22.2,23.1,37.3,30.0,44.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,44.3,25.1,5553.7,0.0,0.0,0.0,0.0,64.8,0,55.0,0.0,0.0,0.0,0.0,0.0,44.3,0.0,5553.7,12.3,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:24:10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.6,28.8,22.7,14.4,0.0,0.0,23.3,22.2,23.1,37.3,30.0,44.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,44.3,25.1,5553.7,0.0,0.0,0.0,0.0,64.8,0,55.0,0.0,0.0,0.0,0.0,0.0,44.3,0.0,5553.7,12.3,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:24:20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.6,28.8,22.8,14.4,0.0,0.0,23.3,22.2,23.1,37.3,30.0,44.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,44.2,25.1,5553.7,0.0,0.0,0.0,0.0,64.7,0,55.0,0.0,0.0,0.0,0.0,0.0,44.2,0.0,5553.7,12.3,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:24:30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.6,28.7,22.8,14.4,0.0,0.0,23.3,22.2,23.1,37.3,30.0,44.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,44.2,25.1,5553.7,0.0,0.0,0.0,0.0,64.8,0,55.0,0.0,0.0,0.0,0.0,0.0,44.2,0.0,5553.7,12.3,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:24:41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.6,28.7,22.8,14.4,0.0,0.0,23.3,22.3,23.1,37.3,30.0,44.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,44.2,25.1,5553.7,0.0,0.0,0.0,0.0,64.7,0,55.0,0.0,0.0,0.0,0.0,0.0,44.2,0.0,5553.7,12.3,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:24:51,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.6,28.7,22.8,14.4,0.0,0.0,23.3,22.3,23.1,37.3,30.0,44.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,44.2,25.1,5553.7,0.0,0.0,0.0,0.0,64.8,0,55.0,0.0,0.0,0.0,0.0,0.0,44.2,0.0,5553.7,12.3,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:25:01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.5,28.7,22.8,14.4,0.0,0.0,23.3,22.3,23.2,37.3,30.0,44.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,44.2,25.1,5553.7,0.0,0.0,0.0,0.0,64.8,0,55.0,0.0,0.0,0.0,0.0,0.0,44.2,0.0,5553.7,12.3,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:25:12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.5,28.7,22.9,14.4,0.0,0.0,23.3,22.3,23.2,37.3,30.0,44.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,44.1,25.1,5553.7,0.0,0.0,0.0,0.0,64.8,0,55.0,0.0,0.0,0.0,0.0,0.0,44.1,0.0,5553.7,12.3,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:25:22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.5,28.7,22.9,14.4,0.0,0.0,23.4,22.3,23.2,37.3,30.0,44.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,44.0,25.1,5553.7,0.0,0.0,0.0,0.0,64.8,0,55.0,0.0,0.0,0.0,0.0,0.0,44.0,0.0,5553.7,12.3,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:25:32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.5,28.6,22.9,14.4,0.0,0.0,23.4,22.3,23.2,37.3,30.0,44.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,43.9,25.1,5553.7,0.0,0.0,0.0,0.0,64.8,0,55.0,0.0,0.0,0.0,0.0,0.0,43.9,0.0,5553.7,12.3,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:25:42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.5,28.6,22.9,14.4,0.0,0.0,23.4,22.3,23.2,37.4,30.0,44.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,43.9,25.1,5553.7,0.0,0.0,0.0,0.0,64.8,0,55.0,0.0,0.0,0.0,0.0,0.0,43.9,0.0,5553.7,12.3,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:25:53,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.5,28.6,22.9,14.5,0.0,0.0,23.4,22.3,23.2,37.4,30.0,44.7,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,43.9,25.1,5553.7,0.0,0.0,0.0,0.0,64.8,0,55.0,0.0,0.0,0.0,0.0,0.0,43.9,0.0,5553.7,12.3,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:26:03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.5,28.6,23.0,14.5,0.0,0.0,23.4,22.4,23.3,37.4,30.0,44.7,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,43.8,25.1,5553.7,0.0,0.0,0.0,0.0,64.7,0,55.0,0.0,0.0,0.0,0.0,0.0,43.8,0.0,5553.7,12.3,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:26:13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.5,28.6,23.0,14.5,0.0,0.0,23.4,22.4,23.3,37.4,30.0,44.7,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,43.7,25.1,5553.7,0.0,0.0,0.0,0.0,64.8,0,55.0,0.0,0.0,0.0,0.0,0.0,43.7,0.0,5553.7,12.3,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:26:23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.5,28.5,23.0,14.5,0.0,0.0,23.4,22.4,23.3,37.4,30.0,44.7,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,43.7,25.1,5553.7,0.0,0.0,0.0,0.0,64.8,0,55.0,0.0,0.0,0.0,0.0,0.0,43.7,0.0,5553.7,12.3,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:26:34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.5,28.5,23.0,14.5,0.0,0.0,23.5,22.4,23.3,37.4,30.0,44.7,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,43.7,25.1,5553.7,0.0,0.0,0.0,0.0,64.8,0,55.0,0.0,0.0,0.0,0.0,0.0,43.7,0.0,5553.7,12.3,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:26:44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.5,28.5,23.0,14.5,0.0,0.0,23.5,22.5,23.3,37.4,30.0,44.7,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,43.5,25.1,5553.7,0.0,0.0,0.0,0.0,64.8,0,55.0,0.0,0.0,0.0,0.0,0.0,43.5,0.0,5553.7,12.3,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:26:54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.5,28.5,23.0,14.5,0.0,0.0,23.5,22.5,23.3,37.4,30.0,44.7,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,43.4,25.1,5553.7,0.0,0.0,0.0,0.0,64.8,0,55.0,0.0,0.0,0.0,0.0,0.0,43.4,0.0,5553.7,12.3,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:27:04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.5,28.5,23.1,14.5,0.0,0.0,23.5,22.5,23.4,37.4,30.0,44.6,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,43.4,25.2,5553.7,0.0,0.0,0.0,0.0,64.7,0,55.0,0.0,0.0,0.0,0.0,0.0,43.4,0.0,5553.7,12.3,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:27:15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.4,28.5,23.1,14.5,0.0,0.0,23.6,22.6,23.4,37.4,30.0,44.6,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,43.3,25.1,5553.7,0.0,0.0,0.0,0.0,64.7,0,55.0,0.0,0.0,0.0,0.0,0.0,43.3,0.0,5553.7,12.3,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:27:25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.4,28.4,23.1,14.5,0.0,0.0,23.6,22.6,23.4,37.5,30.0,44.6,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,43.4,25.2,5553.7,0.0,0.0,0.0,0.0,64.8,0,55.0,0.0,0.0,0.0,0.0,0.0,43.4,0.0,5553.7,12.4,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:27:35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.4,28.4,23.1,14.5,0.0,0.0,23.6,22.7,23.4,37.5,30.0,44.6,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,43.3,25.1,5553.7,0.0,0.0,0.0,0.0,64.7,0,55.0,0.0,0.0,0.0,0.0,0.0,43.3,0.0,5553.7,12.3,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:27:45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.4,28.4,23.1,14.5,0.0,0.0,23.6,22.7,23.4,37.5,30.0,44.6,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,43.4,25.2,5553.7,0.0,0.0,0.0,0.0,64.8,0,55.0,0.0,0.0,0.0,0.0,0.0,43.3,0.0,5553.7,12.3,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:27:56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.4,28.4,23.2,14.5,0.0,0.0,23.6,22.7,23.5,37.5,30.0,44.6,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,43.5,25.2,5553.7,0.0,0.0,0.0,0.0,64.7,0,55.0,0.0,0.0,0.0,0.0,0.0,43.5,0.0,5553.7,12.3,14.4,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:28:06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.4,28.4,23.2,14.5,0.0,0.0,23.7,22.8,23.5,37.5,30.0,44.5,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,43.4,25.2,5553.7,0.0,0.0,0.0,0.0,64.7,0,55.0,0.0,0.0,0.0,0.0,0.0,43.4,0.0,5553.7,12.3,14.4,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:28:16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.4,28.3,23.2,14.6,0.0,0.0,23.7,22.8,23.5,37.5,30.0,44.5,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,43.4,25.2,5553.7,0.0,0.0,0.0,0.0,64.7,0,55.0,0.0,0.0,0.0,0.0,0.0,43.4,0.0,5553.7,12.3,14.4,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:28:26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.4,28.3,23.2,14.6,0.0,0.0,23.7,22.8,23.5,37.5,30.0,44.5,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,43.2,25.2,5553.7,0.0,0.0,0.0,0.0,64.7,0,55.0,0.0,0.0,0.0,0.0,0.0,43.2,0.0,5553.7,12.3,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:28:37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.4,28.3,23.2,14.6,0.0,0.0,23.7,22.8,23.6,37.5,30.0,44.5,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,43.1,25.2,5553.7,0.0,0.0,0.0,0.0,64.7,0,55.0,0.0,0.0,0.0,0.0,0.0,43.1,0.0,5553.7,12.3,14.4,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:28:47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.4,28.3,23.2,14.6,0.0,0.0,23.7,22.8,23.6,37.5,30.0,44.5,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,43.0,25.2,5553.7,0.0,0.0,0.0,0.0,64.7,0,55.0,0.0,0.0,0.0,0.0,0.0,43.0,0.0,5553.7,12.4,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:28:57,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.4,28.3,23.2,14.6,0.0,0.0,23.7,22.9,23.6,37.5,30.0,44.5,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,43.0,25.2,5553.7,0.0,0.0,0.0,0.0,64.7,0,55.0,0.0,0.0,0.0,0.0,0.0,43.0,0.0,5553.7,12.3,14.4,19.9,19.6,0.0,11.0,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:29:08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.4,28.3,23.3,14.6,0.0,0.0,23.8,22.9,23.6,37.5,30.0,44.5,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,43.0,25.2,5553.7,0.0,0.0,0.0,0.0,64.7,0,55.0,0.0,0.0,0.0,0.0,0.0,43.0,0.0,5553.7,12.4,14.4,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:29:18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.4,28.2,23.3,14.6,0.0,0.0,23.8,22.9,23.6,37.5,30.0,44.4,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,43.1,25.2,5553.7,0.0,0.0,0.0,0.0,64.7,0,55.0,0.0,0.0,0.0,0.0,0.0,43.1,0.0,5553.7,12.4,14.4,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:29:28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.4,28.2,23.3,14.6,0.0,0.0,23.8,22.9,23.6,37.5,30.0,44.4,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,43.0,25.2,5553.7,0.0,0.0,0.0,0.0,64.7,0,55.0,0.0,0.0,0.0,0.0,0.0,43.0,0.0,5553.7,12.4,14.4,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:29:38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.3,28.2,23.3,14.6,0.0,0.0,23.8,22.9,23.7,37.5,30.0,44.4,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.9,25.2,5553.7,0.0,0.0,0.0,0.0,64.7,0,55.0,0.0,0.0,0.0,0.0,0.0,42.9,0.0,5553.7,12.4,14.4,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:29:49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.3,28.2,23.3,14.6,0.0,0.0,23.8,23.0,23.7,37.6,30.0,44.4,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,43.0,25.1,5553.7,0.0,0.0,0.0,0.0,64.7,0,55.0,0.0,0.0,0.0,0.0,0.0,43.0,0.0,5553.7,12.4,14.4,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:29:59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.3,28.2,23.4,14.6,0.0,0.0,23.9,23.0,23.7,37.6,30.0,44.4,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.9,25.1,5553.7,0.0,0.0,0.0,0.0,64.7,0,55.0,0.0,0.0,0.0,0.0,0.0,42.9,0.0,5553.7,12.4,14.4,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:30:09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.3,28.2,23.4,14.6,0.0,0.0,23.9,23.0,23.7,37.6,30.0,44.4,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.8,25.1,5553.7,0.0,0.0,0.0,0.0,64.7,0,55.0,0.0,0.0,0.0,0.0,0.0,42.8,0.0,5553.7,12.4,14.4,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:30:19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.3,28.2,23.4,14.6,0.0,0.0,23.9,23.0,23.7,37.6,30.0,44.4,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.8,25.1,5553.7,0.0,0.0,0.0,0.0,64.7,0,55.0,0.0,0.0,0.0,0.0,0.0,42.8,0.0,5553.7,12.4,14.4,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:30:30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.3,28.1,23.4,14.7,0.0,0.0,23.9,23.0,23.7,37.6,30.0,44.3,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.7,25.1,5553.7,0.0,0.0,0.0,0.0,64.7,0,55.0,0.0,0.0,0.0,0.0,0.0,42.7,0.0,5553.7,12.4,14.4,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:30:40,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.3,28.1,23.4,14.7,0.0,0.0,23.9,23.1,23.8,37.6,30.0,44.3,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.7,25.1,5553.7,0.0,0.0,0.0,0.0,64.7,0,55.0,0.0,0.0,0.0,0.0,0.0,42.7,0.0,5553.7,12.4,14.4,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:30:50,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.3,28.1,23.4,14.7,0.0,0.0,24.0,23.1,23.8,37.6,30.0,44.3,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.6,25.1,5553.7,0.0,0.0,0.0,0.0,64.7,0,55.0,0.0,0.0,0.0,0.0,0.0,42.6,0.0,5553.7,12.4,14.4,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.3,28.1,23.4,14.7,0.0,0.0,24.0,23.1,23.8,37.6,30.0,44.3,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.5,25.1,5553.7,0.0,0.0,0.0,0.0,64.7,0,55.0,0.0,0.0,0.0,0.0,0.0,42.5,0.0,5553.7,12.4,14.4,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:31:11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.3,28.1,23.5,14.7,0.0,0.0,24.0,23.1,23.8,37.6,30.0,44.3,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.4,25.1,5553.7,0.0,0.0,0.0,0.0,64.7,0,55.0,0.0,0.0,0.0,0.0,0.0,42.4,0.0,5553.7,12.4,14.4,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:31:21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.3,28.1,23.5,14.7,0.0,0.0,24.0,23.1,23.8,37.6,30.0,44.3,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.5,25.1,5553.7,0.0,0.0,0.0,0.0,64.7,0,55.0,0.0,0.0,0.0,0.0,0.0,42.5,0.0,5553.7,12.4,14.4,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:31:31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.3,28.0,23.5,14.7,0.0,0.0,24.0,23.1,23.8,37.6,30.0,44.3,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.2,25.1,5553.7,0.0,0.0,0.0,0.0,64.7,0,55.0,0.0,0.0,0.0,0.0,0.0,42.2,0.0,5553.7,12.4,14.4,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:31:41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.3,28.0,23.5,14.7,0.0,0.0,24.0,23.2,23.9,37.6,30.0,44.3,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.1,25.1,5553.7,0.0,0.0,0.0,0.0,64.7,0,55.0,0.0,0.0,0.0,0.0,0.0,42.1,0.0,5553.7,12.4,14.4,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:31:52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.3,28.0,23.5,14.7,0.0,0.0,24.1,23.2,23.9,37.6,30.0,44.2,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.3,25.1,5553.7,0.0,0.0,0.0,0.0,64.7,0,55.0,0.0,0.0,0.0,0.0,0.0,42.3,0.0,5553.7,12.4,14.4,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:32:02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.3,28.0,23.5,14.7,0.0,0.0,24.1,23.2,23.9,37.6,30.0,44.2,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.3,25.1,5553.7,0.0,0.0,0.0,0.0,64.7,0,55.0,0.0,0.0,0.0,0.0,0.0,42.3,0.0,5553.7,12.4,14.4,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:32:12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.3,28.0,23.6,14.7,0.0,0.0,24.1,23.2,23.9,37.6,30.0,44.2,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.3,25.1,5553.7,0.0,0.0,0.0,0.0,64.7,0,55.0,0.0,0.0,0.0,0.0,0.0,42.3,0.0,5553.7,12.4,14.4,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:32:22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.2,28.0,23.6,14.7,0.0,0.0,24.1,23.2,23.9,37.6,30.0,44.2,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.4,25.1,5553.7,0.0,0.0,0.0,0.0,64.7,0,55.0,0.0,0.0,0.0,0.0,0.0,42.4,0.0,5553.7,12.4,14.4,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:32:33,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.2,27.9,23.6,14.7,0.0,0.0,24.1,23.2,24.0,37.7,30.0,44.2,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.5,25.1,5553.7,0.0,0.0,0.0,0.0,64.7,0,55.0,0.0,0.0,0.0,0.0,0.0,42.5,0.0,5553.7,12.4,14.4,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:32:43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.2,27.9,23.6,14.8,0.0,0.0,24.2,23.3,24.0,37.7,30.0,44.2,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.5,25.1,5553.7,0.0,0.0,0.0,0.0,64.7,0,55.0,0.0,0.0,0.0,0.0,0.0,42.5,0.0,5553.7,12.4,14.4,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:32:53,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.2,27.9,23.6,14.8,0.0,0.0,24.2,23.3,24.0,37.7,30.0,44.1,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.5,25.1,5553.7,0.0,0.0,0.0,0.0,64.7,0,55.0,0.0,0.0,0.0,0.0,0.0,42.5,0.0,5553.7,12.4,14.4,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:33:03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.2,27.9,23.6,14.8,0.0,0.0,24.2,23.3,24.0,37.7,30.0,44.1,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.5,25.1,5553.7,0.0,0.0,0.0,0.0,64.7,0,55.0,0.0,0.0,0.0,0.0,0.0,42.5,0.0,5553.7,12.4,14.4,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:33:14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.2,27.9,23.7,14.8,0.0,0.0,24.2,23.3,24.0,37.7,30.0,44.1,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.3,25.1,5553.7,0.0,0.0,0.0,0.0,64.7,0,55.0,0.0,0.0,0.0,0.0,0.0,42.3,0.0,5553.7,12.4,14.4,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:33:24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.2,27.8,23.7,14.8,0.0,0.0,24.2,23.3,24.0,37.7,30.0,44.1,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.2,25.1,5553.7,0.0,0.0,0.0,0.0,64.7,0,54.9,0.0,0.0,0.0,0.0,0.0,42.2,0.0,5553.7,12.4,14.4,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:33:34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.2,27.8,23.7,14.8,0.0,0.0,24.2,23.3,24.1,37.7,30.0,44.1,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.1,25.1,5553.7,0.0,0.0,0.0,0.0,64.6,0,55.0,0.0,0.0,0.0,0.0,0.0,42.1,0.0,5553.7,12.5,14.4,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:33:44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.2,27.8,23.7,14.8,0.0,0.0,24.2,23.3,24.1,37.7,30.0,44.1,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.1,25.0,5553.7,0.0,0.0,0.0,0.0,64.7,0,55.0,0.0,0.0,0.0,0.0,0.0,42.1,0.0,5553.7,12.5,14.4,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:33:55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.2,27.8,23.7,14.8,0.0,0.0,24.3,23.3,24.1,37.7,30.0,44.1,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.1,25.0,5553.7,0.0,0.0,0.0,0.0,64.7,0,55.0,0.0,0.0,0.0,0.0,0.0,42.1,0.0,5553.7,12.5,14.4,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:34:05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.2,27.8,23.7,14.8,0.0,0.0,24.3,23.4,24.1,37.7,30.0,44.1,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.1,25.0,5553.7,0.0,0.0,0.0,0.0,64.6,0,55.0,0.0,0.0,0.0,0.0,0.0,42.1,0.0,5553.7,12.5,14.4,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:34:15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.2,27.8,23.8,14.8,0.0,0.0,24.3,23.4,24.1,37.7,30.0,44.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.1,25.0,5553.7,0.0,0.0,0.0,0.0,64.7,0,55.0,0.0,0.0,0.0,0.0,0.0,42.1,0.0,5553.7,12.5,14.4,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:34:25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.2,27.7,23.8,14.8,0.0,0.0,24.4,23.4,24.1,37.7,30.0,44.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.1,25.0,5553.7,0.0,0.0,0.0,0.0,64.7,0,54.9,0.0,0.0,0.0,0.0,0.0,42.1,0.0,5553.7,12.4,14.4,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:34:36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.2,27.7,23.8,14.8,0.0,0.0,24.4,23.4,24.2,37.7,30.0,44.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.0,25.0,5553.7,0.0,0.0,0.0,0.0,64.7,0,55.0,0.0,0.0,0.0,0.0,0.0,42.0,0.0,5553.7,12.4,14.4,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:34:46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.2,27.7,23.8,14.8,0.0,0.0,24.4,23.4,24.2,37.7,30.0,44.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.8,24.9,5553.7,0.0,0.0,0.0,0.0,64.6,0,55.0,0.0,0.0,0.0,0.0,0.0,41.8,0.0,5553.7,12.5,14.4,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:34:56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.1,27.7,23.8,14.8,0.0,0.0,24.4,23.4,24.2,37.7,30.0,44.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.8,24.9,5553.7,0.0,0.0,0.0,0.0,64.7,0,55.0,0.0,0.0,0.0,0.0,0.0,41.8,0.0,5553.7,12.5,14.4,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:35:06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.1,27.6,23.8,14.9,0.0,0.0,24.4,23.4,24.2,37.7,30.0,44.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.7,24.9,5553.7,0.0,0.0,0.0,0.0,64.7,0,55.0,0.0,0.0,0.0,0.0,0.0,41.7,0.0,5553.7,12.5,14.4,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:35:17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.1,27.6,23.8,14.9,0.0,0.0,24.4,23.4,24.2,37.7,30.0,44.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.7,25.0,5553.7,0.0,0.0,0.0,0.0,64.6,0,55.0,0.0,0.0,0.0,0.0,0.0,41.7,0.0,5553.7,12.5,14.4,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:35:27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.1,27.6,23.9,14.9,0.0,0.0,24.5,23.4,24.2,37.7,30.0,44.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.7,25.0,5553.7,0.0,0.0,0.0,0.0,64.7,0,55.0,0.0,0.0,0.0,0.0,0.0,41.7,0.0,5553.7,12.5,14.4,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:35:37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.1,27.6,23.9,14.9,0.0,0.0,24.5,23.4,24.2,37.7,30.0,43.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.7,25.0,5553.7,0.0,0.0,0.0,0.0,64.6,0,55.0,0.0,0.0,0.0,0.0,0.0,41.7,0.0,5553.7,12.5,14.4,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:35:47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.1,27.5,23.9,14.9,0.0,0.0,24.5,23.4,24.2,37.7,30.0,43.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.7,25.0,5553.7,0.0,0.0,0.0,0.0,64.6,0,55.0,0.0,0.0,0.0,0.0,0.0,41.7,0.0,5553.7,12.5,14.4,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:35:58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.1,27.5,23.9,14.9,0.0,0.0,24.5,23.5,24.2,37.7,30.0,43.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.6,25.0,5553.7,0.0,0.0,0.0,0.0,64.6,0,55.0,0.0,0.0,0.0,0.0,0.0,41.6,0.0,5553.7,12.5,14.4,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:36:08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.1,27.5,23.9,14.9,0.0,0.0,24.5,23.5,24.3,37.7,30.0,43.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.7,25.0,5553.7,0.0,0.0,0.0,0.0,64.6,0,55.0,0.0,0.0,0.0,0.0,0.0,41.7,0.0,5553.7,12.5,14.4,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:36:18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.1,27.5,23.9,14.9,0.0,0.0,24.5,23.5,24.3,37.7,30.0,43.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.6,25.0,5553.7,0.0,0.0,0.0,0.0,64.6,0,54.9,0.0,0.0,0.0,0.0,0.0,41.6,0.0,5553.7,12.5,14.4,19.9,19.6,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:36:28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.1,27.5,24.0,14.9,0.0,0.0,24.5,23.5,24.3,37.7,30.0,43.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.7,25.0,5553.7,0.0,0.0,0.0,0.0,64.6,0,55.0,0.0,0.0,0.0,0.0,0.0,41.7,0.0,5553.7,12.5,14.5,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:36:39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.1,27.4,24.0,14.9,0.0,0.0,24.5,23.5,24.3,37.7,30.0,43.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.6,25.0,5553.7,0.0,0.0,0.0,0.0,64.6,0,54.9,0.0,0.0,0.0,0.0,0.0,41.6,0.0,5553.7,12.5,14.5,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:36:49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.1,27.4,24.0,14.9,0.0,0.0,24.6,23.5,24.3,37.7,30.0,43.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.4,25.0,5553.7,0.0,0.0,0.0,0.0,64.6,0,55.0,0.0,0.0,0.0,0.0,0.0,41.4,0.0,5553.7,12.5,14.4,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:36:59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.1,27.4,24.0,14.9,0.0,0.0,24.6,23.5,24.3,37.7,30.0,43.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.5,25.0,5553.7,0.0,0.0,0.0,0.0,64.6,0,55.0,0.0,0.0,0.0,0.0,0.0,41.5,0.0,5553.7,12.5,14.5,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:37:10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.1,27.4,24.0,14.9,0.0,0.0,24.6,23.5,24.3,37.7,30.0,43.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.6,24.9,5553.7,0.0,0.0,0.0,0.0,64.6,0,55.0,0.0,0.0,0.0,0.0,0.0,41.6,0.0,5553.7,12.5,14.5,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:37:20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.1,27.3,24.0,15.0,0.0,0.0,24.6,23.5,24.4,37.7,30.0,43.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.5,24.9,5553.7,0.0,0.0,0.0,0.0,64.6,0,54.9,0.0,0.0,0.0,0.0,0.0,41.5,0.0,5553.7,12.5,14.5,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:37:30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.1,27.3,24.0,15.0,0.0,0.0,24.6,23.5,24.4,37.7,30.0,43.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.5,24.9,5553.7,0.0,0.0,0.0,0.0,64.6,0,54.9,0.0,0.0,0.0,0.0,0.0,41.5,0.0,5553.7,12.5,14.5,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:37:40,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.0,27.3,24.0,15.0,0.0,0.0,24.6,23.5,24.4,37.7,30.0,43.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.4,24.9,5553.7,0.0,0.0,0.0,0.0,64.6,0,54.9,0.0,0.0,0.0,0.0,0.0,41.4,0.0,5553.7,12.5,14.4,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:37:51,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.0,27.3,24.1,15.0,0.0,0.0,24.6,23.5,24.4,37.7,30.0,43.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.4,24.9,5553.7,0.0,0.0,0.0,0.0,64.6,0,54.9,0.0,0.0,0.0,0.0,0.0,41.4,0.0,5553.7,12.5,14.5,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:38:01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.0,27.3,24.1,15.0,0.0,0.0,24.6,23.5,24.4,37.7,30.0,43.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.3,24.9,5553.7,0.0,0.0,0.0,0.0,64.6,0,54.9,0.0,0.0,0.0,0.0,0.0,41.3,0.0,5553.7,12.5,14.5,19.9,19.5,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:38:11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.0,27.2,24.1,15.0,0.0,0.0,24.6,23.5,24.4,37.7,30.0,43.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.4,24.9,5553.7,0.0,0.0,0.0,0.0,64.6,0,55.0,0.0,0.0,0.0,0.0,0.0,41.4,0.0,5553.7,12.5,14.5,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:38:21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.0,27.2,24.1,15.0,0.0,0.0,24.6,23.5,24.4,37.7,30.0,43.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.4,24.9,5553.7,0.0,0.0,0.0,0.0,64.6,0,54.9,0.0,0.0,0.0,0.0,0.0,41.4,0.0,5553.7,12.5,14.5,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:38:32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.0,27.2,24.1,15.0,0.0,0.0,24.7,23.5,24.4,37.7,30.0,43.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.4,24.9,5553.7,0.0,0.0,0.0,0.0,64.6,0,54.9,0.0,0.0,0.0,0.0,0.0,41.4,0.0,5553.7,12.5,14.5,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:38:42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.0,27.1,24.1,15.0,0.0,0.0,24.7,23.5,24.4,37.7,30.0,43.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.3,24.9,5553.7,0.0,0.0,0.0,0.0,64.6,0,54.9,0.0,0.0,0.0,0.0,0.0,41.3,0.0,5553.7,12.5,14.5,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:38:52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.0,27.1,24.2,15.0,0.0,0.0,24.7,23.5,24.5,37.7,30.0,43.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.3,24.9,5553.7,0.0,0.0,0.0,0.0,64.6,0,54.9,0.0,0.0,0.0,0.0,0.0,41.3,0.0,5553.7,12.5,14.5,19.9,19.6,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:39:02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.0,27.1,24.2,15.0,0.0,0.0,24.7,23.5,24.5,37.7,30.0,43.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.1,24.9,5553.7,0.0,0.0,0.0,0.0,64.6,0,54.9,0.0,0.0,0.0,0.0,0.0,41.1,0.0,5553.7,12.5,14.5,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:39:13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.0,27.1,24.2,15.0,0.0,0.0,24.7,23.5,24.5,37.7,30.0,43.7,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.2,24.9,5553.7,0.0,0.0,0.0,0.0,64.6,0,54.9,0.0,0.0,0.0,0.0,0.0,41.2,0.0,5553.7,12.5,14.5,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:39:23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.0,27.0,24.2,15.0,0.0,0.0,24.7,23.5,24.5,37.7,30.0,43.7,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.5,24.9,5553.7,0.0,0.0,0.0,0.0,64.6,0,54.9,0.0,0.0,0.0,0.0,0.0,41.5,0.0,5553.7,12.5,14.5,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:39:33,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.0,27.0,24.2,15.0,0.0,0.0,24.7,23.6,24.5,37.7,30.0,43.7,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.3,24.9,5553.7,0.0,0.0,0.0,0.0,64.6,0,54.9,0.0,0.0,0.0,0.0,0.0,41.3,0.0,5553.7,12.5,14.5,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:39:43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.0,27.0,24.2,15.1,0.0,0.0,24.8,23.6,24.5,37.7,30.0,43.7,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.4,24.9,5553.7,0.0,0.0,0.0,0.0,64.6,0,54.9,0.0,0.0,0.0,0.0,0.0,41.4,0.0,5553.7,12.6,14.5,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:39:54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.0,26.9,24.2,15.1,0.0,0.0,24.8,23.6,24.5,37.7,30.0,43.7,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.7,24.9,5553.7,0.0,0.0,0.0,0.0,64.6,0,54.8,0.0,0.0,0.0,0.0,0.0,41.7,0.0,5553.7,12.5,14.5,19.9,19.6,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:40:04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.0,26.9,24.2,15.1,0.0,0.0,24.8,23.5,24.5,37.7,30.0,43.7,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.8,24.9,5553.7,0.0,0.0,0.0,0.0,64.6,0,54.8,0.0,0.0,0.0,0.0,0.0,41.8,0.0,5553.7,12.6,14.5,19.9,19.6,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:40:14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.0,26.9,24.3,15.1,0.0,0.0,24.8,23.5,24.5,37.7,30.0,43.7,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.7,24.9,5553.7,0.0,0.0,0.0,0.0,64.6,0,54.8,0.0,0.0,0.0,0.0,0.0,41.7,0.0,5553.7,12.6,14.5,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:40:24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.0,26.9,24.3,15.1,0.0,0.0,24.8,23.6,24.6,37.7,30.0,43.7,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.0,24.9,5553.7,0.0,0.0,0.0,0.0,64.6,0,54.8,0.0,0.0,0.0,0.0,0.0,42.0,0.0,5553.7,12.6,14.5,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:40:35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.9,26.8,24.3,15.1,0.0,0.0,24.8,23.6,24.6,37.7,30.0,43.7,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.0,24.9,5553.7,0.0,0.0,0.0,0.0,64.5,0,54.8,0.0,0.0,0.0,0.0,0.0,42.0,0.0,5553.7,12.6,14.5,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:40:45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.9,26.8,24.3,15.1,0.0,0.0,24.8,23.6,24.6,37.7,30.0,43.7,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.7,24.9,5553.7,0.0,0.0,0.0,0.0,64.5,0,54.8,0.0,0.0,0.0,0.0,0.0,41.7,0.0,5553.7,12.6,14.5,19.9,19.6,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:40:55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.9,26.8,24.3,15.1,0.0,0.0,24.8,23.6,24.6,37.7,30.0,43.7,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.7,25.0,5553.7,0.0,0.0,0.0,0.0,64.5,0,54.8,0.0,0.0,0.0,0.0,0.0,41.7,0.0,5553.7,12.6,14.5,19.9,19.6,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:41:05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.9,26.8,24.3,15.1,0.0,0.0,24.8,23.6,24.6,37.7,30.0,43.6,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.8,25.0,5553.7,0.0,0.0,0.0,0.0,64.5,0,54.8,0.0,0.0,0.0,0.0,0.0,41.8,0.0,5553.7,12.6,14.5,19.9,19.6,0.0,11.2,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:41:16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.9,26.7,24.3,15.1,0.0,0.0,24.8,23.6,24.6,37.7,30.0,43.6,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.9,25.0,5553.7,0.0,0.0,0.0,0.0,64.5,0,54.8,0.0,0.0,0.0,0.0,0.0,41.9,0.0,5553.7,12.6,14.5,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:41:26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.9,26.7,24.3,15.1,0.0,0.0,24.9,23.6,24.7,37.7,30.0,43.6,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.8,25.0,5553.7,0.0,0.0,0.0,0.0,64.5,0,54.8,0.0,0.0,0.0,0.0,0.0,41.8,0.0,5553.7,12.6,14.5,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:41:36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.9,26.7,24.4,15.1,0.0,0.0,24.9,23.6,24.7,37.7,30.0,43.6,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.7,25.0,5553.7,0.0,0.0,0.0,0.0,64.5,0,54.8,0.0,0.0,0.0,0.0,0.0,41.7,0.0,5553.7,12.6,14.5,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:41:46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.9,26.6,24.4,15.2,0.0,0.0,24.9,23.6,24.7,37.7,30.0,43.6,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.6,25.0,5553.7,0.0,0.0,0.0,0.0,64.5,0,54.8,0.0,0.0,0.0,0.0,0.0,41.6,0.0,5553.7,12.6,14.5,19.9,19.6,0.0,11.2,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:41:57,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.9,26.6,24.4,15.2,0.0,0.0,24.9,23.6,24.7,37.7,30.0,43.6,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.6,25.0,5553.7,0.0,0.0,0.0,0.0,64.5,0,54.8,0.0,0.0,0.0,0.0,0.0,41.6,0.0,5553.7,12.6,14.5,19.9,19.6,0.0,11.2,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:42:07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.9,26.6,24.4,15.2,0.0,0.0,24.9,23.6,24.7,37.7,30.0,43.6,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.6,25.0,5553.7,0.0,0.0,0.0,0.0,64.5,0,54.8,0.0,0.0,0.0,0.0,0.0,41.6,0.0,5553.7,12.6,14.5,19.9,19.6,0.0,11.2,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:42:17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.9,26.6,24.4,15.2,0.0,0.0,24.9,23.7,24.7,37.7,30.0,43.6,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.5,25.0,5553.7,0.0,0.0,0.0,0.0,64.5,0,54.8,0.0,0.0,0.0,0.0,0.0,41.5,0.0,5553.7,12.6,14.5,19.9,19.6,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:42:28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.9,26.6,24.4,15.2,0.0,0.0,24.9,23.7,24.7,37.7,30.0,43.6,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.5,25.0,5553.7,0.0,0.0,0.0,0.0,64.4,0,54.8,0.0,0.0,0.0,0.0,0.0,41.5,0.0,5553.7,12.6,14.5,19.9,19.6,0.0,11.2,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:42:38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.9,26.5,24.4,15.2,0.0,0.0,24.9,23.7,24.7,37.7,30.0,43.6,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.5,25.0,5553.7,0.0,0.0,0.0,0.0,64.4,0,54.8,0.0,0.0,0.0,0.0,0.0,41.5,0.0,5553.7,12.6,14.5,19.9,19.6,0.0,11.2,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:42:48,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.9,26.5,24.4,15.2,0.0,0.0,24.9,23.7,24.7,37.7,30.0,43.6,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.4,25.0,5553.7,0.0,0.0,0.0,0.0,64.4,0,54.8,0.0,0.0,0.0,0.0,0.0,41.4,0.0,5553.7,12.6,14.5,19.9,19.6,0.0,11.2,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:42:58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.9,26.5,24.5,15.2,0.0,0.0,24.9,23.7,24.8,37.7,30.0,43.6,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.4,25.0,5553.7,0.0,0.0,0.0,0.0,64.5,0,54.7,0.0,0.0,0.0,0.0,0.0,41.4,0.0,5553.7,12.6,14.5,19.9,19.6,0.0,11.2,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:43:09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.9,26.5,24.5,15.2,0.0,0.0,25.0,23.7,24.8,37.7,30.0,43.5,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.4,25.0,5553.7,0.0,0.0,0.0,0.0,64.4,0,54.7,0.0,0.0,0.0,0.0,0.0,41.4,0.0,5553.7,12.6,14.5,19.9,19.5,0.0,11.2,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:43:19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.9,26.4,24.5,15.2,0.0,0.0,25.0,23.7,24.8,37.7,30.0,43.5,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.6,25.0,5553.7,0.0,0.0,0.0,0.0,64.4,0,54.8,0.0,0.0,0.0,0.0,0.0,41.6,0.0,5553.7,12.6,14.5,19.9,19.6,0.0,11.2,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:43:29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.8,26.4,24.5,15.2,0.0,0.0,25.0,23.7,24.8,37.7,30.0,43.5,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.5,25.0,5553.7,0.0,0.0,0.0,0.0,64.4,0,54.8,0.0,0.0,0.0,0.0,0.0,41.5,0.0,5553.7,12.6,14.5,19.9,19.6,0.0,11.2,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:43:39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.8,26.4,24.5,15.2,0.0,0.0,25.0,23.7,24.8,37.6,30.0,43.5,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.4,25.0,5553.7,0.0,0.0,0.0,0.0,64.4,0,54.7,0.0,0.0,0.0,0.0,0.0,41.4,0.0,5553.7,12.6,14.5,19.9,19.6,0.0,11.2,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:43:50,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.8,26.4,24.5,15.3,0.0,0.0,25.0,23.7,24.8,37.6,30.0,43.5,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.3,25.0,5553.7,0.0,0.0,0.0,0.0,64.4,0,54.7,0.0,0.0,0.0,0.0,0.0,41.3,0.0,5553.7,12.6,14.5,19.9,19.6,0.0,11.2,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.8,26.4,24.5,15.3,0.0,0.0,25.0,23.7,24.8,37.6,30.0,43.5,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.2,25.0,5553.7,0.0,0.0,0.0,0.0,64.4,0,54.8,0.0,0.0,0.0,0.0,0.0,41.2,0.0,5553.7,12.6,14.5,19.9,19.6,0.0,11.2,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:44:10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.8,26.4,24.5,15.3,0.0,0.0,25.0,23.7,24.8,37.6,30.0,43.5,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.1,25.0,5553.7,0.0,0.0,0.0,0.0,64.4,0,54.7,0.0,0.0,0.0,0.0,0.0,41.1,0.0,5553.7,12.6,14.5,19.9,19.6,0.0,11.2,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:44:20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.8,26.3,24.5,15.3,0.0,0.0,25.0,23.7,24.8,37.6,30.0,43.5,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.2,25.0,5553.7,0.0,0.0,0.0,0.0,64.4,0,54.7,0.0,0.0,0.0,0.0,0.0,41.2,0.0,5553.7,12.6,14.5,19.9,19.6,0.0,11.2,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:44:31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.8,26.3,24.6,15.3,0.0,0.0,25.0,23.7,24.8,37.6,30.0,43.5,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.4,25.0,5553.7,0.0,0.0,0.0,0.0,64.3,0,54.7,0.0,0.0,0.0,0.0,0.0,41.4,0.0,5553.7,12.6,14.5,19.9,19.6,0.0,11.2,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:44:41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.8,26.3,24.6,15.3,0.0,0.0,25.0,23.7,24.9,37.6,30.0,43.5,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.3,25.0,5553.7,0.0,0.0,0.0,0.0,64.3,0,54.7,0.0,0.0,0.0,0.0,0.0,41.3,0.0,5553.7,12.6,14.5,19.9,19.6,0.0,11.2,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:44:51,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.8,26.3,24.6,15.3,0.0,0.0,25.1,23.7,24.9,37.6,30.0,43.5,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.5,25.0,5553.7,0.0,0.0,0.0,0.0,64.3,0,54.7,0.0,0.0,0.0,0.0,0.0,41.5,0.0,5553.7,12.6,14.5,19.9,19.6,0.0,11.2,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:45:01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.8,26.3,24.6,15.3,0.0,0.0,25.1,23.7,24.9,37.6,30.0,43.5,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.5,25.0,5553.7,0.0,0.0,0.0,0.0,64.3,0,54.7,0.0,0.0,0.0,0.0,0.0,41.5,0.0,5553.7,12.6,14.5,19.9,19.6,0.0,11.2,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:45:12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.8,26.2,24.6,15.3,0.0,0.0,25.1,23.7,24.9,37.6,30.0,43.5,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.4,25.0,5553.7,0.0,0.0,0.0,0.0,64.3,0,54.6,0.0,0.0,0.0,0.0,0.0,41.4,0.0,5553.7,12.6,14.5,19.9,19.6,0.0,11.2,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:45:22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.8,26.2,24.6,15.3,0.0,0.0,25.1,23.7,24.9,37.6,30.0,43.5,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.4,25.0,5553.7,0.0,0.0,0.0,0.0,64.2,0,54.6,0.0,0.0,0.0,0.0,0.0,41.4,0.0,5553.7,12.6,14.5,19.9,19.6,0.0,11.2,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:45:32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.8,26.2,24.6,15.3,0.0,0.0,25.1,23.7,24.9,37.6,30.0,43.4,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.4,25.0,5553.7,0.0,0.0,0.0,0.0,64.2,0,54.7,0.0,0.0,0.0,0.0,0.0,41.4,0.0,5553.7,12.6,14.5,19.9,19.6,0.0,11.2,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:45:42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.8,26.2,24.6,15.3,0.0,0.0,25.1,23.7,24.9,37.6,30.0,43.4,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.5,25.0,5553.7,0.0,0.0,0.0,0.0,64.2,0,54.6,0.0,0.0,0.0,0.0,0.0,41.5,0.0,5553.7,12.6,14.5,19.9,19.6,0.0,11.2,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:45:53,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.8,26.2,24.6,15.3,0.0,0.0,25.1,23.7,24.9,37.6,30.0,43.4,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.3,25.0,5553.7,0.0,0.0,0.0,0.0,64.1,0,54.6,0.0,0.0,0.0,0.0,0.0,41.3,0.0,5553.7,12.6,14.5,19.9,19.6,0.0,11.2,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:46:03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.8,26.2,24.7,15.4,0.0,0.0,25.1,23.7,24.9,37.6,30.0,43.4,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.2,25.0,5553.7,0.0,0.0,0.0,0.0,64.1,0,54.6,0.0,0.0,0.0,0.0,0.0,41.2,0.0,5553.7,12.6,14.5,19.9,19.6,0.0,11.2,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:46:13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.7,26.2,24.7,15.4,0.0,0.0,25.1,23.7,24.9,37.6,30.0,43.4,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.3,25.0,5553.7,0.0,0.0,0.0,0.0,64.1,0,54.6,0.0,0.0,0.0,0.0,0.0,41.3,0.0,5553.7,12.7,14.5,19.9,19.6,0.0,11.2,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:46:23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.7,26.1,24.7,15.4,0.0,0.0,25.1,23.7,24.9,37.5,30.0,43.4,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.5,25.0,5553.7,0.0,0.0,0.0,0.0,64.0,0,54.6,0.0,0.0,0.0,0.0,0.0,41.5,0.0,5553.7,12.7,14.5,19.9,19.6,0.0,11.2,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:46:34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.7,26.1,24.7,15.4,0.0,0.0,25.1,23.6,25.0,37.5,30.0,43.4,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.6,25.0,5553.7,0.0,0.0,0.0,0.0,64.0,0,54.6,0.0,0.0,0.0,0.0,0.0,41.6,0.0,5553.7,12.7,14.5,19.9,19.6,0.0,11.2,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:46:44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.7,26.1,24.7,15.4,0.0,0.0,25.1,23.6,25.0,37.5,30.0,43.4,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.8,25.0,5553.7,0.0,0.0,0.0,0.0,63.9,0,54.5,0.0,0.0,0.0,0.0,0.0,41.8,0.0,5553.7,12.7,14.5,19.9,19.6,0.0,11.2,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:46:54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.7,26.1,24.7,15.4,0.0,0.0,25.1,23.6,25.0,37.5,30.0,43.4,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.0,25.0,5553.7,0.0,0.0,0.0,0.0,63.9,0,54.5,0.0,0.0,0.0,0.0,0.0,42.0,0.0,5553.7,12.7,14.5,19.9,19.6,0.0,11.2,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:47:05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.7,26.1,24.7,15.4,0.0,0.0,25.1,23.6,25.0,37.5,30.0,43.4,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.1,25.0,5553.7,0.0,0.0,0.0,0.0,63.8,0,54.5,0.0,0.0,0.0,0.0,0.0,42.1,0.0,5553.7,12.7,14.5,19.9,19.6,0.0,11.2,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:47:15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.7,26.1,24.7,15.4,0.0,0.0,25.2,23.6,25.0,37.5,30.0,43.4,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.0,25.0,5553.7,0.0,0.0,0.0,0.0,63.7,0,54.4,0.0,0.0,0.0,0.0,0.0,42.0,0.0,5553.7,12.7,14.5,19.9,19.6,0.0,11.2,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:47:25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.7,26.1,24.7,15.4,0.0,0.0,25.2,23.5,25.0,37.5,30.0,43.4,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.1,25.0,5553.7,0.0,0.0,0.0,0.0,63.7,0,54.4,0.0,0.0,0.0,0.0,0.0,42.1,0.0,5553.7,12.7,14.5,19.9,19.5,0.0,11.2,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:47:35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.7,26.0,24.7,15.4,0.0,0.0,25.2,23.5,25.0,37.5,30.0,43.3,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.0,25.0,5553.7,0.0,0.0,0.0,0.0,63.6,0,54.4,0.0,0.0,0.0,0.0,0.0,42.0,0.0,5553.7,12.7,14.5,19.9,19.6,0.0,11.2,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:47:46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.7,26.0,24.8,15.4,0.0,0.0,25.2,23.5,25.0,37.5,30.0,43.3,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.0,25.0,5553.7,0.0,0.0,0.0,0.0,63.5,0,54.4,0.0,0.0,0.0,0.0,0.0,42.0,0.0,5553.7,12.7,14.5,19.9,19.6,0.0,11.2,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:47:56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.7,26.0,24.8,15.4,0.0,0.0,25.2,23.5,25.0,37.5,30.0,43.3,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.0,25.0,5553.7,0.0,0.0,0.0,0.0,63.5,0,54.4,0.0,0.0,0.0,0.0,0.0,42.0,0.0,5553.7,12.7,14.5,19.9,19.6,0.0,11.2,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:48:06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.7,26.0,24.8,15.5,0.0,0.0,25.2,23.5,25.0,37.5,30.0,43.3,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.9,25.0,5553.7,0.0,0.0,0.0,0.0,63.4,0,54.4,0.0,0.0,0.0,0.0,0.0,41.9,0.0,5553.7,12.7,14.5,19.9,19.6,0.0,11.2,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:48:16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.7,26.0,24.8,15.5,0.0,0.0,25.2,23.5,25.0,37.5,30.0,43.3,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.8,25.0,5553.7,0.0,0.0,0.0,0.0,63.3,0,54.4,0.0,0.0,0.0,0.0,0.0,41.8,0.0,5553.7,12.7,14.5,19.9,19.6,0.0,11.2,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:48:27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.7,26.0,24.8,15.5,0.0,0.0,25.2,23.5,25.0,37.5,30.0,43.3,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.9,25.0,5553.7,0.0,0.0,0.0,0.0,63.3,0,54.4,0.0,0.0,0.0,0.0,0.0,41.9,0.0,5553.7,12.7,14.5,19.9,19.6,0.0,11.2,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:48:37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.7,25.9,24.8,15.5,0.0,0.0,25.2,23.5,25.0,37.5,30.0,43.3,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.0,25.0,5553.7,0.0,0.0,0.0,0.0,63.2,0,54.4,0.0,0.0,0.0,0.0,0.0,42.0,0.0,5553.7,12.7,14.5,19.9,19.6,0.0,11.2,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:48:47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.7,25.9,24.8,15.5,0.0,0.0,25.3,23.5,25.1,37.5,30.0,43.3,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,42.0,25.0,5553.7,0.0,0.0,0.0,0.0,63.2,0,54.4,0.0,0.0,0.0,0.0,0.0,42.0,0.0,5553.7,12.7,14.5,19.9,19.6,0.0,11.2,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:48:57,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.6,25.9,24.8,15.5,0.0,0.0,25.3,23.5,25.1,37.5,30.0,43.3,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.8,25.0,5553.7,0.0,0.0,0.0,0.0,63.1,0,54.4,0.0,0.0,0.0,0.0,0.0,41.8,0.0,5553.7,12.7,14.5,19.9,19.5,0.0,11.2,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:49:08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.6,25.9,24.8,15.5,0.0,0.0,25.3,23.4,25.1,37.5,30.0,43.3,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.8,25.0,5553.7,0.0,0.0,0.0,0.0,63.1,0,54.3,0.0,0.0,0.0,0.0,0.0,41.8,0.0,5553.7,12.7,14.5,19.9,19.6,0.0,11.2,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:49:18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.6,25.9,24.9,15.5,0.0,0.0,25.3,23.4,25.1,37.5,30.0,43.3,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.7,25.0,5553.7,0.0,0.0,0.0,0.0,63.0,0,54.3,0.0,0.0,0.0,0.0,0.0,41.7,0.0,5553.7,12.7,14.5,19.9,19.6,0.0,11.2,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:49:28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.6,25.9,24.9,15.5,0.0,0.0,25.3,23.4,25.1,37.4,30.0,43.2,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.7,25.0,5553.7,0.0,0.0,0.0,0.0,63.0,0,54.4,0.0,0.0,0.0,0.0,0.0,41.7,0.0,5553.7,12.6,14.5,19.9,19.6,0.0,11.2,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:49:38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.6,25.9,24.9,15.5,0.0,0.0,25.3,23.4,25.1,37.4,30.0,43.2,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.7,25.0,5553.7,0.0,0.0,0.0,0.0,62.9,0,54.3,0.0,0.0,0.0,0.0,0.0,41.7,0.0,5553.7,12.7,14.5,19.9,19.6,0.0,11.2,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:49:49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.6,25.8,24.9,15.5,0.0,0.0,25.3,23.4,25.1,37.4,30.0,43.2,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.7,25.0,5553.7,0.0,0.0,0.0,0.0,62.8,0,54.3,0.0,0.0,0.0,0.0,0.0,41.7,0.0,5553.7,12.7,14.5,19.9,19.6,0.0,11.2,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:49:59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.6,25.8,24.9,15.5,0.0,0.0,25.3,23.4,25.1,37.4,30.0,43.2,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.7,25.0,5553.7,0.0,0.0,0.0,0.0,62.8,0,54.3,0.0,0.0,0.0,0.0,0.0,41.7,0.0,5553.7,12.7,14.5,19.9,19.6,0.0,11.2,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:50:09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.6,25.8,24.9,15.5,0.0,0.0,25.3,23.4,25.1,37.4,30.0,43.2,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.7,25.0,5553.7,0.0,0.0,0.0,0.0,62.8,0,54.3,0.0,0.0,0.0,0.0,0.0,41.7,0.0,5553.7,12.7,14.5,19.9,19.6,0.0,11.2,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:50:19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.6,25.8,24.9,15.6,0.0,0.0,25.3,23.4,25.1,37.4,30.0,43.2,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.8,25.0,5553.7,0.0,0.0,0.0,0.0,62.7,0,54.3,0.0,0.0,0.0,0.0,0.0,41.8,0.0,5553.7,12.7,14.5,19.9,19.5,0.0,11.2,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:50:30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.6,25.8,24.9,15.6,0.0,0.0,25.3,23.4,25.1,37.4,30.0,43.2,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.7,25.0,5553.7,0.0,0.0,0.0,0.0,62.7,0,54.3,0.0,0.0,0.0,0.0,0.0,41.7,0.0,5553.7,12.7,14.5,19.9,19.6,0.0,11.2,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:50:40,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.6,25.8,24.9,15.6,0.0,0.0,25.3,23.4,25.1,37.4,30.0,43.2,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.7,25.0,5553.7,0.0,0.0,0.0,0.0,62.7,0,54.3,0.0,0.0,0.0,0.0,0.0,41.7,0.0,5553.7,12.7,14.5,19.9,19.6,0.0,11.2,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:50:50,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.6,25.7,25.0,15.6,0.0,0.0,25.3,23.4,25.1,37.4,30.0,43.2,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.7,25.0,5553.7,0.0,0.0,0.0,0.0,62.6,0,54.3,0.0,0.0,0.0,0.0,0.0,41.7,0.0,5553.7,12.7,14.5,19.9,19.6,0.0,11.2,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.6,25.7,25.0,15.6,0.0,0.0,25.3,23.4,25.2,37.4,30.0,43.2,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.6,25.0,5553.7,0.0,0.0,0.0,0.0,62.6,0,54.3,0.0,0.0,0.0,0.0,0.0,41.6,0.0,5553.7,12.7,14.5,19.9,19.5,0.0,11.2,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:51:11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.6,25.7,25.0,15.6,0.0,0.0,25.3,23.4,25.2,37.4,30.0,43.2,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.5,25.0,5553.7,0.0,0.0,0.0,0.0,62.5,0,54.3,0.0,0.0,0.0,0.0,0.0,41.5,0.0,5553.7,12.7,14.5,19.9,19.5,0.0,11.2,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:51:21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.6,25.7,25.0,15.6,0.0,0.0,25.3,23.4,25.2,37.4,30.0,43.2,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.5,25.0,5553.7,0.0,0.0,0.0,0.0,62.5,0,54.3,0.0,0.0,0.0,0.0,0.0,41.5,0.0,5553.7,12.7,14.5,19.9,19.6,0.0,11.2,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:51:31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.6,25.7,25.0,15.6,0.0,0.0,25.3,23.4,25.2,37.4,30.0,43.1,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.3,25.0,5553.7,0.0,0.0,0.0,0.0,62.5,0,54.3,0.0,0.0,0.0,0.0,0.0,41.3,0.0,5553.7,12.7,14.5,19.9,19.5,0.0,11.2,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:51:41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.6,25.7,25.0,15.6,0.0,0.0,25.4,23.3,25.2,37.4,30.0,43.1,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.1,25.0,5553.7,0.0,0.0,0.0,0.0,62.5,0,54.3,0.0,0.0,0.0,0.0,0.0,41.2,0.0,5553.7,12.7,14.5,19.9,19.5,0.0,11.2,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:51:52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.6,25.7,25.0,15.6,0.0,0.0,25.4,23.3,25.2,37.4,30.0,43.1,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.2,25.0,5553.7,0.0,0.0,0.0,0.0,62.4,0,54.3,0.0,0.0,0.0,0.0,0.0,41.2,0.0,5553.7,12.7,14.5,19.9,19.6,0.0,11.2,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:52:02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.5,25.7,25.0,15.6,0.0,0.0,25.4,23.3,25.2,37.3,30.0,43.1,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.2,25.0,5553.7,0.0,0.0,0.0,0.0,62.4,0,54.2,0.0,0.0,0.0,0.0,0.0,41.2,0.0,5553.7,12.7,14.5,19.9,19.6,0.0,11.2,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:52:12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.5,25.6,25.0,15.6,0.0,0.0,25.4,23.3,25.2,37.3,30.0,43.1,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.1,25.0,5553.7,0.0,0.0,0.0,0.0,62.3,0,54.2,0.0,0.0,0.0,0.0,0.0,41.1,0.0,5553.7,12.7,14.5,19.9,19.6,0.0,11.2,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:52:23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.5,25.6,25.0,15.6,0.0,0.0,25.4,23.3,25.2,37.3,30.0,43.1,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.0,25.0,5553.7,0.0,0.0,0.0,0.0,62.3,0,54.2,0.0,0.0,0.0,0.0,0.0,41.0,0.0,5553.7,12.7,14.5,19.9,19.6,0.0,11.2,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:52:33,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.5,25.6,25.0,15.6,0.0,0.0,25.4,23.3,25.2,37.3,30.0,43.1,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.9,25.0,5553.7,0.0,0.0,0.0,0.0,62.2,0,54.2,0.0,0.0,0.0,0.0,0.0,40.9,0.0,5553.7,12.7,14.5,19.9,19.5,0.0,11.2,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:52:43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.5,25.6,25.1,15.7,0.0,0.0,25.4,23.3,25.2,37.3,30.0,43.1,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.9,25.0,5553.7,0.0,0.0,0.0,0.0,62.1,0,54.2,0.0,0.0,0.0,0.0,0.0,40.9,0.0,5553.7,12.7,14.5,19.9,19.6,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:52:53,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.5,25.6,25.1,15.7,0.0,0.0,25.4,23.2,25.2,37.3,30.0,43.1,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.9,24.9,5553.7,0.0,0.0,0.0,0.0,62.1,0,54.2,0.0,0.0,0.0,0.0,0.0,40.9,0.0,5553.7,12.7,14.5,19.9,19.6,0.0,11.2,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:53:04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.5,25.6,25.1,15.7,0.0,0.0,25.4,23.2,25.2,37.3,30.0,43.1,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.8,24.9,5553.7,0.0,0.0,0.0,0.0,62.0,0,54.2,0.0,0.0,0.0,0.0,0.0,40.8,0.0,5553.7,12.7,14.5,19.9,19.5,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:53:14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.5,25.6,25.1,15.7,0.0,0.0,25.4,23.2,25.2,37.3,30.0,43.1,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.9,24.9,5553.7,0.0,0.0,0.0,0.0,62.0,0,54.2,0.0,0.0,0.0,0.0,0.0,40.9,0.0,5553.7,12.7,14.5,19.9,19.6,0.0,11.2,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:53:24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.5,25.6,25.1,15.7,0.0,0.0,25.4,23.2,25.2,37.3,30.0,43.1,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.9,25.0,5553.7,0.0,0.0,0.0,0.0,61.9,0,54.1,0.0,0.0,0.0,0.0,0.0,40.9,0.0,5553.7,12.7,14.5,19.9,19.5,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:53:34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.5,25.5,25.1,15.7,0.0,0.0,25.4,23.2,25.2,37.3,30.0,43.1,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.9,25.0,5553.7,0.0,0.0,0.0,0.0,61.9,0,54.1,0.0,0.0,0.0,0.0,0.0,40.9,0.0,5553.7,12.7,14.5,19.9,19.5,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:53:45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.5,25.5,25.1,15.7,0.0,0.0,25.4,23.2,25.2,37.3,30.0,43.1,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.0,25.0,5553.7,0.0,0.0,0.0,0.0,61.9,0,54.1,0.0,0.0,0.0,0.0,0.0,41.0,0.0,5553.7,12.7,14.5,19.9,19.6,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:53:55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.5,25.5,25.1,15.7,0.0,0.0,25.4,23.2,25.2,37.3,30.0,43.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.8,25.0,5553.7,0.0,0.0,0.0,0.0,61.8,0,54.1,0.0,0.0,0.0,0.0,0.0,40.8,0.0,5553.7,12.7,14.5,19.9,19.6,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:54:05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.5,25.5,25.1,15.7,0.0,0.0,25.4,23.1,25.2,37.3,30.0,43.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.9,25.0,5553.7,0.0,0.0,0.0,0.0,61.8,0,54.1,0.0,0.0,0.0,0.0,0.0,40.9,0.0,5553.7,12.7,14.5,19.9,19.6,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:54:15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.5,25.5,25.2,15.7,0.0,0.0,25.4,23.1,25.2,37.3,30.0,43.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.2,25.0,5553.7,0.0,0.0,0.0,0.0,61.7,0,54.1,0.0,0.0,0.0,0.0,0.0,41.2,0.0,5553.7,12.7,14.5,19.9,19.6,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:54:26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.5,25.5,25.2,15.7,0.0,0.0,25.4,23.1,25.2,37.3,30.0,43.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.2,25.0,5553.7,0.0,0.0,0.0,0.0,61.6,0,54.0,0.0,0.0,0.0,0.0,0.0,41.2,0.0,5553.7,12.8,14.5,19.9,19.6,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:54:36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.5,25.5,25.2,15.7,0.0,0.0,25.4,23.1,25.2,37.3,30.0,43.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.3,25.0,5553.7,0.0,0.0,0.0,0.0,61.5,0,54.0,0.0,0.0,0.0,0.0,0.0,41.3,0.0,5553.7,12.8,14.5,19.9,19.5,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:54:46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.4,25.5,25.2,15.7,0.0,0.0,25.4,23.1,25.2,37.3,30.0,43.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.4,25.0,5553.7,0.0,0.0,0.0,0.0,61.5,0,54.0,0.0,0.0,0.0,0.0,0.0,41.4,0.0,5553.7,12.8,14.5,19.9,19.6,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:54:56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.4,25.5,25.2,15.7,0.0,0.0,25.4,23.1,25.2,37.3,30.0,43.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.3,25.0,5553.7,0.0,0.0,0.0,0.0,61.4,0,54.0,0.0,0.0,0.0,0.0,0.0,41.3,0.0,5553.7,12.8,14.5,19.9,19.6,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:55:07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.4,25.5,25.2,15.8,0.0,0.0,25.4,23.1,25.2,37.2,30.0,43.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.2,25.0,5553.7,0.0,0.0,0.0,0.0,61.3,0,54.0,0.0,0.0,0.0,0.0,0.0,41.2,0.0,5553.7,12.8,14.5,19.9,19.5,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:55:17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.4,25.5,25.2,15.8,0.0,0.0,25.4,23.1,25.2,37.2,30.0,43.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.4,25.0,5553.7,0.0,0.0,0.0,0.0,61.2,0,54.0,0.0,0.0,0.0,0.0,0.0,41.4,0.0,5553.7,12.8,14.5,19.9,19.6,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:55:27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.4,25.5,25.2,15.8,0.0,0.0,25.4,23.1,25.3,37.2,30.0,43.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.4,25.0,5553.7,0.0,0.0,0.0,0.0,61.2,0,54.0,0.0,0.0,0.0,0.0,0.0,41.4,0.0,5553.7,12.8,14.5,19.9,19.5,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:55:37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.4,25.4,25.2,15.8,0.0,0.0,25.4,23.1,25.3,37.2,30.0,43.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.3,25.0,5553.7,0.0,0.0,0.0,0.0,61.2,0,54.0,0.0,0.0,0.0,0.0,0.0,41.3,0.0,5553.7,12.8,14.5,19.9,19.5,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:55:48,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.4,25.4,25.2,15.8,0.0,0.0,25.4,23.0,25.3,37.2,30.0,43.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.1,25.0,5553.7,0.0,0.0,0.0,0.0,61.1,0,54.0,0.0,0.0,0.0,0.0,0.0,41.1,0.0,5553.7,12.8,14.5,19.9,19.6,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:55:58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.4,25.4,25.2,15.8,0.0,0.0,25.4,23.0,25.3,37.2,30.0,43.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.2,25.0,5553.7,0.0,0.0,0.0,0.0,61.1,0,54.0,0.0,0.0,0.0,0.0,0.0,41.2,0.0,5553.7,12.8,14.5,19.9,19.6,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:56:08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.4,25.4,25.2,15.8,0.0,0.0,25.4,23.0,25.3,37.2,30.0,43.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.1,25.0,5553.7,0.0,0.0,0.0,0.0,61.1,0,54.0,0.0,0.0,0.0,0.0,0.0,41.1,0.0,5553.7,12.8,14.5,19.9,19.6,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:56:18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.4,25.4,25.3,15.8,0.0,0.0,25.4,23.0,25.3,37.2,30.0,42.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.0,25.0,5553.7,0.0,0.0,0.0,0.0,61.0,0,54.0,0.0,0.0,0.0,0.0,0.0,41.0,0.0,5553.7,12.8,14.5,19.9,19.6,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:56:29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.4,25.4,25.3,15.8,0.0,0.0,25.4,23.0,25.3,37.2,30.0,42.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.9,25.0,5553.7,0.0,0.0,0.0,0.0,61.0,0,53.9,0.0,0.0,0.0,0.0,0.0,40.9,0.0,5553.7,12.8,14.5,19.9,19.5,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:56:39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.4,25.4,25.3,15.8,0.0,0.0,25.4,23.0,25.3,37.2,30.0,42.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.0,25.0,5553.7,0.0,0.0,0.0,0.0,61.0,0,54.0,0.0,0.0,0.0,0.0,0.0,41.0,0.0,5553.7,12.8,14.5,19.9,19.5,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:56:49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.4,25.4,25.3,15.8,0.0,0.0,25.4,22.9,25.3,37.2,30.0,42.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.9,25.0,5553.7,0.0,0.0,0.0,0.0,61.0,0,54.0,0.0,0.0,0.0,0.0,0.0,40.9,0.0,5553.7,12.8,14.5,19.9,19.6,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:56:59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.4,25.4,25.3,15.8,0.0,0.0,25.4,22.9,25.3,37.2,30.0,42.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.9,25.0,5553.7,0.0,0.0,0.0,0.0,60.9,0,54.0,0.0,0.0,0.0,0.0,0.0,40.9,0.0,5553.7,12.8,14.5,19.9,19.6,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:57:10,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.4,25.4,25.3,15.8,0.0,0.0,25.4,22.9,25.3,37.1,30.0,42.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.9,25.0,5553.7,0.0,0.0,0.0,0.0,60.9,0,53.9,0.0,0.0,0.0,0.0,0.0,40.9,0.0,5553.7,12.8,14.5,19.9,19.5,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:57:20,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.4,25.4,25.3,15.8,0.0,0.0,25.4,22.9,25.3,37.1,30.0,42.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.0,25.0,5553.7,0.0,0.0,0.0,0.0,60.9,0,53.9,0.0,0.0,0.0,0.0,0.0,41.0,0.0,5553.7,12.8,14.5,19.9,19.5,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:57:30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.4,25.4,25.3,15.8,0.0,0.0,25.5,22.9,25.3,37.1,30.0,42.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.9,25.0,5553.7,0.0,0.0,0.0,0.0,60.9,0,53.9,0.0,0.0,0.0,0.0,0.0,40.9,0.0,5553.7,12.8,14.5,19.9,19.5,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:57:41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.4,25.4,25.3,15.9,0.0,0.0,25.5,22.9,25.3,37.1,30.0,42.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.0,25.0,5553.7,0.0,0.0,0.0,0.0,60.9,0,53.9,0.0,0.0,0.0,0.0,0.0,41.0,0.0,5553.7,12.8,14.5,19.9,19.5,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:57:51,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.4,25.4,25.3,15.9,0.0,0.0,25.5,22.9,25.3,37.1,30.0,42.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.9,25.0,5553.7,0.0,0.0,0.0,0.0,60.9,0,53.9,0.0,0.0,0.0,0.0,0.0,40.9,0.0,5553.7,12.8,14.5,19.9,19.5,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:58:01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.3,25.4,25.4,15.9,0.0,0.0,25.5,22.9,25.3,37.1,30.0,42.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.9,25.0,5553.7,0.0,0.0,0.0,0.0,60.8,0,53.9,0.0,0.0,0.0,0.0,0.0,40.9,0.0,5553.7,12.8,14.5,19.9,19.6,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:58:11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.3,25.3,25.4,15.9,0.0,0.0,25.5,23.0,25.3,37.1,30.0,42.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.7,25.0,5553.7,0.0,0.0,0.0,0.0,60.8,0,53.9,0.0,0.0,0.0,0.0,0.0,40.7,0.0,5553.7,12.8,14.5,19.9,19.6,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:58:22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.3,25.3,25.4,15.9,0.0,0.0,25.5,23.0,25.3,37.1,30.0,42.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.6,25.0,5553.7,0.0,0.0,0.0,0.0,60.8,0,53.9,0.0,0.0,0.0,0.0,0.0,40.6,0.0,5553.7,12.8,14.5,19.9,19.5,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:58:32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.3,25.3,25.4,15.9,0.0,0.0,25.5,23.0,25.3,37.1,30.0,42.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.6,25.0,5553.7,0.0,0.0,0.0,0.0,60.8,0,53.9,0.0,0.0,0.0,0.0,0.0,40.6,0.0,5553.7,12.8,14.5,19.9,19.5,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:58:42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.3,25.3,25.4,15.9,0.0,0.0,25.5,23.0,25.3,37.1,30.0,42.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.6,25.0,5553.7,0.0,0.0,0.0,0.0,60.7,0,53.9,0.0,0.0,0.0,0.0,0.0,40.6,0.0,5553.7,12.8,14.5,19.9,19.5,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:58:52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.3,25.3,25.4,15.9,0.0,0.0,25.4,23.0,25.3,37.0,30.0,42.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.3,25.0,5553.7,0.0,0.0,0.0,0.0,60.7,0,53.9,0.0,0.0,0.0,0.0,0.0,40.3,0.0,5553.7,12.8,14.5,19.9,19.6,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:59:03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.3,25.3,25.4,15.9,0.0,0.0,25.5,23.0,25.3,37.0,30.0,42.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.4,25.0,5553.7,0.0,0.0,0.0,0.0,60.7,0,53.9,0.0,0.0,0.0,0.0,0.0,40.4,0.0,5553.7,12.8,14.5,19.9,19.6,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:59:13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.3,25.3,25.4,15.9,0.0,0.0,25.5,23.1,25.3,37.0,30.0,42.9,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.5,25.0,5553.7,0.0,0.0,0.0,0.0,60.6,0,53.9,0.0,0.0,0.0,0.0,0.0,40.5,0.0,5553.7,12.8,14.5,19.9,19.5,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:59:23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.3,25.3,25.4,15.9,0.0,0.0,25.5,23.1,25.3,37.0,30.0,42.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.7,25.0,5553.7,0.0,0.0,0.0,0.0,60.6,0,53.9,0.0,0.0,0.0,0.0,0.0,40.7,0.0,5553.7,12.8,14.5,19.9,19.6,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:59:33,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.2,25.3,25.4,15.9,0.0,0.0,25.5,23.1,25.3,37.0,30.0,42.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.7,25.0,5553.7,0.0,0.0,0.0,0.0,60.5,0,53.9,0.0,0.0,0.0,0.0,0.0,40.7,0.0,5553.7,12.8,14.5,19.9,19.6,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:59:44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.2,25.3,25.4,15.9,0.0,0.0,25.5,23.1,25.3,37.0,30.0,42.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.9,25.0,5553.7,0.0,0.0,0.0,0.0,60.4,0,53.8,0.0,0.0,0.0,0.0,0.0,41.0,0.0,5553.7,12.8,14.5,19.9,19.5,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 11:59:54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.2,25.3,25.4,15.9,0.0,0.0,25.5,23.1,25.3,37.0,30.0,42.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.0,24.9,5553.7,0.0,0.0,0.0,0.0,60.3,0,53.8,0.0,0.0,0.0,0.0,0.0,41.0,0.0,5553.7,12.8,14.5,19.9,19.6,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:00:04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.2,25.3,25.5,15.9,0.0,0.0,25.5,23.1,25.3,37.0,30.0,42.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.0,24.9,5553.7,0.0,0.0,0.0,0.0,60.3,0,53.8,0.0,0.0,0.0,0.0,0.0,41.0,0.0,5553.7,12.8,14.5,19.9,19.5,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:00:14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.2,25.3,25.5,16.0,0.0,0.0,25.5,23.2,25.3,37.0,30.0,42.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.0,24.9,5553.7,0.0,0.0,0.0,0.0,60.2,0,53.8,0.0,0.0,0.0,0.0,0.0,41.0,0.0,5553.7,12.8,14.5,19.9,19.6,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:00:25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.2,25.3,25.5,16.0,0.0,0.0,25.5,23.2,25.3,37.0,30.0,42.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.1,24.9,5553.7,0.0,0.0,0.0,0.0,60.2,0,53.8,0.0,0.0,0.0,0.0,0.0,41.1,0.0,5553.7,12.8,14.5,19.9,19.5,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:00:35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.2,25.3,25.5,16.0,0.0,0.0,25.5,23.2,25.3,37.0,30.0,42.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,41.0,24.9,5553.7,0.0,0.0,0.0,0.0,60.2,0,53.8,0.0,0.0,0.0,0.0,0.0,41.0,0.0,5553.7,12.8,14.5,19.9,19.5,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:00:45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.2,25.3,25.5,16.0,0.0,0.0,25.5,23.2,25.4,36.9,30.0,42.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.7,24.9,5553.7,0.0,0.0,0.0,0.0,60.1,0,53.8,0.0,0.0,0.0,0.0,0.0,40.7,0.0,5553.7,12.8,14.5,19.9,19.6,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:00:55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.2,25.3,25.5,16.0,0.0,0.0,25.5,23.2,25.4,36.9,30.0,42.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.7,24.9,5553.7,0.0,0.0,0.0,0.0,60.1,0,53.8,0.0,0.0,0.0,0.0,0.0,40.7,0.0,5553.7,12.8,14.5,19.9,19.5,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:01:06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.2,25.3,25.5,16.0,0.0,0.0,25.6,23.2,25.4,36.9,30.0,42.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.7,24.9,5553.7,0.0,0.0,0.0,0.0,60.1,0,53.8,0.0,0.0,0.0,0.0,0.0,40.7,0.0,5553.7,12.8,14.5,19.9,19.5,0.0,11.1,30000,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:01:16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.2,25.3,25.5,16.0,0.0,0.0,25.5,23.2,25.4,36.9,30.0,42.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.8,24.9,5553.7,0.0,0.0,0.0,0.0,60.1,0,53.8,0.0,0.0,0.0,0.0,0.0,40.8,0.0,5553.7,12.8,14.5,19.9,19.5,0.0,11.1,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:01:26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.2,25.3,25.5,16.0,0.0,0.0,25.5,23.2,25.4,36.9,30.0,42.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.7,24.9,5553.7,0.0,0.0,0.0,0.0,60.1,0,53.8,0.0,0.0,0.0,0.0,0.0,40.7,0.0,5553.7,12.8,14.5,19.9,19.5,0.0,11.0,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:01:37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.2,25.3,25.5,16.0,0.0,0.0,25.5,23.2,25.4,36.9,30.0,42.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.6,24.9,5553.7,0.0,0.0,0.0,0.0,60.0,0,53.8,0.0,0.0,0.0,0.0,0.0,40.6,0.0,5553.7,12.8,14.5,19.9,19.5,0.0,11.0,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:01:47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.2,25.3,25.5,16.0,0.0,0.0,25.5,23.2,25.4,36.9,30.0,42.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.5,24.9,5553.7,0.0,0.0,0.0,0.0,60.0,0,53.8,0.0,0.0,0.0,0.0,0.0,40.5,0.0,5553.7,12.8,14.5,19.9,19.5,0.0,11.0,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:01:57,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.2,25.3,25.5,16.0,0.0,0.0,25.6,23.1,25.4,36.9,30.0,42.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.5,24.9,5553.7,0.0,0.0,0.0,0.0,60.0,0,53.8,0.0,0.0,0.0,0.0,0.0,40.5,0.0,5553.7,12.8,14.5,19.9,19.5,0.0,11.0,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:02:07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.2,25.3,25.5,16.0,0.0,0.0,25.5,23.1,25.4,36.9,30.0,42.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.4,24.9,5553.7,0.0,0.0,0.0,0.0,60.0,0,53.8,0.0,0.0,0.0,0.0,0.0,40.4,0.0,5553.7,12.9,14.5,19.9,19.5,0.0,11.0,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:02:18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.2,25.3,25.5,16.0,0.0,0.0,25.6,23.1,25.4,36.9,30.0,42.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.4,24.9,5553.7,0.0,0.0,0.0,0.0,59.9,0,53.8,0.0,0.0,0.0,0.0,0.0,40.4,0.0,5553.7,12.9,14.5,19.9,19.6,0.0,11.0,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:02:28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.2,25.3,25.5,16.0,0.0,0.0,25.5,23.1,25.4,36.8,30.0,42.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.4,24.9,5553.7,0.0,0.0,0.0,0.0,59.9,0,53.8,0.0,0.0,0.0,0.0,0.0,40.4,0.0,5553.7,12.9,14.5,19.9,19.5,0.0,11.0,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:02:38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.1,25.3,25.6,16.0,0.0,0.0,25.6,23.1,25.4,36.8,30.0,42.8,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0.0,40.4,24.9,5553.7,0.0,0.0,0.0,0.0,59.9,0,53.8,0.0,0.0,0.0,0.0,0.0,40.4,0.0,5553.7,12.9,14.5,19.9,19.5,0.0,11.0,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:02:48,60.0,0.0,60.0,0.0,0.0,0.0,0.0,35.1,25.3,25.6,16.0,0.0,0.0,26.1,23.1,25.5,36.8,30.0,42.8,0.0,0.0,0.0,0.0,0.0,27,0,0,0,0,0,0.0,40.4,24.9,5553.7,0.0,0.0,0.0,0.0,59.8,0,53.8,0.0,0.0,0.0,0.0,0.0,40.4,0.0,5553.7,12.9,14.5,19.9,19.5,0.0,11.0,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:02:58,60.0,0.0,60.0,0.0,0.0,0.0,0.0,34.7,26.1,25.6,16.1,0.0,0.0,26.4,24.1,26.0,36.9,30.0,42.7,0.0,0.0,0.0,0.0,0.0,35,0,0,0,0,0,0.0,40.5,24.9,5553.7,0.0,0.0,0.0,0.0,59.8,0,53.7,0.0,0.0,0.0,0.0,0.0,40.5,0.0,5553.7,12.9,14.5,19.9,19.5,0.0,11.0,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:03:09,60.0,0.0,60.0,0.0,0.0,0.0,0.0,33.5,26.3,25.3,16.1,0.0,0.0,25.1,24.8,23.9,37.1,30.0,42.7,0.0,0.0,0.0,0.0,0.0,37,0,0,0,0,0,0.0,40.5,24.9,5553.7,0.0,0.0,0.0,0.0,59.7,0,53.7,0.0,0.0,0.0,0.0,0.0,40.5,0.0,5553.7,12.9,14.5,19.9,19.6,0.0,11.0,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:03:19,60.0,0.0,60.0,0.0,0.0,0.0,0.0,31.6,26.3,23.0,16.4,0.0,0.0,22.6,24.3,21.9,37.5,30.0,42.8,0.0,0.0,0.0,0.0,0.0,37,0,0,0,0,0,0.0,40.6,24.9,5553.7,0.0,0.0,0.0,0.0,59.7,0,53.7,0.0,0.0,0.0,0.0,0.0,40.6,0.0,5553.7,12.9,14.5,19.9,19.5,0.0,11.0,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:03:29,60.0,0.0,60.0,0.0,0.0,0.0,0.0,29.9,26.5,19.7,17.1,0.0,0.0,21.9,23.2,20.8,37.9,30.0,42.8,0.0,0.0,0.0,0.0,0.0,37,0,0,0,0,0,0.0,40.6,24.9,5553.7,0.0,0.0,0.0,0.0,59.6,0,53.7,0.0,0.0,0.0,0.0,0.0,40.6,0.0,5553.7,12.9,14.5,19.9,19.5,0.0,11.0,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:03:40,60.0,0.0,60.0,0.0,0.0,0.0,0.0,29.3,27.3,17.3,18.1,0.0,0.0,22.5,22.8,20.1,38.5,30.0,42.5,0.0,0.0,0.0,0.0,0.0,36,0,0,0,0,0,0.0,40.6,24.9,5553.7,0.0,0.0,0.0,0.0,59.5,0,53.7,0.0,0.0,0.0,0.0,0.0,40.6,0.0,5553.7,12.9,14.5,19.9,19.5,0.0,11.0,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:03:50,60.0,0.0,60.0,0.0,0.0,0.0,0.0,29.7,29.0,15.7,18.6,0.0,0.0,20.0,22.6,18.9,39.4,30.0,42.0,0.0,0.0,0.0,0.0,0.0,37,0,0,0,0,0,0.0,40.6,24.8,5553.7,0.0,0.0,0.0,0.0,59.5,0,53.7,0.0,0.0,0.0,0.0,0.0,40.6,0.0,5553.7,12.9,14.5,19.9,19.6,0.0,11.0,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:04:00,60.0,0.0,60.0,0.0,0.0,0.0,0.0,31.7,31.8,14.6,18.4,0.0,0.0,18.0,22.6,17.5,40.0,30.0,41.5,0.0,0.0,0.0,0.0,0.0,37,0,0,0,0,0,0.0,40.8,24.8,5553.7,0.0,0.0,0.0,0.0,59.4,0,53.7,0.0,0.0,0.0,0.0,0.0,40.8,0.0,5553.7,12.9,14.5,19.9,19.5,0.0,11.0,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:04:10,60.0,0.0,60.0,0.0,0.0,0.0,0.0,34.8,35.4,14.0,17.8,0.0,0.0,16.7,22.9,16.4,40.5,30.0,41.1,0.0,0.0,0.0,0.0,0.0,37,0,0,0,0,0,0.0,41.0,24.8,5553.7,0.0,0.0,0.0,0.0,59.4,0,53.7,0.0,0.0,0.0,0.0,0.0,41.0,0.0,5553.7,12.9,14.5,19.9,19.5,0.0,11.0,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:04:21,60.0,0.0,60.0,0.0,0.0,0.0,0.0,38.8,39.0,13.5,16.9,0.0,0.0,15.3,23.4,15.2,40.8,30.0,40.9,0.0,0.0,0.0,0.0,0.0,37,0,0,0,0,0,0.0,41.0,24.8,5553.7,0.0,0.0,0.0,0.0,59.4,0,53.6,0.0,0.0,0.0,0.0,0.0,41.0,0.0,5553.7,12.9,14.5,19.9,19.5,0.0,11.0,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:04:31,60.0,0.0,60.0,0.0,0.0,0.0,0.0,42.4,41.9,13.0,15.9,0.0,0.0,14.5,23.9,14.3,40.9,30.0,40.8,0.0,0.0,0.0,0.0,0.0,37,0,0,0,0,0,0.0,41.0,24.8,5553.7,0.0,0.0,0.0,0.0,59.4,0,53.4,0.0,0.0,0.0,0.0,0.0,41.0,0.0,5553.7,12.9,14.5,19.9,19.5,0.0,11.0,30000,0.0,1582.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:04:41,60.0,0.0,60.0,0.0,0.0,0.0,0.0,44.7,43.8,12.7,14.9,0.0,0.0,14.8,24.1,13.5,41.0,30.0,40.8,0.0,0.0,0.0,0.0,0.0,38,0,0,0,0,0,0.0,41.1,24.8,5553.7,0.0,0.0,0.0,0.0,59.3,0,52.9,0.0,0.0,0.0,0.0,0.0,41.1,0.0,5553.7,12.9,14.5,19.9,19.5,0.0,11.0,30000,1665.2,1653.7,1695.2,1589.7,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:04:51,60.0,0.0,100.0,0.0,0.0,0.0,0.0,46.3,45.0,12.3,14.1,0.0,0.0,43.0,28.7,12.6,30.4,55.2,41.6,0.0,0.0,0.0,0.0,0.0,40,0,0,0,0,0,0.0,41.1,24.8,5553.7,0.0,0.0,0.0,0.0,59.3,0,52.6,0.0,0.0,0.0,0.0,0.0,41.1,0.0,5553.7,12.9,14.5,19.9,19.5,0.0,11.0,30000,1680.0,1666.5,1710.0,1634.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:05:02,60.0,0.0,100.0,0.0,0.0,0.0,0.0,47.4,46.1,12.0,13.5,0.0,0.0,50.8,39.7,11.5,19.4,51.0,45.1,0.0,0.0,0.0,0.0,0.0,45,0,0,0,0,0,0.0,41.1,24.8,5553.7,0.0,0.0,0.0,0.0,59.3,0,52.3,0.0,0.0,0.0,0.0,0.0,41.1,0.0,5553.7,12.9,14.5,19.9,19.5,0.0,11.0,30000,1682.8,1665.6,1713.2,1635.9,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:05:12,56.5,0.0,90.1,0.0,0.0,0.0,0.0,48.4,46.9,11.8,12.9,0.0,0.0,52.4,46.2,9.6,14.1,48.5,48.9,0.0,0.0,0.0,0.0,0.0,47,0,0,0,0,0,0.0,41.0,24.8,5553.7,0.0,0.0,0.0,0.0,59.3,0,52.1,0.0,0.0,0.0,0.0,0.0,41.0,0.0,5553.7,12.9,14.6,19.9,19.5,0.0,11.0,30000,1690.3,1664.9,1719.0,1641.1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:05:22,55.0,0.0,78.6,0.0,0.0,0.0,0.0,49.2,47.6,11.6,12.0,0.0,0.0,53.3,48.7,7.3,10.9,49.0,51.1,0.0,0.0,0.0,0.0,0.0,46,0,0,0,0,0,0.0,41.1,24.8,5553.7,0.0,0.0,0.0,0.0,59.2,0,52.0,0.0,0.0,0.0,0.0,0.0,41.1,0.0,5553.7,12.9,14.5,19.9,19.5,0.0,11.0,30000,1694.2,1665.4,1723.5,1646.1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:05:32,57.4,0.0,66.9,0.0,0.0,0.0,0.0,50.0,48.2,11.5,10.7,0.0,0.0,54.1,49.6,5.6,9.7,50.0,52.6,0.0,0.0,0.0,0.0,0.0,45,0,0,0,0,0,0.0,41.1,24.8,5553.7,0.0,0.0,0.0,0.0,59.2,0,51.9,0.0,0.0,0.0,0.0,0.0,41.1,0.0,5553.7,12.9,14.5,19.9,19.5,0.0,11.0,30000,1698.4,1666.0,1728.1,1651.5,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:05:43,62.3,0.0,57.0,0.0,0.0,0.0,0.0,50.8,48.6,11.4,9.3,0.0,0.0,54.9,49.7,4.3,10.3,51.9,53.8,0.0,0.0,0.0,0.0,0.0,40,0,0,0,0,0,0.0,40.9,24.8,5553.7,0.0,0.0,0.0,0.0,59.1,0,51.8,0.0,0.0,0.0,0.0,0.0,40.9,0.0,5553.7,12.9,14.5,19.9,19.6,0.0,11.0,30000,1698.7,1666.4,1728.3,1652.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:05:53,62.3,0.0,47.5,0.0,0.0,0.0,0.0,51.7,48.9,11.3,8.2,0.0,0.0,55.7,49.6,4.1,11.1,52.3,55.1,0.0,0.0,0.0,0.0,0.0,35,0,0,0,0,0,0.0,40.8,24.8,5553.7,0.0,0.0,0.0,0.0,59.1,0,51.8,0.0,0.0,0.0,0.0,0.0,40.8,0.0,5553.7,12.9,14.5,19.9,19.5,0.0,11.0,30000,1698.7,1666.5,1728.3,1652.1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:06:03,71.8,0.0,36.6,0.0,0.0,0.0,0.0,52.4,49.2,11.1,7.5,0.0,0.0,56.4,49.7,3.9,11.4,52.7,56.6,0.0,0.0,0.0,0.0,0.0,30,0,0,0,0,0,0.0,40.7,24.8,5553.7,0.0,0.0,0.0,0.0,59.0,0,51.9,0.0,0.0,0.0,0.0,0.0,40.7,0.0,5553.7,12.9,14.5,19.9,19.5,0.0,11.0,30000,1698.6,1666.7,1728.3,1652.3,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:06:13,73.8,0.0,29.3,0.0,0.0,0.0,0.0,53.0,49.4,11.0,7.2,0.0,0.0,57.2,49.8,4.1,11.5,52.3,58.0,0.0,0.0,0.0,0.0,0.0,26,0,0,0,0,0,0.0,40.8,24.8,5553.7,0.0,0.0,0.0,0.0,59.0,0,51.9,0.0,0.0,0.0,0.0,0.0,40.8,0.0,5553.7,12.9,14.6,19.9,19.5,0.0,11.0,30000,1698.5,1667.0,1728.2,1652.4,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:06:24,73.9,0.0,23.0,0.0,0.0,0.0,0.0,53.7,49.7,10.9,7.3,0.0,0.0,58.0,50.0,4.3,11.4,52.3,59.4,0.0,0.0,0.0,0.0,0.0,22,0,0,0,0,0,0.0,40.7,24.8,5553.7,0.0,0.0,0.0,0.0,58.9,0,52.0,0.0,0.0,0.0,0.0,0.0,40.7,0.0,5553.7,12.9,14.6,19.9,19.6,0.0,11.0,30000,1698.4,1667.2,1728.2,1652.5,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:06:34,72.9,0.0,20.0,0.0,0.0,0.0,0.0,54.4,49.8,10.8,7.4,0.0,0.0,58.8,50.1,4.5,11.3,52.1,60.7,0.0,0.0,0.0,0.0,0.0,19,0,0,0,0,0,0.0,40.7,24.8,5553.7,0.0,0.0,0.0,0.0,58.8,0,52.0,0.0,0.0,0.0,0.0,0.0,40.7,0.0,5553.7,12.9,14.5,19.9,19.6,0.0,11.0,30000,1698.2,1667.5,1728.0,1652.6,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:06:44,72.9,0.0,20.0,0.0,0.0,0.0,0.0,55.1,50.0,10.6,7.6,0.0,0.0,59.2,50.1,4.8,11.2,51.7,61.9,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.7,24.8,5553.7,0.0,0.0,0.0,0.0,58.8,0,52.1,0.0,0.0,0.0,0.0,0.0,40.7,0.0,5553.7,12.9,14.6,19.9,19.5,0.0,11.0,30000,1697.9,1667.5,1727.8,1652.4,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:06:54,72.9,0.0,20.0,0.0,0.0,0.0,0.0,56.0,50.2,10.5,7.6,0.0,0.0,59.2,50.2,5.0,11.0,51.3,63.1,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,41.1,24.8,5553.7,0.0,0.0,0.0,0.0,58.7,0,52.2,0.0,0.0,0.0,0.0,0.0,41.1,0.0,5553.7,12.9,14.6,19.9,19.5,0.0,11.0,30000,1697.7,1667.5,1727.6,1652.2,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:07:05,72.9,0.0,20.0,0.0,0.0,0.0,0.0,56.6,50.3,10.4,7.5,0.0,0.0,59.2,50.2,5.2,10.9,51.0,64.1,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,41.2,24.8,5553.7,0.0,0.0,0.0,0.0,58.7,0,52.3,0.0,0.0,0.0,0.0,0.0,41.2,0.0,5553.7,12.9,14.6,19.9,19.6,0.0,11.0,30000,1697.6,1667.5,1727.4,1652.1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:07:15,72.9,0.0,20.0,0.0,0.0,0.0,0.0,57.1,50.4,10.2,7.4,0.0,0.0,59.1,50.2,5.3,10.7,50.6,65.0,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,41.2,24.8,5553.7,0.0,0.0,0.0,0.0,58.6,0,52.3,0.0,0.0,0.0,0.0,0.0,41.2,0.0,5553.7,12.9,14.6,19.9,19.5,0.0,11.0,30000,1697.5,1667.5,1727.3,1652.1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:07:25,72.9,0.0,20.0,0.0,0.0,0.0,0.0,57.4,50.4,10.1,7.3,0.0,0.0,59.1,50.1,5.3,10.5,50.4,65.9,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,41.1,24.8,5553.7,0.0,0.0,0.0,0.0,58.5,0,52.3,0.0,0.0,0.0,0.0,0.0,41.1,0.0,5553.7,12.9,14.6,19.9,19.5,0.0,11.0,30000,1697.6,1667.5,1727.4,1652.2,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:07:36,72.9,0.0,20.0,0.0,0.0,0.0,0.0,57.7,50.5,10.0,7.2,0.0,0.0,59.2,50.1,5.2,10.4,50.4,66.7,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,41.0,24.8,5553.7,0.0,0.0,0.0,0.0,58.5,0,52.3,0.0,0.0,0.0,0.0,0.0,41.0,0.0,5553.7,12.9,14.6,19.9,19.5,0.0,11.0,30000,1697.7,1667.5,1727.6,1652.3,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:07:46,72.9,0.0,20.0,0.0,0.0,0.0,0.0,57.9,50.5,9.9,7.1,0.0,0.0,59.4,50.2,5.0,10.3,50.6,67.4,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,41.0,24.8,5553.7,0.0,0.0,0.0,0.0,58.4,0,52.3,0.0,0.0,0.0,0.0,0.0,41.0,0.0,5553.7,12.9,14.6,19.9,19.5,0.0,11.0,30000,1698.0,1667.6,1727.8,1652.6,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:07:56,72.9,0.0,20.0,0.0,0.0,0.0,0.0,58.1,50.6,9.9,7.1,0.0,0.0,59.6,50.3,4.9,10.3,51.0,68.0,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,41.0,24.8,5553.7,0.0,0.0,0.0,0.0,58.4,0,52.4,0.0,0.0,0.0,0.0,0.0,41.0,0.0,5553.7,12.9,14.6,19.9,19.5,0.0,11.0,30000,1698.2,1667.8,1728.0,1652.8,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:08:06,72.9,0.0,20.0,0.0,0.0,0.0,0.0,58.2,50.7,9.8,7.0,0.0,0.0,59.7,50.4,4.7,10.2,51.5,68.6,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,41.0,24.8,5553.7,0.0,0.0,0.0,0.0,58.4,0,52.5,0.0,0.0,0.0,0.0,0.0,41.0,0.0,5553.7,12.9,14.6,19.9,19.5,0.0,11.0,30000,1698.5,1667.8,1728.2,1653.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:08:16,72.9,0.0,20.0,0.0,0.0,0.0,0.0,58.4,50.7,9.8,7.0,0.0,0.0,59.8,50.5,4.6,10.2,51.7,69.1,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,40.9,24.8,5553.7,0.0,0.0,0.0,0.0,58.3,0,52.5,0.0,0.0,0.0,0.0,0.0,40.9,0.0,5553.7,12.9,14.6,19.9,19.5,0.0,11.0,30000,1698.6,1667.8,1728.3,1653.1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:08:27,72.9,0.0,20.0,0.0,0.0,0.0,0.0,58.5,50.8,9.8,7.0,0.0,0.0,59.9,50.6,4.7,10.2,51.9,69.6,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.9,24.9,5553.7,0.0,0.0,0.0,0.0,58.3,0,52.6,0.0,0.0,0.0,0.0,0.0,40.9,0.0,5553.7,12.9,14.6,19.9,19.5,0.0,11.0,30000,1698.8,1668.0,1728.3,1653.3,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:08:37,72.9,0.0,20.0,0.0,0.0,0.0,0.0,58.6,50.9,9.8,7.0,0.0,0.0,60.0,50.6,4.7,10.2,52.3,70.1,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.9,24.9,5553.7,0.0,0.0,0.0,0.0,58.2,0,52.6,0.0,0.0,0.0,0.0,0.0,40.9,0.0,5553.7,12.9,14.6,19.9,19.5,0.0,11.0,30000,1698.9,1668.0,1728.4,1653.4,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:08:47,72.9,0.0,20.0,0.0,0.0,0.0,0.0,58.8,50.9,9.8,7.0,0.0,0.0,60.0,50.6,4.7,10.2,52.9,70.6,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,40.8,24.9,5553.7,0.0,0.0,0.0,0.0,58.2,0,52.6,0.0,0.0,0.0,0.0,0.0,40.8,0.0,5553.7,12.9,14.6,19.9,19.5,0.0,11.0,30000,1699.1,1668.0,1728.5,1653.6,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:08:57,72.9,0.0,20.0,0.0,0.0,0.0,0.0,58.9,50.9,9.9,7.0,0.0,0.0,60.0,50.6,4.8,10.2,53.5,71.1,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.6,24.9,5553.7,0.0,0.0,0.0,0.0,58.2,0,52.6,0.0,0.0,0.0,0.0,0.0,40.6,0.0,5553.7,12.9,14.6,19.9,19.5,0.0,11.0,30000,1699.3,1668.0,1728.6,1653.6,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:09:08,72.9,0.0,20.0,0.0,0.0,0.0,0.0,58.9,50.9,9.9,7.1,0.0,0.0,60.0,50.5,4.8,10.3,54.0,71.6,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,40.6,24.9,5553.7,0.0,0.0,0.0,0.0,58.1,0,52.7,0.0,0.0,0.0,0.0,0.0,40.6,0.0,5553.7,12.9,14.6,19.9,19.5,0.0,11.0,30000,1699.4,1668.1,1728.7,1653.8,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:09:18,72.9,0.0,20.0,0.0,0.0,0.0,0.0,59.0,50.9,9.9,7.2,0.0,0.0,60.0,50.5,5.0,10.3,54.4,72.0,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.8,24.9,5553.7,0.0,0.0,0.0,0.0,58.1,0,52.7,0.0,0.0,0.0,0.0,0.0,40.8,0.0,5553.7,13.0,14.6,19.9,19.6,0.0,11.0,30000,1699.7,1668.1,1728.8,1654.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:09:28,72.9,0.0,20.0,0.0,0.0,0.0,0.0,59.1,50.9,9.9,7.2,0.0,0.0,60.1,50.5,5.1,10.3,54.6,72.3,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.6,24.9,5553.7,0.0,0.0,0.0,0.0,58.0,0,52.7,0.0,0.0,0.0,0.0,0.0,40.6,0.0,5553.7,13.0,14.6,19.9,19.5,0.0,11.0,30000,1699.9,1668.1,1728.9,1654.1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:09:38,72.9,0.0,20.0,0.0,0.0,0.0,0.0,59.2,50.9,10.0,7.2,0.0,0.0,60.2,50.5,5.3,10.3,55.0,72.7,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,40.5,24.9,5553.7,0.0,0.0,0.0,0.0,58.0,0,52.7,0.0,0.0,0.0,0.0,0.0,40.5,0.0,5553.7,13.0,14.6,19.9,19.5,0.0,11.0,30000,1700.1,1668.3,1729.0,1654.3,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:09:49,72.9,0.0,20.0,0.0,0.0,0.0,0.0,59.2,51.0,10.0,7.2,0.0,0.0,60.3,50.5,5.3,10.3,55.4,73.0,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,40.5,24.9,5553.7,0.0,0.0,0.0,0.0,58.0,0,52.7,0.0,0.0,0.0,0.0,0.0,40.5,0.0,5553.7,13.0,14.6,19.9,19.5,0.0,11.0,30000,1700.3,1668.3,1729.1,1654.5,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:09:59,72.9,0.0,20.0,0.0,0.0,0.0,0.0,59.3,51.0,10.0,7.1,0.0,0.0,60.4,50.6,5.4,10.3,55.8,73.3,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,41.0,24.9,5553.7,0.0,0.0,0.0,0.0,57.9,0,52.8,0.0,0.0,0.0,0.0,0.0,41.0,0.0,5553.7,13.0,14.6,19.9,19.5,0.0,11.0,30000,1700.5,1668.4,1729.2,1654.7,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:10:09,72.9,0.0,20.0,0.0,0.0,0.0,0.0,59.4,51.0,10.0,7.1,0.0,0.0,60.5,50.6,5.5,10.4,56.3,73.5,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,40.8,24.9,5553.7,0.0,0.0,0.0,0.0,57.8,0,52.8,0.0,0.0,0.0,0.0,0.0,40.8,0.0,5553.7,13.0,14.6,19.9,19.5,0.0,11.0,30000,1700.6,1668.4,1729.3,1654.8,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:10:19,72.9,0.0,20.0,0.0,0.0,0.0,0.0,59.6,51.0,10.1,7.1,0.0,0.0,60.6,50.7,5.6,10.3,56.7,73.8,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,41.0,24.9,5553.7,0.0,0.0,0.0,0.0,57.8,0,52.7,0.0,0.0,0.0,0.0,0.0,41.0,0.0,5553.7,13.0,14.6,19.9,19.5,0.0,11.0,30000,1700.8,1668.4,1729.4,1655.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:10:30,72.9,0.0,20.0,0.0,0.0,0.0,0.0,59.7,51.1,10.1,7.1,0.0,0.0,60.7,50.8,5.8,9.8,57.1,74.0,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,41.3,24.9,5553.7,0.0,0.0,0.0,0.0,57.7,0,52.8,0.0,0.0,0.0,0.0,0.0,41.3,0.0,5553.7,13.0,14.6,19.9,19.5,0.0,11.0,30000,1701.0,1668.4,1729.5,1655.1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:10:40,72.9,0.0,20.0,0.0,0.0,0.0,0.0,59.8,51.1,10.1,7.1,0.0,0.0,60.8,50.9,5.9,9.5,57.5,74.2,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,41.4,24.9,5553.7,0.0,0.0,0.0,0.0,57.6,0,52.8,0.0,0.0,0.0,0.0,0.0,41.4,0.0,5553.7,13.0,14.6,19.9,19.5,0.0,11.0,30000,1701.1,1668.4,1729.6,1655.2,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:10:50,72.9,0.0,20.0,0.0,0.0,0.0,0.0,59.9,51.1,10.2,7.1,0.0,0.0,60.8,50.9,6.1,9.6,58.1,74.4,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,41.2,24.9,5553.7,0.0,0.0,0.0,0.0,57.6,0,52.8,0.0,0.0,0.0,0.0,0.0,41.2,0.0,5553.7,13.0,14.6,19.9,19.5,0.0,11.0,30000,1701.2,1668.6,1729.6,1655.3,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:11:00,72.9,0.0,20.0,0.0,0.0,0.0,0.0,60.0,51.2,10.2,7.1,0.0,0.0,60.9,51.0,6.2,9.8,58.3,74.5,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,41.3,24.9,5553.7,0.0,0.0,0.0,0.0,57.5,0,52.8,0.0,0.0,0.0,0.0,0.0,41.3,0.0,5553.7,13.0,14.6,19.9,19.5,0.0,11.0,30000,1701.4,1668.6,1729.7,1655.5,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:11:11,72.9,0.0,20.0,0.0,0.0,0.0,0.0,60.2,51.2,10.2,7.2,0.0,0.0,61.0,51.1,6.4,9.7,58.8,74.6,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,41.2,24.9,5553.7,0.0,0.0,0.0,0.0,57.5,0,52.8,0.0,0.0,0.0,0.0,0.0,41.2,0.0,5553.7,13.0,14.6,19.9,19.5,0.0,11.0,30000,1701.5,1668.6,1729.8,1655.6,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:11:21,72.9,0.0,20.0,0.0,0.0,0.0,0.0,60.3,51.2,10.3,7.2,0.0,0.0,61.1,51.1,6.4,8.4,58.8,74.7,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,41.1,24.9,5553.7,0.0,0.0,0.0,0.0,57.5,0,52.8,0.0,0.0,0.0,0.0,0.0,41.1,0.0,5553.7,13.0,14.6,19.9,19.6,0.0,11.0,30000,1701.7,1668.8,1729.9,1655.8,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:11:31,72.9,0.0,20.0,0.0,0.0,0.0,0.0,60.4,51.4,10.3,7.2,0.0,0.0,61.3,51.2,6.3,7.6,59.2,74.7,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.9,24.9,5553.7,0.0,0.0,0.0,0.0,57.5,0,52.9,0.0,0.0,0.0,0.0,0.0,40.9,0.0,5553.7,13.0,14.6,19.9,19.5,0.0,11.0,30000,1701.8,1668.8,1730.0,1656.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:11:41,72.9,0.0,20.0,0.0,0.0,0.0,0.0,60.6,51.5,10.3,7.3,0.0,0.0,61.3,51.2,6.4,7.5,59.2,74.7,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,41.1,24.9,5553.7,0.0,0.0,0.0,0.0,57.4,0,52.9,0.0,0.0,0.0,0.0,0.0,41.1,0.0,5553.7,13.0,14.6,19.9,19.5,0.0,11.0,30000,1702.0,1668.8,1730.0,1656.1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:11:52,72.9,0.0,20.0,0.0,0.0,0.0,0.0,60.7,51.6,10.3,7.3,0.0,0.0,61.5,51.5,6.4,7.4,59.4,74.6,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,41.2,24.9,5553.7,0.0,0.0,0.0,0.0,57.4,0,52.9,0.0,0.0,0.0,0.0,0.0,41.2,0.0,5553.7,13.0,14.6,19.9,19.5,0.0,11.0,30000,1702.1,1668.9,1730.1,1656.2,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:12:02,72.9,0.0,20.0,0.0,0.0,0.0,0.0,60.8,51.6,10.4,7.3,0.0,0.0,61.6,51.5,6.4,7.2,59.6,74.6,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,41.2,24.9,5553.7,0.0,0.0,0.0,0.0,57.4,0,52.9,0.0,0.0,0.0,0.0,0.0,41.2,0.0,5553.7,13.0,14.6,19.9,19.5,0.0,11.0,30000,1702.2,1668.9,1730.2,1656.3,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:12:12,72.9,0.0,20.0,0.0,0.0,0.0,0.0,60.9,51.7,10.4,7.3,0.0,0.0,61.6,51.6,6.4,7.4,59.8,74.6,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,41.1,24.9,5553.7,0.0,0.0,0.0,0.0,57.4,0,52.9,0.0,0.0,0.0,0.0,0.0,41.1,0.0,5553.7,13.0,14.6,19.9,19.6,0.0,10.9,30000,1702.3,1668.9,1730.2,1656.4,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:12:23,72.9,0.0,20.0,0.0,0.0,0.0,0.0,61.0,51.7,10.4,7.3,0.0,0.0,61.6,51.6,6.5,7.5,60.0,74.6,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,41.0,24.9,5553.7,0.0,0.0,0.0,0.0,57.4,0,52.9,0.0,0.0,0.0,0.0,0.0,41.0,0.0,5553.7,13.0,14.6,19.9,19.5,0.0,10.9,30000,1702.4,1668.9,1730.3,1656.5,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:12:33,72.9,0.0,20.0,0.0,0.0,0.0,0.0,61.1,51.7,10.4,7.3,0.0,0.0,61.7,51.7,6.5,7.5,60.2,74.6,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,41.0,24.9,5553.7,0.0,0.0,0.0,0.0,57.5,0,52.9,0.0,0.0,0.0,0.0,0.0,41.0,0.0,5553.7,12.9,14.6,19.9,19.5,0.0,10.9,30000,1702.4,1669.1,1730.4,1656.7,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:12:43,72.9,0.0,20.0,0.0,0.0,0.0,0.0,61.2,51.8,10.5,7.4,0.0,0.0,61.8,51.8,6.5,7.2,60.4,74.6,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.9,24.9,5553.7,0.0,0.0,0.0,0.0,57.5,0,53.0,0.0,0.0,0.0,0.0,0.0,40.9,0.0,5553.7,12.9,14.6,19.9,19.5,0.0,11.0,30000,1702.5,1669.1,1730.4,1656.8,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:12:53,72.9,0.0,20.0,0.0,0.0,0.0,0.0,61.3,51.8,10.5,7.4,0.0,0.0,61.9,51.8,6.5,7.1,60.6,74.7,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.7,24.9,5553.7,0.0,0.0,0.0,0.0,57.5,0,53.0,0.0,0.0,0.0,0.0,0.0,40.7,0.0,5553.7,12.9,14.6,19.9,19.5,0.0,10.9,30000,1702.6,1669.1,1730.5,1656.9,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:13:04,72.9,0.0,20.0,0.0,0.0,0.0,0.0,61.4,51.8,10.5,7.4,0.0,0.0,62.0,51.8,6.5,7.0,60.8,74.7,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,40.8,24.9,5553.7,0.0,0.0,0.0,0.0,57.5,0,53.0,0.0,0.0,0.0,0.0,0.0,40.8,0.0,5553.7,12.9,14.6,19.9,19.6,0.0,10.9,30000,1702.6,1669.1,1730.6,1657.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:13:14,72.9,0.0,20.0,0.0,0.0,0.0,0.0,61.5,51.9,10.5,7.4,0.0,0.0,62.0,51.9,6.5,6.9,61.0,74.7,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,40.7,24.9,5553.7,0.0,0.0,0.0,0.0,57.6,0,53.0,0.0,0.0,0.0,0.0,0.0,40.7,0.0,5553.7,12.9,14.6,19.9,19.6,0.0,10.9,30000,1702.7,1669.2,1730.6,1657.1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:13:24,72.9,0.0,20.0,0.0,0.0,0.0,0.0,61.6,51.9,10.6,7.4,0.0,0.0,62.1,51.9,6.5,7.0,61.3,74.7,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.8,24.9,5553.7,0.0,0.0,0.0,0.0,57.6,0,53.0,0.0,0.0,0.0,0.0,0.0,40.8,0.0,5553.7,12.9,14.6,19.9,19.6,0.0,10.9,30000,1702.8,1669.2,1730.7,1657.2,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:13:34,72.9,0.0,20.0,0.0,0.0,0.0,0.0,61.6,51.9,10.6,7.4,0.0,0.0,62.1,52.0,6.5,7.0,61.5,74.7,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.7,24.9,5553.7,0.0,0.0,0.0,0.0,57.6,0,53.1,0.0,0.0,0.0,0.0,0.0,40.7,0.0,5553.7,12.9,14.6,19.9,19.5,0.0,10.9,30000,1702.8,1669.2,1730.8,1657.4,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:13:45,72.9,0.0,20.0,0.0,0.0,0.0,0.0,61.7,51.9,10.6,7.4,0.0,0.0,62.2,52.0,6.5,7.0,61.7,74.8,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.6,24.9,5553.7,0.0,0.0,0.0,0.0,57.6,0,53.1,0.0,0.0,0.0,0.0,0.0,40.6,0.0,5553.7,12.9,14.6,19.9,19.5,0.0,10.9,30000,1702.9,1669.2,1730.8,1657.5,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:13:55,72.9,0.0,20.0,0.0,0.0,0.0,0.0,61.8,52.0,10.6,7.5,0.0,0.0,62.3,52.1,6.6,6.9,61.7,74.8,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,40.6,24.9,5553.7,0.0,0.0,0.0,0.0,57.7,0,53.2,0.0,0.0,0.0,0.0,0.0,40.6,0.0,5553.7,12.9,14.6,19.9,19.5,0.0,10.9,30000,1702.9,1669.4,1730.9,1657.6,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:14:05,72.9,0.0,20.0,0.0,0.0,0.0,0.0,61.9,52.0,10.6,7.5,0.0,0.0,62.4,52.2,6.6,6.9,61.9,74.8,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,40.6,24.9,5553.7,0.0,0.0,0.0,0.0,57.7,0,53.2,0.0,0.0,0.0,0.0,0.0,40.6,0.0,5553.7,12.9,14.6,19.9,19.5,0.0,10.9,30000,1703.0,1669.4,1731.0,1657.8,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:14:15,72.9,0.0,20.0,0.0,0.0,0.0,0.0,61.9,52.0,10.7,7.5,0.0,0.0,62.4,52.2,6.6,6.9,62.1,74.8,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,40.7,24.9,5553.7,0.0,0.0,0.0,0.0,57.7,0,53.2,0.0,0.0,0.0,0.0,0.0,40.7,0.0,5553.7,12.9,14.6,19.9,19.5,0.0,10.9,30000,1703.0,1669.4,1731.0,1657.8,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:14:26,72.9,0.0,20.0,0.0,0.0,0.0,0.0,62.0,52.0,10.7,7.5,0.0,0.0,62.5,52.2,6.6,7.0,62.3,74.8,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.6,24.9,5553.7,0.0,0.0,0.0,0.0,57.7,0,53.2,0.0,0.0,0.0,0.0,0.0,40.6,0.0,5553.7,12.9,14.6,19.9,19.5,0.0,10.9,30000,1703.1,1669.4,1731.1,1658.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:14:36,72.9,0.0,20.0,0.0,0.0,0.0,0.0,62.1,52.1,10.7,7.5,0.0,0.0,62.6,52.3,6.6,6.9,62.5,74.8,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.6,24.9,5553.7,0.0,0.0,0.0,0.0,57.7,0,53.3,0.0,0.0,0.0,0.0,0.0,40.6,0.0,5553.7,12.9,14.6,19.9,19.5,0.0,10.9,30000,1703.1,1669.6,1731.1,1658.1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:14:46,72.9,0.0,20.0,0.0,0.0,0.0,0.0,62.1,52.1,10.7,7.6,0.0,0.0,62.6,52.3,6.6,6.9,62.5,74.8,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,40.4,24.9,5553.7,0.0,0.0,0.0,0.0,57.7,0,53.3,0.0,0.0,0.0,0.0,0.0,40.4,0.0,5553.7,12.9,14.6,19.9,19.5,0.0,10.9,30000,1703.2,1669.6,1731.2,1658.2,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:14:56,72.9,0.0,20.0,0.0,0.0,0.0,0.0,62.2,52.1,10.7,7.6,0.0,0.0,62.7,52.3,6.5,6.8,62.7,74.8,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,40.2,24.9,5553.7,0.0,0.0,0.0,0.0,57.7,0,53.4,0.0,0.0,0.0,0.0,0.0,40.2,0.0,5553.7,12.8,14.6,19.9,19.5,0.0,10.9,30000,1703.2,1669.6,1731.2,1658.3,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:15:07,72.9,0.0,20.0,0.0,0.0,0.0,0.0,62.3,52.1,10.8,7.6,0.0,0.0,62.7,52.3,6.5,6.8,62.7,74.8,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.2,24.9,5553.7,0.0,0.0,0.0,0.0,57.8,0,53.4,0.0,0.0,0.0,0.0,0.0,40.2,0.0,5553.7,12.8,14.6,19.9,19.6,0.0,10.8,30000,1703.3,1669.6,1731.3,1658.4,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:15:17,72.9,0.0,20.0,0.0,0.0,0.0,0.0,62.3,52.2,10.8,7.6,0.0,0.0,62.8,52.4,6.5,6.8,62.9,74.8,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,40.3,24.9,5553.7,0.0,0.0,0.0,0.0,57.8,0,53.5,0.0,0.0,0.0,0.0,0.0,40.3,0.0,5553.7,12.8,14.6,19.9,19.6,0.0,10.8,30000,1703.3,1669.6,1731.4,1658.5,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:15:27,72.9,0.0,20.0,0.0,0.0,0.0,0.0,62.4,52.2,10.8,7.6,0.0,0.0,62.8,52.4,6.6,6.9,63.1,74.8,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.2,24.9,5553.7,0.0,0.0,0.0,0.0,57.8,0,53.5,0.0,0.0,0.0,0.0,0.0,40.2,0.0,5553.7,12.8,14.6,19.9,19.6,0.0,10.8,30000,1703.4,1669.6,1731.4,1658.6,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:15:37,72.9,0.0,20.0,0.0,0.0,0.0,0.0,62.4,52.2,10.8,7.6,0.0,0.0,62.9,52.4,6.6,6.8,63.3,74.9,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.2,24.9,5553.7,0.0,0.0,0.0,0.0,57.9,0,53.5,0.0,0.0,0.0,0.0,0.0,40.2,0.0,5553.7,12.8,14.6,19.9,19.5,0.0,10.8,30000,1703.4,1669.6,1731.5,1658.6,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:15:48,72.9,0.0,20.0,0.0,0.0,0.0,0.0,62.5,52.2,10.8,7.6,0.0,0.0,62.8,52.5,6.6,7.1,63.8,74.9,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.2,24.9,5553.7,0.0,0.0,0.0,0.0,57.9,0,53.5,0.0,0.0,0.0,0.0,0.0,40.2,0.0,5553.7,12.8,14.6,19.9,19.5,0.0,10.8,30000,1703.5,1669.6,1731.5,1658.7,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:15:58,72.9,0.0,20.0,0.0,0.0,0.0,0.0,62.5,52.2,10.8,7.6,0.0,0.0,62.9,52.6,6.6,7.1,63.5,74.9,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.2,24.9,5553.7,0.0,0.0,0.0,0.0,58.0,0,53.6,0.0,0.0,0.0,0.0,0.0,40.2,0.0,5553.7,12.8,14.6,19.9,19.5,0.0,10.8,30000,1703.5,1669.7,1731.5,1658.8,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:16:08,72.9,0.0,20.0,0.0,0.0,0.0,0.0,62.6,52.2,10.8,7.6,0.0,0.0,63.0,52.7,6.6,7.1,63.8,75.0,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,40.1,24.9,5553.7,0.0,0.0,0.0,0.0,58.0,0,53.6,0.0,0.0,0.0,0.0,0.0,40.1,0.0,5553.7,12.8,14.6,19.9,19.5,0.0,10.8,30000,1703.5,1669.7,1731.6,1658.8,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:16:18,72.9,0.0,20.0,0.0,0.0,0.0,0.0,62.6,52.3,10.8,7.6,0.0,0.0,62.9,52.7,6.8,7.5,64.2,75.0,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.2,24.9,5553.7,0.0,0.0,0.0,0.0,58.0,0,53.7,0.0,0.0,0.0,0.0,0.0,40.2,0.0,5553.7,12.8,14.6,19.9,19.5,0.0,10.8,30000,1703.5,1669.7,1731.6,1658.8,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:16:29,72.9,0.0,20.0,0.0,0.0,0.0,0.0,62.7,52.3,10.8,7.7,0.0,0.0,63.0,52.9,6.8,7.2,64.2,75.1,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,39.9,24.9,5553.7,0.0,0.0,0.0,0.0,58.1,0,53.7,0.0,0.0,0.0,0.0,0.0,39.9,0.0,5553.7,12.8,14.6,19.9,19.5,0.0,10.8,30000,1703.5,1669.7,1731.6,1658.9,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:16:39,72.9,0.0,20.0,0.0,0.0,0.0,0.0,62.7,52.3,10.9,7.7,0.0,0.0,63.1,52.9,6.7,7.0,64.2,75.0,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.0,24.9,5553.7,0.0,0.0,0.0,0.0,58.1,0,53.8,0.0,0.0,0.0,0.0,0.0,40.0,0.0,5553.7,12.7,14.6,19.9,19.5,0.0,10.8,30000,1703.5,1669.7,1731.6,1658.9,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:16:49,72.9,0.0,20.0,0.0,0.0,0.0,0.0,62.8,52.3,10.9,7.7,0.0,0.0,63.1,52.9,6.7,7.0,64.4,74.9,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.2,24.9,5553.7,0.0,0.0,0.0,0.0,58.1,0,53.8,0.0,0.0,0.0,0.0,0.0,40.2,0.0,5553.7,12.7,14.6,19.9,19.5,0.0,10.8,30000,1703.5,1669.7,1731.6,1658.9,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:17:00,72.9,0.0,20.0,0.0,0.0,0.0,0.0,62.8,52.3,10.9,7.7,0.0,0.0,63.1,53.0,6.8,6.9,64.4,74.8,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.7,24.9,5553.7,0.0,0.0,0.0,0.0,58.2,0,53.8,0.0,0.0,0.0,0.0,0.0,40.7,0.0,5553.7,12.7,14.5,19.9,19.5,0.0,10.8,30000,1703.5,1669.7,1731.6,1658.9,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:17:10,72.9,0.0,20.0,0.0,0.0,0.0,0.0,62.8,52.3,10.9,7.7,0.0,0.0,63.1,53.0,6.8,6.9,64.4,74.6,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,40.7,24.9,5553.7,0.0,0.0,0.0,0.0,58.1,0,53.7,0.0,0.0,0.0,0.0,0.0,40.7,0.0,5553.7,12.7,14.5,19.9,19.5,0.0,10.8,30000,1703.5,1669.7,1731.6,1658.9,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:17:20,72.9,0.0,20.0,0.0,0.0,0.0,0.0,62.9,52.4,10.9,7.7,0.0,0.0,63.2,53.1,6.7,6.9,64.4,74.5,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.8,24.9,5553.7,0.0,0.0,0.0,0.0,58.2,0,53.7,0.0,0.0,0.0,0.0,0.0,40.8,0.0,5553.7,12.7,14.5,19.9,19.5,0.0,10.8,30000,1703.5,1669.7,1731.6,1658.9,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:17:30,72.9,0.0,20.0,0.0,0.0,0.0,0.0,62.9,52.4,10.9,7.7,0.0,0.0,63.1,53.1,6.8,7.0,64.4,74.4,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.7,24.9,5553.7,0.0,0.0,0.0,0.0,58.2,0,53.6,0.0,0.0,0.0,0.0,0.0,40.7,0.0,5553.7,12.7,14.5,19.9,19.5,0.0,10.7,30000,1703.5,1669.7,1731.6,1658.9,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:17:41,72.9,0.0,20.0,0.0,0.0,0.0,0.0,62.9,52.4,10.9,7.7,0.0,0.0,63.1,53.2,6.8,7.1,64.6,74.3,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,41.0,24.9,5553.7,0.0,0.0,0.0,0.0,58.2,0,53.5,0.0,0.0,0.0,0.0,0.0,41.0,0.0,5553.7,12.7,14.5,19.9,19.5,0.0,10.8,30000,1703.5,1669.7,1731.6,1658.9,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:17:51,72.9,0.0,20.0,0.0,0.0,0.0,0.0,62.9,52.4,10.9,7.8,0.0,0.0,63.1,53.2,6.8,7.1,64.6,74.3,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,41.1,24.9,5553.7,0.0,0.0,0.0,0.0,58.2,0,53.5,0.0,0.0,0.0,0.0,0.0,41.1,0.0,5553.7,12.7,14.5,19.9,19.5,0.0,10.8,30000,1703.5,1669.7,1731.6,1658.9,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:18:01,72.9,0.0,20.0,0.0,0.0,0.0,0.0,62.9,52.4,10.9,7.8,0.0,0.0,63.1,53.3,6.8,7.1,64.6,74.3,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,41.2,24.9,5553.7,0.0,0.0,0.0,0.0,58.3,0,53.6,0.0,0.0,0.0,0.0,0.0,41.2,0.0,5553.7,12.7,14.5,19.9,19.5,0.0,10.7,30000,1703.5,1669.7,1731.6,1658.9,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:18:11,72.9,0.0,20.0,0.0,0.0,0.0,0.0,62.9,52.4,10.9,7.8,0.0,0.0,63.2,53.4,6.8,7.1,64.6,74.3,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,41.5,24.9,5553.7,0.0,0.0,0.0,0.0,58.3,0,53.7,0.0,0.0,0.0,0.0,0.0,41.5,0.0,5553.7,12.7,14.5,19.9,19.5,0.0,10.7,30000,1703.5,1669.7,1731.6,1658.9,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:18:22,72.9,0.0,20.0,0.0,0.0,0.0,0.0,62.9,52.4,10.9,7.8,0.0,0.0,63.2,53.4,6.8,7.0,64.8,74.3,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,41.5,24.9,5553.7,0.0,0.0,0.0,0.0,58.3,0,53.7,0.0,0.0,0.0,0.0,0.0,41.5,0.0,5553.7,12.6,14.5,19.9,19.5,0.0,10.8,30000,1703.6,1669.7,1731.6,1659.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:18:32,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.0,52.5,10.9,7.8,0.0,0.0,63.2,53.5,6.9,7.0,64.8,74.2,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,41.4,24.9,5553.7,0.0,0.0,0.0,0.0,58.4,0,53.7,0.0,0.0,0.0,0.0,0.0,41.4,0.0,5553.7,12.7,14.5,19.9,19.5,0.0,10.8,30000,1703.5,1669.7,1731.6,1659.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:18:42,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.0,52.5,10.9,7.8,0.0,0.0,63.2,53.6,6.9,7.0,64.8,74.1,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,41.6,24.9,5553.7,0.0,0.0,0.0,0.0,58.4,0,53.6,0.0,0.0,0.0,0.0,0.0,41.6,0.0,5553.7,12.7,14.5,19.9,19.5,0.0,10.7,30000,1703.5,1669.7,1731.6,1659.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:18:53,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.0,52.5,10.9,7.8,0.0,0.0,63.3,53.6,6.9,7.0,64.6,74.0,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,42.1,24.9,5553.7,0.0,0.0,0.0,0.0,58.4,0,53.6,0.0,0.0,0.0,0.0,0.0,42.1,0.0,5553.7,12.7,14.5,19.9,19.5,0.0,10.7,30000,1703.5,1669.7,1731.6,1659.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:19:03,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.0,52.5,10.9,7.9,0.0,0.0,63.3,53.7,6.9,7.0,64.6,73.8,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,42.1,24.9,5553.7,0.0,0.0,0.0,0.0,58.4,0,53.6,0.0,0.0,0.0,0.0,0.0,42.1,0.0,5553.7,12.7,14.5,19.9,19.6,0.0,10.7,30000,1703.5,1669.7,1731.6,1659.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:19:13,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.0,52.5,10.9,7.9,0.0,0.0,63.3,53.7,6.8,7.0,64.6,73.7,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,42.1,24.9,5553.7,0.0,0.0,0.0,0.0,58.4,0,53.5,0.0,0.0,0.0,0.0,0.0,42.1,0.0,5553.7,12.7,14.5,19.9,19.5,0.0,10.7,30000,1703.5,1669.7,1731.6,1659.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:19:23,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.0,52.6,10.9,7.9,0.0,0.0,63.3,53.7,6.8,7.0,64.4,73.6,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,42.2,24.9,5553.7,0.0,0.0,0.0,0.0,58.5,0,53.5,0.0,0.0,0.0,0.0,0.0,42.2,0.0,5553.7,12.7,14.5,19.9,19.5,0.0,10.7,30000,1703.5,1669.7,1731.6,1659.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:19:34,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.0,52.6,11.0,7.9,0.0,0.0,63.3,53.7,6.8,7.0,64.6,73.5,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,42.4,24.9,5553.7,0.0,0.0,0.0,0.0,58.4,0,53.5,0.0,0.0,0.0,0.0,0.0,42.4,0.0,5553.7,12.7,14.5,19.9,19.5,0.0,10.7,30000,1703.6,1669.7,1731.6,1659.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:19:44,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.0,52.6,11.0,7.9,0.0,0.0,63.2,53.7,6.8,7.1,64.6,73.5,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,42.4,24.9,5553.7,0.0,0.0,0.0,0.0,58.5,0,53.5,0.0,0.0,0.0,0.0,0.0,42.4,0.0,5553.7,12.6,14.5,19.9,19.5,0.0,10.7,30000,1703.5,1669.7,1731.6,1658.9,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:19:54,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.0,52.6,11.0,7.9,0.0,0.0,63.2,53.8,6.9,7.1,64.6,73.5,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,42.5,24.9,5553.7,0.0,0.0,0.0,0.0,58.5,0,53.5,0.0,0.0,0.0,0.0,0.0,42.5,0.0,5553.7,12.6,14.5,19.9,19.5,0.0,10.7,30000,1703.5,1669.7,1731.6,1659.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:20:04,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.0,52.6,11.0,7.9,0.0,0.0,63.3,53.9,6.8,7.1,64.6,73.6,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,42.5,24.9,5553.7,0.0,0.0,0.0,0.0,58.5,0,53.5,0.0,0.0,0.0,0.0,0.0,42.5,0.0,5553.7,12.6,14.5,19.9,19.5,0.0,10.7,30000,1703.5,1669.7,1731.6,1659.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:20:15,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.1,52.7,11.0,7.9,0.0,0.0,63.3,53.9,6.8,7.1,64.6,73.6,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,42.7,24.9,5553.7,0.0,0.0,0.0,0.0,58.5,0,53.5,0.0,0.0,0.0,0.0,0.0,42.7,0.0,5553.7,12.6,14.5,19.9,19.5,0.0,10.7,30000,1703.5,1669.7,1731.6,1659.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:20:25,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.1,52.7,11.0,7.9,0.0,0.0,63.4,53.9,6.8,7.1,64.6,73.6,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,42.8,24.9,5553.7,0.0,0.0,0.0,0.0,58.5,0,53.5,0.0,0.0,0.0,0.0,0.0,42.8,0.0,5553.7,12.6,14.5,19.9,19.5,0.0,10.7,30000,1703.5,1669.7,1731.6,1659.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:20:35,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.1,52.7,11.0,7.9,0.0,0.0,63.4,53.9,6.8,7.1,64.6,73.6,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,42.8,24.9,5553.7,0.0,0.0,0.0,0.0,58.5,0,53.6,0.0,0.0,0.0,0.0,0.0,42.8,0.0,5553.7,12.6,14.5,19.9,19.5,0.0,10.7,30000,1703.5,1669.9,1731.6,1659.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:20:45,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.1,52.7,11.0,7.9,0.0,0.0,63.4,54.0,6.8,7.1,64.6,73.6,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,43.1,24.9,5553.7,0.0,0.0,0.0,0.0,58.5,0,53.6,0.0,0.0,0.0,0.0,0.0,43.1,0.0,5553.7,12.5,14.5,19.9,19.6,0.0,10.7,30000,1703.5,1669.9,1731.6,1659.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:20:56,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.1,52.8,11.0,7.9,0.0,0.0,63.4,54.0,6.8,7.1,64.8,73.7,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,43.0,24.9,5553.7,0.0,0.0,0.0,0.0,58.5,0,53.6,0.0,0.0,0.0,0.0,0.0,43.0,0.0,5553.7,12.5,14.5,19.9,19.6,0.0,10.7,30000,1703.6,1669.9,1731.6,1659.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:21:06,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.2,52.8,11.0,7.9,0.0,0.0,63.4,54.1,6.9,7.1,64.8,73.7,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,43.0,24.9,5553.7,0.0,0.0,0.0,0.0,58.5,0,53.6,0.0,0.0,0.0,0.0,0.0,43.0,0.0,5553.7,12.5,14.5,19.9,19.5,0.0,10.7,30000,1703.5,1669.9,1731.6,1659.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:21:16,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.2,52.8,11.0,7.9,0.0,0.0,63.4,54.1,6.9,7.1,64.8,73.7,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,43.0,24.9,5553.7,0.0,0.0,0.0,0.0,58.5,0,53.7,0.0,0.0,0.0,0.0,0.0,43.0,0.0,5553.7,12.5,14.5,19.9,19.5,0.0,10.7,30000,1703.5,1669.9,1731.6,1659.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:21:26,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.2,52.8,11.0,7.9,0.0,0.0,63.5,54.1,6.9,7.1,64.6,73.7,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,43.0,24.9,5553.7,0.0,0.0,0.0,0.0,58.6,0,53.7,0.0,0.0,0.0,0.0,0.0,43.0,0.0,5553.7,12.5,14.5,19.9,19.6,0.0,10.7,30000,1703.6,1669.9,1731.6,1659.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:21:37,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.2,52.9,11.0,7.9,0.0,0.0,63.5,54.2,6.9,7.1,64.8,73.6,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,43.1,24.9,5553.7,0.0,0.0,0.0,0.0,58.6,0,53.7,0.0,0.0,0.0,0.0,0.0,43.1,0.0,5553.7,12.5,14.5,19.9,19.6,0.0,10.7,30000,1703.5,1669.9,1731.6,1659.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:21:47,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.2,52.9,11.0,7.9,0.0,0.0,63.5,54.2,6.9,7.1,64.6,73.6,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,43.4,24.9,5553.7,0.0,0.0,0.0,0.0,58.6,0,53.7,0.0,0.0,0.0,0.0,0.0,43.4,0.0,5553.7,12.5,14.5,19.9,19.5,0.0,10.6,30000,1703.5,1669.9,1731.6,1659.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:21:57,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.2,52.9,11.0,7.9,0.0,0.0,63.5,54.2,6.9,7.1,64.6,73.5,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,43.5,25.1,5553.7,0.0,0.0,0.0,0.0,58.6,0,53.7,0.0,0.0,0.0,0.0,0.0,43.5,0.0,5553.7,12.5,14.5,19.9,19.5,0.0,10.7,30000,1703.5,1669.9,1731.6,1659.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:22:07,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.2,52.9,11.0,7.9,0.0,0.0,63.5,54.2,6.9,7.1,64.4,73.4,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,43.3,25.3,5553.7,0.0,0.0,0.0,0.0,58.7,0,53.7,0.0,0.0,0.0,0.0,0.0,43.3,0.0,5553.7,12.5,14.5,19.9,19.6,0.0,10.7,30000,1703.6,1669.9,1731.6,1659.1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:22:18,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.2,52.9,11.0,7.9,0.0,0.0,63.5,54.2,6.8,7.1,64.6,73.4,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,43.2,25.4,5553.7,0.0,0.0,0.0,0.0,58.7,0,53.6,0.0,0.0,0.0,0.0,0.0,43.2,0.0,5553.7,12.5,14.5,19.9,19.5,0.0,10.6,30000,1703.5,1669.9,1731.6,1659.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:22:28,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.3,52.9,10.9,7.9,0.0,0.0,63.4,54.3,6.9,7.1,64.6,73.4,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,43.2,25.6,5553.7,0.0,0.0,0.0,0.0,58.7,0,53.7,0.0,0.0,0.0,0.0,0.0,43.2,0.0,5553.7,12.5,14.5,19.9,19.5,0.0,10.6,30000,1703.5,1669.7,1731.6,1659.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:22:38,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.3,52.9,10.9,7.9,0.0,0.0,63.4,54.3,6.9,7.2,64.6,73.5,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,43.3,25.7,5553.7,0.0,0.0,0.0,0.0,58.7,0,53.7,0.0,0.0,0.0,0.0,0.0,43.3,0.0,5553.7,12.5,14.5,19.9,19.5,0.0,10.6,30000,1703.5,1669.9,1731.6,1659.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:22:48,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.3,52.9,10.9,7.9,0.0,0.0,63.5,54.4,6.9,7.2,64.8,73.6,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,43.2,25.6,5553.7,0.0,0.0,0.0,0.0,58.7,0,53.8,0.0,0.0,0.0,0.0,0.0,43.2,0.0,5553.7,12.4,14.5,19.9,19.5,0.0,10.6,30000,1703.5,1669.9,1731.6,1659.1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:22:59,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.3,53.0,10.9,7.9,0.0,0.0,63.6,54.4,6.9,7.1,64.8,73.7,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,43.1,25.4,5553.7,0.0,0.0,0.0,0.0,58.7,0,53.8,0.0,0.0,0.0,0.0,0.0,43.1,0.0,5553.7,12.4,14.5,19.9,19.5,0.0,10.6,30000,1703.6,1669.9,1731.6,1659.1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:23:09,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.3,53.0,10.9,7.9,0.0,0.0,63.6,54.4,6.9,7.1,64.6,73.7,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,43.0,25.2,5553.7,0.0,0.0,0.0,0.0,58.8,0,53.8,0.0,0.0,0.0,0.0,0.0,43.0,0.0,5553.7,12.4,14.5,19.9,19.5,0.0,10.6,30000,1703.6,1669.9,1731.6,1659.1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:23:19,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.3,53.0,10.9,7.9,0.0,0.0,63.6,54.5,6.9,7.1,64.6,73.6,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,43.0,25.1,5553.7,0.0,0.0,0.0,0.0,58.8,0,53.8,0.0,0.0,0.0,0.0,0.0,43.0,0.0,5553.7,12.4,14.5,19.9,19.5,0.0,10.6,30000,1703.5,1669.9,1731.6,1659.1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:23:29,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.3,53.0,10.9,7.9,0.0,0.0,63.6,54.5,6.9,7.1,64.6,73.6,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,42.9,25.0,5553.7,0.0,0.0,0.0,0.0,58.8,0,53.9,0.0,0.0,0.0,0.0,0.0,42.9,0.0,5553.7,12.4,14.5,19.9,19.5,0.0,10.6,30000,1703.5,1669.9,1731.6,1659.1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:23:40,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.4,53.0,10.9,7.9,0.0,0.0,63.6,54.5,6.9,7.1,64.6,73.6,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,42.9,25.0,5553.7,0.0,0.0,0.0,0.0,58.9,0,53.9,0.0,0.0,0.0,0.0,0.0,42.9,0.0,5553.7,12.4,14.5,19.9,19.5,0.0,10.6,30000,1703.5,1669.9,1731.6,1659.1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:23:50,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.4,53.0,10.9,7.9,0.0,0.0,63.6,54.5,6.8,7.1,64.4,73.5,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,42.9,25.0,5553.7,0.0,0.0,0.0,0.0,58.9,0,53.9,0.0,0.0,0.0,0.0,0.0,42.9,0.0,5553.7,12.4,14.5,19.9,19.5,0.0,10.6,30000,1703.5,1669.9,1731.6,1659.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:24:00,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.4,53.0,10.9,7.9,0.0,0.0,63.5,54.5,6.9,7.2,64.6,73.5,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,42.8,25.1,5553.7,0.0,0.0,0.0,0.0,58.9,0,54.0,0.0,0.0,0.0,0.0,0.0,42.8,0.0,5553.7,12.4,14.5,19.9,19.5,0.0,10.6,30000,1703.5,1669.9,1731.6,1659.1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:24:10,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.4,53.1,10.9,7.9,0.0,0.0,63.6,54.5,6.9,7.2,64.6,73.5,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,42.4,25.1,5553.7,0.0,0.0,0.0,0.0,58.9,0,54.0,0.0,0.0,0.0,0.0,0.0,42.4,0.0,5553.7,12.4,14.5,19.9,19.5,0.0,10.6,30000,1703.5,1669.9,1731.6,1659.1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:24:21,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.4,53.1,10.9,7.9,0.0,0.0,63.6,54.6,6.9,7.2,64.8,73.7,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,42.4,25.1,5553.7,0.0,0.0,0.0,0.0,59.0,0,54.0,0.0,0.0,0.0,0.0,0.0,42.4,0.0,5553.7,12.4,14.5,19.9,19.5,0.0,10.6,30000,1703.5,1669.9,1731.6,1659.1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:24:31,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.4,53.1,10.9,7.9,0.0,0.0,63.6,54.6,6.9,7.1,64.8,73.7,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,42.6,25.1,5553.7,0.0,0.0,0.0,0.0,59.0,0,54.0,0.0,0.0,0.0,0.0,0.0,42.6,0.0,5553.7,12.4,14.5,19.9,19.5,0.0,10.6,30000,1703.5,1669.9,1731.6,1659.1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:24:41,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.4,53.1,10.9,7.9,0.0,0.0,63.7,54.6,6.9,7.1,64.8,73.8,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,42.6,25.1,5553.7,0.0,0.0,0.0,0.0,59.0,0,54.1,0.0,0.0,0.0,0.0,0.0,42.6,0.0,5553.7,12.4,14.5,19.9,19.5,0.0,10.6,30000,1703.5,1669.9,1731.6,1659.1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:24:51,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.4,53.1,10.9,7.9,0.0,0.0,63.7,54.6,6.9,7.1,64.6,73.7,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,42.8,25.1,5553.7,0.0,0.0,0.0,0.0,59.1,0,54.2,0.0,0.0,0.0,0.0,0.0,42.8,0.0,5553.7,12.4,14.5,19.9,19.5,0.0,10.6,30000,1703.5,1669.9,1731.6,1659.1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:25:02,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.4,53.1,10.9,7.9,0.0,0.0,63.7,54.6,6.9,7.1,64.6,73.6,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,42.8,25.1,5553.7,0.0,0.0,0.0,0.0,59.1,0,54.2,0.0,0.0,0.0,0.0,0.0,42.8,0.0,5553.7,12.4,14.5,19.9,19.5,0.0,10.6,30000,1703.5,1669.9,1731.6,1659.1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:25:12,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.4,53.1,10.9,7.9,0.0,0.0,63.7,54.7,6.8,7.1,64.6,73.6,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,42.7,25.1,5553.7,0.0,0.0,0.0,0.0,59.1,0,54.3,0.0,0.0,0.0,0.0,0.0,42.7,0.0,5553.7,12.4,14.5,19.9,19.5,0.0,10.6,30000,1703.5,1669.9,1731.6,1659.1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:25:22,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.5,53.1,10.9,7.9,0.0,0.0,63.7,54.7,6.8,7.1,64.4,73.5,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,42.4,25.1,5553.7,0.0,0.0,0.0,0.0,59.2,0,54.3,0.0,0.0,0.0,0.0,0.0,42.4,0.0,5553.7,12.4,14.5,19.9,19.5,0.0,10.6,30000,1703.5,1669.9,1731.6,1659.1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:25:33,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.5,53.2,10.9,7.9,0.0,0.0,63.6,54.6,6.8,7.1,64.6,73.5,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,42.7,25.1,5553.7,0.0,0.0,0.0,0.0,59.2,0,54.3,0.0,0.0,0.0,0.0,0.0,42.7,0.0,5553.7,12.4,14.5,19.9,19.5,0.0,10.6,30000,1703.6,1669.9,1731.6,1659.1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:25:43,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.5,53.2,10.9,7.9,0.0,0.0,63.6,54.6,6.8,7.1,64.6,73.6,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,42.8,25.1,5553.7,0.0,0.0,0.0,0.0,59.3,0,54.3,0.0,0.0,0.0,0.0,0.0,42.8,0.0,5553.7,12.4,14.5,19.9,19.5,0.0,10.6,30000,1703.6,1669.9,1731.6,1659.1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:25:53,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.5,53.2,10.9,7.9,0.0,0.0,63.6,54.6,6.8,7.2,64.6,73.6,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,43.0,25.1,5553.7,0.0,0.0,0.0,0.0,59.3,0,54.3,0.0,0.0,0.0,0.0,0.0,43.0,0.0,5553.7,12.4,14.5,19.9,19.5,0.0,10.6,30000,1703.5,1669.9,1731.6,1659.1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:26:03,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.5,53.2,10.9,7.9,0.0,0.0,63.6,54.7,6.8,7.2,64.8,73.7,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,42.9,25.1,5553.7,0.0,0.0,0.0,0.0,59.3,0,54.3,0.0,0.0,0.0,0.0,0.0,42.9,0.0,5553.7,12.4,14.5,19.9,19.5,0.0,10.6,30000,1703.5,1669.9,1731.6,1659.1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:26:14,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.5,53.2,10.9,7.9,0.0,0.0,63.6,54.7,6.9,7.2,64.8,73.8,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,42.9,25.1,5553.7,0.0,0.0,0.0,0.0,59.4,0,54.2,0.0,0.0,0.0,0.0,0.0,42.8,0.0,5553.7,12.3,14.5,19.9,19.6,0.0,10.5,30000,1703.5,1669.9,1731.6,1659.1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:26:24,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.5,53.2,10.9,7.9,0.0,0.0,63.7,54.7,6.8,7.1,64.8,73.9,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,42.9,25.1,5553.7,0.0,0.0,0.0,0.0,59.4,0,54.2,0.0,0.0,0.0,0.0,0.0,42.9,0.0,5553.7,12.3,14.5,19.9,19.5,0.0,10.6,30000,1703.5,1669.9,1731.6,1659.1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:26:34,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.5,53.2,10.9,7.9,0.0,0.0,63.7,54.7,6.8,7.1,64.6,73.8,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,42.8,25.1,5553.7,0.0,0.0,0.0,0.0,59.4,0,54.3,0.0,0.0,0.0,0.0,0.0,42.8,0.0,5553.7,12.3,14.5,19.9,19.5,0.0,10.6,30000,1703.5,1669.9,1731.6,1659.1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:26:44,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.5,53.2,10.9,7.9,0.0,0.0,63.8,54.8,6.8,7.1,64.6,73.7,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,43.0,25.1,5553.7,0.0,0.0,0.0,0.0,59.4,0,54.3,0.0,0.0,0.0,0.0,0.0,43.0,0.0,5553.7,12.3,14.5,19.9,19.5,0.0,10.6,30000,1703.5,1669.9,1731.6,1659.1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:26:55,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.5,53.2,10.8,7.9,0.0,0.0,63.8,54.8,6.8,7.1,64.4,73.7,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,43.1,25.1,5553.7,0.0,0.0,0.0,0.0,59.5,0,54.4,0.0,0.0,0.0,0.0,0.0,43.1,0.0,5553.7,12.3,14.5,19.9,19.5,0.0,10.5,30000,1703.5,1669.9,1731.6,1659.2,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:27:05,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.5,53.3,10.8,7.9,0.0,0.0,63.9,54.8,6.8,7.0,64.4,73.6,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,43.1,25.1,5553.7,0.0,0.0,0.0,0.0,59.5,0,54.4,0.0,0.0,0.0,0.0,0.0,43.1,0.0,5553.7,12.3,14.5,19.9,19.5,0.0,10.5,30000,1703.6,1669.9,1731.6,1659.2,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:27:15,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.5,53.3,10.8,7.8,0.0,0.0,63.9,54.8,6.8,7.0,64.2,73.6,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,43.1,25.2,5553.7,0.0,0.0,0.0,0.0,59.5,0,54.5,0.0,0.0,0.0,0.0,0.0,43.1,0.0,5553.7,12.3,14.5,19.9,19.5,0.0,10.5,30000,1703.6,1669.9,1731.6,1659.2,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:27:26,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.6,53.3,10.8,7.8,0.0,0.0,63.9,54.9,6.8,7.1,64.2,73.6,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,43.1,25.2,5553.7,0.0,0.0,0.0,0.0,59.5,0,54.5,0.0,0.0,0.0,0.0,0.0,43.1,0.0,5553.7,12.3,14.5,19.9,19.6,0.0,10.5,30000,1703.5,1669.9,1731.6,1659.2,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:27:36,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.6,53.4,10.8,7.8,0.0,0.0,63.9,54.9,6.8,7.1,64.4,73.6,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,43.1,25.2,5553.7,0.0,0.0,0.0,0.0,59.5,0,54.6,0.0,0.0,0.0,0.0,0.0,43.1,0.0,5553.7,12.3,14.5,19.9,19.5,0.0,10.5,30000,1703.5,1670.0,1731.6,1659.2,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:27:46,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.6,53.4,10.8,7.8,0.0,0.0,63.9,54.9,6.8,7.1,64.4,73.7,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,43.2,25.2,5553.7,0.0,0.0,0.0,0.0,59.6,0,54.6,0.0,0.0,0.0,0.0,0.0,43.2,0.0,5553.7,12.3,14.5,19.9,19.5,0.0,10.5,30000,1703.5,1669.9,1731.6,1659.2,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:27:56,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.6,53.4,10.8,7.8,0.0,0.0,63.9,55.0,6.8,7.1,64.6,73.8,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,43.1,25.2,5553.7,0.0,0.0,0.0,0.0,59.6,0,54.7,0.0,0.0,0.0,0.0,0.0,43.1,0.0,5553.7,12.3,14.5,19.9,19.5,0.0,10.5,30000,1703.5,1669.9,1731.6,1659.2,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:28:07,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.6,53.4,10.8,7.8,0.0,0.0,63.9,55.0,6.8,7.1,64.6,74.0,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,43.0,25.2,5553.7,0.0,0.0,0.0,0.0,59.6,0,54.7,0.0,0.0,0.0,0.0,0.0,43.0,0.0,5553.7,12.3,14.5,19.9,19.5,0.0,10.5,30000,1703.5,1670.0,1731.6,1659.2,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:28:17,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.7,53.4,10.8,7.8,0.0,0.0,63.9,55.0,6.8,7.1,64.6,74.0,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,42.9,25.2,5553.7,0.0,0.0,0.0,0.0,59.6,0,54.7,0.0,0.0,0.0,0.0,0.0,42.9,0.0,5553.7,12.4,14.5,19.9,19.5,0.0,10.5,30000,1703.5,1669.9,1731.6,1659.2,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:28:27,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.7,53.4,10.8,7.8,0.0,0.0,63.9,54.9,6.8,7.1,64.6,74.1,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,43.0,25.2,5553.7,0.0,0.0,0.0,0.0,59.6,0,54.7,0.0,0.0,0.0,0.0,0.0,43.0,0.0,5553.7,12.4,14.5,19.9,19.5,0.0,10.5,30000,1703.5,1670.0,1731.6,1659.2,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:28:37,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.7,53.4,10.8,7.8,0.0,0.0,63.9,54.9,6.8,7.1,64.6,74.1,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,42.7,25.2,5553.7,0.0,0.0,0.0,0.0,59.7,0,54.7,0.0,0.0,0.0,0.0,0.0,42.7,0.0,5553.7,12.4,14.5,19.9,19.6,0.0,10.5,30000,1703.5,1670.0,1731.6,1659.2,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:28:48,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.7,53.4,10.8,7.8,0.0,0.0,63.9,55.0,6.9,7.1,64.6,74.1,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,42.7,25.2,5553.7,0.0,0.0,0.0,0.0,59.7,0,54.8,0.0,0.0,0.0,0.0,0.0,42.7,0.0,5553.7,12.3,14.5,19.9,19.6,0.0,10.5,30000,1703.5,1670.0,1731.6,1659.2,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:28:58,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.7,53.4,10.8,7.8,0.0,0.0,64.0,55.1,6.8,7.0,64.6,74.1,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,42.9,25.2,5553.7,0.0,0.0,0.0,0.0,59.7,0,54.8,0.0,0.0,0.0,0.0,0.0,42.9,0.0,5553.7,12.3,14.5,19.9,19.6,0.0,10.5,30000,1703.6,1670.0,1731.6,1659.2,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:29:08,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.7,53.4,10.8,7.8,0.0,0.0,64.0,55.1,6.8,7.0,64.4,74.0,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,43.0,25.3,5553.7,0.0,0.0,0.0,0.0,59.7,0,54.9,0.0,0.0,0.0,0.0,0.0,43.0,0.0,5553.7,12.3,14.5,19.9,19.5,0.0,10.5,30000,1703.5,1670.0,1731.6,1659.2,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:29:18,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.7,53.5,10.8,7.8,0.0,0.0,64.0,55.1,6.8,7.0,64.4,73.8,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,42.9,25.3,5553.7,0.0,0.0,0.0,0.0,59.7,0,55.0,0.0,0.0,0.0,0.0,0.0,42.9,0.0,5553.7,12.3,14.5,19.9,19.6,0.0,10.5,30000,1703.5,1670.0,1731.6,1659.2,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:29:29,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.7,53.5,10.8,7.8,0.0,0.0,64.1,55.1,6.8,7.0,64.2,73.7,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,43.0,25.3,5553.7,0.0,0.0,0.0,0.0,59.8,0,55.0,0.0,0.0,0.0,0.0,0.0,43.0,0.0,5553.7,12.3,14.5,19.9,19.5,0.0,10.5,30000,1703.5,1670.0,1731.6,1659.2,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:29:39,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.7,53.5,10.8,7.8,0.0,0.0,64.1,55.1,6.8,7.0,64.2,73.7,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,43.0,25.3,5553.7,0.0,0.0,0.0,0.0,59.8,0,55.1,0.0,0.0,0.0,0.0,0.0,43.0,0.0,5553.7,12.3,14.5,19.9,19.5,0.0,10.5,30000,1703.6,1670.0,1731.6,1659.2,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:29:49,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.8,53.5,10.8,7.8,0.0,0.0,64.1,55.2,6.8,7.0,64.2,73.8,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,42.7,25.3,5553.7,0.0,0.0,0.0,0.0,59.8,0,55.1,0.0,0.0,0.0,0.0,0.0,42.7,0.0,5553.7,12.3,14.5,19.9,19.5,0.0,10.5,30000,1703.5,1670.0,1731.6,1659.2,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:29:59,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.8,53.6,10.8,7.8,0.0,0.0,64.1,55.3,6.8,7.1,64.2,73.9,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,42.6,25.3,5553.7,0.0,0.0,0.0,0.0,59.8,0,55.2,0.0,0.0,0.0,0.0,0.0,42.6,0.0,5553.7,12.2,14.5,19.9,19.5,0.0,10.5,30000,1703.5,1670.0,1731.6,1659.2,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:30:10,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.8,53.6,10.8,7.8,0.0,0.0,64.1,55.4,6.8,7.1,64.4,74.0,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,42.4,25.3,5553.7,0.0,0.0,0.0,0.0,59.8,0,55.2,0.0,0.0,0.0,0.0,0.0,42.4,0.0,5553.7,12.3,14.5,19.9,19.5,0.0,10.5,30000,1703.6,1670.0,1731.6,1659.2,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:30:20,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.8,53.6,10.8,7.8,0.0,0.0,64.1,55.4,6.8,7.1,64.4,74.1,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,42.3,25.3,5553.7,0.0,0.0,0.0,0.0,59.8,0,55.3,0.0,0.0,0.0,0.0,0.0,42.3,0.0,5553.7,12.2,14.5,19.9,19.5,0.0,10.5,30000,1703.5,1670.0,1731.6,1659.2,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:30:30,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.8,53.6,10.7,7.8,0.0,0.0,64.1,55.4,6.8,7.1,64.4,74.2,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,42.2,25.3,5553.7,0.0,0.0,0.0,0.0,59.9,0,55.4,0.0,0.0,0.0,0.0,0.0,42.2,0.0,5553.7,12.2,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.0,1731.6,1659.2,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:30:41,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.9,53.7,10.7,7.8,0.0,0.0,64.1,55.4,6.8,7.1,64.6,74.3,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,42.2,25.3,5553.7,0.0,0.0,0.0,0.0,59.9,0,55.4,0.0,0.0,0.0,0.0,0.0,42.2,0.0,5553.7,12.2,14.5,19.9,19.6,0.0,10.5,30000,1703.5,1670.0,1731.6,1659.3,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:30:51,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.9,53.7,10.7,7.8,0.0,0.0,64.2,55.5,6.8,7.1,64.4,74.3,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,42.2,25.3,5553.7,0.0,0.0,0.0,0.0,59.9,0,55.5,0.0,0.0,0.0,0.0,0.0,42.2,0.0,5553.7,12.2,14.5,19.9,19.5,0.0,10.5,30000,1703.6,1670.0,1731.6,1659.3,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:31:01,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.9,53.7,10.7,7.8,0.0,0.0,64.3,55.5,6.8,7.0,64.4,74.3,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,42.3,25.3,5553.7,0.0,0.0,0.0,0.0,59.9,0,55.7,0.0,0.0,0.0,0.0,0.0,42.3,0.0,5553.7,12.2,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.0,1731.6,1659.3,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:31:11,72.9,0.0,20.0,0.0,0.0,0.0,0.0,63.9,53.7,10.7,7.8,0.0,0.0,64.3,55.5,6.8,7.0,64.2,74.2,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,42.2,25.3,5553.7,0.0,0.0,0.0,0.0,59.9,0,55.8,0.0,0.0,0.0,0.0,0.0,42.2,0.0,5553.7,12.2,14.5,19.9,19.5,0.0,10.5,30000,1703.5,1670.0,1731.6,1659.3,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:31:22,72.9,0.0,20.0,0.0,0.0,0.0,0.0,64.0,53.7,10.7,7.8,0.0,0.0,64.3,55.5,6.7,7.0,64.2,74.1,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,42.2,25.3,5553.7,0.0,0.0,0.0,0.0,60.0,0,55.9,0.0,0.0,0.0,0.0,0.0,42.2,0.0,5553.7,12.2,14.5,19.9,19.5,0.0,10.4,30000,1703.6,1670.0,1731.6,1659.3,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:31:32,72.9,0.0,20.0,0.0,0.0,0.0,0.0,64.0,53.8,10.7,7.8,0.0,0.0,64.3,55.5,6.7,7.0,64.2,74.0,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,42.1,25.3,5553.7,0.0,0.0,0.0,0.0,60.0,0,56.0,0.0,0.0,0.0,0.0,0.0,42.1,0.0,5553.7,12.2,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.0,1731.6,1659.3,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:31:42,72.9,0.0,20.0,0.0,0.0,0.0,0.0,64.0,53.8,10.7,7.8,0.0,0.0,64.2,55.5,6.8,7.0,64.2,74.0,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,42.1,25.3,5553.7,0.0,0.0,0.0,0.0,60.0,0,56.1,0.0,0.0,0.0,0.0,0.0,42.1,0.0,5553.7,12.2,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.0,1731.6,1659.3,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:31:52,72.9,0.0,20.0,0.0,0.0,0.0,0.0,64.0,53.8,10.7,7.8,0.0,0.0,64.2,55.6,6.8,7.1,64.2,74.1,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,42.0,25.3,5553.7,0.0,0.0,0.0,0.0,60.0,0,56.2,0.0,0.0,0.0,0.0,0.0,42.0,0.0,5553.7,12.2,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.0,1731.6,1659.3,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:32:03,72.9,0.0,20.0,0.0,0.0,0.0,0.0,64.0,53.8,10.7,7.8,0.0,0.0,64.3,55.7,6.8,7.1,64.2,74.2,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,41.9,25.3,5553.7,0.0,0.0,0.0,0.0,60.0,0,56.3,0.0,0.0,0.0,0.0,0.0,41.9,0.0,5553.7,12.2,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.0,1731.6,1659.3,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:32:13,72.9,0.0,20.0,0.0,0.0,0.0,0.0,64.0,53.8,10.7,7.8,0.0,0.0,64.4,55.7,6.8,7.1,64.2,74.3,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,41.8,25.3,5553.7,0.0,0.0,0.0,0.0,60.0,0,56.4,0.0,0.0,0.0,0.0,0.0,41.8,0.0,5553.7,12.3,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.2,1731.6,1659.4,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:32:23,72.9,0.0,20.0,0.0,0.0,0.0,0.0,64.0,53.9,10.7,7.8,0.0,0.0,64.4,55.7,6.7,7.0,64.2,74.3,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,41.7,25.2,5553.7,0.0,0.0,0.0,0.0,60.0,0,56.6,0.0,0.0,0.0,0.0,0.0,41.7,0.0,5553.7,12.3,14.5,19.9,19.6,0.0,10.4,30000,1703.5,1670.2,1731.6,1659.4,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:32:33,72.9,0.0,20.0,0.0,0.0,0.0,0.0,64.1,53.9,10.7,7.8,0.0,0.0,64.4,55.7,6.7,7.0,64.2,74.3,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,41.7,25.2,5553.7,0.0,0.0,0.0,0.0,60.1,0,56.7,0.0,0.0,0.0,0.0,0.0,41.6,0.0,5553.7,12.3,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.2,1731.6,1659.3,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:32:44,72.9,0.0,20.0,0.0,0.0,0.0,0.0,64.1,53.9,10.7,7.8,0.0,0.0,64.4,55.8,6.8,7.0,64.2,74.3,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,41.6,25.2,5553.7,0.0,0.0,0.0,0.0,60.1,0,56.8,0.0,0.0,0.0,0.0,0.0,41.6,0.0,5553.7,12.3,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.2,1731.6,1659.4,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:32:54,72.9,0.0,20.0,0.0,0.0,0.0,0.0,64.1,53.9,10.7,7.8,0.0,0.0,64.4,55.8,6.8,7.0,64.2,74.3,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,41.5,25.2,5553.7,0.0,0.0,0.0,0.0,60.1,0,56.9,0.0,0.0,0.0,0.0,0.0,41.5,0.0,5553.7,12.3,14.5,19.9,19.6,0.0,10.4,30000,1703.6,1670.2,1731.6,1659.4,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:33:04,72.9,0.0,20.0,0.0,0.0,0.0,0.0,64.1,54.0,10.7,7.8,0.0,0.0,64.5,55.9,6.8,7.0,64.2,74.4,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,41.4,25.2,5553.7,0.0,0.0,0.0,0.0,60.1,0,57.0,0.0,0.0,0.0,0.0,0.0,41.4,0.0,5553.7,12.3,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.2,1731.6,1659.4,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:33:14,72.9,0.0,20.0,0.0,0.0,0.0,0.0,64.1,54.0,10.7,7.8,0.0,0.0,64.5,55.9,6.7,7.0,64.2,74.4,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,41.4,25.2,5553.7,0.0,0.0,0.0,0.0,60.1,0,57.1,0.0,0.0,0.0,0.0,0.0,41.4,0.0,5553.7,12.3,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.2,1731.6,1659.4,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:33:25,72.9,0.0,20.0,0.0,0.0,0.0,0.0,64.2,54.0,10.7,7.7,0.0,0.0,64.5,55.8,6.7,7.0,64.2,74.4,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,41.4,25.2,5553.7,0.0,0.0,0.0,0.0,60.1,0,57.2,0.0,0.0,0.0,0.0,0.0,41.3,0.0,5553.7,12.3,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.2,1731.6,1659.4,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:33:35,72.9,0.0,20.0,0.0,0.0,0.0,0.0,64.2,54.0,10.7,7.7,0.0,0.0,64.5,55.9,6.7,7.1,64.2,74.5,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,41.3,25.2,5553.7,0.0,0.0,0.0,0.0,60.1,0,57.3,0.0,0.0,0.0,0.0,0.0,41.3,0.0,5553.7,12.2,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.2,1731.6,1659.4,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:33:45,72.9,0.0,20.0,0.0,0.0,0.0,0.0,64.2,54.1,10.7,7.7,0.0,0.0,64.5,55.9,6.8,7.1,64.4,74.6,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,41.3,25.2,5553.7,0.0,0.0,0.0,0.0,60.1,0,57.4,0.0,0.0,0.0,0.0,0.0,41.3,0.0,5553.7,12.2,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.2,1731.6,1659.4,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:33:55,72.9,0.0,20.0,0.0,0.0,0.0,0.0,64.2,54.1,10.7,7.8,0.0,0.0,64.6,56.0,6.8,7.0,64.4,74.6,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,41.2,25.2,5553.7,0.0,0.0,0.0,0.0,60.2,0,57.5,0.0,0.0,0.0,0.0,0.0,41.2,0.0,5553.7,12.2,14.5,19.9,19.5,0.0,10.4,30000,1703.6,1670.2,1731.6,1659.5,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:34:06,72.9,0.0,20.0,0.0,0.0,0.0,0.0,64.2,54.1,10.6,7.8,0.0,0.0,64.6,56.0,6.7,7.0,64.2,74.7,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,41.1,25.2,5553.7,0.0,0.0,0.0,0.0,60.2,0,57.7,0.0,0.0,0.0,0.0,0.0,41.1,0.0,5553.7,12.2,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.2,1731.6,1659.5,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:34:16,72.9,0.0,20.0,0.0,0.0,0.0,0.0,64.3,54.1,10.6,7.8,0.0,0.0,64.7,56.0,6.7,7.0,64.0,74.6,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,41.0,25.1,5553.7,0.0,0.0,0.0,0.0,60.2,0,57.7,0.0,0.0,0.0,0.0,0.0,41.0,0.0,5553.7,12.2,14.5,19.9,19.6,0.0,10.4,30000,1703.5,1670.2,1731.6,1659.5,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:34:26,72.9,0.0,20.0,0.0,0.0,0.0,0.0,64.3,54.2,10.6,7.7,0.0,0.0,64.7,56.0,6.7,6.9,64.0,74.5,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.8,25.1,5553.7,0.0,0.0,0.0,0.0,60.2,0,57.8,0.0,0.0,0.0,0.0,0.0,40.8,0.0,5553.7,12.2,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.2,1731.6,1659.5,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:34:36,72.9,0.0,20.0,0.0,0.0,0.0,0.0,64.3,54.2,10.6,7.7,0.0,0.0,64.7,56.0,6.7,7.0,64.0,74.4,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,40.9,25.1,5553.7,0.0,0.0,0.0,0.0,60.2,0,57.9,0.0,0.0,0.0,0.0,0.0,40.9,0.0,5553.7,12.3,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.2,1731.6,1659.5,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:34:47,72.9,0.0,20.0,0.0,0.0,0.0,0.0,64.4,54.2,10.6,7.7,0.0,0.0,64.7,56.0,6.7,7.0,64.0,74.5,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,41.1,25.1,5553.7,0.0,0.0,0.0,0.0,60.2,0,57.9,0.0,0.0,0.0,0.0,0.0,41.1,0.0,5553.7,12.2,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.2,1731.6,1659.5,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:34:57,72.9,0.0,20.0,0.0,0.0,0.0,0.0,64.4,54.3,10.6,7.7,0.0,0.0,64.7,56.1,6.7,7.0,64.0,74.5,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,41.0,25.1,5553.7,0.0,0.0,0.0,0.0,60.3,0,57.9,0.0,0.0,0.0,0.0,0.0,41.0,0.0,5553.7,12.2,14.5,19.9,19.5,0.0,10.4,30000,1703.6,1670.2,1731.6,1659.5,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:35:07,72.9,0.0,20.0,0.0,0.0,0.0,0.0,64.4,54.3,10.6,7.7,0.0,0.0,64.7,56.2,6.7,7.0,64.0,74.6,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,41.0,25.1,5553.7,0.0,0.0,0.0,0.0,60.3,0,57.9,0.0,0.0,0.0,0.0,0.0,41.0,0.0,5553.7,12.2,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.2,1731.6,1659.5,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:35:17,72.9,0.0,20.0,0.0,0.0,0.0,0.0,64.4,54.3,10.6,7.7,0.0,0.0,64.8,56.3,6.8,7.0,64.0,74.7,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,41.2,25.1,5553.7,0.0,0.0,0.0,0.0,60.3,0,58.0,0.0,0.0,0.0,0.0,0.0,41.2,0.0,5553.7,12.2,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.4,1731.6,1659.5,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:35:28,72.9,0.0,20.0,0.0,0.0,0.0,0.0,64.4,54.3,10.6,7.7,0.0,0.0,64.8,56.3,6.8,7.0,64.0,74.7,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,41.3,25.1,5553.7,0.0,0.0,0.0,0.0,60.3,0,58.0,0.0,0.0,0.0,0.0,0.0,41.3,0.0,5553.7,12.2,14.5,19.9,19.6,0.0,10.4,30000,1703.5,1670.4,1731.6,1659.5,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:35:38,72.9,0.0,20.0,0.0,0.0,0.0,0.0,64.5,54.4,10.6,7.7,0.0,0.0,64.8,56.3,6.7,7.0,64.0,74.8,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,41.1,25.1,5553.7,0.0,0.0,0.0,0.0,60.3,0,58.0,0.0,0.0,0.0,0.0,0.0,41.1,0.0,5553.7,12.2,14.5,19.9,19.6,0.0,10.4,30000,1703.5,1670.4,1731.6,1659.5,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:35:48,72.9,0.0,20.0,0.0,0.0,0.0,0.0,64.5,54.4,10.6,7.7,0.0,0.0,64.9,56.4,6.8,7.0,64.0,74.8,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,41.2,25.1,5553.7,0.0,0.0,0.0,0.0,60.4,0,58.0,0.0,0.0,0.0,0.0,0.0,41.2,0.0,5553.7,12.2,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.4,1731.6,1659.6,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:35:58,72.9,0.0,20.0,0.0,0.0,0.0,0.0,64.5,54.5,10.6,7.7,0.0,0.0,65.1,56.5,6.7,7.0,63.8,74.7,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,41.2,25.1,5553.7,0.0,0.0,0.0,0.0,60.4,0,58.0,0.0,0.0,0.0,0.0,0.0,41.2,0.0,5553.7,12.1,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.4,1731.6,1659.6,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:36:09,72.9,0.0,20.0,0.0,0.0,0.0,0.0,64.6,54.5,10.6,7.7,0.0,0.0,65.1,56.6,6.7,7.0,63.8,74.7,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,41.3,25.1,5553.7,0.0,0.0,0.0,0.0,60.4,0,58.1,0.0,0.0,0.0,0.0,0.0,41.3,0.0,5553.7,12.2,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.4,1731.6,1659.6,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:36:19,72.9,0.0,20.0,0.0,0.0,0.0,0.0,64.6,54.6,10.6,7.7,0.0,0.0,65.1,56.7,6.7,7.1,64.0,74.8,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,41.2,25.1,5553.7,0.0,0.0,0.0,0.0,60.4,0,58.1,0.0,0.0,0.0,0.0,0.0,41.2,0.0,5553.7,12.1,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.4,1731.6,1659.6,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:36:29,72.9,0.0,20.0,0.0,0.0,0.0,0.0,64.7,54.6,10.6,7.7,0.0,0.0,65.2,56.8,6.8,7.1,63.8,75.0,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,41.1,25.1,5553.7,0.0,0.0,0.0,0.0,60.4,0,58.1,0.0,0.0,0.0,0.0,0.0,41.1,0.0,5553.7,12.1,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.5,1731.6,1659.7,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:36:39,72.9,0.0,20.0,0.0,0.0,0.0,0.0,64.7,54.7,10.6,7.7,0.0,0.0,65.3,56.9,6.7,7.0,63.8,75.1,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,41.0,25.1,5553.7,0.0,0.0,0.0,0.0,60.4,0,58.2,0.0,0.0,0.0,0.0,0.0,41.0,0.0,5553.7,12.2,14.5,19.9,19.6,0.0,10.4,30000,1703.5,1670.5,1731.6,1659.7,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:36:50,72.9,0.0,20.0,0.0,0.0,0.0,0.0,64.8,54.8,10.6,7.7,0.0,0.0,65.3,56.9,6.7,7.0,63.8,75.1,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,41.0,25.0,5553.7,0.0,0.0,0.0,0.0,60.4,0,58.3,0.0,0.0,0.0,0.0,0.0,41.0,0.0,5553.7,12.2,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.5,1731.6,1659.7,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:37:00,72.9,0.0,20.0,0.0,0.0,0.0,0.0,64.8,54.8,10.6,7.7,0.0,0.0,65.3,56.9,6.8,7.0,63.8,75.1,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.9,25.0,5553.7,0.0,0.0,0.0,0.0,60.5,0,58.3,0.0,0.0,0.0,0.0,0.0,40.9,0.0,5553.7,12.2,14.5,19.9,19.6,0.0,10.4,30000,1703.5,1670.5,1731.6,1659.7,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:37:10,72.9,0.0,20.0,0.0,0.0,0.0,0.0,64.9,54.8,10.6,7.7,0.0,0.0,65.4,57.1,6.8,7.0,63.8,75.2,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.8,25.1,5553.7,0.0,0.0,0.0,0.0,60.5,0,58.3,0.0,0.0,0.0,0.0,0.0,40.8,0.0,5553.7,12.2,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.5,1731.6,1659.8,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:37:20,72.9,0.0,20.0,0.0,0.0,0.0,0.0,64.9,54.9,10.6,7.7,0.0,0.0,65.4,57.1,6.7,7.0,63.8,75.2,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.8,25.1,5553.7,0.0,0.0,0.0,0.0,60.5,0,58.4,0.0,0.0,0.0,0.0,0.0,40.8,0.0,5553.7,12.2,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.5,1731.6,1659.7,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:37:31,72.9,0.0,20.0,0.0,0.0,0.0,0.0,65.0,55.0,10.6,7.7,0.0,0.0,65.4,57.2,6.8,7.0,63.8,75.3,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.7,25.1,5553.7,0.0,0.0,0.0,0.0,60.6,0,58.4,0.0,0.0,0.0,0.0,0.0,40.7,0.0,5553.7,12.2,14.5,19.9,19.6,0.0,10.4,30000,1703.5,1670.5,1731.6,1659.8,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:37:41,72.9,0.0,20.0,0.0,0.0,0.0,0.0,65.0,55.0,10.6,7.7,0.0,0.0,65.5,57.3,6.8,7.1,63.8,75.4,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.6,25.1,5553.7,0.0,0.0,0.0,0.0,60.6,0,58.4,0.0,0.0,0.0,0.0,0.0,40.6,0.0,5553.7,12.2,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.5,1731.6,1659.8,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:37:51,72.9,0.0,20.0,0.0,0.0,0.0,0.0,65.1,55.1,10.6,7.7,0.0,0.0,65.5,57.4,6.8,7.1,63.8,75.5,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.6,25.1,5553.7,0.0,0.0,0.0,0.0,60.6,0,58.5,0.0,0.0,0.0,0.0,0.0,40.6,0.0,5553.7,12.2,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.5,1731.6,1659.8,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:38:01,72.9,0.0,20.0,0.0,0.0,0.0,0.0,65.1,55.1,10.6,7.7,0.0,0.0,65.6,57.5,6.8,7.1,63.8,75.6,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.7,25.1,5553.7,0.0,0.0,0.0,0.0,60.6,0,58.5,0.0,0.0,0.0,0.0,0.0,40.7,0.0,5553.7,12.2,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.7,1731.6,1659.9,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:38:12,72.9,0.0,20.0,0.0,0.0,0.0,0.0,65.2,55.2,10.6,7.7,0.0,0.0,65.6,57.6,6.8,7.1,63.8,75.7,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.6,25.1,5553.7,0.0,0.0,0.0,0.0,60.6,0,58.6,0.0,0.0,0.0,0.0,0.0,40.6,0.0,5553.7,12.2,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.7,1731.6,1659.9,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:38:22,72.9,0.0,20.0,0.0,0.0,0.0,0.0,65.2,55.2,10.6,7.7,0.0,0.0,65.7,57.6,6.8,7.1,63.8,75.7,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.5,25.1,5553.7,0.0,0.0,0.0,0.0,60.6,0,58.6,0.0,0.0,0.0,0.0,0.0,40.5,0.0,5553.7,12.2,14.5,19.9,19.5,0.0,10.4,30000,1703.6,1670.7,1731.7,1659.9,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:38:32,72.9,0.0,20.0,0.0,0.0,0.0,0.0,65.3,55.3,10.6,7.7,0.0,0.0,65.7,57.6,6.8,7.1,64.0,75.8,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.5,25.2,5553.7,0.0,0.0,0.0,0.0,60.7,0,58.6,0.0,0.0,0.0,0.0,0.0,40.5,0.0,5553.7,12.1,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.7,1731.7,1659.9,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:38:42,72.9,0.0,20.0,0.0,0.0,0.0,0.0,65.3,55.4,10.5,7.7,0.0,0.0,65.8,57.7,6.8,7.1,64.0,75.8,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.5,25.2,5553.7,0.0,0.0,0.0,0.0,60.7,0,58.7,0.0,0.0,0.0,0.0,0.0,40.5,0.0,5553.7,12.1,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.7,1731.7,1660.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:38:53,72.9,0.0,20.0,0.0,0.0,0.0,0.0,65.4,55.4,10.5,7.8,0.0,0.0,65.9,57.8,6.8,7.1,63.8,75.9,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.3,25.2,5553.7,0.0,0.0,0.0,0.0,60.7,0,58.7,0.0,0.0,0.0,0.0,0.0,40.3,0.0,5553.7,12.1,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.7,1731.7,1660.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:39:03,72.9,0.0,20.0,0.0,0.0,0.0,0.0,65.5,55.5,10.5,7.8,0.0,0.0,65.9,57.8,6.8,7.1,64.0,75.9,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.4,25.2,5553.7,0.0,0.0,0.0,0.0,60.7,0,58.7,0.0,0.0,0.0,0.0,0.0,40.4,0.0,5553.7,12.1,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.7,1731.7,1660.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:39:13,72.9,0.0,20.0,0.0,0.0,0.0,0.0,65.5,55.5,10.5,7.8,0.0,0.0,65.9,57.9,6.8,7.1,64.0,75.9,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.4,25.2,5553.7,0.0,0.0,0.0,0.0,60.7,0,58.8,0.0,0.0,0.0,0.0,0.0,40.4,0.0,5553.7,12.1,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.7,1731.7,1660.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:39:24,72.9,0.0,20.0,0.0,0.0,0.0,0.0,65.6,55.6,10.5,7.8,0.0,0.0,65.9,57.9,6.8,7.1,64.0,75.9,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.3,25.1,5553.7,0.0,0.0,0.0,0.0,60.8,0,58.8,0.0,0.0,0.0,0.0,0.0,40.3,0.0,5553.7,12.1,14.5,19.9,19.6,0.0,10.4,30000,1703.5,1670.7,1731.7,1660.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:39:34,72.9,0.0,20.0,0.0,0.0,0.0,0.0,65.6,55.6,10.5,7.8,0.0,0.0,66.0,58.0,6.8,7.1,63.8,75.9,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.3,25.2,5553.7,0.0,0.0,0.0,0.0,60.8,0,58.8,0.0,0.0,0.0,0.0,0.0,40.3,0.0,5553.7,12.0,14.5,19.9,19.6,0.0,10.4,30000,1703.5,1670.7,1731.7,1660.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:39:44,72.9,0.0,20.0,0.0,0.0,0.0,0.0,65.6,55.7,10.5,7.8,0.0,0.0,66.1,58.0,6.8,7.1,63.8,76.0,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.2,25.2,5553.7,0.0,0.0,0.0,0.0,60.8,0,58.9,0.0,0.0,0.0,0.0,0.0,40.2,0.0,5553.7,12.0,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.8,1731.7,1660.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:39:54,72.9,0.0,20.0,0.0,0.0,0.0,0.0,65.7,55.7,10.5,7.8,0.0,0.0,66.1,58.0,6.8,7.0,63.5,75.9,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.1,25.2,5553.7,0.0,0.0,0.0,0.0,60.8,0,58.9,0.0,0.0,0.0,0.0,0.0,40.1,0.0,5553.7,12.0,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.8,1731.6,1660.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:40:05,72.9,0.0,20.0,0.0,0.0,0.0,0.0,65.7,55.8,10.5,7.8,0.0,0.0,66.1,58.0,6.7,7.0,63.5,75.9,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.0,25.2,5553.7,0.0,0.0,0.0,0.0,60.8,0,58.9,0.0,0.0,0.0,0.0,0.0,40.0,0.0,5553.7,12.0,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.7,1731.6,1660.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:40:15,72.9,0.0,20.0,0.0,0.0,0.0,0.0,65.8,55.8,10.5,7.8,0.0,0.0,66.1,58.0,6.8,7.1,63.5,75.8,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.0,25.2,5553.7,0.0,0.0,0.0,0.0,60.9,0,59.0,0.0,0.0,0.0,0.0,0.0,40.0,0.0,5553.7,12.0,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.7,1731.6,1660.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:40:25,72.9,0.0,20.0,0.0,0.0,0.0,0.0,65.8,55.8,10.5,7.8,0.0,0.0,66.1,58.0,6.8,7.1,63.5,75.8,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.0,25.1,5553.7,0.0,0.0,0.0,0.0,60.9,0,59.0,0.0,0.0,0.0,0.0,0.0,40.0,0.0,5553.7,12.0,14.5,19.9,19.5,0.0,10.3,30000,1703.5,1670.8,1731.6,1660.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:40:35,72.9,0.0,20.0,0.0,0.0,0.0,0.0,65.8,55.9,10.5,7.8,0.0,0.0,66.2,58.1,6.7,7.0,63.3,75.9,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.0,25.1,5553.7,0.0,0.0,0.0,0.0,60.9,0,59.0,0.0,0.0,0.0,0.0,0.0,40.0,0.0,5553.7,12.0,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.8,1731.7,1660.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:40:46,72.9,0.0,20.0,0.0,0.0,0.0,0.0,65.8,55.9,10.5,7.7,0.0,0.0,66.2,58.1,6.7,7.0,63.5,75.9,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,39.6,25.1,5553.7,0.0,0.0,0.0,0.0,60.9,0,59.0,0.0,0.0,0.0,0.0,0.0,39.6,0.0,5553.7,12.1,14.5,19.9,19.5,0.0,10.3,30000,1703.5,1670.8,1731.7,1660.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:40:56,72.9,0.0,20.0,0.0,0.0,0.0,0.0,65.9,56.0,10.5,7.7,0.0,0.0,66.2,58.2,6.7,7.1,63.5,75.9,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,39.9,25.1,5553.7,0.0,0.0,0.0,0.0,61.0,0,59.0,0.0,0.0,0.0,0.0,0.0,39.9,0.0,5553.7,12.1,14.5,19.9,19.5,0.0,10.3,30000,1703.5,1670.8,1731.7,1660.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:41:06,72.9,0.0,20.0,0.0,0.0,0.0,0.0,65.9,56.0,10.5,7.7,0.0,0.0,66.2,58.2,6.8,7.1,63.8,76.1,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.2,25.1,5553.7,0.0,0.0,0.0,0.0,61.0,0,58.8,0.0,0.0,0.0,0.0,0.0,40.2,0.0,5553.7,12.1,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.8,1731.7,1660.1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:41:16,72.9,0.0,20.0,0.0,0.0,0.0,0.0,65.9,56.0,10.5,7.7,0.0,0.0,66.2,58.2,6.8,7.1,63.5,76.2,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.1,25.1,5553.7,0.0,0.0,0.0,0.0,61.0,0,58.8,0.0,0.0,0.0,0.0,0.0,40.1,0.0,5553.7,12.1,14.5,19.9,19.5,0.0,10.3,30000,1703.5,1670.8,1731.7,1660.1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:41:27,72.9,0.0,20.0,0.0,0.0,0.0,0.0,65.9,56.0,10.5,7.7,0.0,0.0,66.3,58.2,6.8,7.0,63.5,76.2,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.5,25.1,5553.7,0.0,0.0,0.0,0.0,61.0,0,58.9,0.0,0.0,0.0,0.0,0.0,40.5,0.0,5553.7,12.1,14.5,19.9,19.5,0.0,10.3,30000,1703.5,1670.8,1731.7,1660.1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:41:37,72.9,0.0,20.0,0.0,0.0,0.0,0.0,66.0,56.1,10.5,7.8,0.0,0.0,66.3,58.2,6.7,7.0,63.5,76.2,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.6,25.1,5553.7,0.0,0.0,0.0,0.0,61.0,0,58.9,0.0,0.0,0.0,0.0,0.0,40.6,0.0,5553.7,12.1,14.5,19.9,19.5,0.0,10.3,30000,1703.5,1670.8,1731.7,1660.1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:41:47,72.9,0.0,20.0,0.0,0.0,0.0,0.0,66.0,56.1,10.5,7.7,0.0,0.0,66.2,58.2,6.7,7.0,63.8,76.2,0.0,0.0,0.0,0.0,0.0,17,0,0,0,0,0,0.0,40.9,25.1,5553.7,0.0,0.0,0.0,0.0,61.0,0,58.9,0.0,0.0,0.0,0.0,0.0,40.9,0.0,5553.7,12.1,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.8,1731.6,1660.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:41:57,72.9,0.0,20.0,0.0,0.0,0.0,0.0,66.0,56.1,10.5,7.7,0.0,0.0,66.1,58.1,6.7,7.0,63.8,76.2,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.8,25.1,5553.7,0.0,0.0,0.0,0.0,61.0,0,58.9,0.0,0.0,0.0,0.0,0.0,40.8,0.0,5553.7,12.1,14.5,19.9,19.5,0.0,10.3,30000,1703.5,1670.8,1731.6,1660.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:42:08,72.9,0.0,20.0,0.0,0.0,0.0,0.0,66.0,56.1,10.5,7.7,0.0,0.0,66.2,58.2,6.7,7.0,63.8,76.3,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.8,25.1,5553.7,0.0,0.0,0.0,0.0,61.1,0,58.8,0.0,0.0,0.0,0.0,0.0,40.8,0.0,5553.7,12.1,14.5,19.9,19.5,0.0,10.3,30000,1703.5,1670.8,1731.6,1660.1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:42:18,72.9,0.0,20.0,0.0,0.0,0.0,0.0,66.0,56.1,10.5,7.7,0.0,0.0,66.3,58.3,6.7,7.0,63.8,76.3,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.8,25.1,5553.7,0.0,0.0,0.0,0.0,61.1,0,58.8,0.0,0.0,0.0,0.0,0.0,40.8,0.0,5553.7,12.1,14.5,19.9,19.5,0.0,10.3,30000,1703.5,1670.8,1731.6,1660.1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:42:28,72.9,0.0,20.0,0.0,0.0,0.0,0.0,66.0,56.1,10.5,7.7,0.0,0.0,66.3,58.4,6.8,7.0,63.8,76.4,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.9,25.1,5553.7,0.0,0.0,0.0,0.0,61.1,0,58.8,0.0,0.0,0.0,0.0,0.0,40.9,0.0,5553.7,12.1,14.5,19.9,19.5,0.0,10.3,30000,1703.5,1670.8,1731.6,1660.1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:42:38,72.9,0.0,20.0,0.0,0.0,0.0,0.0,66.1,56.2,10.5,7.7,0.0,0.0,66.4,58.4,6.8,7.0,63.8,76.5,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.8,25.1,5553.7,0.0,0.0,0.0,0.0,61.2,0,58.9,0.0,0.0,0.0,0.0,0.0,40.8,0.0,5553.7,12.1,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.8,1731.6,1660.1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:42:49,72.9,0.0,20.0,0.0,0.0,0.0,0.0,66.1,56.2,10.5,7.8,0.0,0.0,66.4,58.4,6.8,7.0,64.0,76.5,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.6,25.1,5553.7,0.0,0.0,0.0,0.0,61.2,0,58.9,0.0,0.0,0.0,0.0,0.0,40.6,0.0,5553.7,12.1,14.5,19.9,19.6,0.0,10.3,30000,1703.5,1670.8,1731.6,1660.1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:42:59,72.9,0.0,20.0,0.0,0.0,0.0,0.0,66.1,56.2,10.5,7.8,0.0,0.0,66.4,58.5,6.8,7.1,64.0,76.6,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.5,25.1,5553.7,0.0,0.0,0.0,0.0,61.2,0,59.0,0.0,0.0,0.0,0.0,0.0,40.5,0.0,5553.7,12.1,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.8,1731.6,1660.1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:43:09,72.9,0.0,20.0,0.0,0.0,0.0,0.0,66.1,56.2,10.5,7.8,0.0,0.0,66.4,58.5,6.8,7.0,63.8,76.5,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.4,25.1,5553.7,0.0,0.0,0.0,0.0,61.2,0,59.0,0.0,0.0,0.0,0.0,0.0,40.4,0.0,5553.7,12.1,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.8,1731.6,1660.1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:43:19,72.9,0.0,20.0,0.0,0.0,0.0,0.0,66.2,56.3,10.5,7.8,0.0,0.0,66.5,58.5,6.8,7.0,63.5,76.4,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.3,25.1,5553.7,0.0,0.0,0.0,0.0,61.3,0,59.1,0.0,0.0,0.0,0.0,0.0,40.3,0.0,5553.7,12.1,14.5,19.9,19.5,0.0,10.3,30000,1703.5,1670.8,1731.6,1660.1,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:43:30,72.9,0.0,22.8,0.0,0.0,0.0,0.0,66.2,56.3,10.5,7.8,0.0,0.0,66.5,58.5,6.7,7.0,63.3,76.2,0.0,0.0,0.0,0.0,0.0,18,0,0,0,0,0,0.0,40.3,25.1,5553.7,0.0,0.0,0.0,0.0,61.3,0,59.2,0.0,0.0,0.0,0.0,0.0,40.3,0.0,5553.7,12.0,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.8,1731.6,1660.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:43:40,72.9,0.0,22.8,0.0,0.0,0.0,0.0,66.2,56.3,10.5,7.8,0.0,0.0,66.0,58.5,6.7,7.0,64.0,76.1,0.0,0.0,0.0,0.0,0.0,19,0,0,0,0,0,0.0,40.3,25.1,5553.7,0.0,0.0,0.0,0.0,61.3,0,59.2,0.0,0.0,0.0,0.0,0.0,40.3,0.0,5553.7,12.0,14.5,19.9,19.5,0.0,10.3,30000,1703.5,1670.7,1731.6,1659.9,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:43:50,72.9,0.0,22.8,0.0,0.0,0.0,0.0,66.1,56.4,10.5,7.7,0.0,0.0,65.9,58.4,6.7,7.0,64.0,76.1,0.0,0.0,0.0,0.0,0.0,19,0,0,0,0,0,0.0,40.1,25.1,5553.7,0.0,0.0,0.0,0.0,61.4,0,59.2,0.0,0.0,0.0,0.0,0.0,40.1,0.0,5553.7,12.0,14.5,19.9,19.6,0.0,10.4,30000,1703.5,1670.7,1731.6,1659.9,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:44:00,72.9,0.0,22.8,0.0,0.0,0.0,0.0,66.0,56.4,10.5,7.7,0.0,0.0,65.9,58.3,6.7,7.0,64.0,76.1,0.0,0.0,0.0,0.0,0.0,19,0,0,0,0,0,0.0,40.1,25.1,5553.7,0.0,0.0,0.0,0.0,61.4,0,59.2,0.0,0.0,0.0,0.0,0.0,40.1,0.0,5553.7,12.0,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.7,1731.6,1659.9,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:44:11,72.9,0.0,22.8,0.0,0.0,0.0,0.0,65.8,56.4,10.5,7.7,0.0,0.0,65.9,58.2,6.7,6.9,64.0,76.1,0.0,0.0,0.0,0.0,0.0,19,0,0,0,0,0,0.0,39.9,25.1,5553.7,0.0,0.0,0.0,0.0,61.4,0,59.3,0.0,0.0,0.0,0.0,0.0,39.9,0.0,5553.7,12.0,14.5,19.9,19.5,0.0,10.3,30000,1703.5,1670.7,1731.6,1659.9,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:44:21,72.9,0.0,22.8,0.0,0.0,0.0,0.0,65.7,56.5,10.5,7.7,0.0,0.0,65.9,58.2,6.7,6.9,64.0,76.0,0.0,0.0,0.0,0.0,0.0,19,0,0,0,0,0,0.0,39.9,25.1,5553.7,0.0,0.0,0.0,0.0,61.5,0,59.4,0.0,0.0,0.0,0.0,0.0,39.9,0.0,5553.7,12.0,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.7,1731.6,1659.9,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:44:31,72.9,0.0,22.8,0.0,0.0,0.0,0.0,65.7,56.5,10.5,7.7,0.0,0.0,65.9,58.2,6.7,7.0,64.0,76.0,0.0,0.0,0.0,0.0,0.0,20,0,0,0,0,0,0.0,39.9,25.1,5553.7,0.0,0.0,0.0,0.0,61.5,0,59.4,0.0,0.0,0.0,0.0,0.0,39.9,0.0,5553.7,12.0,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.7,1731.6,1660.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:44:41,72.9,0.0,22.8,0.0,0.0,0.0,0.0,65.6,56.5,10.5,7.7,0.0,0.0,65.9,58.4,6.7,7.0,64.0,76.1,0.0,0.0,0.0,0.0,0.0,20,0,0,0,0,0,0.0,39.7,25.1,5553.7,0.0,0.0,0.0,0.0,61.5,0,59.4,0.0,0.0,0.0,0.0,0.0,39.7,0.0,5553.7,11.9,14.5,19.9,19.5,0.0,10.3,30000,1703.5,1670.7,1731.7,1660.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:44:52,72.9,0.0,22.8,0.0,0.0,0.0,0.0,65.6,56.6,10.5,7.7,0.0,0.0,66.0,58.4,6.7,7.0,64.2,76.2,0.0,0.0,0.0,0.0,0.0,19,0,0,0,0,0,0.0,39.6,25.1,5553.7,0.0,0.0,0.0,0.0,61.5,0,59.5,0.0,0.0,0.0,0.0,0.0,39.6,0.0,5553.7,12.0,14.5,19.9,19.5,0.0,10.3,30000,1703.6,1670.7,1731.7,1660.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:45:02,72.9,0.0,22.8,0.0,0.0,0.0,0.0,65.6,56.6,10.5,7.7,0.0,0.0,66.0,58.5,6.7,7.0,64.2,76.3,0.0,0.0,0.0,0.0,0.0,20,0,0,0,0,0,0.0,39.7,25.1,5553.7,0.0,0.0,0.0,0.0,61.5,0,59.6,0.0,0.0,0.0,0.0,0.0,39.7,0.0,5553.7,11.9,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.8,1731.6,1660.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:45:12,72.9,0.0,22.8,0.0,0.0,0.0,0.0,65.6,56.7,10.5,7.7,0.0,0.0,66.1,58.6,6.7,7.0,64.2,76.4,0.0,0.0,0.0,0.0,0.0,19,0,0,0,0,0,0.0,39.6,25.1,5553.7,0.0,0.0,0.0,0.0,61.6,0,59.6,0.0,0.0,0.0,0.0,0.0,39.6,0.0,5553.7,11.9,14.5,19.9,19.5,0.0,10.3,30000,1703.5,1670.8,1731.6,1660.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:45:23,72.9,0.0,22.8,0.0,0.0,0.0,0.0,65.6,56.7,10.5,7.7,0.0,0.0,66.1,58.6,6.7,7.0,64.2,76.4,0.0,0.0,0.0,0.0,0.0,20,0,0,0,0,0,0.0,39.6,25.1,5553.7,0.0,0.0,0.0,0.0,61.6,0,59.7,0.0,0.0,0.0,0.0,0.0,39.6,0.0,5553.7,12.0,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.8,1731.6,1660.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:45:33,72.9,0.0,22.8,0.0,0.0,0.0,0.0,65.7,56.7,10.5,7.7,0.0,0.0,66.2,58.7,6.7,7.0,64.2,76.4,0.0,0.0,0.0,0.0,0.0,19,0,0,0,0,0,0.0,39.5,25.1,5553.7,0.0,0.0,0.0,0.0,61.6,0,59.8,0.0,0.0,0.0,0.0,0.0,39.5,0.0,5553.7,12.0,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.8,1731.6,1660.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
2025-04-18 12:45:43,72.9,0.0,22.8,0.0,0.0,0.0,0.0,65.7,56.8,10.5,7.7,0.0,0.0,66.2,58.7,6.7,7.0,64.0,76.3,0.0,0.0,0.0,0.0,0.0,19,0,0,0,0,0,0.0,39.6,25.1,5553.7,0.0,0.0,0.0,0.0,61.6,0,59.8,0.0,0.0,0.0,0.0,0.0,39.6,0.0,5553.7,12.0,14.5,19.9,19.5,0.0,10.4,30000,1703.5,1670.8,1731.6,1660.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0
|
|
||||||
|
Binary file not shown.
Binary file not shown.
41
plot_data.py
41
plot_data.py
@@ -1,41 +0,0 @@
|
|||||||
# Neu laden nach Code-Reset
|
|
||||||
import pandas as pd
|
|
||||||
import matplotlib.pyplot as plt
|
|
||||||
|
|
||||||
# Pfad zur neu hochgeladenen Datei
|
|
||||||
file_path = "modbus_log.csv"
|
|
||||||
df_new = pd.read_csv(file_path)
|
|
||||||
|
|
||||||
# Zeitstempel in datetime konvertieren
|
|
||||||
df_new['Zeit'] = pd.to_datetime(df_new['Zeit'])
|
|
||||||
|
|
||||||
# Spaltenbezeichnungen für den Plot
|
|
||||||
registers = [
|
|
||||||
'10 - Gebäudeseite Wärmepumpe Vorlauf/Austritt (Warm)',
|
|
||||||
'11 - Gebäudeseite Wärmepumpe Rücklauf/Eintritt (Kalt)',
|
|
||||||
'12 - Umweltseite/Quelle Wärmepumpe Eintritt (Warm)',
|
|
||||||
'13 - Umweltseite/Quelle Wärmepumpe Austritt (Kalt)',
|
|
||||||
'50 - Rücklauftemperatur Direkterheizkreis oder Puffertemperatur',
|
|
||||||
'70 - Vorlauftemperatur Mischerkreis 1',
|
|
||||||
'150 - Trinkwarmwasserspiecher oben (Ein)',
|
|
||||||
'153 - Trinkwarmwasserspiecher unten (Aus)'
|
|
||||||
]
|
|
||||||
all_registers = ['300 - Aussentemperatur'] + registers
|
|
||||||
|
|
||||||
# Plot erzeugen
|
|
||||||
plt.figure(figsize=(14, 8))
|
|
||||||
|
|
||||||
for reg in all_registers:
|
|
||||||
plt.plot(df_new['Zeit'], df_new[reg], label=reg)
|
|
||||||
|
|
||||||
plt.title("Temperaturverläufe inkl. Außentemperatur (neue Daten)")
|
|
||||||
plt.xlabel("Zeit")
|
|
||||||
plt.ylabel("Temperatur (°C)")
|
|
||||||
plt.grid(True)
|
|
||||||
plt.tight_layout()
|
|
||||||
|
|
||||||
# Legende außerhalb des Plots platzieren
|
|
||||||
plt.legend(loc='center left', bbox_to_anchor=(1.0, 0.5))
|
|
||||||
plt.subplots_adjust(right=0.75)
|
|
||||||
|
|
||||||
plt.show()
|
|
||||||
117
pv_inverter.py
117
pv_inverter.py
@@ -1,117 +0,0 @@
|
|||||||
import time
|
|
||||||
import struct
|
|
||||||
import pandas as pd
|
|
||||||
import matplotlib.pyplot as plt
|
|
||||||
from collections import deque
|
|
||||||
from typing import Dict, Any, List, Tuple, Optional
|
|
||||||
from pymodbus.client import ModbusTcpClient
|
|
||||||
|
|
||||||
EXCEL_PATH = "modbus_registers/pv_inverter_registers.xlsx"
|
|
||||||
|
|
||||||
class PvInverter:
|
|
||||||
def __init__(self, device_name: str, ip_address: str, port: int = 502, unit: int = 1):
|
|
||||||
self.device_name = device_name
|
|
||||||
self.ip = ip_address
|
|
||||||
self.port = port
|
|
||||||
self.unit = unit
|
|
||||||
self.client: Optional[ModbusTcpClient] = None
|
|
||||||
self.registers: Dict[int, Dict[str, Any]] = {} # addr -> {"desc":..., "type":...}
|
|
||||||
self.connect_to_modbus()
|
|
||||||
self.load_registers(EXCEL_PATH)
|
|
||||||
|
|
||||||
# ---------- Verbindung ----------
|
|
||||||
def connect_to_modbus(self):
|
|
||||||
self.client = ModbusTcpClient(self.ip, port=self.port, timeout=3.0, retries=3)
|
|
||||||
if not self.client.connect():
|
|
||||||
print("❌ Verbindung zu Wechselrichter fehlgeschlagen.")
|
|
||||||
raise SystemExit(1)
|
|
||||||
print("✅ Verbindung zu Wechselrichter hergestellt.")
|
|
||||||
|
|
||||||
def close(self):
|
|
||||||
if self.client:
|
|
||||||
self.client.close()
|
|
||||||
self.client = None
|
|
||||||
|
|
||||||
# ---------- Register-Liste ----------
|
|
||||||
def load_registers(self, excel_path: str):
|
|
||||||
xls = pd.ExcelFile(excel_path)
|
|
||||||
df = xls.parse()
|
|
||||||
# Passen die Spaltennamen bei dir anders, bitte hier anpassen:
|
|
||||||
cols = ["MB Adresse", "Beschreibung", "Variabel Typ"]
|
|
||||||
for c in cols:
|
|
||||||
if c not in df.columns:
|
|
||||||
raise ValueError(f"Spalte '{c}' fehlt in {excel_path}")
|
|
||||||
df = df[cols].dropna()
|
|
||||||
df["MB Adresse"] = df["MB Adresse"].astype(int)
|
|
||||||
# NORMALISIERE TYP
|
|
||||||
def norm_type(x: Any) -> str:
|
|
||||||
s = str(x).strip().upper()
|
|
||||||
return "REAL" if s == "REAL" else "INT"
|
|
||||||
self.registers = {
|
|
||||||
int(row["MB Adresse"]): {
|
|
||||||
"desc": str(row["Beschreibung"]).strip(),
|
|
||||||
"type": norm_type(row["Variabel Typ"])
|
|
||||||
}
|
|
||||||
for _, row in df.iterrows()
|
|
||||||
}
|
|
||||||
print(f"ℹ️ {len(self.registers)} Register aus Excel geladen.")
|
|
||||||
|
|
||||||
# ---------- Low-Level Lesen ----------
|
|
||||||
def _try_read(self, fn_name: str, address: int, count: int) -> Optional[List[int]]:
|
|
||||||
fn = getattr(self.client, fn_name)
|
|
||||||
# pymodbus 3.8.x hat 'slave='; Fallbacks schaden nicht
|
|
||||||
for kwargs in (dict(address=address, count=count, slave=self.unit),
|
|
||||||
dict(address=address, count=count),
|
|
||||||
):
|
|
||||||
try:
|
|
||||||
res = fn(**kwargs)
|
|
||||||
if res is None or (hasattr(res, "isError") and res.isError()):
|
|
||||||
continue
|
|
||||||
return res.registers
|
|
||||||
except TypeError:
|
|
||||||
continue
|
|
||||||
return None
|
|
||||||
|
|
||||||
def _read_any(self, address: int, count: int) -> Optional[List[int]]:
|
|
||||||
regs = self._try_read("read_holding_registers", address, count)
|
|
||||||
if regs is None:
|
|
||||||
regs = self._try_read("read_input_registers", address, count)
|
|
||||||
return regs
|
|
||||||
|
|
||||||
# ---------- Decoding ----------
|
|
||||||
@staticmethod
|
|
||||||
def _to_i16(u16: int) -> int:
|
|
||||||
return struct.unpack(">h", struct.pack(">H", u16))[0]
|
|
||||||
|
|
||||||
@staticmethod
|
|
||||||
def _to_f32_from_two(u16_hi: int, u16_lo: int, msw_first: bool = True) -> float:
|
|
||||||
if msw_first:
|
|
||||||
b = struct.pack(">HH", u16_hi, u16_lo)
|
|
||||||
else:
|
|
||||||
b = struct.pack(">HH", u16_lo, u16_hi)
|
|
||||||
return struct.unpack(">f", b)[0]
|
|
||||||
|
|
||||||
def read_one(self, address_excel: int, rtype: str) -> Optional[float]:
|
|
||||||
"""Liest einen Wert nach Typ ('INT' oder 'REAL') unter Berücksichtigung Base-1."""
|
|
||||||
addr = address_excel
|
|
||||||
if rtype == "REAL":
|
|
||||||
regs = self._read_any(addr, 2)
|
|
||||||
if not regs or len(regs) < 2:
|
|
||||||
return None
|
|
||||||
return self._to_f32_from_two(regs[0], regs[1])
|
|
||||||
else: # INT
|
|
||||||
regs = self._read_any(addr, 1)
|
|
||||||
if not regs:
|
|
||||||
return None
|
|
||||||
return float(self._to_i16(regs[0]))
|
|
||||||
|
|
||||||
def get_state(self) -> Dict[str, Any]:
|
|
||||||
"""Liest ALLE Register aus self.registers und gibt dict zurück."""
|
|
||||||
data = {"Zeit": time.strftime("%Y-%m-%d %H:%M:%S")}
|
|
||||||
for address, meta in self.registers.items():
|
|
||||||
val = self.read_one(address, meta["type"])
|
|
||||||
if val is None:
|
|
||||||
continue
|
|
||||||
key = f"{address} - {meta['desc']}"
|
|
||||||
data[key] = val
|
|
||||||
return data
|
|
||||||
@@ -1,4 +1,3 @@
|
|||||||
pymodbus~=3.8.6
|
pymodbus~=3.8.6
|
||||||
pandas
|
pandas
|
||||||
openpyxl
|
openpyxl
|
||||||
sshtunnel
|
|
||||||
@@ -1,64 +0,0 @@
|
|||||||
import struct
|
|
||||||
|
|
||||||
from pymodbus.client import ModbusTcpClient
|
|
||||||
import pandas as pd
|
|
||||||
import time
|
|
||||||
|
|
||||||
class ShellyPro3m:
|
|
||||||
def __init__(self, device_name: str, ip_address: str, port: int=502):
|
|
||||||
self.device_name = device_name
|
|
||||||
self.ip = ip_address
|
|
||||||
self.port = port
|
|
||||||
self.client = None
|
|
||||||
self.connect_to_modbus()
|
|
||||||
self.registers = None
|
|
||||||
self.get_registers()
|
|
||||||
|
|
||||||
def connect_to_modbus(self):
|
|
||||||
port = self.port
|
|
||||||
self.client = ModbusTcpClient(self.ip, port=port)
|
|
||||||
try:
|
|
||||||
if not self.client.connect():
|
|
||||||
print("Verbindung zum Shelly-Logger fehlgeschlagen.")
|
|
||||||
exit(1)
|
|
||||||
print("Verbindung zum Shelly-Logger erfolgreich.")
|
|
||||||
except KeyboardInterrupt:
|
|
||||||
print("Beendet durch Benutzer (Ctrl+C).")
|
|
||||||
finally:
|
|
||||||
self.client.close()
|
|
||||||
|
|
||||||
def get_registers(self):
|
|
||||||
# Excel-Datei mit den Input-Registerinformationen
|
|
||||||
excel_path = "modbus_registers/shelly_pro_3m_registers.xlsx"
|
|
||||||
xls = pd.ExcelFile(excel_path)
|
|
||||||
df_input_registers = xls.parse()
|
|
||||||
|
|
||||||
# Relevante Spalten bereinigen
|
|
||||||
df_clean = df_input_registers[['MB Adresse', 'Beschreibung', 'Variabel Typ']].dropna()
|
|
||||||
df_clean['MB Adresse'] = df_clean['MB Adresse'].astype(int)
|
|
||||||
|
|
||||||
# Dictionary aus Excel erzeugen
|
|
||||||
self.registers = {
|
|
||||||
row['MB Adresse']: {
|
|
||||||
'desc': row['Beschreibung'],
|
|
||||||
'type': 'REAL' if row['Variabel Typ'] == 'REAL' else 'INT'
|
|
||||||
}
|
|
||||||
for _, row in df_clean.iterrows()
|
|
||||||
}
|
|
||||||
|
|
||||||
def get_state(self):
|
|
||||||
data = {}
|
|
||||||
data['Zeit'] = time.strftime('%Y-%m-%d %H:%M:%S')
|
|
||||||
for address, info in self.registers.items():
|
|
||||||
reg_type = info['type']
|
|
||||||
result = self.client.read_input_registers(address, count=2 if reg_type == 'REAL' else 1)
|
|
||||||
if result.isError():
|
|
||||||
print(f"Fehler beim Lesen von Adresse {address}: {result}")
|
|
||||||
continue
|
|
||||||
|
|
||||||
packed = struct.pack(">HH", result.registers[1], result.registers[0])
|
|
||||||
value = round(struct.unpack(">f", packed)[0], 2)
|
|
||||||
|
|
||||||
print(f"Adresse {address} - {info['desc']}: {value}")
|
|
||||||
data[f"{address} - {info['desc']}"] = value
|
|
||||||
return data
|
|
||||||
507
terminal_log
507
terminal_log
@@ -1,507 +0,0 @@
|
|||||||
nohup: ignoring input
|
|
||||||
Verbindung zur Wärmepumpe erfolgreich.
|
|
||||||
Adresse 0 - Primärpumpe: 78.6
|
|
||||||
Adresse 1 - Ventilator: 0.0
|
|
||||||
Adresse 2 - Ladepumpe: 20.0
|
|
||||||
Adresse 3 - Ladepumpe Kühlen: 0.0
|
|
||||||
Adresse 4 - Boilerpumpe: 0.0
|
|
||||||
Adresse 5 - Magroladepumpe 0-100%: 0.0
|
|
||||||
Adresse 6 - Kondensator Ventil: 0.0
|
|
||||||
Adresse 10 - Gebäudeseite Wärmepumpe Vorlauf/Austritt (Warm): 65.5
|
|
||||||
Adresse 11 - Gebäudeseite Wärmepumpe Rücklauf/Eintritt (Kalt): 55.4
|
|
||||||
Adresse 12 - Umweltseite/Quelle Wärmepumpe Eintritt (Warm): 10.8
|
|
||||||
Adresse 13 - Umweltseite/Quelle Wärmepumpe Austritt (Kalt): 8.1
|
|
||||||
Adresse 14 - Luftmodul.1 Lufteintritttemperatur: 0.0
|
|
||||||
Adresse 15 - Luftmodul.1 Lamellentemperatur: 0.0
|
|
||||||
Adresse 20 - Kondensationstemperatur: 66.0
|
|
||||||
Adresse 21 - Flüssigkeitstemperatur: 57.4
|
|
||||||
Adresse 22 - Verdampfunstemperatur: 7.1
|
|
||||||
Adresse 23 - Sauggastemperatur: 7.4
|
|
||||||
Adresse 32 - Expansionsventil A Öffnungsgrad: 64.6
|
|
||||||
Adresse 24 - Heisgastemperatur: 75.7
|
|
||||||
Adresse 28 - Verdampfungstemperatur Verdichter 2 bei CPV: 0.0
|
|
||||||
Adresse 25 - Sauggastemperatur 2: 0.0
|
|
||||||
Adresse 33 - Expansionsventil B Öffnungsgrad: 0.0
|
|
||||||
Adresse 26 - Grundwassertemperatur VL (Warm): 0.0
|
|
||||||
Adresse 27 - Grundwassertemperatur RL (Kalt): 0.0
|
|
||||||
Adresse 29 - Durchfluss Gebäudeseite Heizen: 18
|
|
||||||
Adresse 30 - Durchfluss Gebäudeseite Kühlen: 0
|
|
||||||
Adresse 31 - Durchfluss Umweltseite: 0
|
|
||||||
Adresse 40 - Betreibsstunden Verdichter 1 : 0
|
|
||||||
Adresse 42 - Betreibsstunden Verdichter 2: 0
|
|
||||||
Adresse 44 - Betreibsstunden 2 Wäremeerzeuger: 0
|
|
||||||
Adresse 46 - WP Leistung in %: 0.0
|
|
||||||
Adresse 50 - Rücklauftemperatur Direkterheizkreis oder Puffertemperatur: 35.4
|
|
||||||
Adresse 70 - Vorlauftemperatur Mischerkreis 1: 23.6
|
|
||||||
Adresse 90 - Vorlauftemperatur Mischerkreis 2: 5553.7
|
|
||||||
Adresse 110 - Vorlauftemperatur Mischerkreis 3: 0.0
|
|
||||||
Adresse 130 - Vorlauftemperatur Mischerkreis 4: 0.0
|
|
||||||
Adresse 230 - Vorlauftemperatur Mischerkreis 5: 0.0
|
|
||||||
Adresse 250 - Vorlauftemperatur Mischerkreis 6: 0.0
|
|
||||||
Adresse 150 - Trinkwarmwasserspiecher oben (Ein): 61.2
|
|
||||||
Adresse 151 - Betreibsstunden 2 Wäremeerzeuger Boiler: 0
|
|
||||||
Adresse 153 - Trinkwarmwasserspiecher unten (Aus): 58.7
|
|
||||||
Adresse 154 - VL Magroladung Sekundär: 0.0
|
|
||||||
Adresse 155 - TWW1 Magroladungventil 0-100%: 0.0
|
|
||||||
Adresse 160 - Trinkwarmwasserspiecher 2 oben (Ein): 0.0
|
|
||||||
Adresse 161 - Trinkwarmwasserspiecher 2 unten (Aus): 0.0
|
|
||||||
Adresse 162 - VL Magroladung Sekundär: 0.0
|
|
||||||
Adresse 170 - Puffertemperatur Heizung: 35.4
|
|
||||||
Adresse 171 - Maximale Anforderung Heizen an WP: 0.0
|
|
||||||
Adresse 210 - Puffertemperatur Kühlen: 5553.7
|
|
||||||
Adresse 211 - Umweltseite Passivkühlen Wärmetauscher Eintritt: 12.5
|
|
||||||
Adresse 212 - Umweltseite Passivkühlen Wärmetauscher Asutritt: 15.0
|
|
||||||
Adresse 213 - Gebäudeseite Passivkühlen Wärmetauscher Asutritt: 19.9
|
|
||||||
Adresse 214 - Gebäudeseite Passivkühlen Wärmetauscher Eintritt: 19.6
|
|
||||||
Adresse 215 - Minimale Anforderung Kühlen an WP: 0.0
|
|
||||||
Adresse 300 - Aussentemperatur: 10.7
|
|
||||||
Adresse 310 - Sonderanwendungen : 30000
|
|
||||||
Adresse 311 - Hz FU Ausgang bei ABB/FUJI, rps bei Carel: 1703.5
|
|
||||||
Adresse 313 - Stromaufnahme FU Ausgang: 1670.7
|
|
||||||
Adresse 315 - Spannung FU Ausgang: 1731.7
|
|
||||||
Adresse 319 - Leistung FU Ausgang kW: 1660.0
|
|
||||||
Adresse 323 - Energieverbrauch FU kWh bei ABB FU: 0
|
|
||||||
Adresse 330 - Fühlermodul Eingang 1: 0.0
|
|
||||||
Adresse 331 - Fühlermodul Eingang 2: 0.0
|
|
||||||
Adresse 332 - Fühlermodul Eingang 3: 0.0
|
|
||||||
Adresse 333 - Fühlermodul Eingang 4: 0.0
|
|
||||||
Adresse 334 - Fühlermodul Eingang 5: 0.0
|
|
||||||
Adresse 335 - Fühlermodul Eingang 6: 0.0
|
|
||||||
Adresse 336 - Fühlermodul Eingang 7: 0.0
|
|
||||||
Adresse 337 - Fühlermodul Eingang 8: 0.0
|
|
||||||
Adresse 338 - Fühlermodul Eingang 9: 0.0
|
|
||||||
Adresse 339 - Fühlermodul Eingang 10: 0.0
|
|
||||||
Adresse 510 - Störung 1 Nummer: 0
|
|
||||||
Adresse 512 - Störung 2 Nummer: 0
|
|
||||||
Adresse 0 - Primärpumpe: 78.6
|
|
||||||
Adresse 1 - Ventilator: 0.0
|
|
||||||
Adresse 2 - Ladepumpe: 20.0
|
|
||||||
Adresse 3 - Ladepumpe Kühlen: 0.0
|
|
||||||
Adresse 4 - Boilerpumpe: 0.0
|
|
||||||
Adresse 5 - Magroladepumpe 0-100%: 0.0
|
|
||||||
Adresse 6 - Kondensator Ventil: 0.0
|
|
||||||
Adresse 10 - Gebäudeseite Wärmepumpe Vorlauf/Austritt (Warm): 65.6
|
|
||||||
Adresse 11 - Gebäudeseite Wärmepumpe Rücklauf/Eintritt (Kalt): 55.5
|
|
||||||
Adresse 12 - Umweltseite/Quelle Wärmepumpe Eintritt (Warm): 10.8
|
|
||||||
Adresse 13 - Umweltseite/Quelle Wärmepumpe Austritt (Kalt): 8.1
|
|
||||||
Adresse 14 - Luftmodul.1 Lufteintritttemperatur: 0.0
|
|
||||||
Adresse 15 - Luftmodul.1 Lamellentemperatur: 0.0
|
|
||||||
Adresse 20 - Kondensationstemperatur: 66.0
|
|
||||||
Adresse 21 - Flüssigkeitstemperatur: 57.5
|
|
||||||
Adresse 22 - Verdampfunstemperatur: 7.0
|
|
||||||
Adresse 23 - Sauggastemperatur: 7.4
|
|
||||||
Adresse 32 - Expansionsventil A Öffnungsgrad: 64.6
|
|
||||||
Adresse 24 - Heisgastemperatur: 75.7
|
|
||||||
Adresse 28 - Verdampfungstemperatur Verdichter 2 bei CPV: 0.0
|
|
||||||
Adresse 25 - Sauggastemperatur 2: 0.0
|
|
||||||
Adresse 33 - Expansionsventil B Öffnungsgrad: 0.0
|
|
||||||
Adresse 26 - Grundwassertemperatur VL (Warm): 0.0
|
|
||||||
Adresse 27 - Grundwassertemperatur RL (Kalt): 0.0
|
|
||||||
Adresse 29 - Durchfluss Gebäudeseite Heizen: 18
|
|
||||||
Adresse 30 - Durchfluss Gebäudeseite Kühlen: 0
|
|
||||||
Adresse 31 - Durchfluss Umweltseite: 0
|
|
||||||
Adresse 40 - Betreibsstunden Verdichter 1 : 0
|
|
||||||
Adresse 42 - Betreibsstunden Verdichter 2: 0
|
|
||||||
Adresse 44 - Betreibsstunden 2 Wäremeerzeuger: 0
|
|
||||||
Adresse 46 - WP Leistung in %: 0.0
|
|
||||||
Adresse 50 - Rücklauftemperatur Direkterheizkreis oder Puffertemperatur: 35.3
|
|
||||||
Adresse 70 - Vorlauftemperatur Mischerkreis 1: 23.6
|
|
||||||
Adresse 90 - Vorlauftemperatur Mischerkreis 2: 5553.7
|
|
||||||
Adresse 110 - Vorlauftemperatur Mischerkreis 3: 0.0
|
|
||||||
Adresse 130 - Vorlauftemperatur Mischerkreis 4: 0.0
|
|
||||||
Adresse 230 - Vorlauftemperatur Mischerkreis 5: 0.0
|
|
||||||
Adresse 250 - Vorlauftemperatur Mischerkreis 6: 0.0
|
|
||||||
Adresse 150 - Trinkwarmwasserspiecher oben (Ein): 61.2
|
|
||||||
Adresse 151 - Betreibsstunden 2 Wäremeerzeuger Boiler: 0
|
|
||||||
Adresse 153 - Trinkwarmwasserspiecher unten (Aus): 58.7
|
|
||||||
Adresse 154 - VL Magroladung Sekundär: 0.0
|
|
||||||
Adresse 155 - TWW1 Magroladungventil 0-100%: 0.0
|
|
||||||
Adresse 160 - Trinkwarmwasserspiecher 2 oben (Ein): 0.0
|
|
||||||
Adresse 161 - Trinkwarmwasserspiecher 2 unten (Aus): 0.0
|
|
||||||
Adresse 162 - VL Magroladung Sekundär: 0.0
|
|
||||||
Adresse 170 - Puffertemperatur Heizung: 35.3
|
|
||||||
Adresse 171 - Maximale Anforderung Heizen an WP: 0.0
|
|
||||||
Adresse 210 - Puffertemperatur Kühlen: 5553.7
|
|
||||||
Adresse 211 - Umweltseite Passivkühlen Wärmetauscher Eintritt: 12.5
|
|
||||||
Adresse 212 - Umweltseite Passivkühlen Wärmetauscher Asutritt: 15.0
|
|
||||||
Adresse 213 - Gebäudeseite Passivkühlen Wärmetauscher Asutritt: 19.9
|
|
||||||
Adresse 214 - Gebäudeseite Passivkühlen Wärmetauscher Eintritt: 19.6
|
|
||||||
Adresse 215 - Minimale Anforderung Kühlen an WP: 0.0
|
|
||||||
Adresse 300 - Aussentemperatur: 10.7
|
|
||||||
Adresse 310 - Sonderanwendungen : 30000
|
|
||||||
Adresse 311 - Hz FU Ausgang bei ABB/FUJI, rps bei Carel: 1703.5
|
|
||||||
Adresse 313 - Stromaufnahme FU Ausgang: 1670.7
|
|
||||||
Adresse 315 - Spannung FU Ausgang: 1731.7
|
|
||||||
Adresse 319 - Leistung FU Ausgang kW: 1660.0
|
|
||||||
Adresse 323 - Energieverbrauch FU kWh bei ABB FU: 0
|
|
||||||
Adresse 330 - Fühlermodul Eingang 1: 0.0
|
|
||||||
Adresse 331 - Fühlermodul Eingang 2: 0.0
|
|
||||||
Adresse 332 - Fühlermodul Eingang 3: 0.0
|
|
||||||
Adresse 333 - Fühlermodul Eingang 4: 0.0
|
|
||||||
Adresse 334 - Fühlermodul Eingang 5: 0.0
|
|
||||||
Adresse 335 - Fühlermodul Eingang 6: 0.0
|
|
||||||
Adresse 336 - Fühlermodul Eingang 7: 0.0
|
|
||||||
Adresse 337 - Fühlermodul Eingang 8: 0.0
|
|
||||||
Adresse 338 - Fühlermodul Eingang 9: 0.0
|
|
||||||
Adresse 339 - Fühlermodul Eingang 10: 0.0
|
|
||||||
Adresse 510 - Störung 1 Nummer: 0
|
|
||||||
Adresse 512 - Störung 2 Nummer: 0
|
|
||||||
Adresse 0 - Primärpumpe: 78.6
|
|
||||||
Adresse 1 - Ventilator: 0.0
|
|
||||||
Adresse 2 - Ladepumpe: 20.0
|
|
||||||
Adresse 3 - Ladepumpe Kühlen: 0.0
|
|
||||||
Adresse 4 - Boilerpumpe: 0.0
|
|
||||||
Adresse 5 - Magroladepumpe 0-100%: 0.0
|
|
||||||
Adresse 6 - Kondensator Ventil: 0.0
|
|
||||||
Adresse 10 - Gebäudeseite Wärmepumpe Vorlauf/Austritt (Warm): 65.6
|
|
||||||
Adresse 11 - Gebäudeseite Wärmepumpe Rücklauf/Eintritt (Kalt): 55.5
|
|
||||||
Adresse 12 - Umweltseite/Quelle Wärmepumpe Eintritt (Warm): 10.8
|
|
||||||
Adresse 13 - Umweltseite/Quelle Wärmepumpe Austritt (Kalt): 8.1
|
|
||||||
Adresse 14 - Luftmodul.1 Lufteintritttemperatur: 0.0
|
|
||||||
Adresse 15 - Luftmodul.1 Lamellentemperatur: 0.0
|
|
||||||
Adresse 20 - Kondensationstemperatur: 66.0
|
|
||||||
Adresse 21 - Flüssigkeitstemperatur: 57.5
|
|
||||||
Adresse 22 - Verdampfunstemperatur: 7.0
|
|
||||||
Adresse 23 - Sauggastemperatur: 7.4
|
|
||||||
Adresse 32 - Expansionsventil A Öffnungsgrad: 64.6
|
|
||||||
Adresse 24 - Heisgastemperatur: 75.8
|
|
||||||
Adresse 28 - Verdampfungstemperatur Verdichter 2 bei CPV: 0.0
|
|
||||||
Adresse 25 - Sauggastemperatur 2: 0.0
|
|
||||||
Adresse 33 - Expansionsventil B Öffnungsgrad: 0.0
|
|
||||||
Adresse 26 - Grundwassertemperatur VL (Warm): 0.0
|
|
||||||
Adresse 27 - Grundwassertemperatur RL (Kalt): 0.0
|
|
||||||
Adresse 29 - Durchfluss Gebäudeseite Heizen: 18
|
|
||||||
Adresse 30 - Durchfluss Gebäudeseite Kühlen: 0
|
|
||||||
Adresse 31 - Durchfluss Umweltseite: 0
|
|
||||||
Adresse 40 - Betreibsstunden Verdichter 1 : 0
|
|
||||||
Adresse 42 - Betreibsstunden Verdichter 2: 0
|
|
||||||
Adresse 44 - Betreibsstunden 2 Wäremeerzeuger: 0
|
|
||||||
Adresse 46 - WP Leistung in %: 0.0
|
|
||||||
Adresse 50 - Rücklauftemperatur Direkterheizkreis oder Puffertemperatur: 35.5
|
|
||||||
Adresse 70 - Vorlauftemperatur Mischerkreis 1: 23.6
|
|
||||||
Adresse 90 - Vorlauftemperatur Mischerkreis 2: 5553.7
|
|
||||||
Adresse 110 - Vorlauftemperatur Mischerkreis 3: 0.0
|
|
||||||
Adresse 130 - Vorlauftemperatur Mischerkreis 4: 0.0
|
|
||||||
Adresse 230 - Vorlauftemperatur Mischerkreis 5: 0.0
|
|
||||||
Adresse 250 - Vorlauftemperatur Mischerkreis 6: 0.0
|
|
||||||
Adresse 150 - Trinkwarmwasserspiecher oben (Ein): 61.2
|
|
||||||
Adresse 151 - Betreibsstunden 2 Wäremeerzeuger Boiler: 0
|
|
||||||
Adresse 153 - Trinkwarmwasserspiecher unten (Aus): 58.8
|
|
||||||
Adresse 154 - VL Magroladung Sekundär: 0.0
|
|
||||||
Adresse 155 - TWW1 Magroladungventil 0-100%: 0.0
|
|
||||||
Adresse 160 - Trinkwarmwasserspiecher 2 oben (Ein): 0.0
|
|
||||||
Adresse 161 - Trinkwarmwasserspiecher 2 unten (Aus): 0.0
|
|
||||||
Adresse 162 - VL Magroladung Sekundär: 0.0
|
|
||||||
Adresse 170 - Puffertemperatur Heizung: 35.5
|
|
||||||
Adresse 171 - Maximale Anforderung Heizen an WP: 0.0
|
|
||||||
Adresse 210 - Puffertemperatur Kühlen: 5553.7
|
|
||||||
Adresse 211 - Umweltseite Passivkühlen Wärmetauscher Eintritt: 12.5
|
|
||||||
Adresse 212 - Umweltseite Passivkühlen Wärmetauscher Asutritt: 15.0
|
|
||||||
Adresse 213 - Gebäudeseite Passivkühlen Wärmetauscher Asutritt: 19.9
|
|
||||||
Adresse 214 - Gebäudeseite Passivkühlen Wärmetauscher Eintritt: 19.6
|
|
||||||
Adresse 215 - Minimale Anforderung Kühlen an WP: 0.0
|
|
||||||
Adresse 300 - Aussentemperatur: 10.7
|
|
||||||
Adresse 310 - Sonderanwendungen : 30000
|
|
||||||
Adresse 311 - Hz FU Ausgang bei ABB/FUJI, rps bei Carel: 1703.5
|
|
||||||
Adresse 313 - Stromaufnahme FU Ausgang: 1670.7
|
|
||||||
Adresse 315 - Spannung FU Ausgang: 1731.7
|
|
||||||
Adresse 319 - Leistung FU Ausgang kW: 1660.0
|
|
||||||
Adresse 323 - Energieverbrauch FU kWh bei ABB FU: 0
|
|
||||||
Adresse 330 - Fühlermodul Eingang 1: 0.0
|
|
||||||
Adresse 331 - Fühlermodul Eingang 2: 0.0
|
|
||||||
Adresse 332 - Fühlermodul Eingang 3: 0.0
|
|
||||||
Adresse 333 - Fühlermodul Eingang 4: 0.0
|
|
||||||
Adresse 334 - Fühlermodul Eingang 5: 0.0
|
|
||||||
Adresse 335 - Fühlermodul Eingang 6: 0.0
|
|
||||||
Adresse 336 - Fühlermodul Eingang 7: 0.0
|
|
||||||
Adresse 337 - Fühlermodul Eingang 8: 0.0
|
|
||||||
Adresse 338 - Fühlermodul Eingang 9: 0.0
|
|
||||||
Adresse 339 - Fühlermodul Eingang 10: 0.0
|
|
||||||
Adresse 510 - Störung 1 Nummer: 0
|
|
||||||
Adresse 512 - Störung 2 Nummer: 0
|
|
||||||
Adresse 0 - Primärpumpe: 78.6
|
|
||||||
Adresse 1 - Ventilator: 0.0
|
|
||||||
Adresse 2 - Ladepumpe: 20.0
|
|
||||||
Adresse 3 - Ladepumpe Kühlen: 0.0
|
|
||||||
Adresse 4 - Boilerpumpe: 0.0
|
|
||||||
Adresse 5 - Magroladepumpe 0-100%: 0.0
|
|
||||||
Adresse 6 - Kondensator Ventil: 0.0
|
|
||||||
Adresse 10 - Gebäudeseite Wärmepumpe Vorlauf/Austritt (Warm): 65.6
|
|
||||||
Adresse 11 - Gebäudeseite Wärmepumpe Rücklauf/Eintritt (Kalt): 55.5
|
|
||||||
Adresse 12 - Umweltseite/Quelle Wärmepumpe Eintritt (Warm): 10.8
|
|
||||||
Adresse 13 - Umweltseite/Quelle Wärmepumpe Austritt (Kalt): 8.1
|
|
||||||
Adresse 14 - Luftmodul.1 Lufteintritttemperatur: 0.0
|
|
||||||
Adresse 15 - Luftmodul.1 Lamellentemperatur: 0.0
|
|
||||||
Adresse 20 - Kondensationstemperatur: 65.8
|
|
||||||
Adresse 21 - Flüssigkeitstemperatur: 57.3
|
|
||||||
Adresse 22 - Verdampfunstemperatur: 7.0
|
|
||||||
Adresse 23 - Sauggastemperatur: 7.4
|
|
||||||
Adresse 32 - Expansionsventil A Öffnungsgrad: 64.8
|
|
||||||
Adresse 24 - Heisgastemperatur: 75.8
|
|
||||||
Adresse 28 - Verdampfungstemperatur Verdichter 2 bei CPV: 0.0
|
|
||||||
Adresse 25 - Sauggastemperatur 2: 0.0
|
|
||||||
Adresse 33 - Expansionsventil B Öffnungsgrad: 0.0
|
|
||||||
Adresse 26 - Grundwassertemperatur VL (Warm): 0.0
|
|
||||||
Adresse 27 - Grundwassertemperatur RL (Kalt): 0.0
|
|
||||||
Adresse 29 - Durchfluss Gebäudeseite Heizen: 18
|
|
||||||
Adresse 30 - Durchfluss Gebäudeseite Kühlen: 0
|
|
||||||
Adresse 31 - Durchfluss Umweltseite: 0
|
|
||||||
Adresse 40 - Betreibsstunden Verdichter 1 : 0
|
|
||||||
Adresse 42 - Betreibsstunden Verdichter 2: 0
|
|
||||||
Adresse 44 - Betreibsstunden 2 Wäremeerzeuger: 0
|
|
||||||
Adresse 46 - WP Leistung in %: 0.0
|
|
||||||
Adresse 50 - Rücklauftemperatur Direkterheizkreis oder Puffertemperatur: 35.8
|
|
||||||
Adresse 70 - Vorlauftemperatur Mischerkreis 1: 23.6
|
|
||||||
Adresse 90 - Vorlauftemperatur Mischerkreis 2: 5553.7
|
|
||||||
Adresse 110 - Vorlauftemperatur Mischerkreis 3: 0.0
|
|
||||||
Adresse 130 - Vorlauftemperatur Mischerkreis 4: 0.0
|
|
||||||
Adresse 230 - Vorlauftemperatur Mischerkreis 5: 0.0
|
|
||||||
Adresse 250 - Vorlauftemperatur Mischerkreis 6: 0.0
|
|
||||||
Adresse 150 - Trinkwarmwasserspiecher oben (Ein): 61.3
|
|
||||||
Adresse 151 - Betreibsstunden 2 Wäremeerzeuger Boiler: 0
|
|
||||||
Adresse 153 - Trinkwarmwasserspiecher unten (Aus): 58.7
|
|
||||||
Adresse 154 - VL Magroladung Sekundär: 0.0
|
|
||||||
Adresse 155 - TWW1 Magroladungventil 0-100%: 0.0
|
|
||||||
Adresse 160 - Trinkwarmwasserspiecher 2 oben (Ein): 0.0
|
|
||||||
Adresse 161 - Trinkwarmwasserspiecher 2 unten (Aus): 0.0
|
|
||||||
Adresse 162 - VL Magroladung Sekundär: 0.0
|
|
||||||
Adresse 170 - Puffertemperatur Heizung: 35.8
|
|
||||||
Adresse 171 - Maximale Anforderung Heizen an WP: 0.0
|
|
||||||
Adresse 210 - Puffertemperatur Kühlen: 5553.7
|
|
||||||
Adresse 211 - Umweltseite Passivkühlen Wärmetauscher Eintritt: 12.6
|
|
||||||
Adresse 212 - Umweltseite Passivkühlen Wärmetauscher Asutritt: 15.0
|
|
||||||
Adresse 213 - Gebäudeseite Passivkühlen Wärmetauscher Asutritt: 20.0
|
|
||||||
Adresse 214 - Gebäudeseite Passivkühlen Wärmetauscher Eintritt: 19.6
|
|
||||||
Adresse 215 - Minimale Anforderung Kühlen an WP: 0.0
|
|
||||||
Adresse 300 - Aussentemperatur: 10.7
|
|
||||||
Adresse 310 - Sonderanwendungen : 30000
|
|
||||||
Adresse 311 - Hz FU Ausgang bei ABB/FUJI, rps bei Carel: 1703.5
|
|
||||||
Adresse 313 - Stromaufnahme FU Ausgang: 1670.5
|
|
||||||
Adresse 315 - Spannung FU Ausgang: 1731.7
|
|
||||||
Adresse 319 - Leistung FU Ausgang kW: 1659.8
|
|
||||||
Adresse 323 - Energieverbrauch FU kWh bei ABB FU: 0
|
|
||||||
Adresse 330 - Fühlermodul Eingang 1: 0.0
|
|
||||||
Adresse 331 - Fühlermodul Eingang 2: 0.0
|
|
||||||
Adresse 332 - Fühlermodul Eingang 3: 0.0
|
|
||||||
Adresse 333 - Fühlermodul Eingang 4: 0.0
|
|
||||||
Adresse 334 - Fühlermodul Eingang 5: 0.0
|
|
||||||
Adresse 335 - Fühlermodul Eingang 6: 0.0
|
|
||||||
Adresse 336 - Fühlermodul Eingang 7: 0.0
|
|
||||||
Adresse 337 - Fühlermodul Eingang 8: 0.0
|
|
||||||
Adresse 338 - Fühlermodul Eingang 9: 0.0
|
|
||||||
Adresse 339 - Fühlermodul Eingang 10: 0.0
|
|
||||||
Adresse 510 - Störung 1 Nummer: 0
|
|
||||||
Adresse 512 - Störung 2 Nummer: 0
|
|
||||||
Adresse 0 - Primärpumpe: 78.6
|
|
||||||
Adresse 1 - Ventilator: 0.0
|
|
||||||
Adresse 2 - Ladepumpe: 20.0
|
|
||||||
Adresse 3 - Ladepumpe Kühlen: 0.0
|
|
||||||
Adresse 4 - Boilerpumpe: 0.0
|
|
||||||
Adresse 5 - Magroladepumpe 0-100%: 0.0
|
|
||||||
Adresse 6 - Kondensator Ventil: 0.0
|
|
||||||
Adresse 10 - Gebäudeseite Wärmepumpe Vorlauf/Austritt (Warm): 65.7
|
|
||||||
Adresse 11 - Gebäudeseite Wärmepumpe Rücklauf/Eintritt (Kalt): 55.4
|
|
||||||
Adresse 12 - Umweltseite/Quelle Wärmepumpe Eintritt (Warm): 10.8
|
|
||||||
Adresse 13 - Umweltseite/Quelle Wärmepumpe Austritt (Kalt): 8.1
|
|
||||||
Adresse 14 - Luftmodul.1 Lufteintritttemperatur: 0.0
|
|
||||||
Adresse 15 - Luftmodul.1 Lamellentemperatur: 0.0
|
|
||||||
Adresse 20 - Kondensationstemperatur: 65.6
|
|
||||||
Adresse 21 - Flüssigkeitstemperatur: 57.1
|
|
||||||
Adresse 22 - Verdampfunstemperatur: 7.1
|
|
||||||
Adresse 23 - Sauggastemperatur: 7.4
|
|
||||||
Adresse 32 - Expansionsventil A Öffnungsgrad: 65.2
|
|
||||||
Adresse 24 - Heisgastemperatur: 75.9
|
|
||||||
Adresse 28 - Verdampfungstemperatur Verdichter 2 bei CPV: 0.0
|
|
||||||
Adresse 25 - Sauggastemperatur 2: 0.0
|
|
||||||
Adresse 33 - Expansionsventil B Öffnungsgrad: 0.0
|
|
||||||
Adresse 26 - Grundwassertemperatur VL (Warm): 0.0
|
|
||||||
Adresse 27 - Grundwassertemperatur RL (Kalt): 0.0
|
|
||||||
Adresse 29 - Durchfluss Gebäudeseite Heizen: 18
|
|
||||||
Adresse 30 - Durchfluss Gebäudeseite Kühlen: 0
|
|
||||||
Adresse 31 - Durchfluss Umweltseite: 0
|
|
||||||
Adresse 40 - Betreibsstunden Verdichter 1 : 0
|
|
||||||
Adresse 42 - Betreibsstunden Verdichter 2: 0
|
|
||||||
Adresse 44 - Betreibsstunden 2 Wäremeerzeuger: 0
|
|
||||||
Adresse 46 - WP Leistung in %: 0.0
|
|
||||||
Adresse 50 - Rücklauftemperatur Direkterheizkreis oder Puffertemperatur: 36.0
|
|
||||||
Adresse 70 - Vorlauftemperatur Mischerkreis 1: 23.6
|
|
||||||
Adresse 90 - Vorlauftemperatur Mischerkreis 2: 5553.7
|
|
||||||
Adresse 110 - Vorlauftemperatur Mischerkreis 3: 0.0
|
|
||||||
Adresse 130 - Vorlauftemperatur Mischerkreis 4: 0.0
|
|
||||||
Adresse 230 - Vorlauftemperatur Mischerkreis 5: 0.0
|
|
||||||
Adresse 250 - Vorlauftemperatur Mischerkreis 6: 0.0
|
|
||||||
Adresse 150 - Trinkwarmwasserspiecher oben (Ein): 61.3
|
|
||||||
Adresse 151 - Betreibsstunden 2 Wäremeerzeuger Boiler: 0
|
|
||||||
Adresse 153 - Trinkwarmwasserspiecher unten (Aus): 58.7
|
|
||||||
Adresse 154 - VL Magroladung Sekundär: 0.0
|
|
||||||
Adresse 155 - TWW1 Magroladungventil 0-100%: 0.0
|
|
||||||
Adresse 160 - Trinkwarmwasserspiecher 2 oben (Ein): 0.0
|
|
||||||
Adresse 161 - Trinkwarmwasserspiecher 2 unten (Aus): 0.0
|
|
||||||
Adresse 162 - VL Magroladung Sekundär: 0.0
|
|
||||||
Adresse 170 - Puffertemperatur Heizung: 36.0
|
|
||||||
Adresse 171 - Maximale Anforderung Heizen an WP: 0.0
|
|
||||||
Adresse 210 - Puffertemperatur Kühlen: 5553.7
|
|
||||||
Adresse 211 - Umweltseite Passivkühlen Wärmetauscher Eintritt: 12.6
|
|
||||||
Adresse 212 - Umweltseite Passivkühlen Wärmetauscher Asutritt: 15.0
|
|
||||||
Adresse 213 - Gebäudeseite Passivkühlen Wärmetauscher Asutritt: 19.9
|
|
||||||
Adresse 214 - Gebäudeseite Passivkühlen Wärmetauscher Eintritt: 19.6
|
|
||||||
Adresse 215 - Minimale Anforderung Kühlen an WP: 0.0
|
|
||||||
Adresse 300 - Aussentemperatur: 10.7
|
|
||||||
Adresse 310 - Sonderanwendungen : 30000
|
|
||||||
Adresse 311 - Hz FU Ausgang bei ABB/FUJI, rps bei Carel: 1703.5
|
|
||||||
Adresse 313 - Stromaufnahme FU Ausgang: 1670.5
|
|
||||||
Adresse 315 - Spannung FU Ausgang: 1731.6
|
|
||||||
Adresse 319 - Leistung FU Ausgang kW: 1659.8
|
|
||||||
Adresse 323 - Energieverbrauch FU kWh bei ABB FU: 0
|
|
||||||
Adresse 330 - Fühlermodul Eingang 1: 0.0
|
|
||||||
Adresse 331 - Fühlermodul Eingang 2: 0.0
|
|
||||||
Adresse 332 - Fühlermodul Eingang 3: 0.0
|
|
||||||
Adresse 333 - Fühlermodul Eingang 4: 0.0
|
|
||||||
Adresse 334 - Fühlermodul Eingang 5: 0.0
|
|
||||||
Adresse 335 - Fühlermodul Eingang 6: 0.0
|
|
||||||
Adresse 336 - Fühlermodul Eingang 7: 0.0
|
|
||||||
Adresse 337 - Fühlermodul Eingang 8: 0.0
|
|
||||||
Adresse 338 - Fühlermodul Eingang 9: 0.0
|
|
||||||
Adresse 339 - Fühlermodul Eingang 10: 0.0
|
|
||||||
Adresse 510 - Störung 1 Nummer: 0
|
|
||||||
Adresse 512 - Störung 2 Nummer: 0
|
|
||||||
Adresse 0 - Primärpumpe: 78.6
|
|
||||||
Adresse 1 - Ventilator: 0.0
|
|
||||||
Adresse 2 - Ladepumpe: 20.0
|
|
||||||
Adresse 3 - Ladepumpe Kühlen: 0.0
|
|
||||||
Adresse 4 - Boilerpumpe: 0.0
|
|
||||||
Adresse 5 - Magroladepumpe 0-100%: 0.0
|
|
||||||
Adresse 6 - Kondensator Ventil: 0.0
|
|
||||||
Adresse 10 - Gebäudeseite Wärmepumpe Vorlauf/Austritt (Warm): 65.6
|
|
||||||
Adresse 11 - Gebäudeseite Wärmepumpe Rücklauf/Eintritt (Kalt): 55.4
|
|
||||||
Adresse 12 - Umweltseite/Quelle Wärmepumpe Eintritt (Warm): 10.8
|
|
||||||
Adresse 13 - Umweltseite/Quelle Wärmepumpe Austritt (Kalt): 8.1
|
|
||||||
Adresse 14 - Luftmodul.1 Lufteintritttemperatur: 0.0
|
|
||||||
Adresse 15 - Luftmodul.1 Lamellentemperatur: 0.0
|
|
||||||
Adresse 20 - Kondensationstemperatur: 65.7
|
|
||||||
Adresse 21 - Flüssigkeitstemperatur: 57.2
|
|
||||||
Adresse 22 - Verdampfunstemperatur: 7.1
|
|
||||||
Adresse 23 - Sauggastemperatur: 7.4
|
|
||||||
Adresse 32 - Expansionsventil A Öffnungsgrad: 65.0
|
|
||||||
Adresse 24 - Heisgastemperatur: 76.0
|
|
||||||
Adresse 28 - Verdampfungstemperatur Verdichter 2 bei CPV: 0.0
|
|
||||||
Adresse 25 - Sauggastemperatur 2: 0.0
|
|
||||||
Adresse 33 - Expansionsventil B Öffnungsgrad: 0.0
|
|
||||||
Adresse 26 - Grundwassertemperatur VL (Warm): 0.0
|
|
||||||
Adresse 27 - Grundwassertemperatur RL (Kalt): 0.0
|
|
||||||
Adresse 29 - Durchfluss Gebäudeseite Heizen: 18
|
|
||||||
Adresse 30 - Durchfluss Gebäudeseite Kühlen: 0
|
|
||||||
Adresse 31 - Durchfluss Umweltseite: 0
|
|
||||||
Adresse 40 - Betreibsstunden Verdichter 1 : 0
|
|
||||||
Adresse 42 - Betreibsstunden Verdichter 2: 0
|
|
||||||
Adresse 44 - Betreibsstunden 2 Wäremeerzeuger: 0
|
|
||||||
Adresse 46 - WP Leistung in %: 0.0
|
|
||||||
Adresse 50 - Rücklauftemperatur Direkterheizkreis oder Puffertemperatur: 35.9
|
|
||||||
Adresse 70 - Vorlauftemperatur Mischerkreis 1: 23.6
|
|
||||||
Adresse 90 - Vorlauftemperatur Mischerkreis 2: 5553.7
|
|
||||||
Adresse 110 - Vorlauftemperatur Mischerkreis 3: 0.0
|
|
||||||
Adresse 130 - Vorlauftemperatur Mischerkreis 4: 0.0
|
|
||||||
Adresse 230 - Vorlauftemperatur Mischerkreis 5: 0.0
|
|
||||||
Adresse 250 - Vorlauftemperatur Mischerkreis 6: 0.0
|
|
||||||
Adresse 150 - Trinkwarmwasserspiecher oben (Ein): 61.3
|
|
||||||
Adresse 151 - Betreibsstunden 2 Wäremeerzeuger Boiler: 0
|
|
||||||
Adresse 153 - Trinkwarmwasserspiecher unten (Aus): 58.8
|
|
||||||
Adresse 154 - VL Magroladung Sekundär: 0.0
|
|
||||||
Adresse 155 - TWW1 Magroladungventil 0-100%: 0.0
|
|
||||||
Adresse 160 - Trinkwarmwasserspiecher 2 oben (Ein): 0.0
|
|
||||||
Adresse 161 - Trinkwarmwasserspiecher 2 unten (Aus): 0.0
|
|
||||||
Adresse 162 - VL Magroladung Sekundär: 0.0
|
|
||||||
Adresse 170 - Puffertemperatur Heizung: 35.9
|
|
||||||
Adresse 171 - Maximale Anforderung Heizen an WP: 0.0
|
|
||||||
Adresse 210 - Puffertemperatur Kühlen: 5553.7
|
|
||||||
Adresse 211 - Umweltseite Passivkühlen Wärmetauscher Eintritt: 12.6
|
|
||||||
Adresse 212 - Umweltseite Passivkühlen Wärmetauscher Asutritt: 15.0
|
|
||||||
Adresse 213 - Gebäudeseite Passivkühlen Wärmetauscher Asutritt: 19.9
|
|
||||||
Adresse 214 - Gebäudeseite Passivkühlen Wärmetauscher Eintritt: 19.6
|
|
||||||
Adresse 215 - Minimale Anforderung Kühlen an WP: 0.0
|
|
||||||
Adresse 300 - Aussentemperatur: 10.7
|
|
||||||
Adresse 310 - Sonderanwendungen : 30000
|
|
||||||
Adresse 311 - Hz FU Ausgang bei ABB/FUJI, rps bei Carel: 1703.5
|
|
||||||
Adresse 313 - Stromaufnahme FU Ausgang: 1670.7
|
|
||||||
Adresse 315 - Spannung FU Ausgang: 1731.7
|
|
||||||
Adresse 319 - Leistung FU Ausgang kW: 1659.9
|
|
||||||
Adresse 323 - Energieverbrauch FU kWh bei ABB FU: 0
|
|
||||||
Adresse 330 - Fühlermodul Eingang 1: 0.0
|
|
||||||
Adresse 331 - Fühlermodul Eingang 2: 0.0
|
|
||||||
Adresse 332 - Fühlermodul Eingang 3: 0.0
|
|
||||||
Adresse 333 - Fühlermodul Eingang 4: 0.0
|
|
||||||
Adresse 334 - Fühlermodul Eingang 5: 0.0
|
|
||||||
Adresse 335 - Fühlermodul Eingang 6: 0.0
|
|
||||||
Adresse 336 - Fühlermodul Eingang 7: 0.0
|
|
||||||
Adresse 337 - Fühlermodul Eingang 8: 0.0
|
|
||||||
Adresse 338 - Fühlermodul Eingang 9: 0.0
|
|
||||||
Adresse 339 - Fühlermodul Eingang 10: 0.0
|
|
||||||
Adresse 510 - Störung 1 Nummer: 0
|
|
||||||
Adresse 512 - Störung 2 Nummer: 0
|
|
||||||
Adresse 0 - Primärpumpe: 78.6
|
|
||||||
Adresse 1 - Ventilator: 0.0
|
|
||||||
Adresse 2 - Ladepumpe: 20.0
|
|
||||||
Adresse 3 - Ladepumpe Kühlen: 0.0
|
|
||||||
Adresse 4 - Boilerpumpe: 0.0
|
|
||||||
Adresse 5 - Magroladepumpe 0-100%: 0.0
|
|
||||||
Adresse 6 - Kondensator Ventil: 0.0
|
|
||||||
Adresse 10 - Gebäudeseite Wärmepumpe Vorlauf/Austritt (Warm): 65.6
|
|
||||||
Adresse 11 - Gebäudeseite Wärmepumpe Rücklauf/Eintritt (Kalt): 55.4
|
|
||||||
Adresse 12 - Umweltseite/Quelle Wärmepumpe Eintritt (Warm): 10.8
|
|
||||||
Adresse 13 - Umweltseite/Quelle Wärmepumpe Austritt (Kalt): 8.1
|
|
||||||
Adresse 14 - Luftmodul.1 Lufteintritttemperatur: 0.0
|
|
||||||
Adresse 15 - Luftmodul.1 Lamellentemperatur: 0.0
|
|
||||||
Adresse 20 - Kondensationstemperatur: 65.8
|
|
||||||
Adresse 21 - Flüssigkeitstemperatur: 57.3
|
|
||||||
Adresse 22 - Verdampfunstemperatur: 7.1
|
|
||||||
Adresse 23 - Sauggastemperatur: 7.4
|
|
||||||
Adresse 32 - Expansionsventil A Öffnungsgrad: 64.8
|
|
||||||
Adresse 24 - Heisgastemperatur: 75.9
|
|
||||||
Adresse 28 - Verdampfungstemperatur Verdichter 2 bei CPV: 0.0
|
|
||||||
Adresse 25 - Sauggastemperatur 2: 0.0
|
|
||||||
Adresse 33 - Expansionsventil B Öffnungsgrad: 0.0
|
|
||||||
Adresse 26 - Grundwassertemperatur VL (Warm): 0.0
|
|
||||||
Adresse 27 - Grundwassertemperatur RL (Kalt): 0.0
|
|
||||||
Adresse 29 - Durchfluss Gebäudeseite Heizen: 18
|
|
||||||
Adresse 30 - Durchfluss Gebäudeseite Kühlen: 0
|
|
||||||
Adresse 31 - Durchfluss Umweltseite: 0
|
|
||||||
Adresse 40 - Betreibsstunden Verdichter 1 : 0
|
|
||||||
Adresse 42 - Betreibsstunden Verdichter 2: 0
|
|
||||||
Adresse 44 - Betreibsstunden 2 Wäremeerzeuger: 0
|
|
||||||
Adresse 46 - WP Leistung in %: 0.0
|
|
||||||
Adresse 50 - Rücklauftemperatur Direkterheizkreis oder Puffertemperatur: 35.7
|
|
||||||
Adresse 70 - Vorlauftemperatur Mischerkreis 1: 23.6
|
|
||||||
Adresse 90 - Vorlauftemperatur Mischerkreis 2: 5553.7
|
|
||||||
Adresse 110 - Vorlauftemperatur Mischerkreis 3: 0.0
|
|
||||||
Adresse 130 - Vorlauftemperatur Mischerkreis 4: 0.0
|
|
||||||
Adresse 230 - Vorlauftemperatur Mischerkreis 5: 0.0
|
|
||||||
Adresse 250 - Vorlauftemperatur Mischerkreis 6: 0.0
|
|
||||||
Adresse 150 - Trinkwarmwasserspiecher oben (Ein): 61.3
|
|
||||||
Adresse 151 - Betreibsstunden 2 Wäremeerzeuger Boiler: 0
|
|
||||||
Adresse 153 - Trinkwarmwasserspiecher unten (Aus): 58.8
|
|
||||||
Adresse 154 - VL Magroladung Sekundär: 0.0
|
|
||||||
Adresse 155 - TWW1 Magroladungventil 0-100%: 0.0
|
|
||||||
Adresse 160 - Trinkwarmwasserspiecher 2 oben (Ein): 0.0
|
|
||||||
Adresse 161 - Trinkwarmwasserspiecher 2 unten (Aus): 0.0
|
|
||||||
Adresse 162 - VL Magroladung Sekundär: 0.0
|
|
||||||
Adresse 170 - Puffertemperatur Heizung: 35.7
|
|
||||||
Adresse 171 - Maximale Anforderung Heizen an WP: 0.0
|
|
||||||
Adresse 210 - Puffertemperatur Kühlen: 5553.7
|
|
||||||
Adresse 211 - Umweltseite Passivkühlen Wärmetauscher Eintritt: 12.6
|
|
||||||
Adresse 212 - Umweltseite Passivkühlen Wärmetauscher Asutritt: 15.0
|
|
||||||
Adresse 213 - Gebäudeseite Passivkühlen Wärmetauscher Asutritt: 19.9
|
|
||||||
Adresse 214 - Gebäudeseite Passivkühlen Wärmetauscher Eintritt: 19.6
|
|
||||||
Adresse 215 - Minimale Anforderung Kühlen an WP: 0.0
|
|
||||||
Adresse 300 - Aussentemperatur: 10.7
|
|
||||||
Adresse 310 - Sonderanwendungen : 30000
|
|
||||||
Adresse 311 - Hz FU Ausgang bei ABB/FUJI, rps bei Carel: 1703.5
|
|
||||||
Adresse 313 - Stromaufnahme FU Ausgang: 1670.7
|
|
||||||
Adresse 315 - Spannung FU Ausgang: 1731.7
|
|
||||||
Adresse 319 - Leistung FU Ausgang kW: 1659.9
|
|
||||||
Adresse 323 - Energieverbrauch FU kWh bei ABB FU: 0
|
|
||||||
Adresse 330 - Fühlermodul Eingang 1: 0.0
|
|
||||||
Adresse 331 - Fühlermodul Eingang 2: 0.0
|
|
||||||
Adresse 332 - Fühlermodul Eingang 3: 0.0
|
|
||||||
Adresse 333 - Fühlermodul Eingang 4: 0.0
|
|
||||||
Adresse 334 - Fühlermodul Eingang 5: 0.0
|
|
||||||
Adresse 335 - Fühlermodul Eingang 6: 0.0
|
|
||||||
@@ -1,61 +0,0 @@
|
|||||||
#!/usr/bin/env python3
|
|
||||||
# -*- coding: utf-8 -*-
|
|
||||||
|
|
||||||
from pymodbus.client import ModbusTcpClient
|
|
||||||
import struct, sys
|
|
||||||
|
|
||||||
MODBUS_IP = "192.168.1.112"
|
|
||||||
MODBUS_PORT = 502
|
|
||||||
UNIT_ID = 1
|
|
||||||
|
|
||||||
METER_START = 40240 # Startadresse Model 203-Felder
|
|
||||||
|
|
||||||
def to_i16(u16): # unsigned 16 → signed 16
|
|
||||||
return struct.unpack(">h", struct.pack(">H", u16))[0]
|
|
||||||
|
|
||||||
def read_regs(client, addr, count):
|
|
||||||
rr = client.read_holding_registers(address=addr, count=count, slave=UNIT_ID)
|
|
||||||
if rr.isError():
|
|
||||||
return None
|
|
||||||
return rr.registers
|
|
||||||
|
|
||||||
def read_meter_power(client):
|
|
||||||
base = METER_START
|
|
||||||
p = read_regs(client, base + 16, 1) # M_AC_Power
|
|
||||||
pa = read_regs(client, base + 17, 1) # Phase A
|
|
||||||
pb = read_regs(client, base + 18, 1) # Phase B
|
|
||||||
pc = read_regs(client, base + 19, 1) # Phase C
|
|
||||||
sf = read_regs(client, base + 20, 1) # Scale Factor
|
|
||||||
if not p or not sf:
|
|
||||||
return None
|
|
||||||
sff = to_i16(sf[0])
|
|
||||||
return {
|
|
||||||
"total": to_i16(p[0]) * (10 ** sff),
|
|
||||||
"A": to_i16(pa[0]) * (10 ** sff) if pa else None,
|
|
||||||
"B": to_i16(pb[0]) * (10 ** sff) if pb else None,
|
|
||||||
"C": to_i16(pc[0]) * (10 ** sff) if pc else None,
|
|
||||||
"sf": sff
|
|
||||||
}
|
|
||||||
|
|
||||||
def fmt_w(v):
|
|
||||||
if v is None: return "-"
|
|
||||||
neg = v < 0
|
|
||||||
v = abs(v)
|
|
||||||
return f"{'-' if neg else ''}{v/1000:.2f} kW" if v >= 1000 else f"{'-' if neg else ''}{v:.0f} W"
|
|
||||||
|
|
||||||
def main():
|
|
||||||
client = ModbusTcpClient(MODBUS_IP, port=MODBUS_PORT)
|
|
||||||
if not client.connect():
|
|
||||||
print("❌ Verbindung fehlgeschlagen."); sys.exit(1)
|
|
||||||
try:
|
|
||||||
m = read_meter_power(client)
|
|
||||||
if m:
|
|
||||||
print(f"Meter-Leistung: {fmt_w(m['total'])} "
|
|
||||||
f"(A {fmt_w(m['A'])}, B {fmt_w(m['B'])}, C {fmt_w(m['C'])}) [SF={m['sf']}]")
|
|
||||||
else:
|
|
||||||
print("Meter-Leistung konnte nicht gelesen werden.")
|
|
||||||
finally:
|
|
||||||
client.close()
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
|
||||||
main()
|
|
||||||
110
test_wr.py
110
test_wr.py
@@ -1,110 +0,0 @@
|
|||||||
from pymodbus.client import ModbusTcpClient
|
|
||||||
import struct
|
|
||||||
import sys
|
|
||||||
from typing import Optional
|
|
||||||
|
|
||||||
# === Verbindungseinstellungen ===
|
|
||||||
MODBUS_IP = "192.168.1.112"
|
|
||||||
MODBUS_PORT = 502 # SetApp: 1502; LCD-Menü: 502 -> ggf. anpassen
|
|
||||||
UNIT_ID = 1 # Default laut Doku: 1
|
|
||||||
|
|
||||||
client = ModbusTcpClient(MODBUS_IP, port=MODBUS_PORT)
|
|
||||||
if not client.connect():
|
|
||||||
print("Verbindung fehlgeschlagen.")
|
|
||||||
sys.exit(1)
|
|
||||||
|
|
||||||
def read_regs(addr: int, count: int):
|
|
||||||
"""Hilfsfunktion: liest 'count' Holding-Register ab base-0 'addr'."""
|
|
||||||
rr = client.read_holding_registers(address=addr, count=count)
|
|
||||||
if rr.isError():
|
|
||||||
return None
|
|
||||||
return rr.registers
|
|
||||||
|
|
||||||
def read_string(addr: int, words: int) -> Optional[str]:
|
|
||||||
"""
|
|
||||||
SunSpec-Strings: ASCII, Big-Endian, 2 Bytes pro Register, 0x00 gepadded.
|
|
||||||
"""
|
|
||||||
regs = read_regs(addr, words)
|
|
||||||
if regs is None:
|
|
||||||
return None
|
|
||||||
b = b"".join(struct.pack(">H", r) for r in regs)
|
|
||||||
# SunSpec Strings sind meist mit \x00 und Spaces gepadded:
|
|
||||||
s = b.decode("ascii", errors="ignore").rstrip("\x00 ").strip()
|
|
||||||
return s or None
|
|
||||||
|
|
||||||
def to_int16(u16: int) -> int:
|
|
||||||
"""unsigned 16 -> signed 16"""
|
|
||||||
return struct.unpack(">h", struct.pack(">H", u16))[0]
|
|
||||||
|
|
||||||
def apply_sf(raw: int, sf: int) -> float:
|
|
||||||
return raw * (10 ** sf)
|
|
||||||
|
|
||||||
def read_scaled(value_addr: int, sf_addr: int) -> Optional[float]:
|
|
||||||
regs = read_regs(value_addr, 1)
|
|
||||||
sf = read_regs(sf_addr, 1)
|
|
||||||
if regs is None or sf is None:
|
|
||||||
return None
|
|
||||||
raw = to_int16(regs[0])
|
|
||||||
sff = to_int16(sf[0])
|
|
||||||
return apply_sf(raw, sff)
|
|
||||||
|
|
||||||
def read_u32_with_sf(value_addr: int, sf_addr: int) -> Optional[float]:
|
|
||||||
"""
|
|
||||||
Liest 32-bit Zähler (acc32, Big-Endian, 2 Register) + SF.
|
|
||||||
"""
|
|
||||||
regs = read_regs(value_addr, 2)
|
|
||||||
sf = read_regs(sf_addr, 1)
|
|
||||||
if regs is None or sf is None:
|
|
||||||
return None
|
|
||||||
# Big-Endian zusammenbauen:
|
|
||||||
u32 = (regs[0] << 16) | regs[1]
|
|
||||||
sff = to_int16(sf[0])
|
|
||||||
return apply_sf(u32, sff)
|
|
||||||
|
|
||||||
# ==== Common Block (base-0) ====
|
|
||||||
manufacturer = read_string(40004, 16) # C_Manufacturer
|
|
||||||
model = read_string(40020, 16) # C_Model
|
|
||||||
version = read_string(40044, 8) # C_Version
|
|
||||||
serial = read_string(40052, 16) # C_SerialNumber
|
|
||||||
|
|
||||||
print(f"Hersteller: {manufacturer}")
|
|
||||||
print(f"Modell: {model}")
|
|
||||||
print(f"Version: {version}")
|
|
||||||
print(f"Seriennummer: {serial}")
|
|
||||||
|
|
||||||
# ==== Inverter Block (base-0) ====
|
|
||||||
# AC Power + Scale Factor
|
|
||||||
ac_power = read_scaled(40083, 40084) # I_AC_Power, I_AC_Power_SF
|
|
||||||
if ac_power is not None:
|
|
||||||
print(f"AC Power: {ac_power} W")
|
|
||||||
else:
|
|
||||||
print("Fehler beim Lesen von AC Power")
|
|
||||||
|
|
||||||
# AC Spannung L-N Durchschnitt (falls 1ph/3ph mit N verfügbar) + SF
|
|
||||||
ac_voltage = read_scaled(40079, 40082) # I_AC_VoltageAN, I_AC_Voltage_SF
|
|
||||||
if ac_voltage is not None:
|
|
||||||
print(f"AC Spannung: {ac_voltage} V")
|
|
||||||
|
|
||||||
# AC Frequenz + SF
|
|
||||||
ac_freq = read_scaled(40085, 40086) # I_AC_Frequency, _SF
|
|
||||||
if ac_freq is not None:
|
|
||||||
print(f"Frequenz: {ac_freq} Hz")
|
|
||||||
|
|
||||||
# DC Power + SF
|
|
||||||
dc_power = read_scaled(40100, 40101) # I_DC_Power, _SF
|
|
||||||
if dc_power is not None:
|
|
||||||
print(f"DC Power: {dc_power} W")
|
|
||||||
|
|
||||||
# Lifetime Energy (AC_Energy_WH, acc32) + SF
|
|
||||||
lifetime_wh = read_u32_with_sf(40093, 40095) # I_AC_Energy_WH, _SF
|
|
||||||
if lifetime_wh is not None:
|
|
||||||
print(f"Lifetime Energy: {lifetime_wh} Wh")
|
|
||||||
|
|
||||||
# Status
|
|
||||||
status_regs = read_regs(40107, 2) # I_Status, I_Status_Vendor
|
|
||||||
if status_regs:
|
|
||||||
i_status = status_regs[0]
|
|
||||||
i_status_vendor = status_regs[1]
|
|
||||||
print(f"Status: {i_status} (Vendor: {i_status_vendor})")
|
|
||||||
|
|
||||||
client.close()
|
|
||||||
Reference in New Issue
Block a user