diff --git a/debian/changelog b/debian/changelog index 30aae4f..65a0a6f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +gecko-controller (0.7.5) stable; urgency=medium + + * Bump version to 0.7.5 + + -- GlassOnTin <63980135+GlassOnTin@users.noreply.github.com> Sun, 17 Nov 2024 16:32:24 +0000 + gecko-controller (0.7.4) stable; urgency=medium * Bump version to 0.7.4 diff --git a/gecko_controller/controller.py b/gecko_controller/controller.py index bf79140..eb3efa6 100755 --- a/gecko_controller/controller.py +++ b/gecko_controller/controller.py @@ -12,7 +12,6 @@ from typing import Tuple, Optional from pathlib import Path - # Constants for logging LOG_DIR = "/var/log/gecko-controller" LOG_FILE = "readings.csv" @@ -126,16 +125,6 @@ def write_data(self, data: int): class GeckoController: def __init__(self): - # Convert time settings from config to datetime.time objects - self.light_on_time = self.parse_time_setting(LIGHT_ON_TIME) - self.light_off_time = self.parse_time_setting(LIGHT_OFF_TIME) - print(f"Light on @ {self.light_on_time}, Light off @ {self.light_off_time}\n") - - # Use thresholds from config - self.UVA_THRESHOLDS = UVA_THRESHOLDS - self.UVB_THRESHOLDS = UVB_THRESHOLDS - print(f"UVA Thresholds = {self.UVA_THRESHOLDS}, UVB Thresholds = {self.UVB_THRESHOLDS}\n") - # GPIO Setup GPIO.setmode(GPIO.BCM) GPIO.setup(LIGHT_RELAY, GPIO.OUT) @@ -149,11 +138,27 @@ def __init__(self): self.setup_logging() self.last_log_time = 0 self.bus = smbus2.SMBus(1) + + # Convert time settings from config to datetime.time objects + self.light_on_time = self.parse_time_setting(LIGHT_ON_TIME) + self.light_off_time = self.parse_time_setting(LIGHT_OFF_TIME) + print(f"Light on @ {self.light_on_time}, Light off @ {self.light_off_time}\n") + # Use thresholds from config + self.UVA_THRESHOLDS = UVA_THRESHOLDS + self.UVB_THRESHOLDS = UVB_THRESHOLDS + print(f"UVA Thresholds = {self.UVA_THRESHOLDS}, UVB Thresholds = {self.UVB_THRESHOLDS}\n") + + # Calculate UV correction factor + self.uv_correction_factor = self.calculate_uv_correction() + print(f"\nUV Correction Factor: {self.uv_correction_factor:.3f}") + print(f"Sensor Position: {SENSOR_HEIGHT}m height, {LAMP_DIST_FROM_BACK}m from back") + print(f"Lamp Height: {ENCLOSURE_HEIGHT}m, Sensor Angle: {SENSOR_ANGLE}°\n") + # UV sensor configuration with fallback paths try: # First try relative import (when installed as package) - from .as7331 import AS7331, INTEGRATION_TIME_256MS, GAIN_16X + from .as7331 import AS7331, INTEGRATION_TIME_256MS, GAIN_16X, MEASUREMENT_MODE_CONTINUOUS except ImportError: try: # Try importing from the same directory as this script @@ -161,26 +166,27 @@ def __init__(self): import sys script_dir = os.path.dirname(os.path.abspath(__file__)) sys.path.append(script_dir) - from as7331 import AS7331, INTEGRATION_TIME_256MS, GAIN_16X + from as7331 import AS7331, INTEGRATION_TIME_256MS, GAIN_16X, MEASUREMENT_MODE_CONTINUOUS + print("Imported UV sensor (as7331) module ok") except ImportError: - print("Warning: AS7331 module not found, UV sensing disabled") + print("Warning: UV sensor module (AS7331) not found. UV sensing disabled") print(f"Looked in: {script_dir}") print("Make sure as7331.py is in the same directory as this script") self.uv_sensor = None else: - self.uv_sensor = AS7331(1) + self.uv_sensor = AS7331(1) self.uv_sensor.integration_time = INTEGRATION_TIME_256MS self.uv_sensor.gain = GAIN_16X + self.uv_sensor.measurement_mode = MEASUREMENT_MODE_CONTINUOUS else: self.uv_sensor = AS7331(1) self.uv_sensor.integration_time = INTEGRATION_TIME_256MS self.uv_sensor.gain = GAIN_16X - - # Calculate UV correction factor - self.uv_correction_factor = self.calculate_uv_correction() - print(f"\nUV Correction Factor: {self.uv_correction_factor:.3f}") - print(f"Sensor Position: {SENSOR_HEIGHT}m height, {LAMP_DIST_FROM_BACK}m from back") - print(f"Lamp Height: {ENCLOSURE_HEIGHT}m, Sensor Angle: {SENSOR_ANGLE}°\n") + + if self.uv_sensor: + print("UV Sensor (AS7331) ready") + print(f" measurement mode: {self.uv_sensor.measurement_mode_as_string}") + print(f" standby state: {self.uv_sensor.standby_state}") # Create an image buffer self.image = Image.new('1', (128, 64), 255) # 255 = white background @@ -421,12 +427,16 @@ def read_uv(self) -> Tuple[Optional[float], Optional[float], Optional[float]]: """Read UV values from the sensor and apply geometric correction""" try: if self.uv_sensor is None: + print(f"UV sensor is None") return None, None, None - uva, uvb, uvc, temp = self.uv_sensor.values + uva, uvb, uvc, temp = self.uv_sensor.values # Apply correction factor if uva is not None: uva = uva * self.uv_correction_factor + else: + print(f"UV sensor read error") + if uvb is not None: uvb = uvb * self.uv_correction_factor if uvc is not None: @@ -476,15 +486,16 @@ def run(self): while True: temp, humidity = self.read_sensor() uva, uvb, uvc = self.read_uv() + light_status = self.control_light() + heat_status = self.control_heat(temp) + #print(temp,humidity,uva, uvb, uvc, light_status, heat_status) if temp is not None and humidity is not None: - light_status = self.control_light() - heat_status = self.control_heat(temp) self.update_display(temp, humidity, uva, uvb, uvc, light_status, heat_status) self.log_readings(temp, humidity, uva, uvb, uvc, light_status, heat_status) - time.sleep(2) + time.sleep(10) except KeyboardInterrupt: print("\nShutting down...") diff --git a/gecko_controller/web/static/app.js b/gecko_controller/web/static/app.js index 476bbd8..50e5b76 100644 --- a/gecko_controller/web/static/app.js +++ b/gecko_controller/web/static/app.js @@ -473,14 +473,14 @@ document.addEventListener('DOMContentLoaded', function() { data: [] }, { - label: 'UVB (μW/cm²)', + label: 'UVB (mW/cm²)', borderColor: 'rgb(75, 192, 192)', yAxisID: 'y1', tension: 0.1, data: [] }, { - label: 'UVC (μW/cm²)', + label: 'UVC (mW/cm²)', borderColor: 'rgb(153, 102, 255)', yAxisID: 'y1', tension: 0.1, @@ -508,6 +508,8 @@ document.addEventListener('DOMContentLoaded', function() { text: 'UVA (mW/cm²)' }, beginAtZero: true, + min:0, + suggestedMax: 200 }, y1: { type: 'linear', @@ -515,9 +517,11 @@ document.addEventListener('DOMContentLoaded', function() { position: 'right', title: { display: true, - text: 'UVB/UVC (μW/cm²)' + text: 'UVB/UVC (mW/cm²)' }, beginAtZero: true, + min:0, + suggestedMax: 10, grid: { drawOnChartArea: false, }, diff --git a/readings.csv b/readings.csv new file mode 100644 index 0000000..3686e45 --- /dev/null +++ b/readings.csv @@ -0,0 +1,886 @@ +2024-11-15 17:52:01,451,26.8,48.4,0.00,0.00,0.00,1,1 +2024-11-15 17:56:33,404,27.0,47.8,0.0830,0.0923,0.0405,1,1 +2024-11-15 17:57:35,068,27.1,47.7,41.5039,0.4614,0.1216,1,1 +2024-11-15 17:58:36,717,27.1,47.7,41.4209,0.4614,0.1216,1,1 +2024-11-15 17:59:38,559,27.1,47.7,41.6699,0.4614,0.1216,1,1 +2024-11-15 18:00:40,493,27.1,47.6,0.0000,0.0000,0.0000,0,0 +2024-11-15 18:01:42,230,27.1,47.6,0.0000,0.0000,0.0000,0,0 +2024-11-15 18:02:44,167,27.1,47.5,0.0830,0.0923,0.0000,0,0 +2024-11-15 18:03:46,117,27.0,47.6,0.0830,0.0923,0.0405,0,0 +2024-11-15 18:04:48,035,26.9,47.7,0.0830,0.0923,0.0405,0,0 +2024-11-15 18:05:50,009,26.9,47.8,0.0830,0.0923,0.0000,0,0 +2024-11-15 18:06:51,815,26.8,47.9,0.0830,0.0000,0.0000,0,0 +2024-11-15 18:07:53,749,26.7,48.0,0.0000,0.0000,0.0000,0,0 +2024-11-15 18:08:55,448,26.6,48.2,0.0830,0.0923,0.0405,0,0 +2024-11-15 18:09:57,499,26.6,48.4,0.0000,0.0000,0.0000,0,0 +2024-11-15 18:10:59,340,26.5,48.3,0.0830,0.0923,0.0405,0,0 +2024-11-15 18:12:01,242,26.4,48.5,0.0830,0.0923,0.0000,0,0 +2024-11-15 18:13:03,024,26.3,48.6,0.0830,0.0923,0.0405,0,0 +2024-11-15 18:14:04,669,26.3,48.6,0.0830,0.0923,0.0405,0,0 +2024-11-15 18:15:06,419,26.2,48.7,0.0000,0.0923,0.0000,0,0 +2024-11-15 18:16:08,364,26.1,48.8,0.0000,0.0000,0.0000,0,0 +2024-11-15 18:17:09,979,26.0,48.9,0.0830,0.0923,0.0405,0,0 +2024-11-15 18:18:11,630,25.9,49.0,0.0000,0.0000,0.0000,0,0 +2024-11-15 18:19:13,217,25.9,49.2,0.0830,0.0923,0.0000,0,0 +2024-11-15 18:20:14,962,25.8,49.2,0.0830,0.0923,0.0405,0,0 +2024-11-15 18:21:16,615,25.7,49.4,0.0830,0.0923,0.0405,0,0 +2024-11-15 18:22:18,265,25.7,49.5,0.0830,0.0923,0.0405,0,0 +2024-11-15 18:23:20,218,25.6,49.8,0.0830,0.0923,0.0405,0,0 +2024-11-15 18:24:21,963,25.5,49.9,0.0830,0.0923,0.0000,0,0 +2024-11-15 18:25:23,899,25.5,50.3,0.0830,0.0923,0.0405,0,0 +2024-11-15 18:26:25,600,25.4,50.0,0.0830,0.0923,0.0000,0,0 +2024-11-15 18:27:27,192,25.3,50.3,0.0830,0.0923,0.0405,0,0 +2024-11-15 18:28:28,752,25.2,50.3,0.0000,0.0000,0.0000,0,0 +2024-11-15 18:29:30,496,25.2,50.2,0.0830,0.0923,0.0405,0,0 +2024-11-15 18:30:32,226,25.1,50.3,0.0830,0.0923,0.0405,0,0 +2024-11-15 18:31:33,789,25.1,50.4,0.0000,0.0923,0.0000,0,0 +2024-11-15 18:32:35,480,25.0,50.5,0.0830,0.0923,0.0405,0,0 +2024-11-15 18:33:37,197,24.9,50.7,0.0830,0.0923,0.0405,0,0 +2024-11-15 18:34:39,045,24.9,50.7,0.0830,0.0923,0.0405,0,0 +2024-11-15 18:35:40,978,24.8,50.8,0.0000,0.0923,0.0000,0,0 +2024-11-15 18:36:42,677,24.7,51.2,0.0000,0.0000,0.0000,0,0 +2024-11-15 18:37:44,530,24.7,51.4,0.0000,0.0923,0.0000,0,0 +2024-11-15 18:38:46,465,24.6,51.2,0.0830,0.0923,0.0405,0,0 +2024-11-15 18:39:48,414,24.5,51.5,0.0000,0.0000,0.0000,0,0 +2024-11-15 18:40:50,252,24.4,51.7,0.0830,0.0923,0.0405,0,0 +2024-11-15 18:41:52,151,24.4,51.8,0.0830,0.0923,0.0405,0,0 +2024-11-15 18:42:53,898,24.3,51.9,0.0000,0.0000,0.0000,0,0 +2024-11-15 18:43:55,650,24.2,51.9,0.0830,0.0923,0.0405,0,0 +2024-11-15 18:44:57,432,24.2,52.0,0.0830,0.0923,0.0000,0,0 +2024-11-15 18:45:59,291,24.1,52.1,0.0830,0.0923,0.0000,0,0 +2024-11-15 18:47:01,443,24.0,52.2,0.0000,0.0923,0.0000,0,0 +2024-11-15 18:48:03,351,24.0,52.3,0.0830,0.0923,0.0405,0,0 +2024-11-15 18:49:05,237,23.9,52.4,0.0830,0.0923,0.0405,0,0 +2024-11-15 18:50:07,332,23.8,52.4,0.0830,0.0923,0.0405,0,0 +2024-11-15 18:51:09,415,23.8,52.5,0.0830,0.0923,0.0000,0,0 +2024-11-15 18:52:11,225,23.7,52.6,0.0830,0.0923,0.0405,0,0 +2024-11-15 18:53:12,992,23.7,52.7,0.0830,0.0923,0.0405,0,0 +2024-11-15 18:54:14,789,23.6,52.7,0.0000,0.0000,0.0000,0,0 +2024-11-15 18:55:16,738,23.6,52.8,0.0830,0.0923,0.0000,0,0 +2024-11-15 18:56:18,358,23.5,52.9,0.0830,0.0923,0.0405,0,0 +2024-11-15 18:57:19,864,23.5,52.9,0.0830,0.0923,0.0405,0,0 +2024-11-15 18:58:21,576,23.4,53.0,0.0000,0.0923,0.0000,0,0 +2024-11-15 18:59:23,520,23.4,53.1,0.0000,0.0000,0.0405,0,0 +2024-11-15 19:00:25,361,23.3,53.1,0.0830,0.0923,0.0405,0,0 +2024-11-15 19:01:27,239,23.2,53.2,0.0830,0.0000,0.0000,0,0 +2024-11-15 19:02:28,978,23.2,53.2,0.0830,0.0923,0.0000,0,0 +2024-11-15 19:03:30,636,23.2,53.2,0.0830,0.0923,0.0405,0,0 +2024-11-15 19:04:32,593,23.1,53.3,0.0830,0.0923,0.0405,0,0 +2024-11-15 19:05:34,425,23.0,53.4,0.0830,0.0923,0.0405,0,0 +2024-11-15 19:06:36,283,23.0,53.4,0.0000,0.0000,0.0000,0,0 +2024-11-15 19:07:37,830,23.0,53.5,0.0000,0.0000,0.0000,0,0 +2024-11-15 19:08:39,487,22.9,53.6,0.0830,0.0923,0.0405,0,0 +2024-11-15 19:09:41,329,22.8,53.6,0.0830,0.0000,0.0405,0,0 +2024-11-15 19:10:43,077,22.8,53.6,0.0830,0.0923,0.0405,0,0 +2024-11-15 19:11:44,931,22.7,53.6,0.0830,0.0923,0.0405,0,0 +2024-11-15 19:12:46,772,22.7,53.7,0.0830,0.0923,0.0405,0,0 +2024-11-15 19:13:48,674,22.6,53.8,0.0000,0.0000,0.0000,0,0 +2024-11-15 19:14:50,419,22.6,53.9,0.0830,0.0923,0.0405,0,0 +2024-11-15 19:15:52,205,22.6,53.9,0.0830,0.0923,0.0000,0,0 +2024-11-15 19:16:54,145,22.5,54.0,0.0830,0.0923,0.0405,0,0 +2024-11-15 19:17:55,801,22.5,54.0,0.0830,0.0923,0.0000,0,0 +2024-11-15 19:18:57,748,22.4,54.1,0.0830,0.0923,0.0405,0,0 +2024-11-15 19:19:59,365,22.4,54.0,0.0830,0.0000,0.0405,0,0 +2024-11-15 19:21:01,247,22.3,54.2,0.0830,0.0923,0.0405,0,0 +2024-11-15 19:22:03,003,22.3,54.3,0.0830,0.0923,0.0405,0,0 +2024-11-15 19:23:04,902,22.2,54.3,0.0830,0.0923,0.0405,0,0 +2024-11-15 19:24:06,739,22.2,54.3,0.0830,0.0923,0.0405,0,0 +2024-11-15 19:25:08,618,22.2,54.3,0.0000,0.0923,0.0405,0,0 +2024-11-15 19:26:10,661,22.1,54.4,0.0830,0.0000,0.0000,0,0 +2024-11-15 19:27:12,721,22.1,54.4,0.0830,0.0923,0.0405,0,0 +2024-11-15 19:28:14,682,22.0,54.5,0.0830,0.0923,0.0405,0,0 +2024-11-15 19:29:16,625,22.0,54.5,0.0830,0.0923,0.0405,0,0 +2024-11-15 19:30:18,472,22.0,54.6,0.0830,0.0000,0.0000,0,0 +2024-11-15 19:31:20,425,21.9,54.6,0.0830,0.0923,0.0405,0,0 +2024-11-15 19:32:22,274,21.9,54.6,0.0830,0.0923,0.0405,0,0 +2024-11-15 19:33:24,126,21.8,54.7,0.0830,0.0923,0.0405,0,0 +2024-11-15 19:34:25,864,21.8,54.7,0.0830,0.0923,0.0405,0,0 +2024-11-15 19:35:27,671,21.7,54.7,0.0830,0.0923,0.0405,0,0 +2024-11-15 19:36:29,366,21.7,54.8,0.0830,0.0923,0.0405,0,0 +2024-11-15 19:37:31,114,21.7,54.8,0.0830,0.0923,0.0405,0,0 +2024-11-15 19:38:33,053,21.6,54.9,0.0830,0.0923,0.0000,0,0 +2024-11-15 19:39:34,893,21.6,55.0,0.0000,0.0000,0.0000,0,0 +2024-11-15 19:40:36,703,21.6,55.0,0.0830,0.0923,0.0000,0,0 +2024-11-15 19:41:38,482,21.5,55.0,0.0000,0.0000,0.0000,0,0 +2024-11-15 19:42:40,520,21.5,55.1,0.0830,0.0923,0.0405,0,0 +2024-11-15 19:43:42,408,21.4,55.1,0.0830,0.0923,0.0405,0,0 +2024-11-15 19:44:44,299,21.4,55.2,0.0830,0.0923,0.0000,0,0 +2024-11-15 19:45:46,156,21.4,55.2,0.0830,0.0923,0.0405,0,0 +2024-11-15 19:46:48,099,21.3,55.2,0.0000,0.0923,0.0405,0,0 +2024-11-15 19:47:50,096,21.3,55.2,0.0000,0.0923,0.0000,0,0 +2024-11-15 19:48:52,036,21.3,55.3,0.0830,0.0923,0.0000,0,0 +2024-11-15 19:49:53,916,21.2,55.2,0.0830,0.0923,0.0405,0,0 +2024-11-15 19:50:56,053,21.2,55.3,0.0830,0.0923,0.0405,0,0 +2024-11-15 19:51:58,098,21.2,55.4,0.0830,0.0923,0.0405,0,0 +2024-11-15 19:52:59,906,21.1,55.4,0.0830,0.0923,0.0405,0,0 +2024-11-15 19:54:01,685,21.1,55.4,0.0830,0.0923,0.0405,0,0 +2024-11-15 19:55:03,527,21.1,55.4,0.0830,0.0923,0.0405,0,0 +2024-11-15 19:56:05,137,21.0,55.4,0.0830,0.0000,0.0405,0,0 +2024-11-15 19:57:06,826,21.0,55.5,0.0830,0.0923,0.0405,0,0 +2024-11-15 19:58:08,719,21.0,55.5,0.0000,0.0923,0.0000,0,0 +2024-11-15 19:59:10,704,21.0,55.6,0.0000,0.0000,0.0000,0,0 +2024-11-15 20:00:12,549,20.9,55.6,0.0830,0.0923,0.0000,0,0 +2024-11-15 20:01:14,431,20.9,55.6,0.0830,0.0923,0.0405,0,0 +2024-11-15 20:02:16,525,20.9,55.6,0.0000,0.0000,0.0000,0,0 +2024-11-15 20:03:18,368,20.8,55.6,0.0830,0.0923,0.0405,0,0 +2024-11-15 20:04:20,189,20.8,55.6,0.0830,0.0923,0.0405,0,0 +2024-11-15 20:05:22,229,20.8,55.6,0.0830,0.0923,0.0405,0,0 +2024-11-15 20:06:24,163,20.7,55.7,0.0830,0.0923,0.0000,0,0 +2024-11-15 09:00:44,531,20.4,56.3,0.0830,0.0923,0.0405,1,1 +2024-11-15 09:01:46,620,20.5,56.0,31.4600,0.3691,0.0811,1,1 +2024-11-15 09:15:41,325,20.3,56.5,0.2348,0.2610,0.0000,1,1 +2024-11-15 09:16:43,394,20.3,56.2,91.3300,1.0441,0.2293,1,1 +2024-11-15 09:17:45,347,20.4,56.3,107.0604,1.3051,0.3439,1,1 +2024-11-15 09:18:47,343,20.4,56.6,114.3386,1.3051,0.3439,1,1 +2024-11-15 09:19:49,371,20.5,56.9,117.3908,1.3051,0.3439,1,1 +2024-11-15 09:34:11,027,20.3,57.0,0.2348,0.2610,0.1146,1,1 +2024-11-15 09:35:13,055,20.4,56.8,96.7300,1.0441,0.2293,1,1 +2024-11-15 19:31:00,100,20.4,56.8,113.8691,1.3051,0.3439,1,1 +2024-11-15 19:32:02,039,20.4,56.9,0.0000,0.0000,0.0000,0,0 +2024-11-15 19:33:04,010,20.4,57.0,0.2348,0.2610,0.1146,0,0 +2024-11-15 19:34:05,759,20.4,57.0,0.2348,0.2610,0.0000,0,0 +2024-11-15 19:35:07,701,20.4,56.9,0.2348,0.2610,0.0000,0,0 +2024-11-15 19:36:09,381,20.4,56.8,0.2348,0.2610,0.1146,0,0 +2024-11-15 20:52:07,155,20.4,56.8,0.2348,0.2610,0.1146,0,0 +2024-11-15 20:52:21,845,20.4,56.8,0.2348,0.2610,0.0000,0,0 +2024-11-15 21:27:47,369,19.5,57.4,0.2348,0.2610,0.1146,0,0 +2024-11-15 21:27:54,826,19.5,57.3,0.2348,0.2610,0.1146,0,0 +2024-11-15 21:28:56,542,19.6,57.1,0.2348,0.2610,0.0000,0,0 +2024-11-15 21:29:58,490,19.6,57.0,0.2348,0.0000,0.0000,0,0 +2024-11-15 21:31:00,304,19.6,56.9,0.0000,0.2610,0.1146,0,0 +2024-11-15 21:32:01,972,19.6,57.0,0.0000,0.0000,0.0000,0,0 +2024-11-15 21:33:03,828,19.6,57.0,0.2348,0.2610,0.1146,0,0 +2024-11-15 21:34:05,764,19.5,56.9,0.2348,0.2610,0.1146,0,0 +2024-11-15 21:35:07,697,19.5,57.0,0.2348,0.0000,0.1146,0,0 +2024-11-15 21:36:09,635,19.5,56.9,0.2348,0.2610,0.1146,0,0 +2024-11-15 21:37:11,668,19.5,57.0,0.2348,0.2610,0.1146,0,0 +2024-11-15 21:38:13,592,19.5,57.0,0.2348,0.0000,0.1146,0,0 +2024-11-15 21:39:15,606,19.5,57.0,0.2348,0.2610,0.1146,0,0 +2024-11-15 21:40:17,321,19.4,57.0,0.2348,0.2610,0.1146,0,0 +2024-11-15 21:41:19,146,19.4,57.0,0.0000,0.2610,0.0000,0,0 +2024-11-15 21:42:20,866,19.4,57.0,0.2348,0.2610,0.0000,0,0 +2024-11-15 21:43:22,842,19.4,57.1,0.2348,0.2610,0.0000,0,0 +2024-11-15 21:44:24,804,19.4,57.0,0.2348,0.2610,0.1146,0,0 +2024-11-15 21:45:26,524,19.3,57.1,0.2348,0.0000,0.1146,0,0 +2024-11-15 21:46:28,317,19.3,57.0,0.2348,0.2610,0.1146,0,0 +2024-11-15 21:47:29,897,19.3,57.1,0.2348,0.2610,0.1146,0,0 +2024-11-15 21:48:31,490,19.3,57.1,0.0000,0.0000,0.0000,0,0 +2024-11-15 21:49:33,351,19.3,57.1,0.2348,0.0000,0.0000,0,0 +2024-11-15 21:50:35,198,19.3,57.2,0.2348,0.2610,0.1146,0,0 +2024-11-15 21:51:38,202,19.3,57.2,0.0000,0.0000,0.0000,0,0 +2024-11-15 21:52:39,795,19.2,57.2,0.2348,0.2610,0.1146,0,0 +2024-11-15 21:53:41,596,19.2,57.2,0.0000,0.0000,0.0000,0,0 +2024-11-15 21:54:43,417,19.2,57.2,0.0000,0.2610,0.0000,0,0 +2024-11-15 21:55:44,828,19.2,57.2,0.2348,0.2610,0.1146,0,0 +2024-11-15 21:56:46,716,19.2,57.2,0.2348,0.2610,0.0000,0,0 +2024-11-15 21:57:48,802,19.1,57.2,0.0000,0.0000,0.0000,0,0 +2024-11-15 21:58:50,861,19.1,57.2,0.0000,0.0000,0.1146,0,0 +2024-11-15 21:59:52,856,19.1,57.3,0.2348,0.2610,0.1146,0,0 +2024-11-15 22:00:54,633,19.1,57.3,0.2348,0.2610,0.1146,0,0 +2024-11-15 22:01:56,651,19.1,57.3,0.2348,0.2610,0.0000,0,0 +2024-11-15 22:02:58,577,19.1,57.3,0.2348,0.2610,0.1146,0,0 +2024-11-15 22:04:00,306,19.0,57.3,0.2348,0.0000,0.1146,0,0 +2024-11-15 22:05:02,043,19.0,57.3,0.2348,0.2610,0.1146,0,0 +2024-11-15 22:06:03,724,19.0,57.3,0.2348,0.2610,0.1146,0,0 +2024-11-15 22:07:05,496,19.0,57.3,0.2348,0.0000,0.1146,0,0 +2024-11-15 22:08:07,217,19.0,57.4,0.2348,0.2610,0.1146,0,0 +2024-11-15 22:09:07,791,19.0,57.4,0.2348,0.2610,0.0000,0,0 +2024-11-15 22:10:09,478,19.0,57.4,0.2348,0.2610,0.1146,0,0 +2024-11-15 22:11:11,162,19.0,57.4,0.0000,0.0000,0.0000,0,0 +2024-11-15 22:12:11,364,18.9,57.4,0.0000,0.0000,0.1146,0,0 +2024-11-15 22:13:13,315,18.9,57.5,0.0000,0.2610,0.1146,0,0 +2024-11-15 22:14:15,033,18.9,57.4,0.0000,0.0000,0.0000,0,0 +2024-11-15 22:15:08,127,18.9,57.5,0.2348,0.2610,0.0000,0,0 +2024-11-15 22:16:09,422,18.9,57.6,0.2348,0.2610,0.1146,0,0 +2024-11-15 22:17:10,695,18.9,57.5,0.2348,0.2610,0.1146,0,0 +2024-11-15 22:18:11,927,18.9,57.6,0.2348,0.2610,0.1146,0,0 +2024-11-15 22:19:13,162,18.9,57.6,0.2348,0.2610,0.1146,0,0 +2024-11-15 22:20:14,427,18.8,57.6,0.2348,0.2610,0.1146,0,0 +2024-11-15 22:21:15,671,18.8,57.6,0.2348,0.2610,0.1146,0,0 +2024-11-15 22:22:16,932,18.8,57.6,0.2348,0.0000,0.0000,0,0 +2024-11-15 22:23:18,582,18.8,57.6,0.2348,0.2610,0.1146,0,0 +2024-11-15 22:24:20,122,18.7,57.7,0.0000,0.0000,0.0000,0,0 +2024-11-15 22:25:21,341,18.8,57.6,0.2348,0.2610,0.0000,0,0 +2024-11-15 22:26:22,767,18.7,57.7,0.0000,0.2610,0.1146,0,0 +2024-11-15 22:26:50,287,18.7,57.7,0.0000,0.0000,0.0000,0,0 +2024-11-15 22:27:52,774,18.7,57.7,0.2348,0.2610,0.1146,0,0 +2024-11-15 22:28:54,622,18.7,57.7,0.0000,0.2610,0.0000,0,0 +2024-11-15 22:29:56,353,18.7,57.7,0.2348,0.2610,0.1146,0,0 +2024-11-15 22:30:58,081,18.7,57.8,0.2348,0.2610,0.0000,0,0 +2024-11-15 22:32:00,047,18.7,57.8,0.2348,0.2610,0.1146,0,0 +2024-11-15 22:33:01,824,18.7,57.8,0.2348,0.2610,0.1146,0,0 +2024-11-15 22:34:03,576,18.6,57.8,0.2348,0.2610,0.0000,0,0 +2024-11-15 22:35:05,257,18.6,57.8,0.2348,0.2610,0.1146,0,0 +2024-11-15 22:36:07,045,18.6,57.9,0.0000,0.0000,0.0000,0,0 +2024-11-15 22:37:08,682,18.6,57.9,0.2348,0.0000,0.0000,0,0 +2024-11-15 22:38:10,542,18.6,57.9,0.2348,0.2610,0.1146,0,0 +2024-11-15 22:39:12,203,18.5,57.9,0.0000,0.2610,0.1146,0,0 +2024-11-15 22:40:13,919,18.5,58.0,0.2348,0.2610,0.0000,0,0 +2024-11-15 22:41:15,693,18.5,58.0,0.2348,0.2610,0.1146,0,0 +2024-11-15 22:42:17,726,18.5,58.0,0.2348,0.2610,0.1146,0,0 +2024-11-15 22:43:19,708,18.5,58.0,0.2348,0.2610,0.1146,0,0 +2024-11-15 22:44:21,598,18.5,58.0,0.0000,0.2610,0.1146,0,0 +2024-11-15 22:45:23,420,18.5,58.0,0.2348,0.2610,0.1146,0,0 +2024-11-15 22:46:25,307,18.4,58.0,0.2348,0.2610,0.1146,0,0 +2024-11-15 22:47:27,274,18.4,58.0,0.2348,0.2610,0.1146,0,0 +2024-11-15 22:48:29,089,18.5,58.1,0.2348,0.0000,0.1146,0,0 +2024-11-15 22:49:30,773,18.4,58.1,0.2348,0.2610,0.1146,0,0 +2024-11-15 22:50:32,435,18.4,58.0,0.2348,0.2610,0.1146,0,0 +2024-11-15 22:51:12,020,18.4,58.1,0.2348,0.2610,0.1146,0,0 +2024-11-15 22:52:13,695,18.4,58.1,0.2348,0.2610,0.1146,0,0 +2024-11-15 22:53:15,426,18.4,58.1,0.0000,0.2610,0.1146,0,0 +2024-11-15 22:54:17,172,18.4,58.1,0.2348,0.2610,0.1146,0,0 +2024-11-15 22:55:18,968,18.3,58.2,0.0000,0.2610,0.1146,0,0 +2024-11-15 22:56:19,819,18.3,58.3,0.2348,0.2610,0.0000,0,0 +2024-11-15 22:57:21,622,18.3,58.2,0.0000,0.0000,0.0000,0,0 +2024-11-15 22:58:23,492,18.3,58.2,0.2348,0.2610,0.0000,0,0 +2024-11-15 22:59:25,371,18.3,58.2,0.0000,0.0000,0.0000,0,0 +2024-11-15 23:00:30,293,18.3,58.2,0.2348,0.2610,0.0000,0,0 +2024-11-15 23:01:28,530,18.2,58.4,0.2348,0.2610,0.1146,0,0 +2024-11-15 23:02:30,122,18.3,58.3,0.2348,0.2610,0.0000,0,0 +2024-11-15 23:03:32,085,18.3,58.3,0.2348,0.2610,0.1146,0,0 +2024-11-15 23:04:33,951,18.2,58.3,0.2348,0.2610,0.1146,0,0 +2024-11-15 23:05:35,758,18.2,58.3,0.2348,0.2610,0.1146,0,0 +2024-11-15 23:06:37,595,18.2,58.3,0.2348,0.2610,0.1146,0,0 +2024-11-15 23:07:39,309,18.2,58.4,0.2348,0.2610,0.1146,0,0 +2024-11-15 23:08:40,899,18.2,58.3,0.2348,0.2610,0.1146,0,0 +2024-11-15 23:09:42,575,18.2,58.3,0.2348,0.2610,0.0000,0,0 +2024-11-15 23:09:56,863,18.2,58.4,0.2348,0.2610,0.1146,0,0 +2024-11-15 23:10:58,574,18.2,58.3,0.2348,0.2610,0.0000,0,0 +2024-11-15 23:11:43,016,18.2,58.4,0.2348,0.2610,0.1146,0,0 +2024-11-15 23:12:44,865,18.2,58.4,0.2348,0.2610,0.1146,0,0 +2024-11-15 23:13:46,396,18.1,58.4,0.2348,0.2610,0.1146,0,0 +2024-11-15 23:14:47,960,18.2,58.4,0.2348,0.0000,0.0000,0,0 +2024-11-15 23:15:49,485,18.2,58.5,0.2348,0.2610,0.1146,0,0 +2024-11-15 23:16:51,008,18.1,58.5,0.2348,0.2610,0.1146,0,0 +2024-11-15 23:17:52,715,18.1,58.5,0.2348,0.2610,0.0000,0,0 +2024-11-15 23:18:54,297,18.1,58.5,0.0000,0.2610,0.1146,0,0 +2024-11-15 23:19:56,026,18.1,58.5,0.2348,0.2610,0.1146,0,0 +2024-11-15 23:20:57,759,18.1,58.5,0.2348,0.2610,0.1146,0,0 +2024-11-15 23:21:59,557,18.1,58.5,0.2348,0.2610,0.1146,0,0 +2024-11-15 23:23:01,145,18.1,58.5,0.2348,0.0000,0.1146,0,0 +2024-11-15 23:24:02,918,18.1,58.5,0.2348,0.0000,0.0000,0,0 +2024-11-16 10:44:28,171,15.2,61.3,0.2348,0.2610,0.1146,1,1 +2024-11-16 10:44:45,640,15.2,61.2,0.2348,0.2610,0.0000,1,1 +2024-11-16 10:45:47,308,15.3,61.0,76.7736,1.0441,0.2293,1,1 +2024-11-16 10:46:49,074,15.3,61.0,101.6604,1.3051,0.3439,1,1 +2024-11-16 10:47:50,687,15.4,61.4,110.3473,1.3051,0.3439,1,1 +2024-11-16 10:48:52,493,15.5,62.1,112.4604,1.3051,0.3439,1,1 +2024-11-16 10:49:54,383,15.6,62.6,115.2777,1.3051,0.3439,1,1 +2024-11-16 10:50:56,184,15.6,62.7,116.9212,1.3051,0.3439,1,1 +2024-11-16 10:51:57,767,15.8,62.7,119.0342,1.3051,0.3439,1,1 +2024-11-16 10:52:59,621,15.8,62.7,119.7386,1.3051,0.3439,1,1 +2024-11-16 10:54:01,557,16.0,62.7,120.4429,1.3051,0.3439,1,1 +2024-11-16 10:55:03,298,16.1,62.8,121.3821,1.3051,0.3439,1,1 +2024-11-16 10:56:05,035,16.2,63.0,121.6168,1.5661,0.3439,1,1 +2024-11-16 10:57:06,688,16.3,63.0,122.5560,1.3051,0.3439,1,1 +2024-11-16 10:58:08,474,16.4,62.8,122.7907,1.5661,0.3439,1,1 +2024-11-16 10:59:10,345,16.6,62.7,122.7907,1.5661,0.3439,1,1 +2024-11-16 11:00:12,376,16.7,62.4,123.0255,1.3051,0.3439,1,1 +2024-11-16 11:01:13,973,16.8,62.2,123.2603,1.5661,0.3439,1,1 +2024-11-16 11:02:15,569,16.9,61.9,123.7299,1.5661,0.3439,1,1 +2024-11-16 11:03:17,456,17.0,61.8,123.4951,1.5661,0.3439,1,1 +2024-11-16 11:04:19,127,17.1,61.7,124.1994,1.5661,0.3439,1,1 +2024-11-16 11:05:20,962,17.2,61.5,123.2603,1.5661,0.3439,1,1 +2024-11-16 11:06:22,666,17.3,61.4,123.7299,1.3051,0.3439,1,1 +2024-11-16 11:07:24,526,17.4,61.4,123.9647,1.3051,0.3439,1,1 +2024-11-16 11:08:26,314,17.5,61.2,123.9647,1.5661,0.3439,1,1 +2024-11-16 11:09:27,980,17.6,61.1,122.7907,1.3051,0.3439,1,1 +2024-11-16 11:10:29,767,17.7,61.0,122.7907,1.5661,0.3439,1,1 +2024-11-16 11:11:31,541,17.8,60.9,123.0255,1.5661,0.3439,1,1 +2024-11-16 11:12:33,173,17.9,60.8,123.2603,1.5661,0.3439,1,1 +2024-11-16 11:13:34,906,18.0,60.6,122.0864,1.5661,0.3439,1,1 +2024-11-16 11:14:36,904,18.1,60.5,122.0864,1.3051,0.3439,1,1 +2024-11-16 11:15:38,876,18.2,60.4,122.0864,1.3051,0.3439,1,1 +2024-11-16 11:16:40,703,18.2,60.3,121.3821,1.5661,0.3439,1,1 +2024-11-16 11:17:42,341,18.3,60.2,121.8516,1.3051,0.3439,1,1 +2024-11-16 11:18:43,973,18.4,60.1,121.1473,1.3051,0.3439,1,1 +2024-11-16 11:19:45,876,18.5,60.0,121.8516,1.3051,0.3439,1,1 +2024-11-16 11:20:47,350,18.6,59.9,121.8516,1.5661,0.3439,1,1 +2024-11-16 11:21:49,127,18.6,59.7,121.3821,1.3051,0.3439,1,1 +2024-11-16 11:22:51,067,18.8,59.6,121.1473,1.3051,0.3439,1,1 +2024-11-16 11:23:53,035,18.9,59.5,121.3821,1.3051,0.3439,1,1 +2024-11-16 11:24:54,866,18.9,59.4,121.1473,1.3051,0.3439,1,1 +2024-11-16 11:25:56,700,19.0,59.2,120.9125,1.3051,0.3439,1,1 +2024-11-16 11:26:58,332,19.1,59.0,121.6168,1.5661,0.3439,1,1 +2024-11-16 11:28:00,051,19.1,58.9,120.4429,1.5661,0.3439,1,1 +2024-11-16 11:29:01,776,19.2,58.8,120.2082,1.3051,0.3439,1,1 +2024-11-16 11:30:03,508,19.3,58.6,120.9125,1.3051,0.3439,1,1 +2024-11-16 11:31:05,343,19.4,58.5,120.9125,1.3051,0.3439,1,1 +2024-11-16 11:32:06,965,19.5,58.4,120.6777,1.3051,0.3439,1,1 +2024-11-16 11:33:08,784,19.5,58.2,121.1473,1.5661,0.3439,1,1 +2024-11-16 11:34:10,667,19.6,58.1,120.4429,1.3051,0.3439,1,1 +2024-11-16 11:35:12,199,19.6,58.0,120.2082,1.3051,0.3439,1,1 +2024-11-16 11:36:13,975,19.7,57.9,120.4429,1.3051,0.3439,1,1 +2024-11-16 11:37:15,908,19.8,57.8,120.4429,1.3051,0.3439,1,1 +2024-11-16 11:38:17,838,19.8,57.6,120.2082,1.3051,0.3439,1,1 +2024-11-16 11:39:19,474,19.9,57.6,119.7386,1.3051,0.3439,1,1 +2024-11-16 11:40:21,469,20.0,57.4,119.5038,1.3051,0.3439,1,1 +2024-11-16 11:41:23,197,20.0,57.3,120.2082,1.3051,0.3439,1,1 +2024-11-16 11:42:24,831,20.1,57.2,120.6777,1.3051,0.3439,1,1 +2024-11-16 11:43:26,660,20.2,57.1,120.6777,1.3051,0.3439,1,1 +2024-11-16 11:44:28,537,20.2,57.0,119.7386,1.3051,0.3439,1,1 +2024-11-16 11:45:30,436,20.3,56.9,119.7386,1.5661,0.3439,1,1 +2024-11-16 11:46:32,333,20.4,56.8,120.4429,1.3051,0.3439,1,1 +2024-11-16 11:47:33,991,20.4,56.7,119.5038,1.3051,0.3439,1,1 +2024-11-16 11:48:35,639,20.5,56.7,120.2082,1.5661,0.3439,1,1 +2024-11-16 11:49:37,487,20.6,56.5,120.2082,1.3051,0.3439,1,1 +2024-11-16 11:50:39,251,20.6,56.5,120.2082,1.3051,0.3439,1,1 +2024-11-16 11:51:41,098,20.7,56.4,119.2690,1.3051,0.3439,1,1 +2024-11-16 11:52:06,869,20.7,56.4,0.2348,0.2610,0.0000,1,1 +2024-11-16 11:53:08,509,20.8,56.3,120.9125,1.3051,0.3439,1,1 +2024-11-16 11:54:10,442,20.8,56.1,120.4429,1.3051,0.3439,1,1 +2024-11-16 11:55:12,149,20.9,56.0,120.2082,1.3051,0.3439,1,1 +2024-11-16 11:56:14,302,20.9,55.9,119.9734,1.3051,0.3439,1,1 +2024-11-16 11:57:16,280,21.0,55.9,120.2082,1.3051,0.3439,1,1 +2024-11-16 12:03:01,688,20.8,56.1,0.2348,0.0000,0.0000,1,1 +2024-11-16 12:03:16,606,20.9,56.0,0.2348,0.0000,0.0000,1,1 +2024-11-16 12:04:18,554,20.9,55.9,119.7386,1.3051,0.3439,1,1 +2024-11-16 12:05:20,344,20.9,55.9,122.5560,1.5661,0.3439,1,1 +2024-11-16 12:06:22,336,20.9,56.0,122.7907,1.5661,0.3439,1,1 +2024-11-16 12:07:24,129,20.9,55.9,123.0255,1.3051,0.3439,1,1 +2024-11-16 12:08:26,097,21.0,55.9,122.7907,1.5661,0.3439,1,1 +2024-11-16 12:09:27,842,21.0,55.9,122.7907,1.5661,0.3439,1,1 +2024-11-16 12:10:30,004,21.1,55.8,122.3212,1.5661,0.3439,1,1 +2024-11-16 12:11:31,924,21.1,55.7,122.3212,1.5661,0.3439,1,1 +2024-11-16 12:12:33,751,21.2,55.6,121.8516,1.5661,0.3439,1,1 +2024-11-16 12:13:35,784,21.2,55.5,121.6168,1.5661,0.3439,1,1 +2024-11-16 12:14:37,772,21.3,55.5,121.8516,1.5661,0.3439,1,1 +2024-11-16 12:15:39,725,21.3,55.4,122.0864,1.5661,0.3439,1,1 +2024-11-16 12:16:41,718,21.4,55.3,122.0864,1.3051,0.3439,1,1 +2024-11-16 12:17:43,497,21.5,55.2,121.6168,1.3051,0.3439,1,1 +2024-11-16 12:18:45,149,21.5,55.1,121.6168,1.5661,0.3439,1,1 +2024-11-16 12:19:46,987,21.6,55.1,121.3821,1.5661,0.3439,1,1 +2024-11-16 12:20:49,011,21.6,55.0,121.3821,1.3051,0.3439,1,1 +2024-11-16 12:21:51,037,21.7,54.9,120.9125,1.5661,0.3439,1,1 +2024-11-16 12:22:52,968,21.7,54.8,121.1473,1.3051,0.3439,1,1 +2024-11-16 12:23:55,061,21.8,54.7,121.1473,1.3051,0.3439,1,1 +2024-11-16 12:24:57,128,21.8,54.6,120.4429,1.3051,0.3439,1,1 +2024-11-16 12:25:59,272,21.9,54.5,120.9125,1.5661,0.3439,1,1 +2024-11-16 12:27:01,272,21.9,54.4,120.4429,1.3051,0.3439,1,1 +2024-11-16 12:28:03,239,22.0,54.4,120.2082,1.3051,0.3439,1,1 +2024-11-16 12:29:05,231,22.0,54.3,119.9734,1.3051,0.3439,1,1 +2024-11-16 12:30:07,092,22.1,54.3,120.4429,1.3051,0.3439,1,1 +2024-11-16 12:31:09,001,22.1,54.2,120.4429,1.3051,0.3439,1,1 +2024-11-16 12:32:10,788,22.2,54.1,120.2082,1.3051,0.3439,1,1 +2024-11-16 12:33:12,715,22.2,54.1,120.4429,1.3051,0.3439,1,1 +2024-11-16 12:34:14,542,22.2,54.0,119.9734,1.3051,0.3439,1,1 +2024-11-16 12:35:16,377,22.3,53.9,119.9734,1.3051,0.3439,1,1 +2024-11-16 12:36:18,311,22.3,53.9,120.2082,1.3051,0.3439,1,1 +2024-11-16 12:37:20,060,22.4,53.8,120.2082,1.3051,0.3439,1,1 +2024-11-16 12:38:22,099,22.4,53.8,120.2082,1.3051,0.3439,1,1 +2024-11-16 12:39:23,822,22.5,53.7,119.2690,1.3051,0.3439,1,1 +2024-11-16 12:40:25,741,22.5,53.7,120.2082,1.3051,0.3439,1,1 +2024-11-16 12:41:27,476,22.5,53.6,119.7386,1.3051,0.3439,1,1 +2024-11-16 12:42:29,419,22.6,53.6,120.2082,1.3051,0.3439,1,1 +2024-11-16 12:43:31,354,22.6,53.5,119.9734,1.3051,0.3439,1,1 +2024-11-16 12:44:33,192,22.7,53.4,119.7386,1.3051,0.3439,1,1 +2024-11-16 12:45:34,934,22.7,53.4,120.2082,1.3051,0.3439,1,1 +2024-11-16 12:46:36,883,22.7,53.4,119.5038,1.3051,0.3439,1,1 +2024-11-16 12:47:38,820,22.8,53.4,119.7386,1.3051,0.3439,1,1 +2024-11-16 12:48:40,787,22.8,53.3,119.9734,1.3051,0.3439,1,1 +2024-11-16 12:49:42,583,22.8,53.3,119.7386,1.3051,0.3439,1,1 +2024-11-16 12:50:44,181,22.9,53.2,119.7386,1.3051,0.3439,1,1 +2024-11-16 12:51:45,910,22.9,53.2,119.9734,1.3051,0.3439,1,1 +2024-11-16 12:52:47,683,23.0,53.1,119.7386,1.3051,0.3439,1,1 +2024-11-16 14:56:15,272,25.2,50.6,0.2348,0.2610,0.1146,1,1 +2024-11-16 15:01:57,932,25.0,50.8,0.2348,0.2610,0.1146,1,1 +2024-11-16 15:02:58,372,25.0,50.9,119.0342,1.3051,0.3439,1,1 +2024-11-16 15:03:24,788,25.0,50.9,0.2348,0.2610,0.0000,1,1 +2024-11-16 15:04:26,577,25.0,50.8,123.2603,1.5661,0.3439,1,1 +2024-11-16 15:05:28,487,25.0,51.0,123.0255,1.5661,0.3439,1,1 +2024-11-16 15:06:30,335,25.0,51.0,122.5560,1.5661,0.3439,1,1 +2024-11-16 15:07:32,452,24.9,51.2,122.0864,1.5661,0.3439,1,1 +2024-11-16 15:08:34,501,25.0,51.1,121.6168,1.5661,0.3439,1,1 +2024-11-16 15:09:36,512,25.0,51.2,121.3821,1.3051,0.3439,1,1 +2024-11-16 15:10:38,443,25.0,51.2,121.1473,1.5661,0.3439,1,1 +2024-11-16 15:11:40,372,25.0,51.0,120.9125,1.3051,0.3439,1,1 +2024-11-16 15:12:42,251,25.0,50.9,120.6777,1.3051,0.3439,1,1 +2024-11-16 15:13:44,180,25.0,50.9,120.2082,1.3051,0.3439,1,1 +2024-11-16 15:14:45,987,25.0,50.8,120.2082,1.3051,0.3439,1,1 +2024-11-16 15:15:47,862,25.1,50.8,119.2690,1.3051,0.3439,1,1 +2024-11-16 15:16:49,840,25.1,50.7,120.2082,1.3051,0.3439,1,1 +2024-11-16 15:17:51,925,25.1,50.8,119.9734,1.3051,0.3439,1,1 +2024-11-16 15:18:53,805,25.1,50.7,119.9734,1.3051,0.3439,1,1 +2024-11-16 15:19:55,882,25.1,50.6,119.5038,1.3051,0.3439,1,1 +2024-11-16 15:20:57,837,25.2,50.5,119.7386,1.5661,0.3439,1,1 +2024-11-16 15:22:00,021,25.2,50.5,119.7386,1.3051,0.3439,1,1 +2024-11-16 15:23:01,993,25.2,50.5,119.5038,1.3051,0.3439,1,1 +2024-11-16 15:24:03,724,25.2,50.4,119.5038,1.3051,0.3439,1,1 +2024-11-16 15:25:05,683,25.2,50.4,119.7386,1.3051,0.3439,1,1 +2024-11-16 15:26:07,894,25.3,50.4,119.2690,1.3051,0.3439,1,1 +2024-11-16 15:27:09,931,25.3,50.3,119.0342,1.3051,0.3439,1,1 +2024-11-16 15:28:12,157,25.3,50.3,118.7995,1.3051,0.3439,1,1 +2024-11-16 15:29:14,036,25.3,50.2,117.6256,1.3051,0.3439,1,1 +2024-11-16 15:30:16,209,25.4,50.2,118.0951,1.3051,0.3439,1,1 +2024-11-16 15:31:18,275,25.4,50.1,118.0951,1.3051,0.3439,1,1 +2024-11-16 15:32:20,058,25.4,50.1,118.3299,1.3051,0.3439,1,1 +2024-11-16 15:33:21,631,25.4,50.0,118.0951,1.3051,0.3439,1,1 +2024-11-16 15:34:23,582,25.4,50.0,119.0342,1.3051,0.3439,1,1 +2024-11-16 15:35:25,542,25.4,50.0,118.7995,1.3051,0.3439,1,1 +2024-11-16 15:36:27,335,25.5,50.0,118.5647,1.3051,0.3439,1,1 +2024-11-16 15:37:29,254,25.5,49.9,118.0951,1.3051,0.3439,1,1 +2024-11-16 15:38:30,731,25.5,49.9,117.8603,1.3051,0.3439,1,1 +2024-11-16 15:39:32,436,25.5,50.2,117.6256,1.3051,0.3439,1,1 +2024-11-16 15:40:34,205,25.5,50.1,118.3299,1.3051,0.3439,1,1 +2024-11-16 15:41:35,928,25.5,49.9,118.3299,1.3051,0.3439,1,1 +2024-11-16 15:42:37,527,25.5,49.9,118.5647,1.3051,0.3439,1,1 +2024-11-16 15:43:39,346,25.6,50.1,117.3908,1.3051,0.3439,1,1 +2024-11-16 15:44:41,013,25.5,50.0,119.0342,1.3051,0.3439,1,1 +2024-11-16 15:45:42,717,25.6,50.0,118.0951,1.3051,0.3439,1,1 +2024-11-16 15:46:44,494,25.6,49.9,118.3299,1.3051,0.3439,1,1 +2024-11-16 15:47:46,671,25.6,50.0,118.0951,1.3051,0.3439,1,1 +2024-11-16 15:48:48,404,25.6,49.8,118.3299,1.3051,0.3439,1,1 +2024-11-16 15:49:50,222,25.6,49.8,118.3299,1.3051,0.3439,1,1 +2024-11-16 15:50:52,297,25.6,49.8,118.0951,1.3051,0.3439,1,1 +2024-11-16 15:51:54,502,25.6,49.9,117.8603,1.3051,0.3439,1,1 +2024-11-16 15:52:56,377,25.6,49.8,118.7995,1.3051,0.3439,1,1 +2024-11-16 15:53:58,108,25.6,49.7,118.5647,1.3051,0.3439,1,1 +2024-11-16 15:54:59,826,25.6,49.7,118.3299,1.3051,0.3439,1,1 +2024-11-16 15:56:01,649,25.6,49.6,118.3299,1.3051,0.3439,1,1 +2024-11-16 15:57:03,767,25.6,49.6,118.3299,1.3051,0.3439,1,1 +2024-11-16 15:58:05,609,25.7,49.6,117.8603,1.3051,0.3439,1,1 +2024-11-16 15:59:07,536,25.7,49.6,118.5647,1.3051,0.3439,1,1 +2024-11-16 16:00:09,710,25.7,49.6,117.8603,1.3051,0.3439,1,1 +2024-11-16 16:01:11,790,25.7,49.5,117.8603,1.3051,0.3439,1,1 +2024-11-16 16:02:13,853,25.7,49.5,118.3299,1.3051,0.3439,1,1 +2024-11-16 16:03:15,589,25.7,49.6,118.0951,1.3051,0.3439,1,1 +2024-11-16 16:04:17,607,25.7,49.6,118.0951,1.3051,0.3439,1,1 +2024-11-16 16:05:19,489,25.7,49.4,118.0951,1.3051,0.3439,1,1 +2024-11-16 16:06:21,570,25.7,49.4,118.0951,1.3051,0.3439,1,1 +2024-11-16 16:07:23,540,25.7,49.5,118.3299,1.3051,0.3439,1,1 +2024-11-16 16:08:25,468,25.7,49.4,118.0951,1.3051,0.3439,1,1 +2024-11-16 16:09:27,344,25.7,49.4,117.6256,1.3051,0.3439,1,1 +2024-11-16 16:10:29,216,25.8,49.4,117.6256,1.3051,0.3439,1,1 +2024-11-16 16:11:30,996,25.8,49.3,118.7995,1.3051,0.3439,1,1 +2024-11-16 16:12:32,909,25.8,49.4,118.7995,1.3051,0.3439,1,1 +2024-11-16 16:13:34,831,25.8,49.4,119.2690,1.3051,0.3439,1,1 +2024-11-16 16:14:36,947,25.8,49.3,119.2690,1.3051,0.3439,1,1 +2024-11-16 16:15:38,915,25.8,49.3,119.0342,1.3051,0.3439,1,1 +2024-11-16 16:16:40,883,25.8,49.3,118.5647,1.3051,0.3439,1,1 +2024-11-16 16:17:42,660,25.8,49.3,119.2690,1.3051,0.3439,1,1 +2024-11-16 16:18:44,631,25.9,49.2,118.5647,1.3051,0.3439,1,1 +2024-11-16 16:19:46,511,25.9,49.2,118.5647,1.3051,0.3439,1,1 +2024-11-16 16:20:48,387,25.9,49.3,119.0342,1.3051,0.3439,1,1 +2024-11-16 16:21:50,363,25.9,49.2,118.5647,1.3051,0.3439,1,1 +2024-11-16 16:22:52,304,25.9,49.2,118.5647,1.3051,0.3439,1,1 +2024-11-16 16:23:54,135,25.9,49.1,119.0342,1.3051,0.3439,1,1 +2024-11-16 16:24:56,186,25.9,49.1,119.0342,1.3051,0.3439,1,1 +2024-11-16 16:25:58,205,25.9,49.1,118.7995,1.3051,0.3439,1,1 +2024-11-16 16:27:00,250,25.9,49.0,118.7995,1.3051,0.3439,1,1 +2024-11-16 16:28:02,376,26.0,49.0,118.5647,1.3051,0.3439,1,1 +2024-11-16 16:29:04,417,26.0,49.0,118.7995,1.3051,0.3439,1,1 +2024-11-16 16:30:06,427,26.0,49.0,119.0342,1.3051,0.3439,1,1 +2024-11-16 16:31:08,213,26.0,49.0,118.7995,1.3051,0.3439,1,1 +2024-11-16 16:32:10,293,26.0,49.0,118.7995,1.3051,0.3439,1,1 +2024-11-16 16:33:12,471,26.0,49.0,119.2690,1.3051,0.3439,1,1 +2024-11-16 16:34:14,557,26.0,48.9,118.7995,1.3051,0.3439,1,1 +2024-11-16 16:35:16,545,26.0,48.9,118.5647,1.3051,0.3439,1,1 +2024-11-16 16:36:18,377,26.1,49.0,118.5647,1.3051,0.3439,1,1 +2024-11-16 16:37:20,504,26.1,48.8,119.0342,1.3051,0.3439,1,1 +2024-11-16 16:38:22,386,26.1,48.9,118.5647,1.3051,0.3439,1,1 +2024-11-16 16:39:24,455,26.1,48.8,118.7995,1.3051,0.3439,1,1 +2024-11-16 16:40:26,435,26.1,48.9,118.7995,1.3051,0.3439,1,1 +2024-11-16 16:41:28,175,26.1,68.8,119.9734,1.3051,0.3439,1,1 +2024-11-16 16:42:30,193,25.6,61.9,120.9125,1.3051,0.3439,1,1 +2024-11-16 16:43:31,884,25.4,57.1,119.9734,1.3051,0.3439,1,1 +2024-11-16 16:44:33,861,25.4,55.2,119.5038,1.3051,0.3439,1,1 +2024-11-16 16:45:35,833,25.4,54.0,119.2690,1.3051,0.3439,1,1 +2024-11-16 16:46:37,612,25.5,53.3,119.5038,1.3051,0.3439,1,1 +2024-11-16 16:47:39,498,25.5,52.9,119.2690,1.3051,0.3439,1,1 +2024-11-16 16:48:41,261,25.6,52.4,118.5647,1.3051,0.3439,1,1 +2024-11-16 16:49:43,325,25.7,52.2,118.7995,1.3051,0.3439,1,1 +2024-11-16 16:50:45,405,25.7,52.0,118.3299,1.3051,0.3439,1,1 +2024-11-16 16:51:47,527,25.7,51.7,118.7995,1.3051,0.3439,1,1 +2024-11-16 16:52:49,437,25.8,51.6,117.8603,1.3051,0.3439,1,1 +2024-11-16 16:53:51,349,25.8,51.5,118.3299,1.3051,0.3439,1,1 +2024-11-16 16:54:53,124,25.8,51.4,118.7995,1.3051,0.3439,1,1 +2024-11-16 16:55:54,998,25.9,51.4,118.5647,1.3051,0.3439,1,1 +2024-11-16 16:56:56,984,25.9,51.2,118.5647,1.3051,0.3439,1,1 +2024-11-16 16:57:58,825,25.9,51.2,118.5647,1.3051,0.3439,1,1 +2024-11-16 16:59:00,698,25.9,51.1,118.7995,1.3051,0.3439,1,1 +2024-11-16 17:00:02,574,26.0,51.2,118.7995,1.3051,0.3439,1,1 +2024-11-16 17:01:04,297,25.9,51.0,119.2690,1.3051,0.3439,1,1 +2024-11-16 17:02:06,261,26.0,50.9,119.0342,1.3051,0.3439,1,1 +2024-11-16 17:03:08,344,26.0,50.9,119.0342,1.3051,0.3439,1,1 +2024-11-16 17:04:10,518,26.0,50.8,119.2690,1.3051,0.3439,1,1 +2024-11-16 17:05:12,344,26.1,50.8,118.5647,1.3051,0.3439,1,1 +2024-11-16 17:06:14,066,26.1,50.7,118.7995,1.3051,0.3439,1,1 +2024-11-16 17:07:16,003,26.1,50.6,118.7995,1.3051,0.3439,1,1 +2024-11-16 17:08:18,018,26.1,50.7,118.5647,1.3051,0.3439,1,1 +2024-11-16 17:09:19,752,26.1,50.6,118.7995,1.3051,0.3439,1,1 +2024-11-16 17:10:21,644,26.1,50.6,118.5647,1.3051,0.3439,1,1 +2024-11-16 17:11:23,427,26.1,50.5,118.5647,1.3051,0.3439,1,1 +2024-11-16 17:12:25,401,26.2,50.5,118.7995,1.3051,0.3439,1,1 +2024-11-16 17:13:27,482,26.2,50.5,117.8603,1.3051,0.3439,1,1 +2024-11-16 17:14:29,352,26.2,50.5,118.3299,1.3051,0.3439,1,1 +2024-11-16 17:15:31,340,26.2,50.5,117.6256,1.3051,0.3439,1,1 +2024-11-16 17:16:33,271,26.2,50.4,118.0951,1.3051,0.3439,1,1 +2024-11-16 17:17:35,080,26.2,50.4,117.8603,1.3051,0.3439,1,1 +2024-11-16 17:18:37,147,26.2,50.4,118.0951,1.3051,0.3439,1,1 +2024-11-16 17:19:39,127,26.3,50.3,117.8603,1.3051,0.3439,1,1 +2024-11-16 17:20:41,079,26.3,50.3,117.8603,1.3051,0.3439,1,1 +2024-11-16 17:21:43,102,26.3,50.3,118.0951,1.3051,0.3439,1,1 +2024-11-16 17:22:45,084,26.3,50.3,118.0951,1.3051,0.3439,1,1 +2024-11-16 17:23:46,841,26.3,50.2,117.3908,1.3051,0.3439,1,1 +2024-11-16 17:24:48,769,26.3,50.2,117.1560,1.3051,0.3439,1,1 +2024-11-16 17:25:50,788,26.3,50.2,117.6256,1.3051,0.3439,1,1 +2024-11-16 17:26:53,318,26.3,50.2,117.6256,1.3051,0.3439,1,1 +2024-11-16 17:27:55,126,26.3,50.1,117.8603,1.3051,0.3439,1,1 +2024-11-16 18:40:47,896,26.5,50.0,0.2348,0.2610,0.1146,1,1 +2024-11-16 18:41:55,195,26.6,49.8,121.1473,1.5661,0.3439,1,1 +2024-11-16 18:48:48,363,26.5,50.1,0.0000,0.0000,0.0000,1,1 +2024-11-16 18:49:56,391,26.6,50.2,0.0000,0.0000,0.0000,1,1 +2024-11-16 18:50:52,386,26.6,50.3,0.0000,0.0000,0.0000,1,1 +2024-11-16 18:51:52,821,26.7,49.9,7.7478,17039.5057,3785.3815,1,1 +2024-11-16 18:52:54,556,26.7,49.8,7.7478,17039.5057,3785.3815,1,1 +2024-11-16 18:55:29,869,26.6,50.0,0.0000,0.2610,0.0000,1,1 +2024-11-16 18:55:37,037,26.6,49.9,0.2348,0.2610,0.1146,1,1 +2024-11-16 18:56:38,735,26.7,49.7,177.2601,9.6578,0.4585,1,1 +2024-11-16 18:57:40,539,26.7,49.7,177.0253,9.6578,0.4585,1,1 +2024-11-16 18:58:42,290,26.7,49.6,177.0253,9.3968,0.4585,1,1 +2024-11-16 18:59:44,122,26.7,49.6,177.0253,9.3968,0.4585,1,1 +2024-11-16 19:00:46,145,26.7,49.7,176.7905,9.3968,0.4585,1,1 +2024-11-16 19:01:47,943,26.7,49.6,177.0253,9.3968,0.4585,1,1 +2024-11-16 19:02:49,915,26.7,49.6,177.0253,9.3968,0.4585,1,1 +2024-11-16 19:03:51,778,26.7,49.5,177.0253,9.3968,0.4585,1,1 +2024-11-16 19:04:53,382,26.7,49.7,176.5557,9.3968,0.4585,1,1 +2024-11-16 19:05:55,291,26.7,49.4,176.0862,9.3968,0.4585,1,1 +2024-11-16 19:06:57,052,26.7,49.6,176.3209,9.3968,0.4585,1,1 +2024-11-16 19:07:58,915,26.7,49.5,176.7905,9.3968,0.4585,1,1 +2024-11-16 19:09:00,656,26.7,49.4,177.0253,9.3968,0.4585,1,1 +2024-11-16 19:10:02,498,26.8,49.4,177.0253,9.3968,0.4585,1,1 +2024-11-16 19:11:04,502,26.8,49.4,176.7905,9.3968,0.4585,1,1 +2024-11-16 19:12:06,315,26.8,49.4,177.0253,9.3968,0.4585,1,1 +2024-11-16 19:13:08,159,26.8,49.4,176.3209,9.3968,0.4585,1,1 +2024-11-16 19:14:10,013,26.8,49.4,176.5557,9.3968,0.4585,1,1 +2024-11-16 19:15:11,914,26.8,49.4,176.7905,9.3968,0.4585,1,1 +2024-11-16 19:16:13,777,26.8,49.3,176.5557,9.3968,0.4585,1,1 +2024-11-16 19:17:15,670,26.8,49.3,176.7905,9.3968,0.4585,1,1 +2024-11-16 19:18:17,531,26.8,49.4,176.3209,9.3968,0.4585,1,1 +2024-11-16 19:19:19,368,26.8,49.4,176.3209,9.3968,0.4585,1,1 +2024-11-16 19:20:21,268,26.8,49.4,176.5557,9.3968,0.4585,1,1 +2024-11-16 19:21:23,055,26.8,49.3,175.6166,9.3968,0.4585,1,1 +2024-11-16 19:22:25,022,26.9,49.3,176.3209,9.3968,0.4585,1,1 +2024-11-16 19:23:27,073,26.8,49.3,176.3209,9.3968,0.4585,1,1 +2024-11-16 19:24:28,895,26.9,49.3,176.3209,9.3968,0.4585,1,1 +2024-11-16 19:25:30,671,26.9,49.3,176.0862,9.3968,0.4585,1,1 +2024-11-16 19:26:32,526,26.9,49.2,176.0862,9.3968,0.3439,1,1 +2024-11-16 19:27:34,676,26.9,49.2,176.0862,9.3968,0.4585,1,1 +2024-11-16 19:28:36,722,26.9,49.2,176.0862,9.3968,0.4585,1,1 +2024-11-16 19:29:38,743,26.9,49.3,175.6166,9.3968,0.4585,1,1 +2024-11-16 19:30:40,788,26.9,49.3,0.2348,0.2610,0.1146,0,0 +2024-11-16 19:31:42,585,26.9,49.2,0.2348,0.2610,0.1146,0,0 +2024-11-16 19:32:44,451,26.8,49.2,0.0000,0.2610,0.0000,0,0 +2024-11-16 19:33:46,408,26.7,49.3,0.0000,0.2610,0.0000,0,0 +2024-11-16 19:34:48,253,26.7,49.4,0.2348,0.2610,0.1146,0,0 +2024-11-16 19:35:50,220,26.6,49.4,0.2348,0.0000,0.0000,0,0 +2024-11-16 19:36:52,056,26.5,49.6,0.2348,0.2610,0.1146,0,0 +2024-11-16 19:37:53,571,26.4,49.7,0.2348,0.2610,0.0000,0,0 +2024-11-16 19:38:55,504,26.3,49.9,0.2348,0.2610,0.1146,0,0 +2024-11-16 19:39:57,510,26.2,50.0,0.0000,0.0000,0.0000,0,0 +2024-11-16 19:40:59,520,26.2,50.1,0.2348,0.0000,0.1146,0,0 +2024-11-16 19:42:01,420,26.1,50.3,0.2348,0.0000,0.0000,0,0 +2024-11-16 19:43:03,129,26.0,50.3,0.2348,0.0000,0.1146,0,0 +2024-11-16 19:44:04,960,25.9,50.5,0.2348,0.2610,0.1146,0,0 +2024-11-16 19:45:06,826,25.8,50.6,0.2348,0.2610,0.1146,0,0 +2024-11-16 19:46:08,633,25.7,50.7,0.2348,0.2610,0.1146,0,0 +2024-11-16 19:47:10,515,25.7,50.9,0.2348,0.2610,0.1146,0,0 +2024-11-16 19:48:12,561,25.6,51.0,0.2348,0.2610,0.1146,0,0 +2024-11-16 19:49:14,517,25.5,51.1,0.2348,0.2610,0.1146,0,0 +2024-11-16 19:50:16,480,25.5,51.2,0.2348,0.2610,0.1146,0,0 +2024-11-16 19:51:18,132,25.4,51.3,0.0000,0.0000,0.0000,0,0 +2024-11-16 19:52:19,888,25.3,51.4,0.2348,0.2610,0.1146,0,0 +2024-11-16 19:53:21,808,25.2,51.5,0.2348,0.2610,0.1146,0,0 +2024-11-16 19:54:23,602,25.2,51.6,0.0000,0.2610,0.0000,0,0 +2024-11-16 19:55:25,670,25.1,51.7,0.2348,0.2610,0.0000,0,0 +2024-11-16 19:56:27,695,25.1,51.7,0.0000,0.0000,0.0000,0,0 +2024-11-16 19:57:29,599,25.0,51.8,0.0000,0.0000,0.0000,0,0 +2024-11-16 19:58:31,650,24.9,51.9,0.2348,0.2610,0.1146,0,0 +2024-11-16 19:59:33,412,24.8,51.9,0.0000,0.0000,0.0000,0,0 +2024-11-16 20:00:35,325,24.8,52.1,0.2348,0.2610,0.1146,0,0 +2024-11-16 20:01:37,326,24.7,52.2,0.0000,0.0000,0.1146,0,0 +2024-11-16 20:02:38,994,24.7,52.3,0.0000,0.0000,0.0000,0,0 +2024-11-16 20:03:40,749,24.6,52.4,0.2348,0.2610,0.1146,0,0 +2024-11-16 20:04:42,372,24.6,52.5,0.2348,0.2610,0.0000,0,0 +2024-11-16 20:05:44,140,24.5,52.7,0.2348,0.2610,0.1146,0,0 +2024-11-16 20:06:46,039,24.4,52.7,0.2348,0.2610,0.1146,0,0 +2024-11-16 20:07:47,893,24.4,52.8,0.2348,0.2610,0.0000,0,0 +2024-11-16 20:08:49,847,24.3,52.9,0.0000,0.2610,0.0000,0,0 +2024-11-16 20:09:51,620,24.2,52.9,0.0000,0.0000,0.0000,0,0 +2024-11-16 20:10:53,685,24.2,53.0,0.0000,0.2610,0.0000,0,0 +2024-11-16 20:11:55,450,24.1,53.1,0.2348,0.2610,0.1146,0,0 +2024-11-16 20:12:57,350,24.1,53.1,0.2348,0.2610,0.1146,0,0 +2024-11-16 20:13:59,223,24.0,53.2,0.2348,0.2610,0.1146,0,0 +2024-11-16 20:15:01,278,24.0,53.3,0.0000,0.0000,0.0000,0,0 +2024-11-16 20:16:03,146,23.9,53.4,0.2348,0.2610,0.0000,0,0 +2024-11-16 20:17:05,098,23.8,53.4,0.2348,0.2610,0.1146,0,0 +2024-11-16 20:18:07,150,23.8,53.5,0.2348,0.2610,0.1146,0,0 +2024-11-16 20:19:08,947,23.7,53.5,0.2348,0.2610,0.1146,0,0 +2024-11-16 20:20:11,109,23.7,53.6,0.0000,0.0000,0.0000,0,0 +2024-11-16 20:21:12,988,23.6,53.7,0.2348,0.2610,0.0000,0,0 +2024-11-16 20:22:15,164,23.5,53.6,0.2348,0.2610,0.0000,0,0 +2024-11-16 20:23:17,196,23.5,53.8,0.0000,0.0000,0.0000,0,0 +2024-11-16 20:24:19,015,23.4,53.8,0.2348,0.2610,0.1146,0,0 +2024-11-16 20:25:20,857,23.4,53.9,0.2348,0.2610,0.1146,0,0 +2024-11-16 20:26:23,036,23.3,53.9,0.2348,0.2610,0.0000,0,0 +2024-11-16 20:27:25,007,23.3,54.0,0.2348,0.2610,0.1146,0,0 +2024-11-16 20:28:26,977,23.2,54.0,0.2348,0.2610,0.0000,0,0 +2024-11-16 20:29:28,857,23.1,54.0,0.2348,0.2610,0.0000,0,0 +2024-11-16 20:30:30,918,23.1,54.1,0.2348,0.2610,0.1146,0,0 +2024-11-16 20:31:32,838,23.1,54.1,0.2348,0.2610,0.1146,0,0 +2024-11-16 20:32:34,610,23.0,54.1,0.2348,0.2610,0.1146,0,0 +2024-11-16 20:33:36,417,23.0,54.2,0.2348,0.2610,0.1146,0,0 +2024-11-16 20:34:38,318,22.9,54.2,0.2348,0.2610,0.1146,0,0 +2024-11-16 20:35:40,279,22.9,54.2,0.2348,0.2610,0.0000,0,0 +2024-11-16 20:36:42,040,22.8,54.3,0.2348,0.0000,0.1146,0,0 +2024-11-16 20:37:43,898,22.8,54.3,0.2348,0.0000,0.1146,0,0 +2024-11-16 20:38:45,758,22.7,54.4,0.2348,0.2610,0.1146,0,0 +2024-11-16 20:39:47,718,22.7,54.5,0.2348,0.2610,0.1146,0,0 +2024-11-16 20:40:49,589,22.6,54.5,0.2348,0.2610,0.1146,0,0 +2024-11-16 20:41:51,543,22.6,54.5,0.2348,0.2610,0.1146,0,0 +2024-11-16 20:42:53,398,22.5,54.5,0.2348,0.2610,0.1146,0,0 +2024-11-16 20:43:55,145,22.5,54.6,0.2348,0.2610,0.0000,0,0 +2024-11-16 20:44:57,015,22.5,54.7,0.2348,0.2610,0.1146,0,0 +2024-11-16 20:45:58,875,22.4,54.7,0.2348,0.2610,0.1146,0,0 +2024-11-16 20:47:00,735,22.4,54.8,0.0000,0.0000,0.0000,0,0 +2024-11-16 20:48:02,479,22.3,54.8,0.0000,0.0000,0.0000,0,0 +2024-11-16 20:49:04,335,22.3,54.9,0.2348,0.2610,0.1146,0,0 +2024-11-16 20:50:06,087,22.2,54.9,0.2348,0.2610,0.0000,0,0 +2024-11-16 20:51:07,957,22.2,54.9,0.0000,0.2610,0.0000,0,0 +2024-11-16 20:52:09,993,22.2,55.0,0.2348,0.2610,0.0000,0,0 +2024-11-16 20:53:11,835,22.1,55.1,0.2348,0.2610,0.1146,0,0 +2024-11-16 20:54:13,787,22.1,55.0,0.2348,0.2610,0.1146,0,0 +2024-11-16 20:55:15,610,22.0,55.0,0.0000,0.0000,0.1146,0,0 +2024-11-16 20:56:17,840,22.0,55.2,0.2348,0.2610,0.0000,0,0 +2024-11-16 20:57:19,870,21.9,55.2,0.2348,0.2610,0.0000,0,0 +2024-11-16 20:58:21,567,21.9,55.2,0.0000,0.0000,0.0000,0,0 +2024-11-16 20:59:23,478,21.9,55.2,0.2348,0.2610,0.1146,0,0 +2024-11-16 21:00:25,226,21.8,55.2,0.2348,0.2610,0.1146,0,0 +2024-11-16 21:01:26,926,21.8,55.3,0.2348,0.0000,0.1146,0,0 +2024-11-16 21:02:28,604,21.7,55.3,0.2348,0.2610,0.0000,0,0 +2024-11-16 21:03:30,527,21.7,55.4,0.2348,0.2610,0.0000,0,0 +2024-11-16 21:04:32,353,21.6,55.4,0.2348,0.2610,0.1146,0,0 +2024-11-16 21:05:34,066,21.6,55.4,0.2348,0.2610,0.1146,0,0 +2024-11-16 21:06:35,644,21.6,55.4,0.2348,0.2610,0.1146,0,0 +2024-11-16 21:07:37,300,21.5,55.5,0.2348,0.2610,0.1146,0,0 +2024-11-16 21:08:39,298,21.5,55.6,0.2348,0.2610,0.1146,0,0 +2024-11-16 21:09:41,387,21.4,55.5,0.2348,0.2610,0.1146,0,0 +2024-11-16 21:10:43,454,21.4,55.5,0.2348,0.0000,0.1146,0,0 +2024-11-16 21:11:45,218,21.4,55.7,0.2348,0.2610,0.1146,0,0 +2024-11-16 21:12:46,958,21.3,55.7,0.2348,0.0000,0.1146,0,0 +2024-11-16 21:13:48,824,21.3,55.7,0.2348,0.0000,0.1146,0,0 +2024-11-16 21:14:50,463,21.2,55.7,0.2348,0.2610,0.1146,0,0 +2024-11-16 21:15:52,192,21.2,55.8,0.0000,0.2610,0.0000,0,0 +2024-11-16 21:16:54,003,21.2,55.8,0.2348,0.2610,0.1146,0,0 +2024-11-16 21:17:55,663,21.2,55.8,0.2348,0.2610,0.1146,0,0 +2024-11-16 21:18:57,531,21.1,55.8,0.2348,0.2610,0.1146,0,0 +2024-11-16 21:19:59,730,21.1,55.9,0.2348,0.2610,0.1146,0,0 +2024-11-16 21:21:01,693,21.0,55.9,0.2348,0.2610,0.1146,0,0 +2024-11-16 21:22:03,537,21.0,56.0,0.0000,0.2610,0.0000,0,0 +2024-11-16 21:23:05,650,21.0,55.9,0.2348,0.2610,0.1146,0,0 +2024-11-16 21:24:07,394,20.9,56.0,0.2348,0.2610,0.1146,0,0 +2024-11-16 21:25:09,147,20.9,56.0,0.2348,0.2610,0.1146,0,0 +2024-11-16 21:26:11,157,20.9,56.0,0.2348,0.0000,0.1146,0,0 +2024-11-16 21:27:12,923,20.8,56.0,0.0000,0.2610,0.0000,0,0 +2024-11-16 21:28:14,895,20.8,56.1,0.0000,0.2610,0.0000,0,0 +2024-11-16 21:29:16,772,20.8,56.1,0.2348,0.2610,0.0000,0,0 +2024-11-16 21:30:18,437,20.7,56.1,0.2348,0.2610,0.1146,0,0 +2024-11-16 21:31:20,591,20.7,56.2,0.2348,0.2610,0.1146,0,0 +2024-11-16 21:32:22,514,20.7,56.2,0.2348,0.2610,0.0000,0,0 +2024-11-16 21:33:24,502,20.6,56.4,0.2348,0.2610,0.1146,0,0 +2024-11-16 21:34:26,357,20.6,56.2,0.2348,0.2610,0.1146,0,0 +2024-11-16 21:35:28,123,20.6,56.3,0.2348,0.2610,0.1146,0,0 +2024-11-16 21:36:29,904,20.6,56.3,0.2348,0.2610,0.1146,0,0 +2024-11-16 21:37:31,551,20.5,56.4,0.2348,0.2610,0.1146,0,0 +2024-11-16 21:38:33,342,20.5,56.4,0.2348,0.2610,0.0000,0,0 +2024-11-16 21:39:35,419,20.5,56.4,0.2348,0.2610,0.1146,0,0 +2024-11-16 21:40:37,298,20.5,56.4,0.2348,0.2610,0.0000,0,0 +2024-11-16 21:41:39,193,20.4,56.4,0.2348,0.2610,0.1146,0,0 +2024-11-16 21:42:41,091,20.4,56.4,0.0000,0.0000,0.0000,0,0 +2024-11-16 21:43:43,049,20.3,56.5,0.2348,0.2610,0.1146,0,0 +2024-11-16 21:44:44,892,20.3,56.5,0.0000,0.2610,0.1146,0,0 +2024-11-16 21:45:47,056,20.3,56.5,0.2348,0.2610,0.1146,0,0 +2024-11-16 21:46:49,085,20.2,56.6,0.2348,0.2610,0.1146,0,0 +2024-11-16 21:47:50,690,20.2,56.5,0.2348,0.2610,0.1146,0,0 +2024-11-16 21:48:52,847,20.2,56.5,0.0000,0.0000,0.0000,0,0 +2024-11-16 21:49:54,872,20.2,56.7,0.2348,0.2610,0.1146,0,0 +2024-11-16 21:50:56,780,20.2,56.7,0.0000,0.2610,0.0000,0,0 +2024-11-16 21:51:58,736,20.1,56.7,0.2348,0.2610,0.1146,0,0 +2024-11-16 21:53:00,782,20.1,56.7,0.2348,0.2610,0.1146,0,0 +2024-11-16 21:54:02,659,20.1,56.7,0.2348,0.2610,0.1146,0,0 +2024-11-16 21:55:04,527,20.0,56.7,0.2348,0.2610,0.0000,0,0 +2024-11-16 21:56:06,258,20.0,56.7,0.2348,0.2610,0.0000,0,0 +2024-11-16 21:57:07,963,20.0,56.8,0.2348,0.0000,0.1146,0,0 +2024-11-16 21:58:09,669,20.0,56.8,0.2348,0.0000,0.1146,0,0 +2024-11-16 21:59:11,374,20.0,56.9,0.2348,0.2610,0.1146,0,0 +2024-11-16 22:00:13,193,19.9,56.8,0.2348,0.2610,0.1146,0,0 +2024-11-16 22:01:15,038,19.9,57.0,0.2348,0.2610,0.1146,0,0 +2024-11-16 22:02:16,840,19.8,57.0,0.2348,0.2610,0.1146,0,0 +2024-11-16 22:03:18,681,19.8,56.9,0.2348,0.2610,0.0000,0,0 +2024-11-16 22:04:20,433,19.8,56.9,0.2348,0.2610,0.1146,0,0 +2024-11-16 22:05:21,994,19.8,56.9,0.2348,0.2610,0.1146,0,0 +2024-11-16 22:06:23,749,19.7,57.0,0.2348,0.2610,0.1146,0,0 +2024-11-16 22:07:25,816,19.7,57.0,0.2348,0.2610,0.1146,0,0 +2024-11-16 22:08:27,922,19.7,57.0,0.2348,0.2610,0.0000,0,0 +2024-11-16 22:09:29,616,19.7,57.0,0.2348,0.2610,0.1146,0,0 +2024-11-16 22:10:31,462,19.7,57.1,0.2348,0.2610,0.0000,0,0 +2024-11-16 22:11:33,326,19.7,57.1,0.2348,0.2610,0.1146,0,0 +2024-11-16 22:12:34,834,19.6,57.1,0.2348,0.2610,0.1146,0,0 +2024-11-16 22:13:36,562,19.6,57.1,0.2348,0.2610,0.0000,0,0 +2024-11-16 22:14:38,433,19.6,57.1,0.2348,0.2610,0.1146,0,0 +2024-11-16 22:15:40,377,19.5,57.1,0.2348,0.2610,0.0000,0,0 +2024-11-16 22:16:42,192,19.5,57.3,0.2348,0.2610,0.1146,0,0 +2024-11-16 22:17:44,074,19.5,57.2,0.2348,0.2610,0.1146,0,0 +2024-11-16 22:18:46,035,19.5,57.2,0.2348,0.2610,0.0000,0,0 +2024-11-16 22:19:47,980,19.5,57.3,0.0000,0.2610,0.1146,0,0 +2024-11-16 22:20:49,698,19.4,57.2,0.0000,0.0000,0.1146,0,0 +2024-11-16 22:21:51,520,19.4,57.2,0.2348,0.2610,0.1146,0,0 +2024-11-16 22:22:53,350,19.4,57.2,0.2348,0.0000,0.1146,0,0 +2024-11-16 22:23:55,156,19.3,57.3,0.2348,0.2610,0.1146,0,0 +2024-11-16 22:24:57,033,19.3,57.3,0.2348,0.2610,0.1146,0,0 +2024-11-16 22:25:58,853,19.3,57.4,0.0000,0.0000,0.0000,0,0 +2024-11-16 22:27:00,701,19.3,57.3,0.2348,0.2610,0.1146,0,0 +2024-11-16 22:28:02,391,19.3,57.4,0.2348,0.2610,0.1146,0,0 +2024-11-16 22:29:04,124,19.3,57.4,0.0000,0.2610,0.0000,0,0 +2024-11-16 22:30:05,914,19.3,57.3,0.2348,0.2610,0.1146,0,0 +2024-11-16 22:31:07,743,19.2,57.4,0.2348,0.2610,0.1146,0,0 +2024-11-16 22:32:09,509,19.2,57.4,0.0000,0.0000,0.0000,0,0 +2024-11-16 22:33:11,333,19.2,57.4,0.2348,0.2610,0.1146,0,0 +2024-11-16 22:34:13,228,19.1,57.4,0.2348,0.2610,0.1146,0,0 +2024-11-16 22:35:14,978,19.1,57.4,0.2348,0.2610,0.0000,0,0 +2024-11-16 22:36:16,719,19.1,57.5,0.2348,0.2610,0.0000,0,0 +2024-11-16 22:37:18,395,19.1,57.4,0.2348,0.2610,0.1146,0,0 +2024-11-16 22:38:20,092,19.1,57.5,0.0000,0.2610,0.1146,0,0 +2024-11-16 22:39:21,822,19.1,57.5,0.2348,0.0000,0.1146,0,0 +2024-11-16 22:40:23,467,19.1,57.5,0.2348,0.2610,0.0000,0,0 +2024-11-16 22:41:25,153,19.0,57.5,0.2348,0.0000,0.1146,0,0 +2024-11-16 22:42:26,961,19.0,57.6,0.2348,0.0000,0.1146,0,0 +2024-11-16 22:43:29,158,19.0,57.5,0.2348,0.2610,0.1146,0,0 +2024-11-16 22:44:31,258,19.0,57.5,0.0000,0.0000,0.1146,0,0 +2024-11-16 22:45:33,131,19.0,57.6,0.2348,0.2610,0.1146,0,0 +2024-11-16 22:46:34,980,18.9,57.6,0.2348,0.2610,0.1146,0,0 +2024-11-16 22:47:36,795,18.9,57.6,0.2348,0.0000,0.0000,0,0 +2024-11-16 22:48:38,847,18.9,57.6,0.2348,0.2610,0.0000,0,0 +2024-11-16 22:49:40,909,18.9,57.6,0.2348,0.2610,0.1146,0,0 +2024-11-16 22:50:42,584,18.9,57.7,0.2348,0.2610,0.0000,0,0 +2024-11-16 22:51:44,241,18.8,57.7,0.2348,0.2610,0.1146,0,0 +2024-11-16 22:52:46,176,18.8,57.7,0.2348,0.2610,0.1146,0,0 +2024-11-16 22:53:47,833,18.8,57.8,0.2348,0.2610,0.1146,0,0 +2024-11-16 22:54:49,597,18.8,57.8,0.2348,0.2610,0.1146,0,0 +2024-11-16 22:55:51,292,18.8,57.7,0.0000,0.0000,0.0000,0,0 +2024-11-16 22:56:52,964,18.8,57.8,0.2348,0.2610,0.1146,0,0 +2024-11-16 22:57:54,620,18.7,57.8,0.2348,0.2610,0.1146,0,0 +2024-11-16 22:58:55,016,18.7,57.8,0.2348,0.2610,0.1146,0,0 +2024-11-16 22:59:56,941,18.7,57.8,0.2348,0.2610,0.1146,0,0 +2024-11-16 23:00:58,715,18.7,57.8,0.2348,0.2610,0.1146,0,0 +2024-11-16 23:02:00,618,18.7,57.8,0.2348,0.2610,0.0000,0,0 +2024-11-16 23:03:02,634,18.6,57.9,0.2348,0.2610,0.1146,0,0 +2024-11-16 23:04:04,358,18.6,57.9,0.2348,0.2610,0.1146,0,0 +2024-11-16 23:05:06,087,18.6,57.9,0.2348,0.2610,0.1146,0,0 +2024-11-16 23:06:08,055,18.6,57.9,0.2348,0.2610,0.0000,0,0 +2024-11-16 23:07:09,750,18.5,57.9,0.0000,0.2610,0.0000,0,0 +2024-11-16 23:08:11,432,18.5,57.9,0.2348,0.2610,0.1146,0,0 +2024-11-16 23:08:22,531,18.5,57.9,0.2348,0.2610,0.0000,0,0 +2024-11-16 23:09:24,395,18.5,57.9,0.2348,0.2610,0.0000,0,0 +2024-11-16 23:10:26,147,18.5,58.0,0.2348,0.2610,0.1146,0,0 +2024-11-16 23:10:31,525,18.5,58.0,0.2348,0.2610,0.1146,0,0 +2024-11-16 23:11:33,239,18.5,57.9,0.2348,0.2610,0.1146,0,0 +2024-11-16 23:12:35,174,18.4,58.0,0.2348,0.2610,0.1146,0,0 +2024-11-16 23:13:37,042,18.5,58.0,0.2348,0.2610,0.1146,0,0 +2024-11-16 23:14:38,551,18.4,58.0,0.2348,0.2610,0.1146,0,0 +2024-11-16 23:15:46,368,18.4,58.0,0.0000,0.0000,0.0000,0,0 +2024-11-16 23:16:49,587,18.4,58.2,0.2348,0.2610,0.0000,0,0 +2024-11-16 23:19:07,881,18.3,58.4,0.2348,0.2610,0.1146,0,0 +2024-11-16 23:20:28,581,18.2,58.5,0.0000,0.2610,0.1146,0,0 +2024-11-16 23:25:29,662,18.3,58.3,0.2348,0.0000,0.1146,0,0 +2024-11-16 23:26:29,790,18.2,58.5,0.2348,0.2610,0.1146,0,0 +2024-11-16 23:38:11,634,17.9,58.8,0.2348,0.2610,0.1146,0,0 +2024-11-16 23:39:18,388,18.0,58.4,0.2348,0.2610,0.1146,0,0 +2024-11-16 23:40:15,520,18.0,58.4,0.2348,0.2610,0.0000,0,0 +2024-11-16 23:41:30,674,17.9,58.6,0.2348,0.2610,0.1146,0,0 +2024-11-16 23:45:04,655,17.9,58.8,-1.0000,-1.0000,-1.0000,0,0 +2024-11-16 23:46:07,539,18.0,58.5,-1.0000,-1.0000,-1.0000,0,0 +2024-11-16 23:47:10,424,18.0,58.3,-1.0000,-1.0000,-1.0000,0,0 +2024-11-16 23:48:13,206,18.0,58.3,-1.0000,-1.0000,-1.0000,0,0 +2024-11-16 23:49:16,055,18.0,58.3,-1.0000,-1.0000,-1.0000,0,0 +2024-11-16 23:50:18,896,18.0,58.3,-1.0000,-1.0000,-1.0000,0,0 +2024-11-16 23:51:21,824,18.0,58.3,-1.0000,-1.0000,-1.0000,0,0 +2024-11-16 23:52:24,641,18.0,58.3,-1.0000,-1.0000,-1.0000,0,0 +2024-11-16 23:53:27,153,17.9,58.3,-1.0000,-1.0000,-1.0000,0,0 +2024-11-16 23:54:29,783,17.9,58.3,-1.0000,-1.0000,-1.0000,0,0 +2024-11-16 23:55:32,413,17.9,58.3,-1.0000,-1.0000,-1.0000,0,0 +2024-11-16 23:56:32,608,17.9,58.3,-1.0000,-1.0000,-1.0000,0,0 +2024-11-16 23:57:32,690,17.9,58.3,-1.0000,-1.0000,-1.0000,0,0 +2024-11-16 23:58:35,628,17.9,58.3,-1.0000,-1.0000,-1.0000,0,0 +2024-11-16 23:59:35,727,17.9,58.3,-1.0000,-1.0000,-1.0000,0,0 +2024-11-17 00:00:38,471,17.9,58.3,-1.0000,-1.0000,-1.0000,0,0 +2024-11-17 00:01:41,406,17.8,58.3,-1.0000,-1.0000,-1.0000,0,0 +2024-11-17 00:02:44,164,17.8,58.3,-1.0000,-1.0000,-1.0000,0,0 +2024-11-17 00:03:47,087,17.8,58.3,-1.0000,-1.0000,-1.0000,0,0 +2024-11-17 00:04:49,786,17.8,58.3,-1.0000,-1.0000,-1.0000,0,0 +2024-11-17 00:05:52,522,17.8,58.3,-1.0000,-1.0000,-1.0000,0,0 +2024-11-17 00:06:55,452,17.8,58.3,-1.0000,-1.0000,-1.0000,0,0 +2024-11-17 00:07:58,109,17.8,58.4,-1.0000,-1.0000,-1.0000,0,0 +2024-11-17 00:09:00,711,17.8,58.3,-1.0000,-1.0000,-1.0000,0,0 +2024-11-17 00:10:03,677,17.8,58.3,-1.0000,-1.0000,-1.0000,0,0 +2024-11-17 00:11:06,510,17.7,58.3,-1.0000,-1.0000,-1.0000,0,0 +2024-11-17 00:12:09,381,17.7,58.3,-1.0000,-1.0000,-1.0000,0,0 +2024-11-17 00:12:12,063,17.7,58.3,-1.0000,-1.0000,-1.0000,0,0 +2024-11-17 00:12:34,618,17.8,58.3,-1.0000,-1.0000,-1.0000,0,0 +2024-11-17 00:13:34,709,17.7,58.3,-1.0000,-1.0000,-1.0000,0,0 +2024-11-17 00:14:37,161,17.7,58.4,-1.0000,-1.0000,-1.0000,0,0 +2024-11-17 00:15:39,769,17.7,58.4,-1.0000,-1.0000,-1.0000,0,0 +2024-11-17 00:16:42,529,17.7,58.3,-1.0000,-1.0000,-1.0000,0,0 +2024-11-17 00:17:45,105,17.7,58.4,-1.0000,-1.0000,-1.0000,0,0 +2024-11-17 00:18:45,159,17.7,58.4,-1.0000,-1.0000,-1.0000,0,0 +2024-11-17 00:19:47,763,17.7,58.4,-1.0000,-1.0000,-1.0000,0,0 +2024-11-17 00:29:11,437,17.4,59.0,-1.0000,-1.0000,-1.0000,0,0 +2024-11-17 00:30:11,470,17.5,58.7,-1.0000,-1.0000,-1.0000,0,0 +2024-11-17 00:31:14,378,17.5,58.5,-1.0000,-1.0000,-1.0000,0,0 +2024-11-17 00:31:55,477,17.5,58.5,-1.0000,-1.0000,-1.0000,0,0 +2024-11-17 00:32:58,098,17.5,58.5,-1.0000,-1.0000,-1.0000,0,0 +2024-11-17 00:34:00,776,17.5,58.5,-1.0000,-1.0000,-1.0000,0,0 +2024-11-17 00:35:03,454,17.5,58.5,-1.0000,-1.0000,-1.0000,0,0 +2024-11-17 00:36:06,280,17.5,58.5,-1.0000,-1.0000,-1.0000,0,0 +2024-11-17 00:37:06,453,17.5,58.5,-1.0000,-1.0000,-1.0000,0,0 +2024-11-17 00:38:09,219,17.5,58.5,-1.0000,-1.0000,-1.0000,0,0 +2024-11-17 00:39:11,926,17.5,58.5,-1.0000,-1.0000,-1.0000,0,0 +2024-11-17 00:40:14,864,17.5,58.5,-1.0000,-1.0000,-1.0000,0,0 +2024-11-17 00:41:17,555,17.5,58.5,-1.0000,-1.0000,-1.0000,0,0 +2024-11-17 00:42:20,330,17.5,58.5,-1.0000,-1.0000,-1.0000,0,0 +2024-11-17 00:43:23,132,17.4,58.5,-1.0000,-1.0000,-1.0000,0,0 +2024-11-17 00:44:25,919,17.4,58.5,-1.0000,-1.0000,-1.0000,0,0 +2024-11-17 00:45:28,593,17.4,58.5,-1.0000,-1.0000,-1.0000,0,0 +2024-11-17 00:46:31,375,17.4,58.5,-1.0000,-1.0000,-1.0000,0,0 +2024-11-17 00:47:34,318,17.4,58.5,-1.0000,-1.0000,-1.0000,0,0 +2024-11-17 00:48:37,181,17.4,58.6,-1.0000,-1.0000,-1.0000,0,0 +2024-11-17 00:49:40,130,17.4,58.5,-1.0000,-1.0000,-1.0000,0,0 +2024-11-17 00:50:42,978,17.4,58.5,-1.0000,-1.0000,-1.0000,0,0 +2024-11-17 00:50:57,231,17.4,58.5,-1.0000,-1.0000,-1.0000,0,1 +2024-11-17 00:51:57,250,17.4,58.6,-1.0000,-1.0000,-1.0000,0,1 +2024-11-17 00:53:00,132,17.4,58.7,-1.0000,-1.0000,-1.0000,0,1 +2024-11-17 00:54:03,092,17.4,59.0,-1.0000,-1.0000,-1.0000,0,1 +2024-11-17 00:55:06,067,17.4,59.4,-1.0000,-1.0000,-1.0000,0,1 +2024-11-17 00:56:09,029,17.5,59.9,-1.0000,-1.0000,-1.0000,0,1 +2024-11-17 00:57:12,045,17.6,60.1,-1.0000,-1.0000,-1.0000,0,1 +2024-11-17 00:58:12,056,17.6,59.8,-1.0000,-1.0000,-1.0000,0,1 +2024-11-17 00:59:15,002,17.7,59.9,-1.0000,-1.0000,-1.0000,0,1 +2024-11-17 01:00:18,019,17.8,59.9,-1.0000,-1.0000,-1.0000,0,1 +2024-11-17 01:01:21,025,17.9,59.8,-1.0000,-1.0000,-1.0000,0,1 +2024-11-17 01:02:23,768,18.0,59.7,-1.0000,-1.0000,-1.0000,0,1 +2024-11-17 01:03:26,273,18.1,59.6,-1.0000,-1.0000,-1.0000,0,1 +2024-11-17 01:04:29,125,18.1,59.4,-1.0000,-1.0000,-1.0000,0,1 +2024-11-17 01:05:32,042,18.2,59.5,-1.0000,-1.0000,-1.0000,0,1 +2024-11-17 01:06:37,433,18.3,59.8,-1.0000,-1.0000,-1.0000,0,1 +2024-11-17 01:07:40,121,18.4,59.8,-1.0000,-1.0000,-1.0000,0,1 +2024-11-17 01:08:42,840,18.5,59.7,-1.0000,-1.0000,-1.0000,0,1 +2024-11-17 01:09:45,555,18.6,59.7,-1.0000,-1.0000,-1.0000,0,1 +2024-11-17 01:10:48,565,18.7,59.6,-1.0000,-1.0000,-1.0000,0,1 +2024-11-17 01:11:51,239,18.8,59.4,-1.0000,-1.0000,-1.0000,0,1 +2024-11-17 01:12:53,912,18.9,59.3,-1.0000,-1.0000,-1.0000,0,1 +2024-11-17 01:22:07,781,19.5,58.1,-1.0000,-1.0000,-1.0000,0,0 +2024-11-17 01:23:10,523,19.6,57.9,-1.0000,-1.0000,-1.0000,0,0 +2024-11-17 01:24:13,329,19.6,57.8,-1.0000,-1.0000,-1.0000,0,0 +2024-11-17 01:25:15,962,19.6,57.8,-1.0000,-1.0000,-1.0000,0,0 +2024-11-17 01:26:18,765,19.6,57.8,-1.0000,-1.0000,-1.0000,0,0 diff --git a/setup.py b/setup.py index 8c7b1c2..6bb8f70 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setup( name="gecko_controller", - version="0.7.4", + version="0.7.5", packages=find_packages(), package_data={ 'gecko_controller': [