17 Commits

Author SHA1 Message Date
Nils Reiners
8642a057f0 excel sheet for heat pump registers now in template form. tested with script that was also added in folder. sg-ready testing file was also added. 2026-01-06 17:01:50 +01:00
Nils Reiners
ce14d59d51 adresse für hp angepasst 2026-01-05 17:15:25 +01:00
Nils Reiners
4727364048 scheint zu laufen 2025-12-09 22:07:57 +01:00
Nils Reiners
666eb211a3 old version of pv_forecaster restored 2025-10-29 22:03:46 +01:00
Nils Reiners
ba6ff9f6c3 stündliche Speicherung des Forecasts angepasst 2025-10-07 22:34:16 +02:00
Nils Reiners
9ccb1e042b stündliche Speicherung des Forecasts angepasst 2025-10-07 22:33:02 +02:00
Nils Reiners
a5bcfca39a stündliche Speicherung des Forecasts angepasst 2025-10-07 22:29:49 +02:00
Nils Reiners
a1f9e29134 pv forecaster added 2025-10-07 20:52:28 +02:00
Nils Reiners
98302b9af5 heat pump slave added 2025-09-28 20:21:54 +02:00
Nils Reiners
f3de1f9280 mode as binary 2025-09-25 21:45:09 +02:00
Nils Reiners
ecd0180483 debug 2025-09-25 21:30:42 +02:00
Nils Reiners
1784b7c283 storing sg ready mode to db 2025-09-25 21:24:45 +02:00
Nils Reiners
b066658eb0 controller implemented and tested 2025-09-25 21:16:51 +02:00
Nils Reiners
0bcf8a2d8c inverter and meter seems to run 2025-09-18 14:14:53 +02:00
Nils Reiners
397935f51a minor changes 2025-09-16 22:55:13 +02:00
Nils Reiners
8eda3bc954 reading out registers corrected 2025-09-16 22:46:42 +02:00
Nils Reiners
b9cba11be7 cleaned up 2025-09-16 12:57:37 +02:00
31 changed files with 895 additions and 1562 deletions

View File

@@ -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.

View File

@@ -0,0 +1,7 @@
from heat_pump import HeatPump
hp_master = HeatPump(device_name='hp_master', ip_address='10.0.0.10', port=502, excel_path="../modbus_registers/heat_pump_registers.xlsx")
state = hp_master.get_state()
print(state)

View File

@@ -0,0 +1,49 @@
from pymodbus.client import ModbusTcpClient
def switch_sg_ready_mode(ip, port, mode):
"""
Register 300: 1=BUS 0= Hardware Kontakte
Register 301 & 302:
0-0= Kein Offset
0-1 Boiler und Heizung Offset
1-1 Boiler Offset + E-Einsatz Sollwert Erhöht
1-0 SG EVU Sperre
:param ip:
:param mode:
'mode1' = [True, False, False] => SG Ready deactivated
'mode2' = [True, False, True] => SG ready activated for heatpump only
'mode3' = [True, True, True] => SG ready activated for heatpump and heat rod
:return:
"""
client = ModbusTcpClient(ip, port=port)
if not client.connect():
print("Verbindung zur Wärmepumpe fehlgeschlagen.")
return
mode_code = None
if mode == 'mode1':
mode_code = [True, False, False]
elif mode == 'mode2':
mode_code = [True, False, True]
elif mode == 'mode3':
mode_code = [True, True, True]
else:
print('Uncorrect or no string for mode!')
try:
response_300 = client.write_coil(300, mode_code[0])
response_301 = client.write_coil(301, mode_code[1])
response_302 = client.write_coil(302, mode_code[2])
# 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()
if '__name__' == '__main__':
switch_sg_ready_mode(ip='10.0.0.10', port=502, mode='mode2')

View File

@@ -1,46 +0,0 @@
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 modbus_registers
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 modbus_registers 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)

View File

@@ -1,5 +1,7 @@
from influxdb_client import InfluxDBClient, Point, WritePrecision
from datetime import datetime
import datetime as dt
import pandas as pd
class DataBaseInflux:
def __init__(self, url: str, token: str, org: str, bucket: str):
@@ -25,4 +27,22 @@ class DataBaseInflux:
# Punkt in InfluxDB schreiben
self.write_api.write(bucket=self.bucket, org=self.org, record=point)
def store_forecasts(self, forecast_name: str, data: pd.Series):
measurement = forecast_name
run_tag = dt.datetime.now(dt.timezone.utc).replace(second=0, microsecond=0).isoformat(timespec="minutes")
pts = []
series = pd.to_numeric(data, errors="coerce").dropna()
for ts, val in series.items():
pts.append(
Point(measurement)
.tag("run", run_tag)
.field("value", float(val))
.time(ts.to_pydatetime(), WritePrecision.S)
)
self.write_api.write(bucket=self.bucket, org=self.org, record=pts)

25
energysystem.py Normal file
View File

@@ -0,0 +1,25 @@
class EnergySystem():
def __init__(self):
self.components = []
def add_components(self, *args):
for comp in args:
self.components.append(comp)
def get_state_and_store_to_database(self, db):
state = {}
for comp in self.components:
component_state = comp.get_state()
state[comp.device_name] = component_state
db.store_data(comp.device_name, component_state)
return state
def get_component_by_name(self, name):
for comp in self.components:
if comp.device_name == name:
return comp

View File

@@ -0,0 +1,61 @@
#!/usr/bin/env python3
import time
import datetime as dt
import requests
from zoneinfo import ZoneInfo
from matplotlib import pyplot as plt
import pandas as pd
TZ = "Europe/Berlin"
DAYS = 2
OPEN_METEO_URL = "https://api.open-meteo.com/v1/forecast"
class WeatherForecaster:
def __init__(self, latitude, longitude):
self.lat = latitude
self.lon = longitude
def get_hourly_forecast(self, start_hour, days):
start_hour_local = start_hour
end_hour_local = start_hour_local + dt.timedelta(days=days)
params = {
"latitude": self.lat,
"longitude": self.lon,
"hourly": ["temperature_2m", "shortwave_radiation", "wind_speed_10m"],
"timezone": TZ,
"start_hour": start_hour_local.strftime("%Y-%m-%dT%H:%M"),
"end_hour": end_hour_local.strftime("%Y-%m-%dT%H:%M")
}
h = requests.get(OPEN_METEO_URL, params=params).json()["hourly"]
time_stamps = h["time"]
time_stamps = [
dt.datetime.fromisoformat(t).replace(tzinfo=ZoneInfo(TZ))
for t in time_stamps
]
weather = pd.DataFrame(index=time_stamps)
weather["ghi"] = h["shortwave_radiation"]
weather["temp_air"] = h["temperature_2m"]
weather["wind_speed"] = h["wind_speed_10m"]
return weather
if __name__=='__main__':
weather_forecast = WeatherForecaster(latitude=48.041, longitude=7.862)
while True:
now = dt.datetime.now()
secs = 60 - now.second #(60 - now.minute) * 60 - now.second # Sekunden bis volle Stunde
time.sleep(secs)
now_local = dt.datetime.now()
start_hour_local = (now_local + dt.timedelta(hours=1)).replace(minute=0, second=0, microsecond=0)
time_stamps, temps, ghi, wind_speed = weather_forecast.get_hourly_forecast(start_hour_local, DAYS)
plt.plot(time_stamps, temps)
plt.show()

View File

@@ -1,64 +1,177 @@
from pymodbus.client import ModbusTcpClient
import pandas as pd
import time
import struct
import math
class HeatPump:
def __init__(self, device_name: str, ip_address: str, port: int=502):
def __init__(self, device_name: str, ip_address: str, port: int = 502,
excel_path: str = "modbus_registers/heat_pump_registers_modbus.xlsx",
sheet_name: str = "Register_Map"):
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()
self.client = ModbusTcpClient(self.ip, port=self.port)
def connect_to_modbus(self):
port = self.port
self.client = ModbusTcpClient(self.ip, port=port)
self.excel_path = excel_path
self.sheet_name = sheet_name
self.registers = self.get_registers()
# -------------
# Connection
# -------------
def connect(self) -> bool:
ok = self.client.connect()
if not ok:
print("Verbindung zur Wärmepumpe fehlgeschlagen.")
return ok
def close(self):
try:
if not self.client.connect():
print("Verbindung zur Wärmepumpe fehlgeschlagen.")
exit(1)
print("Verbindung zur Wärmepumpe erfolgreich.")
except KeyboardInterrupt:
print("Beendet durch Benutzer (Ctrl+C).")
finally:
self.client.close()
except Exception:
pass
def get_registers(self):
# Excel-Datei mit den Input-Registerinformationen
excel_path = "modbus_registers/heat_pump_registers.xlsx"
xls = pd.ExcelFile(excel_path)
df_input_registers = xls.parse('04 Input Register')
# -------------
# Excel parsing
# -------------
def get_registers(self) -> dict:
df = pd.read_excel(self.excel_path, sheet_name=self.sheet_name)
df = df[df["Register_Type"].astype(str).str.upper() == "IR"].copy()
# Relevante Spalten bereinigen
df_clean = df_input_registers[['MB Adresse', 'Variable', 'Beschreibung', 'Variabel Typ']].dropna()
df_clean['MB Adresse'] = df_clean['MB Adresse'].astype(int)
df["Address"] = df["Address"].astype(int)
df["Length"] = df["Length"].astype(int)
df["Data_Type"] = df["Data_Type"].astype(str).str.upper()
df["Byteorder"] = df["Byteorder"].astype(str).str.upper()
# Dictionary aus Excel erzeugen
self.registers = {
row['MB Adresse']: {
'desc': row['Beschreibung'],
'type': 'REAL' if row['Variabel Typ'] == 'REAL' else 'INT'
df["Scaling"] = df.get("Scaling", 1.0)
df["Scaling"] = df["Scaling"].fillna(1.0).astype(float)
df["Offset"] = df.get("Offset", 0.0)
df["Offset"] = df["Offset"].fillna(0.0).astype(float)
regs = {}
for _, row in df.iterrows():
regs[int(row["Address"])] = {
"length": int(row["Length"]),
"data_type": row["Data_Type"],
"byteorder": row["Byteorder"],
"scaling": float(row["Scaling"]),
"offset": float(row["Offset"]),
"tag": str(row.get("Tag_Name", "")).strip(),
"desc": "" if pd.isna(row.get("Description")) else str(row.get("Description")).strip(),
}
for _, row in df_clean.iterrows()
}
return regs
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
# -------------
# Byteorder handling
# -------------
@staticmethod
def _registers_to_bytes(registers: list[int], byteorder_code: str) -> bytes:
"""
registers: Liste von uint16 (0..65535), wie pymodbus sie liefert.
byteorder_code: AB, ABCD, CDAB, BADC, DCBA (gemäß Template)
Rückgabe: bytes in der Reihenfolge, wie sie für struct.unpack benötigt werden.
"""
code = (byteorder_code or "ABCD").upper()
if reg_type == 'REAL':
value = result.registers[0] / 10.0
else:
value = result.registers[0]
# Pro Register: 16-bit => zwei Bytes (MSB, LSB)
words = [struct.pack(">H", r & 0xFFFF) for r in registers] # big endian pro Wort
if len(words) == 1:
w = words[0] # b'\xAA\xBB'
if code in ("AB", "ABCD", "CDAB"):
return w
if code == "BADC": # byte swap
return w[::-1]
if code == "DCBA": # byte swap (bei 16-bit identisch zu BADC)
return w[::-1]
return w
# 32-bit (2 words) oder 64-bit (4 words): Word/Byte swaps abbilden
# words[0] = high word bytes, words[1] = low word bytes (in Modbus-Reihenfolge gelesen)
if code == "ABCD":
ordered = words
elif code == "CDAB":
# word swap
ordered = words[1:] + words[:1]
elif code == "BADC":
# byte swap innerhalb jedes Words
ordered = [w[::-1] for w in words]
elif code == "DCBA":
# word + byte swap
ordered = [w[::-1] for w in (words[1:] + words[:1])]
else:
ordered = words
return b"".join(ordered)
@staticmethod
def _decode_by_type(raw_bytes: bytes, data_type: str):
dt = (data_type or "").upper()
# struct: > = big endian, < = little endian
# Wir liefern raw_bytes bereits in der richtigen Reihenfolge; daher nutzen wir ">" konsistent.
if dt == "UINT16":
return struct.unpack(">H", raw_bytes[:2])[0]
if dt == "INT16":
return struct.unpack(">h", raw_bytes[:2])[0]
if dt == "UINT32":
return struct.unpack(">I", raw_bytes[:4])[0]
if dt == "INT32":
return struct.unpack(">i", raw_bytes[:4])[0]
if dt == "FLOAT32":
return struct.unpack(">f", raw_bytes[:4])[0]
if dt == "FLOAT64":
return struct.unpack(">d", raw_bytes[:8])[0]
raise ValueError(f"Unbekannter Data_Type: {dt}")
def _decode_value(self, registers: list[int], meta: dict):
raw = self._registers_to_bytes(registers, meta["byteorder"])
val = self._decode_by_type(raw, meta["data_type"])
return (val * meta["scaling"]) + meta["offset"]
# -------------
# Reading
# -------------
def get_state(self) -> dict:
data = {"Zeit": time.strftime("%Y-%m-%d %H:%M:%S")}
if not self.connect():
data["error"] = "connect_failed"
return data
try:
for address, meta in self.registers.items():
count = int(meta["length"])
result = self.client.read_input_registers(address, count=count)
if result.isError():
print(f"Fehler beim Lesen von Adresse {address}: {result}")
continue
try:
value = self._decode_value(result.registers, meta)
except Exception as e:
print(f"Decode-Fehler an Adresse {address} ({meta.get('tag','')}): {e}")
continue
# Optional filter
# if self._is_invalid_sentinel(value):
# continue
desc = meta.get("desc") or ""
label = f"{address} - {desc}".strip(" -")
data[label] = value
tag = meta.get("tag")
if tag:
data[tag] = value
print(f"Adresse {address} - {desc}: {value}")
finally:
self.close()
print(f"Adresse {address} - {info['desc']}: {value}")
data[f"{address} - {info['desc']}"] = value
return data

65
main.py
View File

@@ -1,16 +1,24 @@
import time
from datetime import datetime
from data_base_csv import DataBaseCsv
from data_base_influx import DataBaseInflux
from forecaster.weather_forecaster import WeatherForecaster
from heat_pump import HeatPump
from pv_inverter import PvInverter
from simulators.pv_plant_simulator import PvWattsSubarrayConfig, PvWattsPlant
from solaredge_meter import SolaredgeMeter
from shelly_pro_3m import ShellyPro3m
from energysystem import EnergySystem
from sg_ready_controller import SgReadyController
from pvlib.location import Location
import datetime as dt
# For dev-System run in terminal: ssh -N -L 127.0.0.1:8111:10.0.0.10:502 pi@192.168.1.146
# For productive-System change port in heatpump to 502
# For productive-System change IP-adress in heatpump to '10.0.0.10' and port to 502
interval_seconds = 10
es = EnergySystem()
db = DataBaseInflux(
url="http://192.168.1.146:8086",
token="Cw_naEZyvJ3isiAh1P4Eq3TsjcHmzzDFS7SlbKDsS6ZWL04fMEYixWqtNxGThDdG27S9aW5g7FP9eiq5z1rsGA==",
@@ -18,18 +26,57 @@ db = DataBaseInflux(
bucket="allmende_db"
)
hp = HeatPump(device_name='hp_master', ip_address='localhost', port=8111)
hp_master = HeatPump(device_name='hp_master', ip_address='10.0.0.10', port=502)
hp_slave = HeatPump(device_name='hp_slave', ip_address='10.0.0.11', 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')
wr = PvInverter(device_name='solaredge_master', ip_address='192.168.1.112')
meter = SolaredgeMeter(device_name='solaredge_meter', ip_address='192.168.1.112')
#controller = SgReadyController(hp, wr)
es.add_components(hp_master, hp_slave, shelly, wr, meter)
controller = SgReadyController(es)
# FORECASTING
latitude = 48.041
longitude = 7.862
TZ = "Europe/Berlin"
HORIZON_DAYS = 2
weather_forecaster = WeatherForecaster(latitude=latitude, longitude=longitude)
site = Location(latitude=latitude, longitude=longitude, altitude=35, tz=TZ, name="Gundelfingen")
p_module = 435
upper_roof_north = PvWattsSubarrayConfig(name="north", pdc0_w=(29+29+21)*p_module, tilt_deg=10, azimuth_deg=20, dc_loss=0.02, ac_loss=0.01)
upper_roof_south = PvWattsSubarrayConfig(name="south", pdc0_w=(29+21+20)*p_module, tilt_deg=10, azimuth_deg=200, dc_loss=0.02, ac_loss=0.01)
upper_roof_east = PvWattsSubarrayConfig(name="east", pdc0_w=7*p_module, tilt_deg=10, azimuth_deg=110, dc_loss=0.02, ac_loss=0.01)
upper_roof_west = PvWattsSubarrayConfig(name="west", pdc0_w=7*p_module, tilt_deg=10, azimuth_deg=290, dc_loss=0.02, ac_loss=0.01)
cfgs = [upper_roof_north, upper_roof_south, upper_roof_east, upper_roof_west]
pv_plant = PvWattsPlant(site, cfgs)
now = datetime.now()
next_forecast_at = (now + dt.timedelta(hours=1)).replace(minute=0, second=0, microsecond=0)
while True:
now = datetime.now()
if now.second % interval_seconds == 0 and now.microsecond < 100_000:
db.store_data(hp.device_name, hp.get_state())
db.store_data(shelly.device_name, shelly.get_state())
db.store_data(wr.device_name, wr.get_state())
#controller.perform_action()
state = es.get_state_and_store_to_database(db)
mode = controller.perform_action(heat_pump_name='hp_master', meter_name='solaredge_meter', state=state)
if mode == 'mode1':
mode_as_binary = 0
else:
mode_as_binary = 1
db.store_data('sg_ready', {'mode': mode_as_binary})
if now >= next_forecast_at:
# Start der Prognose: ab der kommenden vollen Stunde
start_hour_local = (now + dt.timedelta(hours=1)).replace(minute=0, second=0, microsecond=0)
weather = weather_forecaster.get_hourly_forecast(start_hour_local, HORIZON_DAYS)
total = pv_plant.get_power(weather)
db.store_forecasts('pv_forecast', total)
# Nächste geplante Ausführung definieren (immer volle Stunde)
# Falls wir durch Delay mehrere Stunden verpasst haben, hole auf:
while next_forecast_at <= now:
next_forecast_at = (next_forecast_at + dt.timedelta(hours=1)).replace(minute=0, second=0, microsecond=0)
time.sleep(0.1)

View File

@@ -1,22 +0,0 @@
from sshtunnel import SSHTunnelForwarder
# ---- KONFIG ----
SSH_HOST = "192.168.1.146" # Raspberry Pi im 192.168.1.x Netz
SSH_PORT = 22
SSH_USER = "pi"
PASSWORD = 'raspberry' # oder Passwort als String
REMOTE_IP = "10.0.0.10" # Wärmepumpe im 10.0.0.x Netz
REMOTE_PORT = 502 # Modbus/TCP Port
def make_tunnel(port):
tunnel = SSHTunnelForwarder(
(SSH_HOST, SSH_PORT),
ssh_username=SSH_USER,
ssh_password=PASSWORD,
remote_bind_address=(REMOTE_IP, REMOTE_PORT),
local_bind_address=("127.0.0.1", port),
)
tunnel.start()
return tunnel

View File

@@ -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
1 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
2 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
3 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
4 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
5 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
6 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
7 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
8 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
9 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
10 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
11 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
12 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
13 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
14 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
15 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
16 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
17 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
18 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
19 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
20 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
21 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
22 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
23 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
24 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
25 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
26 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
27 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
28 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
29 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
30 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
31 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
32 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
33 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
34 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
35 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
36 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
37 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
38 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
39 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
40 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
41 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
42 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
43 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
44 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
45 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
46 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
47 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
48 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
49 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
50 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
51 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
52 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
53 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
54 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
55 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
56 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
57 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
58 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
59 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
60 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
61 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
62 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
63 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
64 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
65 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
66 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
67 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
68 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
69 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
70 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
71 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
72 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
73 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
74 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
75 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
76 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
77 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
78 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
79 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
80 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
81 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
82 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
83 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
84 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
85 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
86 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
87 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
88 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
89 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
90 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
91 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
92 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
93 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
94 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
95 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
96 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
97 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
98 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
99 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
100 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
101 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
102 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
103 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
104 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
105 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
106 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
107 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
108 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
109 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
110 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
111 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
112 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
113 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
114 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
115 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
116 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
117 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
118 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
119 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
120 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
121 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
122 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
123 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
124 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
125 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
126 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
127 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
128 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
129 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
130 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
131 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
132 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
133 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
134 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
135 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
136 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
137 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
138 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
139 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
140 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
141 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
142 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
143 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
144 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
145 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
146 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
147 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
148 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
149 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
150 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
151 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
152 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
153 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
154 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
155 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
156 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
157 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
158 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
159 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
160 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
161 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
162 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
163 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
164 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
165 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
166 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
167 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
168 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
169 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
170 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
171 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
172 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
173 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
174 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
175 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
176 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
177 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
178 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
179 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
180 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
181 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
182 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
183 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
184 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
185 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
186 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
187 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
188 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
189 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
190 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
191 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
192 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
193 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
194 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
195 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
196 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
197 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
198 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
199 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
200 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
201 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
202 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
203 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
204 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
205 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
206 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
207 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
208 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
209 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
210 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
211 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
212 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
213 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
214 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
215 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
216 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
217 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
218 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
219 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
220 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
221 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
222 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
223 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
224 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
225 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
226 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
227 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
228 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
229 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
230 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
231 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
232 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
233 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
234 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
235 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
236 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
237 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
238 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
239 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
240 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
241 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
242 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
243 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
244 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
245 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
246 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
247 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
248 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
249 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
250 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
251 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
252 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
253 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
254 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
255 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
256 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
257 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
258 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
259 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
260 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
261 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
262 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
263 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
264 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
265 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
266 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
267 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
268 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
269 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
270 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
271 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
272 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
273 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
274 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
275 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
276 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
277 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
278 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
279 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
280 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
281 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
282 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
283 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
284 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
285 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
286 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
287 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
288 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
289 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
290 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
291 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
292 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
293 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
294 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
295 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
296 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
297 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
298 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
299 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
300 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
301 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
302 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
303 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
304 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
305 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
306 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
307 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
308 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
309 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
310 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
311 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
312 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
313 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
314 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
315 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
316 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
317 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
318 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
319 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
320 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
321 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
322 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
323 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
324 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
325 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
326 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
327 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
328 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
329 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
330 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
331 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
332 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
333 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
334 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
335 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
336 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
337 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
338 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
339 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
340 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
341 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
342 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
343 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
344 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
345 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
346 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
347 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
348 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
349 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
350 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
351 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
352 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
353 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
354 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
355 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
356 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
357 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
358 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
359 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
360 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
361 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
362 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
363 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
364 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
365 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
366 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
367 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
368 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
369 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
370 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
371 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
372 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
373 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
374 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
375 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
376 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
377 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
378 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
379 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
380 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
381 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
382 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
383 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
384 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
385 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
386 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
387 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
388 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
389 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
390 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
391 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
392 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
393 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
394 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
395 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
396 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
397 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
398 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
399 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
400 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
401 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
402 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
403 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
404 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
405 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
406 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
407 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
408 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
409 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
410 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
411 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
412 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
413 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
414 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
415 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
416 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
417 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
418 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
419 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
420 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
421 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
422 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
423 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
424 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
425 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
426 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
427 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
428 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
429 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
430 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
431 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
432 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
433 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
434 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
435 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
436 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
437 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
438 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
439 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
440 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
441 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
442 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
443 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
444 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
445 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
446 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
447 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
448 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
449 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
450 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
451 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
452 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
453 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
454 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
455 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
456 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
457 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
458 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
459 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
460 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
461 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
462 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
463 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
464 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
465 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
466 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
467 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
468 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
469 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
470 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
471 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
472 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
473 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
474 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
475 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
476 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
477 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
478 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
479 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
480 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
481 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
482 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
483 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
484 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
485 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
486 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
487 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
488 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
489 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
490 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
491 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
492 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
493 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
494 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
495 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
496 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
497 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
498 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
499 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
500 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
501 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
502 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
503 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
504 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
505 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
506 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
507 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
508 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
509 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
510 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
511 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
512 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
513 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
514 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
515 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
516 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
517 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
518 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
519 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
520 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
521 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
522 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
523 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
524 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
525 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
526 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
527 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
528 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
529 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
530 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
531 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
532 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
533 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
534 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
535 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
536 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
537 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
538 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
539 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
540 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
541 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
542 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
543 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
544 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
545 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
546 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
547 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
548 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
549 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
550 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
551 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
552 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
553 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
554 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
555 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
556 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
557 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
558 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
559 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
560 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
561 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
562 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
563 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
564 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
565 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
566 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
567 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
568 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
569 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
570 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
571 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
572 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
573 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
574 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
575 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
576 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
577 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
578 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
579 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
580 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
581 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
582 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
583 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
584 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
585 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
586 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
587 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
588 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
589 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
590 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
591 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
592 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
593 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
594 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
595 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
596 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
597 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
598 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
599 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
600 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
601 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
602 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
603 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
604 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
605 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
606 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
607 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
608 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
609 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
610 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
611 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
612 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
613 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
614 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
615 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
616 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
617 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
618 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
619 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
620 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
621 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
622 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
623 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
624 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
625 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
626 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
627 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
628 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
629 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
630 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
631 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
632 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
633 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
634 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
635 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
636 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
637 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
638 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
639 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
640 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
641 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
642 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
643 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
644 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
645 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
646 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
647 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
648 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
649 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
650 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
651 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
652 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
653 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
654 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
655 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
656 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
657 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
658 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
659 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
660 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
661 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
662 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
663 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
664 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
665 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
666 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
667 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
668 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
669 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
670 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
671 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
672 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
673 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
674 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
675 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
676 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
677 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
678 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
679 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
680 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
681 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
682 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
683 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
684 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
685 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
686 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
687 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
688 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
689 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
690 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
691 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
692 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
693 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
694 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
695 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
696 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
697 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
698 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
699 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
700 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
701 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
702 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
703 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
704 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
705 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
706 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
707 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
708 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
709 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
710 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
711 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
712 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
713 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.

View File

@@ -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()

View File

@@ -1,68 +1,139 @@
import time
import struct
import pandas as pd
from typing import Dict, Any, List, Tuple, Optional
from pymodbus.client import ModbusTcpClient
EXCEL_PATH = "modbus_registers/pv_inverter_registers.xlsx"
# Obergrenze: bis EXKLUSIVE 40206 (d.h. max. 40205)
MAX_ADDR_EXCLUSIVE = 40121
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 = None
self.registers = None
self.client: Optional[ModbusTcpClient] = None
self.registers: Dict[int, Dict[str, Any]] = {} # addr -> {"desc":..., "type":...}
self.connect_to_modbus()
self.get_registers()
self.load_registers(EXCEL_PATH)
# ---------- Verbindung ----------
def connect_to_modbus(self):
# Timeout & retries optional, aber hilfreich:
self.client = ModbusTcpClient(self.ip, port=self.port, timeout=3.0, retries=3)
if not self.client.connect():
print("Verbindung zu Wechselrichter fehlgeschlagen.")
print("Verbindung zu Wechselrichter fehlgeschlagen.")
raise SystemExit(1)
print("Verbindung zu Wechselrichter erfolgreich.")
# WICHTIG: NICHT hier schließen!
# finally: self.client.close() <-- entfernen
print("Verbindung zu Wechselrichter hergestellt.")
def close(self):
if self.client:
self.client.close()
self.client = None
def get_registers(self):
excel_path = "modbus_registers/pv_inverter_registers.xlsx"
# ---------- Register-Liste ----------
def load_registers(self, excel_path: str):
xls = pd.ExcelFile(excel_path)
df_input_registers = xls.parse()
df_clean = df_input_registers[['MB Adresse', 'Beschreibung', 'Variabel Typ']].dropna()
df_clean['MB Adresse'] = df_clean['MB Adresse'].astype(int)
df = xls.parse()
# Passe Spaltennamen hier an, falls nötig:
cols = ["MB Adresse", "Beschreibung", "Variabel Typ"]
df = df[cols].dropna()
df["MB Adresse"] = df["MB Adresse"].astype(int)
# 1) Vorab-Filter: nur Adressen < 40206 übernehmen
df = df[df["MB Adresse"] < MAX_ADDR_EXCLUSIVE]
self.registers = {
row['MB Adresse']: {
'desc': row['Beschreibung'],
'type': 'REAL' if str(row['Variabel Typ']).upper() == 'REAL' else 'INT'
int(row["MB Adresse"]): {
"desc": str(row["Beschreibung"]).strip(),
"type": str(row["Variabel Typ"]).strip()
}
for _, row in df_clean.iterrows()
for _, row in df.iterrows()
}
def get_state(self):
data = {'Zeit': time.strftime('%Y-%m-%d %H:%M:%S')}
for address, info in self.registers.items():
reg_type = info['type']
# Unit-ID mitgeben (wichtig bei pymodbus>=3)
result = self.client.read_holding_registers(
address=address,
count=2 if reg_type == 'REAL' else 1,
slave=self.unit # pymodbus 2.x -> 'slave', nicht 'unit'
)
if result.isError():
print(f"Fehler beim Lesen von Adresse {address}: {result}")
# ---------- 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
# Minimal invasiv: wie bei dir erstes Register verwenden
value = result.registers[0]
print(f"Adresse {address} - {info['desc']}: {value}")
data[f"{address} - {info['desc']}"] = value
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:
b = struct.pack(">HH", u16_hi, u16_lo) if msw_first else struct.pack(">HH", u16_lo, u16_hi)
return struct.unpack(">f", b)[0]
# Hilfsfunktion: wie viele 16-Bit-Register braucht dieser Typ?
@staticmethod
def _word_count_for_type(rtype: str) -> int:
rt = (rtype or "").lower()
# Passe hier an deine Excel-Typen an:
if "uint32" in rt or "real" in rt or "float" in rt or "string(32)" in rt:
return 2
# Default: 1 Wort (z.B. int16/uint16)
return 1
def read_one(self, address_excel: int, rtype: str) -> Optional[float]:
"""
Liest einen Wert nach Typ ('INT' oder 'REAL' etc.).
Es werden ausschließlich Register < 40206 gelesen.
"""
addr = int(address_excel)
words = self._word_count_for_type(rtype)
# 2) Harte Grenze prüfen: höchstes angefasstes Register muss < 40206 sein
if addr + words - 1 >= MAX_ADDR_EXCLUSIVE:
# Überspringen, da der Lesevorgang die Grenze >= 40206 berühren würde
return None
if words == 2:
regs = self._read_any(addr, 2)
if not regs or len(regs) < 2:
return None
# Deine bisherige Logik interpretiert 2 Worte als Float32:
return self._to_f32_from_two(regs[0], regs[1])
else:
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.
Achtet darauf, dass keine Adresse (inkl. Mehrwort) >= 40206 gelesen wird.
"""
data = {"Zeit": time.strftime("%Y-%m-%d %H:%M:%S")}
for address, meta in sorted(self.registers.items()):
words = self._word_count_for_type(meta["type"])
# 3) Nochmals Schutz auf Ebene der Iteration:
if address + words - 1 >= MAX_ADDR_EXCLUSIVE:
continue
val = self.read_one(address, meta["type"])
if val is None:
continue
key = f"{address} - {meta['desc']}"
data[key] = val
return data

View File

@@ -1,4 +1,5 @@
pymodbus~=3.8.6
pandas
openpyxl
sshtunnel
sshtunnel
pvlib

65
sg_ready_controller.py Normal file
View File

@@ -0,0 +1,65 @@
from pymodbus.client import ModbusTcpClient
class SgReadyController():
def __init__(self, es):
self.es = es
def perform_action(self, heat_pump_name, meter_name, state):
hp = self.es.get_component_by_name(heat_pump_name)
meter_values = state[meter_name]
power_to_grid = meter_values['40206 - M_AC_Power'] * 10 ** meter_values['40210 - M_AC_Power_SF']
mode = None
if power_to_grid > 10000:
mode = 'mode2'
self.switch_sg_ready_mode(hp.ip, hp.port, mode)
elif power_to_grid < 0:
mode = 'mode1'
self.switch_sg_ready_mode(hp.ip, hp.port, mode)
return mode
def switch_sg_ready_mode(self, ip, port, mode):
"""
Register 300: 1=BUS 0= Hardware Kontakte
Register 301 & 302:
0-0= Kein Offset
0-1 Boiler und Heizung Offset
1-1 Boiler Offset + E-Einsatz Sollwert Erhöht
1-0 SG EVU Sperre
:param ip:
:param mode:
'mode1' = [True, False, False] => SG Ready deactivated
'mode2' = [True, False, True] => SG ready activated for heatpump only
'mode3' = [True, True, True] => SG ready activated for heatpump and heat rod
:return:
"""
client = ModbusTcpClient(ip, port=port)
if not client.connect():
print("Verbindung zur Wärmepumpe fehlgeschlagen.")
return
mode_code = None
if mode == 'mode1':
mode_code = [True, False, False]
elif mode == 'mode2':
mode_code = [True, False, True]
elif mode == 'mode3':
mode_code = [True, True, True]
else:
print('Uncorrect or no string for mode!')
try:
response_300 = client.write_coil(300, mode_code[0])
response_301 = client.write_coil(301, mode_code[1])
response_302 = client.write_coil(302, mode_code[2])
# 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()

View File

@@ -0,0 +1,210 @@
from __future__ import annotations
from dataclasses import dataclass
from typing import Optional, Dict, List, Literal, Tuple, Union
import numpy as np
import pandas as pd
import pvlib
import matplotlib.pyplot as plt
from pvlib.location import Location
from pvlib.pvsystem import PVSystem
from pvlib.modelchain import ModelChain
SeriesOrArray = Union[pd.Series, np.ndarray]
# ----------------------------- Konfiguration -----------------------------
@dataclass
class PvWattsSubarrayConfig:
name: str
pdc0_w: float # STC-DC-Leistung [W]
tilt_deg: float # Neigung (0=horizontal)
azimuth_deg: float # Azimut (180=Süd)
gamma_pdc: float = -0.004 # Tempkoeff. [1/K]
eta_inv_nom: float = 0.96 # WR-Wirkungsgrad (nominal)
albedo: float = 0.2 # Bodenreflexion
# Pauschale Verluste (PVWatts-Losses)
dc_loss: float = 0.0
ac_loss: float = 0.0
soiling: float = 0.0
# Modell
transposition_model: Literal["perez","haydavies","isotropic","klucher","reindl"] = "perez"
# ------------------------------ Subarray ---------------------------------
class PvWattsSubarray:
"""
Ein Subarray mit pvlib.ModelChain (PVWatts).
Berechnet automatisch DNI/DHI aus GHI (ERBS-Methode)
und nutzt ein SAPM-Temperaturmodell.
"""
def __init__(self, cfg: PvWattsSubarrayConfig, location: Location):
self.cfg = cfg
self.location = location
self._mc: Optional[ModelChain] = None
# ---------------------------------------------------------------------
def _create_modelchain(self) -> ModelChain:
"""Erzeuge eine pvlib.ModelChain-Instanz mit PVWatts-Parametern."""
temp_params = pvlib.temperature.TEMPERATURE_MODEL_PARAMETERS["sapm"]["open_rack_glass_polymer"]
system = PVSystem(
surface_tilt=self.cfg.tilt_deg,
surface_azimuth=self.cfg.azimuth_deg,
module_parameters={"pdc0": self.cfg.pdc0_w, "gamma_pdc": self.cfg.gamma_pdc},
inverter_parameters={"pdc0": self.cfg.pdc0_w, "eta_inv_nom": self.cfg.eta_inv_nom},
albedo=self.cfg.albedo,
temperature_model_parameters=temp_params,
module_type="glass_polymer",
racking_model="open_rack",
)
mc = ModelChain(
system, self.location,
transposition_model=self.cfg.transposition_model,
solar_position_method="nrel_numpy",
airmass_model="kastenyoung1989",
dc_model="pvwatts",
ac_model="pvwatts",
aoi_model="physical",
spectral_model=None,
losses_model="pvwatts",
temperature_model="sapm",
)
mc.losses_parameters = {
"dc_loss": float(self.cfg.dc_loss),
"ac_loss": float(self.cfg.ac_loss),
"soiling": float(self.cfg.soiling),
}
self._mc = mc
return mc
# ---------------------------------------------------------------------
def calc_dni_and_dhi(self, weather: pd.DataFrame) -> pd.DataFrame:
"""
Berechnet DNI & DHI aus GHI über die ERBS-Methode.
Gibt ein neues DataFrame mit 'ghi', 'dni', 'dhi' zurück.
"""
if "ghi" not in weather:
raise ValueError("Wetterdaten benötigen mindestens 'ghi'.")
# Sonnenstand bestimmen
sp = self.location.get_solarposition(weather.index)
erbs = pvlib.irradiance.erbs(weather["ghi"], sp["zenith"], weather.index)
out = weather.copy()
out["dni"] = erbs["dni"].clip(lower=0)
out["dhi"] = erbs["dhi"].clip(lower=0)
return out
# ---------------------------------------------------------------------
def _prepare_weather(self, weather: pd.DataFrame) -> pd.DataFrame:
"""Sichert vollständige Spalten (ghi, dni, dhi, temp_air, wind_speed)."""
if "ghi" not in weather or "temp_air" not in weather:
raise ValueError("weather benötigt Spalten: 'ghi' und 'temp_air'.")
w = weather.copy()
# Zeitzone prüfen
if w.index.tz is None:
w.index = w.index.tz_localize(self.location.tz)
else:
if str(w.index.tz) != str(self.location.tz):
w = w.tz_convert(self.location.tz)
# Wind default
if "wind_speed" not in w:
w["wind_speed"] = 1.0
# DNI/DHI ergänzen (immer mit ERBS)
if "dni" not in w or "dhi" not in w:
w = self.calc_dni_and_dhi(w)
return w
# ---------------------------------------------------------------------
def get_power(self, weather: pd.DataFrame) -> pd.Series:
"""
Berechnet AC-Leistung aus Wetterdaten.
"""
w = self._prepare_weather(weather)
mc = self._create_modelchain()
mc.run_model(weather=w)
return mc.results.ac.rename(self.cfg.name)
# ------------------------------- Anlage ----------------------------------
class PvWattsPlant:
"""
Eine PV-Anlage mit mehreren Subarrays, die ein gemeinsames Wetter-DataFrame nutzt.
"""
def __init__(self, site: Location, subarray_cfgs: List[PvWattsSubarrayConfig]):
self.site = site
self.subs: Dict[str, PvWattsSubarray] = {c.name: PvWattsSubarray(c, site) for c in subarray_cfgs}
def get_power(
self,
weather: pd.DataFrame,
*,
return_breakdown: bool = False
) -> pd.Series | Tuple[pd.Series, Dict[str, pd.Series]]:
"""Berechne Gesamtleistung und optional Einzel-Subarrays."""
parts: Dict[str, pd.Series] = {name: sub.get_power(weather) for name, sub in self.subs.items()}
# gemeinsamen Index bilden
idx = list(parts.values())[0].index
for s in parts.values():
idx = idx.intersection(s.index)
parts = {k: v.reindex(idx).fillna(0.0) for k, v in parts.items()}
total = sum(parts.values())
total.name = "total_ac"
if return_breakdown:
return total, parts
return total
# --------------------------- Beispielnutzung -----------------------------
if __name__ == "__main__":
# Standort
site = Location(latitude=52.52, longitude=13.405, altitude=35, tz="Europe/Berlin", name="Berlin")
# Zeitachse: 1 Tag, 15-minütig
times = pd.date_range("2025-06-21 00:00", "2025-06-21 23:45", freq="15min", tz=site.tz)
# Dummy-Wetter
ghi = 1000 * np.clip(np.sin(np.linspace(0, np.pi, len(times)))**1.2, 0, None)
temp_air = 16 + 8 * np.clip(np.sin(np.linspace(-np.pi/2, np.pi/2, len(times))), 0, None)
wind = np.full(len(times), 1.0)
weather = pd.DataFrame(index=times)
weather["ghi"] = ghi
weather["temp_air"] = temp_air
weather["wind_speed"] = wind
# Zwei Subarrays
cfgs = [
PvWattsSubarrayConfig(name="Sued_30", pdc0_w=6000, tilt_deg=30, azimuth_deg=180, dc_loss=0.02, ac_loss=0.01),
PvWattsSubarrayConfig(name="West_20", pdc0_w=4000, tilt_deg=20, azimuth_deg=270, soiling=0.02),
]
plant = PvWattsPlant(site, cfgs)
# Simulation
total, parts = plant.get_power(weather, return_breakdown=True)
# Plot
plt.figure(figsize=(10, 6))
plt.plot(total.index, total / 1000, label="Gesamtleistung (AC)", linewidth=2, color="black")
for name, s in parts.items():
plt.plot(s.index, s / 1000, label=name)
plt.title("PV-Leistung (PVWatts, ERBS-Methode für DNI/DHI)")
plt.ylabel("Leistung [kW]")
plt.xlabel("Zeit")
plt.legend()
plt.grid(True, linestyle="--", alpha=0.5)
plt.tight_layout()
plt.show()

134
solaredge_meter.py Normal file
View File

@@ -0,0 +1,134 @@
import time
import struct
import pandas as pd
from typing import Dict, Any, List, Tuple, Optional
from pymodbus.client import ModbusTcpClient
EXCEL_PATH = "modbus_registers/pv_inverter_registers.xlsx"
# Obergrenze: bis EXKLUSIVE 40206 (d.h. max. 40205)
MIN_ADDR_INCLUSIVE = 40121
ADDRESS_SHIFT = 50
class SolaredgeMeter:
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 Zähler fehlgeschlagen.")
raise SystemExit(1)
print("✅ Verbindung zu Zähler 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()
# Passe Spaltennamen hier an, falls nötig:
cols = ["MB Adresse", "Beschreibung", "Variabel Typ"]
df = df[cols].dropna()
df["MB Adresse"] = df["MB Adresse"].astype(int)
# 1) Vorab-Filter: nur Adressen < 40206 übernehmen
df = df[df["MB Adresse"] >= MIN_ADDR_INCLUSIVE]
self.registers = {
int(row["MB Adresse"]): {
"desc": str(row["Beschreibung"]).strip(),
"type": str(row["Variabel Typ"]).strip()
}
for _, row in df.iterrows()
}
# ---------- 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
shifted_addr = address + ADDRESS_SHIFT
for kwargs in (dict(address=shifted_addr, count=count, slave=self.unit),
dict(address=shifted_addr, 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:
b = struct.pack(">HH", u16_hi, u16_lo) if msw_first else struct.pack(">HH", u16_lo, u16_hi)
return struct.unpack(">f", b)[0]
# Hilfsfunktion: wie viele 16-Bit-Register braucht dieser Typ?
@staticmethod
def _word_count_for_type(rtype: str) -> int:
rt = (rtype or "").lower()
# Passe hier an deine Excel-Typen an:
if "uint32" in rt or "real" in rt or "float" in rt or "string(32)" in rt:
return 2
# Default: 1 Wort (z.B. int16/uint16)
return 1
def read_one(self, address_excel: int, rtype: str) -> Optional[float]:
"""
Liest einen Wert nach Typ ('INT' oder 'REAL' etc.).
Es werden ausschließlich Register < 40206 gelesen.
"""
addr = int(address_excel)
words = self._word_count_for_type(rtype)
if words == 2:
regs = self._read_any(addr, 2)
if not regs or len(regs) < 2:
return None
# Deine bisherige Logik interpretiert 2 Worte als Float32:
return self._to_f32_from_two(regs[0], regs[1])
else:
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.
Achtet darauf, dass keine Adresse (inkl. Mehrwort) >= 40206 gelesen wird.
"""
data = {"Zeit": time.strftime("%Y-%m-%d %H:%M:%S")}
for address, meta in sorted(self.registers.items()):
words = self._word_count_for_type(meta["type"])
val = self.read_one(address, meta["type"])
if val is None:
continue
key = f"{address} - {meta['desc']}"
data[key] = val
return data

View File

@@ -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

View File

@@ -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()