diff --git a/Python_script/MeasurementPlot.py b/Python_script/MeasurementPlot.py
index 43d58241b430c72a9c167c4937829632f875a8d9..3ee25977415b074533a6f7db4b6fbe38f774a7c6 100644
--- a/Python_script/MeasurementPlot.py
+++ b/Python_script/MeasurementPlot.py
@@ -11,12 +11,15 @@ class PlottingError(Exception):
     pass
 
 class MeasurementPlot:
-    def __init__(self, title='', legend_loc = 'upper left', legend_bbox_to_anchor = (1.09, 1)):
+    def __init__(self, title='', env_cond_sensors ='', legend_loc = 'upper left',\
+                 legend_bbox_to_anchor = (1.09, 1)):
           # set python for opening an separate plot window when starting from anaconda, Michael
         if 'ipykernel' in sys.modules:
             from IPython import get_ipython
             get_ipython().run_line_magic('matplotlib', 'qt')
         
+        self.env_cond_sensors =  env_cond_sensors
+        
         # parameter for legend of subplots
         self.legend_loc = legend_loc
         self.legend_bbox_to_anchor = legend_bbox_to_anchor
@@ -88,10 +91,12 @@ class MeasurementPlot:
         # DUT temperature,  DUT humidity, Michael
         # configuration of used sensor port in ext_sens_data.json, Michael
         
-        self.path_collection_temp_dut = self.ax1[2].scatter([],[], c='red', marker='p', label='DUT temperature')
+        self.path_collection_temp_dut = self.ax1[2].scatter([],[], c='red', marker='p', \
+                                                            label='DUT temperature')
         
         self.ext_sens_hum_axis = self.ax1[2].twinx()
-        self.path_collection_hum_dut = self.ext_sens_hum_axis.scatter([],[], c='purple', marker='*', label='DUT humidity')
+        self.path_collection_hum_dut = self.ext_sens_hum_axis.scatter([],[], c='purple', \
+                                                                      marker='*', label='DUT humidity')
         
         
         self.ax1[2].set_xlabel("TIMESTAMP")
@@ -133,43 +138,28 @@ class MeasurementPlot:
         # meas instruments temperature,  meas instruments humidity, Michael
         # configuration of used sensor port in ext_sens_data.json, Michael
         
-        self.path_collection_temp_meas_instr = self.ax1[4].scatter([], [], c='black', marker='p', label="meas instr temperature")
-        self.third_ext_hum_sens_axis = self.ax1[4].twinx()
-        self.path_collection_hum_meas_instr = self.third_ext_hum_sens_axis.scatter([], [], c='brown', marker="*", label="meas instr humidity")
-
-        # units added to y-axes of subplot 5, Michael
-        self.ax1[4].set_xlabel("TIMESTAMP")
-        self.ax1[4].set_ylabel("TEMPERATURE [°C] ", color='black')
-        self.third_ext_hum_sens_axis.set_ylabel("HUMIDITY [%RH]", color='brown')
-
-        self.ax1[4].grid(True, linestyle=":")
-        all_path_collections = [self.path_collection_temp_meas_instr, \
-                                self.path_collection_hum_meas_instr]
-        labels = [pc.get_label() for pc in all_path_collections]
-        self.ax1[4].legend(all_path_collections, labels, loc=self.legend_loc, bbox_to_anchor = \
-                           self.legend_bbox_to_anchor)     
-        
-        
+        subplot_dict = self.config_fith_subplot()
         
-        ######################################################################################
+        self.path_collection_trace_1 = self.ax1[4].scatter([], [], c='black', \
+                                            marker='p', label = subplot_dict.get('label_trace_1'))
         
-        ## Block for plot Heater percentage in fifth subplot
-        # heater activity of temperature heater and humidity heater
-        # values requested from environmental test chamber
+        self.sec_plot_param_axis = self.ax1[4].twinx()
+        self.path_collection_trace_2 = self.sec_plot_param_axis.scatter([], [], c='brown', \
+                                            marker="*",label = subplot_dict.get('label_trace_2'))
         
-        # self.path_collection_temp_heater = self.ax1[4].scatter([],[], c='black', marker='<', label='Temp Heater')
-        # self.path_collection_hum_heater = self.ax1[4].scatter([],[], c='brown', marker='o', label='Hum Heater')
-        
-        # self.ax1[4].set_xlabel("TIMESTAMP")
-        # self.ax1[4].set_ylabel("HEATER PERCENTAGE [%]", color='black')
+        # # units added to y-axes of subplot 5, Michael
+        self.ax1[4].set_xlabel("TIMESTAMP")
+        self.ax1[4].set_ylabel(subplot_dict.get('y_axis'), color='black')
+        self.sec_plot_param_axis.set_ylabel(subplot_dict.get('sec_y_axis'), color='brown')
         
-        # self.ax1[4].grid(True, linestyle=":")
-        # all_path_collections = [self.path_collection_temp_heater, \
-        #                         self.path_collection_hum_heater]
-        # labels = [pc.get_label() for pc in all_path_collections]
-        # self.ax1[4].legend(all_path_collections, labels, loc=self.legend_loc, bbox_to_anchor = \ self.legend_bbox_to_anchor)
+        self.ax1[4].grid(True, linestyle=":")
+        all_path_collections = [self.path_collection_trace_1, \
+                                 self.path_collection_trace_2]
+            
+        labels = [pc.get_label() for pc in all_path_collections]
+        self.ax1[4].legend(all_path_collections, labels, loc=self.legend_loc, bbox_to_anchor = \
+                            self.legend_bbox_to_anchor)
         
-        #######################################################################################
        
         # sclae fontsize of all plot window elements to size 16, Michael
         plt.rcParams.update({'font.size':16})
@@ -222,7 +212,7 @@ class MeasurementPlot:
         self.ax1[3].set_ylim(minimum, maximum)
         self.path_collection_temp_room.set_offsets(np.c_[timestamps, temp_room])
         
-        # refresh humidities external sensors in subplots for DUT humidity and room
+        # refresh humidities external sensors in subplots for DUT humidity and room humidity
         # humidity, Michael
         hum_dut = data_frame.HUM_DUT
         hum_room = data_frame.HUM_ROOM
@@ -245,32 +235,17 @@ class MeasurementPlot:
         
         # refresh temperature and humidity of external sensor in subplot for measurement
         # for instrument temperature and measurement instrument humidity, Michael  
-        temp_meas_instr = data_frame.TEMP_MEAS_INSTR
-        hum_meas_instr = data_frame.HUM_MEAS_INSTR
-        
-        minimum, maximum = self.get_extended_min_max(temp_meas_instr)
-        self.ax1[4].set_ylim(minimum, maximum)
-        
-        minimum, maximum = self.get_extended_min_max(hum_meas_instr)
-        self.third_ext_hum_sens_axis.set_ylim(minimum, maximum)
-        self.path_collection_temp_meas_instr.set_offsets(np.c_[timestamps, temp_meas_instr])
-        self.path_collection_hum_meas_instr.set_offsets(np.c_[timestamps, hum_meas_instr])
         
-        #########################################################################
-        ## Block for refreshing heater percentages in subplot for heater values
+        val_trace_1, val_trace_2 = self.refresh_param_fith_subplot(data_frame)
         
-        # refresh heater percentage values of climate chamber in subplot of heater values, Michael
-        # temp_heater = data_frame.TEMP_HEATER
-        # hum_heater = data_frame.HUM_HEATER
-        # min_temp_heater, max_temp_heater = self.get_extended_min_max(temp_heater)
-        # min_hum_heater, max_hum_heater = self.get_extended_min_max(hum_heater)
-        # minimum = min(min_temp_heater, min_hum_heater)
-        # maximum = max(max_temp_heater, max_hum_heater)
-        # self.ax1[4].set_ylim(minimum-0.05*(maximum-minimum), maximum+0.05*(maximum-minimum))
-        # self.path_collection_temp_heater.set_offsets(np.c_[timestamps, temp_heater])
-        # self.path_collection_hum_heater.set_offsets(np.c_[timestamps, hum_heater])
+        minimum, maximum = self.get_extended_min_max(val_trace_1)
+        self.ax1[4].set_ylim(minimum, maximum)
+
+        minimum, maximum = self.get_extended_min_max(val_trace_2)               
+        self.sec_plot_param_axis.set_ylim(minimum, maximum)
+        self.path_collection_trace_1.set_offsets(np.c_[timestamps, val_trace_1])
+        self.path_collection_trace_2.set_offsets(np.c_[timestamps, val_trace_2])
         
-        #########################################################################
         
         self.path_collection_equi0.set_offsets(np.c_[timestamps, data_frame.EQUILIBRIUM_INDICATOR])
         self.path_collection_equi1.set_offsets(np.c_[timestamps, data_frame.EQUILIBRIUM_INDICATOR])
@@ -285,7 +260,59 @@ class MeasurementPlot:
                 self.fig.canvas.flush_events()
             except Exception as e:
                 raise PlottingError from e
+    
+    def config_fith_subplot(self):
+        
+        # key names for config parameter fith subplot
+        keys = ["label_trace_1", "label_trace_2", "y_axis", "sec_y_axis"]
+        
+        if self.env_cond_sensors == 'ext':
+            
+            # values for plotting evironmental conditions in measurement instrument chamber
+            values = ["temp sensor\nmeas instruments", "hum sensor\nmeas instruments", \
+                       "TEMPERATURE [°C]", "HUMIDITY [%RH]"]
+        
+        elif self.env_cond_sensors == 'int':
+            # values for plotting evironmental conditions in measurement instrument chamber
+            values = ["chamber temperature\nmeas instruments", "chamber humidity\nmeas instruments", \
+                       "TEMPERATURE [°C]", "HUMIDITY [%RH]"]
+        else:
+            
+            # values for plotting heater activity in fith subplot
+            values = ["Temp Heater", "Temp Heater", \
+                       "ACTIVITY [%]","ACTIVITY [%]"]
 
+            
+        # generate dictionary from selection         
+        config_subplot_dict = dict(zip(keys, values))
+            
+        return config_subplot_dict
+        
+    
+    def refresh_param_fith_subplot(self, data_frame):
+        
+        if self.env_cond_sensors == 'ext':
+            
+
+            # chose sensor values for refreshing fith subplot
+            val_trace_1 =  data_frame.TEMP_MEAS_INSTR      
+            val_trace_2 = data_frame.HUM_MEAS_INSTR
+            
+        elif self.env_cond_sensors == 'int': 
+            
+            val_trace_1 =  data_frame.READBACK_TEMP_MEAS_INSTR      
+            val_trace_2 = data_frame.READBACK_HUM_MEAS_INSTR
+        
+        else:
+            
+            # chose heater values for refreshing fift plot
+            val_trace_1 = data_frame.TEMP_HEATER      
+            val_trace_2 = data_frame.HUM_HEATER
+        
+        
+        return val_trace_1, val_trace_2
+        
+        
     # add 5 % of the distance between min and max to the range
     @staticmethod
     def get_extended_min_max(array):
@@ -296,7 +323,7 @@ class MeasurementPlot:
 
 # test procedure for measurement plot procedure
 if __name__ == '__main__':
-    m = MeasurementPlot()
+    m = MeasurementPlot(env_cond_sensors = "int")
     plt.ion()
     measurements = []
 
@@ -309,11 +336,11 @@ if __name__ == '__main__':
             'EQUILIBRIUM_INDICATOR': i % 4,
             'S21_PHASE': 20 - 2*i,
             'S21_MAGNITUDE': 0.3*i,
-            ###############################################################
-            ##Block for simulation acivity temp heater and hum heater
-            # 'TEMP_HEATER': 10,
-            # # percentage humidity heater, Michael
-            # 'HUM_HEATER': 3,
+       
+            #acivity temp heater and hum heater, Michael
+            'TEMP_HEATER': 10,
+            # activity humidity heater, Michael, Michael
+            'HUM_HEATER': 3,
             # DUT Temperature of external temp sensor added, Michael
             'TEMP_DUT': i,
             # room temperature of external temp sensor added, Michael
@@ -327,7 +354,12 @@ if __name__ == '__main__':
             # measurement instrument temperature of external temp sensor added, Michael
             'TEMP_MEAS_INSTR': 40-1.5*i,
             # measurement instrument humidity of external hum sensor added, Michael 
-            'HUM_MEAS_INSTR': 55
+            'HUM_MEAS_INSTR': 55,
+            
+            'READBACK_TEMP_MEAS_INSTR': 50-2*i,
+            # measurement instrument humidity of external hum sensor added, Michael 
+            'READBACK_HUM_MEAS_INSTR': 39
+            
             }
         
         measurements.append(measurement)
diff --git a/Python_script/PostPlot.py b/Python_script/PostPlot.py
index 4a64f8547a5a85e5a55d52d50a425893e0ecc410..b220bfd16a32c65c4f051b1dd7ae7843cd0c4829 100644
--- a/Python_script/PostPlot.py
+++ b/Python_script/PostPlot.py
@@ -18,17 +18,17 @@ import curvefit_and_correlation
 # oftional correclation and regression can be calculated and plotted in results, Michael
 # option is configureable via ext_sens_data.json, Michael
 class PostPlot:
-    def __init__(self):
+    def __init__(self, env_cond_sensors = ''):
           # set python for opening an separate plot window
         if 'ipykernel' in sys.modules:
             from IPython import get_ipython
             get_ipython().run_line_magic('matplotlib', 'qt')
         
         
-        self.measplot_obj = MeasurementPlot.MeasurementPlot(legend_loc = 'upper left', \
-                                                       legend_bbox_to_anchor = (1.09, 1))
+        self.measplot_obj = MeasurementPlot.MeasurementPlot(env_cond_sensors = env_cond_sensors,\
+                                        legend_loc = 'upper left', legend_bbox_to_anchor = (1.09, 1))
         
-            # set parameter figure of class to object parameter figure
+        # set parameter figure of class to object parameter figure
         self.fig = self.measplot_obj.fig
     
     # read csv-file and import data to data frame
@@ -131,7 +131,7 @@ if __name__ == '__main__':
     
     
     # set result path for post plot 
-    Results_Path = r'C:\Users\pawelzik\Desktop\Results\JBY240_14032023Copy'
+    Results_Path = r'C:\git\climate-lab-test-stand\Python_script\measurements\2023_07_29-15_16_03_results'
     
     
     # set time unit for post post plot
@@ -151,12 +151,14 @@ if __name__ == '__main__':
     
     # activate plot curvefitting
     
-    plot_trace_curvefit = False 
+    plot_trace_curvefit = False
     
+    trace_selection = ""
     
-    # create postplot object, Michael
-    plot_obj = PostPlot()
     
+    # create postplot object, Michael
+    plot_obj = PostPlot(env_cond_sensors= trace_selection)
+        
     fit_corr_obj = curvefit_and_correlation.reg_and_corr(plot_obj)
     
     # empty data frame for concat the data frames from csv import to plot full transistion
diff --git a/Python_script/TestData_JBY240_/2023_03_15-05_25_42_results_25.0deg_55.0rh.csv b/Python_script/TestData_JBY240_/2023_03_15-05_25_42_results_25.0deg_55.0rh.csv
deleted file mode 100644
index b02063089375c6426825b1e6f45d3127bba75c3b..0000000000000000000000000000000000000000
--- a/Python_script/TestData_JBY240_/2023_03_15-05_25_42_results_25.0deg_55.0rh.csv
+++ /dev/null
@@ -1,2182 +0,0 @@
-TIMESTAMP,TARGET_TEMPERATURE,READBACK_TEMPERATURE,TARGET_HUMIDITY,READBACK_HUMIDITY,RF_POWER,RF_FREQUENCY,DUT_IDENTIFIER,RUN_ID,EQUILIBRIUM_INDICATOR,TEMP_MEAS_INSTR,HUM_MEAS_INSTR,TEMP_DUT,TEMP_ROOM,HUM_DUT,HUM_ROOM,AIR_PRESS_ROOM,S11_MAGNITUDE,S11_PHASE,S12_MAGNITUDE,S12_PHASE,S21_MAGNITUDE,S21_PHASE,S22_MAGNITUDE,S22_PHASE
-1678854350,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.5,3.3,24.96,22.35,56.4,29.3,1005.1,-29.635697166767223,-154.8369309653255,-2.955863089866386,-100.46185654258173,-3.028138202811703,-99.7364095329896,-44.870935312132104,-145.76696257781015
-1678854360,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.9,2.8,24.93,22.35,56.4,29.3,1005.1,-29.635849648060443,-154.83873102791475,-2.955741708490507,-100.46259395839178,-3.0282895574445154,-99.73717229756463,-44.87188589283487,-145.7661403733015
-1678854370,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.5,2.3,24.93,22.36,56.4,29.3,1005.2,-29.635438319854245,-154.8403305519538,-2.9553472906389233,-100.46319687251487,-3.0281581345745057,-99.73682553824334,-44.90289378544024,-145.80062930492159
-1678854380,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.5,3.3,24.93,22.39,56.5,29.3,1005.0,-29.639309433355297,-154.82984035376458,-2.955598265874042,-100.46271879639426,-3.0278449818641837,-99.73826147268753,-44.916014066675245,-145.80946438932807
-1678854390,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.7,2.9,24.93,22.38,56.5,29.3,1005.1,-29.63904649913185,-154.83129846194117,-2.9554332561305956,-100.46282823666542,-3.027850921172362,-99.73758884495848,-44.91265957308066,-145.81323922512308
-1678854400,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.4,2.9,24.91,22.38,56.5,29.3,1005.1,-29.63898129034739,-154.83027912778098,-2.955331623185784,-100.46247039562726,-3.0279036120696956,-99.73779516795709,-44.91534705214725,-145.80791747395378
-1678854410,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.6,3.6,24.93,22.38,56.5,29.3,1005.2,-29.63884645864471,-154.83050096107772,-2.955337050050245,-100.46264380288372,-3.0279409607989214,-99.73746628379918,-44.91824033217811,-145.79652670402004
-1678854420,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.3,2.9,24.94,22.38,56.5,29.3,1005.2,-29.638984559889533,-154.82845043415162,-2.9552966010093473,-100.46186128919199,-3.028129696001533,-99.73742180107828,-44.917900557366075,-145.80282931945888
-1678854430,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.7,2.6,24.96,22.38,56.5,29.3,1005.2,-29.63847115400285,-154.83023849909935,-2.9555229865606685,-100.4620173283019,-3.0280726097183583,-99.73730265130756,-44.91414919061359,-145.8183579194126
-1678854440,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.3,2.8,24.96,22.39,56.5,29.3,1005.2,-29.638450426988236,-154.83084557540863,-2.9553213327440817,-100.46227306854367,-3.0282837385403196,-99.73677475467814,-44.916287786460074,-145.80368245296566
-1678854450,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,2.5,24.93,22.38,56.5,29.2,1005.2,-29.639448282935756,-154.82917718411207,-2.9551914107021044,-100.46241385879226,-3.0283199370598073,-99.73798114237253,-44.92708502880575,-145.80444116860718
-1678854460,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.4,3.3,24.93,22.39,56.5,29.3,1005.2,-29.639459542460504,-154.82804874572804,-2.9553389954717817,-100.46230389218252,-3.027898006511396,-99.73731768745722,-44.92263216897176,-145.81675339093843
-1678854470,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.3,3.3,24.96,22.4,56.5,29.3,1005.2,-29.639908930687028,-154.83005806398353,-2.9553890660656217,-100.46266088088515,-3.0279781898548768,-99.73768006249155,-44.926826041495424,-145.825274788641
-1678854480,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.4,2.5,24.96,22.39,56.5,29.3,1005.1,-29.640079237168596,-154.82895390275627,-2.9551393668166654,-100.46339638357144,-3.0279730024517226,-99.73779375498638,-44.92421546753082,-145.8148158774529
-1678854490,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.9,2.6,24.94,22.39,56.5,29.3,1005.1,-29.63981604233419,-154.82543733691026,-2.955293240864788,-100.46317942813947,-3.028026389394432,-99.73836045143109,-44.92707869711623,-145.8120857903215
-1678854500,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.6,3.2,24.94,22.39,56.5,29.3,1005.2,-29.639935434606887,-154.8257379073405,-2.955375344766483,-100.46269150852284,-3.027974247098463,-99.73803741028976,-44.92612510757755,-145.82259506426237
-1678854510,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.7,2.6,24.94,22.39,56.4,29.3,1005.2,-29.639630401893335,-154.8286693349835,-2.9552510820959403,-100.46364237586816,-3.0279918955219802,-99.73707711010734,-44.92714988949992,-145.82697877895978
-1678854520,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.7,3.1,24.93,22.41,56.4,29.3,1005.2,-29.64068939723337,-154.8262125057233,-2.955314068078965,-100.46414119047833,-3.0279571827651726,-99.73716820797523,-44.93738908286372,-145.85241109098106
-1678854530,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.4,3.7,24.93,22.41,56.4,29.3,1005.2,-29.64099237761152,-154.82554812439562,-2.9553674876021416,-100.46493110008912,-3.02778011030672,-99.73774544709691,-44.94140138408678,-145.8534682405556
-1678854540,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.3,3.1,24.93,22.41,56.3,29.2,1005.2,-29.640943050150618,-154.8249574406238,-2.9551375701892835,-100.46476668682439,-3.027830881199958,-99.73865442266388,-44.94692541483413,-145.84798035609526
-1678854550,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.3,3.8,24.93,22.41,56.3,29.2,1005.1,-29.64109336777173,-154.82667981367982,-2.955071409144418,-100.46408771877527,-3.0277736998415157,-99.73828209008649,-44.93963310030571,-145.84928584715328
-1678854560,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.8,3.9,24.93,22.42,56.3,29.3,1005.2,-29.641011860255865,-154.82730602439128,-2.955231777001963,-100.46441854522479,-3.0277648327860254,-99.73787166825797,-44.93926530109411,-145.8486101160883
-1678854570,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,3.1,24.93,22.43,56.4,29.3,1005.2,-29.640575139375027,-154.82706710329697,-2.955103288309384,-100.46464024217373,-3.027710533303983,-99.73805236917406,-44.94066818027698,-145.87397783260917
-1678854580,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.1,3.1,24.93,22.44,56.4,29.2,1005.2,-29.640257101842522,-154.82687675343664,-2.955391337944025,-100.46483558935077,-3.0278445094213433,-99.73848979344953,-44.94157353194911,-145.8711750556562
-1678854590,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.8,3.2,24.93,22.44,56.3,29.2,1005.2,-29.640911380915846,-154.82809099023828,-2.9552993704518387,-100.46485463806245,-3.0278266630506403,-99.73914180312742,-44.94148387202419,-145.85317677344943
-1678854600,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,3.2,24.93,22.44,56.3,29.2,1005.2,-29.641113934648136,-154.82715978260487,-2.9553282475206624,-100.46520255487263,-3.0278956266727794,-99.73904195329978,-44.941616629828616,-145.84955166623257
-1678854610,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.4,2.7,24.93,22.44,56.4,29.2,1005.1,-29.640751632740052,-154.82788451004657,-2.955278022209481,-100.46523315054019,-3.0277778065384995,-99.73926113850533,-44.93949015331546,-145.84918216043178
-1678854620,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.3,3.5,24.93,22.47,56.4,29.2,1005.2,-29.640758221382985,-154.82776464189052,-2.955321005733798,-100.46535313311973,-3.0277718073188002,-99.73935972502493,-44.94012900230268,-145.8446357869107
-1678854630,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.9,3.2,24.93,22.5,56.4,29.2,1005.2,-29.640727066607525,-154.82636859803682,-2.9553467109922558,-100.46603226183998,-3.027798732232209,-99.73865682619952,-44.936970696992006,-145.86019771811942
-1678854640,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.9,3.1,24.93,22.53,56.4,29.1,1005.2,-29.64080018430769,-154.8264424755755,-2.9551782447343977,-100.46551696528167,-3.0277997890525654,-99.73860122007605,-44.93615680890677,-145.85306498774844
-1678854650,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.2,3.5,24.93,22.55,56.4,29.1,1005.1,-29.640406231617384,-154.8271904962699,-2.9553235938221487,-100.46508922668154,-3.027593319809535,-99.73881465326225,-44.935654880565906,-145.85560824498538
-1678854660,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,3.2,24.93,22.55,56.4,29.1,1005.2,-29.641119976319956,-154.8253311986881,-2.955431193864934,-100.46535844838371,-3.0277444853008224,-99.73986091077661,-44.936517067701956,-145.84697868216304
-1678854670,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.9,2.7,24.93,22.55,56.4,29.1,1005.2,-29.640657004583403,-154.8268488536146,-2.9552081694893784,-100.46509002812056,-3.0277236456302683,-99.7404011642906,-44.9343744555761,-145.8413120404307
-1678854680,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.0,3.3,24.93,22.55,56.4,29.1,1005.2,-29.64101543755013,-154.82697794249728,-2.955363415311753,-100.46580882886391,-3.0279904241015294,-99.74013511366546,-44.93836269649706,-145.85077383964708
-1678854690,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.9,2.6,24.94,22.55,56.4,29.1,1005.2,-29.64116731037514,-154.82618262619195,-2.9552976833751328,-100.46606706139026,-3.0278176014648266,-99.74090293646715,-44.93678824840457,-145.84936714504713
-1678854700,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.2,3.0,24.93,22.51,56.4,29.1,1005.2,-29.640818285577847,-154.82690726588373,-2.955246660097467,-100.46563071907791,-3.027668117035006,-99.74060338269807,-44.935130680983065,-145.85201283721577
-1678854710,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.1,3.0,24.93,22.48,56.4,29.1,1005.3,-29.64154283684881,-154.82479123260362,-2.955430658068379,-100.46592246959213,-3.027540033095135,-99.74163161358533,-44.93670785599045,-145.86282577740167
-1678854720,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.8,3.5,24.93,22.43,56.3,29.2,1005.2,-29.640495368488686,-154.82569545077283,-2.9551009902560517,-100.46550421379001,-3.027547417732481,-99.74106341569242,-44.939036736503404,-145.85182617422507
-1678854730,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.6,3.4,24.93,22.41,56.3,29.3,1005.3,-29.64114426123369,-154.82456880306935,-2.955384114112019,-100.46578478854218,-3.0275268731249487,-99.74035176044968,-44.938826348947494,-145.84618329842948
-1678854740,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.4,3.4,24.93,22.36,56.3,29.3,1005.2,-29.640988336361133,-154.82308564241043,-2.955252633331206,-100.466758968588,-3.0275281773058453,-99.74016146597525,-44.94111618044642,-145.84018572310646
-1678854750,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.9,3.0,24.94,22.36,56.3,29.3,1005.2,-29.64157685259272,-154.82172821918456,-2.955519624265288,-100.4662816772197,-3.0276224887699827,-99.74080057560477,-44.94036649087512,-145.84264366126152
-1678854760,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.1,3.0,24.93,22.34,56.3,29.3,1005.2,-29.641563588274597,-154.82323421688875,-2.955405892798076,-100.46674818447805,-3.0276512583397786,-99.74063266033546,-44.93863959951079,-145.84554672537098
-1678854770,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.0,3.1,24.93,22.32,56.3,29.4,1005.2,-29.642149811486235,-154.82163973090167,-2.955203870901501,-100.46644363621871,-3.02759192484365,-99.74200668246426,-44.93839206967355,-145.83054493933852
-1678854780,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,3.2,24.93,22.27,56.4,29.4,1005.2,-29.64157855736275,-154.82451147190508,-2.955272158788648,-100.46570727298335,-3.0275603970464013,-99.74202906985042,-44.93924594025521,-145.82161439733386
-1678854790,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.1,2.9,24.93,22.25,56.4,29.5,1005.3,-29.641427189549656,-154.82327515992512,-2.955291264756652,-100.46595983533416,-3.027616808365127,-99.7415569823021,-44.94251762607094,-145.83752924531802
-1678854800,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.9,3.1,24.93,22.24,56.4,29.5,1005.3,-29.641754885411984,-154.82272522103247,-2.9553713722798687,-100.46582722637616,-3.027706794566382,-99.74124606472368,-44.939252418427486,-145.828609356641
-1678854810,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.8,2.5,24.93,22.19,56.5,29.6,1005.3,-29.64133373465076,-154.82448657620876,-2.9552883396274465,-100.4657079963758,-3.0277644873413543,-99.74084100146128,-44.93939792369644,-145.82564073794234
-1678854820,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.2,3.3,24.94,22.17,56.5,29.6,1005.3,-29.64120878373278,-154.82580353648316,-2.955330122651863,-100.46552591593475,-3.0277885273877683,-99.74137626733827,-44.940188236431595,-145.83240539760584
-1678854830,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.4,3.0,24.93,22.16,56.4,29.6,1005.2,-29.641167404855402,-154.82550286569156,-2.9550125050991443,-100.4659110831665,-3.027889395680239,-99.74139962630898,-44.94002143102051,-145.8261329302648
-1678854840,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.1,3.1,24.93,22.08,56.4,29.7,1005.3,-29.641090061869292,-154.82529659790558,-2.9553382665582624,-100.46506944942354,-3.0277261633593078,-99.74147070482167,-44.93658700676007,-145.83890735846336
-1678854850,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.0,3.7,24.94,22.05,56.4,29.8,1005.3,-29.641363702662634,-154.82249794924752,-2.955314528977495,-100.46554468732714,-3.0277260040324023,-99.741125040951,-44.94069715121229,-145.82487634284496
-1678854860,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.3,3.0,24.93,22.06,56.3,29.8,1005.3,-29.64099775629495,-154.82504312202408,-2.9550698305815963,-100.46508177578458,-3.0277342649999905,-99.74103449621371,-44.93557075151672,-145.8369570282907
-1678854870,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,2.9,24.93,22.06,56.4,29.8,1005.4,-29.640682779543948,-154.82725613256858,-2.9551164835400767,-100.46508082613377,-3.027635341222244,-99.74126552909729,-44.93522213300131,-145.84941971424558
-1678854880,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.7,2.7,24.93,22.04,56.4,29.8,1005.2,-29.64072044717785,-154.82697029870232,-2.9550584220357408,-100.46499604620558,-3.027622708900388,-99.74091897795867,-44.93571938248501,-145.85648948201148
-1678854890,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.7,2.8,24.93,22.01,56.5,29.8,1005.3,-29.64079594746279,-154.82632214739525,-2.9551696198885447,-100.46529600828602,-3.0276567062538735,-99.74172282898982,-44.935431677665065,-145.85913371819248
-1678854900,25.0,25.0,55.0,55.0,0,1300000000,,,3,9.2,2.8,24.93,21.99,56.5,29.9,1005.3,-29.641070362291572,-154.82649387010693,-2.9553397253293987,-100.46450289000425,-3.027771133378223,-99.74201732339982,-44.9373758316342,-145.84512519119085
-1678854910,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.2,3.2,24.93,21.99,56.5,29.9,1005.3,-29.640966238422184,-154.82547789633517,-2.9553821043642543,-100.46384940708127,-3.0277218429007737,-99.74179456256988,-44.93488265184625,-145.85424460179587
-1678854920,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,3.4,24.94,21.93,56.5,30.0,1005.3,-29.640791305291362,-154.8258943036957,-2.9554148799210256,-100.46411346877098,-3.0277779008757784,-99.74146905989281,-44.936818417197784,-145.85714384049498
-1678854930,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.7,3.3,24.93,21.9,56.5,30.0,1005.3,-29.64054015752799,-154.82726155203247,-2.9553719438752744,-100.46355764693769,-3.027674484306602,-99.74121618312175,-44.93591179097794,-145.86151124989655
-1678854940,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.6,2.9,24.94,21.91,56.5,30.0,1005.3,-29.640476847636812,-154.827962398041,-2.9553687069647605,-100.46380951403556,-3.0278227500293013,-99.74223304184423,-44.93768006527865,-145.8632505981368
-1678854950,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.0,2.4,24.93,21.9,56.5,30.0,1005.3,-29.6406215999399,-154.82633968073463,-2.9552633187039112,-100.46462224693813,-3.0278356473742045,-99.74216446151745,-44.93811160086764,-145.85145298255787
-1678854960,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.5,2.5,24.93,21.88,56.5,30.0,1005.4,-29.640387564993343,-154.82728833322568,-2.9551468073543283,-100.46477285957421,-3.027606207828029,-99.74246004590218,-44.936966999227835,-145.8498163378943
-1678854970,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.4,2.7,24.93,21.86,56.5,30.1,1005.3,-29.640315695547127,-154.82724976850997,-2.9552154603968193,-100.46451947492208,-3.027797338140004,-99.74174560183185,-44.93746737931876,-145.8543482172771
-1678854980,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.0,2.7,24.94,21.82,56.5,30.1,1005.4,-29.640619640407174,-154.82588198371369,-2.9553100535853627,-100.46507928284018,-3.0275987343351756,-99.74170162072187,-44.93570463602006,-145.84935046835736
-1678854990,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.0,2.8,24.94,21.81,56.5,30.1,1005.3,-29.640763291665767,-154.8255777886345,-2.9553804566099284,-100.46405851271918,-3.0275992375157514,-99.7419359953708,-44.93303586571517,-145.86867233380454
-1678855000,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.5,3.2,24.94,21.77,56.5,30.1,1005.3,-29.64038372135501,-154.826921102964,-2.9553915098102417,-100.46471427716989,-3.0277389886949697,-99.74152784169044,-44.93642832416438,-145.88083258944934
-1678855011,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.6,3.5,24.94,21.79,56.5,30.2,1005.4,-29.64047971861131,-154.8290870378742,-2.9553183856562093,-100.46416333568529,-3.027771087037365,-99.74217263772103,-44.93123692967643,-145.8735096659066
-1678855020,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.5,3.1,24.93,21.8,56.4,30.1,1005.4,-29.64042865027369,-154.82718693992751,-2.9553843945235014,-100.46457187033947,-3.0278329164970996,-99.74204433486413,-44.935873649307474,-145.85693071541615
-1678855030,25.0,25.0,55.0,55.0,0,1300000000,,,3,9.6,3.0,24.93,21.81,56.5,30.1,1005.4,-29.63999627580265,-154.82839394443155,-2.955053503355643,-100.46510822731925,-3.0277370166120887,-99.74154320174983,-44.93577206148612,-145.85507843815054
-1678855040,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,3.0,24.93,21.83,56.5,30.1,1005.3,-29.640716102508872,-154.8268284808886,-2.9551709873604928,-100.46535476790764,-3.027658735471732,-99.74136239363673,-44.93604796457219,-145.85460205602757
-1678855050,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.6,3.1,24.93,21.82,56.5,30.1,1005.3,-29.64100130519502,-154.82455133251085,-2.9551196183400252,-100.46444127915981,-3.027823612991423,-99.74224242556255,-44.9412888577323,-145.8414463641611
-1678855060,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.0,3.1,24.94,21.81,56.4,30.1,1005.4,-29.640600400907594,-154.8269727447918,-2.954931025788699,-100.46463691488879,-3.027752882858153,-99.74203379155821,-44.94178349064708,-145.84154526453574
-1678855070,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,2.9,24.94,21.82,56.4,30.1,1005.4,-29.640286355747932,-154.82731726611783,-2.9551380972939323,-100.46411361584487,-3.027829127868919,-99.74203317053585,-44.93779962549083,-145.85800011905644
-1678855080,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.4,2.9,24.93,21.83,56.4,30.1,1005.3,-29.640718596554198,-154.825771535927,-2.955264496000431,-100.46455040233907,-3.027675314896473,-99.74190483084293,-44.94087840529691,-145.84428587071199
-1678855090,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.4,2.5,24.93,21.85,56.4,30.1,1005.4,-29.640713168842883,-154.82572700774614,-2.9549390299149616,-100.46605593657219,-3.027757071019293,-99.74228769490472,-44.944170241504395,-145.82681422178138
-1678855100,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.4,3.1,24.9,21.85,56.4,30.1,1005.4,-29.640653845594368,-154.8279856678268,-2.9550929862721125,-100.46609622917116,-3.0278421586932085,-99.74228171365955,-44.941515344825945,-145.84772505224646
-1678855110,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,3.5,24.93,21.86,56.4,30.1,1005.4,-29.640565313169475,-154.82870571395242,-2.9551613908196046,-100.46559994706485,-3.0277742686476907,-99.74293452512381,-44.9376775512529,-145.86151847787275
-1678855120,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,3.4,24.91,21.85,56.4,30.1,1005.4,-29.640598561062795,-154.8266877760104,-2.9551200481928603,-100.4657027409756,-3.0278977115011103,-99.74242685355819,-44.94062170352726,-145.8473452351062
-1678855130,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.7,3.2,24.91,21.86,56.4,30.1,1005.4,-29.64038591975853,-154.82801728587378,-2.955145123633482,-100.46550483117659,-3.027883568442352,-99.74287240988235,-44.940460997058466,-145.86053380168582
-1678855140,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.5,3.1,24.91,21.89,56.4,30.1,1005.4,-29.640207782132247,-154.8282085404356,-2.955023325098799,-100.46554781510751,-3.0277241161772377,-99.74187501244309,-44.93535614284082,-145.87219215507642
-1678855150,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.6,3.1,24.93,21.9,56.4,30.0,1005.4,-29.640254302090547,-154.82790296149878,-2.955088408290446,-100.46601270807855,-3.027781507773717,-99.74246100968158,-44.93827417959715,-145.84321298649712
-1678855160,25.0,25.0,55.0,55.0,0,1300000000,,,3,9.0,3.1,24.93,21.91,56.4,30.0,1005.4,-29.640110422311533,-154.82709236408016,-2.9551984605721864,-100.46519614247138,-3.027862901926175,-99.7418429344254,-44.93709294896543,-145.86321720423052
-1678855170,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.7,3.0,24.93,21.93,56.4,30.0,1005.4,-29.639814608254653,-154.82582172308167,-2.9549891962725723,-100.46499854726227,-3.0279147108835036,-99.74187848892682,-44.94193334758951,-145.84604780943798
-1678855180,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.8,3.2,24.93,21.95,56.4,30.0,1005.4,-29.63985618446428,-154.82973114918948,-2.954955607177856,-100.4655914598158,-3.0278464038176507,-99.74152055567136,-44.940284438646685,-145.836631460169
-1678855190,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.0,3.3,24.93,21.96,56.4,30.0,1005.4,-29.639735111718185,-154.8273702653634,-2.9549064527063686,-100.46518102960262,-3.02776665009515,-99.74132234544881,-44.94052683059423,-145.84673680821584
-1678855200,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.8,2.5,24.93,21.98,56.4,29.9,1005.4,-29.63968947269441,-154.8294411888734,-2.9550031492718674,-100.46525392296716,-3.0278093443042513,-99.74141253416684,-44.93939017192809,-145.8383256340324
-1678855210,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.8,2.7,24.93,21.99,56.4,29.9,1005.4,-29.63926045427072,-154.83125548969053,-2.9550664483657996,-100.4646269837988,-3.0277981955711413,-99.74131999254861,-44.936322015639746,-145.8646701769328
-1678855220,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.2,3.5,24.96,21.99,56.4,29.9,1005.4,-29.639811935849785,-154.82811706077294,-2.9548952255180843,-100.46466839119117,-3.0277377520432758,-99.74114879533546,-44.93776074048645,-145.8409615845189
-1678855230,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.8,2.8,24.96,22.0,56.4,29.9,1005.4,-29.639829400861053,-154.83001877086332,-2.954920140235831,-100.46471664779328,-3.0279300981278654,-99.74060213938354,-44.93898539581643,-145.85376670854308
-1678855240,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.8,3.0,24.97,22.01,56.4,29.8,1005.4,-29.6399660731827,-154.82963631212354,-2.9550696357603345,-100.4650822175825,-3.0279007691136877,-99.74072944254884,-44.93886324129757,-145.8495283693682
-1678855250,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.9,2.5,24.97,22.02,56.4,29.8,1005.4,-29.639927346543317,-154.82824211274087,-2.9550750547387814,-100.46470597773916,-3.0278938765860417,-99.74034426936544,-44.94119308462597,-145.8403772780451
-1678855260,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,3.0,24.96,22.04,56.4,29.8,1005.4,-29.639638364367798,-154.82665368003748,-2.955104052259538,-100.4641542178486,-3.0278596912248834,-99.73967166929316,-44.938693454968764,-145.85164039444737
-1678855270,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,3.2,24.96,22.04,56.4,29.8,1005.5,-29.63969333634465,-154.8276776596158,-2.9552372621139487,-100.46411519010783,-3.0278500742351118,-99.74010161743416,-44.93956486143473,-145.85165424474465
-1678855280,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.9,2.5,24.93,22.06,56.4,29.7,1005.5,-29.639431722079,-154.8282571537617,-2.955231444637572,-100.46508662122264,-3.027994679713827,-99.73968044422325,-44.93789242321128,-145.85594311381698
-1678855290,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.9,3.1,24.93,22.06,56.4,29.7,1005.5,-29.639528807681398,-154.82785675317635,-2.9551473428304,-100.46553440437282,-3.0279555114436967,-99.73973271454204,-44.937589124288415,-145.84653428513144
-1678855300,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,3.2,24.94,22.08,56.4,29.7,1005.4,-29.63961043269859,-154.8270072031446,-2.9551190305762205,-100.46442510993495,-3.0279280245173386,-99.7395235050608,-44.93611748954365,-145.8375101807913
-1678855310,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.1,3.4,24.96,22.09,56.4,29.7,1005.4,-29.639355621850918,-154.8324547279556,-2.9551852182192286,-100.46428522509378,-3.0278140387966532,-99.73982585582053,-44.934230231504166,-145.85203492326767
-1678855320,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.8,2.7,24.94,22.1,56.4,29.7,1005.4,-29.639908400186293,-154.8288915874418,-2.9553339066773705,-100.46535386977672,-3.0278717533149306,-99.74024315996344,-44.938659007014394,-145.85180466975933
-1678855330,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.0,3.2,24.93,22.1,56.4,29.7,1005.5,-29.639622719712918,-154.83085161211883,-2.9551443792207617,-100.46480014936517,-3.027943027038353,-99.74078257863528,-44.93891116365015,-145.85221492386378
-1678855340,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.4,2.8,24.93,22.11,56.4,29.7,1005.5,-29.63946807605921,-154.83138989162742,-2.955177544571206,-100.46471772377839,-3.028105139615614,-99.74050311132949,-44.9397277721622,-145.84402048780194
-1678855350,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.4,3.2,24.93,22.11,56.4,29.7,1005.5,-29.639086815381873,-154.8322740435957,-2.955241924179525,-100.46467388762402,-3.0280640443096196,-99.74081198011184,-44.9396495295787,-145.8550099393906
-1678855360,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.7,3.1,24.93,22.12,56.4,29.7,1005.5,-29.639303195349832,-154.8321563735149,-2.9552325741399184,-100.46489554039155,-3.0276559667363805,-99.74079203670178,-44.93546774952445,-145.87377135109122
-1678855370,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.7,3.3,24.93,22.13,56.4,29.7,1005.5,-29.639131117370248,-154.83233922550204,-2.9549297508154067,-100.46594058556171,-3.0278065634536517,-99.74016300030424,-44.937468166404514,-145.86397544165587
-1678855380,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.5,3.2,24.94,22.15,56.5,29.6,1005.4,-29.639333470649042,-154.8328002996021,-2.955248793207566,-100.46576294387293,-3.027858581166418,-99.74051606757159,-44.93747818585297,-145.86332747565655
-1678855390,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.4,2.8,24.96,22.15,56.5,29.6,1005.4,-29.639528092222438,-154.83118221256598,-2.955032010810106,-100.46608892214918,-3.0279211714786363,-99.73979546803706,-44.93659537191485,-145.8610604998261
-1678855400,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.2,2.5,24.93,22.15,56.5,29.6,1005.4,-29.639512460915206,-154.83179159598674,-2.9551036789809206,-100.46565603981689,-3.027648958578993,-99.74040587676936,-44.93480747975359,-145.851254898746
-1678855410,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.9,2.5,24.94,22.16,56.5,29.6,1005.5,-29.639572434195642,-154.83230096779275,-2.955164018792022,-100.46632553675867,-3.0279278555571287,-99.74033190536406,-44.93644591814977,-145.85173641220354
-1678855420,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.6,2.8,24.96,22.16,56.4,29.6,1005.4,-29.639587631207863,-154.8308058741062,-2.9549816451601734,-100.46646768719405,-3.0278673090918677,-99.74197495533213,-44.938588690612406,-145.83869099524344
-1678855430,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.1,2.8,24.96,22.16,56.4,29.6,1005.4,-29.63964301424133,-154.83095009814124,-2.955236018169245,-100.4660762465896,-3.0277775416960075,-99.74136113574141,-44.93641197476115,-145.85201762486906
-1678855440,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.9,2.7,24.93,22.17,56.4,29.6,1005.5,-29.639879858935917,-154.8303611826003,-2.955078684207889,-100.46604920085178,-3.0278810505376703,-99.74178247654466,-44.93741028664702,-145.8460252378328
-1678855450,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.0,2.8,24.94,22.17,56.4,29.6,1005.5,-29.63959037834528,-154.83114432575925,-2.9549071402194587,-100.46629542249022,-3.0276438529418828,-99.74213606083273,-44.93935120462282,-145.82274702382125
-1678855460,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.4,2.3,24.93,22.18,56.4,29.6,1005.5,-29.639821207770375,-154.82937300841854,-2.9550573879171878,-100.46668446495875,-3.0278680015902655,-99.74184166663275,-44.93960192161229,-145.82419820387676
-1678855470,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.0,2.7,24.96,22.18,56.4,29.6,1005.5,-29.6398169445378,-154.8293084699804,-2.955054177344633,-100.46735567640131,-3.027802541815035,-99.74186389099279,-44.93553382705359,-145.84757937938696
-1678855480,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.4,3.0,24.93,22.19,56.4,29.6,1005.4,-29.639729608782183,-154.83146254853938,-2.955144539723453,-100.46698024726142,-3.027878828010402,-99.74234569339453,-44.936211888736615,-145.85160843210434
-1678855490,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.0,3.4,24.93,22.19,56.4,29.6,1005.4,-29.639593913007598,-154.82986114513915,-2.955080396063549,-100.46689990365958,-3.027799303485596,-99.74246101710234,-44.936128733578926,-145.85578860140188
-1678855500,25.0,25.0,55.0,55.0,0,1300000000,,,3,9.2,2.7,24.93,22.21,56.4,29.6,1005.4,-29.639691464832648,-154.83207886436654,-2.954965951217547,-100.4679533053509,-3.027905864636617,-99.74197988728281,-44.936386070889654,-145.84378495755075
-1678855510,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.9,3.7,24.93,22.23,56.4,29.6,1005.4,-29.639340513500592,-154.83252539385418,-2.954928169168708,-100.46733605862916,-3.027838850217319,-99.74177449040427,-44.94114032548901,-145.82452296630248
-1678855520,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.8,3.5,24.96,22.24,56.4,29.5,1005.4,-29.640015965209162,-154.83009654213907,-2.955087888838415,-100.46777341876209,-3.0277430490622765,-99.74120832759927,-44.94097321850128,-145.82149413696493
-1678855530,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.2,2.8,24.96,22.24,56.4,29.5,1005.4,-29.639887834014075,-154.8311738432531,-2.9550294913649635,-100.46675990715084,-3.027914376226437,-99.74121883669022,-44.938722566224854,-145.83587221421368
-1678855540,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,2.7,24.93,22.25,56.4,29.5,1005.4,-29.640535646154582,-154.82915780461087,-2.9551058736446216,-100.46771065353063,-3.0280634151691044,-99.74177051806262,-44.944322925123934,-145.8112478925872
-1678855550,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,3.1,24.93,22.25,56.4,29.5,1005.4,-29.640629479674164,-154.82887559373245,-2.955116310683754,-100.46802389193135,-3.027971068338829,-99.74085841199891,-44.940132057074784,-145.83215035170792
-1678855560,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,3.0,24.93,22.25,56.4,29.5,1005.4,-29.640262378432148,-154.8281097692519,-2.95507471621748,-100.46743624352501,-3.0278400377030423,-99.74061436239577,-44.936749040617656,-145.8364606513094
-1678855570,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.0,3.1,24.96,22.25,56.4,29.5,1005.4,-29.640035578900772,-154.82751810678553,-2.954964285550297,-100.46739626754788,-3.028010258526262,-99.74081428385749,-44.94402744026536,-145.83857265468035
-1678855580,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.9,3.1,24.93,22.26,56.4,29.5,1005.4,-29.64036201296349,-154.82873885438832,-2.955104495240692,-100.46690486814512,-3.0278879008174346,-99.74181565449588,-44.94321212993558,-145.82178987397018
-1678855590,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.8,2.6,24.96,22.25,56.4,29.5,1005.4,-29.64038159302787,-154.82786134337107,-2.954985123520062,-100.468029173837,-3.02783439900679,-99.74107508890009,-44.94406694764454,-145.84493979275675
-1678855600,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.8,2.7,24.93,22.26,56.4,29.5,1005.4,-29.640783259839388,-154.8298669792334,-2.954991117233124,-100.46869259699291,-3.0278284705453293,-99.74124938651751,-44.94367126005986,-145.81303810523954
-1678855610,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.1,2.5,24.93,22.26,56.4,29.5,1005.3,-29.641221279906674,-154.82694108214054,-2.954859944424315,-100.46862280339658,-3.027808333354046,-99.74222403163853,-44.94807999395167,-145.80887529230762
-1678855620,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.6,3.4,24.93,22.26,56.4,29.5,1005.4,-29.64152479090216,-154.82411349772272,-2.9551610412985347,-100.46833973653278,-3.0277434499463167,-99.74225858138264,-44.94769237614098,-145.82747409109103
-1678855630,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.2,3.5,24.94,22.26,56.3,29.5,1005.4,-29.641431277214508,-154.82346183522276,-2.9551784033623445,-100.46729989683703,-3.0277954793392317,-99.74328938642586,-44.948533372378265,-145.8209901846096
-1678855640,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.0,3.3,24.93,22.29,56.3,29.4,1005.4,-29.64094723474917,-154.82632345234592,-2.955095552298583,-100.46738137153753,-3.027782592977869,-99.74241805997566,-44.94539250667496,-145.8305160171082
-1678855650,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.0,3.1,24.94,22.29,56.4,29.4,1005.4,-29.64100127307502,-154.82545619461254,-2.9551546997675326,-100.46745123195018,-3.0277870994986857,-99.74177933061044,-44.946010581436894,-145.81922996953858
-1678855660,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,2.8,24.93,22.31,56.4,29.4,1005.4,-29.64089439029753,-154.82762684501063,-2.9551206328354613,-100.46691209338726,-3.0277208209419513,-99.74317453922849,-44.9431963853032,-145.8226742005799
-1678855670,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.9,3.3,24.94,22.32,56.4,29.4,1005.4,-29.641495780507018,-154.82343506842133,-2.9552511028127966,-100.46740166419808,-3.027912009914571,-99.74228612756282,-44.94576637493828,-145.81219723278647
-1678855680,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.9,2.7,24.94,22.32,56.4,29.4,1005.4,-29.641106790694568,-154.827023411726,-2.955182762963597,-100.46683639293933,-3.027798380593982,-99.74164313913339,-44.94110710607255,-145.81704743085317
-1678855690,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,2.4,24.94,22.32,56.4,29.4,1005.3,-29.640565412701065,-154.82811597229664,-2.955070622497875,-100.46705987324597,-3.027924452889228,-99.74201808317416,-44.944373757759266,-145.8036821674294
-1678855700,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.4,2.7,24.96,22.32,56.4,29.4,1005.4,-29.640733773209607,-154.8271974228909,-2.9552754324527153,-100.46658349430898,-3.0278361415200363,-99.74189784119467,-44.944965693126456,-145.80518511598092
-1678855710,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.7,2.9,24.96,22.33,56.4,29.4,1005.4,-29.639967966493217,-154.82770080557347,-2.955223899694684,-100.46635693524723,-3.027884231419946,-99.74109724271284,-44.945727003425134,-145.8143770516547
-1678855720,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.9,3.3,24.96,22.33,56.4,29.3,1005.4,-29.640828205937304,-154.82686633450757,-2.955277344166372,-100.46692711229944,-3.0279299605278305,-99.74075314946668,-44.94563859892439,-145.80713261848726
-1678855730,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.7,2.4,24.94,22.33,56.4,29.3,1005.4,-29.640549150272832,-154.82812149063474,-2.9551151410807472,-100.46685909023131,-3.0279042266461147,-99.74029149186723,-44.94529295420807,-145.8139027033152
-1678855740,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.0,2.8,24.94,22.34,56.4,29.3,1005.3,-29.64046176958615,-154.82796819389188,-2.9551638334552663,-100.46634264574867,-3.027804830384315,-99.7399070364627,-44.944978486127525,-145.82097976883307
-1678855750,25.0,25.0,55.0,55.0,0,1300000000,,,3,9.4,2.8,24.94,22.34,56.3,29.4,1005.4,-29.640682503184085,-154.82914946355692,-2.955257808219608,-100.46675400429066,-3.027912196628166,-99.74042233226334,-44.94464183804217,-145.8002642753844
-1678855760,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.9,3.6,24.96,22.34,56.3,29.4,1005.4,-29.640619553649433,-154.8271372967726,-2.955317850409129,-100.46602796894958,-3.0278886558629585,-99.74006725504024,-44.943410992735345,-145.814287282426
-1678855770,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.0,3.0,24.96,22.34,56.4,29.3,1005.4,-29.640258453106224,-154.8303258484828,-2.9555648590504098,-100.46534226460321,-3.0279147471034706,-99.73964956570339,-44.938665403274946,-145.8273954786553
-1678855781,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.8,3.5,24.97,22.33,56.3,29.3,1005.3,-29.640344294389912,-154.82841128839004,-2.9555032119535243,-100.46566695856663,-3.0277820943197025,-99.73869401788535,-44.93978569021553,-145.82325696654374
-1678855790,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.1,2.7,24.97,22.34,56.4,29.3,1005.3,-29.640205168665116,-154.8291361001941,-2.955099994739829,-100.46546963615614,-3.027957229225396,-99.73914313891332,-44.942006873773025,-145.83524562578643
-1678855800,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.3,3.1,24.96,22.34,56.4,29.3,1005.3,-29.63997289622212,-154.829463241061,-2.9553252611798646,-100.46478039477861,-3.0279537189066446,-99.73945208481281,-44.93934917191497,-145.83960979849775
-1678855810,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.3,2.6,24.97,22.35,56.4,29.3,1005.4,-29.639861998340905,-154.8281486842299,-2.955203047169589,-100.46466560826724,-3.0280778376995428,-99.74014875720853,-44.94056529971903,-145.83551458606743
-1678855826,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.9,2.7,24.97,22.34,56.4,29.3,1005.5,-29.639929817572394,-154.83075662651657,-2.955393993199276,-100.46433194676095,-3.0279686248639424,-99.74010060491752,-44.9412175471108,-145.8211257818025
-1678855832,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.0,3.1,24.94,22.34,56.4,29.3,1005.3,-29.63938097753146,-154.82937551721105,-2.9552293165684946,-100.46393980010063,-3.027948468205758,-99.73923050536568,-44.93834436637161,-145.82933781772974
-1678855840,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.4,3.8,24.96,22.35,56.3,29.3,1005.4,-29.63930904305647,-154.8318587187672,-2.9552541898835645,-100.46316373804517,-3.0279542230899077,-99.73969516298173,-44.938650671620046,-145.82234049177788
-1678855850,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.2,3.4,24.97,22.35,56.3,29.3,1005.4,-29.640447918444394,-154.82731624092543,-2.9553688616657365,-100.46348123436663,-3.028153726783802,-99.74043612596667,-44.937458434982524,-145.81008722403283
-1678855860,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.7,2.6,24.94,22.38,56.3,29.3,1005.4,-29.64011530451879,-154.82718305064324,-2.9553235980011965,-100.4640637622808,-3.027952121831943,-99.74073149732236,-44.93980684540267,-145.82754367337822
-1678855870,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.4,3.1,24.94,22.38,56.3,29.3,1005.4,-29.64001375633672,-154.82658470895907,-2.9554302587154666,-100.46490163712554,-3.028073983261164,-99.74027967216468,-44.9404680551141,-145.83602840027862
-1678855880,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,3.3,24.96,22.38,56.4,29.3,1005.3,-29.640513537068887,-154.8262084205708,-2.955200256043686,-100.46567201105756,-3.027961055580258,-99.73932277226034,-44.945259243804685,-145.7912024204299
-1678855890,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,2.3,24.97,22.38,56.4,29.3,1005.4,-29.640203890859716,-154.82437679773417,-2.955281795442124,-100.46552736089528,-3.0278865022233847,-99.73968258131015,-44.94433169804645,-145.8091134175282
-1678855900,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.8,2.6,24.97,22.4,56.4,29.3,1005.4,-29.640507955138258,-154.82532177412915,-2.9553578296391176,-100.46552956629446,-3.0278363906279453,-99.73920670803051,-44.9413726105049,-145.8175747588911
-1678855910,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.5,3.4,24.97,22.4,56.4,29.3,1005.4,-29.640723663356606,-154.82379009385238,-2.9555879287454996,-100.46516232592296,-3.02783203159335,-99.73866047205703,-44.94181253224218,-145.82120791846245
-1678855920,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,2.5,24.97,22.4,56.4,29.3,1005.4,-29.640479605122355,-154.8251106800033,-2.9554845104434566,-100.46459386198957,-3.027950498172122,-99.73946320091785,-44.94097488873889,-145.8049607364551
-1678855930,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.0,2.6,24.96,22.4,56.4,29.3,1005.4,-29.64085412211885,-154.82609665791054,-2.955328789718163,-100.46530320799508,-3.027835361776305,-99.73980969449683,-44.94048860770998,-145.79334527845057
-1678855940,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.0,3.0,24.96,22.4,56.4,29.3,1005.4,-29.64088442819591,-154.82550424432932,-2.9553376148794843,-100.4654334243994,-3.0280471010207917,-99.74059312174289,-44.942923854750276,-145.80047472249092
-1678855950,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.7,3.1,24.97,22.4,56.4,29.3,1005.4,-29.641507735544824,-154.82151538375302,-2.955273574710416,-100.4657501272106,-3.0280206048232405,-99.73985947108442,-44.946561834383026,-145.78204048996747
-1678855960,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.3,2.7,24.97,22.42,56.4,29.3,1005.3,-29.641899788061647,-154.82015996417528,-2.955678633929684,-100.46567106193022,-3.0278499944257526,-99.7401251404634,-44.94361037566029,-145.7936438684101
-1678855970,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.7,2.9,24.98,22.43,56.4,29.3,1005.3,-29.641748656223022,-154.82277352244927,-2.955631015589403,-100.46550161666937,-3.0278661417088495,-99.73949849417977,-44.944157909496276,-145.78982439647527
-1678855980,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.9,3.2,24.97,22.42,56.3,29.3,1005.4,-29.64222172176307,-154.81917086269792,-2.955558484482852,-100.46583376517931,-3.027865588083512,-99.73971856334212,-44.94246898440725,-145.78100909261192
-1678855990,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.1,3.0,24.96,22.42,56.3,29.2,1005.4,-29.642054134752808,-154.81930616597478,-2.9553952112378012,-100.46637945521071,-3.027973745568862,-99.7391510472694,-44.944121459455395,-145.777577596017
-1678856000,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.7,3.3,24.96,22.42,56.4,29.3,1005.4,-29.641885918139252,-154.82465405744324,-2.955557786454868,-100.46555690410229,-3.0278211295063673,-99.7402584284712,-44.946090028840224,-145.7720033876258
-1678856010,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.4,3.0,24.96,22.42,56.4,29.3,1005.3,-29.642084065647968,-154.8199944849119,-2.955315404457673,-100.46573733048304,-3.0278567905275544,-99.74006811484426,-44.94791346216143,-145.76290300890693
-1678856020,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.3,3.4,24.96,22.44,56.4,29.3,1005.4,-29.642116518912648,-154.82097179809725,-2.955556718355788,-100.46472939642787,-3.027844586727346,-99.74029056718675,-44.945542322701506,-145.78724419913476
-1678856030,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.1,2.8,24.94,22.45,56.4,29.3,1005.3,-29.642076052615124,-154.82130475659878,-2.955384892214137,-100.46555683461627,-3.0277641884773763,-99.74027175391353,-44.9454749198257,-145.78284632932073
-1678856040,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.3,3.3,24.96,22.49,56.3,29.2,1005.3,-29.642010550287033,-154.8201500541918,-2.9554643438874613,-100.46510338075394,-3.027891392816662,-99.7397786776557,-44.947871059676686,-145.7799336342532
-1678856050,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.6,2.8,24.97,22.48,56.4,29.2,1005.4,-29.641961004719455,-154.8201332311798,-2.9555520465041303,-100.4661842148564,-3.0278258654670553,-99.73960437429636,-44.94874130742032,-145.78740965684744
-1678856060,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.6,2.5,24.96,22.46,56.3,29.2,1005.4,-29.642418990435097,-154.81771548208508,-2.9554624838019072,-100.46681617643156,-3.027871468096614,-99.7394358871338,-44.94881456513518,-145.7727613227371
-1678856070,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.8,2.3,24.94,22.47,56.4,29.2,1005.4,-29.642294261766374,-154.8201185028533,-2.955448842775858,-100.46678668764116,-3.0278034957484485,-99.73973361906661,-44.948348030985684,-145.76634863104601
-1678856080,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.7,2.9,24.96,22.53,56.4,29.1,1005.3,-29.642047087352562,-154.82079308298293,-2.955433410796533,-100.46620741026835,-3.027793666930597,-99.74019506372763,-44.94866344121594,-145.78778149272293
-1678856090,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.1,2.9,24.96,22.55,56.4,29.1,1005.3,-29.641832843949338,-154.82135465895598,-2.955374339073831,-100.46562520731894,-3.0278724652218756,-99.74087653434512,-44.9479400519169,-145.7652111596879
-1678856100,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.4,3.3,24.96,22.55,56.4,29.1,1005.3,-29.6419744862644,-154.81983472213267,-2.955556536517874,-100.46639242627064,-3.0278240265115066,-99.73990177022284,-44.948280427483894,-145.77050829027135
-1678856110,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.4,3.1,24.96,22.55,56.4,29.1,1005.3,-29.64255619501749,-154.8181699924378,-2.9556494440177765,-100.46597697858444,-3.027998498039812,-99.74013188811803,-44.9482195796952,-145.76900815753675
-1678856120,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.0,3.1,24.96,22.55,56.4,29.1,1005.4,-29.642043224459513,-154.8204997118837,-2.9554444806486253,-100.46583357432091,-3.0278724555597107,-99.74013968570986,-44.94851968987631,-145.75408717280922
-1678856130,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.8,2.9,24.94,22.54,56.4,29.1,1005.3,-29.642061681743954,-154.8207857480751,-2.9555625543933353,-100.46624906864002,-3.027873906574926,-99.74043460246234,-44.94487835580184,-145.77712458030825
-1678856140,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.0,2.4,24.96,22.46,56.5,29.2,1005.3,-29.642471887899774,-154.8192588945557,-2.9555650724618907,-100.46590208117745,-3.0278748456159117,-99.74047152254543,-44.9459002250234,-145.78016185844405
-1678856150,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.7,2.8,24.96,22.42,56.5,29.3,1005.4,-29.642312365035476,-154.82046504800542,-2.955390846290248,-100.46571739144308,-3.0279724046382976,-99.74010502654147,-44.94727188145326,-145.77486298410258
-1678856160,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.3,2.9,24.97,22.39,56.4,29.3,1005.3,-29.642362280421995,-154.82334336651826,-2.9555338991000157,-100.46681457883962,-3.0279166803320456,-99.74041910611572,-44.94595049294667,-145.77037747587585
-1678856170,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.9,2.5,24.96,22.38,56.4,29.3,1005.3,-29.64262379720082,-154.82203933510712,-2.955534717368527,-100.46625384360955,-3.0279587372356436,-99.7409498995535,-44.94707155286555,-145.75331616810766
-1678856180,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,2.6,24.96,22.31,56.4,29.4,1005.4,-29.64239032266518,-154.82167631391172,-2.955509804799114,-100.46615489049829,-3.028013663081926,-99.74056437856018,-44.94724494397212,-145.75657672141907
-1678856190,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.2,2.5,24.94,22.3,56.5,29.4,1005.3,-29.642337810460113,-154.82173197205478,-2.955558934371308,-100.46609821361282,-3.027712066339955,-99.74097479783764,-44.94406998023044,-145.78366052091312
-1678856200,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.7,2.7,24.93,22.27,56.4,29.5,1005.4,-29.642447246391853,-154.81991133050352,-2.955778710330387,-100.46734428173437,-3.027789948665079,-99.74006161532917,-44.950323387225225,-145.77179357419854
-1678856210,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.0,3.1,24.93,22.25,56.5,29.5,1005.4,-29.6426277130138,-154.81861125485736,-2.955704435199701,-100.46813404059972,-3.027776531510304,-99.74021468469596,-44.95274796778406,-145.74678179832298
-1678856220,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.7,2.4,24.93,22.21,56.4,29.6,1005.3,-29.642635866702275,-154.81962592467383,-2.955364191718495,-100.46811632212095,-3.0278662562132546,-99.74121980870028,-44.95240336045683,-145.74240902283455
-1678856230,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.0,3.0,24.93,22.2,56.4,29.6,1005.4,-29.643547862395113,-154.8139195647806,-2.955770628587419,-100.4678431915991,-3.0279037376933933,-99.74136103739873,-44.953427330482604,-145.74076190777257
-1678856240,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,3.3,24.96,22.17,56.4,29.6,1005.4,-29.64336840519988,-154.81438023872374,-2.9555422510855243,-100.46859562575787,-3.0278629584826433,-99.74170348662828,-44.95237919879288,-145.74029853735945
-1678856250,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.6,3.0,24.96,22.17,56.3,29.6,1005.4,-29.642949700952336,-154.81591627943925,-2.955721521991822,-100.46803483596656,-3.0279144489038865,-99.74167286810645,-44.95379957981423,-145.74964746108836
-1678856260,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.5,2.8,24.96,22.15,56.4,29.6,1005.4,-29.643376534812084,-154.816018861961,-2.9556523692924985,-100.4689953354751,-3.0278517365856636,-99.74245048240864,-44.95509410546024,-145.71741979863876
-1678856270,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.0,2.7,24.96,22.14,56.4,29.6,1005.3,-29.643273518824156,-154.81673807634257,-2.9554341778478492,-100.46906703247355,-3.028045322157334,-99.74298568081021,-44.95454217132164,-145.72010389931674
-1678856280,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.9,2.5,24.93,22.12,56.4,29.7,1005.4,-29.64325379693353,-154.81815881425425,-2.955263742147184,-100.46882604305452,-3.0278171405983145,-99.74293309302183,-44.951772451056215,-145.74719092468007
-1678856290,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.9,2.8,24.93,22.1,56.4,29.7,1005.4,-29.643188085781777,-154.817804916709,-2.9554523467834954,-100.46868048038128,-3.027928455555468,-99.74327839442297,-44.953789559288,-145.74077211731208
-1678856300,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.1,3.7,24.93,22.08,56.4,29.7,1005.3,-29.643439495950243,-154.8166732071786,-2.955675370659479,-100.46807756885667,-3.027887984434257,-99.74200388227281,-44.95068750147158,-145.7502311552638
-1678856310,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.9,3.0,24.96,22.06,56.4,29.7,1005.4,-29.643634262854746,-154.81800721914362,-2.955214946662015,-100.46814452790476,-3.027936318351772,-99.74139128775629,-44.95329499997183,-145.74380777672647
-1678856320,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,2.5,24.94,22.06,56.4,29.8,1005.4,-29.64368244187068,-154.81869457903227,-2.9554725406130826,-100.46843077655335,-3.0280788451932725,-99.74197584441775,-44.951638692584446,-145.73886277379017
-1678856330,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.3,2.4,24.93,22.02,56.4,29.8,1005.4,-29.643542926145784,-154.81624022911387,-2.9553275562280716,-100.46840889429807,-3.0282445643023186,-99.74250176133455,-44.9570531361022,-145.7257175526523
-1678856340,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.1,2.8,24.93,22.03,56.4,29.8,1005.4,-29.64297034773842,-154.81663891423995,-2.955338787527286,-100.4679872805957,-3.0280694931670697,-99.74132698952448,-44.952737316948735,-145.74207594114256
-1678856350,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.0,2.9,24.94,22.02,56.4,29.8,1005.5,-29.643370239450366,-154.81697494324337,-2.9554327185891065,-100.46798613544637,-3.0279188059594233,-99.74233937322018,-44.949392194882385,-145.74777406756516
-1678856360,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.2,3.0,24.94,22.0,56.4,29.8,1005.4,-29.643343589017658,-154.81490999560722,-2.955378735563887,-100.46819842889505,-3.027932577318947,-99.74151191999826,-44.95327970657144,-145.74387932657183
-1678856370,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.6,3.2,24.96,22.01,56.4,29.8,1005.5,-29.643088639571182,-154.818194067696,-2.955358198445351,-100.46870144633324,-3.027851859294497,-99.74149425353586,-44.9563134846498,-145.7356961117438
-1678856380,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,2.8,24.97,22.0,56.4,29.9,1005.4,-29.643508194165268,-154.81657688843327,-2.9556039426327,-100.4687572992743,-3.0278580801439787,-99.74147859585983,-44.950600399634446,-145.75117475421138
-1678856390,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.0,3.0,24.97,22.0,56.3,29.9,1005.5,-29.643267674199127,-154.8136399338664,-2.9553700034930594,-100.46827846845547,-3.027885007641289,-99.74107606470061,-44.95170754473513,-145.74331501368295
-1678856400,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.4,3.0,24.97,22.0,56.4,29.9,1005.5,-29.6431543105123,-154.81442370425435,-2.9556071445550836,-100.46806289435489,-3.0279187207870546,-99.74103633193732,-44.95253719364883,-145.73632506369475
-1678856410,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.7,3.2,24.97,22.0,56.4,29.9,1005.5,-29.643286298184286,-154.81529387034908,-2.9555256259975864,-100.46739198284686,-3.027916595345796,-99.74137912363291,-44.95225284329658,-145.75476542170082
-1678856420,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.9,2.6,24.97,22.01,56.4,29.9,1005.5,-29.643402573761342,-154.81616492263802,-2.9554844382047527,-100.46718473334437,-3.02775047727813,-99.74242643183842,-44.95220609255452,-145.74596489786202
-1678856430,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.4,3.2,24.96,22.01,56.4,29.9,1005.5,-29.64336418267774,-154.81631953817504,-2.9553085517403623,-100.46760834851655,-3.027841337598895,-99.7422100093756,-44.95450924726066,-145.74070731946895
-1678856440,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.4,2.6,24.96,22.01,56.4,29.8,1005.5,-29.643377535859635,-154.81572529098497,-2.9553897621971075,-100.46714629764628,-3.0277341720475945,-99.74180345518553,-44.95428321771402,-145.7330249853455
-1678856450,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.4,3.2,24.94,22.0,56.4,29.9,1005.6,-29.643377178553493,-154.81637603334121,-2.955490274332932,-100.46671604191569,-3.0279972490279277,-99.74291959424087,-44.95476006376166,-145.7335389396385
-1678856460,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.8,3.0,24.94,22.02,56.4,29.8,1005.5,-29.64327404886444,-154.8153512883111,-2.9554630800643578,-100.46719481174986,-3.0278017033776923,-99.74248834316441,-44.9521766815976,-145.7605485761959
-1678856470,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.1,2.8,24.94,22.02,56.3,29.8,1005.5,-29.64330504895374,-154.81480608593614,-2.955375850454432,-100.46796937696318,-3.02780296099844,-99.74304583325139,-44.954772933476065,-145.75365552863028
-1678856480,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.3,2.7,24.94,22.04,56.3,29.8,1005.6,-29.643470789076872,-154.8140873311012,-2.9554600535112305,-100.46801921163636,-3.0278084074163685,-99.74338547684948,-44.95364030222114,-145.75396639605515
-1678856490,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.9,2.5,24.93,22.05,56.3,29.8,1005.6,-29.643044861092243,-154.8150840359161,-2.9553780880771314,-100.46808210268344,-3.0277438239770698,-99.74354763124948,-44.9560716459574,-145.75618867798337
-1678856500,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.9,3.0,24.96,22.06,56.3,29.8,1005.6,-29.642894888064696,-154.81624938196455,-2.9553575451370473,-100.4677683096901,-3.027926961900776,-99.74317075584331,-44.95180645820332,-145.76116429671038
-1678856510,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,3.4,24.94,22.06,56.3,29.8,1005.6,-29.642523498276386,-154.81925676335823,-2.9554059007916864,-100.46737492631094,-3.027904738170686,-99.74258860043427,-44.95198017227381,-145.7721036091843
-1678856520,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,3.0,24.96,22.09,56.3,29.8,1005.5,-29.64249725159352,-154.81799897016677,-2.955400814846625,-100.46676084638928,-3.027964777099557,-99.74235106679315,-44.950447519974325,-145.7518385496485
-1678856530,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,3.4,24.96,22.09,56.2,29.8,1005.6,-29.643194577125122,-154.81551647698538,-2.9554285282825172,-100.46602073340897,-3.0279192481472297,-99.74306052877128,-44.95185147250966,-145.74417107994412
-1678856540,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.6,2.9,24.94,22.09,56.2,29.7,1005.5,-29.64343888612136,-154.81568059295824,-2.9553718917328062,-100.46666701653913,-3.027975138440475,-99.74193618395509,-44.95453483591053,-145.74289203766725
-1678856550,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,3.5,24.96,22.09,56.2,29.8,1005.6,-29.642991821319427,-154.81614116902915,-2.9555278976057253,-100.46731630749326,-3.0279160858630805,-99.74120715488178,-44.954013004632586,-145.76027027434912
-1678856560,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.9,3.1,24.97,22.1,56.3,29.7,1005.6,-29.64366792634855,-154.8149542203257,-2.955457908007279,-100.46708034086602,-3.0279527997558144,-99.74152648030758,-44.95411376673458,-145.75455051800535
-1678856570,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,3.1,24.97,22.1,56.3,29.7,1005.6,-29.642474940670553,-154.8169354836778,-2.9554822184770484,-100.46649740929674,-3.0278865159376838,-99.7418656379642,-44.951781590715015,-145.7623596899863
-1678856580,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.1,2.6,24.94,22.11,56.3,29.7,1005.6,-29.64320394553676,-154.81375209071246,-2.95543739148868,-100.46722014778321,-3.0278306825890393,-99.74208052430488,-44.953381520636384,-145.75137557260095
-1678856590,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.7,2.5,24.94,22.11,56.4,29.7,1005.6,-29.643873656482963,-154.8133386909388,-2.955553732499343,-100.46760708029609,-3.0276438879511036,-99.74276951930798,-44.958034440807076,-145.7624758457191
-1678856600,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.9,2.6,24.94,22.12,56.4,29.7,1005.6,-29.6439079361534,-154.81414285993785,-2.9556270022181574,-100.46796799783073,-3.0279075011764505,-99.74265007281346,-44.95414822584873,-145.75871323270783
-1678856610,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.4,2.8,24.96,22.13,56.5,29.7,1005.6,-29.643364050528046,-154.81582389451148,-2.9555239188634874,-100.46840322706159,-3.027834423810792,-99.74136654330471,-44.954822802289144,-145.76950541963646
-1678856620,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.0,2.4,24.96,22.15,56.5,29.6,1005.6,-29.643537835339124,-154.8154604011027,-2.955377890173383,-100.46860410732567,-3.0277697213475934,-99.74158132996209,-44.954786177380925,-145.75748715000475
-1678856630,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,2.6,24.94,22.15,56.5,29.6,1005.6,-29.64506644884985,-154.8124327153253,-2.955344507389302,-100.46920877452143,-3.027727534181757,-99.74255622989543,-44.97276555346316,-145.7682603532715
-1678856640,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.4,2.4,24.96,22.17,56.5,29.6,1005.6,-29.6436966886894,-154.81645147573002,-2.955373432212858,-100.46934962647482,-3.027827383610755,-99.74285304876102,-44.956113986803715,-145.73508121312557
-1678856650,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.1,3.4,24.94,22.18,56.4,29.6,1005.6,-29.642991108574325,-154.818647859226,-2.955477722168971,-100.46870970541156,-3.027845098728198,-99.74254153341326,-44.94832536006618,-145.7553569128968
-1678856660,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,3.8,24.96,22.18,56.4,29.6,1005.6,-29.642773231292978,-154.818723096657,-2.955287439300707,-100.46799017186635,-3.027878731696017,-99.74353082989491,-44.94362276401027,-145.75631784952324
-1678856670,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,3.4,24.96,22.19,56.3,29.6,1005.6,-29.642558682794935,-154.81633841994562,-2.9553636484028605,-100.46772710339187,-3.027928196242839,-99.74219350870132,-44.941167185322556,-145.75406480026024
-1678856680,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.3,3.1,24.96,22.2,56.3,29.6,1005.5,-29.6430120028989,-154.8189394679253,-2.9553734638828333,-100.46762271564073,-3.0277572873550462,-99.74197679762874,-44.940366863944796,-145.7612944416399
-1678856690,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,3.2,24.93,22.2,56.3,29.6,1005.6,-29.64304478538718,-154.81574360436923,-2.955449852753498,-100.46737112529301,-3.027730868910581,-99.74244136993902,-44.94814100186851,-145.75385916231303
-1678856700,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.6,2.7,24.96,22.23,56.3,29.6,1005.6,-29.64328067645986,-154.81669760930416,-2.9556361554590422,-100.46733773136724,-3.027812569950167,-99.74346523204187,-44.94466997300651,-145.73702420682824
-1678856710,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.1,2.5,24.96,22.23,56.4,29.6,1005.6,-29.6425971532471,-154.81960846252412,-2.9556405010055036,-100.46742661667832,-3.0277363288175247,-99.74263827641168,-44.938434400330884,-145.7641824153489
-1678856720,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.3,2.8,24.94,22.23,56.4,29.6,1005.6,-29.642793041201557,-154.81749614230998,-2.955643500204981,-100.46748835247132,-3.027852739818773,-99.7424396697753,-44.9406690431021,-145.75274334919544
-1678856730,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.4,2.8,24.93,22.24,56.4,29.6,1005.6,-29.64318866113127,-154.8146733899682,-2.955616465425141,-100.46808210337328,-3.0276636292594503,-99.74210058745402,-44.94169764879949,-145.74949658772434
-1678856740,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,2.8,24.94,22.24,56.4,29.5,1005.6,-29.64339750263498,-154.8141807264969,-2.9558027957177324,-100.46734229339413,-3.027758876255774,-99.74131234789607,-44.942176893971244,-145.76736007210965
-1678856750,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,2.7,24.93,22.24,56.4,29.5,1005.6,-29.64288946462204,-154.8156226650857,-2.9557341354367326,-100.46755936734804,-3.0277411353616186,-99.74149060457432,-44.938367085892125,-145.75437973912267
-1678856760,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.8,2.5,24.96,22.25,56.4,29.5,1005.6,-29.642766488369496,-154.81756021145446,-2.9555734025003715,-100.46793399062712,-3.027765082203402,-99.7417378515272,-44.937874937819224,-145.7609788216187
-1678856770,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.9,2.7,24.97,22.3,56.4,29.5,1005.5,-29.643319570993377,-154.8151282794296,-2.9553653064533574,-100.4678638821217,-3.027831771130022,-99.74242060369426,-44.94081814434527,-145.75027203668455
-1678856780,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.0,2.7,24.97,22.31,56.4,29.4,1005.6,-29.642917203943952,-154.8174797813875,-2.9556703764551218,-100.46742118440395,-3.0278252605559164,-99.74159722266455,-44.939461786247854,-145.7573111936907
-1678856790,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.3,3.1,24.97,22.31,56.4,29.4,1005.6,-29.64244178196818,-154.81947818982576,-2.955445594935437,-100.46779154755507,-3.0278659101821463,-99.74140348973096,-44.939735698001854,-145.75332278535112
-1678856800,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.6,2.4,24.97,22.3,56.4,29.4,1005.5,-29.642501567253653,-154.82069238481452,-2.9555860320785903,-100.4670922903812,-3.027929487565398,-99.74176140365445,-44.9419158987545,-145.7659821367378
-1678856810,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,2.7,24.97,22.3,56.3,29.4,1005.5,-29.64283772666928,-154.81729475236148,-2.9555199971639596,-100.46771389118884,-3.0280652120765024,-99.74152512536818,-44.94300900782221,-145.74148781935781
-1678856820,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.7,3.1,24.96,22.29,56.3,29.4,1005.6,-29.641995394074026,-154.8181062250823,-2.955669021758474,-100.46692166475704,-3.0278491665357725,-99.74088028264012,-44.93814426744255,-145.758388208904
-1678856830,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.0,3.0,24.96,22.29,56.3,29.4,1005.5,-29.64252850154553,-154.8150438531164,-2.9555896983667846,-100.46796345647783,-3.0278752405323233,-99.7406351843996,-44.940176529416256,-145.75670196091792
-1678856840,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,3.0,24.96,22.29,56.3,29.4,1005.5,-29.642321988086984,-154.81527502778857,-2.955430999504904,-100.46774677152969,-3.027970134883306,-99.74091872311857,-44.94258422536834,-145.74107638879534
-1678856850,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,2.6,24.96,22.29,56.3,29.4,1005.5,-29.6427376376303,-154.8159267455898,-2.9557135281177906,-100.46807675587736,-3.0277630442328944,-99.7414656304265,-44.94350392893884,-145.74796628943471
-1678856860,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.1,2.8,24.96,22.29,56.3,29.4,1005.6,-29.64286016321347,-154.81501933833508,-2.9554360882019273,-100.46818138677916,-3.027729421828095,-99.74153062531448,-44.94603881448644,-145.75558584178904
-1678856870,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.5,3.3,24.93,22.29,56.3,29.4,1005.6,-29.642738383646055,-154.81656435373714,-2.9554726022969326,-100.46854125248699,-3.027878571342953,-99.74106248756998,-44.94544998524468,-145.75124650268495
-1678856880,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.1,3.3,24.96,22.29,56.3,29.4,1005.5,-29.643347813667074,-154.81454004557486,-2.955432344309183,-100.46816744707147,-3.027615157021665,-99.74072981796179,-44.93980624990896,-145.73770835153508
-1678856890,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.0,3.1,24.97,22.29,56.3,29.4,1005.5,-29.64283539298905,-154.81468016012704,-2.955403783129352,-100.46812064554801,-3.027887988243934,-99.74069923341116,-44.941629307024236,-145.73276123070082
-1678856900,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.7,3.2,24.97,22.29,56.3,29.4,1005.5,-29.642978440803386,-154.81406143948948,-2.9554544115739367,-100.46860840319171,-3.0277928651226156,-99.74085782401856,-44.943984566691185,-145.73512598832718
-1678856910,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.2,3.6,24.93,22.3,56.3,29.4,1005.5,-29.643487326260963,-154.81346770978635,-2.955626367532838,-100.46806315171621,-3.0278188708350706,-99.74157975057238,-44.94453825911705,-145.73485633362776
-1678856920,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.1,3.6,24.93,22.3,56.3,29.4,1005.5,-29.64306971090879,-154.81615506678506,-2.955585429723958,-100.46835985588841,-3.0280019632408735,-99.74176716926678,-44.94301706187997,-145.72933733013625
-1678856930,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.0,3.6,24.93,22.31,56.3,29.4,1005.5,-29.642960555255154,-154.81697951324045,-2.955603446893143,-100.46773632263405,-3.027833782145098,-99.74174440943729,-44.937705328409706,-145.74196076826658
-1678856940,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.1,3.1,24.93,22.31,56.2,29.4,1005.6,-29.643472942818452,-154.81378861869473,-2.9555457225800974,-100.46827014750065,-3.02801307289192,-99.74254864636504,-44.94374496267418,-145.7276150579938
-1678856950,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.3,3.1,24.96,22.31,56.3,29.4,1005.6,-29.643045508492456,-154.81262147579432,-2.9554388383600187,-100.4688161996746,-3.0279296689568036,-99.74201224815981,-44.946315585112856,-145.69294979822453
-1678856960,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,3.3,24.97,22.31,56.2,29.4,1005.6,-29.643148076838393,-154.8152042517064,-2.9555475950139796,-100.46822642793124,-3.0278958700966756,-99.74240324321588,-44.94098732060184,-145.7122768967534
-1678856970,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.9,3.4,24.97,22.32,56.2,29.4,1005.6,-29.642987022658474,-154.81287471033517,-2.955616809400297,-100.46750430564768,-3.0278902162036516,-99.74226944680677,-44.9457806367477,-145.7208217612489
-1678856980,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.0,3.7,24.97,22.32,56.2,29.4,1005.5,-29.64366220591497,-154.81136767249814,-2.9556717756491824,-100.46744168519847,-3.0280115355399206,-99.74136572318292,-44.94166236494528,-145.711048482937
-1678856990,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.3,3.9,24.96,22.32,56.2,29.4,1005.5,-29.644009893059312,-154.81063086084924,-2.955620997487547,-100.46722906228935,-3.027937870200006,-99.74196788399979,-44.9446211193331,-145.71756243368654
-1678857000,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.6,3.2,24.96,22.33,56.2,29.4,1005.6,-29.643793705466646,-154.81134434342806,-2.9556507293656855,-100.46783274209399,-3.0278421815933183,-99.74095910970692,-44.94518407942174,-145.7392908206284
-1678857010,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.8,2.8,24.94,22.33,56.2,29.4,1005.6,-29.643528677401623,-154.8120181582337,-2.9557122492785544,-100.46833084578378,-3.0281102348859674,-99.74120710212635,-44.941833473408785,-145.72179600598574
-1678857020,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.8,3.2,24.94,22.33,56.3,29.3,1005.6,-29.643571492272876,-154.81122179984465,-2.9557527095639036,-100.46807635888148,-3.02798356662759,-99.74135552910911,-44.94236931526728,-145.715528489082
-1678857030,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.6,3.3,24.93,22.33,56.3,29.3,1005.6,-29.644005563632845,-154.80869586702354,-2.955780919883794,-100.46852120086287,-3.027984084097706,-99.7411974721048,-44.94809118921054,-145.7258626930607
-1678857040,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.6,2.8,24.94,22.33,56.3,29.4,1005.6,-29.643835409882403,-154.80892293024823,-2.95569151137821,-100.4685899917055,-3.0278796325975317,-99.74131913113405,-44.94411633210394,-145.71209452089468
-1678857050,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.7,2.8,24.94,22.35,56.3,29.4,1005.5,-29.644100570178942,-154.80926880865343,-2.955833664720357,-100.46851489199254,-3.0277660270519684,-99.74183779784696,-44.94080288921044,-145.7102820863832
-1678857060,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.7,3.0,24.94,22.36,56.3,29.3,1005.6,-29.64401927988755,-154.80942542800372,-2.9558675161785466,-100.46881855459988,-3.0278597269115832,-99.74245189328488,-44.944429551964944,-145.73614011583874
-1678857070,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.6,3.4,24.94,22.36,56.3,29.3,1005.6,-29.643962909612853,-154.80878014381074,-2.955537899082886,-100.468958705926,-3.0277883102668692,-99.74241340034224,-44.94562072621583,-145.71544869371436
-1678857080,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.6,2.9,24.94,22.36,56.3,29.3,1005.6,-29.64452286471376,-154.80771852198225,-2.9556517561292117,-100.469287893762,-3.027859900026681,-99.74232677368146,-44.94366960028347,-145.70863275586527
-1678857090,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.0,3.1,24.94,22.35,56.3,29.3,1005.6,-29.644151418134747,-154.80863980128814,-2.9557103529970803,-100.46880446756828,-3.0278396381299117,-99.74199247154782,-44.946002754956695,-145.71225380627928
-1678857100,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.4,2.9,24.94,22.35,56.3,29.4,1005.6,-29.64455294321999,-154.80800553328115,-2.9558513535153303,-100.46913941616086,-3.0277624514154855,-99.74204858588872,-44.94843606786201,-145.71385943836003
-1678857110,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.9,2.9,24.94,22.35,56.3,29.3,1005.6,-29.64478430329716,-154.80658514372257,-2.9557176737975976,-100.46932819385161,-3.0277241297505015,-99.74205163994417,-44.94400333976756,-145.6955125855336
-1678857120,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.7,2.6,24.94,22.39,56.3,29.3,1005.6,-29.644410504881378,-154.80537330608874,-2.955647569754744,-100.46954977809781,-3.0278614130502604,-99.74191775264607,-44.94280784606178,-145.68775784883994
-1678857130,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.8,2.5,24.94,22.4,56.3,29.3,1005.6,-29.644459375159013,-154.80609922772004,-2.9558124504286103,-100.47011074750368,-3.0277519820737324,-99.74256318716718,-44.94496220118995,-145.69368739720667
-1678857140,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.0,3.5,24.96,22.39,56.3,29.3,1005.6,-29.64444313343085,-154.80724246903935,-2.955677199689167,-100.4695303354311,-3.0278383249030134,-99.74332890955691,-44.95179806726234,-145.67933465585364
-1678857150,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.3,3.5,24.96,22.4,56.3,29.3,1005.6,-29.64516676776975,-154.80411652499635,-2.955700037871998,-100.46956727803197,-3.027785053535108,-99.74396122163628,-44.952729929187605,-145.68679533918774
-1678857160,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.4,3.4,24.97,22.39,56.3,29.3,1005.6,-29.645488872730752,-154.80246291908674,-2.955791842124525,-100.46972302559253,-3.0276348855290847,-99.74372655822617,-44.953978962178354,-145.67560793997842
-1678857170,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,2.6,24.96,22.4,56.3,29.3,1005.6,-29.645617605265357,-154.80256688209394,-2.955711052880164,-100.4705629466648,-3.027724995485249,-99.74379932079495,-44.95390813296976,-145.6916728773964
-1678857180,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.1,2.9,24.96,22.4,56.3,29.3,1005.6,-29.644798105688395,-154.80706262981482,-2.955555271198575,-100.47057631252684,-3.0277792580484086,-99.74410988114357,-44.94896036601256,-145.67903890827066
-1678857190,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.0,3.7,24.96,22.4,56.3,29.3,1005.6,-29.645440193053698,-154.80484296033026,-2.95569889281907,-100.47079405552887,-3.0279006224176896,-99.7442090371607,-44.95169087209903,-145.668472543025
-1678857200,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.8,3.0,24.97,22.4,56.3,29.3,1005.6,-29.645160819620465,-154.80294253001054,-2.9556635358842236,-100.47026024955136,-3.0280067743160153,-99.74406805778652,-44.953792702096386,-145.69602698865563
-1678857210,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,2.8,24.93,22.42,56.3,29.3,1005.6,-29.645539502335502,-154.8034461279754,-2.955603549723633,-100.47011955382581,-3.0279827010337157,-99.74468276619555,-44.95114838905761,-145.68114508563764
-1678857220,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.3,3.0,24.94,22.42,56.4,29.3,1005.6,-29.645122999305823,-154.80420496938513,-2.9555844368730333,-100.47068781521911,-3.0276892085804334,-99.7450257092511,-44.95380555270038,-145.6914113801802
-1678857230,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.8,2.9,24.97,22.43,56.4,29.3,1005.6,-29.645830709911163,-154.80512012516675,-2.9556699943834506,-100.47072199123268,-3.0279153074435343,-99.74467729858291,-44.95169774888383,-145.6837029660244
-1678857240,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.0,3.3,24.96,22.46,56.3,29.3,1005.7,-29.645572269010685,-154.80464411981018,-2.955809671185194,-100.47074939323008,-3.0277163418079773,-99.7448267673447,-44.950495063926745,-145.7029044581954
-1678857250,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.6,2.9,24.96,22.46,56.3,29.2,1005.6,-29.64576478807297,-154.80050935156598,-2.9557662509798255,-100.47067778541863,-3.0278478070982855,-99.74519499603538,-44.95876323241157,-145.68540350851035
-1678857260,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.7,3.5,24.94,22.46,56.4,29.2,1005.6,-29.645779558828885,-154.80316017941666,-2.955667834781055,-100.47153133364027,-3.0277488567456503,-99.74500358954052,-44.95777941145746,-145.6839823116938
-1678857270,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.0,2.7,24.96,22.49,56.4,29.2,1005.6,-29.645887830395964,-154.80306834007683,-2.9555765586340854,-100.47224315540024,-3.0279352938390973,-99.74539636174148,-44.95307719604581,-145.68859043082068
-1678857280,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.6,2.5,24.93,22.53,56.4,29.1,1005.7,-29.645843995833157,-154.80243738818035,-2.955508695441986,-100.4722747964449,-3.0280014772208297,-99.74512987143244,-44.95497791593935,-145.66715697886423
-1678857290,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.9,3.2,24.93,22.47,56.4,29.2,1005.6,-29.64607666953615,-154.80107482432038,-2.955481227871078,-100.47161790248542,-3.027915976627268,-99.7452641046207,-44.96042892181701,-145.67205063100187
-1678857300,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.1,3.3,24.94,22.45,56.4,29.2,1005.6,-29.64632855022273,-154.79865148219267,-2.9555741484480795,-100.4722535032272,-3.028015239463931,-99.7456866986876,-44.95901511158475,-145.66580523406773
-1678857310,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.9,2.8,24.93,22.42,56.4,29.3,1005.7,-29.646532848875356,-154.7996856568348,-2.9553989732066714,-100.47240621914875,-3.0279196547946836,-99.74509232921183,-44.961749664935446,-145.66143926722657
-1678857320,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.1,2.5,24.93,22.36,56.4,29.3,1005.6,-29.646601274375488,-154.80046468461433,-2.955396904262243,-100.47284690875388,-3.0277191707143074,-99.74588754034717,-44.964250689533515,-145.65051494991897
-1678857330,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.1,3.0,24.93,22.34,56.4,29.4,1005.6,-29.64637906408752,-154.8020657440045,-2.955475890312746,-100.47276213135949,-3.027728554862268,-99.7463330244329,-44.95398324779242,-145.64886763496463
-1678857340,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.7,2.4,24.93,22.32,56.5,29.4,1005.6,-29.646247932242535,-154.7998925346003,-2.9555550292395623,-100.47234061360707,-3.027892364813117,-99.74654941261879,-44.958255908263155,-145.64578516401042
-1678857350,25.0,25.0,55.0,55.0,0,1300000000,,,3,4.4,2.9,24.93,22.3,56.5,29.4,1005.7,-29.646519154440142,-154.7999606671851,-2.9555298102675387,-100.4723165257225,-3.0277594425777483,-99.7467161305487,-44.960395112646914,-145.65358710794723
-1678857360,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.6,3.6,24.93,22.29,56.5,29.4,1005.7,-29.64613169332646,-154.80208419745543,-2.955616629882652,-100.47132507746035,-3.0276978314414023,-99.74641753662776,-44.95630587553541,-145.66142565654602
-1678857370,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.6,3.0,24.94,22.26,56.4,29.5,1005.6,-29.646312525688717,-154.80136210069185,-2.9556588442532448,-100.47162258382723,-3.027800035411299,-99.74589885964149,-44.956223768943495,-145.64436308172944
-1678857380,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.8,3.2,24.98,22.21,56.4,29.6,1005.7,-29.646236524446884,-154.8032050899003,-2.9555238368515684,-100.47101477803511,-3.0280723155429676,-99.74437297730209,-44.9521206312059,-145.65767174396908
-1678857390,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.1,3.3,24.98,22.19,56.4,29.6,1005.7,-29.645998231562174,-154.80310221493957,-2.9557034184301934,-100.47052066821078,-3.0278709974159197,-99.74356507712739,-44.95044649903523,-145.66085673934052
-1678857400,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.5,2.3,24.97,22.18,56.4,29.6,1005.7,-29.646228210483056,-154.8023470303485,-2.955449156956394,-100.4704099697989,-3.027764515617366,-99.74496125401976,-44.954319455431104,-145.67562593741042
-1678857410,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.7,2.1,24.96,22.15,56.4,29.6,1005.6,-29.646322852032412,-154.79994004733973,-2.9555282955287474,-100.47064445973675,-3.027738131743227,-99.74553287944576,-44.960267408291,-145.6613865072308
-1678857420,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.6,3.1,24.96,22.11,56.3,29.7,1005.7,-29.645739486071218,-154.8012934148452,-2.955720470460072,-100.47089398703665,-3.027747267359823,-99.7451669407098,-44.954474517622636,-145.65698188636068
-1678857430,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.9,3.0,24.94,22.09,56.4,29.7,1005.7,-29.6455287003441,-154.80127948776519,-2.9555167934736786,-100.47023814207553,-3.0278310271357602,-99.7449421361301,-44.952641787300905,-145.6588652216671
-1678857440,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,3.3,24.96,22.06,56.4,29.7,1005.7,-29.64561484205995,-154.80218612258932,-2.9555669649521663,-100.46996685747315,-3.0278078506710973,-99.74496324173533,-44.955440383706595,-145.66811750627866
-1678857450,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.0,2.9,24.93,21.99,56.4,29.8,1005.7,-29.645678003109758,-154.8048905008524,-2.9555169373695183,-100.47065358541599,-3.0278561988656088,-99.74525951007665,-44.95599175170789,-145.672793767185
-1678857460,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.4,2.6,24.94,21.99,56.4,29.9,1005.7,-29.646045568533474,-154.803490987871,-2.955576618014658,-100.4709623906238,-3.0278500359732368,-99.74536876814004,-44.95311267615737,-145.65777841676498
-1678857470,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.4,3.2,24.97,21.99,56.4,29.9,1005.8,-29.645791077536373,-154.80169169363506,-2.9555167278498367,-100.47041189256116,-3.02772725676204,-99.7447456441361,-44.955850109467086,-145.6581838257593
-1678857480,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,2.8,24.94,21.99,56.4,29.9,1005.8,-29.64627551592281,-154.79963408239357,-2.9556546043750114,-100.4702766155187,-3.0278314860041444,-99.74521850495111,-44.95686473192319,-145.65946067956685
-1678857490,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.0,2.7,24.96,21.99,56.4,29.9,1005.7,-29.6462674163096,-154.8006123446425,-2.9557194305238177,-100.4702447372601,-3.027905131238117,-99.74447665788804,-44.953241551195184,-145.66620364127093
-1678857500,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.1,2.6,24.93,21.97,56.4,29.9,1005.7,-29.646370686748746,-154.80065953102329,-2.955786891301438,-100.47052244149245,-3.027857201114603,-99.74546148240985,-44.95458448362883,-145.6626480447904
-1678857510,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.0,2.8,24.93,21.97,56.4,30.0,1005.7,-29.64619106556745,-154.79932973309744,-2.9558527605768066,-100.47068202317325,-3.02789252689395,-99.7444615177813,-44.95271330249792,-145.65403780606746
-1678857520,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.7,2.7,24.94,21.96,56.4,30.0,1005.7,-29.64596787229473,-154.7961998009965,-2.955578597567409,-100.47133782000967,-3.027849198687246,-99.74451042523724,-44.95595702002237,-145.65029342851219
-1678857530,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,2.3,24.93,21.96,56.4,30.0,1005.8,-29.645954003945846,-154.79858422631798,-2.9556980722901613,-100.47081247088292,-3.027761476127563,-99.74464554292813,-44.961439480857514,-145.65415497723626
-1678857540,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,2.9,24.94,21.95,56.4,30.0,1005.8,-29.64577197619527,-154.7989373398695,-2.955694129338281,-100.47124002355325,-3.0277662122422697,-99.74332429979206,-44.95460392949386,-145.66259807306218
-1678857550,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.4,2.8,24.94,21.9,56.4,30.0,1005.8,-29.64567109554004,-154.79830836657828,-2.9557525623089838,-100.47118110319902,-3.0278980955828674,-99.74419791917761,-44.9558468717569,-145.6564571700711
-1678857560,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.9,3.0,24.96,21.91,56.4,30.0,1005.8,-29.64566779942259,-154.80103275657146,-2.9556956301161925,-100.47104287422597,-3.027996880624782,-99.74388594336469,-44.95705901397826,-145.66549702830704
-1678857570,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.8,3.2,24.96,21.93,56.3,30.0,1005.9,-29.64601278474618,-154.80029997081706,-2.9557979277487862,-100.470963797734,-3.0280017763835794,-99.74344135259999,-44.95305454041188,-145.69132294354563
-1678857580,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,3.0,24.93,21.91,56.3,30.0,1005.7,-29.646104984245703,-154.8015122204872,-2.9556570039084247,-100.47111259277908,-3.027900380959588,-99.7442960722633,-44.953265452115936,-145.6716157066332
-1678857590,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.7,2.8,24.93,21.94,56.4,30.0,1005.7,-29.646072721917772,-154.80139093587943,-2.9557729050011394,-100.47023594721566,-3.0278173617168798,-99.74462690650871,-44.951836694795546,-145.6652830679901
-1678857600,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.7,2.6,24.96,21.93,56.3,30.0,1005.8,-29.646477409806447,-154.79988849851358,-2.955581778301135,-100.47078730948067,-3.0279109382663574,-99.74449896253412,-44.95609784906591,-145.64992284740848
-1678857610,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,3.0,24.94,21.91,56.4,30.0,1005.8,-29.646618509493553,-154.79922849387228,-2.955850250423899,-100.47021393617165,-3.0279015086687067,-99.74458483707738,-44.95638504824234,-145.64269785554598
-1678857620,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,2.7,24.96,21.94,56.4,30.0,1005.8,-29.646142078708305,-154.80196358937965,-2.955773125459329,-100.47090455544206,-3.028042076698076,-99.74498744543962,-44.95512268436465,-145.64801912147928
-1678857630,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.3,3.0,24.94,21.95,56.4,30.0,1005.7,-29.646410793774002,-154.79897915712715,-2.9557488191787984,-100.4699758577646,-3.028053379257691,-99.74493073772449,-44.95374692509466,-145.6683668919982
-1678857640,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.3,2.5,24.96,21.96,56.3,30.0,1005.8,-29.646528936038155,-154.79883838588523,-2.9556696871441823,-100.4701531497935,-3.0280696081437313,-99.7450698007136,-44.96072459217825,-145.65908171226644
-1678857650,25.0,25.0,55.0,55.0,0,1300000000,,,3,9.1,2.5,24.94,21.96,56.4,30.0,1005.8,-29.64626869330246,-154.80158780880024,-2.9556813154477872,-100.47033744532195,-3.0278860908771907,-99.74477886672885,-44.95505533905025,-145.66224983896646
-1678857660,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.1,3.0,24.94,21.97,56.3,29.9,1005.8,-29.64601319021261,-154.800253827543,-2.9556374221462023,-100.47008161585394,-3.0278408607703606,-99.74390890909599,-44.95240960007986,-145.6677267191548
-1678857670,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.5,3.1,24.93,21.97,56.4,29.9,1005.8,-29.64617515721434,-154.80156348663982,-2.9559315192473052,-100.47023143817042,-3.027773927797175,-99.74442026200273,-44.95247115591076,-145.6678416142373
-1678857680,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.9,3.0,24.96,21.99,56.3,29.9,1005.9,-29.646106558903817,-154.79912439086252,-2.9558186719807944,-100.47021931300885,-3.0278451433861795,-99.74366531365646,-44.95287267091908,-145.65319280271106
-1678857690,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.6,3.0,24.94,21.99,56.3,29.9,1005.8,-29.64613258620801,-154.80142437326546,-2.9558311161119177,-100.46988513580449,-3.02772456708019,-99.74405655722076,-44.95178100411088,-145.67661740403892
-1678857700,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.6,2.8,24.96,22.0,56.3,29.9,1005.9,-29.646029575613912,-154.80196392809782,-2.955615281370174,-100.47015626396129,-3.027847868287421,-99.74398068945162,-44.9591639106943,-145.65931314622262
-1678857710,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.1,2.7,24.93,21.99,56.3,29.9,1005.8,-29.64519419218009,-154.80355885297777,-2.955446396512988,-100.4696872394292,-3.0278529419562297,-99.74500683332748,-44.95441404950587,-145.65132400878932
-1678857720,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.6,3.1,24.93,22.0,56.3,29.9,1005.9,-29.645448084046112,-154.80596422271682,-2.9555582535391975,-100.46882979689688,-3.0277281038963286,-99.74470364713726,-44.94931746292464,-145.67062727044132
-1678857730,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.8,3.1,24.93,22.0,56.3,29.9,1005.9,-29.64542612484958,-154.80610397761558,-2.955540501734784,-100.46854245039874,-3.027789994620359,-99.74538871168116,-44.95367346361661,-145.69049700242775
-1678857740,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.9,3.2,24.93,22.02,56.2,29.8,1005.9,-29.64525939674808,-154.80693331308666,-2.955607887500922,-100.4700362874154,-3.027844280187097,-99.74467917484844,-44.948574705558116,-145.68391304971797
-1678857750,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.6,3.5,24.93,22.02,56.3,29.8,1005.9,-29.644325737743213,-154.80688797159436,-2.9554670585092895,-100.46925836523175,-3.0279722811472447,-99.74577372593392,-44.94895115548013,-145.6837824160866
-1678857760,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,3.6,24.93,22.04,56.2,29.8,1005.9,-29.644695870891407,-154.80569725756243,-2.9554971547821376,-100.46956142099705,-3.027964373671654,-99.74479894446198,-44.948868970859124,-145.669210213234
-1678857770,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,3.3,24.93,22.04,56.2,29.8,1005.9,-29.644554672589194,-154.80648959974593,-2.955523975730085,-100.46858131887706,-3.0279558146991388,-99.74558781925413,-44.94800091313218,-145.68248932405982
-1678857780,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.5,3.5,24.96,22.04,56.2,29.8,1005.9,-29.644703355949304,-154.809307830127,-2.9552991738127936,-100.46827694156991,-3.0279952796143297,-99.745386426669,-44.95154425939635,-145.69738843256886
-1678857790,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.8,3.2,24.94,22.05,56.2,29.8,1005.9,-29.643690710794925,-154.80880156211444,-2.9552879682963167,-100.46825017654918,-3.028105637523289,-99.74460063264807,-44.94835213900484,-145.68298219811558
-1678857800,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.4,3.3,24.93,22.04,56.2,29.8,1006.0,-29.64405753003735,-154.80667660447884,-2.9554247756986047,-100.46837486950976,-3.0279634316281068,-99.74402962031606,-44.949539143638546,-145.6768390015788
-1678857810,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.8,3.7,24.93,22.04,56.2,29.8,1005.9,-29.643605931539206,-154.8101838241142,-2.955334655566078,-100.46815839510782,-3.0281926126833607,-99.74448080549172,-44.95036050594207,-145.67692916786007
-1678857820,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.6,3.9,24.94,22.06,56.2,29.8,1005.9,-29.644359057410874,-154.808930041716,-2.955321865370248,-100.4684707195468,-3.028195225262306,-99.74449806851159,-44.9501714602612,-145.68283973950403
-1678857830,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.9,3.0,24.96,22.08,56.2,29.7,1005.9,-29.64424256182568,-154.80926982741704,-2.9551274355744512,-100.4686089403592,-3.0280817150895203,-99.74259520409139,-44.95462954208755,-145.67538362709394
-1678857840,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.0,2.8,24.96,22.09,56.3,29.8,1006.0,-29.643782604317046,-154.810451914128,-2.9550582150886475,-100.46812935886825,-3.0281393440547486,-99.7424693733484,-44.94980006578133,-145.66932490522737
-1678857850,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.7,2.7,24.96,22.09,56.3,29.7,1006.0,-29.643081939918794,-154.81264641545974,-2.955166213559202,-100.46774488765044,-3.0280888903601184,-99.74268735962468,-44.94835529375394,-145.66691261333827
-1678857860,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.0,2.9,24.96,22.12,56.3,29.7,1005.9,-29.643804740732264,-154.80949587177264,-2.9553569370261084,-100.46777013731761,-3.0281560735945408,-99.74261443098116,-44.95070614057256,-145.67580563795056
-1678857870,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,3.0,24.96,22.14,56.3,29.7,1005.9,-29.643236009789828,-154.81360920511864,-2.955151146593113,-100.46751372191702,-3.02801543084366,-99.74308916902147,-44.94701789929735,-145.67959827637085
-1678857880,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,2.9,24.93,22.15,56.3,29.6,1005.9,-29.64374514279808,-154.81121139868125,-2.9552408897202094,-100.46814764973391,-3.0280955974250423,-99.74333564867699,-44.95562350130511,-145.68715478335338
-1678857890,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,3.5,24.93,22.16,56.3,29.6,1005.8,-29.64339132570736,-154.8107037804172,-2.955135246454865,-100.46901596871724,-3.0279841154689753,-99.7426882281905,-44.954930930681904,-145.66917143919926
-1678857900,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.8,3.2,24.93,22.17,56.3,29.6,1005.9,-29.643607396051497,-154.8096291455822,-2.955310553364432,-100.46889799221903,-3.028107560390783,-99.7430316822482,-44.95413165888617,-145.68956486102235
-1678857910,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.2,3.5,24.94,22.18,56.3,29.6,1005.8,-29.643610996241033,-154.80971860423278,-2.9551160363636515,-100.46860371339498,-3.027983481634136,-99.74275783881863,-44.96224767422934,-145.69440592520792
-1678857920,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.0,3.7,24.93,22.19,56.3,29.6,1006.0,-29.643755248470836,-154.8098528791102,-2.955123003898069,-100.46862617815597,-3.0281273704432583,-99.74309660321713,-44.95843636554834,-145.6919625298695
-1678857930,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.1,3.1,24.97,22.19,56.2,29.5,1005.9,-29.64366233817193,-154.81042834159905,-2.9551517432625047,-100.46920302149594,-3.0281774025284403,-99.74238830261216,-44.96143802888356,-145.69055626265924
-1678857940,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.9,3.1,24.96,22.19,56.2,29.6,1005.9,-29.643267103276898,-154.81166979108895,-2.955174604727526,-100.46946118124386,-3.02790737719771,-99.74238319284038,-44.962220902241505,-145.6931552903054
-1678857950,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,2.9,24.96,22.19,56.3,29.6,1005.9,-29.64439880714235,-154.80714646626686,-2.9552103016618183,-100.46935785863178,-3.0280005423149015,-99.74296732588085,-44.968682030433,-145.67703544620022
-1678857960,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.0,3.4,24.94,22.21,56.3,29.6,1006.0,-29.644611075897195,-154.80860968896005,-2.9553060549404813,-100.46919423960368,-3.0279813871175993,-99.74273856889609,-44.9637796591794,-145.69034827313973
-1678857970,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.9,3.4,24.96,22.21,56.3,29.6,1006.0,-29.644607969104527,-154.8105798960439,-2.9553032477166044,-100.4687681235368,-3.0282527753999737,-99.74297720965538,-44.96153135321432,-145.70912937436154
-1678857980,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.9,3.1,24.96,22.23,56.3,29.6,1006.0,-29.644844284036033,-154.80831560873537,-2.9551721915270974,-100.46809731015573,-3.0278986636089145,-99.7427638672772,-44.958845052172165,-145.70343196539977
-1678857990,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.3,3.0,24.96,22.23,56.4,29.6,1006.0,-29.644902681832015,-154.80791816391073,-2.9552485580282846,-100.46862273607319,-3.028013315843781,-99.74311305255297,-44.961865148553734,-145.69958772649176
-1678858000,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.8,2.9,24.94,22.23,56.4,29.5,1005.9,-29.644486384063974,-154.8076302127942,-2.9552302127605206,-100.46873748584606,-3.028041180854912,-99.74301675121872,-44.95892285926839,-145.6851906454867
-1678858010,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.6,2.9,24.96,22.23,56.4,29.5,1006.0,-29.644595777982893,-154.80799310174027,-2.955430069831117,-100.46913271917181,-3.027945951354792,-99.74215843340046,-44.95828965000183,-145.69594110877495
-1678858020,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.3,3.3,24.94,22.24,56.3,29.5,1005.9,-29.644650481392347,-154.8083809725296,-2.9552532016071122,-100.46901831538365,-3.0280858140379054,-99.74242634125446,-44.95943658347826,-145.69886628331483
-1678858030,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,3.6,24.94,22.24,56.3,29.5,1006.0,-29.644810709915433,-154.81026449890004,-2.9551745006005046,-100.46971424418176,-3.0280631340043214,-99.74273715746129,-44.96232482446371,-145.68328897873735
-1678858040,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.4,3.5,24.94,22.24,56.3,29.5,1006.0,-29.644708187029988,-154.8093053771623,-2.955027407512736,-100.468685884419,-3.02808586592862,-99.7436173933852,-44.96585376748833,-145.66617698270105
-1678858050,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.7,3.4,24.94,22.24,56.3,29.5,1005.9,-29.644772793364687,-154.81013695285253,-2.955298069116301,-100.46895917242051,-3.0278798296831684,-99.74299053100157,-44.95859214351473,-145.70175151516145
-1678858060,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.1,3.3,24.94,22.24,56.3,29.5,1006.0,-29.644971674844616,-154.81079776157097,-2.955334056010904,-100.4686297767432,-3.0279761622405275,-99.74309715179362,-44.95736936507288,-145.68828285888554
-1678858070,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.7,3.2,24.96,22.25,56.3,29.5,1006.0,-29.644712462886787,-154.80927825752855,-2.955246585716263,-100.46837417885894,-3.02808270388393,-99.74195149994084,-44.96080747555127,-145.6931796150178
-1678858080,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.1,2.8,24.94,22.26,56.4,29.5,1006.0,-29.644474697132512,-154.81033724113763,-2.9553964369403807,-100.46834776162014,-3.0280442153347664,-99.74200117614572,-44.95609461525955,-145.70253394336245
-1678858090,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.3,2.9,24.93,22.25,56.4,29.5,1006.0,-29.644498673986256,-154.81105723048574,-2.9552820440332868,-100.46843321877907,-3.027981813072698,-99.74170412592568,-44.957508454639346,-145.7006384340602
-1678858100,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.0,2.8,24.94,22.26,56.4,29.5,1006.0,-29.64484292359492,-154.81126457117588,-2.955266449333962,-100.46879908024366,-3.0281290917453934,-99.74185547712503,-44.96352913006788,-145.7227408692889
-1678858110,25.0,25.0,55.0,55.0,0,1300000000,,,3,4.9,3.2,24.93,22.27,56.4,29.5,1006.0,-29.644724077903597,-154.8108052843151,-2.95531739150909,-100.468236819706,-3.0279203375157184,-99.74244379038973,-44.96213040360952,-145.7365110460403
-1678858120,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.7,2.6,24.96,22.27,56.4,29.5,1006.0,-29.64491036944789,-154.80944919210526,-2.9553830617678023,-100.4676446043173,-3.027969117019658,-99.74264545972888,-44.96481701825006,-145.74167980529523
-1678858130,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.4,3.3,24.97,22.27,56.4,29.4,1006.0,-29.64474548595739,-154.80781769247804,-2.9553520357507757,-100.4677998614407,-3.027950741116098,-99.74169426336972,-44.96291106641442,-145.7294454815653
-1678858140,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.6,3.2,24.96,22.27,56.4,29.4,1006.0,-29.64539179703989,-154.8036695634115,-2.9551432251545218,-100.46863612800566,-3.0278729422403434,-99.74235051191663,-44.96760671365319,-145.71887341943165
-1678858150,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.8,2.9,24.94,22.27,56.4,29.4,1006.0,-29.64506016202727,-154.80569778576634,-2.9553083492044143,-100.46874482391941,-3.0278702650410727,-99.74261819163692,-44.96829987346226,-145.72625118476563
-1678858160,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.7,3.2,24.94,22.28,56.4,29.4,1006.0,-29.645111819545605,-154.8063856013565,-2.9554244171141466,-100.46872551351306,-3.0277684418429436,-99.74218459405765,-44.96163637863438,-145.72910158552304
-1678858170,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.9,3.0,24.96,22.29,56.4,29.4,1006.1,-29.645254077506515,-154.8051848556995,-2.955518293262455,-100.46879619666372,-3.02789072808819,-99.74275669421623,-44.967353244104316,-145.74651053127053
-1678858180,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.9,2.9,24.96,22.31,56.4,29.4,1006.0,-29.645535279101868,-154.80579608079492,-2.9554643808954846,-100.46957155097876,-3.027774110441152,-99.74286631053849,-44.9685537169824,-145.72982126655455
-1678858190,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.0,3.2,24.96,22.31,56.4,29.4,1006.1,-29.646047057858436,-154.80518103012383,-2.9552824271760114,-100.46917920009543,-3.027793575090663,-99.74378558517502,-44.97167937928208,-145.72367462075414
-1678858200,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.7,2.9,24.94,22.32,56.4,29.4,1006.0,-29.645357353897985,-154.80479637412296,-2.9553557893285047,-100.46906036538687,-3.027846159406005,-99.74314787292661,-44.97061019785248,-145.72989033917187
-1678858210,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.2,2.4,24.94,22.32,56.4,29.4,1006.0,-29.645275370862105,-154.80560799937095,-2.9553217972263175,-100.46891537420974,-3.0276728278526335,-99.74325275260404,-44.96725968443773,-145.7477646666471
-1678858220,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,2.6,24.93,22.31,56.4,29.4,1006.0,-29.64565816779939,-154.804520144155,-2.955380010878464,-100.46964591728597,-3.0277067426756292,-99.74321122081976,-44.97253234156459,-145.73965563687793
-1678858230,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.0,3.0,24.94,22.32,56.5,29.4,1006.1,-29.645695089487745,-154.80301603286333,-2.955472897800584,-100.46932402272064,-3.0276463469407897,-99.74322411222022,-44.97367981246021,-145.71415958500953
-1678858240,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.7,2.6,24.96,22.31,56.5,29.4,1006.1,-29.645437327172353,-154.80541824874098,-2.9555330956823407,-100.46937231051633,-3.0277278287416234,-99.74307994838351,-44.97012504364677,-145.72218436456754
-1678858250,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.7,2.4,24.94,22.32,56.5,29.4,1006.1,-29.645843514584882,-154.80341936533378,-2.9554542946352043,-100.46971543762572,-3.02767877947632,-99.74398977084464,-44.972909511594594,-145.71289167515553
-1678858260,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.0,2.5,24.94,22.32,56.5,29.4,1006.1,-29.64596523517649,-154.8042156432022,-2.9555331274659875,-100.47040354631507,-3.0276235114073575,-99.74378677246861,-44.97078701835649,-145.6896094284581
-1678858270,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,2.8,24.97,22.33,56.5,29.4,1006.1,-29.645889798971503,-154.80316350292765,-2.9553609887067065,-100.47094639471834,-3.027762672208532,-99.74346082072833,-44.97684143166258,-145.70644403777504
-1678858280,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.6,3.2,24.94,22.33,56.5,29.3,1006.1,-29.64601249404982,-154.80331327642034,-2.955431554220951,-100.4701753336254,-3.0276707683428343,-99.74353851878375,-44.97639653207571,-145.6954478039494
-1678858290,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.4,2.5,24.96,22.34,56.5,29.4,1006.0,-29.645929119331413,-154.80278344156687,-2.955386196934591,-100.47059683511851,-3.027876919492221,-99.74346110779892,-44.97729129384325,-145.68614589123328
-1678858300,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.0,2.9,24.96,22.34,56.5,29.3,1006.1,-29.64607209333772,-154.80307827962298,-2.9555448974044203,-100.46982471072694,-3.0278963411175304,-99.7435329841243,-44.97543451155151,-145.721930397244
-1678858310,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,2.7,24.94,22.35,56.5,29.3,1006.0,-29.645376527126093,-154.80312371300548,-2.955475206410557,-100.46972451819562,-3.0279031283245668,-99.74290654532491,-44.97477611325379,-145.69741192426665
-1678858320,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.2,2.4,24.94,22.35,56.6,29.3,1006.1,-29.646166269507116,-154.8036829063368,-2.955344439212748,-100.47001057452007,-3.027767886084397,-99.74320966367392,-44.974031223655345,-145.7127564807282
-1678858330,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.2,2.3,24.96,22.38,56.6,29.3,1006.1,-29.645780253681583,-154.80487866142744,-2.955433604317286,-100.4692683815322,-3.027798674978639,-99.74323108619342,-44.970459384670846,-145.73227077696436
-1678858340,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.4,2.5,24.96,22.4,56.6,29.3,1006.0,-29.64582543606688,-154.80614867099672,-2.955624071429921,-100.47025509809227,-3.027817728304994,-99.74248169200358,-44.9691554195908,-145.72879051046522
-1678858350,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.1,2.3,24.94,22.4,56.6,29.3,1006.1,-29.645391125510308,-154.8071625541898,-2.9555614925179134,-100.47058357119916,-3.027722161123616,-99.74232258582917,-44.97624739242954,-145.72307274310296
-1678858360,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,2.6,24.97,22.4,56.5,29.3,1006.1,-29.645819901410164,-154.8028782720069,-2.9553824336347634,-100.47037768881474,-3.027831176088487,-99.74296853535442,-44.978242744241086,-145.7101508861065
-1678858370,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.1,2.5,24.94,22.39,56.5,29.3,1006.1,-29.64581479446337,-154.80494774621357,-2.955421239315692,-100.46999721571841,-3.02788854605311,-99.74240665649246,-44.97762226599711,-145.71408645548
-1678858380,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.6,2.8,24.97,22.4,56.5,29.3,1006.2,-29.64573909751223,-154.80378642575792,-2.9552251915254875,-100.47005376146421,-3.027796656202991,-99.74276874642268,-44.978432347942096,-145.68542802184746
-1678858390,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.8,2.5,24.96,22.4,56.5,29.3,1006.1,-29.645784124944893,-154.80310309468993,-2.9554444470120207,-100.47008513321524,-3.0277515074468724,-99.74291487196871,-44.974223539128396,-145.69422633497476
-1678858400,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,2.9,24.94,22.43,56.5,29.3,1006.1,-29.646203560192035,-154.80343446219632,-2.9554933659211198,-100.47075498495984,-3.027952297093446,-99.7429572871927,-44.97940270130147,-145.6956978583956
-1678858410,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.1,2.4,24.94,22.43,56.5,29.3,1006.1,-29.64623718664336,-154.80140772540122,-2.955510955150088,-100.47015317052238,-3.0278691717955675,-99.74360942960769,-44.97927521669208,-145.70115012744236
-1678858420,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.2,2.4,24.96,22.44,56.5,29.2,1006.1,-29.6463639667755,-154.8025007153777,-2.955300835361903,-100.46996167325898,-3.0280243818333203,-99.74415187149972,-44.97628548782338,-145.69663908236757
-1678858430,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.9,2.8,24.96,22.43,56.5,29.2,1006.1,-29.645844064216075,-154.80348074945056,-2.9552311854428464,-100.47045140432063,-3.0280194733398687,-99.74268887322559,-44.9748152285433,-145.71107317540475
-1678858440,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.6,2.6,24.97,22.43,56.5,29.2,1006.1,-29.645972312682055,-154.80327312096412,-2.9554400510211605,-100.47069050878507,-3.0279238868569287,-99.74253672997722,-44.97561658645303,-145.72426478950996
-1678858450,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.4,1.9,24.96,22.43,56.5,29.2,1006.1,-29.64545008500187,-154.80641125796797,-2.955488070180847,-100.47057340918613,-3.0278610917117894,-99.743259165809,-44.973358210664856,-145.72228737812208
-1678858460,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.8,2.8,24.94,22.42,56.5,29.2,1006.1,-29.645637975965965,-154.80577582798293,-2.955480187088169,-100.46947014657549,-3.0279608466752475,-99.74332032836014,-44.97262464428401,-145.71389041986006
-1678858470,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.2,2.3,24.94,22.42,56.5,29.3,1006.1,-29.64547793743631,-154.8063007603199,-2.9554177333741967,-100.46997230245611,-3.0280900639016295,-99.74292093846547,-44.971114422361154,-145.70475247773808
-1678858484,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.6,3.0,24.93,22.42,56.4,29.3,1006.1,-29.645164538181767,-154.8070417214731,-2.9555203777378654,-100.46994188546671,-3.0279198881739458,-99.74268801747769,-44.97240952014494,-145.70686207499747
-1678858490,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.4,2.5,24.93,22.43,56.4,29.3,1006.1,-29.64535889573046,-154.8079880682015,-2.955360192322616,-100.46951510962758,-3.0279267573316213,-99.74350501533604,-44.97383807345224,-145.7120440920442
-1678858500,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,2.7,24.93,22.45,56.4,29.2,1006.1,-29.64511938399838,-154.8071137056246,-2.955320748099008,-100.46981359183371,-3.027961782398578,-99.74343283995373,-44.97479216361277,-145.70394529218277
-1678858510,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,2.6,24.93,22.45,56.4,29.2,1006.2,-29.644639286332037,-154.8065698244725,-2.9554274082549044,-100.46953801391442,-3.028093301389818,-99.74270610193967,-44.976239231411085,-145.69800377895956
-1678858520,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.9,2.2,24.97,22.45,56.4,29.2,1006.1,-29.644140423395214,-154.80864959104275,-2.955341259377906,-100.46952947861396,-3.0281646878046202,-99.7429775094178,-44.975757987385265,-145.7046767068113
-1678858530,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.3,2.4,24.96,22.47,56.3,29.2,1006.1,-29.644620881701197,-154.80639951076483,-2.955135755912938,-100.47065325989905,-3.0280072795570834,-99.74276205408157,-44.975203894903125,-145.69280955723198
-1678858540,25.0,25.0,55.0,55.0,0,1300000000,,,3,9.4,3.0,24.94,22.48,56.3,29.2,1006.2,-29.645282799322974,-154.80196793822515,-2.9552653831013878,-100.47151988868825,-3.027941657331991,-99.7423721239015,-44.98099865676019,-145.68010823402412
-1678858550,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.6,2.5,24.94,22.49,56.3,29.2,1006.1,-29.644844911495667,-154.80480490548783,-2.955405030388623,-100.47176567264434,-3.02808456178591,-99.74216588270838,-44.98006005908163,-145.67277131061658
-1678858560,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.7,2.6,24.93,22.53,56.3,29.1,1006.1,-29.644922863392242,-154.8044838005848,-2.955350120889883,-100.47018967878059,-3.028011377152779,-99.74300312262008,-44.97992597706995,-145.68543437572328
-1678858570,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,2.7,24.96,22.54,56.3,29.1,1006.1,-29.645187840699066,-154.80339731416035,-2.955332870837026,-100.47051147658078,-3.0280098719746156,-99.74272681199622,-44.98025042560368,-145.6847809610404
-1678858580,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.9,2.8,24.96,22.51,56.3,29.1,1006.1,-29.644679499795934,-154.80638162968867,-2.9553923264255078,-100.47019700648806,-3.0279055254586256,-99.742469533461,-44.9801382312404,-145.70040215368599
-1678858590,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,2.7,24.96,22.54,56.3,29.1,1006.1,-29.644897313860493,-154.8055743876775,-2.9553413977640064,-100.46972057907337,-3.0280257413120655,-99.74316907073009,-44.98294069007814,-145.69015728199582
-1678858600,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.4,2.5,24.97,22.51,56.3,29.1,1006.2,-29.644342822485413,-154.80876203745024,-2.955167891820084,-100.47011586354583,-3.0281324181620466,-99.74255976453489,-44.978776694189364,-145.6942818268544
-1678858610,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.6,3.1,24.97,22.5,56.3,29.1,1006.0,-29.644888778595334,-154.804173550854,-2.9551672162767417,-100.47004005700018,-3.0280791123471156,-99.74216973089918,-44.97802528981758,-145.68710291026508
-1678858620,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.7,3.0,24.96,22.49,56.3,29.1,1006.1,-29.645390511184864,-154.80169111060044,-2.9553703983976036,-100.46950264968814,-3.0279887820952736,-99.74313582155418,-44.984192505422484,-145.70369403505305
-1678858630,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.9,3.0,24.96,22.5,56.3,29.1,1006.1,-29.644669038676913,-154.80533673025923,-2.9552899997652697,-100.46935687554274,-3.027918303677754,-99.74269486969757,-44.98126192828171,-145.6999649151896
-1678858640,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,2.7,24.94,22.47,56.3,29.1,1006.1,-29.644494633311737,-154.8058039007271,-2.955390815280733,-100.46889243569875,-3.0279366471591853,-99.74234471602966,-44.97997038344921,-145.695391884345
-1678858650,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.7,2.6,24.93,22.43,56.3,29.2,1006.2,-29.645157776450763,-154.8058992660076,-2.9551936522382065,-100.47024741956558,-3.0279525645573164,-99.74213328203734,-44.98325584119995,-145.69042664323692
-1678858660,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.7,3.1,24.96,22.41,56.3,29.3,1006.1,-29.64520747842023,-154.80406185074932,-2.9553886696106297,-100.46899819648395,-3.027962738615386,-99.74277075793262,-44.98323816975466,-145.68884253723806
-1678858670,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.3,3.5,24.97,22.4,56.3,29.3,1006.2,-29.64500757091709,-154.80584730561282,-2.955354439994803,-100.46951015769268,-3.027982391823726,-99.74179453758933,-44.98268370526028,-145.6790010745411
-1678858680,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.3,2.8,24.94,22.39,56.3,29.3,1006.1,-29.64506219366443,-154.80362491705975,-2.955286908643125,-100.46904972505618,-3.0280732306036287,-99.7419922438009,-44.9844155579198,-145.69866471049087
-1678858690,25.0,25.0,55.0,55.0,0,1300000000,,,3,9.2,2.1,24.96,22.36,56.3,29.3,1006.1,-29.64457002198037,-154.80711222430196,-2.9553284016279724,-100.46961847512564,-3.027980642632311,-99.74233459312453,-44.98301441854517,-145.71249408019673
-1678858700,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.6,2.7,24.96,22.32,56.3,29.4,1006.1,-29.64471204082001,-154.8062556376121,-2.955153057080106,-100.4704482492924,-3.0281352929579635,-99.74216855261247,-44.98257030562554,-145.68090115824953
-1678858710,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.9,2.7,24.96,22.3,56.3,29.4,1006.2,-29.64480144059443,-154.806171270879,-2.9551523034077913,-100.47018776781086,-3.0280189247215072,-99.74299528935374,-44.983134331916055,-145.69494325336308
-1678858720,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.6,2.9,24.96,22.25,56.3,29.5,1006.1,-29.64540705164778,-154.8033105675596,-2.955200856906977,-100.47053826330921,-3.0280674021955285,-99.74364701546321,-44.982656993476496,-145.68899173349277
-1678858730,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.2,2.8,24.96,22.23,56.3,29.5,1006.1,-29.64571982959351,-154.80342631259205,-2.9552212125708617,-100.47107301013581,-3.0280433293997278,-99.74465406265954,-44.98750038682725,-145.66361198507488
-1678858740,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.6,2.8,24.93,22.21,56.2,29.6,1006.1,-29.645190421675856,-154.80321149247055,-2.9550612682778388,-100.4708393718553,-3.028105064036508,-99.74467522513442,-44.98874140620704,-145.67326648650632
-1678858750,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.4,3.3,24.96,22.19,56.2,29.5,1006.2,-29.645375968989317,-154.80322321344596,-2.955182104667081,-100.47051247853337,-3.028174701491468,-99.74448619050555,-44.98956965251371,-145.67301780133374
-1678858760,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.6,2.7,24.96,22.15,56.2,29.6,1006.1,-29.646007711392205,-154.80192595061442,-2.955368196992108,-100.47064346178844,-3.0279093369739862,-99.74379672251895,-44.992453883975934,-145.6881145020648
-1678858770,25.0,25.0,55.0,55.0,0,1300000000,,,3,4.7,3.5,24.96,22.14,56.2,29.7,1006.2,-29.64628874776929,-154.8014330397377,-2.955395127710492,-100.47064584362091,-3.0279093380022566,-99.7446633331542,-44.995839812289404,-145.69213294656194
-1678858780,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.4,2.9,24.94,22.11,56.2,29.7,1006.2,-29.646196174505775,-154.8001884566498,-2.9552890042089026,-100.47109323217957,-3.0278824231918966,-99.74422936222062,-44.993269478553124,-145.67754086698372
-1678858790,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.0,3.2,24.96,22.08,56.2,29.7,1006.2,-29.64589998137649,-154.8023950405847,-2.955242917228426,-100.47161151074353,-3.028040842828516,-99.74336092262882,-44.997478127365,-145.6719083666209
-1678858800,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.4,3.3,24.96,22.05,56.2,29.7,1006.2,-29.64608408129399,-154.80157160178095,-2.9553899908363834,-100.47086191584623,-3.0279990125076672,-99.74405859333163,-44.992367362122536,-145.68907121705047
-1678858810,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.6,2.8,24.96,22.0,56.2,29.8,1006.2,-29.645815064739807,-154.8040389907204,-2.955284182892174,-100.4711989961298,-3.0279380782038876,-99.74347675230483,-44.991247368643464,-145.6876378978405
-1678858820,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.8,3.1,24.94,21.99,56.2,29.9,1006.2,-29.646226394642753,-154.80078451904882,-2.955287595061218,-100.4719437367824,-3.028071582487324,-99.74389765491183,-44.99507032666462,-145.65790525469313
-1678858830,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.6,3.2,24.96,21.99,56.3,29.9,1006.2,-29.646206694374115,-154.80343437966752,-2.9553799296175933,-100.47104022784411,-3.0280460602305483,-99.74355126402698,-44.989710905756944,-145.68089970037917
-1678858840,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.3,3.6,24.96,21.94,56.2,29.9,1006.2,-29.64577249823426,-154.80424623848003,-2.955171692497873,-100.47105719029247,-3.0279639909055893,-99.74341526529861,-44.99133718451267,-145.68979689806199
-1678858850,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.4,3.3,24.97,21.93,56.2,30.0,1006.2,-29.64548684865079,-154.80581225513768,-2.955204942704159,-100.47037662161257,-3.028080455748112,-99.74429205402195,-44.991362426218004,-145.69358549726937
-1678858860,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,3.1,24.97,21.94,56.2,30.0,1006.2,-29.646312882966566,-154.80421706967965,-2.9553175993072816,-100.47062325935254,-3.0279425431524754,-99.74447653395359,-44.98992346052774,-145.69005058928764
-1678858870,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.3,3.4,24.96,21.9,56.2,30.0,1006.2,-29.645755596200168,-154.8043169046326,-2.9551764442320505,-100.47066327562186,-3.027954401807405,-99.74409653354991,-44.9905029091878,-145.6814755837801
-1678858880,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.0,3.7,24.97,21.85,56.2,30.1,1006.3,-29.645927200983557,-154.8057368887863,-2.955153385394439,-100.47065150149274,-3.027921246641074,-99.74454251046413,-44.99107029118762,-145.68325472388557
-1678858890,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.4,3.1,24.96,21.83,56.2,30.1,1006.3,-29.64650812509189,-154.8017914075926,-2.955287520851189,-100.4706284820164,-3.0278844197550994,-99.74485110311227,-44.996089377882804,-145.69195949714822
-1678858900,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.1,3.3,24.96,21.79,56.2,30.1,1006.2,-29.646140204215282,-154.80252923354013,-2.9553559240707368,-100.47027048897228,-3.0277559665602616,-99.74415619597977,-44.99081262028032,-145.68889424992236
-1678858910,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,3.1,24.97,21.8,56.2,30.1,1006.2,-29.64558061271308,-154.80371640677802,-2.955259645397079,-100.47061668267203,-3.0278966246161705,-99.74442219508742,-44.9912179076167,-145.6876144238043
-1678858920,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.4,3.1,24.96,21.82,56.2,30.1,1006.2,-29.645713192055002,-154.80370491926183,-2.955292318366304,-100.47032329680539,-3.0279419816864888,-99.74450410084401,-44.99369707459218,-145.69007378224526
-1678858930,25.0,25.0,55.0,55.0,0,1300000000,,,3,4.8,3.2,24.96,21.82,56.2,30.1,1006.2,-29.645502727453554,-154.80392083176176,-2.955170550441635,-100.47023521216178,-3.02790487060152,-99.74459277628986,-44.99116267051441,-145.69186850200333
-1678858940,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.9,2.7,24.97,21.83,56.2,30.1,1006.2,-29.645501441546006,-154.80344281357537,-2.9552086632339574,-100.47058581546153,-3.0280695254509267,-99.74497395529126,-44.99333349657567,-145.69843765976364
-1678858950,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.7,2.9,24.96,21.83,56.2,30.1,1006.2,-29.644995942732137,-154.80677090797965,-2.9551960973595004,-100.47101522248339,-3.027899514610594,-99.74498344017401,-44.992880208672744,-145.70353886183767
-1678858960,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.0,3.2,24.96,21.84,56.3,30.1,1006.2,-29.64523934574158,-154.80423247655474,-2.9554702606852192,-100.47122745915709,-3.0280407676450203,-99.74500860805259,-44.992393845197505,-145.6963228471925
-1678858970,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.6,3.3,24.93,21.84,56.3,30.1,1006.2,-29.64526103689733,-154.80474771028946,-2.9554154311045107,-100.47125299822906,-3.0278829858014555,-99.74489737858335,-44.99241098133774,-145.70518783829658
-1678858980,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.2,3.0,24.94,21.86,56.3,30.1,1006.1,-29.64568603556945,-154.80439011494994,-2.9553288347506204,-100.47195485707186,-3.0278506880336877,-99.74497683402191,-44.99326845103984,-145.70342944703393
-1678858990,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,3.4,24.93,21.88,56.3,30.1,1006.2,-29.645396725315884,-154.8077849247414,-2.9553381035205257,-100.47140977309842,-3.0278290294358685,-99.74516792662013,-44.99207732809876,-145.6979769066008
-1678859000,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.6,3.3,24.93,21.88,56.3,30.1,1006.2,-29.645112992505226,-154.80557354351072,-2.9551502258803195,-100.47172435957296,-3.027854116004487,-99.74506649480274,-44.992779871347146,-145.68525222205693
-1678859010,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.7,3.1,24.93,21.9,56.2,30.0,1006.2,-29.6448724415284,-154.80409364261342,-2.955076484274304,-100.47148139419662,-3.0278276788795813,-99.74514179204257,-44.989473100114274,-145.7123342896886
-1678859020,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.3,3.4,24.94,21.93,56.2,30.0,1006.3,-29.644867556032732,-154.80553927456964,-2.9552118307908075,-100.47237742251912,-3.0278683266589876,-99.74484687177028,-44.99162377269252,-145.703690083437
-1678859030,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.0,3.5,24.94,21.94,56.2,30.0,1006.2,-29.64482252355308,-154.8056530825547,-2.955267664639857,-100.47232649457604,-3.0279969587784756,-99.74399646698453,-44.99050656535011,-145.7078270747685
-1678859040,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.9,3.2,24.96,21.94,56.3,30.0,1006.2,-29.64561405659667,-154.80697397830107,-2.9551886155834444,-100.47316285175772,-3.0278850647155107,-99.74403271627351,-44.99239689160803,-145.70985655020408
-1678859050,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.2,3.1,24.94,21.95,56.3,30.0,1006.2,-29.6448987086348,-154.80779720010239,-2.955290677910175,-100.47303318159713,-3.027939697535738,-99.74353066296128,-44.993051691109535,-145.71106406920688
-1678859060,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.1,3.2,24.94,21.97,56.3,30.0,1006.2,-29.644975550557376,-154.80779926412467,-2.9550609693904923,-100.47284872523906,-3.02790278634526,-99.74364726593315,-44.990678844951304,-145.7103388950324
-1678859070,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.7,2.6,24.94,21.97,56.3,30.0,1006.2,-29.645032109621305,-154.8092014782055,-2.9549420151335037,-100.4727804529207,-3.027964393293365,-99.74480550858905,-44.992861249486026,-145.6940059142805
-1678859080,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.9,2.9,24.93,21.99,56.4,29.9,1006.2,-29.64536010096587,-154.80598649346823,-2.9552375848440686,-100.47339835853306,-3.0278533651561768,-99.74425055959772,-44.996144315210465,-145.71810461731104
-1678859090,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.1,2.9,24.94,22.0,56.4,29.9,1006.2,-29.645299592348763,-154.8061747415277,-2.9551928693365426,-100.47306186028183,-3.0280252282869844,-99.7444267943071,-44.99361825269226,-145.69284802182358
-1678859100,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,2.9,24.93,22.0,56.4,29.9,1006.2,-29.64540969961433,-154.80623475581416,-2.9552451362287857,-100.4733811832752,-3.0281128703906512,-99.74468558926802,-44.99435086516833,-145.70539052847818
-1678859110,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.6,3.3,24.96,22.0,56.4,29.9,1006.2,-29.645154596851157,-154.80490895764342,-2.9550196557676127,-100.47262926013056,-3.028079739727334,-99.74449369593427,-44.99438233634627,-145.70906801086292
-1678859120,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.4,2.5,24.96,22.01,56.4,29.8,1006.2,-29.645251233637943,-154.8058973669277,-2.9551537100333714,-100.47264618578716,-3.0279610832577886,-99.74444818019602,-44.991407288108114,-145.71682999089447
-1678859130,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,2.9,24.96,22.02,56.4,29.8,1006.3,-29.64521926039424,-154.80260338260507,-2.9551938174158847,-100.47264512944793,-3.0280376145509686,-99.74448512134222,-44.99379348197583,-145.70700934455263
-1678859140,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.0,3.2,24.96,22.04,56.4,29.8,1006.3,-29.64532772870608,-154.8033409508144,-2.9552366862964083,-100.47287772950645,-3.0279778909311195,-99.74496039177487,-44.98694527504185,-145.6959159585556
-1678859150,25.0,25.0,55.0,55.0,0,1300000000,,,3,4.4,3.2,24.96,22.04,56.4,29.8,1006.3,-29.645963164750956,-154.80419426522096,-2.9552824059135268,-100.47296708611015,-3.027939577659588,-99.74478773957968,-44.99024146450697,-145.7086248149968
-1678859160,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.3,2.9,24.94,22.05,56.4,29.8,1006.3,-29.645100674199828,-154.80440938866823,-2.9552585601142694,-100.47203172738176,-3.027864612979517,-99.7451470487782,-44.98823730210208,-145.71901146952789
-1678859170,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.7,3.0,24.96,22.06,56.4,29.8,1006.2,-29.645005887483595,-154.80683156380178,-2.955129657509415,-100.47280239827252,-3.0279480488157655,-99.74483379240023,-44.987214670815725,-145.710712113525
-1678859180,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.0,3.3,24.97,22.08,56.4,29.7,1006.3,-29.645052275149503,-154.80456145125132,-2.9552657782890748,-100.47110732318178,-3.0279380026246274,-99.74528216843939,-44.98798970766117,-145.71516091902885
-1678859190,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.1,2.9,24.96,22.09,56.4,29.7,1006.3,-29.644843847663722,-154.8089164126646,-2.9553920033713665,-100.47162519834586,-3.0279833697172958,-99.74512205443143,-44.98784611503148,-145.71908995372917
-1678859200,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.4,3.0,24.96,22.09,56.4,29.7,1006.3,-29.644944490685745,-154.80754518161893,-2.9553925999053576,-100.47139317624809,-3.027809520418688,-99.74418099993323,-44.985256652520135,-145.73633755279235
-1678859210,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.7,2.4,24.96,22.1,56.4,29.7,1006.2,-29.644900932139713,-154.8074436478434,-2.955506342253344,-100.47128803040445,-3.027720782024061,-99.7449586804772,-44.985625307841744,-145.74405820794436
-1678859220,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.6,2.8,24.93,22.11,56.4,29.7,1006.3,-29.644823995238152,-154.8051803458449,-2.955399408990808,-100.47102609278006,-3.0277390033649447,-99.7447775402886,-44.98344712207945,-145.7380842138836
-1678859230,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.7,2.9,24.94,22.12,56.5,29.7,1006.3,-29.644892085949092,-154.80625743991712,-2.955437279082513,-100.47126430814454,-3.0278038656347595,-99.74442085258654,-44.98182960686548,-145.74362092341556
-1678859240,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.8,2.6,24.94,22.12,56.5,29.7,1006.3,-29.645938644422127,-154.8012401594546,-2.9553889730364844,-100.47180699439569,-3.027819937801348,-99.7442063357468,-44.9993834827354,-145.76976913009923
-1678859250,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.5,3.0,24.96,22.13,56.5,29.7,1006.3,-29.646089336704037,-154.80314336918065,-2.955368402011121,-100.47236195808894,-3.027802046060337,-99.74525344626558,-45.000388569318936,-145.75601187269766
-1678859260,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.9,3.2,24.96,22.14,56.4,29.6,1006.3,-29.64554883744606,-154.80285607694563,-2.9553166371032176,-100.47154725536865,-3.027664729513024,-99.7446819608633,-44.99292506784481,-145.72317592569834
-1678859270,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.8,2.8,24.94,22.15,56.4,29.7,1006.3,-29.645771167635285,-154.80226077775504,-2.95520218472212,-100.47182932322174,-3.02767784939751,-99.74480943552125,-44.99654698769483,-145.74152207129418
-1678859280,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.4,3.0,24.93,22.15,56.4,29.6,1006.3,-29.64557319160142,-154.8015544762181,-2.9554202813429127,-100.47197528301518,-3.027799061790426,-99.74403847971085,-44.99775251268665,-145.74468093138148
-1678859290,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.3,2.8,24.96,22.15,56.4,29.6,1006.3,-29.64552497304706,-154.8039460695576,-2.955375363648579,-100.4716210267996,-3.027915123853267,-99.7443661206952,-44.996762840607474,-145.75863977157698
-1678859300,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.0,2.9,24.93,22.18,56.3,29.6,1006.2,-29.64579039266725,-154.80178233257283,-2.955321047153338,-100.47207971496888,-3.0277986629125038,-99.74436699512114,-44.996427352474285,-145.74429742164645
-1678859310,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.0,3.2,24.94,22.2,56.4,29.6,1006.3,-29.64542314499507,-154.80339918448158,-2.955433619704909,-100.47168280310852,-3.027900992702623,-99.74429159648393,-44.9912592788734,-145.739052848848
-1678859320,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,2.9,24.94,22.21,56.4,29.6,1006.2,-29.64540465943598,-154.80330859821746,-2.9553561463190805,-100.47223132986882,-3.0278727589483934,-99.74323896275658,-44.99271976360376,-145.72705493606784
-1678859330,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.0,2.7,24.96,22.21,56.4,29.5,1006.3,-29.645507779378697,-154.80481106699366,-2.955330198341736,-100.47253512627634,-3.0278695201566954,-99.74298581878551,-44.99106958169798,-145.72936486464877
-1678859340,25.0,25.0,55.0,55.0,0,1300000000,,,3,9.8,2.4,24.96,22.21,56.4,29.6,1006.3,-29.646082729567027,-154.80367192146488,-2.9555907178035397,-100.4722662249968,-3.0277602967959165,-99.74333170639036,-44.99264993163645,-145.7432153621336
-1678859350,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,2.8,24.96,22.21,56.4,29.6,1006.3,-29.645431012052867,-154.80446798861655,-2.955199185095627,-100.4719069334822,-3.027698209061546,-99.74306369038457,-44.99495603823097,-145.73870409159088
-1678859360,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.7,2.6,24.96,22.21,56.4,29.6,1006.3,-29.645873120074864,-154.8051464018106,-2.9556160800589018,-100.47118542235435,-3.0279233359983904,-99.7439281376289,-44.99259362217348,-145.764203204818
-1678859370,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.0,2.9,24.96,22.21,56.4,29.6,1006.2,-29.6456608305375,-154.80558456173267,-2.9556559269498357,-100.47107804673854,-3.0277732064367138,-99.7438690313368,-44.991456642590975,-145.74215307345457
-1678859380,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.6,2.8,24.96,22.21,56.4,29.5,1006.3,-29.644725395433284,-154.80745445446308,-2.9555428966524335,-100.47130959181611,-3.0277640270370454,-99.74308081952957,-44.986758829588716,-145.7633016767494
-1678859390,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.7,3.0,24.94,22.23,56.4,29.5,1006.3,-29.645039029784996,-154.80661873530923,-2.955824230127715,-100.4712132914532,-3.0276777003009196,-99.74295498478001,-44.98533254737859,-145.76595349328838
-1678859400,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.9,2.9,24.94,22.23,56.4,29.5,1006.3,-29.644506173893717,-154.8072037254389,-2.955471291346952,-100.4710698695808,-3.027845952999884,-99.74335660561582,-44.99247920943864,-145.78054590002756
-1678859410,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.2,2.5,24.94,22.23,56.4,29.5,1006.3,-29.644838671345845,-154.80869198511007,-2.9554110762515013,-100.47098694336951,-3.027584652221911,-99.74326985699433,-44.992847423033425,-145.7667753877764
-1678859420,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.8,3.5,24.94,22.24,56.4,29.5,1006.3,-29.645693859928638,-154.80522419246745,-2.9555835295143162,-100.47174180348603,-3.027627937674538,-99.7440617443977,-44.994150572185596,-145.78146612183448
-1678859430,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.4,3.3,24.94,22.24,56.3,29.6,1006.3,-29.645125559708166,-154.80760814292634,-2.9557602230587343,-100.47025490923563,-3.0275532977148134,-99.74359886894439,-44.98891456944433,-145.7972524058424
-1678859440,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.3,3.4,24.96,22.24,56.3,29.5,1006.3,-29.645112159450868,-154.8060335258854,-2.9556507816252324,-100.47058085925799,-3.027659354702405,-99.7431851622435,-44.98469294329368,-145.79781649428594
-1678859450,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.7,3.2,24.94,22.24,56.3,29.5,1006.3,-29.645492997862284,-154.80765363311602,-2.955554034816166,-100.47175382775093,-3.0277074323633157,-99.74349635793905,-44.99277557442542,-145.79918080350902
-1678859460,25.0,25.0,55.0,55.0,0,1300000000,,,3,9.0,2.8,24.93,22.25,56.3,29.5,1006.3,-29.64559333852683,-154.80552016312183,-2.955521038875852,-100.4719909608508,-3.027619543710298,-99.74382020800768,-44.99169579744428,-145.78074263912563
-1678859470,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,3.3,24.96,22.25,56.3,29.5,1006.2,-29.64537648426671,-154.80617709965216,-2.955528291374119,-100.4726099381548,-3.0277621361697085,-99.74309107401649,-44.98832819159584,-145.78438780176882
-1678859480,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.7,3.7,24.94,22.25,56.3,29.5,1006.3,-29.64486343553892,-154.80968305063337,-2.955358479022412,-100.4711137318801,-3.0277343126728677,-99.74293750607137,-44.98936824340188,-145.8036623537145
-1678859490,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.1,3.1,24.97,22.26,56.3,29.5,1006.3,-29.64448947250506,-154.80925440768655,-2.9554769611460063,-100.47102281512072,-3.02771027837001,-99.7419716960547,-44.98738655963871,-145.7970909157621
-1678859500,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.2,3.5,24.96,22.26,56.2,29.4,1006.2,-29.644522246245852,-154.8089287710511,-2.955360000494835,-100.47038476153905,-3.0278096285023133,-99.74243371065444,-44.986825129395086,-145.7802928469601
-1678859510,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.5,2.9,24.96,22.27,56.2,29.5,1006.3,-29.644797625896672,-154.8064449539884,-2.955466405701789,-100.47015182352347,-3.0277756261117386,-99.74378521599915,-44.99142754563982,-145.76264925869077
-1678859520,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.4,3.0,24.93,22.27,56.3,29.4,1006.2,-29.644756803724242,-154.80812285596684,-2.9553424876235597,-100.47106668888156,-3.0276974245126507,-99.74379111292204,-44.984474569083694,-145.78480096188227
-1678859530,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.9,3.1,24.93,22.27,56.3,29.4,1006.3,-29.644972322654468,-154.80814687638141,-2.9554831498323297,-100.47080688577519,-3.0275737788634283,-99.74329588328041,-44.98555722783042,-145.78421092557247
-1678859540,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.4,3.4,24.93,22.28,56.3,29.4,1006.3,-29.644698511163003,-154.8077247397793,-2.9553378633094027,-100.47143256847937,-3.027748241655999,-99.74222675264079,-44.99069917969848,-145.77701737274433
-1678859550,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.3,3.7,24.94,22.28,56.2,29.4,1006.2,-29.645220947339126,-154.80606687801014,-2.9551340171141574,-100.47127802789095,-3.0277623795364828,-99.74203710315273,-44.98802573390958,-145.76874410106913
-1678859560,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.6,3.1,24.94,22.28,56.3,29.4,1006.3,-29.645356159307635,-154.80392898962356,-2.95540049980116,-100.47176714504793,-3.0276740154987913,-99.74260465524247,-44.990804445820984,-145.77217988397675
-1678859570,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.1,2.8,24.93,22.28,56.3,29.4,1006.3,-29.644705630900113,-154.80432614465767,-2.955455034230585,-100.47161074002177,-3.0276878492846935,-99.7428327355873,-44.99005658190262,-145.7757034633169
-1678859580,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.0,3.3,24.96,22.28,56.3,29.4,1006.3,-29.644975158006694,-154.80610260031344,-2.9553778333060032,-100.47134830660468,-3.027674667758713,-99.74300622531597,-44.990537202176384,-145.7850610736954
-1678859590,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.1,3.0,24.96,22.29,56.3,29.4,1006.3,-29.644935892319847,-154.80538287599722,-2.95546236687579,-100.47151344155557,-3.0276571294165375,-99.74260980591741,-44.991181914684766,-145.7880812934555
-1678859600,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.4,3.1,24.94,22.29,56.3,29.4,1006.3,-29.644855105344273,-154.80586921886427,-2.9555064680864422,-100.47150850211227,-3.0276607224306193,-99.74254118773474,-44.989049908032754,-145.7867623496594
-1678859610,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,3.4,24.96,22.29,56.3,29.4,1006.3,-29.64502109037072,-154.80334933347802,-2.955473802844156,-100.47092261313105,-3.02777794020849,-99.74312732123106,-44.99550656340672,-145.77901164747942
-1678859620,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.7,2.9,24.96,22.29,56.3,29.4,1006.3,-29.645156269701406,-154.8043610283169,-2.9552658182200977,-100.47107872075624,-3.0278763249862606,-99.74280437622423,-44.994916333138235,-145.76127143879353
-1678859630,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.3,3.2,24.96,22.29,56.3,29.4,1006.3,-29.64545326194088,-154.80443882891487,-2.955434271340315,-100.47120394105703,-3.0278979031247855,-99.74263550650798,-44.99224842005297,-145.74471993076196
-1678859640,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.3,3.0,24.96,22.3,56.3,29.4,1006.3,-29.645341480183724,-154.80454127486092,-2.955310113342979,-100.47124470771158,-3.0278642048962663,-99.74206541985448,-44.9951719886426,-145.7519415834909
-1678859650,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.4,2.9,24.96,22.31,56.3,29.4,1006.3,-29.646209531978403,-154.80162896217323,-2.955514738437013,-100.47089987595153,-3.02784128408864,-99.74217956717919,-44.99413961392843,-145.76133892988761
-1678859660,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.1,2.9,24.96,22.31,56.4,29.4,1006.3,-29.64571241882508,-154.80154133888186,-2.9554188198809337,-100.47089878828632,-3.027747252628839,-99.74132415478924,-44.993432356126704,-145.77058861589208
-1678859670,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.1,2.6,24.97,22.32,56.3,29.4,1006.3,-29.646076233139766,-154.80158232254632,-2.9552805971249807,-100.47060752982212,-3.027747926288453,-99.74198570782139,-44.99482693345787,-145.77457416989202
-1678859680,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.5,2.5,24.97,22.33,56.3,29.4,1006.3,-29.646070010285385,-154.80023837371647,-2.9553970260897238,-100.47066408608076,-3.02774188469676,-99.74214126715923,-44.99027839617657,-145.77340540873362
-1678859690,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.5,2.4,24.96,22.33,56.3,29.4,1006.4,-29.645923336143444,-154.80089488905182,-2.95557207822345,-100.47112166363165,-3.0277405073429744,-99.74236982619469,-44.9959323969179,-145.77708418021558
-1678859700,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.6,3.1,24.97,22.36,56.3,29.3,1006.3,-29.645823984318604,-154.80059206144972,-2.9554348499015006,-100.47062929804596,-3.0276121731280075,-99.74206915989944,-44.993269339176706,-145.7596451310871
-1678859710,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.1,3.3,24.97,22.36,56.3,29.3,1006.3,-29.64601048267736,-154.80163957507605,-2.955428316062443,-100.47037666881609,-3.0275832248134065,-99.74139126406527,-44.99019289549976,-145.7615567554961
-1678859720,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.2,3.4,24.97,22.36,56.3,29.3,1006.3,-29.64594665955197,-154.80328254322566,-2.9552940871372515,-100.46960351310338,-3.027716983669677,-99.74271898669069,-44.99457333809954,-145.768538581395
-1678859730,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.2,3.4,24.97,22.38,56.3,29.3,1006.3,-29.64628628005446,-154.80399301293488,-2.955339471099057,-100.46958740505143,-3.0278504375567286,-99.74217741214648,-44.99146227111719,-145.76652009936922
-1678859740,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.4,3.1,24.97,22.38,56.3,29.3,1006.3,-29.645870503138067,-154.80305001621502,-2.9552818879837317,-100.4695340820043,-3.027677178671832,-99.7424494064366,-44.998081961905655,-145.7605581488035
-1678859750,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.6,3.5,24.97,22.4,56.3,29.3,1006.3,-29.646005843303016,-154.79992241623023,-2.955409371621328,-100.46954778227649,-3.0277419861368426,-99.74305028768808,-44.99573264328306,-145.76185866211043
-1678859760,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.2,3.6,24.96,22.43,56.3,29.3,1006.4,-29.645545962582528,-154.8067545479116,-2.955543513866049,-100.46905119976086,-3.0276235519084227,-99.74270756196591,-44.98648779170389,-145.77436488539107
-1678859770,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.9,3.3,24.97,22.42,56.3,29.3,1006.3,-29.64584525140635,-154.80448995843798,-2.9556058787538344,-100.46900220272143,-3.027621355057403,-99.74246245477353,-44.99301300874792,-145.77046818984792
-1678859780,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.4,3.2,24.98,22.43,56.3,29.3,1006.3,-29.646114223871038,-154.80207034708317,-2.9554685678900756,-100.46953437423028,-3.027856182042219,-99.74224238350776,-44.99411712859999,-145.7597112079347
-1678859790,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.5,2.4,24.98,22.43,56.4,29.3,1006.3,-29.645879019886685,-154.80299464289791,-2.9554279722506376,-100.46914647018583,-3.027645573022994,-99.74218963787416,-44.9918418767285,-145.7600248516361
-1678859800,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.0,2.3,24.98,22.43,56.4,29.2,1006.4,-29.645908577961755,-154.80349143827854,-2.9553873840104714,-100.46909556110943,-3.02766237014878,-99.74361624799019,-44.9938303996128,-145.75926264732837
-1678859810,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.3,2.5,24.97,22.45,56.4,29.3,1006.3,-29.646081482842533,-154.80205724063956,-2.9552670314883187,-100.46893316785093,-3.0277575627936537,-99.7439208392612,-44.99237294640692,-145.75637844617472
-1678859820,25.0,25.0,55.0,55.0,0,1300000000,,,3,4.6,3.0,24.97,22.46,56.4,29.2,1006.3,-29.645698132466443,-154.8028210838889,-2.9551340691183494,-100.4693925665974,-3.02770732080635,-99.74349324430632,-44.997304762963864,-145.76922151180506
-1678859830,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,3.0,24.97,22.45,56.4,29.2,1006.3,-29.646151890011126,-154.80210656151039,-2.9553857671177375,-100.4693933756029,-3.0276135922996765,-99.74334371853449,-44.99901570895787,-145.76157091029697
-1678859840,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.8,3.3,24.97,22.45,56.4,29.2,1006.4,-29.64567589106462,-154.80151719866237,-2.9554034767093946,-100.46906723072348,-3.027703883471391,-99.74357937749465,-44.99615857240843,-145.75985158868463
-1678859850,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.6,3.0,24.97,22.44,56.4,29.2,1006.4,-29.64574455354136,-154.80409347941423,-2.955234205209945,-100.4693113394218,-3.027634838257885,-99.74304006939089,-44.99901356953225,-145.78382411442763
-1678859860,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.4,3.0,24.97,22.45,56.4,29.2,1006.4,-29.645662800299327,-154.80561509512856,-2.9555544678606576,-100.46868773610842,-3.0276560670524226,-99.7435027771386,-44.99578796733046,-145.78236587818617
-1678859870,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.3,3.0,24.97,22.44,56.3,29.2,1006.3,-29.645954606726693,-154.8016974387056,-2.955330791008583,-100.4691585198928,-3.027679815596125,-99.74335463624497,-44.998200857008854,-145.7662691400785
-1678859880,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.4,3.0,24.96,22.44,56.3,29.2,1006.3,-29.645325493904508,-154.8049125835793,-2.9554407733526933,-100.46803255449869,-3.027748400783878,-99.74321758638403,-44.99713387576344,-145.75848347332246
-1678859890,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.0,2.8,24.97,22.44,56.4,29.3,1006.3,-29.645849618907146,-154.79990673478463,-2.9554571300479875,-100.46842305413035,-3.0277955440375743,-99.74325468618753,-44.99688380885832,-145.7799692527397
-1678859900,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.5,3.3,24.97,22.45,56.4,29.2,1006.3,-29.645919334969697,-154.80213553854443,-2.955430757543673,-100.46895473411013,-3.0276339628151527,-99.74274073136004,-44.997471633103565,-145.7602006505181
-1678859910,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.4,3.2,24.97,22.47,56.4,29.2,1006.4,-29.645555572184442,-154.80552006300266,-2.955391623791501,-100.46921265965585,-3.027652475354941,-99.74259459865922,-44.9948950065728,-145.76098164132205
-1678859920,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.5,3.1,24.96,22.49,56.3,29.2,1006.3,-29.645551881387565,-154.80461942055905,-2.955345097159622,-100.46927497564026,-3.0277782659801056,-99.74248965793088,-44.99553790225127,-145.76589908947204
-1678859930,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.6,3.1,24.97,22.49,56.3,29.2,1006.4,-29.64503369237729,-154.8062139432695,-2.95517797946243,-100.46939348253846,-3.0278128345218063,-99.74235036665333,-44.994783596547265,-145.76992080709343
-1678859940,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.0,3.3,24.97,22.48,56.3,29.2,1006.4,-29.645498079266666,-154.80567716495753,-2.9554300785571423,-100.46820361242239,-3.0276824869405923,-99.74296336347152,-44.99417578674298,-145.77977444892335
-1678859950,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.5,2.9,24.97,22.48,56.3,29.2,1006.5,-29.64553204178642,-154.80601757833227,-2.9552341216744575,-100.46776605904394,-3.0277837295259244,-99.74345853516122,-44.99099988615704,-145.7775287255733
-1678859960,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.3,2.9,24.97,22.47,56.3,29.2,1006.4,-29.644998094771683,-154.80959682646503,-2.9554106497075496,-100.46843780401855,-3.027777700575898,-99.74344864004104,-44.99362847401439,-145.7744371595724
-1678859970,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.8,3.0,24.97,22.51,56.4,29.2,1006.4,-29.644707331625334,-154.8076443966602,-2.9553556936852483,-100.46814831026407,-3.0279005616242265,-99.74291048334378,-44.99048373105333,-145.776086118272
-1678859980,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.9,2.4,24.97,22.5,56.4,29.1,1006.4,-29.645285290944116,-154.80604685454819,-2.9553838321099386,-100.468084144817,-3.0278098092354577,-99.74371740172732,-44.991517183624026,-145.78450515871458
-1678859990,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.9,2.4,24.97,22.48,56.4,29.2,1006.4,-29.64490912369502,-154.80621386429024,-2.9554153513555588,-100.46715261129562,-3.0280304660390738,-99.74247269400396,-44.98934826059958,-145.78461051601195
-1678860000,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.4,2.9,24.97,22.46,56.4,29.2,1006.4,-29.64517089232743,-154.80553908422814,-2.955475564280976,-100.46870410857777,-3.027988964170571,-99.74260834477306,-44.986476929097996,-145.77201501787417
-1678860010,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.9,2.4,24.97,22.45,56.4,29.2,1006.4,-29.645170804257933,-154.80627681535586,-2.95540487169772,-100.46898560007106,-3.028026921178247,-99.74260399091472,-44.99217409772632,-145.75704564946537
-1678860020,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.1,2.6,24.98,22.4,56.3,29.3,1006.5,-29.644985031513713,-154.8076948362863,-2.9553397311251883,-100.46915897481283,-3.0278996390033566,-99.74225963334716,-44.9882346265771,-145.77234724746393
-1678860030,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.9,2.8,24.97,22.38,56.3,29.3,1006.5,-29.645504422131022,-154.8058573331993,-2.955313784395826,-100.46997181882143,-3.0278838653609097,-99.74298864418553,-44.98998782629493,-145.77148754814917
-1678860040,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.1,2.8,24.96,22.35,56.3,29.3,1006.4,-29.64515719023435,-154.80560076877381,-2.9555820489623175,-100.46999105141153,-3.027926012379591,-99.74335781923317,-44.9910313970291,-145.79051847000162
-1678860050,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.4,3.4,24.96,22.34,56.3,29.4,1006.5,-29.646365565274102,-154.8010605438256,-2.9554279112136257,-100.46975747484629,-3.0275911337725243,-99.74379283672386,-44.9968609428186,-145.7731121409475
-1678860060,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.3,3.1,24.96,22.32,56.3,29.4,1006.5,-29.6459556700289,-154.80394337191575,-2.9552519282074834,-100.47002828313671,-3.027744405627297,-99.74370014768616,-45.00237966495827,-145.77995066109216
-1678860070,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.3,3.6,24.97,22.3,56.3,29.4,1006.5,-29.64638861262822,-154.80295358591243,-2.955429866028892,-100.46979796214572,-3.0275538311707795,-99.74399634465841,-45.001483783298646,-145.78572310066858
-1678860080,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.6,3.4,24.96,22.24,56.3,29.5,1006.5,-29.646516776960432,-154.80237851961044,-2.9553783125065265,-100.46977329381784,-3.0278503412154563,-99.74258846367489,-44.99805612345351,-145.7988229820693
-1678860090,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.4,2.5,24.97,22.19,56.3,29.6,1006.5,-29.646130568852342,-154.80352711305807,-2.9555222482245957,-100.46965280857403,-3.0277903226222143,-99.74307706718277,-44.99841569240078,-145.7923176120919
-1678860100,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.0,2.5,24.97,22.14,56.4,29.7,1006.6,-29.64602745643568,-154.80410876125862,-2.9554987107532718,-100.46965653002965,-3.0277827471341663,-99.74225657042354,-44.996364459479096,-145.77716481965453
-1678860110,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.3,2.0,24.97,22.13,56.3,29.7,1006.5,-29.646386135500734,-154.8030345568367,-2.9553709254575935,-100.46997715627333,-3.0278054012943545,-99.74266289333127,-44.99663725215855,-145.78442671543738
-1678860120,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.8,3.1,24.97,22.1,56.3,29.7,1006.6,-29.64581833276398,-154.80170493970473,-2.9553639339687443,-100.46970433304396,-3.027801613586181,-99.74269618396075,-44.997630883531855,-145.77067875934284
-1678860130,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.6,3.0,24.97,22.08,56.3,29.7,1006.5,-29.645577096953136,-154.80334199218888,-2.955392725841312,-100.47013492221825,-3.0277463155060853,-99.74176175770889,-44.99568859789649,-145.7867471798665
-1678860140,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.7,2.7,24.96,22.06,56.3,29.8,1006.6,-29.645365140621482,-154.80633847313268,-2.9554731526437648,-100.46910362276398,-3.0279082508060102,-99.74281902504104,-44.99918334068616,-145.7723468777795
-1678860150,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,2.7,24.96,22.08,56.3,29.8,1006.5,-29.645546075489897,-154.8036546244198,-2.955430418218362,-100.46974559584582,-3.0278503491247575,-99.74272962065619,-44.997372854661464,-145.78144385942667
-1678860160,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.5,2.9,24.96,22.08,56.4,29.8,1006.6,-29.646393137450037,-154.8015148986838,-2.955344007487901,-100.47016832216922,-3.0278954011961523,-99.74271741176614,-44.997617183544484,-145.77268604018417
-1678860170,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.3,2.5,24.96,22.05,56.4,29.8,1006.5,-29.646087018704893,-154.79993202814484,-2.9554405781335733,-100.47008815508617,-3.027852762368202,-99.74332729323929,-44.99932429815657,-145.76923112706044
-1678860180,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.1,2.9,24.96,22.04,56.4,29.8,1006.5,-29.645708556963967,-154.802099872101,-2.9553625684251266,-100.47091946031884,-3.02795713387677,-99.7435711018413,-45.00123084042652,-145.76545322569373
-1678860190,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.6,2.3,24.96,22.01,56.4,29.8,1006.6,-29.64584734513371,-154.8036694773777,-2.9553933669979116,-100.47071778057666,-3.027970407829234,-99.74292211359165,-45.00366928348282,-145.7597714979359
-1678860200,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.4,2.8,24.96,21.99,56.4,29.9,1006.6,-29.64562240470653,-154.80357370576323,-2.955527178521388,-100.47066325543044,-3.0278179927624995,-99.74270214322067,-45.00098275629243,-145.7546459401659
-1678860210,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.3,2.9,24.97,21.97,56.5,29.9,1006.6,-29.645962079741246,-154.80112734393265,-2.9555189914652455,-100.47049986210412,-3.027825287098898,-99.7429707570694,-45.00328883134044,-145.76052337379474
-1678860220,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.1,2.9,25.0,21.97,56.4,29.9,1006.6,-29.646336372518117,-154.79897277603334,-2.9556859638717805,-100.47024079163374,-3.0278230525850898,-99.7429924501216,-45.00531239389144,-145.78219676664673
-1678860230,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.7,2.9,24.98,21.97,56.3,30.0,1006.6,-29.6462861476665,-154.80078945669197,-2.955432250117283,-100.47052422900336,-3.0276688634300046,-99.7439429667752,-45.00200275527754,-145.75666491694946
-1678860240,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.0,3.2,24.97,21.95,56.3,30.0,1006.6,-29.64688469659887,-154.8001814495515,-2.9554274563821408,-100.47079798906017,-3.0276373636347116,-99.7446245209987,-45.00485555350066,-145.73622654851155
-1678860250,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,2.8,24.96,21.9,56.3,30.0,1006.6,-29.64655536858431,-154.7991661023042,-2.9554248117295083,-100.47079384466034,-3.0276797537286786,-99.74449985309084,-45.00511942639051,-145.7446401698791
-1678860260,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,3.0,24.97,21.91,56.2,30.0,1006.5,-29.64705066068315,-154.7998540668045,-2.9555249033224795,-100.47173637562334,-3.0277368438278254,-99.74417591979702,-45.0027802597944,-145.75770359526416
-1678860270,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.7,3.3,24.97,21.9,56.3,30.1,1006.6,-29.64665548334225,-154.7992684498549,-2.9553569317364254,-100.47172957097455,-3.0276337937678006,-99.7443489938844,-45.00298225782142,-145.75447724437092
-1678860280,25.0,25.0,55.0,55.0,0,1300000000,,,3,9.5,2.8,24.97,21.91,56.2,30.0,1006.6,-29.646196735751925,-154.80143302524857,-2.955339667316985,-100.47129489050923,-3.0276907504904886,-99.74403670311617,-45.00390364829325,-145.74620512792936
-1678860290,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.5,3.3,24.94,21.89,56.2,30.1,1006.5,-29.64571039492793,-154.80140651420916,-2.95518887759463,-100.47104308189003,-3.0277611211089877,-99.7433518641986,-45.00286043669768,-145.75036963985718
-1678860300,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.4,2.8,24.97,21.9,56.2,30.1,1006.6,-29.646749149989844,-154.80099467062885,-2.955598070273858,-100.47127066709241,-3.027756658120337,-99.74389656260054,-45.00484707771317,-145.75211816982872
-1678860310,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.0,3.2,24.96,21.91,56.2,30.1,1006.6,-29.647026223301815,-154.79837765298734,-2.9552925636925016,-100.47109405915634,-3.02778555037105,-99.74468855562539,-45.00250052781741,-145.72936745963557
-1678860320,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,3.4,24.96,21.93,56.2,30.0,1006.6,-29.647042818805485,-154.79727831221416,-2.9553276174843335,-100.47152074558525,-3.0275982474030427,-99.7448423193236,-45.00574964821097,-145.73833861961145
-1678860330,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.0,2.8,24.97,21.94,56.2,30.0,1006.6,-29.64670230034443,-154.8005944164443,-2.9554090966451745,-100.47153982483907,-3.0278204505413586,-99.74360186736637,-45.0025686713588,-145.75103668255832
-1678860340,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.1,3.2,24.96,21.96,56.2,30.0,1006.6,-29.647308927663904,-154.797870118396,-2.9554875096520106,-100.4718325100134,-3.027629224453237,-99.7445503161518,-45.00801232767899,-145.7320789298619
-1678860350,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.3,3.6,24.96,21.97,56.2,30.0,1006.7,-29.646890654982315,-154.79816591321605,-2.9553741333518584,-100.4715082774387,-3.02781678699381,-99.7442843259219,-45.01122969058553,-145.73075690409792
-1678860360,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.9,2.6,24.96,21.98,56.2,30.0,1006.6,-29.64679313114498,-154.80253210155246,-2.9555232303645536,-100.47177085701156,-3.027868806633687,-99.74411005525315,-45.0040938476605,-145.7379043414151
-1678860370,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.7,2.8,24.93,21.99,56.2,29.9,1006.6,-29.646735821333067,-154.80211093551088,-2.9553833510966756,-100.4727101788129,-3.027832033639627,-99.74447045811569,-45.01030870094564,-145.7173258676397
-1678860380,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,3.3,24.93,21.98,56.3,29.9,1006.7,-29.646696707030884,-154.79909182904154,-2.9554327601614445,-100.47231122371949,-3.0279329145315788,-99.74453108746116,-45.0073074592751,-145.7356502778322
-1678860390,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.2,3.2,24.94,21.99,56.3,29.9,1006.6,-29.646946390059234,-154.79974849451298,-2.9554845565483188,-100.4717064435432,-3.0278038406879464,-99.74390308252568,-45.005248277674276,-145.75224842176826
-1678860400,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.7,3.2,24.96,22.0,56.3,29.9,1006.6,-29.64676815743417,-154.80013723285174,-2.9555352881545356,-100.47114344529703,-3.0279633237967247,-99.74412968015739,-45.00577348129627,-145.7462880270265
-1678860410,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.3,2.9,24.97,22.01,56.3,29.8,1006.7,-29.646257852015687,-154.8013233630953,-2.9553366092695317,-100.4708429749822,-3.0278498813665826,-99.74428146449611,-45.004243048071366,-145.76058127063683
-1678860420,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,2.6,24.94,22.02,56.3,29.8,1006.6,-29.646618536068807,-154.7997793895844,-2.955678923924035,-100.47223193452417,-3.027728166895376,-99.7443409216999,-45.0041496974065,-145.77119532810863
-1678860430,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.7,2.4,24.96,22.03,56.2,29.8,1006.7,-29.646978634150393,-154.80013125407908,-2.955769763803953,-100.47219727587046,-3.0277839631630603,-99.74359829842396,-45.00461236864068,-145.75921210379565
-1678860440,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.1,3.1,24.97,22.04,56.2,29.8,1006.7,-29.646661943207167,-154.8022085758112,-2.955442529780882,-100.47285212104967,-3.027726234337112,-99.74423995574206,-45.002717665366646,-145.7591130612561
-1678860450,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.8,2.8,24.96,22.05,56.2,29.8,1006.8,-29.646256454879666,-154.80349365261063,-2.9553759769792003,-100.47297144511471,-3.0277329753946396,-99.7447214610253,-45.00050240603767,-145.75995302833397
-1678860460,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.7,3.7,24.94,22.05,56.2,29.8,1006.7,-29.64616968498401,-154.8045696824377,-2.9553123541758164,-100.47280703314765,-3.0278510607400637,-99.74439283648117,-45.00072070727868,-145.7655702652359
-1678860470,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.1,3.8,24.96,22.06,56.2,29.8,1006.7,-29.646017927997043,-154.80524718289624,-2.9552118647098173,-100.47279803523969,-3.0277894651808634,-99.74446590219505,-44.99922522231771,-145.75374414668332
-1678860480,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.6,3.3,24.97,22.08,56.1,29.7,1006.7,-29.645530039498112,-154.8043959173474,-2.9553516459663616,-100.47210050464234,-3.027884072180875,-99.74352335418797,-44.993748002890484,-145.77059450845036
-1678860490,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.0,3.5,24.98,22.09,56.1,29.7,1006.7,-29.646133300136583,-154.80377233120146,-2.9553784799129588,-100.47163239636458,-3.0278720934597514,-99.74304605227378,-44.99900459641047,-145.76977369473502
-1678860500,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.9,3.2,24.97,22.1,56.1,29.7,1006.7,-29.6459937772254,-154.8059053713243,-2.9555302039553983,-100.47208084174495,-3.027945974019749,-99.74343140069521,-44.99957980285884,-145.77013220774256
-1678860510,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.8,3.3,24.97,22.1,56.1,29.7,1006.7,-29.646111143808934,-154.80571753890453,-2.955541435350722,-100.47242558733079,-3.027797989614144,-99.74298981449476,-44.998686519486675,-145.77055412397567
-1678860520,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.5,3.3,24.96,22.11,56.2,29.7,1006.7,-29.645507302302754,-154.80549734105176,-2.9554541482197374,-100.47173089822408,-3.0278803903494915,-99.7429476114562,-44.99609931960194,-145.76108553789348
-1678860530,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,2.9,24.96,22.12,56.2,29.7,1006.7,-29.64576548102949,-154.8062326536846,-2.9554343002771715,-100.47254348270037,-3.027965185230457,-99.7435127850906,-44.995450562057016,-145.75849717640844
-1678860540,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.1,3.4,24.96,22.13,56.2,29.7,1006.7,-29.645192627165848,-154.80654455142655,-2.955226684717096,-100.47256140912188,-3.0278778328184623,-99.74273402718423,-44.99773418777785,-145.7602615427425
-1678860550,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.2,3.3,24.94,22.14,56.2,29.7,1006.8,-29.64544443113396,-154.805797769505,-2.955463106656517,-100.47172064880144,-3.0279265855831907,-99.74212263340996,-44.99351003854318,-145.7758403545649
-1678860560,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.9,3.7,24.97,22.14,56.2,29.7,1006.7,-29.645493041565878,-154.8034829436612,-2.9554037334198044,-100.47191259417504,-3.027766062705102,-99.74197955132192,-44.99477907153147,-145.7621540068404
-1678860570,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.3,3.4,24.96,22.15,56.2,29.7,1006.7,-29.64569587114285,-154.80409718076987,-2.955339988792514,-100.47253175639575,-3.0278076560137244,-99.74198662287584,-44.99303718927999,-145.7809416986155
-1678860580,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.2,3.7,24.97,22.15,56.2,29.7,1006.7,-29.64604919656191,-154.80253500075608,-2.9554888807525903,-100.4721722900123,-3.0277749164530547,-99.74241388322906,-44.99748150312355,-145.76554878110306
-1678860590,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.0,3.1,24.97,22.16,56.2,29.6,1006.7,-29.645339562456194,-154.80470390414777,-2.955479458609587,-100.47215371407447,-3.0278719676386494,-99.74212117439602,-44.99406418956675,-145.7775456326503
-1678860600,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.7,3.0,24.97,22.16,56.2,29.6,1006.7,-29.64470286596938,-154.80481122237413,-2.95548201830142,-100.47265215453798,-3.027756427684927,-99.74202966507775,-44.99316862686344,-145.76572621811133
-1678860610,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.0,3.3,24.97,22.17,56.1,29.6,1006.7,-29.644859997315685,-154.80415072528436,-2.9555127893364026,-100.47347188304505,-3.0279644867418822,-99.74225171409356,-44.996196721578954,-145.76298054012145
-1678860620,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.0,3.5,24.96,22.17,56.1,29.6,1006.6,-29.64512716433302,-154.80175629632413,-2.9554912548714487,-100.47248845723755,-3.0280197247259197,-99.74252769312955,-44.99389582612417,-145.76193855941395
-1678860630,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.3,3.2,24.94,22.18,56.2,29.6,1006.7,-29.64562486785016,-154.80235251989208,-2.9555070027189596,-100.47259703628146,-3.027908335322209,-99.74254651419022,-44.99955044630408,-145.76288868038128
-1678860640,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.1,3.3,24.97,22.19,56.3,29.6,1006.8,-29.645553279655594,-154.80305086422095,-2.955481335594245,-100.47310129524121,-3.0279517130856086,-99.74260329393141,-45.00062841470081,-145.74819650234534
-1678860650,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,2.7,24.97,22.19,56.3,29.6,1006.7,-29.64555815419939,-154.8039115273991,-2.9556464044439243,-100.47318745368223,-3.027804041349131,-99.7423318947091,-44.992831348768334,-145.7729120826507
-1678860660,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.6,3.2,24.97,22.19,56.3,29.6,1006.7,-29.64496096929954,-154.80638657719987,-2.9555218876843665,-100.47310815162727,-3.027811097672346,-99.74174213674561,-44.99747445380492,-145.77375274502387
-1678860670,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.9,2.6,24.97,22.19,56.3,29.6,1006.7,-29.645588618344775,-154.80392140356355,-2.9553167481799973,-100.47240675998988,-3.0279341750993853,-99.74306229719899,-44.99681992945378,-145.77083019989436
-1678860680,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.7,2.4,24.97,22.2,56.4,29.6,1006.7,-29.64518601385443,-154.80474050748305,-2.955296729871,-100.4724342741656,-3.027951184370918,-99.74358885843948,-45.00111460839365,-145.76526519632736
-1678860690,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.8,2.9,24.97,22.2,56.4,29.6,1006.7,-29.644940279065487,-154.80708338068717,-2.955314262708908,-100.47318691514363,-3.0279189064448215,-99.74330162109167,-45.00017289488498,-145.75148543156251
-1678860700,25.0,25.0,55.0,55.0,0,1300000000,,,3,9.0,2.6,24.97,22.21,56.4,29.6,1006.7,-29.645157803787427,-154.8062892658893,-2.9554282987971088,-100.47283579435557,-3.028096384297932,-99.74368709984073,-45.000483990706144,-145.76678242085737
-1678860710,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.6,2.5,24.97,22.24,56.4,29.6,1006.7,-29.64501485654968,-154.80577630542444,-2.9555023453850824,-100.4727943018307,-3.0281052483049935,-99.74336207694542,-45.00169510034151,-145.7594203798143
-1678860720,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.9,3.0,24.97,22.24,56.4,29.6,1006.7,-29.645139783445174,-154.80632815556842,-2.9554456103278475,-100.47265631683365,-3.0279825557807123,-99.74324505449803,-44.99487141839623,-145.78740145643727
-1678860730,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.8,2.9,24.97,22.24,56.4,29.6,1006.8,-29.644904208901437,-154.8047497878063,-2.9556706709637326,-100.47317472220399,-3.0278818985889346,-99.74353394694212,-44.99429062414944,-145.79390142024167
-1678860740,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.7,2.7,24.96,22.25,56.4,29.5,1006.8,-29.645419345947623,-154.80264709175145,-2.9556446378870116,-100.47310554538986,-3.027992812773747,-99.7440161862465,-44.99807782904615,-145.77098060414255
-1678860750,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.4,3.0,24.96,22.25,56.4,29.5,1006.8,-29.645333838391792,-154.80595523462478,-2.9555445301495284,-100.47290426286021,-3.028019125536654,-99.74465284543695,-44.99442363416368,-145.7683442521307
-1678860760,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,2.8,24.96,22.26,56.4,29.5,1006.7,-29.645204849876823,-154.80480194754122,-2.955387976565396,-100.47254501138582,-3.0277782210765416,-99.74494840014252,-45.00045454743585,-145.78438225103375
-1678860770,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.1,3.5,24.93,22.27,56.3,29.5,1006.8,-29.64526159646994,-154.80524027504833,-2.9553438758455215,-100.47304003574513,-3.0279074796325993,-99.7443453085778,-44.99961652486605,-145.77175906799118
-1678860780,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.2,3.0,24.94,22.29,56.4,29.5,1006.8,-29.645542125638187,-154.80353474774645,-2.9553024061071587,-100.47290309824076,-3.0280900783861653,-99.74462696752126,-45.001301409335554,-145.76278124630255
-1678860790,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.2,3.3,24.96,22.3,56.3,29.4,1006.8,-29.645365990006244,-154.8045204985914,-2.9554164954541924,-100.47232578127449,-3.027995520812418,-99.74511540175064,-45.00359716954161,-145.7661614462221
-1678860800,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.3,3.2,24.97,22.3,56.3,29.4,1006.8,-29.64538630712136,-154.80279374074505,-2.9553833748705394,-100.47307680020121,-3.027934729151092,-99.74509366883298,-45.00446568322883,-145.7694453833089
-1678860810,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.5,3.0,24.96,22.3,56.3,29.4,1006.8,-29.64583587375461,-154.80176723759374,-2.9555287656745355,-100.4729372857496,-3.027996732995652,-99.74469261127409,-45.00054509721163,-145.77732072144556
-1678860820,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,3.3,24.96,22.31,56.3,29.4,1006.7,-29.645958636062236,-154.8007917630857,-2.9554294587061913,-100.47302507834398,-3.027998129844856,-99.74442684061444,-45.00133639459495,-145.76938611907147
-1678860830,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.1,3.0,24.97,22.31,56.3,29.4,1006.7,-29.645833561552095,-154.80317477078634,-2.955582962274916,-100.47288843014076,-3.02784610279476,-99.74401340000524,-44.999646657596095,-145.79206045677654
-1678860840,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.3,2.7,24.96,22.31,56.4,29.4,1006.7,-29.64550038027938,-154.80420913606827,-2.9555477667081838,-100.47414637511783,-3.0279109154621757,-99.74356715612264,-45.00354344023268,-145.7922617491037
-1678860850,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,2.9,24.96,22.31,56.4,29.4,1006.8,-29.645753474825945,-154.80232356933016,-2.955498268848866,-100.47365032929287,-3.028077385284954,-99.74444643105153,-45.00186546770608,-145.7672571165553
-1678860860,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.7,2.5,24.96,22.32,56.4,29.4,1006.8,-29.645499843816594,-154.8025405288005,-2.9553337197634604,-100.47415459988942,-3.028078974541769,-99.74473462152942,-45.00128553095003,-145.76868164609567
-1678860870,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.0,3.2,24.97,22.32,56.4,29.4,1006.8,-29.645711058991544,-154.80313701828038,-2.9555402662272057,-100.47416197239032,-3.0279084705893693,-99.74444844204301,-45.00079653756657,-145.78196246606709
-1678860880,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.3,3.3,24.96,22.31,56.4,29.4,1006.7,-29.64537796582739,-154.80417394163717,-2.9552766845983074,-100.47391410928519,-3.0280084896654818,-99.74441287058448,-45.00014294177398,-145.75422520030415
-1678860890,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.5,2.9,24.97,22.31,56.4,29.4,1006.8,-29.645613462647123,-154.80293273817125,-2.9555190838243512,-100.47341886129179,-3.0279542470537684,-99.74469914847649,-44.99630526459035,-145.77422417905717
-1678860900,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.1,2.4,24.97,22.31,56.4,29.4,1006.9,-29.64502085883707,-154.80545228676522,-2.955325792355159,-100.47414102515377,-3.0277442773275043,-99.74461289830151,-44.99793007604106,-145.77628423429675
-1678860910,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.0,3.1,24.96,22.31,56.4,29.4,1006.9,-29.64459318592333,-154.80677941155253,-2.9553565515819464,-100.47393716104575,-3.027920472631698,-99.74554451946156,-44.994173689232895,-145.79686789705883
-1678860920,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.5,2.5,24.96,22.31,56.4,29.4,1006.9,-29.64437439845558,-154.80624224103155,-2.9552262592696144,-100.47427836208797,-3.027890486073934,-99.74565189915455,-44.99988931472048,-145.77087968387954
-1678860930,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.9,3.1,24.93,22.31,56.4,29.4,1006.9,-29.64471936520164,-154.80570258526683,-2.955392592123161,-100.47420153742793,-3.0278457247531074,-99.74575477079563,-45.00239647461277,-145.7648467919634
-1678860940,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.3,3.0,24.94,22.32,56.4,29.4,1006.8,-29.645167217333114,-154.80353087360643,-2.955290727721245,-100.47424437115572,-3.027905748923348,-99.74529248373646,-44.99865423744818,-145.7678393442947
-1678860950,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.9,3.3,24.93,22.33,56.4,29.4,1006.8,-29.645050958684834,-154.80415233995035,-2.9554352994711115,-100.47373569446779,-3.0277736418667884,-99.74551969550951,-44.99912177047307,-145.78344629361067
-1678860960,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.1,2.8,24.93,22.33,56.3,29.4,1006.7,-29.64455515683399,-154.8057361380269,-2.9552776084952095,-100.4736721408634,-3.027839448708593,-99.74572723644884,-44.99550717154378,-145.7798286956618
-1678860970,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.2,3.0,24.94,22.33,56.3,29.4,1006.8,-29.64478808929144,-154.8052166759777,-2.9553001351122683,-100.47330922599029,-3.027882747179757,-99.74658657918481,-44.99792205072183,-145.78741274694818
-1678860980,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.9,3.5,24.94,22.34,56.3,29.3,1006.8,-29.644783521919503,-154.80421185473367,-2.955357291211267,-100.47382087927765,-3.027949682079999,-99.74665722170056,-44.99978417974126,-145.79566105940262
-1678860990,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.3,3.6,24.93,22.34,56.3,29.3,1006.8,-29.644974029609333,-154.80430451996534,-2.955473943703116,-100.47405689137192,-3.027971695805557,-99.7467518356561,-44.99725176003185,-145.7690465780087
-1678861000,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.1,3.2,24.96,22.35,56.3,29.3,1006.8,-29.64477015763514,-154.8026629674452,-2.9553949210973878,-100.4741107009476,-3.0277985072811555,-99.74695770652309,-44.996617809568626,-145.75083423163946
-1678861010,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.5,3.2,24.94,22.34,56.3,29.3,1006.8,-29.644163159766237,-154.8042924611583,-2.9554088427261767,-100.47430731277557,-3.027924439830783,-99.7470964450489,-44.99821573049079,-145.77793787669088
-1678861020,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.3,3.0,24.94,22.35,56.2,29.3,1006.8,-29.644671735748474,-154.80587096909318,-2.955445324137224,-100.47431900083814,-3.027854784800464,-99.74654947845698,-44.993057470888346,-145.78763899042582
-1678861030,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.1,3.2,24.96,22.35,56.2,29.3,1006.8,-29.645115608298443,-154.80866649437044,-2.9555497831928,-100.47468331540095,-3.0278427901400913,-99.74704753301783,-44.996705760646066,-145.78750123213183
-1678861040,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.9,3.3,24.93,22.35,56.2,29.4,1006.8,-29.644753199096392,-154.80568991058493,-2.955602923968458,-100.47404717882306,-3.0278769960288736,-99.74717467149215,-44.99526794231191,-145.78715157487744
-1678861050,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.0,3.9,24.94,22.38,56.2,29.3,1006.8,-29.644109194643278,-154.80927792053416,-2.95545567774866,-100.47375381129,-3.0279361356671224,-99.74677215080028,-44.98705965023602,-145.7699546558504
-1678861060,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,3.5,24.94,22.39,56.2,29.3,1006.8,-29.64451633434395,-154.80946970604128,-2.955369726144832,-100.474008571163,-3.0279003492878087,-99.74737690665656,-44.99329025869318,-145.7776230916099
-1678861070,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.4,3.5,24.96,22.39,56.3,29.3,1006.8,-29.644193747330103,-154.810154569522,-2.9555629806170853,-100.47299967327457,-3.028060371833937,-99.74704339274604,-44.99260057305837,-145.8012059213858
-1678861080,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.4,3.5,24.93,22.39,56.3,29.3,1006.8,-29.644457612156124,-154.80820984200483,-2.955589236839394,-100.47343158803955,-3.0277784807638852,-99.74589056228608,-44.98850392240405,-145.80298370418402
-1678861090,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.1,2.8,24.93,22.39,56.3,29.3,1006.8,-29.644519606608576,-154.80928470226564,-2.9555124988212533,-100.47334449950507,-3.0277005299198008,-99.74684089737596,-44.99131812634174,-145.79616119854646
-1678861100,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.0,3.2,24.97,22.4,56.3,29.3,1006.8,-29.644601934003944,-154.80809962690896,-2.9555070934589596,-100.47367371646222,-3.027889681431506,-99.7463746583416,-44.99146005566345,-145.7845344844425
-1678861110,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,3.7,24.97,22.4,56.2,29.3,1006.9,-29.64437633062684,-154.8081723242005,-2.9555215574999045,-100.47297575067526,-3.0280972730987625,-99.74556295835697,-44.99253912714611,-145.79559348231362
-1678861120,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,3.7,24.98,22.42,56.2,29.3,1006.8,-29.644213888550148,-154.80831345312248,-2.9556382226333513,-100.47253432588408,-3.0278618039724465,-99.74484185676117,-44.991532390212335,-145.80705015084936
-1678861130,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.4,2.6,25.01,22.43,56.2,29.3,1006.9,-29.64479611102373,-154.80738911791462,-2.95559729763687,-100.47263809253398,-3.027892735402107,-99.74515082878382,-44.992555590837924,-145.7900147862849
-1678861140,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,3.0,24.97,22.44,56.2,29.3,1006.9,-29.645098271729765,-154.80585111858574,-2.955723034705521,-100.4729385714163,-3.027835065419948,-99.74581219298358,-44.99409945706019,-145.81710785425815
-1678861150,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.0,3.0,24.96,22.45,56.2,29.3,1006.9,-29.644761127329943,-154.80713814293506,-2.955553298759816,-100.4727271386602,-3.0278894956970874,-99.74612055153194,-44.99183245315749,-145.8031925281699
-1678861160,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.4,2.8,24.97,22.45,56.3,29.2,1006.9,-29.644789271355275,-154.80630341988254,-2.9557218826235347,-100.47295701265737,-3.02791618792594,-99.74647025734954,-44.990484331100745,-145.7836838676902
-1678861170,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.4,3.5,24.97,22.46,56.3,29.3,1006.9,-29.644961973476164,-154.80677095227665,-2.955528612797382,-100.47360211637617,-3.027810851940843,-99.74614047365174,-44.99347710120476,-145.7788321317435
-1678861180,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.8,3.3,24.97,22.51,56.3,29.2,1006.9,-29.645075222612085,-154.80481159495477,-2.9556904900468517,-100.47288954002258,-3.027735980371614,-99.74559743586153,-44.98935843807193,-145.79258121824552
-1678861190,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.8,3.4,24.97,22.51,56.3,29.1,1006.9,-29.64503059231225,-154.80446437150786,-2.9556991770224963,-100.4731942770864,-3.0278296255250803,-99.74535467116043,-44.992415315387774,-145.78474404559475
-1678861200,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.7,3.5,24.97,22.55,56.3,29.2,1006.8,-29.645554622838514,-154.8027852561924,-2.955676089438821,-100.47237646163234,-3.027757848939948,-99.74504365720789,-44.994051731745785,-145.77591994205446
-1678861210,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.6,3.3,24.97,22.55,56.3,29.1,1006.9,-29.64553738441525,-154.8029879479349,-2.9558952410540975,-100.47208211096675,-3.0277968647014357,-99.74541053031793,-44.98853039226583,-145.7747611160685
-1678861220,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.0,3.3,24.97,22.53,56.3,29.1,1006.8,-29.645430413066936,-154.80153581596838,-2.9557969819933927,-100.47195414260283,-3.0278831128970185,-99.74577361757567,-44.99208686904085,-145.78293330002185
-1678861230,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.7,2.9,24.96,22.54,56.3,29.1,1006.8,-29.645229684258766,-154.80184493260037,-2.955628284577191,-100.47268094639966,-3.0279484360086855,-99.74576513434147,-44.99644414435002,-145.79533243271223
-1678861240,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.1,3.2,24.97,22.51,56.4,29.1,1006.9,-29.645398722089844,-154.80351630335343,-2.9557317179806786,-100.4730906969987,-3.0277638897869847,-99.74589844165959,-44.9939512843773,-145.7939903416795
-1678861250,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.2,3.4,24.97,22.51,56.3,29.1,1006.8,-29.645339716196947,-154.80091896536823,-2.9556785316477496,-100.47344985978876,-3.0279955060386894,-99.74644763370402,-44.99628447956834,-145.7582094071366
-1678861260,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.3,3.0,24.97,22.51,56.3,29.1,1006.8,-29.64521985945849,-154.8030590017854,-2.955602049308757,-100.47322871144682,-3.027892124293305,-99.74560823478332,-44.99384000700254,-145.79967622142405
-1678861270,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.8,3.6,24.97,22.48,56.3,29.1,1006.8,-29.645404756154573,-154.80448998678347,-2.955767284988719,-100.47295107799661,-3.0278188204972873,-99.74636198511224,-44.99264448463775,-145.7913337983862
-1678861280,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.9,3.3,24.96,22.45,56.3,29.2,1006.8,-29.64560682131075,-154.8020542240305,-2.95582147151783,-100.47313769870343,-3.0277914620945854,-99.74649025940414,-44.99335141897571,-145.77364624526527
-1678861290,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.1,3.2,24.96,22.42,56.3,29.2,1006.9,-29.646240925162367,-154.7998552238575,-2.9558611231777574,-100.47429578963184,-3.028014856937402,-99.74724234650769,-44.99529566660648,-145.76487503835398
-1678861300,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.5,3.1,24.96,22.36,56.3,29.3,1006.8,-29.646257141126195,-154.79846813448913,-2.9559105555428795,-100.47449619115507,-3.027816425918537,-99.74571756985206,-44.9941123246804,-145.75531107160745
-1678861310,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.8,2.8,24.93,22.32,56.3,29.4,1006.9,-29.645977339064554,-154.8006847496113,-2.955844132662974,-100.4754523341592,-3.0277038690052076,-99.74652558137798,-44.996117476346114,-145.7737422942649
-1678861320,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.7,3.4,24.96,22.29,56.3,29.4,1006.9,-29.645968550667043,-154.8003152132099,-2.9557266917261034,-100.4752953777758,-3.0276991778684574,-99.74692842607874,-44.9986579475814,-145.75879050242477
-1678861330,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.1,2.7,24.96,22.27,56.3,29.5,1006.9,-29.64540736515456,-154.802517973803,-2.95578548777447,-100.47543774846055,-3.0277137297927355,-99.74721096244848,-44.99469282631087,-145.76942653423222
-1678861340,25.0,25.0,55.0,55.0,0,1300000000,,,3,4.9,3.1,24.93,22.24,56.3,29.5,1006.9,-29.646635341645062,-154.79724186324233,-2.9557621884879506,-100.47566331733336,-3.027696670064277,-99.74791652670126,-45.002409099746565,-145.75541102213498
-1678861350,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.3,3.1,24.93,22.23,56.3,29.6,1006.9,-29.647034300501396,-154.7972656162704,-2.9555919061606954,-100.47668882427136,-3.0277739058456548,-99.74840118365627,-44.99931968741433,-145.75308767034855
-1678861360,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.6,3.7,24.93,22.21,56.3,29.6,1006.9,-29.64671038532149,-154.79826075555016,-2.9554774731900295,-100.476576344686,-3.027841610953621,-99.74836397202195,-44.99581455423605,-145.74288998840478
-1678861370,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.0,3.5,24.93,22.2,56.3,29.6,1006.9,-29.646691397569292,-154.79841062554064,-2.955469623145751,-100.4766016440645,-3.0277571761885036,-99.74885244414752,-44.995577212409536,-145.74594109890293
-1678861380,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,3.4,24.94,22.16,56.3,29.6,1006.9,-29.64687188257288,-154.79804745757147,-2.955586285686407,-100.47609939120385,-3.027728082400327,-99.74862046903084,-44.99604938437219,-145.76002749108582
-1678861390,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.6,3.0,24.94,22.15,56.3,29.6,1006.9,-29.64696665507951,-154.79649947474113,-2.9556053000846223,-100.47558764056724,-3.027829715633658,-99.74860370945254,-44.998355463307085,-145.7398805627706
-1678861400,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.6,2.6,24.97,22.09,56.4,29.7,1006.9,-29.64682709756441,-154.79750843967776,-2.9555452471959183,-100.47613220215095,-3.027842384812881,-99.74748381621652,-44.99796438584,-145.75284842824726
-1678861410,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.4,2.2,24.96,22.06,56.4,29.7,1006.9,-29.647525704716408,-154.79723902911115,-2.9556541948470345,-100.47581285063487,-3.0278465338395035,-99.74879772053148,-44.997412458294264,-145.74438231081527
-1678861420,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.1,2.6,24.97,22.05,56.4,29.8,1006.9,-29.64761091593764,-154.79777977401287,-2.955620390970675,-100.47726092745656,-3.027958504997361,-99.74928372493113,-45.00160929282629,-145.74017669781077
-1678861430,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,2.7,24.96,22.04,56.5,29.8,1006.9,-29.6480301558247,-154.7950824972253,-2.95558299129586,-100.47693610400897,-3.0278482555896398,-99.74854590300657,-45.002334136719774,-145.76402271080678
-1678861440,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.8,2.6,24.96,22.0,56.5,29.8,1007.0,-29.64755581263978,-154.7951687886988,-2.955533388712008,-100.47755964082788,-3.0278950766522543,-99.7486459733328,-45.002084416018924,-145.7219612829022
-1678861450,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.2,2.6,24.94,21.99,56.5,29.9,1006.9,-29.648021526566957,-154.79396908362202,-2.9554741161068945,-100.47748874417975,-3.0277427765310754,-99.74938428519074,-45.00541690155603,-145.72422298301026
-1678861460,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.4,2.8,24.96,21.95,56.5,30.0,1006.9,-29.6477092587762,-154.79419757856647,-2.955488542288447,-100.47832189844685,-3.0277930705887863,-99.74872492296036,-45.00718430146645,-145.72296196950833
-1678861470,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.8,2.6,24.93,21.88,56.5,30.0,1007.0,-29.6475226016074,-154.79556747021093,-2.955572999586187,-100.47715543085138,-3.0278157367056693,-99.74902225132412,-45.001337826543555,-145.73781201710085
-1678861480,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.2,2.7,24.94,21.88,56.5,30.0,1007.0,-29.64797501379011,-154.79460470046365,-2.9555198174851327,-100.47732787828235,-3.0275314322388835,-99.74896022725089,-45.00461118113505,-145.7411264124447
-1678861490,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.9,2.6,24.93,21.86,56.6,30.1,1007.0,-29.647996049135475,-154.79572025565093,-2.955538254754671,-100.47821201061544,-3.0274991793712083,-99.74974448819344,-45.00341300255577,-145.71891738690948
-1678861500,25.0,25.0,55.0,55.0,0,1300000000,,,3,4.4,2.7,24.93,21.86,56.6,30.1,1006.9,-29.64806427152004,-154.79328882144094,-2.955371622520066,-100.47879310898128,-3.027659894172901,-99.74933275068146,-45.003333331578084,-145.7286879071928
-1678861510,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.5,2.6,24.93,21.88,56.6,30.1,1007.0,-29.64752613244697,-154.79398052547347,-2.955434391837173,-100.47865460054074,-3.0276535422380295,-99.74948755669105,-45.006976615884994,-145.7348953856284
-1678861520,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.2,2.9,24.93,21.9,56.6,30.1,1007.0,-29.648510367599442,-154.7931940993086,-2.9556135648339383,-100.47897374892207,-3.027585619780819,-99.75051152691734,-45.004027605021115,-145.7210422603671
-1678861530,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.0,2.7,24.9,21.93,56.6,30.0,1006.9,-29.648680799152668,-154.79566531533288,-2.9556340316973557,-100.4788364106599,-3.027684723922297,-99.75064338263236,-45.00498401633421,-145.71935178722137
-1678861540,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.9,2.5,24.91,21.9,56.6,30.0,1006.9,-29.648691801565228,-154.79209487659165,-2.955557661874085,-100.47955980243033,-3.0275974312266833,-99.7510751967779,-45.007705996255574,-145.72252237828536
-1678861550,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.9,2.2,24.9,21.94,56.6,30.0,1006.9,-29.648420528006977,-154.7928796984184,-2.955675691393127,-100.47968899372961,-3.0276092564212647,-99.75083531541118,-45.00422679588183,-145.71986514464416
-1678861560,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.1,3.0,24.93,21.94,56.6,30.0,1007.0,-29.649263201896584,-154.79128310491728,-2.9558392757860847,-100.47951405637728,-3.027695309334007,-99.75183606678029,-45.00616009608164,-145.72669497053673
-1678861570,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.9,3.1,24.93,21.95,56.5,30.0,1006.9,-29.648453835201217,-154.79499365270593,-2.955552322550753,-100.47917419755426,-3.027735503519151,-99.75166558228166,-45.00483939174343,-145.72554884864832
-1678861580,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.2,3.1,24.91,21.95,56.4,30.0,1006.9,-29.648647306872387,-154.7918950526477,-2.9554353722887217,-100.47991079629784,-3.0275940632260423,-99.75104811248656,-45.00411450098341,-145.72373909140822
-1678861590,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.7,3.2,24.93,21.97,56.4,30.0,1006.9,-29.64876266097916,-154.7915300096959,-2.9554952721792453,-100.47991187731819,-3.0274619193248267,-99.75206042118411,-45.00530873072638,-145.70516278647062
-1678861600,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.8,2.7,24.93,21.96,56.4,30.0,1006.9,-29.64870898803148,-154.79143679820083,-2.955477054453878,-100.48061252816873,-3.0277215225043075,-99.7528124183667,-45.0072571449751,-145.69251960239916
-1678861610,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.7,2.6,24.93,21.97,56.4,30.0,1006.9,-29.648984501701573,-154.79111135309006,-2.955522039713767,-100.48090264080079,-3.027389170683779,-99.75283532084633,-45.010923571268705,-145.70015129793393
-1678861620,25.0,25.0,55.0,55.0,0,1300000000,,,3,9.2,2.7,24.9,21.98,56.3,29.9,1006.9,-29.64906502775488,-154.79109280685424,-2.9555825495381343,-100.48142617447246,-3.0275441820017153,-99.75284028011096,-45.00995318762378,-145.7067595310108
-1678861630,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.7,2.8,24.91,21.98,56.4,29.9,1006.9,-29.648416783174856,-154.7923460400905,-2.9554336960743948,-100.48180790990033,-3.0274478504882714,-99.75301581568374,-45.010600359807185,-145.70122981891458
-1678861640,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.9,3.4,24.93,21.99,56.3,29.9,1006.9,-29.648729014489696,-154.79192973436008,-2.9553565659838146,-100.48153884629029,-3.0275944261838013,-99.75324050784869,-45.007004132568866,-145.68941853686346
-1678861650,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.5,3.1,24.93,22.0,56.3,29.9,1006.9,-29.648642829660247,-154.7925811000414,-2.955489216590249,-100.48114720133879,-3.027521401704747,-99.753538004072,-45.00272712389699,-145.70742499897815
-1678861660,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.1,3.6,24.91,22.0,56.3,29.9,1006.9,-29.648685501429593,-154.79119703274858,-2.9555582874371265,-100.48049699231721,-3.027617877525543,-99.75304304923795,-45.00934738573551,-145.69165087344012
-1678861670,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.4,3.6,24.93,22.0,56.3,29.9,1006.8,-29.648775664532717,-154.79048856991045,-2.9554836297884712,-100.48080758037933,-3.0275687887264606,-99.75250121354799,-45.00627887838789,-145.70131383463413
-1678861680,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.1,3.4,24.93,22.0,56.3,29.9,1006.9,-29.64952848791949,-154.78829386129317,-2.9554449151361424,-100.48070174324725,-3.027385714893733,-99.75267942474805,-45.00803957499764,-145.70138441538106
-1678861690,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,2.9,24.93,22.01,56.3,29.8,1006.9,-29.649283512565233,-154.7914824577674,-2.9557894133666975,-100.48132175801798,-3.0274894838960096,-99.7521064944978,-45.00863531234061,-145.71256755576707
-1678861700,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.4,3.2,24.93,22.02,56.3,29.8,1006.9,-29.649523694101788,-154.79211615836232,-2.955655388163091,-100.48110507125968,-3.0274362804734873,-99.75168482425865,-45.00308045860085,-145.72220235992359
-1678861710,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.7,3.3,24.93,22.02,56.3,29.8,1006.8,-29.649618391031517,-154.79247383872172,-2.955706332016912,-100.48137369069093,-3.0274988212476837,-99.75118904875931,-45.00235516780036,-145.74149799622845
-1678861720,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.2,2.7,24.93,22.04,56.3,29.8,1006.9,-29.649163778104153,-154.79083873689297,-2.955513794217487,-100.4817136007224,-3.027483266891288,-99.75159951483346,-45.0068071638992,-145.71517972993774
-1678861730,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.5,3.0,24.93,22.05,56.3,29.8,1006.9,-29.649397573004876,-154.78956965472509,-2.9555769786294617,-100.48186976849429,-3.0275105437420944,-99.75165663758261,-45.009161285034345,-145.71312430536204
-1678861740,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.7,3.5,24.91,22.05,56.3,29.8,1006.9,-29.64929804756801,-154.7897247307368,-2.955577691234196,-100.48213980795576,-3.027363518991502,-99.75149866662137,-45.003382438029135,-145.73851337063346
-1678861750,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.3,3.5,24.93,22.08,56.3,29.8,1006.8,-29.649212187553353,-154.79069726550145,-2.9555145855901523,-100.48138253039356,-3.0272978168568225,-99.75175998350296,-45.00265842776585,-145.7393051479805
-1678861760,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.3,3.0,24.93,22.08,56.2,29.7,1006.9,-29.64936630645051,-154.79040241133458,-2.9554776752622836,-100.4815206123645,-3.027434424061901,-99.75186804800455,-45.004287374547765,-145.7267067105414
-1678861770,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.7,2.9,24.93,22.09,56.2,29.7,1006.9,-29.649650428912263,-154.79075124472837,-2.955583211224413,-100.4815058024359,-3.0275842536867974,-99.75222263663763,-45.008197913281336,-145.72516038820544
-1678861780,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,3.3,24.91,22.1,56.3,29.7,1006.9,-29.649209849447075,-154.79128418897002,-2.955674996876032,-100.4817074436222,-3.0274430039413307,-99.75265601456941,-45.00519773589712,-145.72488886297143
-1678861790,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.3,3.3,24.93,22.11,56.3,29.7,1006.9,-29.649336571180722,-154.7948999094482,-2.955631008985317,-100.4811196707644,-3.027497662107279,-99.75201041149873,-44.998208936543094,-145.73028449405734
-1678861800,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.9,3.5,24.91,22.12,56.3,29.7,1006.8,-29.649616124182625,-154.7912816100143,-2.955627859776625,-100.480747724228,-3.0275268503573383,-99.7528184067033,-45.00301814944017,-145.72549964171273
-1678861810,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.9,3.4,24.93,22.12,56.3,29.7,1006.8,-29.649465028027606,-154.79137647214276,-2.9555800574944606,-100.48060173382665,-3.0274691543409653,-99.75288197495365,-45.002725791808764,-145.71987424907724
-1678861820,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.0,2.9,24.91,22.13,56.3,29.7,1006.9,-29.649651077073656,-154.79199714159984,-2.9557073927038107,-100.48068122339309,-3.027535040463529,-99.75251499500702,-45.003360676228546,-145.7319262820103
-1678861830,25.0,25.0,55.0,55.0,0,1300000000,,,3,9.4,2.7,24.91,22.13,56.3,29.7,1006.9,-29.64923128259057,-154.79380309423408,-2.9556708108708234,-100.48054701112339,-3.027670344116746,-99.75185375681525,-45.00343075866767,-145.73388641314222
-1678861840,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.3,2.8,24.93,22.15,56.4,29.7,1006.9,-29.649482359503438,-154.78982387228552,-2.95587993939832,-100.48053108204576,-3.027579983721893,-99.75183835386078,-45.00438307553999,-145.72675472125067
-1678861850,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.2,2.8,24.93,22.15,56.4,29.6,1007.0,-29.64933439220076,-154.7918440777373,-2.9556282600341373,-100.4812257541337,-3.0275002214348463,-99.75197129025737,-45.003538917632525,-145.71317912468976
-1678861860,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.6,3.0,24.93,22.15,56.3,29.6,1006.9,-29.6497371022907,-154.79278852216544,-2.9555598105147682,-100.47986810965811,-3.027668119935607,-99.75259077482839,-45.00234439135965,-145.70580716551817
-1678861870,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.2,3.0,24.91,22.16,56.4,29.6,1006.9,-29.649181751504017,-154.79249202873194,-2.955388373566801,-100.48015089766368,-3.0275669334017796,-99.75313461365278,-45.001834035676005,-145.71094531367962
-1678861880,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.4,2.8,24.91,22.17,56.4,29.6,1006.9,-29.64978410159716,-154.79114200905946,-2.9556392301929115,-100.47993924902904,-3.027205405231082,-99.75338266797144,-45.007047310464394,-145.7228004518075
-1678861890,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.4,3.2,24.91,22.17,56.4,29.6,1006.9,-29.650262247421885,-154.78979023755682,-2.955692812894669,-100.47917343480135,-3.027438130510948,-99.75377399466063,-45.00818018606208,-145.71740921537008
-1678861900,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,3.2,24.93,22.18,56.4,29.6,1006.9,-29.650413922614433,-154.78683083433836,-2.955744110183596,-100.47997720457298,-3.0273716153087133,-99.75248041774914,-45.008305951868515,-145.7134676339387
-1678861910,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.3,3.1,24.93,22.19,56.3,29.6,1006.9,-29.65002434070788,-154.79111803439844,-2.955670141858179,-100.47957678275512,-3.0274336209267583,-99.75261715645853,-45.00435777227046,-145.70748095401626
-1678861920,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.7,3.0,24.93,22.19,56.4,29.6,1006.9,-29.649366915091086,-154.79335189334563,-2.955573645260952,-100.47929626193879,-3.0274859324736223,-99.75237314311794,-45.00306300162641,-145.71393743150873
-1678861930,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,2.7,24.93,22.21,56.4,29.6,1006.9,-29.649896398047918,-154.79267957234123,-2.95538296364873,-100.4803676618374,-3.027350910937998,-99.75284154072342,-45.02947829713263,-145.75473403743894
-1678861940,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.8,2.5,24.91,22.23,56.4,29.5,1006.9,-29.651118221142376,-154.78741934211524,-2.955342254989553,-100.47938245004903,-3.0273939603025024,-99.75277321531316,-45.03441520785127,-145.7582765777749
-1678861950,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.7,2.6,24.91,22.23,56.4,29.5,1006.9,-29.651822571092726,-154.78707830028887,-2.955361741317782,-100.48093126567018,-3.0272722284212645,-99.75358950768234,-45.03297424594122,-145.74815600050917
-1678861960,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.9,3.1,24.93,22.24,56.4,29.5,1006.9,-29.651884912175184,-154.78619356285049,-2.955382720110189,-100.48010226295304,-3.027325059082741,-99.75333568305277,-45.03403341087715,-145.76894664875374
-1678861970,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.4,3.3,24.93,22.24,56.4,29.5,1006.9,-29.65200367275687,-154.78635981670067,-2.955542613953437,-100.48101710688803,-3.0272022551166575,-99.7529977413598,-45.03469602442322,-145.76921562246037
-1678861980,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,3.5,24.9,22.24,56.4,29.5,1006.9,-29.652581160406374,-154.78493719249383,-2.955361908429891,-100.48061295458015,-3.0272622703908847,-99.7529453962559,-45.03670957841691,-145.77263804836235
-1678861990,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.1,3.1,24.91,22.24,56.4,29.6,1006.9,-29.652220020262835,-154.78491789168004,-2.9556618708569276,-100.48083669731828,-3.0270830852993558,-99.75252516802769,-45.03519978254528,-145.77509927758175
-1678862000,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.9,3.1,24.93,22.24,56.4,29.5,1006.9,-29.651754217611007,-154.78614066644374,-2.9555754019083165,-100.48038697371847,-3.027249216459153,-99.75254891490495,-45.030077546163454,-145.7797661679211
-1678862010,25.0,25.0,55.0,55.0,0,1300000000,,,3,4.9,3.1,24.94,22.25,56.4,29.5,1007.0,-29.651447686445,-154.78593514552134,-2.955524453889141,-100.47963008447452,-3.02720420105348,-99.75235567970347,-45.03294494571325,-145.78479232645196
-1678862020,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,2.7,24.93,22.25,56.4,29.5,1007.0,-29.651929513275622,-154.785914855554,-2.955457762894727,-100.47964648907762,-3.0271276214201785,-99.75278300893451,-45.03252780468125,-145.7798932627172
-1678862030,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.0,2.9,24.94,22.26,56.4,29.5,1006.9,-29.65181641362694,-154.78710864331433,-2.9556703282827184,-100.4797753285395,-3.0270941188813576,-99.75245138125224,-45.031242962584486,-145.7757963247319
-1678862040,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,2.6,24.94,22.27,56.4,29.5,1007.0,-29.651877098404874,-154.78493051784565,-2.955568387888455,-100.47976548248974,-3.0271657074283977,-99.75270626156258,-45.03096644351507,-145.79184855824116
-1678862050,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.5,2.9,24.93,22.27,56.4,29.5,1006.9,-29.651606450624726,-154.78708266437087,-2.955659896120629,-100.48053487140137,-3.0272300439703494,-99.75289839346576,-45.02920082819071,-145.77063194405693
-1678862060,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.0,2.7,24.93,22.27,56.4,29.4,1006.9,-29.652282884000897,-154.78435432208883,-2.955538967116342,-100.48047082561403,-3.0271504167801333,-99.75222225353232,-45.02628318257565,-145.76560489335117
-1678862070,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.4,2.5,24.93,22.27,56.4,29.4,1007.0,-29.65182741198866,-154.78604681515887,-2.955552214250206,-100.48013793362875,-3.027240695344168,-99.75223080191704,-45.02951600819789,-145.79018180060666
-1678862080,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,2.8,24.91,22.29,56.4,29.4,1007.0,-29.65220694421866,-154.7859944356361,-2.9554634893974523,-100.48055191088018,-3.0270597914297213,-99.7531984555522,-45.031165201390515,-145.7722054567999
-1678862090,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.8,3.0,24.93,22.28,56.4,29.4,1007.0,-29.652414748498245,-154.78501561698005,-2.955542365637249,-100.48052591000375,-3.0273469866034146,-99.75336221174489,-45.0337520463863,-145.77086310153985
-1678862100,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.0,2.7,24.93,22.29,56.4,29.4,1007.0,-29.65238098858428,-154.7874059716657,-2.9555380231757966,-100.48012642594931,-3.027341894008507,-99.7536482743564,-45.032661584412295,-145.77036298957734
-1678862110,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.7,3.2,24.93,22.29,56.3,29.4,1007.0,-29.65170673474141,-154.78840457205055,-2.955586849748965,-100.47984000622382,-3.0273214474775907,-99.75351652373695,-45.02986407109623,-145.77209248106774
-1678862120,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.5,4.2,24.94,22.29,56.3,29.5,1007.0,-29.651997771951546,-154.7853314371266,-2.9556016243922016,-100.47962170735947,-3.027327691780162,-99.75342131364926,-45.03442276836178,-145.77726571956475
-1678862130,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.7,4.1,24.93,22.3,56.2,29.4,1007.0,-29.651836866013042,-154.78671903219578,-2.955451816795514,-100.47915851992934,-3.0273482637874616,-99.7539022406272,-45.03222681723412,-145.78021794996343
-1678862140,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.1,3.8,24.93,22.31,56.2,29.4,1007.0,-29.652022320948006,-154.78536128201083,-2.955534496607396,-100.47894160121866,-3.0271654619254167,-99.75398320297718,-45.034319943301426,-145.7647511274365
-1678862150,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.4,3.5,24.93,22.31,56.2,29.4,1007.0,-29.6523984729601,-154.78310438970857,-2.9556440964551034,-100.47912721803607,-3.0275231663004325,-99.75276155700955,-45.03382818726253,-145.76511254752938
-1678862160,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.7,2.9,24.93,22.31,56.3,29.4,1007.0,-29.651904607090312,-154.78359290947503,-2.955582842589306,-100.47907112346708,-3.0275856010580027,-99.75296106501966,-45.03273882016604,-145.7598708868635
-1678862170,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.4,2.7,24.93,22.31,56.3,29.4,1007.0,-29.651556862702392,-154.78410528497471,-2.95555438156528,-100.47826191579124,-3.027547834112559,-99.75370622373278,-45.030940386598495,-145.77587159598247
-1678862180,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.3,3.1,24.93,22.31,56.3,29.4,1007.0,-29.651357519130226,-154.78674226972154,-2.955536604022904,-100.47852438812525,-3.0274415504050785,-99.75350355926386,-45.03228742085376,-145.77388382208855
-1678862190,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.9,3.1,24.93,22.31,56.4,29.4,1006.9,-29.651085090531563,-154.78725919162218,-2.9556412808146693,-100.47879686220189,-3.027509948141441,-99.75228793984851,-45.030339924162455,-145.7847262639497
-1678862200,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.7,2.6,24.93,22.31,56.4,29.4,1007.0,-29.652275854037462,-154.78362806772833,-2.955672242188854,-100.47854220104388,-3.027452818839565,-99.75354237736164,-45.03448853473511,-145.78086487404724
-1678862210,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.6,2.7,24.93,22.32,56.4,29.4,1007.0,-29.651595479302046,-154.78486980501367,-2.9555634789783247,-100.47849744656445,-3.027604969681999,-99.7533750688466,-45.03184722767174,-145.76320603593027
-1678862220,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,2.8,24.93,22.32,56.4,29.4,1007.0,-29.652033776063213,-154.78287605914952,-2.9557451911820887,-100.47850284038884,-3.0275590768043843,-99.75342274070512,-45.0310350224557,-145.7563357054832
-1678862230,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.7,2.6,24.93,22.32,56.4,29.4,1007.0,-29.65200312893874,-154.7827131953423,-2.9555873123433765,-100.47862186549212,-3.0273953848751707,-99.75292652073739,-45.03438705949897,-145.7730097877671
-1678862240,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.1,3.2,24.93,22.32,56.4,29.4,1007.0,-29.651973031541235,-154.78511830666517,-2.9555434855331004,-100.47852249808481,-3.0274783782313563,-99.75308196641713,-45.03395873238183,-145.75029512618303
-1678862250,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.8,2.8,24.94,22.32,56.4,29.4,1007.1,-29.651838614864655,-154.78525681491223,-2.9554064616882925,-100.47859079286145,-3.0276462143474654,-99.75236217467946,-45.034159547930635,-145.75696082748144
-1678862260,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.7,2.8,24.94,22.33,56.4,29.4,1007.0,-29.651002272676656,-154.78706390344877,-2.955551890813978,-100.47776274846724,-3.0276433174602264,-99.75209186653652,-45.03122707646631,-145.76344574643252
-1678862270,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.4,3.4,24.93,22.33,56.4,29.4,1007.0,-29.651167972690157,-154.78634137023764,-2.9555906675656836,-100.478038077243,-3.027562003193119,-99.75197360024616,-45.03239496490263,-145.7482330901915
-1678862280,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.9,2.9,24.94,22.33,56.4,29.4,1007.0,-29.651530109306368,-154.78631936545636,-2.9557253747555268,-100.47780357262569,-3.0275721765194117,-99.75216877479696,-45.03513584298156,-145.76694675106035
-1678862290,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.0,2.7,24.94,22.34,56.4,29.4,1007.0,-29.651397362263264,-154.78702043981892,-2.955609357180367,-100.47734513548383,-3.0275499520640277,-99.75189817508885,-45.03348826722534,-145.75666075173686
-1678862300,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.6,3.0,24.94,22.34,56.4,29.4,1007.0,-29.651196378326993,-154.7871789347207,-2.955774859601523,-100.47808382839631,-3.027583252108204,-99.75186059830125,-45.03037024257861,-145.7633806506852
-1678862310,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.6,2.9,24.94,22.34,56.4,29.4,1007.0,-29.651602355130233,-154.78449876404818,-2.95575115966838,-100.47792433924774,-3.027595001471174,-99.751720148591,-45.031509971425756,-145.75088773106202
-1678862320,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.0,3.1,24.94,22.34,56.4,29.3,1007.1,-29.650805710637695,-154.78737801108068,-2.955456715342063,-100.47864109717949,-3.0277170290584268,-99.75125875161166,-45.033865287780486,-145.75548082540288
-1678862330,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,2.4,24.93,22.34,56.4,29.3,1007.0,-29.650510265676097,-154.7885347716008,-2.9556197418239414,-100.4787560892614,-3.02780284168224,-99.75187669849632,-45.033519103689216,-145.76260305663948
-1678862340,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.6,2.4,24.93,22.38,56.4,29.3,1007.0,-29.650584011725204,-154.78647691778048,-2.955480343161115,-100.47835138315024,-3.0276480036388325,-99.75138877956786,-45.0332310122579,-145.75675194346425
-1678862350,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.7,3.2,24.93,22.4,56.5,29.3,1007.0,-29.650598399732363,-154.78741939664351,-2.955509362952253,-100.47871643462287,-3.0278674514978423,-99.7518878825262,-45.030370126126975,-145.75148454986345
-1678862360,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.5,3.3,24.94,22.4,56.4,29.3,1007.1,-29.650759698779563,-154.7877105762972,-2.955337871211585,-100.4777272071215,-3.0277807633814833,-99.75156821113414,-45.02834525758092,-145.74507872516588
-1678862370,25.0,25.0,55.0,55.0,0,1300000000,,,3,9.1,2.5,24.93,22.4,56.4,29.3,1007.0,-29.650775102907797,-154.78747412974147,-2.9555886942098866,-100.47841030112266,-3.0277107960498384,-99.75079243040065,-45.029665379454975,-145.7770970753163
-1678862380,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.4,2.8,24.94,22.39,56.4,29.3,1007.1,-29.65059260706969,-154.79062914926266,-2.9556352169443887,-100.47825247149581,-3.027799668354909,-99.75174096944377,-45.03607480019099,-145.77766274440523
-1678862390,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.1,2.9,24.94,22.39,56.5,29.2,1007.1,-29.651105454254477,-154.79028802899643,-2.955377719589581,-100.47881120491857,-3.027734116901135,-99.75174261119763,-45.031852251862404,-145.76318203714865
-1678862400,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.0,2.8,24.96,22.39,56.4,29.3,1007.1,-29.649870856233456,-154.79110496541978,-2.9552139619684654,-100.47803880863512,-3.027817505594575,-99.75185174949664,-45.03264464943953,-145.7783804494816
-1678862410,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,2.9,24.96,22.4,56.4,29.3,1007.0,-29.649845111647963,-154.79348740208692,-2.9553000380422234,-100.47764195498256,-3.0278907111169473,-99.75235794049289,-45.02820686467661,-145.7750373311399
-1678862420,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.9,3.0,24.96,22.39,56.4,29.3,1007.0,-29.650116414930352,-154.7920128204842,-2.9552251622553998,-100.47863106878955,-3.027773569066828,-99.75208110229192,-45.03502852652925,-145.77497919714338
-1678862430,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.8,2.9,24.93,22.4,56.4,29.3,1007.1,-29.650230337086608,-154.7902281380766,-2.9554790080516726,-100.47851381969384,-3.0276918004093916,-99.7520908045872,-45.035358106452,-145.78581610604977
-1678862440,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.5,3.4,24.94,22.39,56.4,29.3,1007.0,-29.65023262827443,-154.7918568304917,-2.955348195446173,-100.47861224677223,-3.0277594127121343,-99.7523078770657,-45.03372652637285,-145.76648335169412
-1678862450,25.0,25.0,55.0,55.0,0,1300000000,,,3,9.3,2.7,24.93,22.39,56.4,29.3,1007.0,-29.650159741798525,-154.7905072559777,-2.955225731340418,-100.47907577230814,-3.0277346246616488,-99.75182769157738,-45.037078917255414,-145.75661442059516
-1678862460,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,3.0,24.93,22.4,56.4,29.3,1007.0,-29.650242460708753,-154.78843404857074,-2.955246652847129,-100.47961057451153,-3.0274646369220126,-99.75315773223774,-45.03747114272677,-145.76825828004388
-1678862470,25.0,25.0,55.0,55.0,0,1300000000,,,3,9.0,3.1,24.93,22.41,56.4,29.3,1007.1,-29.650295669783347,-154.79049748899047,-2.9554845176129643,-100.47941752878356,-3.027476429119228,-99.75322501598075,-45.03383319179396,-145.77853839256255
-1678862480,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.6,3.3,24.91,22.42,56.3,29.3,1007.1,-29.650737384103778,-154.78828055989226,-2.9553783518866856,-100.47961895296106,-3.027533677736834,-99.7531886811695,-45.033060541896845,-145.77068836428563
-1678862490,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.2,3.3,24.91,22.43,56.4,29.3,1007.0,-29.649793049514415,-154.79155799009396,-2.955395527554869,-100.47950424017925,-3.02765730988708,-99.75248371251273,-45.02940654038291,-145.76630400247902
-1678862500,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.1,3.0,24.93,22.47,56.4,29.3,1007.0,-29.65040413096179,-154.78966274740827,-2.9553835935878343,-100.47931637430283,-3.0277987882591213,-99.75306013725996,-45.037843186690274,-145.763281206407
-1678862510,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.5,3.4,24.93,22.48,56.4,29.2,1007.0,-29.650417696388416,-154.79202202010865,-2.9553239876436432,-100.4792845561362,-3.027679875488295,-99.75283414146223,-45.034550726863564,-145.77462429366992
-1678862520,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.2,2.7,24.93,22.49,56.4,29.2,1007.0,-29.649315100823358,-154.79538254267808,-2.9553626127302053,-100.47873436237691,-3.0276497014004744,-99.75171518956637,-45.0330633356472,-145.78693524838093
-1678862530,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.4,2.9,24.93,22.5,56.4,29.2,1007.1,-29.649447155984348,-154.79467085185954,-2.95510025054781,-100.47852399073292,-3.0276588684225665,-99.75147569170397,-45.030215432147116,-145.7710150479
-1678862540,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.3,2.4,24.93,22.5,56.4,29.2,1007.1,-29.64990326296519,-154.7944069379701,-2.9552819056787842,-100.47813411371045,-3.0276712304479245,-99.75184315338983,-45.03327499041858,-145.78215377644227
-1678862550,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.6,2.3,24.93,22.51,56.4,29.2,1007.0,-29.6495334545883,-154.79345388876607,-2.9551143953353716,-100.47857376887177,-3.027611007713575,-99.75154937418515,-45.03449824145041,-145.77008783637362
-1678862560,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.1,3.2,24.93,22.55,56.4,29.2,1007.0,-29.649541763700327,-154.7929594414202,-2.9551133319433305,-100.4774850951275,-3.0277419606780103,-99.75197146990557,-45.02963228088057,-145.77750936803685
-1678862570,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.7,2.7,24.93,22.55,56.4,29.1,1007.0,-29.649347942185486,-154.7922094486699,-2.955251635278024,-100.47787770220633,-3.027700417384864,-99.75177200488949,-45.0320953336158,-145.7831248384636
-1678862580,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.5,2.6,24.94,22.55,56.4,29.1,1007.1,-29.649670125362352,-154.79178157159646,-2.95533098130912,-100.47808328214059,-3.0276781330176044,-99.75209049805095,-45.03448592309766,-145.76909838053882
-1678862590,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,2.5,24.93,22.55,56.4,29.1,1007.1,-29.649794916834487,-154.79275589968356,-2.9551346984468108,-100.47765552049269,-3.0276384934192575,-99.7526197374806,-45.03076470956947,-145.76542616741776
-1678862600,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.0,2.5,24.93,22.48,56.4,29.1,1007.1,-29.650161228566027,-154.79171915649337,-2.955468378916342,-100.47894559491627,-3.0275253057545903,-99.75204566763689,-45.03512716263693,-145.76588445027235
-1678862610,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.4,3.2,24.93,22.45,56.4,29.2,1007.0,-29.650176430038115,-154.79302280121897,-2.9554136139035627,-100.47829741660436,-3.0273726769024774,-99.75232911006258,-45.03166964208782,-145.78168194020455
-1678862620,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.1,2.8,24.94,22.41,56.4,29.3,1007.0,-29.649800425121807,-154.79267891930252,-2.955558653376385,-100.47771024809477,-3.0274190895884834,-99.75163960614202,-45.031054496838664,-145.79454710759506
-1678862630,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.3,2.7,24.94,22.39,56.4,29.3,1007.0,-29.649917426956137,-154.79165525823993,-2.955382715451109,-100.47789642828293,-3.027521448663647,-99.75121691478759,-45.02667715863674,-145.79353715483
-1678862640,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.1,3.0,24.94,22.34,56.4,29.4,1007.1,-29.649794903339533,-154.79021691474867,-2.955744505385747,-100.47738936309395,-3.0274885983274515,-99.75174831279021,-45.03188465761174,-145.79793626011136
-1678862650,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.9,2.7,24.94,22.3,56.4,29.4,1007.1,-29.64960879606679,-154.79196894355198,-2.9556155331115175,-100.47774914026807,-3.0275616599130366,-99.7520077044417,-45.03000067223628,-145.79425256713358
-1678862660,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.0,2.7,24.94,22.29,56.4,29.5,1007.1,-29.65004639634264,-154.78867376390937,-2.955414302705846,-100.47844944808584,-3.0275857048129806,-99.75133753127838,-45.03356200676934,-145.76515917938727
-1678862670,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.1,2.4,24.93,22.29,56.4,29.5,1007.1,-29.650159598532092,-154.79122556994642,-2.955472314266629,-100.47917160836296,-3.027641011163192,-99.75194400262114,-45.033563069705885,-145.7685619096054
-1678862680,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.8,2.9,24.91,22.27,56.4,29.5,1007.1,-29.650351733837738,-154.78947286877593,-2.9555392602523116,-100.47888981691749,-3.0277000903995344,-99.75200600063805,-45.030386594116706,-145.76231333822534
-1678862690,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.0,3.1,24.93,22.24,56.4,29.6,1007.0,-29.650442460290634,-154.79068811947582,-2.9552622787643474,-100.47845806305578,-3.027560976107875,-99.75226928404805,-45.03126878593842,-145.77508937541526
-1678862700,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.7,2.5,24.93,22.17,56.4,29.6,1007.1,-29.650337289619525,-154.78846244768954,-2.955179589463679,-100.47904889215796,-3.0276449301212653,-99.7527821061054,-45.03614129777485,-145.76524430436388
-1678862710,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.0,3.4,24.93,22.17,56.4,29.6,1007.1,-29.65019268299376,-154.79075097657613,-2.9552871419014504,-100.47925266057543,-3.02742193410153,-99.75229236180023,-45.02978759382912,-145.75708739759102
-1678862720,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.1,3.1,24.93,22.15,56.4,29.7,1007.0,-29.650670292156832,-154.78887084730385,-2.955377549604422,-100.47931045918095,-3.027656852091723,-99.75290802581266,-45.03438726497862,-145.74993932557823
-1678862730,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.1,2.6,24.93,22.15,56.4,29.7,1007.1,-29.650707057813204,-154.79218468745862,-2.9553708125916907,-100.47977882957345,-3.0276246162261207,-99.75371728805122,-45.03165333338353,-145.7728157297076
-1678862740,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.6,3.0,24.93,22.1,56.4,29.7,1007.1,-29.65062415024894,-154.78873846570244,-2.955369121616873,-100.47849464632822,-3.027446116686713,-99.75360172893255,-45.030810875493074,-145.7735909452386
-1678862750,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.4,3.0,24.93,22.08,56.4,29.8,1007.1,-29.650318309446618,-154.7891058520652,-2.9555106540677043,-100.47939131543501,-3.027357477741204,-99.75346755386728,-45.03151042858521,-145.7885027566971
-1678862760,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.4,2.5,24.93,22.04,56.4,29.8,1007.1,-29.6502877278003,-154.79064301202786,-2.955324432695223,-100.47912093539733,-3.0275473055327784,-99.75316323534338,-45.0319181609951,-145.7718530568387
-1678862770,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.2,3.0,24.93,22.04,56.4,29.9,1007.1,-29.65075438733408,-154.78908212983671,-2.955300597629569,-100.47933564073351,-3.027313600041277,-99.75393033494952,-45.03303428488921,-145.77272857335146
-1678862780,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.9,2.5,24.93,22.0,56.4,29.9,1007.1,-29.650883902747005,-154.78852489698411,-2.955479771334427,-100.48018547108248,-3.027552044724362,-99.75404498634943,-45.03582759401917,-145.7704143381618
-1678862790,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,3.2,24.93,21.98,56.4,29.9,1007.1,-29.650713703064735,-154.78930785441844,-2.955509629595145,-100.4798771312554,-3.0274172224197504,-99.75442591534123,-45.03422579733759,-145.77789977542463
-1678862800,25.0,25.0,55.0,55.0,0,1300000000,,,3,9.0,2.6,24.93,21.97,56.4,30.0,1007.1,-29.650704731344323,-154.78822703195405,-2.955594281753174,-100.47918313573318,-3.02750624944798,-99.75468864761494,-45.035519381875346,-145.7705605321482
-1678862810,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.7,3.0,24.93,21.96,56.4,30.0,1007.1,-29.650101480309278,-154.7875865947755,-2.955465266470801,-100.47991331812361,-3.0272926211487854,-99.75425269041277,-45.036692202744256,-145.77574444114958
-1678862820,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.7,3.0,24.91,21.86,56.3,30.1,1007.1,-29.65052555960693,-154.78866705675065,-2.9554382749134067,-100.48065609397642,-3.027261972793257,-99.75436938622217,-45.035154896096195,-145.78479842312694
-1678862830,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.0,2.8,24.93,21.85,56.3,30.1,1007.2,-29.650726738110144,-154.7884783373281,-2.9555634005264193,-100.48121061652583,-3.0273670839411118,-99.75444408942523,-45.037588003831445,-145.76439497488477
-1678862840,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.4,3.1,24.93,21.85,56.3,30.1,1007.2,-29.650818520081206,-154.78632238718475,-2.9557124821013456,-100.48057755589677,-3.027318702554167,-99.75476123363852,-45.03464562158917,-145.77264387026653
-1678862850,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,3.5,24.93,21.84,56.3,30.1,1007.1,-29.650280715869712,-154.78973911434412,-2.955427499127783,-100.48074390175962,-3.027270213459983,-99.75451746924763,-45.0321877055716,-145.77907406422275
-1678862860,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,2.9,24.91,21.79,56.3,30.1,1007.1,-29.65084693818597,-154.78609862292006,-2.9557110585886104,-100.48058590045709,-3.027242222421052,-99.75469630763419,-45.03485942459697,-145.76769582016726
-1678862870,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.8,3.0,24.91,21.79,56.3,30.2,1007.1,-29.65073371196601,-154.78938838884477,-2.955651931271934,-100.48020115716258,-3.0273025858125004,-99.75558635892847,-45.03134802317553,-145.7696844094212
-1678862880,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,3.5,24.93,21.79,56.3,30.2,1007.1,-29.650308961620212,-154.7884329161307,-2.9555361415674204,-100.48028767950755,-3.0274419453234103,-99.75551363578894,-45.028433431789296,-145.7736264021185
-1678862890,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.7,3.2,24.93,21.8,56.3,30.2,1007.1,-29.650800141056017,-154.78690779306098,-2.9555188382951094,-100.48029100113607,-3.0273224801591336,-99.75516574027503,-45.03033506297677,-145.7743887152115
-1678862900,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.4,3.5,24.93,21.81,56.3,30.2,1007.2,-29.65115432105798,-154.78811700701613,-2.9554723084109797,-100.4815859647449,-3.0274125371486313,-99.75555806129411,-45.034740394661654,-145.76757178253712
-1678862910,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,3.2,24.93,21.81,56.3,30.1,1007.1,-29.65119065936458,-154.78656890632564,-2.955602884429371,-100.48125741387997,-3.0273642861513843,-99.75520573334683,-45.03612692273805,-145.77204332270978
-1678862920,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.7,3.4,24.91,21.84,56.2,30.1,1007.1,-29.65099978509775,-154.78556542551576,-2.9554875021932943,-100.48098267068515,-3.02751200165932,-99.75566993312421,-45.0371112174503,-145.76087396642137
-1678862930,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.3,3.2,24.93,21.85,56.2,30.1,1007.1,-29.65108999165839,-154.7852038652228,-2.955624688615619,-100.48075429067612,-3.02734462136,-99.75593318653767,-45.03209257744516,-145.77798432204895
-1678862940,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.6,3.8,24.93,21.85,56.2,30.1,1007.1,-29.65158708218229,-154.7829031508027,-2.955613638072899,-100.48138212777064,-3.0272342823017704,-99.75629761634949,-45.036022028557134,-145.76180436774948
-1678862950,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.1,3.5,24.93,21.85,56.2,30.1,1007.1,-29.651779535301436,-154.78558122783036,-2.9556199186579772,-100.48226811382837,-3.0273554658632076,-99.75615796653207,-45.036705622303465,-145.7611012955433
-1678862960,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.5,3.0,24.91,21.85,56.2,30.1,1007.0,-29.65187669177499,-154.78362821132222,-2.9556698603965503,-100.4822328045412,-3.0273104204353514,-99.75580979974603,-45.03493153238978,-145.77715205009025
-1678862970,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.7,3.5,24.93,21.86,56.2,30.1,1007.1,-29.651387047271133,-154.7856194291225,-2.955660360498911,-100.48209687209508,-3.02738707210859,-99.75630359194685,-45.037220022642124,-145.7749895098851
-1678862980,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.3,3.7,24.93,21.87,56.2,30.1,1007.1,-29.651126113257273,-154.78829444575402,-2.9555288914249216,-100.48216051929525,-3.0274255022628034,-99.75554127364975,-45.032062617680246,-145.76489669415668
-1678862990,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,3.0,24.93,21.88,56.2,30.1,1007.1,-29.651305488406923,-154.78871959823337,-2.955479506938436,-100.4824447651229,-3.0272233321501005,-99.75605008857349,-45.03602163028329,-145.75825223904462
-1678863000,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.3,3.1,24.93,21.9,56.1,30.1,1007.1,-29.651450844652256,-154.78751646699146,-2.955609259497509,-100.48215735202001,-3.0273713112255214,-99.75673627495594,-45.03445807233773,-145.74414808314918
-1678863010,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.7,3.7,24.91,21.9,56.1,30.1,1007.1,-29.65170667447972,-154.78575852979804,-2.9556933004699557,-100.48185684354566,-3.0272714956577507,-99.75584631772409,-45.03467610902642,-145.75235433014612
-1678863020,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.9,3.6,24.93,21.94,56.1,30.0,1007.1,-29.65172437132938,-154.7855333869816,-2.9556132684405245,-100.48147301967609,-3.0273920919356594,-99.75589104572639,-45.03574779324363,-145.74705624753747
-1678863030,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.9,3.5,24.93,21.96,56.1,30.0,1007.1,-29.65126661472604,-154.78747426853067,-2.9554784247515804,-100.48135508757625,-3.0275221310201617,-99.75575590998987,-45.03596579640343,-145.74876036826288
-1678863040,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.9,3.1,24.91,21.97,56.2,30.0,1007.1,-29.651458772308885,-154.78668664890412,-2.9556506379918184,-100.48201886268814,-3.0275167741048046,-99.7554513407298,-45.03507975126696,-145.7604804467905
-1678863050,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.5,3.8,24.93,21.98,56.2,30.0,1007.0,-29.650835839156557,-154.7894493137174,-2.95570439164176,-100.48059284172055,-3.027445827717777,-99.75563418087651,-45.02755245389017,-145.77275950792082
-1678863060,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.3,3.1,24.93,22.0,56.2,30.0,1007.1,-29.651025636594476,-154.7870007567959,-2.955695904357084,-100.48135113906191,-3.0273749163143,-99.75517853298594,-45.030382401690076,-145.7625937599856
-1678863070,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.3,3.5,24.93,22.0,56.2,29.9,1007.1,-29.65155693398438,-154.78573603942252,-2.955715059383573,-100.48243896968364,-3.0273990431706226,-99.75622684644492,-45.0350383443136,-145.74291140927315
-1678863080,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.6,3.5,24.93,22.0,56.2,29.9,1007.1,-29.651566885392,-154.78718015129095,-2.9556148058660643,-100.48179343622103,-3.027477632413893,-99.7557041237606,-45.03219756908875,-145.76587162398323
-1678863090,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.2,3.3,24.91,22.0,56.2,29.9,1007.1,-29.651300129934977,-154.7895346863798,-2.9555718105306705,-100.4822729069965,-3.027549591875076,-99.75620801768652,-45.03042580729379,-145.753969509831
-1678863100,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,3.3,24.93,22.02,56.2,29.9,1007.1,-29.651862830617077,-154.78560760412654,-2.955598185456958,-100.48178399042477,-3.027436194038155,-99.75777759221792,-45.0306989305027,-145.74633220194775
-1678863110,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.7,2.7,24.93,22.02,56.3,29.9,1007.1,-29.651676937523156,-154.7855237159511,-2.955627921808918,-100.48232087611453,-3.0273230373289755,-99.75653061819553,-45.03279920659415,-145.77000643293425
-1678863120,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.0,3.5,24.9,22.04,56.3,29.9,1007.2,-29.651126004573335,-154.7875719103324,-2.955510063022693,-100.48234558466868,-3.0274169267885105,-99.75698254667066,-45.03094219370368,-145.76405350553964
-1678863130,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.9,3.2,24.91,22.04,56.3,29.8,1007.1,-29.651726068880066,-154.78673324506866,-2.955470209643228,-100.48290343826937,-3.027427303791626,-99.75720853884228,-45.03389673170628,-145.75790086606324
-1678863140,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.3,3.1,24.91,22.06,56.3,29.8,1007.1,-29.65185739531199,-154.78700685510685,-2.9553851085959666,-100.48331447776042,-3.0274392937624977,-99.75738299279013,-45.03735619277124,-145.7619996228696
-1678863150,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.6,3.5,24.91,22.06,56.3,29.8,1007.1,-29.65157883165958,-154.78649304795374,-2.955647101915497,-100.48280456961514,-3.027316219631043,-99.75818753411318,-45.03042871869131,-145.77070351146267
-1678863160,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.3,3.2,24.91,22.09,56.4,29.8,1007.1,-29.6519418613616,-154.7858676420439,-2.955660911539009,-100.48408459513865,-3.027279717579864,-99.75717060251856,-45.02978841714574,-145.75688430455764
-1678863170,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.2,2.8,24.91,22.09,56.3,29.8,1007.2,-29.651354706916635,-154.78867414450545,-2.9555842753209105,-100.48369943486009,-3.0274473340945107,-99.75789775147013,-45.03343467486956,-145.74133096904356
-1678863180,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.7,2.8,24.91,22.09,56.4,29.8,1007.2,-29.651359244652635,-154.78718422321646,-2.9554742459098855,-100.48369377966186,-3.0272555331066164,-99.75853296072648,-45.0341548255919,-145.74077278729175
-1678863190,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.5,3.4,24.9,22.1,56.4,29.8,1007.1,-29.651829544239835,-154.7856860461383,-2.9555114889910024,-100.48369919324612,-3.0274522493837215,-99.75823033097141,-45.033429774876915,-145.75009284539445
-1678863200,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.6,3.0,24.93,22.11,56.4,29.7,1007.1,-29.65172879830736,-154.78583749775743,-2.9555094249528686,-100.48404344853267,-3.0273282214255803,-99.7566484191704,-45.03027535084102,-145.75351553819556
-1678863210,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.7,3.6,24.93,22.12,56.4,29.7,1007.1,-29.651692967873558,-154.78582922581012,-2.9554784510078607,-100.48335788929818,-3.0273249114514433,-99.75708391309634,-45.03060647223623,-145.75283885015432
-1678863220,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,3.3,24.91,22.13,56.3,29.7,1007.1,-29.65202667364177,-154.78455573676726,-2.95526296211725,-100.48313924363768,-3.027432962799286,-99.75741951879361,-45.034163444394146,-145.72467598838284
-1678863230,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.7,3.0,24.93,22.13,56.4,29.7,1007.2,-29.652010726540606,-154.78430902933263,-2.955551239367264,-100.48361803670956,-3.0273635237121344,-99.75593007136075,-45.03083652607938,-145.75049554532617
-1678863240,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.3,3.4,24.93,22.14,56.4,29.7,1007.1,-29.651764357284506,-154.7856346176776,-2.9554691433307534,-100.48215584940228,-3.027518851332272,-99.75663251227984,-45.03170759259433,-145.74076800429438
-1678863250,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.6,3.1,24.93,22.15,56.4,29.7,1007.1,-29.651274274768156,-154.7886779855049,-2.955343862741084,-100.48196893160915,-3.027653023783728,-99.75713153471953,-45.035101363786296,-145.734505709834
-1678863260,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.4,3.7,24.93,22.15,56.4,29.7,1007.1,-29.65187745962664,-154.78477403781721,-2.9554117806257563,-100.48204624156483,-3.027433264917065,-99.75630869991929,-45.03478787172182,-145.74345894209964
-1678863270,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.9,3.1,24.91,22.16,56.4,29.7,1007.2,-29.652000851698908,-154.78518622007314,-2.9555187985306386,-100.48243352869123,-3.027339456787803,-99.75684073815599,-45.03502058767536,-145.73694442749797
-1678863280,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.4,2.8,24.91,22.16,56.4,29.6,1007.2,-29.651558198368377,-154.7880765614668,-2.9554799665932934,-100.48238036195546,-3.0273294957025443,-99.75692121451364,-45.02833787810434,-145.74735193353314
-1678863290,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.9,2.9,24.93,22.17,56.4,29.6,1007.2,-29.65148074536849,-154.7870780307037,-2.955550124037777,-100.48208509512213,-3.0273917363232314,-99.75693881165621,-45.03024644636713,-145.75481317648658
-1678863300,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.9,2.9,24.93,22.18,56.5,29.6,1007.1,-29.65230363824908,-154.78420524714494,-2.955510397796118,-100.48160343556475,-3.0273797447622863,-99.75755371616829,-45.03310406151446,-145.74476859104595
-1678863310,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.1,2.7,24.93,22.18,56.5,29.6,1007.1,-29.65199615688838,-154.7826675909254,-2.9554711528686175,-100.48195093155034,-3.0273307777257004,-99.75645786149052,-45.032717839499185,-145.74435112787086
-1678863320,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,2.8,24.93,22.19,56.5,29.6,1007.2,-29.652944248498727,-154.77902764189784,-2.9557531401327104,-100.48227118641476,-3.027334194215991,-99.75746064136783,-45.03410687882935,-145.74498187231
-1678863330,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.4,3.2,24.93,22.2,56.5,29.6,1007.2,-29.652215926452826,-154.7829214951732,-2.9557018097748506,-100.48186149648704,-3.027349890715885,-99.7561313598241,-45.02709971959409,-145.7498729937804
-1678863340,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.9,2.8,24.93,22.21,56.5,29.6,1007.2,-29.65314869141505,-154.78027527638815,-2.9556163119831815,-100.48292433938931,-3.0274742467151667,-99.75642249908725,-45.03408323638085,-145.74864009516367
-1678863350,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.8,2.6,24.9,22.21,56.5,29.6,1007.2,-29.652785011546353,-154.78160808325396,-2.955660619096962,-100.48316115332078,-3.027450581271798,-99.75553544845982,-45.03477439706771,-145.74605393997484
-1678863360,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.2,2.8,24.93,22.24,56.5,29.6,1007.2,-29.65237633962307,-154.78265718436134,-2.9556614837840867,-100.48322049295453,-3.027244625216821,-99.75539939181347,-45.02859544997126,-145.75002548831364
-1678863370,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.9,3.7,24.93,22.24,56.5,29.6,1007.2,-29.65224147820195,-154.784789809032,-2.955658054213946,-100.48312189901955,-3.027326448735554,-99.75500902857836,-45.031751476254065,-145.74829990007711
-1678863380,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,2.9,24.93,22.24,56.5,29.5,1007.2,-29.653051824836886,-154.7832378390234,-2.955798268361644,-100.48287024636933,-3.027433828744242,-99.75576369835963,-45.0278877220883,-145.75227419058615
-1678863390,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.3,3.1,24.94,22.25,56.5,29.6,1007.2,-29.65302345256334,-154.78467944140613,-2.9557481784078616,-100.4826439801317,-3.0273104482951325,-99.7558188976774,-45.03386232004096,-145.7408253133929
-1678863400,25.0,25.0,55.0,55.0,0,1300000000,,,3,4.3,3.2,24.96,22.24,56.5,29.6,1007.1,-29.652579476875953,-154.7832481658734,-2.9557521401764038,-100.48282579922633,-3.027406714098881,-99.75551100885362,-45.03126546501911,-145.74361201241067
-1678863410,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,3.3,24.94,22.25,56.5,29.6,1007.1,-29.652732956934052,-154.7830711302508,-2.9557873820420673,-100.48263160722938,-3.0273776033347186,-99.75540840987529,-45.032235135169465,-145.74967342813397
-1678863420,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.2,3.2,24.93,22.25,56.4,29.6,1007.2,-29.652651873649113,-154.78276369387356,-2.9556237541562966,-100.48289354992868,-3.02737009399102,-99.75601264567447,-45.03454137227653,-145.7495545830751
-1678863430,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.1,3.2,24.91,22.26,56.4,29.5,1007.2,-29.65255596571148,-154.78295333986554,-2.9556529338866944,-100.48242392216702,-3.0272924256900886,-99.75557404341595,-45.029941698643256,-145.76049911923113
-1678863440,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.3,2.7,24.93,22.27,56.4,29.5,1007.2,-29.65280608580699,-154.78265868269776,-2.9557042294695557,-100.48218337890661,-3.027373929607519,-99.7554089861352,-45.03275236542703,-145.75723217111656
-1678863450,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,3.2,24.93,22.27,56.4,29.5,1007.1,-29.65271581573704,-154.78522007271167,-2.95569418128975,-100.48251376895269,-3.027389852842719,-99.75582748175795,-45.0317860101603,-145.75027407523177
-1678863460,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.4,2.9,24.91,22.27,56.5,29.5,1007.2,-29.652352169945182,-154.78501405443592,-2.9555695563110618,-100.48306911665227,-3.0273971509427353,-99.75545755196941,-45.031292167382105,-145.74154757397875
-1678863470,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.1,2.6,24.93,22.28,56.4,29.5,1007.2,-29.65248556628179,-154.7842210463006,-2.9557372161790845,-100.48273098705998,-3.027421218764589,-99.75640953796807,-45.03344566430541,-145.76923085712025
-1678863480,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.0,2.7,24.91,22.29,56.4,29.5,1007.2,-29.652153388696032,-154.78530001020994,-2.9555386496201623,-100.48267544510587,-3.0275041218264875,-99.7568841699853,-45.03293701702846,-145.7721835491111
-1678863490,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.9,2.7,24.93,22.28,56.5,29.5,1007.2,-29.65212049599964,-154.78508352486398,-2.9555654805692995,-100.48232931760056,-3.0274576540507137,-99.75704904751427,-45.03312244391261,-145.76968455140636
-1678863500,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.4,3.0,24.91,22.29,56.5,29.5,1007.2,-29.651845528200997,-154.7860375108785,-2.9554320624589625,-100.4828032918047,-3.0271774227787205,-99.75690888693576,-45.032657142484055,-145.78411328609286
-1678863510,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.6,3.3,24.91,22.3,56.5,29.5,1007.2,-29.6522962681776,-154.7849080892276,-2.9553763175723518,-100.48320713912328,-3.0273845558489842,-99.75684276058911,-45.034070571025644,-145.75546642443373
-1678863520,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.0,3.6,24.91,22.31,56.5,29.4,1007.2,-29.651696191379887,-154.785577350371,-2.9552223537585376,-100.48324658667426,-3.0272295459085043,-99.75729529142541,-45.03666654864127,-145.7560751499499
-1678863530,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,3.4,24.91,22.31,56.4,29.5,1007.2,-29.651779338240978,-154.7840795413994,-2.9555879759006216,-100.48285544516395,-3.027371822369982,-99.75711372294862,-45.03406402379675,-145.76042944135116
-1678863540,25.0,25.0,55.0,55.0,0,1300000000,,,3,10.0,2.9,24.91,22.32,56.4,29.5,1007.2,-29.651345147171146,-154.78419247248675,-2.955620437582846,-100.48353974471858,-3.027380077771991,-99.75692169277352,-45.03391009376625,-145.75879402091434
-1678863550,25.0,25.0,55.0,55.0,0,1300000000,,,3,9.1,2.8,24.93,22.34,56.5,29.4,1007.2,-29.651893435148004,-154.78427910083178,-2.955529520318741,-100.48333742237413,-3.027288848856602,-99.75703540660729,-45.037480700409844,-145.75845571111492
-1678863560,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,3.2,24.93,22.34,56.5,29.4,1007.3,-29.652126036962024,-154.7831483326224,-2.955572012190542,-100.48292903339882,-3.027176793596107,-99.75756036967466,-45.033329712077105,-145.74767787881345
-1678863570,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.5,3.0,24.91,22.34,56.4,29.4,1007.2,-29.651825481241442,-154.78546116292017,-2.9554816317732047,-100.4827419788839,-3.0272134984463372,-99.7569429569427,-45.03553412015091,-145.7525524310706
-1678863580,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,3.3,24.93,22.36,56.4,29.4,1007.3,-29.65172296073506,-154.7830733783591,-2.9555526333565725,-100.48223897824695,-3.0274026800165563,-99.75563742643577,-45.03149789223826,-145.7550849303077
-1678863590,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.4,3.0,24.93,22.36,56.4,29.3,1007.2,-29.6514430324623,-154.78440312784346,-2.955601176802351,-100.48151324964716,-3.02724885700832,-99.75574605658407,-45.029826930424534,-145.7553436773434
-1678863600,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.3,2.6,24.93,22.38,56.4,29.3,1007.2,-29.651768233523942,-154.78481272940462,-2.9556220227219794,-100.48212354594392,-3.0273595268649323,-99.75628033860919,-45.032853474041374,-145.7557808905846
-1678863610,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,2.9,24.93,22.38,56.4,29.3,1007.3,-29.65209055068192,-154.78672117739495,-2.9556902354465375,-100.48206177511969,-3.0272077147287275,-99.75580321633464,-45.031882547284354,-145.7777652324462
-1678863620,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,2.6,24.91,22.36,56.4,29.3,1007.2,-29.651618638275398,-154.787067963769,-2.955668002162337,-100.48281772902818,-3.027041536711873,-99.75624400616759,-45.03251461729023,-145.77050190169788
-1678863630,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.9,3.3,24.93,22.36,56.4,29.3,1007.2,-29.65205208676007,-154.7866094234064,-2.9557249856834673,-100.48323081261745,-3.027246675040683,-99.75501666634916,-45.03114681593894,-145.77780159079094
-1678863640,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.6,3.8,24.91,22.38,56.4,29.3,1007.3,-29.651603269827046,-154.7868947468496,-2.955652120610324,-100.48202035428514,-3.0275204450469135,-99.75510845177766,-45.02626388356997,-145.77585963076083
-1678863650,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.7,4.0,24.93,22.38,56.4,29.3,1007.3,-29.651077810790312,-154.7884916912161,-2.955659516739426,-100.48212613511554,-3.027499484611871,-99.75429424856569,-45.028864597544484,-145.76885146107185
-1678863660,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.4,3.4,24.93,22.39,56.4,29.3,1007.3,-29.65108282386054,-154.78771066671376,-2.9557292658227223,-100.48135630001573,-3.0272723102594847,-99.75432430618976,-45.02526710778704,-145.78408379181315
-1678863670,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.6,2.8,24.91,22.4,56.4,29.3,1007.3,-29.650926123975232,-154.78670792862886,-2.955607774569539,-100.48172301549488,-3.0274138085113593,-99.75438587636316,-45.03330556805636,-145.75938364796065
-1678863680,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.4,2.9,24.93,22.39,56.4,29.3,1007.3,-29.650900854587242,-154.78729645333536,-2.9558764982044785,-100.48150665484327,-3.027358785487255,-99.75456646567076,-45.02785218235442,-145.7605417373449
-1678863690,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.9,3.1,24.93,22.39,56.4,29.3,1007.3,-29.651203471694288,-154.78864734641095,-2.955772909140108,-100.48135630355458,-3.027274896292626,-99.75451700241207,-45.02690975102183,-145.76560034902087
-1678863700,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,3.5,24.93,22.39,56.4,29.3,1007.3,-29.65123790833936,-154.78892004830078,-2.955836987469669,-100.48137140136649,-3.027468213061,-99.75486301656983,-45.028770049852,-145.77788736724912
-1678863710,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.6,3.4,24.93,22.39,56.4,29.3,1007.3,-29.650957149030255,-154.78779700360488,-2.955809696289572,-100.48111753324262,-3.027303205141924,-99.75436325162072,-45.026843101308486,-145.76613539599376
-1678863720,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.6,2.6,24.93,22.39,56.4,29.3,1007.4,-29.650619614215415,-154.78930712999258,-2.9557690426722316,-100.48131239511045,-3.0275343426850543,-99.75426759456583,-45.03044893640115,-145.7681767190483
-1678863730,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,2.9,24.93,22.39,56.4,29.3,1007.4,-29.65042460622934,-154.78840411102198,-2.95570398199126,-100.48075473303619,-3.027529858436325,-99.7546365494194,-45.02699378425589,-145.77819074316326
-1678863740,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.3,3.3,24.93,22.39,56.4,29.3,1007.4,-29.65058454872967,-154.78793262406347,-2.9556857241404693,-100.48113769314358,-3.0275056991679876,-99.7537667808983,-45.02945922428744,-145.76553676510423
-1678863750,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.3,2.7,24.93,22.39,56.4,29.3,1007.4,-29.650944295359825,-154.7889901879511,-2.955558985226139,-100.48112870252865,-3.0275784226976747,-99.7530377372952,-45.028868247696465,-145.76800236146667
-1678863760,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.2,2.5,24.94,22.4,56.5,29.3,1007.4,-29.650464281012745,-154.79138818150744,-2.955786971337224,-100.48148624482317,-3.027485276156452,-99.75314753565104,-45.02500523223784,-145.77757473435528
-1678863770,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.3,3.0,24.96,22.42,56.5,29.3,1007.4,-29.650599642292853,-154.78948497500636,-2.955594612916429,-100.48120716175767,-3.027660648931728,-99.75361229487554,-45.028661413395426,-145.76004055715575
-1678863780,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.3,2.8,24.93,22.42,56.4,29.3,1007.4,-29.649896662990656,-154.79144788686108,-2.955524052626357,-100.480630216422,-3.0275142549771545,-99.75416729770174,-45.02933802322001,-145.78100320397223
-1678863790,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.7,2.8,24.93,22.43,56.5,29.3,1007.4,-29.649833508355297,-154.7911518157684,-2.9555815997751282,-100.4811154503966,-3.027544016044602,-99.7538233888025,-45.02862406235135,-145.78335645873943
-1678863800,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.9,2.5,24.91,22.43,56.4,29.3,1007.4,-29.64997209008328,-154.78940878879862,-2.955515671440065,-100.48067898880088,-3.02759289039787,-99.7537170460194,-45.03153541617842,-145.77131867201763
-1678863810,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,3.2,24.93,22.44,56.4,29.3,1007.4,-29.64993463068228,-154.7900243618753,-2.955584937174115,-100.48066018692552,-3.027659842173565,-99.75441261491093,-45.02334219100571,-145.78562511407458
-1678863820,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.6,2.9,24.93,22.43,56.5,29.3,1007.4,-29.650428051336597,-154.79213266447454,-2.9557626587034846,-100.48004243174209,-3.027506731008687,-99.75416501517793,-45.022002065732394,-145.79104664620755
-1678863830,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.8,3.1,24.93,22.43,56.4,29.3,1007.4,-29.649874226811868,-154.7942063487094,-2.955701687185294,-100.47970064727137,-3.0276102694080116,-99.75486954315112,-45.02554938006835,-145.77756184130638
-1678863840,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.7,2.8,24.93,22.44,56.4,29.3,1007.5,-29.650117894787765,-154.7921475268471,-2.9558194689782464,-100.47957449738234,-3.0275584899938766,-99.75492727081718,-45.02757291584857,-145.7679586661072
-1678863850,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.8,2.6,24.91,22.44,56.4,29.3,1007.5,-29.651279531757154,-154.78929158973045,-2.955834421137749,-100.48041176953302,-3.0276491540646218,-99.75538943973494,-45.03244346815701,-145.7750660706061
-1678863860,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.7,3.1,24.94,22.46,56.5,29.3,1007.4,-29.650851692969376,-154.78947212879686,-2.955800353044366,-100.48014321543378,-3.0276335662891993,-99.75530237923068,-45.03460931643229,-145.762065067866
-1678863870,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.4,2.4,24.93,22.48,56.5,29.3,1007.5,-29.65069688827812,-154.791877216919,-2.9557356465598534,-100.48139528319305,-3.0276335863840727,-99.75513690960693,-45.030904613366744,-145.76693478272878
-1678863880,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.9,3.1,24.93,22.51,56.4,29.2,1007.5,-29.650261990493508,-154.7918648379813,-2.955786841250163,-100.48065018944693,-3.0273915451743623,-99.75422772661096,-45.02884665692822,-145.76804425898112
-1678863890,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.9,3.1,24.93,22.51,56.5,29.2,1007.5,-29.6501192317092,-154.79232592184692,-2.9556606216253423,-100.48042974771316,-3.027488786430314,-99.75416311746774,-45.03282612124096,-145.76154592890174
-1678863900,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.7,3.3,24.93,22.55,56.5,29.2,1007.4,-29.65043927671684,-154.7897146864407,-2.955525555661315,-100.48072155307524,-3.027628145892729,-99.75443197525993,-45.030244277826455,-145.77742376390353
-1678863910,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.0,2.9,24.93,22.55,56.5,29.2,1007.5,-29.650546542400825,-154.78989764035563,-2.9555542852541454,-100.48145616287614,-3.02755074528756,-99.75466868721374,-45.0359575359974,-145.76601661974973
-1678863920,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.3,2.9,24.93,22.55,56.5,29.1,1007.5,-29.650533239178717,-154.79034963740503,-2.955280709949326,-100.48021964279863,-3.0276255286893368,-99.75470392915774,-45.03511967145913,-145.73474242992307
-1678863930,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.6,3.1,24.96,22.55,56.5,29.1,1007.5,-29.650373869899283,-154.79140780030224,-2.955689683252732,-100.4807583300382,-3.0277288375036386,-99.75385748734531,-45.03667393430418,-145.7631635606895
-1678863940,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.7,3.3,24.94,22.53,56.5,29.1,1007.5,-29.65020497178614,-154.79043504257805,-2.9557556062287045,-100.48093535672446,-3.0276705217509448,-99.75402788988472,-45.03878792674009,-145.76481177056272
-1678863950,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.9,2.3,24.94,22.48,56.5,29.2,1007.5,-29.650436311816065,-154.78912689178992,-2.95575659778192,-100.48058280104068,-3.0275182844391453,-99.75394072134982,-45.033815868261826,-145.78369946484625
-1678863960,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.8,2.0,24.94,22.45,56.5,29.3,1007.5,-29.65045774523148,-154.78841839101466,-2.955623979151259,-100.48117628787861,-3.027394506530748,-99.75391999809571,-45.03381287777113,-145.7483016202934
-1678863970,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.2,2.8,24.93,22.43,56.5,29.3,1007.6,-29.65119534629594,-154.787088123265,-2.9558945516120634,-100.48166034970902,-3.0275373935299155,-99.75468726592538,-45.03692132887042,-145.75093411601912
-1678863980,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.1,2.8,24.93,22.4,56.5,29.3,1007.5,-29.651264349024405,-154.7866713394108,-2.9557062153961784,-100.48144325416068,-3.0275177279788004,-99.7554079503008,-45.039357451398985,-145.73262919644228
-1678863990,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.0,2.9,24.93,22.36,56.5,29.4,1007.5,-29.65118984546748,-154.7865978716505,-2.955765541146607,-100.48096883421398,-3.0273592427067824,-99.75496941747225,-45.036488662665306,-145.7491330107535
-1678864000,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.5,2.8,24.94,22.31,56.5,29.4,1007.5,-29.650422332811146,-154.788228558781,-2.955761498378668,-100.48132747034212,-3.027514892209848,-99.75588808398028,-45.03700767765163,-145.75938005050236
-1678864010,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.7,2.2,24.96,22.3,56.5,29.5,1007.5,-29.650621099289985,-154.78942731113852,-2.955488177974883,-100.48110921478886,-3.0275992460869294,-99.75606616326706,-45.03649060010797,-145.73213673170287
-1678864020,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.4,2.7,24.94,22.27,56.5,29.5,1007.6,-29.65080433769449,-154.7879812486576,-2.9558130001351914,-100.48133465382037,-3.027679498317707,-99.75520993077645,-45.03888772076177,-145.7477972289297
-1678864030,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.0,2.9,24.94,22.24,56.5,29.6,1007.5,-29.650669269097946,-154.78857016291028,-2.955702477097031,-100.48087036772404,-3.0276425052762606,-99.75583381865006,-45.03851684579366,-145.74974199807818
-1678864040,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.2,2.4,24.93,22.2,56.4,29.6,1007.5,-29.651378480538,-154.7863172909373,-2.95565209244191,-100.4818303738755,-3.0277458519820835,-99.7555690981964,-45.03657628356133,-145.73848832064763
-1678864050,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.3,2.7,24.93,22.18,56.5,29.6,1007.5,-29.651580998826827,-154.7866413161837,-2.955779540538427,-100.48182746873955,-3.027559623931512,-99.75546848906687,-45.0401476355455,-145.74592037960736
-1678864060,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.1,2.5,24.94,22.12,56.5,29.7,1007.5,-29.651562895770304,-154.78396396042098,-2.9555581971207023,-100.4823199658412,-3.0276699864693364,-99.75515143930424,-45.041333336583385,-145.7257016026144
-1678864070,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.6,2.6,24.94,22.11,56.5,29.7,1007.5,-29.651495025895734,-154.78569964473505,-2.9555759253197222,-100.4822727330691,-3.0275868896163476,-99.754169031563,-45.03954909386298,-145.72786345051074
-1678864080,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.7,3.3,24.94,22.11,56.4,29.8,1007.5,-29.651206148657398,-154.78633367523295,-2.9555286354478105,-100.48225408355323,-3.0276544246181873,-99.75370797347755,-45.03914639485819,-145.75750210967308
-1678864090,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.6,2.8,24.96,22.08,56.4,29.8,1007.5,-29.650656113579323,-154.78720308062924,-2.955563181249634,-100.4814621998019,-3.0275759451880657,-99.75440451343842,-45.03486944549504,-145.74299844376148
-1678864100,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.4,3.1,24.93,22.01,56.4,29.8,1007.5,-29.65103335322062,-154.78535318715328,-2.955700471129694,-100.48269548556357,-3.0276957992067133,-99.75398736629523,-45.0393608385353,-145.72857855123922
-1678864110,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.9,3.0,24.93,22.0,56.4,29.9,1007.5,-29.65066407418778,-154.78915662453863,-2.9555118364017434,-100.48225794801931,-3.0278132712753636,-99.75522217056717,-45.03777782095996,-145.70745506529605
-1678864120,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.9,3.2,24.94,21.99,56.4,30.0,1007.5,-29.6513121433932,-154.78839533462036,-2.9555768225654644,-100.48303125270891,-3.027870814323493,-99.7548018565942,-45.035664653949866,-145.7104091583735
-1678864130,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.1,3.4,24.96,21.97,56.4,30.0,1007.5,-29.651458085170816,-154.78666348532917,-2.955662232226187,-100.48324289768127,-3.0275520032156695,-99.75437410995563,-45.0394961263964,-145.71297321064938
-1678864140,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.3,2.6,24.96,21.97,56.4,30.0,1007.5,-29.65138595296588,-154.78559757104176,-2.9556189617830397,-100.48297446100271,-3.027536925227461,-99.75474698348319,-45.04094588656797,-145.73400376972484
-1678864150,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.0,2.8,24.94,21.94,56.4,30.0,1007.5,-29.651115401266456,-154.78563535302112,-2.9557136972224325,-100.48189368757623,-3.0275406618787546,-99.75475992743021,-45.03912178130022,-145.73838965188844
-1678864160,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.6,2.6,24.94,21.93,56.4,30.0,1007.5,-29.65123674529213,-154.78431284875427,-2.955738635650535,-100.48187292537887,-3.027618141877971,-99.75493457044085,-45.03943374717322,-145.72676670504208
-1678864170,25.0,25.0,55.0,55.0,0,1300000000,,,3,9.0,2.5,24.94,21.94,56.3,30.0,1007.5,-29.651207869687536,-154.7846857955708,-2.9555028061262067,-100.48219632069534,-3.027547160055217,-99.75533689139333,-45.04392601875894,-145.7242791296058
-1678864180,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.1,2.4,24.93,21.87,56.4,30.1,1007.6,-29.651532783410843,-154.78197059499846,-2.955641285141166,-100.4831585955974,-3.0276367613689215,-99.75571789229612,-45.04396193303796,-145.71482432860083
-1678864190,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.9,2.9,24.93,21.87,56.4,30.1,1007.6,-29.651502814091664,-154.78309598238866,-2.9555284451952413,-100.48343337450157,-3.0276751194171765,-99.75513368175007,-45.04830562380312,-145.72580433567626
-1678864200,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.8,3.3,24.93,21.84,56.4,30.1,1007.5,-29.651940898473125,-154.78177245005966,-2.955804187437842,-100.48361123473198,-3.027625336780085,-99.75497677732717,-45.04458000300914,-145.71970232509466
-1678864210,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.3,2.4,24.93,21.82,56.3,30.1,1007.6,-29.651765921362603,-154.7856913339547,-2.955652326705102,-100.48336214669413,-3.027449153412202,-99.75531329620422,-45.04457362645903,-145.71278204476008
-1678864220,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,3.4,24.93,21.8,56.3,30.2,1007.6,-29.651361546811845,-154.7850622203736,-2.9556757400467237,-100.48384043436923,-3.0275693042746417,-99.75537263734678,-45.044305748191,-145.71783592056434
-1678864230,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.6,3.0,24.93,21.82,56.3,30.2,1007.5,-29.651581886713032,-154.78459405977623,-2.9556009439867053,-100.48396297199608,-3.027541857473199,-99.7548281413912,-45.04678982235638,-145.7224032357151
-1678864240,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.7,3.4,24.93,21.82,56.3,30.2,1007.6,-29.65173970661912,-154.78420060234328,-2.955489224972043,-100.48432853753617,-3.0275898065722324,-99.75486602180789,-45.04740217086341,-145.72147111755115
-1678864250,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.9,3.5,24.93,21.81,56.3,30.2,1007.5,-29.65196548857658,-154.78296008792944,-2.955598411541538,-100.48329977002724,-3.027648239813552,-99.75488432350154,-45.04513377718867,-145.72841344518233
-1678864260,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.3,3.2,24.93,21.81,56.2,30.2,1007.6,-29.65228537554305,-154.78076945069162,-2.955585832761134,-100.48436415285875,-3.0275920480240837,-99.75508189967236,-45.05325769782971,-145.72646840378334
-1678864270,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,3.2,24.91,21.8,56.2,30.2,1007.6,-29.652405491245247,-154.78131081014834,-2.9555757089915384,-100.48392318871997,-3.0275026853131113,-99.75587180364501,-45.05024484485308,-145.70901485931998
-1678864280,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.9,3.0,24.91,21.83,56.2,30.2,1007.6,-29.652194833603915,-154.78055140232544,-2.9555566497618226,-100.48460806145562,-3.027595103046549,-99.75566710976929,-45.05076545931408,-145.71451861191701
-1678864290,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.7,2.7,24.91,21.81,56.3,30.2,1007.5,-29.651726564467044,-154.7851903836664,-2.95560807375588,-100.48530154479809,-3.0274327781261996,-99.7561197539714,-45.04626208555883,-145.71641966236663
-1678864300,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,3.2,24.93,21.84,56.3,30.1,1007.6,-29.652329933305804,-154.78300391107794,-2.955644687806776,-100.48476826442175,-3.027655946207757,-99.7565564008859,-45.049077340324786,-145.70853001743725
-1678864310,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,3.3,24.91,21.84,56.3,30.1,1007.6,-29.652448851686067,-154.7844033534782,-2.955671689789101,-100.48488862710842,-3.0274486314010334,-99.75657079361139,-45.04754179048299,-145.7129623940681
-1678864320,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.2,3.4,24.91,21.85,56.3,30.1,1007.6,-29.652326730459514,-154.78469408721452,-2.9554223786245033,-100.4849905094887,-3.0275155331146184,-99.7566262335455,-45.047104780368905,-145.69530447730972
-1678864330,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.8,3.0,24.91,21.86,56.2,30.1,1007.6,-29.652092531712732,-154.7858798902635,-2.9556094789775096,-100.48515286216366,-3.0275536230253723,-99.75743718761052,-45.048711344932435,-145.7156295314291
-1678864340,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,3.0,24.91,21.88,56.2,30.1,1007.6,-29.65263534090748,-154.78096439130502,-2.9558115361597483,-100.48568285181237,-3.0274724951318124,-99.75738689454391,-45.049713546454754,-145.71422719199512
-1678864350,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.1,3.5,24.91,21.88,56.2,30.1,1007.6,-29.65288126100157,-154.7794976724492,-2.9554821830948312,-100.48600767594826,-3.027622737747042,-99.75762290080155,-45.05491183144421,-145.70262364883442
-1678864360,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.2,3.4,24.93,21.88,56.2,30.1,1007.6,-29.652673470689436,-154.781925347957,-2.955506738384762,-100.4859338589984,-3.027563767661156,-99.75771614494725,-45.04911238557209,-145.70298219291897
-1678864370,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.1,3.1,24.93,21.88,56.2,30.1,1007.6,-29.653093033094873,-154.77991769188247,-2.955446893252489,-100.48661357418683,-3.02758818257506,-99.75768116623965,-45.05554739462984,-145.68383429021574
-1678864380,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.4,3.2,24.91,21.9,56.2,30.1,1007.7,-29.65323732760311,-154.77998710010564,-2.9555488704073407,-100.48658372360147,-3.0276712794014173,-99.7571935543013,-45.054298891838215,-145.69694055770333
-1678864390,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.1,3.7,24.93,21.91,56.2,30.1,1007.7,-29.652753657011118,-154.78156648260187,-2.955621978069028,-100.48534595744741,-3.027657056584962,-99.75775896338926,-45.05126206449182,-145.7099104497916
-1678864400,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,3.2,24.93,21.93,56.2,30.1,1007.6,-29.652722432006684,-154.78125823926158,-2.9555358749039318,-100.48522227806416,-3.027532913785386,-99.75739188386517,-45.0525553456885,-145.7048695174785
-1678864410,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.8,3.1,24.93,21.94,56.2,30.0,1007.7,-29.65285627424852,-154.7785358068912,-2.955571015177691,-100.48525845578799,-3.0275144014010307,-99.75650711015876,-45.05173694158569,-145.69911647654385
-1678864420,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.6,3.3,24.94,21.95,56.2,30.0,1007.7,-29.652783726147153,-154.78058306317948,-2.95559563873526,-100.485198077837,-3.0274212722439304,-99.75652836443419,-45.05037497712985,-145.71355560443908
-1678864430,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.3,3.1,24.94,21.96,56.2,30.0,1007.7,-29.653189050217335,-154.77788782987153,-2.9556362080911884,-100.48559127044466,-3.0274650598231427,-99.75682519442263,-45.04843911309936,-145.71766154071958
-1678864440,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,2.9,24.93,21.97,56.2,30.0,1007.6,-29.653378996401806,-154.77955508333622,-2.955506735459495,-100.48530853922252,-3.0274947634672067,-99.75718760657004,-45.05278227169126,-145.6935735695071
-1678864450,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.8,3.3,24.93,21.98,56.2,30.0,1007.7,-29.652760837008174,-154.78215254460645,-2.9554703707473102,-100.48521249061581,-3.0275150474146013,-99.75715641437709,-45.051602559630766,-145.70011619920652
-1678864460,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.2,3.3,24.93,21.99,56.3,30.0,1007.6,-29.653177195153972,-154.78105598136094,-2.9556584700239585,-100.48577957601445,-3.027401993920092,-99.75765933888817,-45.05021028433429,-145.69578993344527
-1678864470,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,3.3,24.93,21.99,56.3,30.0,1007.7,-29.65359138280588,-154.78058798055787,-2.9556850589085486,-100.48547034881724,-3.02755490382887,-99.75760912053914,-45.04826223594492,-145.69726988991027
-1678864480,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.8,3.1,24.93,22.0,56.3,29.9,1007.6,-29.65322763341912,-154.77921288281843,-2.955693053842131,-100.48528614097255,-3.0275266991653442,-99.75742524464326,-45.047105898537495,-145.69930878308384
-1678864490,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.4,3.1,24.93,22.01,56.3,29.9,1007.7,-29.653339086239313,-154.77740110125436,-2.955567214524967,-100.48596793243061,-3.0275314590984044,-99.75783135716998,-45.0519592089327,-145.70643049077617
-1678864500,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,2.6,24.93,22.02,56.4,29.9,1007.8,-29.653272648631837,-154.7788356664697,-2.9555189028729867,-100.48598759348414,-3.027533596527903,-99.75797663692013,-45.05325202218883,-145.69131663676956
-1678864510,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.1,3.3,24.93,22.03,56.3,29.9,1007.9,-29.653749047873067,-154.7754047748323,-2.955636702619506,-100.48545782416511,-3.0275020715149497,-99.75869597502479,-45.05081230028196,-145.70116452150248
-1678864520,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.7,3.1,24.96,22.04,56.3,29.9,1007.9,-29.653576763139004,-154.77780183426503,-2.9556672384045135,-100.48500445133698,-3.02747314822821,-99.75810786788068,-45.04888206401595,-145.69994441819588
-1678864530,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.9,2.9,24.93,22.05,56.4,29.9,1007.9,-29.653628383845447,-154.77698047699374,-2.9556006909686436,-100.48571776657076,-3.0274458939364,-99.75739913300414,-45.050362398306376,-145.68850281205297
-1678864540,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.3,3.1,24.93,22.06,56.4,29.8,1007.9,-29.653589381494324,-154.77620880172447,-2.9556229684295476,-100.48571340037722,-3.0275528514170613,-99.75723595378473,-45.05421868625313,-145.69006000188597
-1678864550,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.5,3.0,24.93,22.08,56.4,29.8,1007.9,-29.653185361886365,-154.77743509722455,-2.9556471266766016,-100.48578170436495,-3.0274398731174506,-99.75760103713891,-45.049475472347886,-145.7005604254069
-1678864560,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.4,2.7,24.91,22.08,56.4,29.8,1008.0,-29.65351520224605,-154.77731645376878,-2.955595698930942,-100.48629616762777,-3.027565776808477,-99.75809650201916,-45.05326505960107,-145.6954542992964
-1678864570,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,2.9,24.91,22.09,56.4,29.8,1008.0,-29.653268168495934,-154.7785029413553,-2.9555373621250975,-100.48605553519523,-3.0275113757710024,-99.75809888058421,-45.052852449595136,-145.7012842083419
-1678864580,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.1,2.8,24.93,22.09,56.4,29.8,1008.0,-29.65334686049438,-154.77963397773152,-2.9556974797852797,-100.48560357910453,-3.0273693573216724,-99.75835947478389,-45.0514749203935,-145.71391781110674
-1678864590,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.6,2.7,24.91,22.1,56.4,29.8,1008.0,-29.653595872773337,-154.77930059164188,-2.9556867699358387,-100.48532935467875,-3.027442804410586,-99.75905088599858,-45.05166885484972,-145.7034486837547
-1678864600,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.2,3.1,24.93,22.1,56.3,29.7,1008.0,-29.653135709017555,-154.78006029420317,-2.9557681669192437,-100.4851759392912,-3.027374855784963,-99.75936689579308,-45.05160084324303,-145.6984181452438
-1678864610,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.9,3.2,24.91,22.11,56.4,29.8,1008.0,-29.653677804942916,-154.7803451245489,-2.9557426322154434,-100.48572163122248,-3.0273864011199825,-99.75964133798864,-45.04957762485923,-145.70267245951183
-1678864620,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.3,2.9,24.91,22.12,56.4,29.7,1008.0,-29.653445672752625,-154.77945681164863,-2.955715164888168,-100.48611455848973,-3.027269657707217,-99.75913257852281,-45.04669983051326,-145.7014289808157
-1678864630,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.0,3.5,24.91,22.12,56.4,29.7,1008.0,-29.654040429399426,-154.78047838484815,-2.955683795250116,-100.4863252513913,-3.0273893828630563,-99.758563244925,-45.05911100858937,-145.7127576451881
-1678864640,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.0,3.4,24.93,22.13,56.4,29.7,1008.0,-29.65433985799566,-154.78048679853052,-2.9557655179703115,-100.48600905760081,-3.0271787265158294,-99.75857074683246,-45.057286094634854,-145.72208230022648
-1678864650,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.4,3.4,24.91,22.14,56.4,29.7,1008.0,-29.653353830665125,-154.78208587578314,-2.9556797751231563,-100.48511415177818,-3.0271704198013887,-99.75911672719472,-45.05330699646378,-145.7186491007596
-1678864660,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.8,3.2,24.93,22.15,56.3,29.7,1008.0,-29.65376706767817,-154.7792423072733,-2.955771581896661,-100.48599298567805,-3.027196585904195,-99.7586022782152,-45.0593637195119,-145.70724574907194
-1678864670,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.5,3.2,24.91,22.15,56.4,29.7,1008.0,-29.653941175261217,-154.77871652273248,-2.955708444063702,-100.48649614722187,-3.0271748155650124,-99.75863111953724,-45.057736200704916,-145.7048114475643
-1678864680,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.4,3.0,24.91,22.17,56.4,29.7,1008.0,-29.654082358114483,-154.7836554437539,-2.9556657723420128,-100.48606647872022,-3.0272427343988806,-99.75865267589363,-45.05761459930553,-145.7356259140968
-1678864690,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,3.6,24.9,22.17,56.4,29.7,1008.0,-29.654002911540292,-154.78051479376512,-2.955638736730348,-100.48583194297643,-3.0273114747665595,-99.75900903930905,-45.061632988084256,-145.72527026796175
-1678864700,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.3,3.0,24.91,22.17,56.3,29.6,1008.0,-29.653605557424413,-154.78233153249073,-2.9557607411059057,-100.48652889706887,-3.027296982192484,-99.7579560310601,-45.05942084054192,-145.7338507471237
-1678864710,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.5,3.6,24.91,22.18,56.3,29.7,1008.0,-29.653826034678513,-154.7807119211713,-2.9555804252473585,-100.48544138173197,-3.027345628898149,-99.75826938076881,-45.06123699290307,-145.72379165048173
-1678864720,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.5,3.9,24.93,22.18,56.3,29.6,1008.0,-29.653389063718635,-154.77969435084657,-2.955635664521906,-100.48514994798398,-3.0274507041565983,-99.75809637062196,-45.0605145763511,-145.73137933543276
-1678864730,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.6,3.8,24.94,22.18,56.2,29.6,1008.1,-29.6531177841346,-154.780898777529,-2.955598001241922,-100.48414428710535,-3.0273728641635174,-99.75850583750491,-45.05728570161728,-145.73620482032015
-1678864740,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.1,3.9,24.93,22.19,56.2,29.6,1008.0,-29.652696118766123,-154.7831677813096,-2.955585229254589,-100.48477830627398,-3.027387340520067,-99.75625271571374,-45.059630673835265,-145.73224646926496
-1678864750,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.6,3.3,24.93,22.19,56.2,29.6,1008.0,-29.652913442365897,-154.78179731398924,-2.9555397541923045,-100.48483805423936,-3.0275150628981273,-99.75713229637441,-45.05769881348997,-145.72989416511922
-1678864760,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,3.1,24.94,22.19,56.3,29.6,1008.0,-29.65290010035659,-154.78203375951838,-2.955573771466434,-100.48450515470967,-3.0274229830288704,-99.75609176142653,-45.0575517151401,-145.73049114849985
-1678864770,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,2.6,24.96,22.2,56.3,29.6,1008.0,-29.653146219624386,-154.78172041096906,-2.955445707126127,-100.48530111499097,-3.027443586076372,-99.75598101337101,-45.05998020569085,-145.73707700101866
-1678864780,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.6,3.1,24.94,22.21,56.4,29.6,1008.0,-29.652853561919205,-154.78380831320243,-2.9554467130146356,-100.48409045210732,-3.027333595619732,-99.75608485041083,-45.05478269339005,-145.74336215774696
-1678864790,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.7,3.0,24.93,22.21,56.4,29.6,1008.0,-29.65290080484637,-154.78543640424832,-2.955306483851534,-100.48454135564887,-3.0274567532247647,-99.75570586358513,-45.063206775672114,-145.754730102435
-1678864800,25.0,25.0,55.0,55.0,0,1300000000,,,3,9.1,2.4,24.94,22.23,56.4,29.6,1008.0,-29.652808900179263,-154.7837693634488,-2.9553441471243853,-100.48474808236635,-3.027436656418225,-99.75505535920097,-45.06189272291696,-145.75810116439322
-1678864810,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.5,2.9,24.96,22.23,56.4,29.6,1008.0,-29.652647432537137,-154.78544545809518,-2.954996223726945,-100.48410694786328,-3.027492150004906,-99.75605097918724,-45.060730002375465,-145.73860226080183
-1678864820,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.1,3.0,24.96,22.24,56.4,29.6,1008.0,-29.651689355315256,-154.78775175651154,-2.9551911078542856,-100.4841496181241,-3.027577900996971,-99.75520839134735,-45.05654669931407,-145.77577432909143
-1678864830,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,2.8,24.96,22.24,56.4,29.6,1008.0,-29.651703252388305,-154.78597732456893,-2.9554335604211768,-100.48372744344098,-3.027588983425071,-99.75634213932733,-45.058752136304896,-145.7742337149027
-1678864840,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.7,3.1,24.96,22.25,56.4,29.6,1008.1,-29.65243415590563,-154.78636906488143,-2.9553595113735347,-100.48281187227954,-3.027627286529469,-99.75611680352718,-45.06065103393213,-145.7827988336056
-1678864850,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.5,3.3,24.97,22.25,56.4,29.6,1008.1,-29.651770881257207,-154.7864682536763,-2.955443567193105,-100.48259245503078,-3.02768391031764,-99.75535184934155,-45.05585037869341,-145.76874384420321
-1678864860,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.7,2.4,24.97,22.25,56.4,29.6,1008.0,-29.65183836409051,-154.7875487356116,-2.9554352735322627,-100.48325945855059,-3.027649987338977,-99.75526329538211,-45.05708166608328,-145.77444670120443
-1678864870,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,3.1,24.94,22.25,56.4,29.6,1008.0,-29.651657752113532,-154.78813425755402,-2.9555563169244796,-100.48276689800309,-3.0276171762029787,-99.75561068634858,-45.05659739543455,-145.78390098641395
-1678864880,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.1,3.1,24.94,22.27,56.4,29.6,1008.0,-29.65171912311847,-154.7883605377037,-2.9555832493055028,-100.48265882917562,-3.0275880586105437,-99.75549515497252,-45.05549649247881,-145.76565855310133
-1678864890,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.9,2.9,24.93,22.27,56.4,29.6,1008.0,-29.651899412245683,-154.78544717063997,-2.9555733971816394,-100.48251087767521,-3.0276802529432394,-99.75538573146436,-45.05776626566132,-145.79017292031713
-1678864900,25.0,25.0,55.0,55.0,0,1300000000,,,3,9.2,2.8,24.93,22.27,56.4,29.5,1008.0,-29.651672752467434,-154.7865868969688,-2.955685720717472,-100.48226754402391,-3.027708205199458,-99.75672405502938,-45.05492729219035,-145.78741731591825
-1678864910,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,3.4,24.93,22.28,56.4,29.6,1008.0,-29.651396908352787,-154.7865445875787,-2.955527212137699,-100.48219276881194,-3.0274069257654417,-99.75637440981589,-45.053910005505585,-145.78179050218492
-1678864920,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.0,3.2,24.93,22.28,56.4,29.6,1008.1,-29.651238263925915,-154.78888900907643,-2.955413813893383,-100.48161975754373,-3.0274789988983644,-99.75624116957013,-45.05257156501604,-145.79321336530805
-1678864930,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.0,3.6,24.94,22.29,56.3,29.6,1008.0,-29.65091112682886,-154.7900047357532,-2.955571711758598,-100.48135461731846,-3.027512336639107,-99.75530402638856,-45.04902258313024,-145.80387259576258
-1678864940,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.3,3.5,24.93,22.29,56.3,29.6,1008.1,-29.650763565671546,-154.79189969669935,-2.955588504624189,-100.48094048464598,-3.027641121269732,-99.75484057743006,-45.053614372080744,-145.81938642187436
-1678864950,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.4,3.6,24.94,22.29,56.3,29.6,1008.0,-29.650545739722872,-154.79258278202403,-2.9556436496820666,-100.48108235046178,-3.027548874534798,-99.75550858801309,-45.05417850927607,-145.82524907960803
-1678864960,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.0,3.6,24.93,22.29,56.3,29.5,1008.1,-29.650580473284478,-154.7907654070672,-2.9556626958025074,-100.48063556490338,-3.0275284917787513,-99.7547848202014,-45.053061607207674,-145.8055795352331
-1678864970,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.8,3.2,24.93,22.3,56.2,29.5,1008.1,-29.650304297184725,-154.7948003347847,-2.955464140532657,-100.48069599473097,-3.0276900674856693,-99.75406903641003,-45.052825169431394,-145.80285899213027
-1678864980,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.9,3.6,24.93,22.31,56.3,29.6,1008.1,-29.64991445458184,-154.79454051031757,-2.955570729024747,-100.48094406290032,-3.027552436951905,-99.75454941583544,-45.052575246324,-145.79985396692848
-1678864990,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.5,3.2,24.93,22.31,56.3,29.5,1008.0,-29.649772400101764,-154.79435029087466,-2.9554812933654118,-100.48115484359725,-3.0277160989567315,-99.7541390500549,-45.0522397468675,-145.80198274236068
-1678865000,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.6,3.0,24.91,22.32,56.3,29.5,1008.1,-29.64915955402697,-154.79737434229034,-2.9555483493610875,-100.48081057375818,-3.0276743932085584,-99.75427785697359,-45.05292088781584,-145.81232032839284
-1678865010,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.4,2.9,24.93,22.35,56.4,29.5,1008.1,-29.649224719186883,-154.79931978339687,-2.9555542189795325,-100.48110335426357,-3.027584146385645,-99.75461285959074,-45.048546296374354,-145.8091730606584
-1678865020,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.0,2.5,24.93,22.35,56.4,29.4,1008.1,-29.648686565949514,-154.79867978621792,-2.955344613745514,-100.48173064347303,-3.0276201679281494,-99.75544346264188,-45.05069499100796,-145.81152887792712
-1678865030,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.0,2.9,24.91,22.34,56.4,29.4,1008.1,-29.648906530229993,-154.798411888863,-2.955441862971711,-100.48279399328395,-3.0276556474688974,-99.75514242746594,-45.04894889948359,-145.80311094273736
-1678865040,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,4.1,24.91,22.35,56.3,29.4,1008.1,-29.648534874473565,-154.79751128872707,-2.9554120229366325,-100.48156152684871,-3.0276092758238207,-99.75467704613116,-45.05003837033256,-145.80525718582953
-1678865050,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.7,3.1,24.93,22.35,56.3,29.4,1008.1,-29.648833441091963,-154.79888531405174,-2.9554684876097332,-100.4815571222772,-3.0276349398383564,-99.75433357754021,-45.04633545218158,-145.8152675338102
-1678865060,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,3.4,24.91,22.35,56.4,29.4,1008.1,-29.648702367261063,-154.79809356460254,-2.9555394365531966,-100.48198462629045,-3.027709114570443,-99.75447779556029,-45.04661827569052,-145.80776291255393
-1678865070,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.6,2.9,24.93,22.35,56.4,29.4,1008.0,-29.648415034757992,-154.79896961979867,-2.9554031902324733,-100.48254112784392,-3.0276793000993143,-99.75412629885945,-45.04833032492185,-145.80592869532018
-1678865080,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.0,2.9,24.93,22.36,56.4,29.4,1008.1,-29.648109908998507,-154.79922220211776,-2.955594872439393,-100.48294849534432,-3.0278619854451057,-99.75478568903958,-45.04819694774621,-145.81187736001291
-1678865090,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.5,3.0,24.93,22.35,56.4,29.4,1008.1,-29.648372756770343,-154.79628879023966,-2.9554753805276937,-100.48313755158173,-3.027715840735445,-99.75503488461128,-45.052603388731676,-145.81402339806115
-1678865100,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.5,2.8,24.91,22.35,56.4,29.4,1008.1,-29.648055956788465,-154.79728246969955,-2.955342449959257,-100.48275747660706,-3.0276140400235807,-99.75450150936905,-45.050537116579726,-145.82891888961777
-1678865110,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.7,3.4,24.93,22.35,56.4,29.4,1008.0,-29.648085291756303,-154.79682294663675,-2.955274368169288,-100.48308469386002,-3.0276343896548283,-99.75449151359818,-45.045713027342096,-145.83152575179457
-1678865120,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.0,2.8,24.93,22.35,56.4,29.4,1008.0,-29.64768370595571,-154.7977365455972,-2.955418152822078,-100.48298320413625,-3.0278389929434235,-99.75480065988235,-45.04594006053349,-145.8476649352421
-1678865130,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.1,2.6,24.91,22.35,56.4,29.4,1008.0,-29.6478490933301,-154.8029626483396,-2.9553377012100968,-100.48390992070063,-3.0276976786418013,-99.75464049269156,-45.04180961510724,-145.83245605286785
-1678865140,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,3.1,24.93,22.35,56.4,29.4,1008.1,-29.647609942848522,-154.80110803336396,-2.9551984590915485,-100.48338506774688,-3.0278026801125812,-99.7547023809933,-45.04409329972543,-145.84577270031235
-1678865150,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.2,2.9,24.93,22.38,56.4,29.4,1008.1,-29.647581949488966,-154.80140642938466,-2.9552727247497454,-100.48407417078168,-3.027804998285832,-99.75463255683036,-45.04489547056085,-145.852057057546
-1678865160,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.2,2.5,24.93,22.41,56.4,29.4,1008.1,-29.647376527985866,-154.8030254864978,-2.9555005385616333,-100.48341595643363,-3.027697740284486,-99.75557082035968,-45.04119833311247,-145.84436904119627
-1678865170,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,3.0,24.9,22.4,56.4,29.3,1008.0,-29.64699135177568,-154.8001936940533,-2.955371121576738,-100.48361546280466,-3.027641658152616,-99.75467353831864,-45.04009552568101,-145.83637091916302
-1678865180,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,2.8,24.93,22.42,56.4,29.4,1008.0,-29.64650062526468,-154.80434628038665,-2.955159526872681,-100.48310106265103,-3.0276263316100387,-99.75399592046134,-45.03983443944549,-145.83973959507736
-1678865190,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.9,3.7,24.93,22.44,56.5,29.3,1008.0,-29.646626931964107,-154.8039294262169,-2.9554072801097355,-100.48243712628457,-3.027703333912652,-99.75352337529215,-45.03604491519772,-145.84600061309786
-1678865200,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.0,3.3,24.93,22.45,56.4,29.3,1008.0,-29.646880030134845,-154.80434769079147,-2.9555700143665495,-100.48238623897849,-3.0278237459874244,-99.75312097466,-45.03863114236974,-145.8337601701573
-1678865210,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,3.0,24.93,22.45,56.4,29.3,1008.0,-29.646996902989482,-154.80475956291676,-2.9554151408997735,-100.48196537012181,-3.0279271145910713,-99.75277109162059,-45.036922921185806,-145.8418148778366
-1678865220,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.3,2.7,24.94,22.44,56.4,29.3,1008.1,-29.64620493247814,-154.8044720694313,-2.95541819517808,-100.48138573824686,-3.027735773417154,-99.75242535864655,-45.03516842452783,-145.85427667628718
-1678865230,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.7,3.2,24.93,22.44,56.4,29.3,1008.0,-29.64621332840761,-154.80710860298566,-2.9554895077564263,-100.48102608107548,-3.027799573843158,-99.75384612167169,-45.034652686249814,-145.84518527122697
-1678865240,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.9,3.0,24.93,22.43,56.4,29.3,1008.1,-29.64683263873349,-154.80430208073847,-2.9555242591176767,-100.48095600840364,-3.027947455248179,-99.75396050215305,-45.036102907378776,-145.8408612933012
-1678865250,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.1,2.2,24.93,22.43,56.4,29.3,1008.0,-29.646177364384005,-154.80533640824126,-2.9553703830610605,-100.48221113970423,-3.0278712649225756,-99.75222664077488,-45.034750877562274,-145.86345126007026
-1678865260,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.5,3.0,24.91,22.42,56.4,29.3,1008.0,-29.64618769992247,-154.80604851782255,-2.955287413714349,-100.48165275542004,-3.0279044465607123,-99.752622280046,-45.03582505869985,-145.84453727882413
-1678865270,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,2.6,24.93,22.42,56.4,29.3,1007.9,-29.645918907060995,-154.80562516333296,-2.9553957716458967,-100.48153970848833,-3.0279615632972003,-99.75201228192893,-45.036069469795066,-145.851256776138
-1678865280,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.3,3.5,24.94,22.42,56.4,29.3,1008.0,-29.646055276938966,-154.80624670846703,-2.9552789280160514,-100.48082070504405,-3.0279883209169167,-99.75092900086274,-45.03493816757276,-145.83920137454467
-1678865290,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.7,3.6,24.94,22.42,56.4,29.3,1008.0,-29.64642993838502,-154.80529427624717,-2.9553493153427226,-100.48021179168974,-3.028010685733271,-99.75152593481536,-45.03246672642426,-145.83139182288042
-1678865300,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,2.6,24.96,22.42,56.4,29.3,1008.0,-29.646299166130845,-154.80586265787034,-2.955379117256994,-100.48081951686211,-3.0277860845190805,-99.75116815788307,-45.0336882365053,-145.8473588578814
-1678865310,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.9,2.6,24.96,22.42,56.4,29.3,1008.0,-29.646683720733588,-154.8043152805367,-2.9554962316812343,-100.48018984315522,-3.02773223352337,-99.7516768645087,-45.030160064162466,-145.85702757900003
-1678865320,25.0,25.0,55.0,55.0,0,1300000000,,,3,10.1,1.8,24.93,22.43,56.4,29.3,1008.0,-29.646281093708065,-154.8060708029076,-2.9554673477994924,-100.48054106204259,-3.027904456924875,-99.75196126272495,-45.032389198401354,-145.8571595786572
-1678865330,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.2,3.1,24.94,22.43,56.4,29.3,1008.0,-29.64618625512333,-154.80464678837114,-2.9554177678551694,-100.48010315257592,-3.027923519898268,-99.75183530447359,-45.03175696771456,-145.8452802660932
-1678865340,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.4,3.5,24.94,22.43,56.4,29.3,1008.0,-29.646175271139306,-154.8057656919804,-2.9554538427550785,-100.48029608150041,-3.027743465745555,-99.75118880511991,-45.03063844714289,-145.85260601848327
-1678865350,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,3.3,24.94,22.44,56.4,29.3,1008.0,-29.646580561669413,-154.80413952725183,-2.9553242093586523,-100.48033570170792,-3.0279512439935337,-99.75093043700276,-45.03460044761703,-145.84031826745118
-1678865360,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.9,3.0,24.93,22.44,56.3,29.3,1008.0,-29.646339451022918,-154.80815647339793,-2.955356507154077,-100.48007545366498,-3.0278831998103852,-99.75119527967972,-45.0304541261533,-145.85317571917042
-1678865370,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.4,3.1,24.93,22.43,56.3,29.3,1008.0,-29.6460267151892,-154.80842094789134,-2.955258818046681,-100.48022210321732,-3.0278336399904293,-99.75108233578537,-45.031010796355346,-145.84911299346578
-1678865380,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.0,4.1,24.94,22.45,56.2,29.3,1008.0,-29.645975251718898,-154.80646264299483,-2.955368033529282,-100.48056088932962,-3.02790243162161,-99.75057007829928,-45.03208135913164,-145.8476155705207
-1678865390,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.1,3.0,24.94,22.45,56.2,29.3,1008.0,-29.645636107179392,-154.80808928083766,-2.9554332269568877,-100.48091527609803,-3.0280238544279015,-99.75106250785427,-45.03288108957329,-145.85054401606897
-1678865400,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.6,3.5,24.94,22.5,56.2,29.3,1008.0,-29.64521040566151,-154.80893584378353,-2.9550875270318744,-100.4815262390199,-3.0280835308172884,-99.75087759059898,-45.036770119486064,-145.84440153897899
-1678865410,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,3.6,24.96,22.49,56.2,29.3,1008.0,-29.645467757077817,-154.8092741575983,-2.955360155617578,-100.48181552824386,-3.02799914569297,-99.74995501165117,-45.03456469786108,-145.83950727391925
-1678865420,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,3.3,24.96,22.49,56.2,29.3,1008.0,-29.644947544325415,-154.80966330342392,-2.9554468635531492,-100.48163492398159,-3.028038242230303,-99.7507287500426,-45.03050025112056,-145.8453335846859
-1678865430,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.6,3.2,24.97,22.49,56.2,29.3,1008.0,-29.64531457885264,-154.80864785237608,-2.9553810088692503,-100.48251796234979,-3.0280143749183246,-99.75032924987235,-45.03507869263693,-145.8479424150434
-1678865440,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.1,3.1,24.96,22.5,56.2,29.3,1008.0,-29.64495338094302,-154.81064164760923,-2.9553197265296998,-100.48176926890132,-3.0279601034570085,-99.75105520942837,-45.03555721372895,-145.85884872196215
-1678865450,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.9,3.0,24.96,22.5,56.3,29.3,1007.9,-29.64461637899271,-154.8116492509534,-2.9552310140056086,-100.48161194500493,-3.028067067483846,-99.75121654572852,-45.03216338904764,-145.85046136803905
-1678865460,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,3.1,24.94,22.5,56.3,29.3,1007.9,-29.644182331862016,-154.8103278148568,-2.95514216857699,-100.48094970145635,-3.028107666621719,-99.75056287629113,-45.031905205866956,-145.84913280895907
-1678865470,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,2.7,24.93,22.55,56.3,29.2,1008.0,-29.644674981628025,-154.8098057148336,-2.9551904538671394,-100.4812835878176,-3.028040650926023,-99.75065976272633,-45.03271871631276,-145.84083467614622
-1678865480,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.0,3.4,24.9,22.55,56.4,29.2,1008.0,-29.644605280228703,-154.81025484147858,-2.9551077188839003,-100.48130855622101,-3.0280116516007523,-99.75220452816818,-45.03114620276519,-145.83495881363544
-1678865490,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.8,3.1,24.93,22.55,56.4,29.2,1008.0,-29.644889772926994,-154.80994656480703,-2.9551904636792665,-100.48128179965973,-3.027975382908699,-99.7519933963204,-45.03487289716944,-145.83943009998788
-1678865500,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,2.9,24.94,22.55,56.4,29.2,1008.0,-29.644541498416256,-154.81005158950543,-2.955180057270298,-100.48138330708692,-3.0279519817499905,-99.75190694007186,-45.03334232905906,-145.84306567875515
-1678865510,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.1,3.4,24.93,22.55,56.3,29.2,1008.0,-29.64446189762578,-154.81207170140667,-2.955223618327347,-100.48031628193199,-3.0278773743641043,-99.75175269280639,-45.02787034156633,-145.84078969637207
-1678865520,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.3,2.7,24.93,22.49,56.4,29.2,1008.0,-29.644499450436452,-154.81105122458848,-2.9552626495015764,-100.48038798834607,-3.027877730348223,-99.75242776875518,-45.03484433309626,-145.85075207126414
-1678865530,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,3.4,24.93,22.46,56.4,29.3,1008.0,-29.643563758579447,-154.8139619985071,-2.9549795226271867,-100.48069019014518,-3.0279209552662456,-99.75098619105816,-45.029102208678175,-145.85291969672127
-1678865540,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,2.8,24.96,22.41,56.4,29.3,1008.0,-29.644467850076577,-154.81119558833245,-2.9552750921694915,-100.48056018492464,-3.02789499954681,-99.75203802245228,-45.030961167703225,-145.84895909541652
-1678865550,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.7,3.4,24.96,22.4,56.4,29.4,1008.0,-29.644621763748894,-154.81243823519938,-2.955137640277279,-100.4806776901098,-3.027860329916306,-99.75202790453207,-45.03172424707949,-145.85210144866022
-1678865560,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.3,3.7,24.93,22.36,56.3,29.4,1008.0,-29.64466233700662,-154.81206974429216,-2.9552504671947566,-100.48109096447548,-3.0279012883753658,-99.7517216667837,-45.02932486411928,-145.85017417679325
-1678865570,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.7,3.4,24.96,22.34,56.4,29.5,1007.9,-29.644792177399097,-154.8099227566425,-2.95546373178337,-100.48051209117848,-3.0277435338077057,-99.75226382145884,-45.02993700881348,-145.86951432209938
-1678865580,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.1,3.1,24.93,22.31,56.4,29.5,1008.0,-29.644837261102168,-154.8097023004685,-2.9551715023598657,-100.48033283252522,-3.0277473448635033,-99.75225153205946,-45.03457012996656,-145.86787722159366
-1678865590,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.1,3.4,24.94,22.29,56.4,29.6,1008.0,-29.64439398040863,-154.81197405667106,-2.9552494696252674,-100.48094178645029,-3.0278316349448757,-99.75189618914519,-45.0317406254506,-145.84920885539293
-1678865600,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.6,3.2,24.94,22.29,56.3,29.6,1008.0,-29.644502875285824,-154.81053700794152,-2.955183596544755,-100.48120364132808,-3.0279573994467817,-99.75229765301822,-45.036418604833905,-145.84751686178257
-1678865610,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.5,3.6,24.94,22.28,56.3,29.6,1008.0,-29.644535457379178,-154.81069528867974,-2.9552665356288976,-100.48137295719381,-3.027812806374346,-99.7511564873015,-45.036719025202785,-145.85854101904832
-1678865620,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.7,3.4,24.93,22.25,56.3,29.6,1008.0,-29.644676735069538,-154.81141771499833,-2.95539440857062,-100.48068704389362,-3.027858587476437,-99.75237993300055,-45.02956727067718,-145.85726897789445
-1678865630,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.3,3.2,24.96,22.18,56.3,29.6,1008.0,-29.644692172563985,-154.81036864375082,-2.9553244996021526,-100.48149040485895,-3.0278972033241356,-99.75181181747317,-45.035439878961625,-145.8524802353172
-1678865640,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.4,3.5,24.94,22.18,56.3,29.7,1008.0,-29.644705475885665,-154.81000303691138,-2.9551607203084336,-100.48056116940592,-3.0279408354289084,-99.75259283327482,-45.0361119964363,-145.8531007169618
-1678865650,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.2,2.9,24.94,22.18,56.3,29.7,1008.0,-29.64512222708338,-154.80701621813412,-2.9554832180905626,-100.48022804117703,-3.0279138545905697,-99.75257026032398,-45.03305769701353,-145.87950739087333
-1678865660,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.0,3.1,24.93,22.16,56.3,29.7,1008.0,-29.644728564994583,-154.80829013101203,-2.9554852658858133,-100.48063934807429,-3.0278806618529446,-99.7527217627783,-45.035875832570476,-145.89445972221432
-1678865670,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.0,3.0,24.96,22.15,56.4,29.7,1008.0,-29.64458185856184,-154.81050717548348,-2.955247560090894,-100.48041365085965,-3.0281091596854868,-99.75288127759002,-45.03689975235104,-145.87747171070183
-1678865680,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.5,3.1,24.96,22.13,56.4,29.8,1008.0,-29.644632425121987,-154.80905733354837,-2.955470671273124,-100.48024145708438,-3.0279633189109507,-99.75222955913193,-45.03776711409444,-145.8961737227498
-1678865690,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.9,3.5,24.97,22.1,56.4,29.8,1008.0,-29.644775781020634,-154.80822365779423,-2.955307205712137,-100.48030762037807,-3.0279837455564262,-99.75152645639456,-45.04369058765269,-145.87564145363493
-1678865700,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.9,2.9,24.97,22.09,56.4,29.9,1008.0,-29.644949674644426,-154.80924532347296,-2.9552202353322614,-100.48024537668255,-3.027959132412523,-99.75154312397194,-45.03773566342672,-145.89745713780982
-1678865710,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.8,3.3,24.97,22.06,56.4,29.9,1008.0,-29.645035193864132,-154.8089480515502,-2.955283584974486,-100.48080076949036,-3.0279396755451495,-99.75137990592772,-45.03630101442372,-145.9085275830302
-1678865720,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.3,2.7,24.96,22.05,56.4,29.9,1007.9,-29.64461433481787,-154.80967753124688,-2.9552989933357807,-100.48070091834778,-3.027843173205288,-99.75148343961955,-45.03479133984959,-145.90457748245328
-1678865730,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.3,2.7,24.96,22.03,56.4,29.9,1008.0,-29.644956705557277,-154.81041571033097,-2.955311006302743,-100.48082425555086,-3.0277210146240217,-99.75313607068688,-45.034471303363766,-145.91242796581412
-1678865740,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,2.4,24.93,22.01,56.4,30.0,1008.0,-29.644676128359965,-154.8079007809916,-2.955293522108331,-100.48147092886751,-3.02761640288307,-99.75299646081292,-45.03497085893517,-145.92204311509548
-1678865750,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.5,2.8,24.94,21.99,56.4,30.0,1008.0,-29.64514248115512,-154.80714037242493,-2.955399047544792,-100.48173691641304,-3.0275233885710295,-99.75333431402849,-45.04047277060078,-145.9219449008469
-1678865760,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,2.9,24.93,21.99,56.4,30.0,1008.0,-29.644689720578693,-154.8106275307912,-2.95526378155407,-100.48207749265582,-3.027631042703058,-99.75316560046821,-45.036537802925935,-145.9035435563434
-1678865770,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.6,3.6,24.93,22.0,56.4,30.0,1008.0,-29.644220562048133,-154.8107390097647,-2.9554210410295223,-100.48159604012984,-3.0277266850296036,-99.75321144244833,-45.03214826981473,-145.92107292904834
-1678865780,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.1,2.7,24.93,22.0,56.4,30.0,1008.0,-29.64484768755871,-154.8098308924991,-2.9553014116717695,-100.48225652219543,-3.0278061644487346,-99.7530072391879,-45.03573482015266,-145.91345585827068
-1678865790,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.4,3.0,24.93,22.01,56.4,30.0,1008.0,-29.645319763933102,-154.80715188799812,-2.9553712440458364,-100.48200421895893,-3.027708256060917,-99.75312628948788,-45.03315735824849,-145.92769928991189
-1678865800,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.1,2.8,24.93,22.03,56.4,30.0,1008.0,-29.645452192505765,-154.80758336661222,-2.955213258208909,-100.48209600084881,-3.0277912726161222,-99.75373677884443,-45.03570076452009,-145.91221855056128
-1678865810,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.8,2.6,24.96,22.03,56.4,30.0,1008.0,-29.645015976316465,-154.80746193726176,-2.9553465963274306,-100.48227903340116,-3.0278299962221746,-99.75411900277801,-45.030762900792034,-145.90996300309288
-1678865820,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.4,2.9,24.96,22.03,56.4,30.0,1008.0,-29.64531160277567,-154.80675643982576,-2.9553345206631083,-100.4820632632897,-3.027777732951003,-99.75413109422405,-45.033417103322854,-145.9185742562331
-1678865830,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.9,3.1,24.93,22.01,56.4,30.0,1007.9,-29.64524294973231,-154.8058604796361,-2.955308924673151,-100.48248899461028,-3.02769582780872,-99.75377628647641,-45.03320691204777,-145.9105445155391
-1678865840,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.4,3.2,24.93,22.01,56.4,30.0,1008.0,-29.645277975449144,-154.80702503263615,-2.95532129855413,-100.48249035704562,-3.027813164095905,-99.75410247903314,-45.03186662137296,-145.91386365008353
-1678865850,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.7,3.1,24.93,22.01,56.4,30.0,1008.1,-29.645332917003365,-154.80525636269965,-2.9553907159986452,-100.48267392909393,-3.0277350978230224,-99.75358576363567,-45.03671548253337,-145.90809491689768
-1678865860,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.6,3.1,24.93,22.01,56.4,30.0,1008.0,-29.645134501958367,-154.80555460419362,-2.9553983107971513,-100.48256775200508,-3.027972904735896,-99.75378669114076,-45.036548708954065,-145.91044472325413
-1678865870,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.3,2.4,24.93,22.03,56.4,30.0,1008.0,-29.64539366887076,-154.80604387330257,-2.9551786261042716,-100.48330553090035,-3.0277653900575925,-99.75322126782824,-45.034754282320364,-145.9152488518808
-1678865880,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.3,3.4,24.93,22.05,56.4,29.9,1008.0,-29.64602472645487,-154.8055900581842,-2.955383413340214,-100.48353766642317,-3.027690329248781,-99.75347559462094,-45.03386105009633,-145.9244769319261
-1678865890,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,2.8,24.96,22.04,56.4,30.0,1008.0,-29.646380383314906,-154.80599345046605,-2.9556184399784917,-100.48261077445115,-3.0276235662367643,-99.75429091074383,-45.03797352927858,-145.91026771430933
-1678865900,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,3.2,24.93,22.06,56.4,29.9,1008.0,-29.64701402609958,-154.8023294834388,-2.955595759655651,-100.4834666784616,-3.0274194979628892,-99.75390636149655,-45.03718841897587,-145.91697098267932
-1678865910,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.3,2.8,24.93,22.08,56.4,29.9,1008.0,-29.64664928025172,-154.8032204309094,-2.955477545341449,-100.48297455285491,-3.027610427372071,-99.75420177391955,-45.03518051793786,-145.9236125502182
-1678865920,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.3,3.0,24.93,22.1,56.4,29.9,1008.0,-29.646429581411887,-154.80297497727426,-2.955450129556625,-100.48337313209643,-3.0276490731290058,-99.75375159351104,-45.03806454861838,-145.91263768994318
-1678865930,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.9,3.7,24.96,22.1,56.4,29.8,1008.0,-29.64455444551772,-154.80626796298387,-2.955607465136521,-100.48173031515121,-3.0275967206499637,-99.7530563362205,-45.01089740066643,-145.90291853351084
-1678865940,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.5,2.9,24.96,22.11,56.4,29.8,1008.0,-29.644311904838073,-154.80752377254257,-2.9556736434466413,-100.48228969067046,-3.027508370842034,-99.75330394133974,-45.011313915900296,-145.91302379808397
-1678865950,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,2.9,24.93,22.11,56.4,29.8,1007.9,-29.64413497321896,-154.80989768944892,-2.9554540819947253,-100.48284390799107,-3.0277475183581277,-99.75361829926895,-45.01042053055306,-145.89487994451736
-1678865960,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.8,2.4,24.93,22.12,56.4,29.8,1008.0,-29.643899947617477,-154.8127518597322,-2.955532290698186,-100.48314668061825,-3.0275876581220116,-99.75403850716087,-45.00911493415745,-145.89250012299567
-1678865970,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.4,2.6,24.93,22.13,56.4,29.7,1007.9,-29.643919616028885,-154.81146657623538,-2.955492031118016,-100.4834195758169,-3.0275538542085734,-99.75490721715384,-45.005839528079704,-145.8932655720035
-1678865980,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.6,3.2,24.94,22.14,56.4,29.7,1008.0,-29.644638558933586,-154.81032179424193,-2.9556230165653656,-100.48428792769188,-3.0276723892319652,-99.75534376070866,-45.00815204259897,-145.87210473235203
-1678865990,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,2.7,24.93,22.15,56.4,29.7,1008.0,-29.64410309283547,-154.8097956916077,-2.9556425436113827,-100.48362148382,-3.0278675150291146,-99.75489809384779,-45.00841600079112,-145.89465850516956
-1678866000,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,3.4,24.93,22.15,56.4,29.7,1007.9,-29.644469243163538,-154.80893135517567,-2.955739803276774,-100.4834720893858,-3.027578775281966,-99.75507528794643,-45.00382356171815,-145.89713904420339
-1678866010,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.2,2.5,24.93,22.15,56.4,29.7,1007.9,-29.644584941133452,-154.8080336476976,-2.955682253832357,-100.48293959468333,-3.0274497483939324,-99.75498944976708,-45.00629013451609,-145.89330252862746
-1678866020,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,2.8,24.91,22.17,56.4,29.7,1007.9,-29.644365193710946,-154.80747508970472,-2.9558584494626943,-100.48270707066239,-3.027605177261875,-99.75440650532744,-45.00367997861293,-145.90559995616508
-1678866030,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.7,2.6,24.91,22.17,56.4,29.7,1007.9,-29.644194414094123,-154.80873051062022,-2.9556243868025716,-100.48296386262679,-3.027617314666251,-99.75460315571577,-45.0028301159123,-145.8843352421279
-1678866040,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.9,2.8,24.93,22.18,56.4,29.7,1007.9,-29.644220769624464,-154.8055846988436,-2.955841813858149,-100.48231035813683,-3.027552762082479,-99.75366277057174,-45.002346327559415,-145.8931504796779
-1678866050,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.3,2.8,24.93,22.19,56.4,29.7,1008.0,-29.644219939602394,-154.81030453094235,-2.955658478530469,-100.48268625795274,-3.027541908185264,-99.75365371004922,-45.004125216705475,-145.8929917057132
-1678866060,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.8,2.9,24.93,22.2,56.4,29.7,1007.9,-29.644203609704466,-154.80971626609445,-2.955713507439416,-100.48324265827871,-3.027643505331812,-99.75360010169894,-45.00305949439307,-145.89013956212287
-1678866070,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.8,2.5,24.93,22.21,56.4,29.7,1007.9,-29.644684916289414,-154.80785201938426,-2.9559166420286354,-100.48239076190866,-3.0275696918929014,-99.75437524961528,-45.00159268902739,-145.90021943407518
-1678866080,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.1,3.0,24.93,22.21,56.4,29.6,1008.0,-29.644137117882213,-154.81024363570114,-2.9557070768556932,-100.48253657281224,-3.0274324903452827,-99.7539969283122,-45.00357685729466,-145.89273554821506
-1678866090,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.9,3.2,24.94,22.21,56.5,29.6,1008.0,-29.643766311750603,-154.81084774147772,-2.955580038061152,-100.48256775892067,-3.027575307129098,-99.75314285150257,-45.001207010210955,-145.88365329380898
-1678866100,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.3,2.5,24.93,22.23,56.4,29.6,1008.0,-29.643714871660798,-154.81044489084826,-2.955613904844117,-100.48252009917042,-3.0276353493517005,-99.75323948016282,-45.00489670849948,-145.88498117408048
-1678866110,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.6,2.1,24.93,22.23,56.4,29.6,1008.0,-29.644025235919518,-154.809315878923,-2.9557279285805613,-100.48323314188549,-3.0275545035212397,-99.75395587718587,-45.0029097695656,-145.87712280310237
-1678866120,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.5,2.9,24.93,22.23,56.4,29.6,1007.9,-29.64450146279697,-154.80854502052637,-2.955787641438585,-100.48362550710205,-3.0274934788082817,-99.75356613887384,-45.00305023583802,-145.87219542101806
-1678866130,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,3.0,24.91,22.24,56.4,29.6,1007.9,-29.644370471394595,-154.80724046165747,-2.955824545698184,-100.48348376333584,-3.0275588636018473,-99.75328417126266,-44.99994167839942,-145.89133548538217
-1678866140,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.9,2.4,24.91,22.24,56.4,29.6,1007.9,-29.644347912522434,-154.8089087848698,-2.9557397820293483,-100.48288303947115,-3.027533912148167,-99.75347787331599,-44.99592272009599,-145.90121921541981
-1678866150,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.6,2.9,24.91,22.24,56.4,29.6,1007.9,-29.644815517897204,-154.80667066740278,-2.9556906625571235,-100.4833906212085,-3.0275545235704926,-99.75364571570445,-45.00339191858514,-145.88198464895203
-1678866160,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.4,3.4,24.93,22.24,56.4,29.6,1007.9,-29.64543879106079,-154.8052682699757,-2.955594427206025,-100.48295184206447,-3.0274992193257564,-99.75381930477057,-45.00613455355946,-145.8767085607819
-1678866170,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.0,3.6,24.91,22.24,56.4,29.6,1007.9,-29.64516530965809,-154.80519118332194,-2.9556849558216465,-100.48328063031934,-3.027433484341078,-99.7532752491967,-45.002967643303904,-145.8785603891374
-1678866180,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,2.9,24.93,22.26,56.3,29.6,1007.9,-29.644751142564644,-154.80711042808744,-2.955657610161864,-100.48293416971529,-3.027542266843217,-99.75374146040915,-45.00136281605048,-145.8855597980031
-1678866190,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.9,3.2,24.93,22.28,56.3,29.6,1007.9,-29.645273125008053,-154.8062055349791,-2.955904511748162,-100.482161848855,-3.027550485708996,-99.7541452633732,-45.0009269355329,-145.8804281837459
-1678866200,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.6,2.6,24.93,22.28,56.3,29.5,1008.0,-29.644746935146287,-154.80657556887184,-2.9557045730758444,-100.48164961213645,-3.0274689574045786,-99.75402260475862,-44.99949152760874,-145.89475401094322
-1678866210,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.1,3.0,24.93,22.28,56.4,29.6,1007.9,-29.64556645520915,-154.80360049857643,-2.9558290054539027,-100.48268515378182,-3.0274983047510053,-99.75367757718897,-44.99803356337806,-145.90169351730154
-1678866220,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.1,3.7,24.93,22.29,56.3,29.6,1007.9,-29.645371792196986,-154.8044006554808,-2.955963635087789,-100.4824754887424,-3.0275250676474847,-99.75402783655402,-45.00068343535851,-145.89941326357936
-1678866230,25.0,25.0,55.0,55.0,0,1300000000,,,3,9.0,2.7,24.93,22.31,56.3,29.6,1007.9,-29.645285005873767,-154.8044661292983,-2.9559887503748152,-100.4833963303625,-3.027496547204706,-99.75325513558148,-45.00199873287555,-145.88176176869942
-1678866240,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.6,2.4,24.93,22.31,56.3,29.5,1007.9,-29.645243051886624,-154.80384010273502,-2.955997418489659,-100.48332721478172,-3.0275337049436057,-99.75427665141737,-45.00235734824416,-145.88212879319644
-1678866250,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,3.2,24.93,22.31,56.3,29.5,1008.0,-29.64536593066026,-154.8041881736922,-2.955835317726353,-100.4826800377469,-3.027674006501946,-99.75499583463004,-45.00044595375887,-145.8769285773828
-1678866260,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.7,2.9,24.93,22.31,56.3,29.5,1007.9,-29.644986315868206,-154.80493967736655,-2.9561439301060357,-100.48232397268634,-3.02761311975499,-99.75488458255182,-44.99919880892871,-145.88799696805205
-1678866270,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,2.8,24.93,22.31,56.3,29.5,1007.9,-29.644908554229985,-154.80471942538873,-2.9559329487181945,-100.48170302911123,-3.027582114710925,-99.75418040050054,-45.00528666951312,-145.88027011785084
-1678866280,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.0,3.5,24.96,22.31,56.3,29.5,1007.9,-29.64451215397075,-154.8043390496327,-2.9558901079078574,-100.48115866554254,-3.027425507706031,-99.75286652469026,-44.99796742496518,-145.87747310806793
-1678866290,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.1,2.6,24.97,22.31,56.3,29.5,1008.0,-29.644464239044403,-154.80656772126042,-2.9559894730881293,-100.48161237238976,-3.027657759367781,-99.75355077540543,-44.999042368883586,-145.8770096362197
-1678866300,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.3,2.9,24.96,22.31,56.3,29.5,1007.9,-29.644505527787924,-154.80446353024968,-2.956088821541485,-100.48099870154802,-3.027568647112621,-99.7538636643892,-44.998263281882856,-145.90014708256396
-1678866310,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.9,2.4,24.96,22.31,56.3,29.5,1007.9,-29.64508064741584,-154.80332008918356,-2.956045146605283,-100.48193520237511,-3.0274871688836003,-99.75377867787479,-44.99966120364106,-145.88914800519564
-1678866320,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.6,3.7,24.96,22.31,56.4,29.6,1007.9,-29.6450126469246,-154.8071836840618,-2.95586949814059,-100.48161858433792,-3.0275844710109734,-99.75302393514245,-44.99828001498709,-145.89138155098692
-1678866330,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.7,2.6,24.97,22.31,56.3,29.5,1007.9,-29.64498818302262,-154.80470554054753,-2.955826232961567,-100.48195956219118,-3.0276225881441334,-99.75387312854576,-44.99748104843192,-145.86189905941785
-1678866340,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.9,2.9,24.96,22.32,56.3,29.5,1007.9,-29.645222506188233,-154.80696528046124,-2.9559311593541624,-100.48092320221734,-3.0275798509099743,-99.75314278198499,-44.996436453640236,-145.88900188013847
-1678866350,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.4,3.5,24.97,22.34,56.3,29.5,1008.0,-29.644583044404737,-154.80812583919194,-2.9557856675120493,-100.4801998824563,-3.0276395940023555,-99.75287975569417,-44.99530965131231,-145.89460819233437
-1678866360,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.0,3.1,24.94,22.34,56.3,29.5,1007.9,-29.644824429860375,-154.80688705759187,-2.955897951778861,-100.48028809094731,-3.02758455947774,-99.75334736158494,-44.99770372431874,-145.89788459411335
-1678866370,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.1,3.1,24.96,22.34,56.3,29.5,1008.0,-29.64499152555672,-154.80706538644256,-2.9558450522195754,-100.47974714680359,-3.0276246762990344,-99.75418385118603,-44.99794945837964,-145.8955508040396
-1678866380,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.7,2.7,24.96,22.34,56.3,29.5,1007.9,-29.644804949490094,-154.80710936393146,-2.9558660921745905,-100.47938109793213,-3.0276599611856545,-99.75406906308169,-44.99674150983083,-145.90202994091777
-1678866390,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.7,3.1,24.94,22.35,56.3,29.4,1007.9,-29.644854172952414,-154.80858314009583,-2.956035737363501,-100.47918036327711,-3.027697329807677,-99.75503872320638,-44.99736025273337,-145.89812038353588
-1678866400,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.2,2.6,24.96,22.34,56.3,29.5,1007.9,-29.644328566951298,-154.81059124608353,-2.9559461011559773,-100.47964499576496,-3.0278015805135814,-99.75475875320737,-44.99430859251903,-145.88756171868474
-1678866410,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.7,3.2,24.96,22.36,56.3,29.4,1007.9,-29.644024876067977,-154.8110830374033,-2.9558148590787225,-100.4799174291178,-3.027807987180153,-99.75345571099585,-44.99501133071455,-145.88440734995638
-1678866420,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,3.1,24.94,22.38,56.3,29.4,1007.9,-29.64388125597435,-154.8105123089147,-2.955965756282191,-100.47961135974175,-3.027664355871668,-99.7529103944281,-44.99475285381958,-145.90333881767356
-1678866430,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.6,3.3,24.93,22.38,56.3,29.4,1008.0,-29.64399839004923,-154.8093480021385,-2.955889955447038,-100.47947163369892,-3.0276669244799326,-99.75322193969954,-44.99859949871138,-145.89371382756713
-1678866440,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.1,2.7,24.96,22.38,56.3,29.4,1008.1,-29.6442160845277,-154.80894387158324,-2.955808857698334,-100.48023950027408,-3.027903767942755,-99.75415229930938,-45.0006057573146,-145.89486307059633
-1678866450,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.7,2.3,24.93,22.38,56.2,29.4,1008.0,-29.644294673821463,-154.80772115002338,-2.9558419553989532,-100.48133639587743,-3.027928607436131,-99.7548731658704,-44.9977880166426,-145.8832971855453
-1678866460,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.5,2.6,24.93,22.39,56.3,29.5,1008.0,-29.644405566129972,-154.80935029170382,-2.955766100720178,-100.4817049291568,-3.0276798394137234,-99.75499891697838,-44.99922500354192,-145.88787169029794
-1678866470,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.0,3.1,24.93,22.4,56.3,29.4,1008.0,-29.644477488445915,-154.8078380764667,-2.9557847341941628,-100.48127236139753,-3.0278327433509626,-99.75552946091594,-44.999585277705954,-145.89753237758742
-1678866480,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.8,2.7,24.93,22.4,56.3,29.4,1008.0,-29.643920762074742,-154.81046189993836,-2.9559108781400463,-100.4809188813587,-3.027577360077236,-99.7551719770068,-44.995220342891606,-145.914631316135
-1678866490,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.9,3.3,24.93,22.4,56.3,29.4,1008.0,-29.644436882848396,-154.80787171823204,-2.9558559282668733,-100.48201967121939,-3.0276157585044112,-99.75483911880859,-45.00110469903052,-145.87905913576606
-1678866500,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.9,3.7,24.93,22.41,56.3,29.4,1008.0,-29.644478666238967,-154.80848000661163,-2.9558712971355723,-100.48231707858578,-3.0276473326113655,-99.75504654701994,-44.994612359862664,-145.89561846223523
-1678866510,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.3,3.1,24.93,22.42,56.3,29.4,1007.9,-29.644956805258712,-154.8100632115461,-2.955617107519097,-100.48257900459402,-3.027629853970401,-99.75460101213275,-45.001031710610874,-145.89389689373283
-1678866520,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.3,2.6,24.94,22.48,56.3,29.3,1007.9,-29.6442379743301,-154.81108140663866,-2.9555627481042923,-100.48285247020651,-3.0278158340975287,-99.75447963957139,-45.001162554586344,-145.89464668791516
-1678866530,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.2,2.9,24.93,22.47,56.2,29.3,1008.0,-29.644150793910875,-154.80872593573739,-2.9557821355852925,-100.48368914597013,-3.027737140465758,-99.75498856241205,-45.000642220518145,-145.88734795119265
-1678866540,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.1,3.0,24.93,22.49,56.2,29.3,1007.9,-29.643673365377794,-154.80944780099884,-2.9557898616456986,-100.48334763900544,-3.0277565313134316,-99.75542767890543,-45.003217872850676,-145.87561011854083
-1678866550,25.0,25.0,55.0,55.0,0,1300000000,,,3,9.3,3.5,24.94,22.47,56.2,29.3,1008.0,-29.64420685428413,-154.8084420797479,-2.9559344317930436,-100.48422138640656,-3.027807885379057,-99.75516169572009,-45.00434002693222,-145.87632975724298
-1678866560,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.4,3.6,24.93,22.49,56.2,29.3,1008.1,-29.64421862206233,-154.80886910233545,-2.955868098352068,-100.48356358361474,-3.0275257675787346,-99.75516569356792,-45.00342885293453,-145.8866016548051
-1678866570,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.1,4.3,24.93,22.49,56.2,29.3,1007.9,-29.644146022292375,-154.8069482828284,-2.956048333604695,-100.48246726665725,-3.0276508948527296,-99.7546507423408,-45.00020370798654,-145.89920856776808
-1678866580,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.6,3.4,24.94,22.5,56.2,29.3,1008.0,-29.644210134815637,-154.8087239380458,-2.955796189208726,-100.48244493967054,-3.0276026464976207,-99.75406126814677,-44.99743791929312,-145.88607993269412
-1678866590,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.9,3.6,24.94,22.54,56.2,29.3,1008.0,-29.64424518774888,-154.80901517780973,-2.9559365997413964,-100.48231936421139,-3.0276246831562466,-99.75402944387409,-44.99874562299005,-145.90138180085395
-1678866600,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.3,3.2,24.96,22.51,56.2,29.2,1008.1,-29.644285238815186,-154.80828091128762,-2.956068561851715,-100.48144940574893,-3.0275425157725593,-99.75405304923886,-44.9943443017483,-145.91008174046877
-1678866610,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.0,3.3,24.93,22.48,56.2,29.3,1008.0,-29.643907415216407,-154.80866709032537,-2.9558270271688025,-100.4816543739596,-3.0275773763340115,-99.75406560798173,-45.00092402547361,-145.90717269352777
-1678866620,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,3.3,24.93,22.44,56.3,29.3,1008.0,-29.6439016510514,-154.81355789739402,-2.9557978120789286,-100.48170199362828,-3.027537607360346,-99.75398297284823,-44.998551925341424,-145.91464358256104
-1678866630,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.7,3.3,24.94,22.41,56.3,29.3,1008.0,-29.64357858090573,-154.81299302780806,-2.9557930914701487,-100.48104205668737,-3.027585470400458,-99.75400357932702,-44.994362130775826,-145.92859086850663
-1678866640,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.4,2.6,24.93,22.39,56.3,29.4,1008.0,-29.64329622390247,-154.81324129807223,-2.955940045232159,-100.48108253912879,-3.0275292163564584,-99.75389263585863,-45.000375765801486,-145.91727095275175
-1678866650,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.5,3.0,24.94,22.36,56.3,29.4,1008.0,-29.64329069176248,-154.8129764354082,-2.9559777108583267,-100.48057948957087,-3.0275636752508928,-99.75327179203207,-45.00384913301979,-145.93567020925667
-1678866660,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.3,3.1,24.96,22.35,56.3,29.5,1008.1,-29.64334217174224,-154.81156417336547,-2.9559133238199276,-100.48083489298446,-3.027614057603276,-99.7527696901989,-45.0017519992986,-145.92377271388693
-1678866670,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.9,3.5,24.94,22.32,56.3,29.5,1008.0,-29.643182061428462,-154.81297296662015,-2.9555854589069646,-100.48074212602775,-3.0277534535797956,-99.75249803743081,-45.00151606502967,-145.92684806648825
-1678866680,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.1,3.8,24.94,22.29,56.3,29.6,1008.0,-29.64322589458565,-154.81252088758703,-2.9557068879164112,-100.48044225445278,-3.0276747826586052,-99.75148489631977,-45.003242832053076,-145.93330943201425
-1678866690,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.1,3.0,24.96,22.26,56.3,29.6,1008.0,-29.6432543866607,-154.81429499323914,-2.955726949721265,-100.48092119350436,-3.027719613318905,-99.75216429580827,-45.00083194367888,-145.94618512242982
-1678866700,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.4,2.6,24.94,22.2,56.3,29.6,1008.0,-29.64363830738952,-154.81228826140776,-2.956047303707167,-100.48088357357052,-3.027630539266824,-99.75323935042269,-45.00142931006411,-145.93778912190507
-1678866710,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.3,3.0,24.94,22.18,56.4,29.7,1008.1,-29.643469947163116,-154.81233245145702,-2.95592564439382,-100.48106163349462,-3.0276952392607392,-99.75204478735196,-44.99896252569688,-145.9379492596153
-1678866720,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.6,2.6,24.93,22.14,56.4,29.7,1008.0,-29.64286862778557,-154.8152893188191,-2.9558886798799118,-100.481728099632,-3.0274451970162324,-99.75259979297127,-44.99923328245497,-145.9474843107902
-1678866730,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.6,2.2,24.93,22.13,56.4,29.8,1008.1,-29.64278785002285,-154.8127634979898,-2.9558468899942723,-100.48234772669424,-3.027571068417321,-99.75364693246374,-45.000902803017134,-145.9571984669944
-1678866740,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.5,2.5,24.93,22.05,56.5,29.9,1008.0,-29.642660735533273,-154.81535138328883,-2.9558243237535824,-100.48118958728331,-3.0274955621814352,-99.75314104663234,-44.99787294170296,-145.97552869535923
-1678866750,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.9,3.3,24.93,22.03,56.5,29.9,1008.1,-29.641958324664387,-154.814302425308,-2.95589144758269,-100.48121006061072,-3.027476882949749,-99.75295427186536,-44.99646094786069,-145.95077633634205
-1678866760,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.7,2.3,24.93,21.99,56.5,30.0,1008.0,-29.642419205715434,-154.8140825281279,-2.955759968835634,-100.48252091847425,-3.027509808478367,-99.75355090221308,-44.99777600610998,-145.9473603452441
-1678866770,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.5,2.6,24.91,21.95,56.5,30.0,1008.0,-29.642688995672035,-154.81413565603467,-2.9558205231907317,-100.48274582988977,-3.027511658355314,-99.75384306846807,-44.99874448014382,-145.9307630691653
-1678866780,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,2.4,24.91,21.93,56.5,30.1,1008.1,-29.642307250498398,-154.81448348090962,-2.9557950100852954,-100.48297887140717,-3.0275030646067993,-99.75369083127971,-44.995553414546876,-145.93783386856276
-1678866790,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.1,2.3,24.91,21.9,56.5,30.1,1008.2,-29.64275936622331,-154.8142113630555,-2.9558564722061127,-100.48353918149498,-3.0275573419369515,-99.75421999203198,-44.99921402550424,-145.932929886437
-1678866800,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.6,2.9,24.9,21.87,56.6,30.2,1008.1,-29.643198431199234,-154.81344416625018,-2.955860369303969,-100.48441076687259,-3.027643924505612,-99.75515876151577,-45.000510190918405,-145.91878033192103
-1678866810,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.7,2.6,24.89,21.86,56.5,30.2,1008.1,-29.642579480823272,-154.8156265678281,-2.955540360218789,-100.48442692455264,-3.027556405745138,-99.75505174679192,-45.0016251854929,-145.92376188380643
-1678866820,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.2,2.9,24.9,21.86,56.5,30.1,1008.1,-29.642804550118083,-154.8164109055879,-2.9557325705809046,-100.48426390532317,-3.0276390630693513,-99.75467512065678,-44.99749336838613,-145.94638762850266
-1678866830,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.7,3.6,24.9,21.86,56.5,30.1,1008.2,-29.642054946916893,-154.81693619483514,-2.9556311069482035,-100.48349072907018,-3.027473344590951,-99.75406953329856,-44.995907683247026,-145.94556101087593
-1678866840,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.7,3.1,24.9,21.86,56.4,30.2,1008.1,-29.642433528800453,-154.8180481125447,-2.9556875084211005,-100.48410626851702,-3.027461787545028,-99.75472737740662,-44.999660186954394,-145.9357677929117
-1678866850,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.3,3.1,24.9,21.86,56.4,30.2,1008.0,-29.64273029444781,-154.81432596834958,-2.955789137832748,-100.48387609700026,-3.02769194244208,-99.75453712686316,-45.000539605225754,-145.94230687717783
-1678866860,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,2.9,24.93,21.84,56.4,30.2,1008.1,-29.6425367365813,-154.8163052159316,-2.9555800970949835,-100.48407264417763,-3.0277516606542543,-99.75405307747833,-45.00247761181538,-145.93381459400138
-1678866870,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,3.0,24.91,21.85,56.4,30.2,1008.0,-29.642386367194664,-154.8163047720385,-2.955655162764024,-100.4830765338489,-3.0277080394458693,-99.75340198719582,-44.99810159563491,-145.9392584701772
-1678866880,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,3.7,24.93,21.84,56.4,30.2,1008.1,-29.642244377297423,-154.81661187320017,-2.9557484344802276,-100.48340643204239,-3.0276836684404467,-99.75284495978737,-44.997172275370296,-145.94763542517592
-1678866890,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.1,2.9,24.93,21.86,56.4,30.2,1008.0,-29.642295291698165,-154.8162216848913,-2.955901932048926,-100.483005525453,-3.0276779391824586,-99.75184329655757,-44.99809382165505,-145.94916030340775
-1678866900,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.0,3.4,24.94,21.84,56.4,30.2,1008.1,-29.64240501844618,-154.8161257654485,-2.9557178039132674,-100.48356225308284,-3.027749967911932,-99.75176232671838,-44.996013763521184,-145.95635814597657
-1678866910,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,2.3,24.96,21.85,56.3,30.2,1008.1,-29.642220729753845,-154.81562498951925,-2.9558281323224915,-100.48314075737206,-3.0276766533472568,-99.752121350181,-44.99876925508581,-145.94905126671182
-1678866920,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.5,3.4,24.91,21.86,56.3,30.2,1008.1,-29.641787960686393,-154.81714410548784,-2.955947701876975,-100.48273576634116,-3.0276107482743346,-99.75300452523824,-44.995050119422764,-145.96423287055632
-1678866930,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.7,2.8,24.93,21.86,56.4,30.2,1008.1,-29.64197469011205,-154.8184783874435,-2.955882412781619,-100.48340243614672,-3.0277755852334054,-99.75345897056273,-44.99855965352718,-145.93696672441945
-1678866940,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.6,3.1,24.93,21.88,56.3,30.2,1008.1,-29.642149442695633,-154.81645147615075,-2.9558260287298053,-100.48315270592272,-3.027657631244831,-99.75359071883075,-45.00011710467386,-145.92247494111865
-1678866950,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.1,3.0,24.93,21.88,56.4,30.2,1008.1,-29.64258304732768,-154.8139322983702,-2.9558485957094054,-100.48306065380729,-3.027760597001137,-99.7538951291318,-45.003447259104135,-145.92501748773967
-1678866960,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.1,2.6,24.93,21.89,56.4,30.1,1008.1,-29.642392686565845,-154.81453663141707,-2.955720516260784,-100.48333199463053,-3.027747270433712,-99.75463225701839,-45.004728267131014,-145.9352084420703
-1678866970,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.6,2.7,24.93,21.88,56.4,30.2,1008.1,-29.642316137536035,-154.81413027474017,-2.955480047849133,-100.48264609694813,-3.027641062491528,-99.75468142564857,-45.002943275284515,-145.91941275879304
-1678866980,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,3.0,24.93,21.89,56.4,30.1,1008.1,-29.64223954688243,-154.81346295804374,-2.955713715036896,-100.48270805015817,-3.0277312430245478,-99.75424234200375,-44.9996959022058,-145.95090604463127
-1678866990,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.9,3.1,24.93,21.9,56.4,30.1,1008.2,-29.642249972082148,-154.81355443080764,-2.9556076721178304,-100.48283586915144,-3.027829253933309,-99.7547582914468,-45.005542253780135,-145.92933115240876
-1678867000,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.6,3.6,24.94,21.91,56.3,30.1,1008.1,-29.64228218738736,-154.8160627674814,-2.9555611621796745,-100.4828984931261,-3.027740255635247,-99.75344352510038,-45.00295406259226,-145.9181456337585
-1678867010,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.1,2.9,24.94,21.93,56.3,30.1,1008.1,-29.64197566310972,-154.81719840608437,-2.9554360808327846,-100.4831507939479,-3.0276382809066718,-99.75402972842213,-45.00281591830267,-145.93189435727328
-1678867020,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,2.7,24.93,21.94,56.3,30.1,1008.1,-29.641687889707825,-154.81674551625417,-2.9556796775003082,-100.48364616364664,-3.02767085987552,-99.75373285145494,-45.00244952085762,-145.93128639670016
-1678867030,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.3,2.8,24.93,21.95,56.3,30.1,1008.1,-29.641660556788445,-154.8158316722654,-2.955758018771934,-100.48318967609809,-3.0276464254245683,-99.75423882178599,-45.002338430961196,-145.9468854721492
-1678867040,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.4,2.8,24.93,21.94,56.3,30.1,1008.1,-29.64219835676772,-154.8164548633746,-2.9555880161822397,-100.48337450114587,-3.0275346284095876,-99.7543562293087,-45.00177816378752,-145.91761602432632
-1678867050,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.3,2.9,24.93,21.95,56.4,30.1,1008.1,-29.64243967152538,-154.81503336178824,-2.9559710147774556,-100.48303129200451,-3.0276787806679923,-99.754954216654,-45.004595644425734,-145.9105888662943
-1678867060,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.6,3.3,24.9,21.97,56.3,30.1,1008.0,-29.64148091278429,-154.81902562594516,-2.9556550489534867,-100.48360982493685,-3.0279229597959842,-99.75525416680505,-45.001845584565594,-145.935422338638
-1678867070,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.4,3.5,24.93,21.99,56.3,30.0,1008.1,-29.641812365745317,-154.8189464653415,-2.9555746377972527,-100.48362873288816,-3.0278097939528648,-99.75560904879559,-45.00279997963826,-145.93844581878818
-1678867080,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.3,3.9,24.93,22.0,56.2,30.0,1008.1,-29.641931154348455,-154.8182476042874,-2.9554511471333997,-100.48339677096524,-3.027660656086171,-99.75517818360771,-45.000355774433984,-145.93329892975711
-1678867090,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.0,4.0,24.91,22.0,56.2,30.0,1008.1,-29.641313625361644,-154.82158176867497,-2.955491269668662,-100.48290475131625,-3.027629712750149,-99.75547974265064,-44.99858000319368,-145.94871565038497
-1678867100,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,3.7,24.93,22.01,56.2,30.0,1008.1,-29.641222084393732,-154.82042047719239,-2.9554318791641827,-100.48266474733839,-3.0276695164327467,-99.75558823626588,-45.00070179722074,-145.93556457110358
-1678867110,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.7,3.7,24.93,22.01,56.2,30.0,1008.0,-29.64118022369884,-154.82058655080016,-2.9553593759816605,-100.48220498811698,-3.0277131355439213,-99.75643922833687,-45.00063935095547,-145.930051768548
-1678867120,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,3.3,24.93,22.03,56.3,30.0,1008.2,-29.641076566054604,-154.82156469639068,-2.955356619616017,-100.4822087622851,-3.0277464357715806,-99.75531955597884,-44.99870648503376,-145.93677324700514
-1678867130,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.1,3.0,24.91,22.04,56.3,29.9,1008.2,-29.640925120661194,-154.82377877366235,-2.9554130324181798,-100.48257916718647,-3.027812983904672,-99.75519628976684,-44.99951156563263,-145.93549564228235
-1678867140,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.0,2.9,24.93,22.05,56.3,29.9,1008.1,-29.640809399243004,-154.82153961509653,-2.9554312346476133,-100.48249043340199,-3.0277794222363847,-99.7544332796577,-44.998729639663615,-145.93830417232112
-1678867150,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.7,2.6,24.93,22.06,56.3,29.9,1008.1,-29.640887305242476,-154.82265266707833,-2.955402205641149,-100.4822798805455,-3.0277316424262506,-99.75498392628526,-44.99858365728041,-145.92429785148175
-1678867160,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,3.0,24.93,22.08,56.4,29.9,1008.2,-29.641162902339616,-154.8220626915965,-2.9552973266793936,-100.48289900214088,-3.0278095311252144,-99.75574575403758,-45.00140038894926,-145.90439804216504
-1678867170,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.9,3.0,24.91,22.08,56.3,29.9,1008.1,-29.641103583094804,-154.8218271586683,-2.9552966123122855,-100.48351765688946,-3.027758806041949,-99.75473791187264,-45.00114645701352,-145.92345306773552
-1678867180,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.7,3.1,24.93,22.09,56.3,29.9,1008.1,-29.64081759975414,-154.82238822604927,-2.955259095013063,-100.48343569989387,-3.0278311111553,-99.75450145797686,-45.00108364412965,-145.91177755805984
-1678867190,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.1,3.3,24.93,22.09,56.3,29.9,1008.2,-29.640756913185527,-154.82300117063232,-2.955219921855031,-100.48432657789762,-3.027681669484833,-99.75387411407503,-44.99951067022571,-145.92020809272148
-1678867200,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.1,3.3,24.91,22.1,56.3,29.9,1008.1,-29.641123801535194,-154.82216019382926,-2.9553112623531708,-100.48409379725723,-3.027850022155688,-99.7541891259622,-44.99920072219628,-145.92355950749712
-1678867210,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.8,3.4,24.93,22.11,56.3,29.8,1008.1,-29.64120280264958,-154.82106991289442,-2.955495455191916,-100.48345571436646,-3.0276833780819814,-99.75403098540163,-44.99808736577311,-145.9329463743082
-1678867220,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.4,3.1,24.93,22.12,56.3,29.8,1008.2,-29.6403999234196,-154.8226610433623,-2.9555110871449037,-100.4836328197947,-3.0277477790470857,-99.75353370319185,-44.998614468052985,-145.93753837013534
-1678867230,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,3.1,24.94,22.12,56.3,29.8,1008.1,-29.640930073425142,-154.82347178162578,-2.9555829214001577,-100.48339584356934,-3.02790298816036,-99.75434842378709,-44.99851571649338,-145.93386326123098
-1678867240,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.3,2.9,24.91,22.13,56.3,29.8,1008.1,-29.641277138347494,-154.82237550306024,-2.955697592593114,-100.48356524376466,-3.027768229744739,-99.75428649629158,-44.99837007275414,-145.9466316599714
-1678867250,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.7,3.0,24.93,22.14,56.3,29.8,1008.2,-29.641143642072283,-154.8244286067261,-2.955633677932363,-100.48258723221582,-3.0277185309568155,-99.75474579104086,-44.99745427665878,-145.93071008265392
-1678867260,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,3.1,24.91,22.15,56.3,29.8,1008.2,-29.64075215984455,-154.82552577440507,-2.955524426675214,-100.48299647247711,-3.0276065785949124,-99.75441525758441,-44.99801813114551,-145.92888098132062
-1678867270,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.4,3.3,24.93,22.15,56.4,29.8,1008.2,-29.64096063755804,-154.82365794629544,-2.9554363120297817,-100.48289458498618,-3.027792743638088,-99.75503241779123,-44.999976762177496,-145.9182124901799
-1678867280,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.1,2.7,24.93,22.16,56.4,29.8,1008.1,-29.64075875165404,-154.8220931164932,-2.9555298900777083,-100.48261698967917,-3.027799940879124,-99.75536543531867,-45.00051271749288,-145.9266851463281
-1678867290,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.3,3.0,24.91,22.16,56.4,29.7,1008.2,-29.641005917383886,-154.81963148165465,-2.9555181728229756,-100.48303201344326,-3.02783346906146,-99.75497339888436,-44.99960789784371,-145.93614353920853
-1678867300,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.4,2.9,24.91,22.18,56.4,29.7,1008.1,-29.640912204470595,-154.82033257159185,-2.9554591854669225,-100.48340336783677,-3.027876564567994,-99.75432467744763,-44.99963142921253,-145.93700955125905
-1678867310,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.6,3.1,24.93,22.18,56.4,29.7,1008.1,-29.640846158996176,-154.82168681052642,-2.955487472048306,-100.48275693362197,-3.0277995516510714,-99.75437070323004,-44.998027002843685,-145.9228904122835
-1678867320,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.2,3.1,24.93,22.19,56.4,29.7,1008.2,-29.64062787919414,-154.82244512521774,-2.9556805100533974,-100.48220684797474,-3.0278749946772217,-99.75461571239713,-45.000338802425254,-145.93107061219715
-1678867330,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.7,3.1,24.93,22.18,56.4,29.7,1008.1,-29.64085813658062,-154.82194466974946,-2.9556871813415153,-100.48316490201756,-3.0278424597706777,-99.7542272733261,-44.99944829207796,-145.94028995289966
-1678867340,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.0,2.9,24.93,22.2,56.4,29.7,1008.1,-29.640881585327605,-154.81959697681012,-2.955728363929801,-100.48310123026522,-3.02767942226342,-99.75499860619794,-45.0008141663162,-145.9446072293107
-1678867350,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.1,2.8,24.93,22.2,56.4,29.7,1008.1,-29.640270882396173,-154.81999546158127,-2.9556521535947744,-100.48333984722714,-3.027840626929226,-99.75428886312864,-44.99976456390819,-145.9403164642533
-1678867360,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.2,2.8,24.93,22.21,56.4,29.7,1008.2,-29.6406869577961,-154.8231523853175,-2.9555579032871746,-100.48289397802621,-3.027715095810432,-99.75500047782847,-44.99616592348197,-145.94376795950978
-1678867370,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.7,2.9,24.94,22.23,56.4,29.6,1008.1,-29.64042352760799,-154.82422877133658,-2.955494126346116,-100.48313898118491,-3.027736704614316,-99.75506242328001,-44.99974770429983,-145.93608234782045
-1678867380,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.1,3.3,24.93,22.23,56.4,29.6,1008.2,-29.640147728076528,-154.82314586960118,-2.955422301703952,-100.48362155960989,-3.0278649473140766,-99.754832352282,-45.00114904913716,-145.91324734934392
-1678867390,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.5,3.5,24.93,22.21,56.4,29.7,1008.2,-29.64055085243999,-154.82243177995556,-2.9555032920601105,-100.48368852476835,-3.0278034661139497,-99.75403408981887,-45.00094985388638,-145.93338120150895
-1678867400,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.8,3.1,24.93,22.23,56.4,29.6,1008.1,-29.64043077565571,-154.82292360910955,-2.955629826925173,-100.48387562336802,-3.028025736482811,-99.75368819536295,-45.00181795126505,-145.9170065733323
-1678867410,25.0,25.0,55.0,55.0,0,1300000000,,,3,9.2,2.5,24.93,22.24,56.4,29.6,1008.2,-29.640522323693254,-154.8218154552325,-2.9555682438824125,-100.48333557992567,-3.027856613410904,-99.75420410862792,-44.9987244442276,-145.9350063748569
-1678867420,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.7,2.6,24.93,22.24,56.4,29.6,1008.2,-29.640594631483687,-154.821260670185,-2.9556126557654387,-100.48290098350878,-3.0279699642920184,-99.75443969294078,-44.99789480126541,-145.93584435197917
-1678867430,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.0,3.4,24.93,22.25,56.4,29.6,1008.2,-29.641060019460138,-154.8201707108897,-2.955733775494689,-100.4831453832875,-3.027755831733314,-99.7533323281217,-44.99520737343267,-145.9355987134276
-1678867440,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.2,3.0,24.93,22.25,56.4,29.6,1008.2,-29.64102787051836,-154.82145723633224,-2.95551873118846,-100.48305152123844,-3.0279070788018156,-99.75366845009188,-44.99979551435455,-145.9246498494146
-1678867450,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.0,2.7,24.93,22.27,56.4,29.6,1008.2,-29.640655230521457,-154.8226927087697,-2.9555926774455927,-100.48246176295466,-3.027861921897401,-99.7536896125692,-44.995527735770025,-145.93468731790426
-1678867460,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,3.0,24.93,22.28,56.4,29.6,1008.2,-29.641002272900646,-154.82007861845557,-2.9556148853886133,-100.4827541036488,-3.0279725792568746,-99.7533625221938,-44.996435437100075,-145.932409569878
-1678867470,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.0,3.0,24.94,22.28,56.4,29.6,1008.2,-29.640406851450365,-154.82174828078487,-2.9557494178313206,-100.48223541309788,-3.0278874289826723,-99.75369561046445,-44.99478103924538,-145.92664297903633
-1678867480,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.6,2.6,24.94,22.28,56.4,29.6,1008.2,-29.640610673611924,-154.82118276623993,-2.955858644687364,-100.48208543760185,-3.0279530712686116,-99.75381917495183,-44.996526340730505,-145.94847723513624
-1678867490,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.0,2.8,24.93,22.3,56.5,29.6,1008.2,-29.640750908572993,-154.8232822698952,-2.9557119227529927,-100.48226704849625,-3.027968984761364,-99.75382682441622,-44.99669190000331,-145.94084240541102
-1678867500,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.1,3.4,24.93,22.31,56.5,29.6,1008.1,-29.64075801574669,-154.82232320071407,-2.955551481862094,-100.48166132225676,-3.0279413528645254,-99.75428293683312,-44.99760402386084,-145.9286377078023
-1678867510,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.7,3.1,24.93,22.33,56.4,29.6,1008.1,-29.640894599947266,-154.8203945156795,-2.955621496234354,-100.48196320431046,-3.0280193967723044,-99.7541777849545,-44.99719424295867,-145.93511603128385
-1678867520,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,3.1,24.93,22.33,56.4,29.5,1008.1,-29.64086109705319,-154.8223248111139,-2.955561868145592,-100.4815716414017,-3.0279857049854404,-99.75430989173803,-44.99737387560697,-145.93371681174125
-1678867530,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.3,2.5,24.94,22.33,56.4,29.5,1008.1,-29.640781277843026,-154.82320273318365,-2.95570963972917,-100.48183105167351,-3.0279058640483947,-99.7545595237534,-44.99760155256716,-145.9229311557376
-1678867540,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.0,2.3,24.93,22.34,56.4,29.5,1008.2,-29.640595859836303,-154.82556633184336,-2.9557693760252484,-100.48082994364752,-3.0277947766180846,-99.75456890575533,-44.99242599074602,-145.96292815674977
-1678867550,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,3.2,24.94,22.34,56.4,29.5,1008.1,-29.640588147966763,-154.82408041651354,-2.9557683087672433,-100.4813553793534,-3.027953861682345,-99.7545905130955,-44.99458218865493,-145.95297010574555
-1678867560,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.9,3.0,24.93,22.35,56.4,29.5,1008.1,-29.64042755792307,-154.82440487109176,-2.95568579300207,-100.48167150040778,-3.027818022545073,-99.75424584758674,-44.99337014824378,-145.95125017242458
-1678867570,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.9,3.7,24.93,22.34,56.3,29.5,1008.2,-29.64028737264657,-154.82503903860044,-2.9556616303021563,-100.48218486563212,-3.0280087419056194,-99.75376416648797,-44.999029066978274,-145.93655078330693
-1678867580,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,3.3,24.93,22.34,56.3,29.5,1008.2,-29.640458896781578,-154.82574521530339,-2.9555712842145256,-100.4824734702729,-3.027989050976559,-99.75356923118052,-44.99857106729527,-145.93887743924893
-1678867590,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.4,3.4,24.94,22.34,56.3,29.5,1008.1,-29.640180806049628,-154.82593419583065,-2.9555195132500645,-100.48284210299796,-3.0279375275656975,-99.75332430161346,-44.99700604290848,-145.93878040899878
-1678867600,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.1,3.0,24.94,22.34,56.2,29.5,1008.1,-29.64001088025988,-154.82708509076025,-2.955459089235337,-100.48304460906425,-3.0278963134206065,-99.75386603428309,-44.992499227301195,-145.95826402718671
-1678867610,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.7,3.6,24.93,22.35,56.2,29.5,1008.2,-29.639903443597596,-154.82633561578402,-2.955601924154156,-100.4831519211637,-3.027835235919193,-99.75321462834832,-44.996580812631926,-145.9466522242779
-1678867620,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.0,3.4,24.94,22.36,56.3,29.5,1008.1,-29.640533979439816,-154.82399503468585,-2.955703696982633,-100.48289252504428,-3.0278762697836936,-99.75337639745588,-44.99580660107024,-145.932184180307
-1678867630,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.9,3.9,24.97,22.36,56.3,29.5,1008.2,-29.6401629559409,-154.8258463351815,-2.955603953216122,-100.48191004083249,-3.0279011763371724,-99.75406203280788,-44.99485499164608,-145.9645805828816
-1678867640,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.3,3.1,24.96,22.36,56.2,29.4,1008.1,-29.640033704362896,-154.827308253167,-2.9556379992522386,-100.4824021449226,-3.027781984521024,-99.75396648943239,-44.99537986962915,-145.95561537513115
-1678867650,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.1,3.4,24.93,22.35,56.2,29.5,1008.2,-29.639579515092336,-154.82693581737166,-2.9556980275488605,-100.48195272383253,-3.028015372169646,-99.75357030067242,-44.99547635326177,-145.94918910606123
-1678867660,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.4,3.7,24.93,22.36,56.3,29.4,1008.2,-29.6392120665475,-154.82623099846649,-2.9555571167249868,-100.4820783549459,-3.027935660244464,-99.7528855889827,-44.99654137665792,-145.94441623581812
-1678867670,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.7,3.4,24.93,22.36,56.3,29.5,1008.2,-29.63963616456967,-154.82724745001673,-2.955733526925386,-100.48183982866989,-3.0278610103912613,-99.75192175546945,-44.99224679585769,-145.95373140651085
-1678867680,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.4,2.6,24.93,22.36,56.3,29.4,1008.3,-29.639361283065146,-154.82783529552793,-2.955661633101851,-100.48182230703472,-3.0280825122318875,-99.75194160873937,-44.99493299890938,-145.94247434527517
-1678867690,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.5,2.9,24.94,22.36,56.4,29.5,1008.2,-29.639317866958407,-154.82594730984724,-2.955877507916643,-100.4813919280349,-3.0280140005649274,-99.7523987444112,-44.99311789919236,-145.94676959042576
-1678867700,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.6,2.9,24.93,22.38,56.4,29.4,1008.2,-29.63925187496769,-154.8265922837258,-2.9555711258452932,-100.48171370417973,-3.0280189456900204,-99.75201704402102,-44.9971174068239,-145.93790594197415
-1678867710,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.1,2.7,24.93,22.38,56.4,29.5,1008.2,-29.63857920804372,-154.82890558976024,-2.955740864510848,-100.48116517387862,-3.0279335835967185,-99.75175364261563,-44.99380819542391,-145.92866218549042
-1678867720,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,3.1,24.93,22.4,56.4,29.5,1008.2,-29.638511937071875,-154.82550467620868,-2.955663774340003,-100.48125712642188,-3.0279465037700923,-99.75138610607048,-44.99380522048619,-145.9249914705491
-1678867730,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.5,3.5,24.94,22.42,56.4,29.4,1008.2,-29.63845593782759,-154.82624349393976,-2.955596793860974,-100.48064916143957,-3.028015082573659,-99.75101716051286,-44.99513926004,-145.94646616166835
-1678867740,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.6,3.0,24.96,22.42,56.4,29.4,1008.3,-29.63848682129172,-154.82590309694146,-2.9555360933585084,-100.48071252624388,-3.027950511005498,-99.75138580304233,-44.995624779115445,-145.9459478356577
-1678867750,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.9,3.4,24.94,22.42,56.4,29.4,1008.2,-29.639089306279768,-154.82206380214302,-2.955836326876327,-100.4803273013003,-3.0280535620601574,-99.75050890254043,-44.99268478229695,-145.96238643790127
-1678867760,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.9,2.9,24.94,22.42,56.3,29.4,1008.2,-29.639029854518956,-154.82472888011577,-2.9559248545685293,-100.48071355247704,-3.028012192256318,-99.7519548275124,-44.99349560236398,-145.937661367312
-1678867770,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.6,3.0,24.96,22.43,56.4,29.4,1008.2,-29.639204471771045,-154.82461331932492,-2.95574577522863,-100.48098005326435,-3.0279128224296583,-99.75159701494876,-44.99463089329845,-145.9596009742348
-1678867780,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.6,3.4,24.94,22.43,56.4,29.4,1008.1,-29.638472784123763,-154.82657499464995,-2.955638889622456,-100.48023170742658,-3.0280721085395546,-99.75101375593921,-44.992710118394676,-145.96092741819018
-1678867790,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.6,2.9,24.93,22.43,56.4,29.4,1008.2,-29.6388631885686,-154.82778239694514,-2.9557669858789923,-100.48122910079373,-3.0280309540101857,-99.75073732904546,-44.99144322738619,-145.9497212720449
-1678867800,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.2,2.8,24.93,22.42,56.4,29.3,1008.2,-29.63828199928651,-154.82867043149642,-2.9556157123411557,-100.48138712018397,-3.027812353459991,-99.7505922036173,-44.99137997207312,-145.96166921499176
-1678867810,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.7,2.5,24.93,22.42,56.4,29.4,1008.2,-29.638389767764668,-154.82848971972794,-2.955745647833534,-100.48058170866231,-3.0278884170770275,-99.75063043227263,-44.98965955767445,-145.97280137691652
-1678867820,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.0,2.9,24.93,22.42,56.4,29.4,1008.2,-29.638714156164948,-154.82969750777747,-2.9556621581968807,-100.48055562915187,-3.0279126259972156,-99.75109422855317,-44.990411843523496,-145.97592904005026
-1678867830,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.1,3.1,24.93,22.42,56.4,29.4,1008.2,-29.639240178757564,-154.8268783924859,-2.9557863938800377,-100.48016866034651,-3.0279319686901744,-99.75120174241589,-44.99275315510821,-145.98345225068346
-1678867840,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.2,3.1,24.93,22.42,56.4,29.4,1008.2,-29.63898922639232,-154.82802245186392,-2.9557663380539627,-100.47993309248976,-3.0279104293533954,-99.75117540082854,-44.99259394715131,-145.96912897441914
-1678867850,25.0,25.0,55.0,55.0,0,1300000000,,,3,4.9,3.0,24.94,22.42,56.3,29.4,1008.3,-29.639355654243467,-154.82330555255564,-2.9557241546667026,-100.48038035179135,-3.0278670874326057,-99.75133447287342,-44.993194997407116,-145.95122761502543
-1678867860,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.6,3.0,24.93,22.44,56.3,29.4,1008.2,-29.63957343310256,-154.82345727993487,-2.955932640605962,-100.48026065315523,-3.027848875353618,-99.75126094498938,-44.99258320938429,-145.95059335857457
-1678867870,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.9,2.7,24.93,22.44,56.3,29.3,1008.2,-29.63980715673658,-154.82152586453503,-2.955618810387288,-100.48124294521905,-3.0278719742475184,-99.75057907287507,-44.995253410571785,-145.93791263564572
-1678867880,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.3,3.1,24.93,22.44,56.3,29.4,1008.2,-29.639668856231477,-154.82265814867017,-2.955725995760438,-100.48094540831397,-3.027917083713239,-99.75049632686218,-44.991580994674855,-145.9542407496959
-1678867890,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.4,3.6,24.96,22.46,56.3,29.4,1008.3,-29.639579252773235,-154.82343455809468,-2.955788443052176,-100.48067423063137,-3.028008505848438,-99.75027575852215,-44.99198273138852,-145.9631827902238
-1678867900,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.0,4.0,24.96,22.47,56.3,29.4,1008.1,-29.63966180502609,-154.82208329058503,-2.9558703375021373,-100.4798659352343,-3.027929591757843,-99.75058373723402,-44.992204367496726,-145.9493458184159
-1678867910,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.7,3.0,24.96,22.47,56.3,29.3,1008.2,-29.63988626324189,-154.8211958728125,-2.9560056460628203,-100.47987691275978,-3.028085566879368,-99.75050755162255,-44.99511454479805,-145.95447073115344
-1678867920,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.8,2.7,24.94,22.48,56.3,29.3,1008.2,-29.639579454002106,-154.82136358778615,-2.9559081083160574,-100.47960301424389,-3.0280256611376632,-99.7507695365016,-44.9979379340073,-145.94205417941862
-1678867930,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.5,2.9,24.96,22.49,56.3,29.3,1008.2,-29.6393022356864,-154.82411193240117,-2.955670533206742,-100.47889192053826,-3.0281534649102086,-99.75031665451543,-44.992407634404486,-145.95154050006118
-1678867940,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.9,3.0,24.96,22.47,56.3,29.3,1008.2,-29.6390291696849,-154.8249828297462,-2.9555911646289488,-100.47805896850039,-3.0282254842275025,-99.74981364947027,-44.98918896632793,-145.9559753779477
-1678867950,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.9,3.0,24.96,22.47,56.3,29.3,1008.2,-29.6395103316406,-154.82342119185378,-2.955891948348373,-100.47854558023737,-3.0281542873662675,-99.74981192311525,-44.99191409041691,-145.95588977815595
-1678867960,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.3,2.9,24.96,22.46,56.3,29.3,1008.2,-29.639454634640757,-154.82407857793856,-2.9558083377647257,-100.47937063501773,-3.0280368665565955,-99.74966964698594,-44.989281003181254,-145.9699740437691
-1678867970,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.9,2.5,24.96,22.45,56.3,29.3,1008.2,-29.63933517773365,-154.82522185746026,-2.955832705227954,-100.47937534692059,-3.028041757483157,-99.75025470181626,-44.98985000756696,-145.97846821067267
-1678867980,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.1,2.6,24.93,22.43,56.4,29.4,1008.2,-29.63957328933057,-154.82359544569883,-2.9560053831923936,-100.48006177040975,-3.028124208097551,-99.75028130504106,-44.992287019804714,-145.93415637483326
-1678867990,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.9,3.4,24.93,22.4,56.3,29.4,1008.2,-29.639976136168336,-154.82400570768925,-2.9557819710450604,-100.48032545452753,-3.0282232066194936,-99.75049719748692,-44.99263440275682,-145.94283661443654
-1678868000,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.7,3.1,24.93,22.36,56.3,29.5,1008.2,-29.63946379618056,-154.82482016689954,-2.9557720234296263,-100.47980073388888,-3.028167399146122,-99.75043151525071,-44.99144591628263,-145.9638101435948
-1678868010,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.9,3.3,24.96,22.35,56.4,29.5,1008.3,-29.63946477643176,-154.8243713517054,-2.955608754654521,-100.47982806199583,-3.028069206423007,-99.75056519528626,-44.99104041261555,-145.952287065804
-1678868020,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,3.5,24.93,22.33,56.3,29.5,1008.2,-29.639756449424482,-154.82158798245857,-2.955750866401487,-100.47972280975843,-3.027979529980784,-99.75070887512821,-44.99207973742794,-145.95800214815557
-1678868030,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,3.0,24.94,22.31,56.4,29.6,1008.3,-29.639330623391515,-154.82349852969028,-2.955873309534666,-100.47927183010154,-3.027985073375519,-99.7510609198603,-44.99174536196903,-145.96853125175218
-1678868040,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.5,3.0,24.93,22.29,56.4,29.6,1008.3,-29.639401717182988,-154.8259307031044,-2.9555791912939493,-100.48052117898443,-3.0281544893869357,-99.75124055259762,-44.99309348250539,-145.94476641650343
-1678868050,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.7,2.9,24.93,22.27,56.3,29.6,1008.2,-29.63916177179349,-154.8262062334272,-2.955771928745583,-100.4797182809314,-3.0282192798583414,-99.75167220004053,-44.99106785272291,-145.9479236350544
-1678868060,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.2,3.1,24.94,22.26,56.4,29.6,1008.3,-29.639365514482193,-154.82486713126514,-2.955704889118752,-100.47848173443411,-3.0280573672609274,-99.75173931331085,-44.98926535394926,-145.94757281546896
-1678868070,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,2.9,24.93,22.24,56.4,29.6,1008.3,-29.639591226262855,-154.82341814136848,-2.955618906996599,-100.479355302825,-3.027954443750944,-99.75220236102216,-44.98929851733479,-145.95216642671525
-1678868080,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.0,2.1,24.93,22.18,56.4,29.7,1008.3,-29.639562905790097,-154.82247476618124,-2.955730628940752,-100.48044703604049,-3.0281767120661978,-99.75238757522207,-44.99296042391812,-145.94792936068478
-1678868090,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.1,2.8,24.93,22.15,56.4,29.8,1008.3,-29.64015019183741,-154.82112780391398,-2.95569346516541,-100.48199864091791,-3.0280413785499487,-99.75178297009056,-44.995450285570435,-145.90662646752867
-1678868100,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.9,3.0,24.93,22.14,56.4,29.8,1008.3,-29.64002684241273,-154.82335220791865,-2.955615293070158,-100.48084570594425,-3.0281559838749192,-99.75277120302482,-44.99440289161023,-145.93366301551075
-1678868110,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.4,3.1,24.91,22.14,56.4,29.8,1008.3,-29.64002748026759,-154.8212426275821,-2.9557840595261164,-100.48097940013251,-3.028071879582019,-99.75273604125032,-44.992885311086994,-145.9397464255612
-1678868120,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.1,2.6,24.91,22.11,56.4,29.9,1008.3,-29.640184305699616,-154.81891136799487,-2.955616901694706,-100.48152312616614,-3.0280597085691676,-99.75352616694391,-44.995967221188835,-145.90521955651496
-1678868130,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,3.4,24.93,22.11,56.4,29.9,1008.4,-29.640426643850613,-154.8190601637564,-2.9558696437495406,-100.48146774058577,-3.0281517453198297,-99.75384068541098,-44.993612958984386,-145.92760997106103
-1678868140,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.4,3.0,24.93,22.1,56.4,29.9,1008.4,-29.64035042384937,-154.82125605203495,-2.9557915831541854,-100.48148620880828,-3.027980589321077,-99.75366621179312,-44.991465294977885,-145.9364097534419
-1678868150,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,3.2,24.93,22.09,56.3,29.9,1008.3,-29.63997591730099,-154.82238834745718,-2.9557565910962187,-100.48124533936547,-3.027899817722947,-99.75326347145864,-44.99121644815123,-145.9345020100509
-1678868160,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.4,3.3,24.94,22.1,56.3,29.9,1008.4,-29.640100900206917,-154.81993406729748,-2.9558235288998533,-100.48104127512923,-3.027883899823653,-99.75230486062819,-44.98997487237873,-145.9474237238358
-1678868170,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.3,3.9,24.94,22.1,56.3,29.9,1008.3,-29.640261196646623,-154.82083243949785,-2.9557558380022444,-100.48039280456697,-3.027966347122813,-99.75233972395333,-44.98952253032759,-145.94880702590757
-1678868180,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.1,3.2,24.96,22.08,56.3,29.9,1008.3,-29.639931046653253,-154.8233572307432,-2.955703530126451,-100.48049581093251,-3.0279799441496804,-99.75173614571372,-44.99041949872346,-145.9381254433598
-1678868190,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,3.0,24.94,22.06,56.2,29.9,1008.3,-29.640155657700422,-154.8194140506776,-2.9558485683616014,-100.48112145045309,-3.028133617758002,-99.75205498689519,-44.994032577649165,-145.936577852657
-1678868200,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.7,2.7,24.94,22.05,56.3,30.0,1008.4,-29.639996460875015,-154.822597904883,-2.955774564617135,-100.48151003184451,-3.0280125671847893,-99.75159759964983,-44.991508369126095,-145.94567335009216
-1678868210,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,3.2,24.94,22.05,56.3,30.0,1008.4,-29.63963272282429,-154.82474388069153,-2.9557953424683436,-100.48135917144641,-3.027895931331497,-99.75127914083798,-44.98876512163855,-145.95030032174645
-1678868220,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,3.5,24.93,22.03,56.3,30.0,1008.3,-29.639935158805187,-154.82309803813848,-2.955800207506942,-100.48127164802015,-3.0279951371831286,-99.7524653817887,-44.99047319384111,-145.94521296529288
-1678868230,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.1,3.2,24.93,22.03,56.3,30.0,1008.4,-29.640088956238984,-154.81920416755923,-2.955721552490231,-100.48211260779368,-3.0280853218478088,-99.75199045408628,-44.99413832712221,-145.9377926898422
-1678868240,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.6,3.2,24.94,22.02,56.3,30.0,1008.4,-29.639857207005416,-154.8236830118286,-2.95573665256236,-100.48193524261673,-3.0280102701738847,-99.75243417104471,-44.990924524446136,-145.93381843549443
-1678868250,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.0,2.9,24.93,22.03,56.3,30.1,1008.3,-29.6401109939197,-154.8211316206961,-2.95563845863502,-100.4824993755345,-3.0281480841353545,-99.75293980813238,-44.9938536389359,-145.94524645616602
-1678868260,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.3,2.5,24.93,22.01,56.3,30.0,1008.4,-29.640462206800514,-154.82135973143426,-2.955910476441026,-100.48218348041645,-3.0280628948454886,-99.75283896450848,-44.991929548055836,-145.94623896084528
-1678868270,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.9,3.1,24.94,22.0,56.3,30.0,1008.4,-29.64045909865131,-154.82218820098936,-2.9557483556903206,-100.482357390758,-3.0281193584633197,-99.75377362045275,-44.99410087870765,-145.93082617673798
-1678868280,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.5,2.8,24.94,22.02,56.3,30.0,1008.4,-29.64060019124478,-154.8204354834249,-2.9557973183510104,-100.48220954821635,-3.0280059132022874,-99.75426604989562,-44.99134736535669,-145.92179749651055
-1678868290,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,3.3,24.93,22.03,56.3,30.0,1008.4,-29.64074731344659,-154.81981005956789,-2.9559472454228626,-100.48216098925272,-3.027910264943258,-99.75315610661242,-44.991606297773075,-145.92306877382978
-1678868300,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,3.6,24.94,22.04,56.3,30.0,1008.4,-29.640063662781294,-154.82217523099195,-2.9556390674094466,-100.48221836126487,-3.0278488097407052,-99.7523401518598,-44.994029683979036,-145.92161596623708
-1678868310,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.0,3.3,24.94,22.05,56.3,30.0,1008.5,-29.640430664351946,-154.81940279846978,-2.9558420784123767,-100.48139350666933,-3.0278753339784545,-99.75312348171576,-44.99459946993346,-145.921239288889
-1678868320,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.6,3.5,24.93,22.05,56.3,30.0,1008.4,-29.640407694294822,-154.8178839028194,-2.955769665694409,-100.48212379962261,-3.0280328420931077,-99.75322619128323,-44.99719972103607,-145.921527600025
-1678868330,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,2.8,24.93,22.06,56.3,30.0,1008.5,-29.640738294173712,-154.81853382887243,-2.955866709429986,-100.48356737806883,-3.028012363202244,-99.75385134036664,-44.99961698193714,-145.92087262410084
-1678868340,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.9,3.4,24.93,22.08,56.3,30.0,1008.4,-29.640444228735632,-154.8190689317013,-2.9558889939485495,-100.48281007891819,-3.027836138401978,-99.75330127800957,-44.99634377600771,-145.92452441365367
-1678868350,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,3.5,24.93,22.08,56.3,30.0,1008.4,-29.640441093956245,-154.82087264045032,-2.955838475906028,-100.48303529706536,-3.027966327612157,-99.7525073358356,-44.99595326544452,-145.92848667013783
-1678868360,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.4,2.6,24.93,22.09,56.3,29.9,1008.4,-29.640409365000487,-154.81961235115907,-2.955768965508896,-100.48342025085157,-3.0279347580846205,-99.75346604034955,-44.998981443698646,-145.9183373772915
-1678868370,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,2.7,24.93,22.09,56.3,29.9,1008.5,-29.640557022693685,-154.8186794100053,-2.955704704490682,-100.48403758593452,-3.0279464075113935,-99.75407551611362,-44.999161610979726,-145.9243927310357
-1678868380,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.5,3.3,24.91,22.1,56.3,29.9,1008.4,-29.640743806311306,-154.8185433109449,-2.955710415740362,-100.48347739283328,-3.0279484869879916,-99.75438481567731,-44.99737525198606,-145.90503701785013
-1678868390,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.4,2.8,24.93,22.1,56.4,29.9,1008.5,-29.640451506817428,-154.82006260536474,-2.9558872308341937,-100.48317892414907,-3.028072911592152,-99.75438577310818,-44.99766351511833,-145.90683321583774
-1678868400,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.3,3.4,24.94,22.1,56.4,29.9,1008.4,-29.640017969021336,-154.8202660317623,-2.955711360500115,-100.48357823916216,-3.0280917321468452,-99.75354758898776,-44.99836120742187,-145.91418519128032
-1678868410,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.3,2.4,24.93,22.11,56.4,29.9,1008.3,-29.640475870016786,-154.8183865439232,-2.9557945182243293,-100.48320663021711,-3.0281242906790236,-99.75333375797672,-44.99579047394516,-145.9114298400676
-1678868420,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.9,2.8,24.93,22.11,56.4,29.9,1008.4,-29.64036074608659,-154.82031306000695,-2.9558698237653913,-100.48298827784967,-3.0280648756446418,-99.75420775924192,-44.99514837321308,-145.91734136647182
-1678868430,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,2.9,24.93,22.11,56.4,29.9,1008.4,-29.640516077488307,-154.82099062664403,-2.9558943242702385,-100.48215617421903,-3.027980587809797,-99.75434275912178,-44.99546375090634,-145.9125998550587
-1678868440,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.9,3.4,24.91,22.13,56.4,29.9,1008.4,-29.640299862955942,-154.8223047104966,-2.9558006514048047,-100.4827527424192,-3.0279686012926206,-99.75353099061864,-44.9969463150779,-145.91176762329113
-1678868450,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,2.7,24.93,22.12,56.4,29.9,1008.4,-29.639953392841285,-154.82272543544573,-2.9557273609068506,-100.48228731367651,-3.0280370365813236,-99.75359548901592,-44.99703143954592,-145.91940590278114
-1678868460,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.0,3.0,24.93,22.14,56.4,29.9,1008.4,-29.63981620829191,-154.8234034403839,-2.955794653158679,-100.48148751964925,-3.0279469674251653,-99.75313568053376,-44.99572765441656,-145.9291257829221
-1678868470,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.2,2.7,24.93,22.15,56.4,29.9,1008.4,-29.640017904490882,-154.82089285487913,-2.955755716096555,-100.48188747532606,-3.0280852358445696,-99.7535328439621,-44.999905026159965,-145.902548860111
-1678868480,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.4,2.6,24.93,22.15,56.5,29.8,1008.3,-29.640206712682073,-154.81962602609,-2.9556880388096824,-100.4816464925787,-3.0281794716883197,-99.75355369815627,-44.99796620960893,-145.89615250854825
-1678868490,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,2.4,24.93,22.15,56.5,29.8,1008.4,-29.63960633286984,-154.8216894463045,-2.9557517415543044,-100.4821979455693,-3.0281126256151474,-99.75431338856805,-44.9959829003759,-145.90149085004919
-1678868500,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,2.1,24.93,22.17,56.5,29.8,1008.5,-29.639557328218306,-154.821293171342,-2.95566173044059,-100.48230485769494,-3.028168660637411,-99.75490212483541,-44.99647720479203,-145.897888290976
-1678868510,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.7,2.3,24.93,22.17,56.5,29.8,1008.4,-29.639339424518376,-154.8233266273135,-2.955740610501805,-100.48295994960125,-3.0281640095321287,-99.75428742900434,-44.99867827606973,-145.90014888838104
-1678868520,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.3,2.6,24.93,22.18,56.5,29.8,1008.4,-29.639284565469755,-154.82098360363725,-2.9557819608999107,-100.48243291971289,-3.02814715885415,-99.75365277504697,-44.99709169214218,-145.91899958224195
-1678868530,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,2.7,24.94,22.19,56.5,29.8,1008.4,-29.639500368217135,-154.8241560936682,-2.9557013103335534,-100.48187966469727,-3.0281409206624366,-99.75350340830968,-44.994625113213374,-145.91356435437962
-1678868540,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.4,2.5,24.96,22.2,56.5,29.8,1008.5,-29.639358706537664,-154.82280545126602,-2.955829072028799,-100.48102578359398,-3.0281335715041937,-99.75194667309853,-44.99577104805795,-145.91653039785785
-1678868550,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.5,3.2,24.98,22.21,56.5,29.8,1008.5,-29.63954781361715,-154.82198459952818,-2.955791298218267,-100.48070536103093,-3.0283125894480007,-99.75195971956181,-44.996400593905996,-145.90735323549364
-1678868560,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.4,2.5,24.97,22.23,56.5,29.7,1008.4,-29.639105932861227,-154.82166762810087,-2.9558620027944063,-100.48042257304895,-3.028233979803239,-99.75148453277936,-44.995141601792255,-145.91952158124164
-1678868570,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.6,2.4,24.97,22.23,56.5,29.7,1008.5,-29.63935047821591,-154.82337116832997,-2.955686521533884,-100.48028579537315,-3.028205859243073,-99.75144649333733,-44.992491037399766,-145.91697480056104
-1678868580,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.3,2.9,24.96,22.23,56.5,29.7,1008.6,-29.638837714680637,-154.8251252045908,-2.9557945797118808,-100.47972077366553,-3.028219435796318,-99.75105412547117,-44.989107356211335,-145.93732581328888
-1678868590,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.2,2.6,24.96,22.24,56.5,29.7,1008.5,-29.638971785189522,-154.82449080399104,-2.955827962543033,-100.47981517244301,-3.028220164251371,-99.75130945477532,-44.99121196314575,-145.92799347775045
-1678868600,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.0,2.3,24.94,22.24,56.5,29.7,1008.5,-29.63927440002,-154.82352014672105,-2.9559168454090337,-100.48036734309261,-3.0282566273159905,-99.75155132556536,-44.9935286127111,-145.93021343383745
-1678868610,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.7,2.5,24.94,22.24,56.5,29.7,1008.5,-29.638961988403732,-154.8213391021341,-2.9560429481908947,-100.48092957161957,-3.028053064871124,-99.75143311255657,-44.994593240151644,-145.92630914735963
-1678868620,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.4,3.0,24.93,22.25,56.4,29.7,1008.5,-29.63967328296432,-154.82023782557854,-2.9559586141396874,-100.48238253100504,-3.0281011314807103,-99.75172642749958,-44.99282009656901,-145.94094261799626
-1678868630,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,3.2,24.94,22.27,56.4,29.7,1008.5,-29.6390994398104,-154.82274298668307,-2.9558447412733013,-100.48178833834265,-3.028364443140909,-99.75104303703945,-44.99314832998909,-145.9281332750974
-1678868640,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.4,3.8,24.96,22.28,56.4,29.6,1008.6,-29.639319340456616,-154.81932371696269,-2.9560747809606465,-100.48100065712921,-3.0281626423580095,-99.75127377723457,-44.996036290278816,-145.9324684563145
-1678868650,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.0,2.9,24.96,22.29,56.3,29.6,1008.5,-29.638791630803123,-154.82333083019444,-2.956017807928321,-100.48096395796263,-3.028231091124648,-99.75111898304638,-44.99403319708242,-145.9342155076503
-1678868660,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.7,2.6,24.96,22.3,56.4,29.6,1008.5,-29.6382462984851,-154.8248187973647,-2.9557771537103648,-100.48060905035244,-3.0283414692942823,-99.75154486887158,-44.99271499249801,-145.93057301681762
-1678868670,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.1,1.9,24.97,22.3,56.4,29.6,1008.5,-29.638449668195157,-154.8260984349411,-2.955871757165313,-100.48018121005549,-3.0281632608169113,-99.75219404507114,-44.99316300279325,-145.93366382867396
-1678868680,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.4,2.4,24.98,22.3,56.4,29.6,1008.5,-29.63872340362332,-154.8257223343656,-2.9560121068494243,-100.48075262004795,-3.028107486241561,-99.75150070944227,-44.99331069708606,-145.92117759235606
-1678868690,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.1,2.0,24.98,22.3,56.4,29.6,1008.5,-29.638535285547025,-154.82408004311458,-2.955854155049122,-100.4811355346548,-3.02817749297174,-99.75193321133128,-44.99538813236336,-145.90867670541778
-1678868700,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.7,2.6,24.97,22.31,56.3,29.6,1008.5,-29.63876805039566,-154.82353610066554,-2.955581021335072,-100.48085098864706,-3.028187297285604,-99.75237284134039,-44.99565425097746,-145.92040889355275
-1678868710,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,3.1,24.97,22.3,56.3,29.6,1008.6,-29.638764606117228,-154.82393335550853,-2.955859018566938,-100.48083552397374,-3.0281162669812804,-99.75281730865403,-44.99487590837799,-145.9351461503216
-1678868720,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.6,2.5,24.96,22.31,56.3,29.6,1008.6,-29.639038880588224,-154.82338187907985,-2.9558097923960602,-100.48125514140472,-3.028248000944144,-99.75364338186507,-44.99660647117683,-145.93765222045366
-1678868730,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.9,3.0,24.93,22.31,56.3,29.6,1008.6,-29.63890700977885,-154.82473792772927,-2.9557248628379433,-100.48109858066103,-3.028070797603684,-99.75305256509813,-44.99270203276167,-145.9392552204538
-1678868740,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.4,3.3,24.96,22.32,56.3,29.6,1008.6,-29.63897900299322,-154.82432978216903,-2.9557542213590304,-100.48139019706281,-3.028179753880233,-99.75314735601907,-44.99606182825555,-145.931620049486
-1678868750,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,3.1,24.94,22.33,56.2,29.6,1008.5,-29.638951553156055,-154.824786114785,-2.9558155774910597,-100.48210582551117,-3.0280271388265545,-99.75284820386585,-44.995083110576786,-145.94187332989478
-1678868760,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.4,2.8,24.93,22.33,56.2,29.6,1008.6,-29.63856036238161,-154.82841990090108,-2.9558781834801255,-100.4812182604204,-3.02805420841485,-99.7534054660379,-44.99094780856669,-145.9549438360825
-1678868770,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,2.8,24.93,22.33,56.2,29.6,1008.5,-29.638687111390425,-154.8292782034675,-2.9559499593470955,-100.48198100755539,-3.02807775465852,-99.75409320982716,-44.993804622374824,-145.9314918532385
-1678868780,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.4,3.2,24.93,22.33,56.2,29.6,1008.6,-29.638717580531413,-154.82950502681763,-2.955817566468645,-100.4813658973235,-3.0280075753219386,-99.75332965267677,-44.989454750996465,-145.95054188718615
-1678868790,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.6,3.5,24.93,22.33,56.2,29.6,1008.6,-29.638088639579333,-154.8290969158187,-2.955646265960387,-100.48148583443029,-3.028015905309216,-99.753567300677,-44.99165983755255,-145.94733630072014
-1678868800,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.8,3.4,24.93,22.33,56.2,29.6,1008.6,-29.638659300062336,-154.824110478158,-2.9558630853903844,-100.48138862560496,-3.0280312514857757,-99.7533009680225,-44.99346796326245,-145.93429882503062
-1678868810,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.8,3.4,24.93,22.34,56.2,29.6,1008.5,-29.638470465193897,-154.8262766676574,-2.955943799353014,-100.48188255019177,-3.0279999558933453,-99.7532033691064,-44.99427920995089,-145.94738756310073
-1678868820,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.1,3.1,24.93,22.34,56.1,29.6,1008.6,-29.638733075147556,-154.82859399640932,-2.9557539079326265,-100.48168733354792,-3.0281470969219737,-99.75372426381125,-44.991599046457125,-145.94605625493557
-1678868830,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.7,3.2,24.96,22.35,56.1,29.6,1008.6,-29.638573348351287,-154.83064833778255,-2.955789341519722,-100.4816469549254,-3.0279673949073467,-99.75365464670861,-44.98996083091808,-145.94953164834334
-1678868840,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.3,2.9,24.94,22.36,56.1,29.6,1008.6,-29.6378461027358,-154.82999239724057,-2.955898595110884,-100.48206991247842,-3.0280917099844924,-99.75387544608202,-44.99051913848261,-145.94065883707324
-1678868850,25.0,25.0,55.0,55.0,0,1300000000,,,3,9.0,3.2,24.94,22.36,56.1,29.5,1008.6,-29.63835726703124,-154.82871309551555,-2.955823421577854,-100.48197820774338,-3.0280418703643757,-99.75391501507738,-44.99125116006304,-145.95618837476042
-1678868860,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.1,3.7,24.93,22.36,56.1,29.5,1008.7,-29.637876860941304,-154.83115668175182,-2.9557814215808587,-100.48156669771336,-3.028032617957528,-99.75315884163639,-44.99106029774584,-145.96835853054108
-1678868870,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,3.2,24.96,22.38,56.1,29.5,1008.6,-29.638024089252852,-154.8339813913045,-2.955805362347321,-100.4819310720138,-3.0281316598599153,-99.75332830093225,-44.98684954400431,-145.97222444069394
-1678868880,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,3.2,24.93,22.38,56.1,29.5,1008.6,-29.638138638619132,-154.83075469742485,-2.9559183999627874,-100.4818131679835,-3.0280235528198385,-99.75346446120017,-44.98725267388163,-145.96915280803435
-1678868890,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.0,3.2,24.93,22.39,56.1,29.5,1008.6,-29.638248977089134,-154.8306015187245,-2.9559705334518016,-100.48204741437097,-3.0279686745373313,-99.75375617854709,-44.99014989757005,-145.97158876353043
-1678868900,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.5,3.3,24.93,22.4,56.1,29.5,1008.5,-29.637863821328896,-154.83175176205003,-2.955777790508992,-100.48212567725349,-3.0280265891371103,-99.75284909486807,-44.98798988358602,-145.9679797606257
-1678868910,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.4,3.3,24.96,22.4,56.1,29.5,1008.6,-29.63812872086538,-154.82999608293363,-2.9558311547019205,-100.48165866291204,-3.027976935380498,-99.75347813738132,-44.99055276254232,-145.96229171537323
-1678868920,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.2,3.4,24.96,22.4,56.2,29.5,1008.6,-29.6379464514073,-154.8302404403129,-2.9556118294073515,-100.48152056126155,-3.0280257887371236,-99.75274043531842,-44.98698118045667,-145.98100610397685
-1678868930,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.6,3.4,24.94,22.4,56.2,29.5,1008.6,-29.637453589607077,-154.83118097913672,-2.9558619636897694,-100.48187759002211,-3.028157464199062,-99.75211033159324,-44.975594961087396,-145.96012543079846
-1678868940,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.0,2.7,24.94,22.4,56.2,29.5,1008.6,-29.637140164075838,-154.83132632515455,-2.9558899087252666,-100.48216629437616,-3.0281477556393566,-99.75278858846373,-44.970591152853466,-145.94410827569408
-1678868950,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,2.7,24.94,22.4,56.2,29.5,1008.6,-29.63662737674254,-154.83231246078253,-2.9560415807750076,-100.48080125087316,-3.028267481425038,-99.75308728360184,-44.97155789782498,-145.94618122145374
-1678868960,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.4,3.0,24.94,22.39,56.3,29.5,1008.6,-29.636630880749056,-154.8332377843013,-2.9560855366837817,-100.48126206979181,-3.0281122677279937,-99.75190077863803,-44.96456188974136,-145.97569788613467
-1678868970,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.8,2.9,24.93,22.39,56.3,29.5,1008.6,-29.63619860853051,-154.83634079335638,-2.955923371097734,-100.4816277914494,-3.028196435078673,-99.75215234396002,-44.965227834412296,-145.95992525741042
-1678868980,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.0,2.9,24.93,22.39,56.3,29.5,1008.6,-29.63622921990606,-154.8359672829043,-2.9559638851948895,-100.48080914983548,-3.0281262659537806,-99.75268015381606,-44.961650128325815,-145.97716393930892
-1678868990,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.9,3.4,24.93,22.39,56.3,29.5,1008.6,-29.635815016894043,-154.8373518253646,-2.956036947745708,-100.48090202776068,-3.028255996008158,-99.75276105602605,-44.95459132363861,-145.95254400981483
-1678869000,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.6,3.4,24.93,22.4,56.3,29.5,1008.6,-29.634592314570313,-154.8381873664938,-2.9559736819938376,-100.47980129966015,-3.02822915090313,-99.75268218912898,-44.951412367019074,-145.95949689841171
-1678869010,25.0,25.0,55.0,55.0,0,1300000000,,,3,9.1,3.4,24.93,22.41,56.3,29.5,1008.5,-29.634739741098677,-154.8370569253413,-2.9560895660718134,-100.47972223325125,-3.028419656621384,-99.75332023863386,-44.949744048705504,-145.94867878624672
-1678869020,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.6,3.0,24.93,22.41,56.3,29.5,1008.6,-29.63489102710263,-154.83808003011652,-2.9559590917585163,-100.48008605318593,-3.0282624095240633,-99.75289643177379,-44.948333917202774,-145.96573655580102
-1678869030,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.6,2.9,24.94,22.41,56.3,29.5,1008.5,-29.63463610762018,-154.83797522488524,-2.955920181106263,-100.47965854755373,-3.028420280881061,-99.75258097807216,-44.94731803251784,-145.95426430591831
-1678869040,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.4,3.3,24.93,22.42,56.3,29.5,1008.6,-29.634605251818023,-154.83706359674994,-2.9558302450699743,-100.48048257293328,-3.028321878456865,-99.75221698602532,-44.948226911413585,-145.93249302615445
-1678869050,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.5,3.2,24.96,22.43,56.3,29.5,1008.5,-29.635033156189788,-154.8352600191718,-2.956158414633465,-100.48056073944343,-3.0283016209158484,-99.75115630064616,-44.94313003933277,-145.96370827692473
-1678869060,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.4,3.5,24.96,22.45,56.3,29.4,1008.5,-29.634681806014807,-154.83479483709223,-2.9560480174816437,-100.48052184254993,-3.028305758893939,-99.75127925117367,-44.944389261461026,-145.96616968251442
-1678869070,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.5,3.3,24.96,22.45,56.3,29.4,1008.5,-29.63401278101548,-154.83778240732826,-2.9560762639700364,-100.47953796965125,-3.0280583609943457,-99.75030051408308,-44.94226113366992,-145.96584937197107
-1678869080,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,2.5,24.96,22.46,56.3,29.4,1008.5,-29.63396878618067,-154.83754513090614,-2.95594279899701,-100.47995500354784,-3.028366126727078,-99.75071080446044,-44.9396004692389,-145.9643512948313
-1678869090,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.1,2.8,24.96,22.47,56.3,29.4,1008.6,-29.634171490998323,-154.83930750782886,-2.956045242948695,-100.48022728511884,-3.0282912295889246,-99.75048350503157,-44.942105232185384,-145.96028260849602
-1678869100,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.5,2.6,24.96,22.48,56.3,29.4,1008.6,-29.63444801994521,-154.83811022671298,-2.956220777240911,-100.47976508252596,-3.0283467263725194,-99.75077301594904,-44.93947449301345,-145.97037778923388
-1678869110,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.7,2.6,24.93,22.49,56.3,29.4,1008.6,-29.634800846003433,-154.83674880129533,-2.9560650762772465,-100.47983217771373,-3.0282528264685165,-99.75048346106455,-44.93871962698583,-145.97310400377665
-1678869120,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.9,2.9,24.94,22.51,56.4,29.4,1008.6,-29.63430561270514,-154.83792281313274,-2.9559755367933076,-100.47997777999237,-3.028226253960868,-99.75109370777217,-44.93697430247343,-145.94879227023947
-1678869130,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.7,3.1,24.96,22.51,56.3,29.3,1008.6,-29.63472965609111,-154.83792516707734,-2.9560790071941585,-100.48020495879324,-3.0283211979373936,-99.75108283697315,-44.936819921109105,-145.95476505633255
-1678869140,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.1,2.8,24.96,22.5,56.3,29.4,1008.5,-29.63459702293134,-154.83689278319574,-2.9562843767408853,-100.48030452638808,-3.0281652795063607,-99.75130446023012,-44.94087432360544,-145.95132916123106
-1678869150,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.3,2.7,24.94,22.49,56.4,29.4,1008.6,-29.63462257521912,-154.83516634615958,-2.956245554410924,-100.48035741746881,-3.028376706522737,-99.75126009234053,-44.94075260703231,-145.9574080143987
-1678869160,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.2,2.8,24.94,22.48,56.3,29.4,1008.6,-29.63442083096888,-154.8353785550094,-2.956204460640935,-100.48055133647357,-3.0283601425110334,-99.75068907736166,-44.94435182115169,-145.94823569174247
-1678869170,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.6,2.6,24.93,22.48,56.3,29.4,1008.5,-29.634549919594274,-154.8337036007453,-2.956211116812817,-100.48093068968377,-3.028399552076741,-99.75077960594336,-44.94433874384551,-145.94617465710851
-1678869180,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,2.8,24.93,22.44,56.3,29.4,1008.6,-29.6347942339382,-154.83466361295154,-2.9559844201244734,-100.48140588262552,-3.028216353093369,-99.75251165375496,-44.94206130646133,-145.9376471337155
-1678869190,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.1,3.4,24.91,22.43,56.3,29.5,1008.6,-29.634327133541085,-154.8338082805887,-2.9559931554660785,-100.47969504947254,-3.0283286619783127,-99.75284058003434,-44.94341131098111,-145.9427918899091
-1678869200,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.1,3.0,24.93,22.41,56.4,29.5,1008.6,-29.6348656879143,-154.83661121145465,-2.956111295546366,-100.48006497050153,-3.0281492244788257,-99.75357027319595,-44.94608561643919,-145.93715078014853
-1678869210,25.0,25.0,55.0,55.0,0,1300000000,,,3,9.0,2.4,24.91,22.4,56.4,29.5,1008.6,-29.634608642680703,-154.8362614409761,-2.956016304727083,-100.48087509121768,-3.0280718920671323,-99.75299766292831,-44.94622060942676,-145.9523450762297
-1678869220,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.5,2.6,24.9,22.38,56.4,29.5,1008.6,-29.634669180559783,-154.83582465571175,-2.9560150982707887,-100.4812263029902,-3.0282435658724567,-99.75325069133793,-44.94643960674254,-145.94351818578778
-1678869230,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.3,3.5,24.93,22.35,56.4,29.6,1008.6,-29.634972872685296,-154.83293938407104,-2.9559565433380137,-100.4810329865686,-3.028258287295489,-99.75273694822874,-44.944845622268346,-145.94340390998119
-1678869240,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.6,3.5,24.93,22.33,56.4,29.6,1008.6,-29.635363850930425,-154.83369981893816,-2.9561373128238633,-100.48145273817107,-3.0281296564999067,-99.75223959549469,-44.94643442127891,-145.94130538551687
-1678869250,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.4,3.2,24.93,22.3,56.4,29.6,1008.6,-29.634536124180716,-154.8344415095875,-2.9560596806295503,-100.48144699369229,-3.0282335955422184,-99.75272582783668,-44.947813491585784,-145.92407075505545
-1678869260,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.4,2.9,24.93,22.28,56.4,29.6,1008.6,-29.635158900395755,-154.83377300431033,-2.956149474448409,-100.4810192076524,-3.0282648471316076,-99.75269643731461,-44.94770460694156,-145.9239677025523
-1678869270,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.0,3.1,24.93,22.26,56.4,29.7,1008.7,-29.634961468023306,-154.83506203953382,-2.9561254651173208,-100.48065299566021,-3.0280484820368865,-99.75320669977283,-44.945184013884,-145.93959001235237
-1678869280,25.0,25.0,55.0,55.0,0,1300000000,,,3,4.5,2.9,24.93,22.25,56.4,29.7,1008.6,-29.63495432868936,-154.8341932273866,-2.956009063513412,-100.4808508152855,-3.0280569883829074,-99.75280247002891,-44.946317707300665,-145.9413610663922
-1678869290,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.6,2.7,24.94,22.24,56.4,29.7,1008.7,-29.635251110096586,-154.83537578489998,-2.956456065984608,-100.48032875143431,-3.0280958963243587,-99.75262650711305,-44.94314886485381,-145.93710002317877
-1678869300,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.3,2.5,24.94,22.18,56.5,29.8,1008.6,-29.634857927766284,-154.83627996849665,-2.956025424484101,-100.48073106308958,-3.0282119150800604,-99.75324919650265,-44.94468276256672,-145.92847036585505
-1678869310,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,2.7,24.94,22.16,56.5,29.8,1008.7,-29.63510996667438,-154.83354549768367,-2.9561389654053554,-100.4799445863076,-3.0281376152189985,-99.75396076189215,-44.94426330770602,-145.9402738100326
-1678869320,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.0,2.7,24.93,22.14,56.4,29.9,1008.6,-29.63473032369958,-154.8336245280935,-2.9562225706185874,-100.48038045400232,-3.0282510371461697,-99.75337228343702,-44.94356826192374,-145.938086614138
-1678869330,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.6,3.0,24.94,22.13,56.4,29.9,1008.6,-29.635459457629718,-154.83090589751674,-2.9560790475629677,-100.48068257096675,-3.028184553145581,-99.75387548000492,-44.94304832123295,-145.92877925943472
-1678869340,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.6,3.3,24.91,22.09,56.4,29.9,1008.7,-29.635061085048115,-154.83358882097505,-2.9559864756012937,-100.48178682724512,-3.0283054651068575,-99.75231582927996,-44.94283094043312,-145.92552320943207
-1678869350,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.4,3.0,24.93,22.08,56.4,30.0,1008.7,-29.634802949354764,-154.83423657747372,-2.9561373869711494,-100.48087485264239,-3.028304220543363,-99.75305662666396,-44.94397405892074,-145.92216140643828
-1678869360,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,3.0,24.93,22.05,56.4,30.0,1008.6,-29.634919521018244,-154.83262869632603,-2.9561091431393653,-100.4814369518231,-3.02847993590978,-99.75313871881666,-44.9450305133825,-145.91373578022362
-1678869370,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.8,3.2,24.93,22.04,56.4,30.1,1008.7,-29.634677585550264,-154.83415283640406,-2.9562150469772215,-100.48092851941514,-3.028350871024743,-99.75269786306218,-44.94160719733265,-145.92843253492998
-1678869380,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.6,2.8,24.93,22.02,56.3,30.0,1008.7,-29.635262275922408,-154.8312535029006,-2.9561157472238215,-100.48171977999179,-3.0284069134501514,-99.75315298923043,-44.943736771174684,-145.92423484589074
-1678869390,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.2,3.1,24.93,22.0,56.3,30.1,1008.7,-29.63463304741344,-154.83519539807693,-2.956110529055636,-100.48065369243695,-3.0282531661576533,-99.75207458442515,-44.94367355932184,-145.9238005769231
-1678869400,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,3.4,24.94,21.99,56.3,30.1,1008.7,-29.634306565734,-154.83418043856088,-2.956029962923507,-100.48060980085808,-3.0284057631876395,-99.7522186088515,-44.944112879798226,-145.92677418324516
-1678869410,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.1,3.4,24.93,21.99,56.3,30.1,1008.8,-29.634388782274137,-154.8355258816889,-2.9562273178417704,-100.47899270418407,-3.028565018293027,-99.75264722192118,-44.94133208028533,-145.93780344061648
-1678869420,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.0,3.0,24.93,21.93,56.2,30.2,1008.7,-29.6346230048188,-154.83401085967876,-2.9562178450072545,-100.4802904509556,-3.028431960204656,-99.75153671608045,-44.9412675624736,-145.92241965450722
-1678869430,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.2,3.4,24.93,21.91,56.2,30.2,1008.7,-29.634353602041394,-154.8335012910048,-2.956090295791933,-100.48056987451321,-3.0285290737117503,-99.75214623854211,-44.94240504208654,-145.92657230035843
-1678869440,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,3.3,24.94,21.9,56.2,30.2,1008.7,-29.634169863657107,-154.83452495753392,-2.956046842365204,-100.48064662582804,-3.0284107211750575,-99.75193020125532,-44.94127121686526,-145.9303895192821
-1678869450,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.1,3.0,24.94,21.9,56.3,30.2,1008.7,-29.634086497458604,-154.83304890349754,-2.9561477912227705,-100.48129123697109,-3.0286821675372626,-99.75118559840485,-44.94341000394991,-145.93328794944046
-1678869460,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.3,2.8,24.93,21.9,56.3,30.2,1008.7,-29.633828165119827,-154.8359141259556,-2.9562458407360714,-100.48027812542526,-3.0284666096584942,-99.75112962458736,-44.936657100223734,-145.9464302348604
-1678869470,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.0,2.6,24.97,21.9,56.3,30.2,1008.6,-29.634010527528623,-154.8349659328645,-2.9562453033157867,-100.48020536895748,-3.0285927058034185,-99.7509305623911,-44.93673983075182,-145.95119631234186
-1678869480,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,2.6,24.93,21.87,56.3,30.3,1008.7,-29.6337825529072,-154.83667663263392,-2.9561925893752274,-100.47997504092953,-3.0284811482721485,-99.7506234631172,-44.93521308849006,-145.93280262966977
-1678869490,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.8,3.3,24.96,21.88,56.3,30.3,1008.7,-29.633699292139845,-154.83713012957628,-2.956090499220413,-100.4805315387724,-3.0285201189649653,-99.74958338906629,-44.937020992280836,-145.92474836581843
-1678869500,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.6,2.8,24.96,21.89,56.3,30.3,1008.7,-29.6334388410745,-154.83831291211249,-2.9562562133883845,-100.47998357333476,-3.028558006916839,-99.74945521939408,-44.93369050212655,-145.95261190095326
-1678869510,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.2,2.9,24.97,21.9,56.3,30.2,1008.7,-29.633436988644203,-154.83932519822528,-2.9562790619615193,-100.47946174857697,-3.0285235723187203,-99.75028772499812,-44.93223601944172,-145.94907567989787
-1678869520,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.5,2.6,24.94,21.91,56.3,30.2,1008.8,-29.633602493439483,-154.83966441541432,-2.9561282583687727,-100.4806388330618,-3.028334294443092,-99.75087805051662,-44.932181755180515,-145.960180944505
-1678869530,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,2.5,24.94,21.93,56.4,30.2,1008.7,-29.633461829477845,-154.84141141483965,-2.9560831736708835,-100.4802945618974,-3.0284148067576555,-99.75173440773612,-44.931227374893126,-145.95317008572619
-1678869540,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.8,2.7,24.93,21.94,56.3,30.2,1008.7,-29.633404308884185,-154.83938205908055,-2.956069940567735,-100.47959970137674,-3.028427673218839,-99.75163615307488,-44.93335709286466,-145.95924552226185
-1678869550,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.3,3.0,24.93,21.94,56.3,30.2,1008.7,-29.633271619520627,-154.84191950524493,-2.95601936307341,-100.48049392378869,-3.028418475079973,-99.75155402467912,-44.930452316616744,-145.95062163577586
-1678869560,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,3.3,24.93,21.94,56.3,30.2,1008.7,-29.633260247881175,-154.8419532035996,-2.9563273816279385,-100.48037950660967,-3.0282040926289473,-99.75151195676143,-44.92915628822803,-145.95638028639632
-1678869570,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.9,2.9,24.93,21.96,56.3,30.1,1008.6,-29.63301704477988,-154.8433289889634,-2.955979690687797,-100.48078317581673,-3.028409787337859,-99.75173551089073,-44.929988496847244,-145.94859235401984
-1678869580,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.4,3.0,24.96,21.95,56.3,30.1,1008.8,-29.632916551439013,-154.8427772681375,-2.9560672449417598,-100.4806539350532,-3.0285587449678157,-99.75283888296617,-44.93160646755478,-145.95653872032423
-1678869590,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.4,2.8,24.93,21.96,56.3,30.1,1008.7,-29.633045046019074,-154.8400271620762,-2.956126232584352,-100.48107729667873,-3.028345685712732,-99.75260721880218,-44.93066908055508,-145.9551744868242
-1678869600,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.1,2.7,24.93,21.96,56.3,30.1,1008.7,-29.63270348740054,-154.8416394925658,-2.9562206360178402,-100.48137631913175,-3.0284135371017387,-99.75346090555428,-44.933030763216394,-145.97647613023443
-1678869610,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,2.9,24.93,21.96,56.3,30.1,1008.7,-29.632693305837464,-154.8393222396595,-2.9563204119749993,-100.48183743369448,-3.0283127850511926,-99.75291182954761,-44.932358573246624,-145.96615555342535
-1678869620,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.0,2.7,24.93,21.99,56.4,30.1,1008.7,-29.632501269794016,-154.84139267691074,-2.956082561806001,-100.48153480230779,-3.0284065262603628,-99.75312087751108,-44.92877257301829,-145.98489257944803
-1678869630,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.3,2.5,24.93,21.99,56.4,30.1,1008.7,-29.632817481984418,-154.84253574554504,-2.955894939007476,-100.48212814796803,-3.0285114810763214,-99.75274393942068,-44.931517150635386,-145.96256147413138
-1678869640,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.2,3.4,24.93,22.0,56.3,30.1,1008.7,-29.632525795538285,-154.8414507770841,-2.9559640174888457,-100.48105961816938,-3.0282511130341767,-99.75328456164266,-44.926524404180384,-145.99430006757527
-1678869650,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.0,3.7,24.93,22.0,56.3,30.1,1008.7,-29.63242066640118,-154.8425090226501,-2.9560354434475067,-100.48056494796339,-3.02824555108396,-99.7533187792953,-44.92943026327217,-145.99479267283394
-1678869660,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.7,3.5,24.93,22.02,56.3,30.1,1008.7,-29.632666295156774,-154.84191766894452,-2.956029159822333,-100.48154409581736,-3.0283192872286073,-99.75267485260096,-44.93087781531932,-145.9830769581856
-1678869670,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,3.4,24.94,22.01,56.3,30.1,1008.8,-29.631562846196587,-154.84502994273004,-2.9559582669716318,-100.48123896694084,-3.028573833900171,-99.75246694276105,-44.930774783099196,-145.96844989591523
-1678869680,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.5,3.2,24.93,22.03,56.2,30.1,1008.7,-29.63192096763922,-154.84596090669774,-2.9559572079491407,-100.48090750476507,-3.028391568278099,-99.75373212432278,-44.929077633544495,-145.96963545153613
-1678869690,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.6,3.1,24.93,22.03,56.2,30.1,1008.7,-29.631516237476422,-154.84496633096884,-2.955971265188812,-100.48090098899972,-3.0282749012422006,-99.75270611907398,-44.92834105534487,-145.99557809713943
-1678869700,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.2,3.5,24.93,22.04,56.2,30.1,1008.8,-29.631527034262994,-154.84396127269846,-2.956078663477941,-100.48097902507773,-3.028225116461651,-99.75316049296399,-44.9279386838904,-145.9942771825075
-1678869710,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.1,3.5,24.93,22.05,56.2,30.0,1008.8,-29.63111660896351,-154.8437106521017,-2.9559119403253837,-100.47996158267287,-3.028520544476318,-99.75367739833503,-44.926599529572826,-145.98279306944215
-1678869720,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.6,3.2,24.93,22.06,56.2,30.0,1008.7,-29.631219358489844,-154.84511282457217,-2.955836664038954,-100.48079822510545,-3.0284050725013953,-99.75297773827928,-44.92674948114637,-145.98662959391442
-1678869730,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.3,3.1,24.93,22.08,56.3,30.0,1008.8,-29.63108500134536,-154.8436870450467,-2.956024122888154,-100.48057081837383,-3.0283818316494355,-99.75341930896415,-44.92920275903983,-145.99076525581273
-1678869740,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.7,3.0,24.93,22.09,56.2,30.0,1008.8,-29.630829346361303,-154.84601431659704,-2.956111097933153,-100.48065569833638,-3.0284019908301385,-99.75274454405509,-44.92651852144228,-145.9965190894287
-1678869750,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.2,3.1,24.93,22.1,56.2,30.0,1008.8,-29.630384272619462,-154.84685511830003,-2.956036331070822,-100.48076238874455,-3.0285815657136212,-99.75299398465255,-44.92690484876995,-145.98984696068823
-1678869760,25.0,25.0,55.0,55.0,0,1300000000,,,3,9.1,3.2,24.93,22.11,56.2,29.9,1008.8,-29.630339584550732,-154.8475940865487,-2.9560089122003324,-100.48101627465131,-3.0286062483567755,-99.75340449588256,-44.927365102192866,-145.99700728751688
-1678869770,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.1,3.2,24.93,22.11,56.2,29.9,1008.8,-29.630423559896848,-154.84818239674814,-2.9559637148703826,-100.48107346820957,-3.0285603940690766,-99.75244950447788,-44.929281239713546,-145.98641616588552
-1678869780,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.7,3.4,24.94,22.12,56.2,29.9,1008.8,-29.630177385766096,-154.84860759653608,-2.9558517070248156,-100.48087214838851,-3.0284894995258913,-99.75203017892503,-44.923655443722964,-146.00081511865366
-1678869790,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.6,3.1,24.96,22.13,56.2,29.9,1008.9,-29.629755502073934,-154.85218206473593,-2.9558304760667027,-100.48069265175113,-3.0283484529359384,-99.75190564967988,-44.92327972289481,-146.00375684995547
-1678869800,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.1,3.3,24.93,22.15,56.3,29.9,1008.8,-29.630381388807248,-154.84832789050128,-2.9558881003905095,-100.4803950215423,-3.0285439907363894,-99.75297611238965,-44.9228515628214,-145.99985499644382
-1678869810,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.5,3.2,24.93,22.14,56.2,29.9,1008.8,-29.629916412221373,-154.85026280798812,-2.9559323162108475,-100.48084675729089,-3.028557059152723,-99.75214557115494,-44.921233596246765,-145.9993127033547
-1678869820,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.4,2.9,24.93,22.15,56.3,29.9,1008.8,-29.630482968824797,-154.849263014722,-2.955999868026092,-100.48159641875125,-3.0284955504856663,-99.75250260634958,-44.92253347034261,-146.00872244779586
-1678869830,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.6,3.1,24.93,22.15,56.3,29.9,1008.8,-29.630438297630135,-154.85204419611543,-2.956041858095086,-100.48167833304997,-3.028464023678996,-99.75214143405293,-44.9194606006408,-146.0076270135147
-1678869840,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.0,3.4,24.93,22.16,56.3,29.8,1008.8,-29.63011271076857,-154.84982537410812,-2.9559486847013665,-100.48139649459223,-3.0284564157270872,-99.75138138307214,-44.9195423083804,-145.9981472641306
-1678869850,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,3.2,24.94,22.17,56.3,29.8,1008.8,-29.629584976371905,-154.85088525495757,-2.9559964989703857,-100.48085253830679,-3.028349474538708,-99.75134196628157,-44.915207000726284,-146.02677384279536
-1678869860,25.0,25.0,55.0,55.0,0,1300000000,,,3,9.1,3.2,24.94,22.17,56.2,29.8,1008.8,-29.629805219876282,-154.8494748860186,-2.956040893365672,-100.48123513652105,-3.028490161525959,-99.75203567237641,-44.91923179351636,-146.00582676986988
-1678869870,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.9,2.9,24.93,22.18,56.3,29.8,1008.8,-29.62985937576738,-154.85028812460988,-2.9557135831837162,-100.481731270725,-3.02857577600874,-99.75209209297138,-44.92356362809134,-146.00417196585497
-1678869880,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.7,3.3,24.93,22.19,56.3,29.8,1008.8,-29.62988437417238,-154.84790494914637,-2.955865353548151,-100.48164844595003,-3.0285144090600014,-99.75192036133579,-44.92055619634799,-146.0079095301732
-1678869890,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.0,2.6,24.93,22.19,56.3,29.8,1008.8,-29.630453475242238,-154.84850645702798,-2.9558974737624437,-100.48122445723642,-3.0283276952355527,-99.75274319929702,-44.9192818215093,-146.0170683454044
-1678869900,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.4,3.0,24.93,22.2,56.3,29.8,1008.8,-29.630799074644834,-154.84691126644051,-2.9559941520614745,-100.48172846064632,-3.0285729618593153,-99.75310918580035,-44.92236944559874,-146.00239786841806
-1678869910,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.5,3.3,24.93,22.2,56.3,29.8,1008.8,-29.63079314365606,-154.8462436685618,-2.956030582201733,-100.48158192516256,-3.0284376837530056,-99.75324149065817,-44.921921303526645,-145.99662978925363
-1678869920,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.1,3.9,24.93,22.21,56.3,29.8,1008.8,-29.63092199876286,-154.844585878978,-2.956192213743077,-100.48026713362535,-3.0285496336923794,-99.75317344206915,-44.919130237390206,-146.01246711710738
-1678869930,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.5,3.2,24.93,22.2,56.3,29.8,1008.8,-29.63023605753396,-154.84637124225472,-2.9561115572544994,-100.47926825212315,-3.0284590249188637,-99.75282904909021,-44.91580979677698,-146.02449747181666
-1678869940,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.3,2.8,24.93,22.21,56.3,29.8,1008.8,-29.629888479262707,-154.8476809960894,-2.9559884483923997,-100.48011804269011,-3.028456329778859,-99.75150298168256,-44.916945709597385,-146.01465450783564
-1678869950,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.3,3.0,24.96,22.21,56.3,29.8,1008.8,-29.630434856600047,-154.84610964290513,-2.9560379107898282,-100.48061492673729,-3.028495097956012,-99.75207733581716,-44.91985214725358,-146.01110049388856
-1678869960,25.0,25.0,55.0,55.0,0,1300000000,,,3,4.7,2.8,24.96,22.24,56.3,29.7,1008.8,-29.630091950214613,-154.84862197367357,-2.9561114173668495,-100.48099824612981,-3.0286051434427126,-99.75211160535264,-44.91912161803984,-146.0158925503888
-1678869970,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.2,3.0,24.94,22.24,56.3,29.7,1008.9,-29.63006775718473,-154.8505293096785,-2.9559571042630473,-100.48007358988627,-3.0284043416288418,-99.75212380183508,-44.913867738861526,-146.0337158631667
-1678869980,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.9,3.0,24.93,22.24,56.3,29.7,1008.8,-29.63032037829388,-154.85108034854832,-2.9561211374266345,-100.48032597896888,-3.028213476338034,-99.75188462080192,-44.91104672659867,-146.03870918234088
-1678869990,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.0,3.3,24.94,22.24,56.2,29.7,1008.8,-29.62995763586786,-154.85065417280921,-2.9560689364770294,-100.48094343777245,-3.0283167196886778,-99.75128543747643,-44.915047776672814,-146.02404754303458
-1678870000,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.6,3.5,24.93,22.25,56.2,29.7,1008.9,-29.63046649016848,-154.849660304256,-2.956249089930111,-100.48115031431367,-3.0282425301173896,-99.75040612343814,-44.913594127583245,-146.01841745538908
-1678870010,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.5,3.4,24.96,22.25,56.2,29.7,1008.8,-29.63033549198453,-154.84764373804185,-2.956178579788591,-100.48064925005211,-3.028419867319588,-99.75113528545477,-44.914929191129715,-146.01380814048824
-1678870020,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,3.6,24.96,22.25,56.2,29.7,1008.8,-29.630261616173023,-154.84875412236107,-2.9562843447305607,-100.48032700201189,-3.0284125028504127,-99.75055949196889,-44.913931693459865,-146.04480682479507
-1678870030,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.9,3.6,24.93,22.25,56.2,29.7,1008.8,-29.63046790013744,-154.84922920624325,-2.9562043656388064,-100.48043108048286,-3.0284210940559664,-99.75079560418916,-44.91049911671885,-146.0408338097342
-1678870040,25.0,25.0,55.0,55.0,0,1300000000,,,3,4.4,3.4,24.96,22.25,56.2,29.7,1008.8,-29.630398436323638,-154.84762993418877,-2.95630377038707,-100.47995825807226,-3.028443938088297,-99.75112704248066,-44.91357920621965,-146.03501506242253
-1678870050,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.7,3.1,24.94,22.25,56.2,29.7,1008.8,-29.630620656765668,-154.84730640354297,-2.956039665921732,-100.48088634161687,-3.0284202021168043,-99.75152627446028,-44.91688124894961,-146.01314949967724
-1678870060,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,3.0,24.96,22.26,56.3,29.7,1008.8,-29.630440406663862,-154.84882369937267,-2.9562463102530563,-100.48020638479285,-3.028422181185034,-99.75192844263381,-44.91534853748756,-146.04597388969833
-1678870070,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.6,3.2,24.94,22.26,56.3,29.7,1008.9,-29.630101691967447,-154.84974435838203,-2.9560761398669926,-100.48050143004288,-3.0282845395190123,-99.75104799966843,-44.91336568910516,-146.0287788700938
-1678870080,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.0,2.9,24.93,22.26,56.2,29.7,1008.9,-29.630770753967887,-154.84678344991525,-2.9560774731379387,-100.48100271068043,-3.028436230111144,-99.75174867676806,-44.91494428642941,-146.0097354033912
-1678870090,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,3.2,24.93,22.27,56.3,29.7,1008.9,-29.63068238473892,-154.84902780355395,-2.956078009861449,-100.48121171348467,-3.0285070185841914,-99.75201177022139,-44.91686357377808,-146.00978378351147
-1678870100,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.9,3.6,24.93,22.27,56.3,29.7,1008.9,-29.630745097292564,-154.8502853446888,-2.95610795152141,-100.48073468709438,-3.028482458113912,-99.7520245735342,-44.911602027948945,-146.02304973378193
-1678870110,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.7,3.3,24.93,22.27,56.3,29.7,1008.9,-29.630414000016458,-154.8471597937032,-2.9562117487023096,-100.48018209793183,-3.0283332063546062,-99.75174681844271,-44.91297792017495,-146.02155894169022
-1678870120,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.2,2.9,24.93,22.28,56.3,29.7,1008.8,-29.630422052054897,-154.8488767389747,-2.956100117815264,-100.48075603690052,-3.0285781062719597,-99.75193533624079,-44.91715126971507,-146.00483510698126
-1678870130,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.3,3.0,24.93,22.28,56.3,29.6,1008.9,-29.63022619247331,-154.84856466740888,-2.9562314364385944,-100.48017844747872,-3.028508453259695,-99.75197090699663,-44.91170635785907,-146.02888747763683
-1678870140,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.4,3.0,24.93,22.29,56.3,29.7,1008.9,-29.63007523929513,-154.84881973095736,-2.9562501713090543,-100.48144650850284,-3.0285860318313613,-99.75232227523789,-44.9163177970523,-146.01514799966898
-1678870150,25.0,25.0,55.0,55.0,0,1300000000,,,3,4.7,2.8,24.91,22.29,56.4,29.6,1008.9,-29.63084134696978,-154.84834573823338,-2.956383474132593,-100.48152429973204,-3.02847675803146,-99.75274284284112,-44.91440251865911,-146.0091327257769
-1678870160,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.4,2.7,24.93,22.29,56.4,29.6,1008.9,-29.630359128109674,-154.8484935204833,-2.9561228984866044,-100.48129389601166,-3.0283968544918154,-99.75237160899998,-44.91433293980666,-146.00859047575335
-1678870170,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.3,3.0,24.93,22.29,56.4,29.6,1008.9,-29.630260781765397,-154.848350139648,-2.9563043718317057,-100.48130622982376,-3.028201958203207,-99.75210931251868,-44.91314889993432,-146.02864457936323
-1678870180,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.3,2.8,24.93,22.3,56.4,29.6,1008.9,-29.63036333813852,-154.84688371686923,-2.956284588084619,-100.48115117378318,-3.02833112738228,-99.75235054401793,-44.91517048132627,-146.00208724348883
-1678870190,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.3,3.0,24.93,22.3,56.3,29.6,1008.9,-29.630786643977572,-154.84725166991203,-2.956452384296946,-100.48190805862654,-3.028270214971452,-99.75281640292204,-44.91355198948369,-146.014804149109
-1678870200,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,3.0,24.93,22.31,56.3,29.6,1008.9,-29.630995428014803,-154.84669258775335,-2.956378399798407,-100.4825628580808,-3.028324807070594,-99.75176976560665,-44.912923854842866,-146.01140871005006
-1678870210,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.3,3.3,24.91,22.31,56.4,29.6,1008.9,-29.630791111184166,-154.84608479308147,-2.9565778460915713,-100.48183042779529,-3.028378759113146,-99.75261263697662,-44.9135646420776,-146.02049094622024
-1678870220,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.4,3.5,24.94,22.33,56.3,29.6,1008.8,-29.630505597202678,-154.84684413780195,-2.956359563568048,-100.48173632336395,-3.028382186505021,-99.75198925610545,-44.91386356473746,-146.01801295809514
-1678870230,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.7,3.0,24.93,22.33,56.3,29.6,1008.9,-29.63023322423231,-154.8490334004827,-2.956354162716333,-100.48123311965217,-3.0284117062105547,-99.7531988502903,-44.91363404794707,-146.0069867914789
-1678870240,25.0,25.0,55.0,55.0,0,1300000000,,,3,9.4,3.2,24.93,22.34,56.3,29.6,1008.9,-29.63032422256696,-154.85088478641603,-2.9561530257646447,-100.48166548927011,-3.0284776645797717,-99.75308952575666,-44.91348173649257,-146.0203910661906
-1678870250,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.8,2.7,24.93,22.34,56.3,29.6,1008.9,-29.629912068213823,-154.8486527112314,-2.9562837485577935,-100.4811964396545,-3.028432831951439,-99.75250275079371,-44.91462190712845,-146.01754217365266
-1678870260,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.2,2.7,24.93,22.35,56.3,29.6,1008.9,-29.63040296335642,-154.84669299291042,-2.9563552947928144,-100.48159082048105,-3.0282572685229554,-99.75276087719168,-44.91420140595782,-146.02124325812417
-1678870270,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.1,3.1,24.93,22.35,56.3,29.6,1008.9,-29.630468491174085,-154.84759654300498,-2.9562124189045114,-100.48155875889621,-3.0282196825969283,-99.75260497367839,-44.91451806280851,-146.0192150937942
-1678870280,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.6,2.9,24.93,22.35,56.3,29.6,1008.9,-29.630138795280136,-154.85027997097956,-2.9561634304065407,-100.48035854145714,-3.0281548621954317,-99.7537363386812,-44.91272648929119,-146.019025285041
-1678870290,25.0,25.0,55.0,55.0,0,1300000000,,,3,9.0,3.4,24.93,22.38,56.3,29.6,1008.9,-29.629858267025405,-154.84985975636016,-2.956189682917118,-100.48076643460594,-3.0283338555422015,-99.75215659702008,-44.91521843829766,-146.0177409788952
-1678870300,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.6,3.2,24.96,22.4,56.3,29.5,1008.9,-29.629752567622102,-154.8512787798531,-2.9563644146873616,-100.48014362829385,-3.028259733234562,-99.75238398672418,-44.91407331733367,-146.03135629932467
-1678870310,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.6,2.9,24.96,22.39,56.2,29.5,1009.0,-29.629837326705008,-154.84951547853694,-2.95620840947284,-100.48038741685438,-3.028236390761036,-99.75250217458202,-44.914422047780164,-146.01368946285956
-1678870320,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.9,3.0,24.94,22.39,56.3,29.5,1008.9,-29.63016746992934,-154.84979751995232,-2.9560937000999568,-100.48070832116728,-3.0283563548515064,-99.75330340010696,-44.91709487522038,-145.98825390099765
-1678870330,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.1,3.5,24.93,22.39,56.3,29.6,1009.0,-29.62956016267233,-154.84967927927002,-2.9560817373760395,-100.47940653362626,-3.0281881708396807,-99.75289605105016,-44.914346622730854,-146.00309073211363
-1678870340,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.1,3.1,24.93,22.39,56.3,29.6,1008.9,-29.629627662000328,-154.85105422765432,-2.956383993454948,-100.4799307630916,-3.0282076710476096,-99.75204809714926,-44.91421587726972,-146.01349874688432
-1678870350,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.7,2.8,24.97,22.4,56.3,29.6,1008.9,-29.62968590495937,-154.85081161281653,-2.956411907906001,-100.47928991520912,-3.028228716291475,-99.75109517318499,-44.911085699444016,-146.00016799737043
-1678870360,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.3,3.0,24.96,22.4,56.3,29.5,1008.9,-29.629942582985805,-154.85133034582034,-2.9561275008820598,-100.47964208852449,-3.028244243914557,-99.75157192269637,-44.91494582526053,-146.01099367782658
-1678870370,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.2,3.2,24.93,22.4,56.3,29.5,1008.9,-29.6294895098522,-154.85118330678682,-2.956244484046222,-100.47996412632249,-3.028389510793221,-99.75083677171575,-44.912996688217824,-146.02290165435306
-1678870380,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.8,3.1,24.94,22.42,56.3,29.5,1009.0,-29.62981400644579,-154.85163940092426,-2.9563240804943125,-100.47880008195756,-3.028277465248152,-99.75125917353652,-44.91470846654879,-146.02337655642742
-1678870390,25.0,25.0,55.0,55.0,0,1300000000,,,3,9.2,2.9,24.93,22.41,56.3,29.5,1008.9,-29.629920011728906,-154.85179433721223,-2.956266794619884,-100.47949587455513,-3.028267965064106,-99.75157357588745,-44.91310304617152,-146.02614943480742
-1678870400,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.9,2.8,24.93,22.4,56.3,29.5,1008.9,-29.62954557353566,-154.8512704253945,-2.9561662294118385,-100.47961388206194,-3.0283536226708847,-99.75173289482261,-44.9142651821764,-146.04042077135512
-1678870410,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.3,3.1,24.93,22.4,56.3,29.5,1009.0,-29.629666759345948,-154.849683134761,-2.9561340832448617,-100.47999253582329,-3.0284833705188867,-99.7509647671846,-44.917246750182144,-145.99945395703637
-1678870420,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.1,2.9,24.93,22.41,56.3,29.5,1008.9,-29.62978507230232,-154.84911835033287,-2.956166665904494,-100.48037848535958,-3.0284284386689446,-99.75239915492537,-44.91598264602888,-146.0185868513251
-1678870430,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.8,2.9,24.91,22.42,56.3,29.5,1008.9,-29.62975803247721,-154.84985335189677,-2.956076009328858,-100.47999883133852,-3.028460011643816,-99.75201473858472,-44.91577717056717,-145.99566640061258
-1678870440,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,3.3,24.93,22.44,56.3,29.5,1008.9,-29.629818265385005,-154.85005913888713,-2.955937985351764,-100.4791605004844,-3.0284664637150898,-99.751836119183,-44.91298421520504,-146.0057369319413
-1678870450,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.6,2.9,24.94,22.45,56.3,29.5,1009.0,-29.629476809675467,-154.85142804640589,-2.95610837249539,-100.47934221726285,-3.028413232530181,-99.75199653405286,-44.914277593833646,-146.01293457470385
-1678870460,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,3.2,24.93,22.46,56.3,29.5,1009.0,-29.629651307748738,-154.85053889920457,-2.956077935114349,-100.48018111513613,-3.0285888897011786,-99.75090317537008,-44.91370716745383,-146.0099621764733
-1678870470,25.0,25.0,55.0,55.0,0,1300000000,,,3,4.6,3.2,24.93,22.46,56.3,29.5,1009.0,-29.629531896077253,-154.84874623681304,-2.9564322211292264,-100.47978394630907,-3.02848776106943,-99.7515832195256,-44.91281713432147,-146.01768328411382
-1678870480,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.7,2.9,24.94,22.46,56.2,29.4,1008.9,-29.629610654159283,-154.8483958906228,-2.956227649056575,-100.4799863975724,-3.0286005302430574,-99.75162516752019,-44.910135867746384,-146.01940224731072
-1678870490,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,3.2,24.94,22.48,56.2,29.5,1008.9,-29.62995603708834,-154.8489166677635,-2.956238441235626,-100.48008115916068,-3.0283523223495235,-99.75291459022691,-44.9133980221729,-146.0200939178731
-1678870500,25.0,25.0,55.0,55.0,0,1300000000,,,3,4.4,2.9,24.94,22.48,56.3,29.4,1009.0,-29.62953960019557,-154.84841669189686,-2.9561567706570813,-100.48102776304607,-3.0282691848517014,-99.75210586952004,-44.914211765593414,-146.00064097966188
-1678870510,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,3.0,24.93,22.48,56.3,29.4,1008.9,-29.6302893733847,-154.84478418904595,-2.9561055344146996,-100.48073230719461,-3.0283259994232226,-99.75260611547769,-44.91687740334083,-145.9789770851255
-1678870520,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.5,3.0,24.93,22.49,56.3,29.4,1008.9,-29.62987067516538,-154.84702100577323,-2.955940648162531,-100.48068512581393,-3.028326080546136,-99.75278130691247,-44.915981529043464,-145.95963581002425
-1678870530,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.6,3.1,24.94,22.48,56.3,29.4,1009.0,-29.630309296335277,-154.84737722062263,-2.95614732854905,-100.48069855863072,-3.0283038526444654,-99.7529936023558,-44.91267637864333,-145.9818252906189
-1678870540,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.2,2.8,24.94,22.45,56.3,29.4,1008.9,-29.630580871352116,-154.84485664811007,-2.95632731518815,-100.48034389836268,-3.0283126968070864,-99.7530581186424,-44.914595719831226,-145.9744576728685
-1678870550,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,3.1,24.93,22.44,56.3,29.5,1009.0,-29.630490703122057,-154.84633230878208,-2.9562531074644416,-100.48106678530145,-3.0283756017800734,-99.75342530410286,-44.916812362489296,-145.97556890456812
-1678870560,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.4,3.2,24.94,22.38,56.3,29.5,1009.0,-29.630712366747638,-154.84415451530987,-2.9561490478477284,-100.4814742637512,-3.028354702507049,-99.75373498180672,-44.91821951361645,-145.97389927570495
-1678870570,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.0,2.8,24.94,22.36,56.3,29.6,1009.0,-29.63092138874877,-154.84283620966966,-2.956061763504039,-100.48258124845118,-3.0284501283042586,-99.75386391878288,-44.92027540582644,-145.9582266700055
-1678870580,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.6,2.5,24.96,22.35,56.4,29.6,1009.0,-29.631321385718262,-154.8427131305421,-2.9560454986532263,-100.48313572647655,-3.028275983168424,-99.75326410486659,-44.91792050659032,-145.97104181807643
-1678870590,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.1,3.0,24.93,22.36,56.4,29.6,1009.0,-29.63168487482653,-154.84371306663627,-2.9561050412072563,-100.4832752560162,-3.028389336151504,-99.75348935240856,-44.918598248073764,-145.96390798869402
-1678870600,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.2,2.9,24.94,22.34,56.4,29.6,1008.9,-29.63124711473015,-154.8449475192327,-2.9559137257119534,-100.48291265292757,-3.0284294657186708,-99.75395032615486,-44.92009497331294,-145.95636232012134
-1678870610,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.0,2.7,24.93,22.31,56.4,29.6,1008.9,-29.63148713326874,-154.84437333879987,-2.9558227439624374,-100.48282979737918,-3.028431284567917,-99.75493667489029,-44.92302212760144,-145.965106854294
-1678870620,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.6,3.0,24.93,22.26,56.4,29.7,1009.0,-29.63192035834166,-154.84280055876997,-2.9559827105547947,-100.48415662372568,-3.0285625865049717,-99.75467985269123,-44.924116666663906,-145.96540436603703
-1678870630,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.0,3.3,24.93,22.24,56.3,29.8,1009.0,-29.631894134873175,-154.8431018088981,-2.9558952265965246,-100.48399249359612,-3.0286855324801487,-99.75463480179035,-44.92314047736376,-145.96712959918534
-1678870640,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.2,3.9,24.93,22.21,56.3,29.8,1008.9,-29.631674705320165,-154.84394164873567,-2.955886939567452,-100.48339562799049,-3.028561081616061,-99.75428725178222,-44.92375205031614,-145.95372169810295
-1678870650,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.1,3.8,24.93,22.16,56.3,29.8,1008.9,-29.632081935709035,-154.83992192132766,-2.9558166226175526,-100.48338288539547,-3.0285981512583864,-99.75493449730304,-44.92369809832542,-145.95214227940113
-1678870660,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.2,3.5,24.93,22.15,56.3,29.9,1009.0,-29.631878536785692,-154.84013125705968,-2.9558334491301563,-100.48308226933274,-3.028634718035796,-99.75490883584395,-44.92506569692039,-145.93846291169567
-1678870670,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.6,2.8,24.96,22.14,56.3,29.9,1009.0,-29.632418333667236,-154.83895302439976,-2.956089959017785,-100.48294569076346,-3.028576520556575,-99.7548526776679,-44.92515184781233,-145.93376453975085
-1678870680,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.7,3.0,24.93,22.11,56.3,29.9,1009.0,-29.632506368775783,-154.83917818589458,-2.956063511387966,-100.4844838313361,-3.028531335005921,-99.7538131835844,-44.92509721929906,-145.9186945482295
-1678870690,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.3,3.1,24.93,22.1,56.3,30.0,1009.0,-29.63220461514534,-154.83958063624928,-2.956121170394004,-100.48405587817363,-3.028562800436809,-99.75431388489451,-44.92367986081205,-145.93732111616734
-1678870700,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.3,2.9,24.93,22.08,56.3,30.1,1009.0,-29.632438562591634,-154.83913349249048,-2.956071743985339,-100.48386922688451,-3.0282445113877876,-99.75432300902857,-44.924629451263385,-145.93381941665007
-1678870710,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,2.9,24.94,22.06,56.3,30.1,1009.0,-29.63213934736721,-154.84015682683022,-2.9560137771865804,-100.48353991075771,-3.028222208932834,-99.75408753822562,-44.92733949615469,-145.93164506829643
-1678870720,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,2.9,24.93,22.05,56.3,30.1,1009.0,-29.632309854752794,-154.83924409327093,-2.956028709377259,-100.48296624596746,-3.0281946834821216,-99.75409054499401,-44.923993250673185,-145.92620164606834
-1678870730,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.8,2.9,24.93,22.05,56.3,30.1,1009.0,-29.632154312991283,-154.8376562271355,-2.9560804243946297,-100.48176205601939,-3.0282915873836354,-99.75450279012887,-44.92712376546501,-145.94383868428145
-1678870740,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,2.6,24.93,22.05,56.3,30.1,1009.0,-29.632127478440662,-154.8390106317679,-2.955999449180395,-100.4822965116103,-3.0284823452067915,-99.75492773531353,-44.93081169381007,-145.92767333164693
-1678870750,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.7,3.0,24.93,22.04,56.3,30.1,1009.0,-29.632718982242395,-154.8394067809261,-2.956107557068352,-100.48298279458818,-3.0283159103124495,-99.75439646974093,-44.92633040547139,-145.92937419144238
-1678870760,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,3.1,24.93,22.04,56.3,30.1,1009.1,-29.633240170554075,-154.8358550078629,-2.9560065224107483,-100.48439353634707,-3.0284815166652406,-99.75445493615123,-44.928209583518345,-145.91923517327993
-1678870770,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.6,3.0,24.93,22.02,56.3,30.1,1009.1,-29.632955091442273,-154.83693823299947,-2.956222950824126,-100.48362696636546,-3.0284192461070205,-99.75510890175738,-44.92969395868364,-145.93686411997308
-1678870780,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.6,3.6,24.94,22.01,56.3,30.1,1009.0,-29.632890717461176,-154.8353454519583,-2.956235707606237,-100.48395349257054,-3.0282850259637684,-99.7541425439751,-44.92728399834556,-145.93158402889378
-1678870790,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.4,3.4,24.94,22.01,56.3,30.1,1009.0,-29.633141429305,-154.83449195248707,-2.9562628642721958,-100.48323645903986,-3.0284448784527203,-99.75397088572764,-44.92942499739813,-145.92540643287862
-1678870800,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.6,3.0,24.93,22.01,56.3,30.1,1009.0,-29.63284996814888,-154.836778719163,-2.95616819706228,-100.4827698049191,-3.028310850096172,-99.75428544976394,-44.92669231487429,-145.93775319993722
-1678870810,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.6,3.1,24.93,22.03,56.3,30.1,1009.0,-29.63328292554702,-154.83517973648176,-2.956298980838227,-100.48310647860472,-3.0282640963824505,-99.75409065860612,-44.92643488845334,-145.94204911746266
-1678870820,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.3,3.3,24.93,22.04,56.2,30.1,1009.0,-29.633231442801065,-154.83438298772597,-2.956346279815957,-100.48370607128687,-3.0283674213156084,-99.7544348560916,-44.93079468409327,-145.92658714687377
-1678870830,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,3.0,24.93,22.04,56.2,30.1,1009.0,-29.633476267856654,-154.8353235525286,-2.956173739027377,-100.48426285167558,-3.0283043907073064,-99.75449716323617,-44.932419510887,-145.91987697582755
-1678870840,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.9,3.2,24.94,22.03,56.2,30.1,1009.0,-29.633648440458053,-154.83549621323994,-2.9563887419840835,-100.4838220190631,-3.028143535064058,-99.75473262845072,-44.92601166195156,-145.9215198645583
-1678870850,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.4,3.3,24.93,22.04,56.2,30.1,1009.0,-29.633442987176313,-154.8332675698057,-2.9562156995284905,-100.48326971056882,-3.0284355540587664,-99.75451741147688,-44.92820157736525,-145.9320432796769
-1678870860,25.0,25.0,55.0,55.0,0,1300000000,,,3,4.9,3.7,24.93,22.03,56.3,30.1,1009.0,-29.6336533576139,-154.83377374640116,-2.9562667596437753,-100.48311044270393,-3.028331203492484,-99.75495900965126,-44.926181101597095,-145.9179767177082
-1678870870,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.4,2.6,24.94,22.02,56.3,30.1,1009.0,-29.633879583284255,-154.8346995038755,-2.9560923252890747,-100.48396780689394,-3.0283829225591075,-99.75426864307444,-44.92726192342005,-145.90071573136404
-1678870880,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.4,3.2,24.93,22.04,56.3,30.1,1009.0,-29.63376988351375,-154.83537630846516,-2.956366517752339,-100.48359607382883,-3.0282080261452142,-99.75563691506377,-44.92695702375822,-145.91608008810095
-1678870890,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.0,2.9,24.93,22.05,56.3,30.1,1009.0,-29.633745507208054,-154.83621351242692,-2.9563434645409865,-100.48371979937954,-3.0284042371074023,-99.75527501479206,-44.92708608680392,-145.92803142007352
-1678870900,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.1,2.4,24.93,22.05,56.3,30.1,1009.0,-29.63396497275276,-154.83569607907833,-2.956491602454167,-100.48387298168002,-3.028353268825039,-99.75522659298036,-44.92761942453021,-145.92460576477268
-1678870910,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.7,2.6,24.93,22.06,56.4,30.1,1009.0,-29.634430955182424,-154.83476148909895,-2.95651362794445,-100.48509240461107,-3.028253250994604,-99.75534176571217,-44.92999803986464,-145.91936571679673
-1678870920,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.8,2.7,24.93,22.08,56.4,30.1,1009.0,-29.634239905307133,-154.83343869205308,-2.9565413688049174,-100.4852410490671,-3.028260651094181,-99.75475041732723,-44.930732038936824,-145.9086171038232
-1678870930,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.4,3.2,24.91,22.09,56.4,30.1,1009.0,-29.63476169732335,-154.83349555264533,-2.9564803405281186,-100.48584786494635,-3.0283517297719365,-99.75592119579574,-44.92812027175981,-145.90559818762569
-1678870940,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.0,3.1,24.93,22.1,56.4,30.1,1009.1,-29.6348872459609,-154.83279302339668,-2.9565087769380174,-100.48636747265172,-3.0284600615585826,-99.75527703850513,-44.92950250282952,-145.88615740090864
-1678870950,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.4,3.2,24.93,22.1,56.4,30.0,1009.0,-29.634811096459856,-154.8322827300526,-2.956485372179038,-100.48559358366361,-3.0284551886729667,-99.7554223859211,-44.929399788118744,-145.8982168767176
-1678870960,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.0,2.9,24.93,22.11,56.4,30.0,1009.0,-29.634653102805185,-154.83354257458694,-2.9563474298473222,-100.48552740480845,-3.028418333382217,-99.75606049958472,-44.93267562607911,-145.89145954613045
-1678870970,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.6,2.7,24.93,22.12,56.3,30.0,1009.0,-29.6344492656071,-154.83297644946117,-2.9563396363303927,-100.48594051330053,-3.0283704662436683,-99.75617695737303,-44.93144199499192,-145.89863693238073
-1678870980,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.5,3.4,24.93,22.13,56.4,30.0,1009.0,-29.635149751869662,-154.83237421558874,-2.956254133764174,-100.48562812604654,-3.028295469510229,-99.75659102039083,-44.92944286625334,-145.90706264983436
-1678870990,25.0,25.0,55.0,55.0,0,1300000000,,,3,4.6,3.1,24.91,22.14,56.3,30.0,1009.1,-29.634899501519,-154.8331819777867,-2.956156518751229,-100.48487204354483,-3.0283650860548077,-99.75760733251089,-44.93034205437542,-145.89818890160845
-1678871000,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.4,2.8,24.91,22.15,56.4,29.9,1009.1,-29.635339184902985,-154.83246292117823,-2.956221299332661,-100.48596306468161,-3.028604848888396,-99.75778127604309,-44.93080942367696,-145.90226849092485
-1678871010,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.7,2.9,24.93,22.15,56.4,29.9,1009.1,-29.63479623827031,-154.8342827634945,-2.9561647760087926,-100.48544370562894,-3.028429010110394,-99.75790059194945,-44.927469422423755,-145.9048584284764
-1678871020,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.4,3.2,24.94,22.15,56.3,29.9,1009.1,-29.63442829861103,-154.83086265558367,-2.9560850704172257,-100.48603708150348,-3.0284174279118186,-99.75741137508399,-44.93219010120078,-145.89633065162698
-1678871030,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.9,3.3,24.94,22.16,56.3,29.9,1009.1,-29.634643541020594,-154.83090877342664,-2.956222561913914,-100.4856686220018,-3.0284313238947576,-99.75728778344178,-44.93091838119072,-145.89743956640476
-1678871040,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.1,3.3,24.93,22.16,56.3,29.9,1009.1,-29.63462276928389,-154.8311962879422,-2.9562211469420236,-100.48648935084722,-3.0285292501040835,-99.75638217675402,-44.931726622296175,-145.8908259538316
-1678871050,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.6,3.1,24.93,22.17,56.3,29.9,1009.1,-29.635031269606817,-154.8309533034356,-2.956273171838728,-100.48642781887887,-3.028306172633843,-99.75685061106401,-44.93056827917803,-145.88985353751175
-1678871060,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.0,3.2,24.93,22.18,56.3,29.9,1009.1,-29.634981961903467,-154.83208692055743,-2.956230558718787,-100.48663356434916,-3.0283400253896247,-99.75626978912598,-44.928838588304345,-145.89175213158052
-1678871070,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,3.0,24.91,22.18,56.3,29.9,1009.2,-29.634797926827858,-154.83290602793593,-2.9562550088541535,-100.4863188466052,-3.0284983216576835,-99.75632849907304,-44.929710327470545,-145.8950436662562
-1678871080,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.5,3.1,24.93,22.19,56.3,29.9,1009.2,-29.635289731566154,-154.83118941551896,-2.95616720069027,-100.4859025947604,-3.028387797295326,-99.75667828489142,-44.93171651825347,-145.89463701824425
-1678871090,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.8,2.9,24.93,22.2,56.3,29.8,1009.2,-29.635094553511987,-154.83383901643654,-2.956110116670836,-100.4866164432265,-3.028322158391311,-99.75672669040918,-44.93008330845012,-145.8814533873255
-1678871100,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.6,3.3,24.91,22.21,56.3,29.8,1009.2,-29.635258248773688,-154.82960280279426,-2.9562770161252416,-100.48748058043013,-3.0282512272435946,-99.75689550828831,-44.93176096910357,-145.88703646165143
-1678871110,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.6,2.8,24.93,22.21,56.3,29.8,1009.2,-29.635373229944744,-154.82922271205052,-2.9561203124807243,-100.48722523713128,-3.0284273084685553,-99.75725982811805,-44.93601505411738,-145.86725116986062
-1678871120,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.7,3.0,24.93,22.23,56.3,29.8,1009.3,-29.63595903891456,-154.8276815902583,-2.9562393140480303,-100.48593385540222,-3.0284057623118397,-99.75713299313479,-44.93593541351694,-145.87362568783755
-1678871130,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.1,2.9,24.91,22.24,56.3,29.8,1009.3,-29.63563078575598,-154.82894008538622,-2.956290586158343,-100.48538704536993,-3.0284062829185165,-99.75758587096647,-44.93108566786772,-145.88494161306642
-1678871140,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.3,3.0,24.91,22.24,56.3,29.8,1009.3,-29.63577390249014,-154.83015087873628,-2.956492612373269,-100.48609628950074,-3.028442256607046,-99.75749554943091,-44.932709082316805,-145.8852830141161
-1678871150,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.7,2.7,24.9,22.24,56.3,29.8,1009.3,-29.635235021306677,-154.82972449624202,-2.956360655417318,-100.48647478148862,-3.0283678793925124,-99.75703460207534,-44.9333947464703,-145.88724786602498
-1678871160,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.0,3.2,24.93,22.25,56.3,29.8,1009.3,-29.635339005543415,-154.82931286916482,-2.9564132242830174,-100.48661280395976,-3.028298334639135,-99.75647652943807,-44.930923395614144,-145.88455362706281
-1678871170,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.9,3.2,24.93,22.26,56.3,29.8,1009.3,-29.635058079277027,-154.83132706767228,-2.956541461282619,-100.48570075661173,-3.02844709746321,-99.75618240321566,-44.929705283486136,-145.88509788815202
-1678871180,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.8,3.2,24.93,22.27,56.3,29.8,1009.3,-29.63469521002232,-154.83001757938635,-2.956267461683137,-100.48576358896837,-3.0284124638923693,-99.75612748573256,-44.9299432095643,-145.89647310387858
-1678871190,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.7,2.8,24.93,22.27,56.3,29.8,1009.3,-29.634745916722608,-154.83018706753575,-2.9561657669954715,-100.48555846459739,-3.0284980311628855,-99.75651876691049,-44.93103709384005,-145.89358866360803
-1678871200,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.2,2.6,24.94,22.28,56.3,29.8,1009.3,-29.635318370976268,-154.8272804275556,-2.9564141129747616,-100.48668102806144,-3.0286140558126133,-99.75565100853105,-44.932405472108414,-145.86931695418272
-1678871210,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.8,2.8,24.94,22.29,56.3,29.8,1009.3,-29.63532743014451,-154.82620540177294,-2.9564443432012544,-100.48595771083481,-3.0284329076609007,-99.75591520828993,-44.933943301543934,-145.87116574354644
-1678871220,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.3,2.9,24.93,22.3,56.3,29.8,1009.3,-29.635647493530186,-154.826066356026,-2.956503989441785,-100.48612761806515,-3.0283961472614744,-99.75568343268318,-44.9346826053014,-145.87730770458876
-1678871230,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.9,2.8,24.94,22.31,56.3,29.7,1009.3,-29.635482776400018,-154.8268020409091,-2.9563691834248234,-100.48603886717709,-3.0285327013259007,-99.75555762198921,-44.93374108966785,-145.87144935343952
-1678871240,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.9,2.7,24.93,22.31,56.3,29.7,1009.3,-29.63543642567332,-154.8278785588731,-2.956260656928518,-100.48523345704855,-3.028405771726094,-99.7556345834396,-44.93132966411046,-145.87875420544347
-1678871250,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.5,2.9,24.96,22.32,56.3,29.7,1009.3,-29.635846173338386,-154.82793008357552,-2.9563311262458996,-100.48476249862709,-3.028229115487901,-99.75615233436888,-44.92837887358641,-145.8913920716651
-1678871260,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,2.8,24.93,22.33,56.3,29.7,1009.4,-29.63568864349474,-154.82726388666933,-2.9562196608631868,-100.48437255533369,-3.028281314816596,-99.75628450175485,-44.92864889735996,-145.8897975064637
-1678871270,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.7,3.0,24.93,22.34,56.3,29.7,1009.5,-29.636112211218443,-154.82683369032137,-2.956496726184787,-100.48528731537067,-3.0284537465491073,-99.75613564847835,-44.936102046845036,-145.86762457573798
-1678871280,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,2.7,24.93,22.35,56.3,29.7,1009.4,-29.635840484417848,-154.82698541369828,-2.9562789274465295,-100.48538898302381,-3.0283573584980377,-99.75613494126421,-44.93454601566472,-145.8725610408331
-1678871290,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.6,3.2,24.94,22.35,56.3,29.7,1009.3,-29.63576486604532,-154.82871764698925,-2.9563027937521005,-100.48461154960387,-3.0282842812818576,-99.75649458944964,-44.93411410104176,-145.8767250102493
-1678871300,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,3.0,24.93,22.36,56.3,29.6,1009.4,-29.63583559601371,-154.826382896462,-2.9565576064389525,-100.48583992324386,-3.0282926764890954,-99.7560911201998,-44.933772909331495,-145.88504873823263
-1678871310,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.4,2.2,24.93,22.36,56.3,29.7,1009.4,-29.635785493261658,-154.82612935803272,-2.9564461422283013,-100.48617199657603,-3.028379566537989,-99.75618933724624,-44.935443125887026,-145.88628127455735
-1678871320,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,3.3,24.94,22.38,56.3,29.6,1009.4,-29.636210509751393,-154.82636240237375,-2.956356860136223,-100.48580641817745,-3.0285575784395284,-99.75551103658593,-44.9360882431709,-145.87362342493117
-1678871330,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,3.6,24.96,22.38,56.3,29.6,1009.5,-29.6357282612238,-154.82580404250837,-2.956452258530699,-100.48493461127946,-3.028608358647639,-99.75532854074932,-44.93563249413018,-145.8772996594287
-1678871340,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.2,3.3,24.96,22.39,56.3,29.7,1009.5,-29.635433698066606,-154.828190627063,-2.956399682940434,-100.48542530827102,-3.0284759754997355,-99.75471822689875,-44.93439105685063,-145.8722108486769
-1678871350,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.8,3.4,24.94,22.4,56.2,29.7,1009.5,-29.6350960659696,-154.8309899354866,-2.9562731886142717,-100.48454474629882,-3.0284905236088617,-99.75521848242805,-44.93310801766587,-145.88482280780897
-1678871360,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.9,2.9,24.93,22.41,56.2,29.7,1009.5,-29.63516176061695,-154.8277971717438,-2.9563952055724165,-100.48530522111625,-3.0286251415116023,-99.75446000028934,-44.93336256845248,-145.88100764820786
-1678871370,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.4,3.4,24.93,22.41,56.2,29.6,1009.5,-29.635541511533418,-154.82755083113392,-2.9563325653581165,-100.48543196787277,-3.0283832103203743,-99.75451157557143,-44.93268919607276,-145.88920752801832
-1678871380,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.0,2.5,24.91,22.43,56.2,29.6,1009.5,-29.635877823581396,-154.82728772851962,-2.956359318431562,-100.48527516170014,-3.0284673610105175,-99.7550750846823,-44.93589647467768,-145.87925767982546
-1678871390,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.9,3.0,24.93,22.44,56.3,29.6,1009.5,-29.635855862675903,-154.82718379787738,-2.9562848173271767,-100.48544335919306,-3.0283852132396873,-99.75500901961338,-44.934452395574304,-145.87580478835065
-1678871400,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.6,3.8,24.93,22.44,56.3,29.6,1009.5,-29.636127861927616,-154.8258674153393,-2.956396943238482,-100.48539579886335,-3.028432782505714,-99.75579495222857,-44.93671237970912,-145.853060200972
-1678871410,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.4,3.2,24.93,22.44,56.3,29.6,1009.5,-29.63588932529941,-154.82589279272983,-2.956178544191957,-100.48428626138157,-3.0285391979050793,-99.7561833821092,-44.93399547487529,-145.85311312297972
-1678871420,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.2,3.0,24.94,22.45,56.3,29.6,1009.5,-29.635944410653423,-154.82462386312574,-2.956355304429838,-100.48458220030737,-3.028404829587639,-99.75618255606275,-44.930478973137724,-145.8784497011375
-1678871430,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.3,2.7,24.93,22.45,56.3,29.6,1009.5,-29.635683224285874,-154.8238835436907,-2.9566039547172434,-100.48408311628559,-3.028335509472986,-99.75563525929488,-44.933617363728885,-145.88191561626533
-1678871440,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.4,3.0,24.94,22.46,56.3,29.6,1009.5,-29.635809122036672,-154.8252510531515,-2.956373336034125,-100.4837528064002,-3.0285779414293112,-99.7558130204431,-44.93150617731591,-145.88605816310715
-1678871450,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.7,2.9,24.93,22.46,56.3,29.6,1009.5,-29.635714256657927,-154.82896819636503,-2.95629318696312,-100.48434360699765,-3.0284242725800774,-99.75609354403979,-44.93209322973694,-145.86756025302137
-1678871460,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,2.7,24.96,22.47,56.3,29.6,1009.6,-29.63596634222871,-154.82636578840558,-2.956468763744453,-100.48471821018637,-3.028332964733086,-99.75617355410837,-44.93445945320544,-145.86711768254858
-1678871470,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.4,2.7,24.93,22.48,56.4,29.6,1009.6,-29.63568564231504,-154.82517689801062,-2.956436516088685,-100.48475894892886,-3.028358928712162,-99.75638900878836,-44.93682126818192,-145.86287681631902
-1678871480,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.0,3.4,24.93,22.49,56.3,29.6,1009.6,-29.63588570200624,-154.82459980822279,-2.956366098688026,-100.48471619933085,-3.028296627269923,-99.75590390620754,-44.93376766797657,-145.87274776765068
-1678871490,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.4,2.8,24.93,22.49,56.3,29.6,1009.6,-29.636212859659526,-154.824137159405,-2.9565479901516034,-100.48562030749069,-3.028298373061739,-99.75504962152876,-44.93482646801634,-145.86376041496737
-1678871500,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,3.1,24.93,22.5,56.3,29.6,1009.6,-29.6363684582491,-154.82742033074643,-2.9564188635734774,-100.4854140958017,-3.02836703185485,-99.75698341616474,-44.934412809859374,-145.85531308667137
-1678871510,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.8,3.4,24.93,22.53,56.3,29.6,1009.5,-29.63643563810628,-154.82388589919046,-2.9565671415817993,-100.48586757847977,-3.028301259523029,-99.75640765388502,-44.93446515128275,-145.87769212443553
-1678871520,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.9,2.6,24.93,22.53,56.3,29.6,1009.5,-29.63634357963343,-154.82277702506593,-2.9564768194812774,-100.4852765413248,-3.0284085719031184,-99.75674321603229,-44.93378445075824,-145.8863544317757
-1678871530,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.9,3.0,24.93,22.54,56.3,29.5,1009.6,-29.636359430839114,-154.82200757811137,-2.9564805860976504,-100.4862885702767,-3.0283351616228282,-99.75624483616886,-44.93574970973227,-145.86623656375383
-1678871540,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.6,3.3,24.93,22.54,56.3,29.6,1009.6,-29.635821896418765,-154.82585664190717,-2.956285146291754,-100.48578776925218,-3.028347735626305,-99.75635552607022,-44.93330602315177,-145.87102341440632
-1678871550,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,2.7,24.94,22.55,56.3,29.5,1009.6,-29.635600154234524,-154.82365101541322,-2.9562704659116683,-100.48569998915892,-3.0284775192841753,-99.75647911675533,-44.93133948984515,-145.87454656989877
-1678871560,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,3.3,24.94,22.55,56.3,29.6,1009.6,-29.63594646904928,-154.82249129498211,-2.956352166740401,-100.48618102514388,-3.0284594692512696,-99.75657154958594,-44.93289223954429,-145.86951505681273
-1678871570,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.7,2.4,24.94,22.55,56.3,29.6,1009.6,-29.635848689850338,-154.82454715860052,-2.956620145224824,-100.48581077803044,-3.028248028157603,-99.75619653687882,-44.931595187665316,-145.87496552617517
-1678871580,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.1,3.2,24.96,22.55,56.3,29.6,1009.7,-29.636275384244563,-154.82282860445608,-2.9565113448829416,-100.48608431653162,-3.0283765107676714,-99.75699440248982,-44.934170635597496,-145.84983633657194
-1678871590,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.7,2.5,24.96,22.55,56.3,29.6,1009.7,-29.63651579895483,-154.8239068343789,-2.956535198081885,-100.48632715153501,-3.0285762862759356,-99.75764659376779,-44.93514960444827,-145.85907149826667
-1678871600,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,2.6,24.96,22.55,56.3,29.6,1009.7,-29.636765841885413,-154.82122632080893,-2.9564946890344213,-100.48711352163616,-3.0285591308380444,-99.75747305690447,-44.93869146556491,-145.84115094153321
-1678871610,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.3,2.8,24.96,22.55,56.4,29.5,1009.6,-29.63661949402887,-154.82356783732948,-2.9562984091080273,-100.48696805986427,-3.028385305194859,-99.75728415637542,-44.93416551064779,-145.84232013429317
-1678871620,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,3.1,24.94,22.55,56.4,29.5,1009.6,-29.63656488076639,-154.8216150420612,-2.9565172321202398,-100.48657215809527,-3.028455448793931,-99.75774893014915,-44.93715321591022,-145.84546083117584
-1678871630,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.2,2.5,24.93,22.55,56.4,29.5,1009.6,-29.63655565432067,-154.82151214804733,-2.9564669895389954,-100.4876406367016,-3.0282867267049256,-99.75762833260931,-44.935372254674455,-145.8644323065788
-1678871640,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.6,2.4,24.93,22.56,56.4,29.5,1009.6,-29.636389692442894,-154.82654239016745,-2.956436288484965,-100.48725202803476,-3.028399733854577,-99.7581632475684,-44.93211203765134,-145.865719582363
-1678871650,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.3,2.9,24.94,22.57,56.4,29.5,1009.5,-29.636310743633643,-154.82358234534627,-2.9562897942161777,-100.48624983218116,-3.0283724004178962,-99.7585270169992,-44.93709624552824,-145.84525852014278
-1678871660,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.7,2.7,24.96,22.56,56.4,29.5,1009.5,-29.63656401899354,-154.821738350514,-2.9562628519767404,-100.48723830872888,-3.0283489413539244,-99.75763718079102,-44.93799515972371,-145.84896594322518
-1678871670,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.4,2.4,24.93,22.55,56.4,29.5,1009.5,-29.6368976670283,-154.82212274388084,-2.9563212691489875,-100.48698299992422,-3.0283997087390913,-99.75758547165891,-44.93547671084311,-145.84098506023147
-1678871680,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.3,2.3,24.94,22.55,56.4,29.5,1009.6,-29.63703065685022,-154.82378960115165,-2.956230609661846,-100.48768673265792,-3.028303957840916,-99.75825284716348,-44.93739971955406,-145.8309739499218
-1678871690,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.1,2.6,24.94,22.55,56.4,29.5,1009.5,-29.637262021349848,-154.82098010678416,-2.956454165219289,-100.48768813695465,-3.0282730513160807,-99.75821532935335,-44.93786539002363,-145.84493612153432
-1678871700,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.7,2.5,24.94,22.55,56.4,29.6,1009.5,-29.637082013108845,-154.82124428840652,-2.956425251870777,-100.48875156720295,-3.028329924132738,-99.75777693516977,-44.9384603004323,-145.83327394134378
-1678871710,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.0,2.1,24.93,22.55,56.4,29.6,1009.5,-29.636900076602473,-154.82170482654,-2.956198648830482,-100.48826992464852,-3.028367277726016,-99.75889049452702,-44.93748462981377,-145.8379031047206
-1678871720,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.1,2.5,24.91,22.55,56.4,29.6,1009.5,-29.636688398643216,-154.82096569592733,-2.9564457435579987,-100.48782443120085,-3.0283774538228836,-99.75930897532713,-44.940006080465515,-145.83698014438014
-1678871730,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,3.3,24.93,22.55,56.3,29.6,1009.4,-29.636439534792693,-154.821415245478,-2.9563776659843866,-100.48787933428177,-3.0283430908038533,-99.7586645080778,-44.937062914687274,-145.83576300894828
-1678871740,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.3,3.1,24.93,22.51,56.3,29.6,1009.3,-29.636300326994267,-154.82148420807886,-2.95630777239283,-100.48828964517222,-3.0282024622210995,-99.75810698952786,-44.94088786313124,-145.84804506056986
-1678871750,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.9,3.2,24.91,22.49,56.3,29.6,1009.3,-29.636480457732276,-154.8207248289972,-2.956343909464117,-100.48719251050822,-3.028212021336283,-99.75935900920459,-44.93514158135384,-145.85454868974688
-1678871760,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.6,3.1,24.93,22.48,56.3,29.6,1009.2,-29.636278939772392,-154.82476866351797,-2.9563376888136372,-100.48703509164946,-3.0282646268998965,-99.75829485346007,-44.934937705765705,-145.84232478027505
-1678871770,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.0,2.9,24.94,22.46,56.3,29.7,1009.2,-29.63622940646964,-154.82335665861896,-2.956510960784125,-100.48674594282161,-3.0283701612863783,-99.7582753870409,-44.93302876811139,-145.86068899268008
-1678871780,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.3,3.2,24.93,22.45,56.2,29.7,1009.2,-29.635725092895978,-154.82423800387727,-2.9564871022384582,-100.48752531243069,-3.0283567808769973,-99.7575846763471,-44.93472653637586,-145.86308381739457
-1678871790,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.4,2.6,24.91,22.43,56.3,29.7,1009.1,-29.63596995129397,-154.82452838425615,-2.956409064144738,-100.48763648370937,-3.0283126949045536,-99.7584875092385,-44.93859583328067,-145.85151132225977
-1678871800,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.8,3.3,24.93,22.4,56.3,29.7,1009.2,-29.636331493892833,-154.82390831528747,-2.956346274140638,-100.48744780635833,-3.0283933193326407,-99.75820707580841,-44.934506058206225,-145.85896034707625
-1678871810,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,3.4,24.93,22.39,56.3,29.8,1009.1,-29.635984902548298,-154.82514156560777,-2.95623915814135,-100.48759525208453,-3.0284573017155356,-99.75792754643017,-44.93664322925143,-145.83754971669526
-1678871820,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.7,3.4,24.93,22.38,56.3,29.8,1009.1,-29.635967654970493,-154.82741901599445,-2.956067257298108,-100.48797981983594,-3.0283976592702997,-99.7582239086965,-44.93144952376517,-145.85517893782614
-1678871830,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.7,3.5,24.94,22.36,56.2,29.8,1009.1,-29.636067919027,-154.82667815409474,-2.9563284684996316,-100.48726153296907,-3.0283779395942245,-99.75796621116604,-44.933894575357066,-145.8750286318275
-1678871840,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.3,2.7,24.96,22.35,56.2,29.8,1009.1,-29.636208447260035,-154.82510866029716,-2.9562907908682723,-100.48725572307025,-3.0282076245273597,-99.75757793509342,-44.93119838886875,-145.86243723712897
-1678871850,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.9,2.8,24.93,22.3,56.3,29.9,1009.2,-29.63619317555174,-154.82652981348693,-2.9565384085362068,-100.48652060077376,-3.02825369270048,-99.75791963345127,-44.93053035875538,-145.87051841955648
-1678871860,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,2.6,24.96,22.28,56.3,29.9,1009.2,-29.636054148066332,-154.82518423425793,-2.956130871384163,-100.48734639769353,-3.028191334362571,-99.75742855747633,-44.933698030144456,-145.8497304620407
-1678871870,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,2.3,24.94,22.27,56.3,30.0,1009.2,-29.635530256787305,-154.82908797016958,-2.9563855960026926,-100.48712020234208,-3.028498933549653,-99.75746736616283,-44.93360347236823,-145.85635425312512
-1678871880,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.7,2.5,24.93,22.26,56.3,30.0,1009.2,-29.635065982692,-154.8309422994655,-2.956388935730895,-100.48817831198599,-3.0284850491673154,-99.75706865340429,-44.93076473163978,-145.8713675266495
-1678871890,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,2.6,24.93,22.24,56.3,30.0,1009.3,-29.63525186501469,-154.82809471856936,-2.956151776044795,-100.48855723077887,-3.028475160407204,-99.7573344161167,-44.93392657193445,-145.85339503459463
-1678871900,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.3,2.7,24.93,22.23,56.3,30.1,1009.2,-29.635492502468217,-154.82707632498588,-2.956466614523046,-100.48848672148603,-3.0283669667746373,-99.7571531261213,-44.93347221878374,-145.84705298356303
-1678871910,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.4,3.6,24.93,22.19,56.3,30.1,1009.3,-29.635237314431176,-154.82845144486498,-2.9562908230524703,-100.48739882745622,-3.0282973759480836,-99.75750723486195,-44.932784240415806,-145.84992740703524
-1678871920,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.2,3.5,24.94,22.18,56.3,30.1,1009.3,-29.635675945938257,-154.8274784609267,-2.9560828087351347,-100.48657364576249,-3.0286107066401375,-99.75751292738461,-44.934764668815596,-145.84030779536525
-1678871930,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.6,3.4,24.96,22.17,56.3,30.1,1009.3,-29.63483659443029,-154.83070063908778,-2.956150791641212,-100.48667380903147,-3.028552506536431,-99.75689663577396,-44.932374471877,-145.85530133556588
-1678871940,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.1,2.9,24.94,22.15,56.3,30.1,1009.3,-29.635449384877948,-154.82951813065534,-2.9562441068947054,-100.48661681904635,-3.0286289699800406,-99.75672611589125,-44.931105187305896,-145.85981369131053
-1678871950,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.5,2.1,24.93,22.16,56.4,30.1,1009.3,-29.635649529824178,-154.82845896658478,-2.956302672056819,-100.48691420958745,-3.028452585508509,-99.75720068834158,-44.93299670678504,-145.8449867230593
-1678871960,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,1.7,24.93,22.16,56.5,30.1,1009.3,-29.635521242533258,-154.82867668903867,-2.9562733869178452,-100.48670109614133,-3.028446953112792,-99.75739020958332,-44.93024967433891,-145.84816207854928
-1678871970,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.8,2.5,24.93,22.14,56.5,30.1,1009.3,-29.635452785518268,-154.82823457276785,-2.956299609018609,-100.48767050764653,-3.028557837223786,-99.75672993395754,-44.93227529763057,-145.86126029294144
-1678871980,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.1,2.7,24.94,22.11,56.5,30.2,1009.4,-29.635333178926384,-154.82797594188602,-2.9563302131006,-100.48721932812795,-3.0285991743239786,-99.7565295498859,-44.93389680348393,-145.85757460373665
-1678871990,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.2,2.2,24.93,22.12,56.5,30.2,1009.4,-29.635282689388674,-154.8260230020226,-2.9562550832990238,-100.4874555108449,-3.0286061852382167,-99.75724066740722,-44.937977702643536,-145.85421040781708
-1678872000,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.0,2.2,24.93,22.1,56.5,30.2,1009.4,-29.63548045838869,-154.82653691044865,-2.9562487091865024,-100.48762992685705,-3.02867567732723,-99.75801699791997,-44.937456287171116,-145.84513208296673
-1678872010,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.4,2.0,24.96,22.08,56.5,30.3,1009.4,-29.635451952635425,-154.82654638741568,-2.9563077991937305,-100.48762276318547,-3.028781519404527,-99.75791393706172,-44.93880645652958,-145.84219338422173
-1678872020,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.6,2.9,24.96,22.08,56.4,30.3,1009.4,-29.635040460677885,-154.82611814789226,-2.956300175462064,-100.48777388713474,-3.0286729790118265,-99.75683439474965,-44.934879008030606,-145.84575866349306
-1678872030,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.4,2.6,24.94,22.09,56.4,30.3,1009.4,-29.635215830041982,-154.8257527126639,-2.956444247829395,-100.487377954172,-3.02848588932223,-99.75785087495747,-44.93861201686045,-145.85504227707773
-1678872040,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.1,2.9,24.93,22.09,56.4,30.3,1009.4,-29.63553420837499,-154.82602836319873,-2.956386850506792,-100.48674238439251,-3.0285971797955655,-99.75859469122653,-44.93626328399542,-145.84034568048224
-1678872050,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.1,2.7,24.93,22.09,56.4,30.3,1009.4,-29.635670344726506,-154.82670445887385,-2.9563387573999806,-100.48776224232189,-3.0285735247493517,-99.75811197227102,-44.93574855255897,-145.85463359423443
-1678872060,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.4,2.9,24.93,22.1,56.4,30.3,1009.3,-29.635370197316576,-154.82691657050455,-2.9563467041700084,-100.48845258147935,-3.0287179784830407,-99.75858352596332,-44.93662682867956,-145.84912095310537
-1678872070,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.6,2.8,24.91,22.12,56.3,30.2,1009.3,-29.635752176975913,-154.8257066201007,-2.956455654886142,-100.48859892831194,-3.0286575529985456,-99.75843742362385,-44.9373649237406,-145.83777372558976
-1678872080,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,2.8,24.93,22.13,56.3,30.2,1009.4,-29.63598217653084,-154.8233253023184,-2.9561623927146865,-100.48849716787927,-3.028821003451991,-99.75825609079527,-44.94160150668481,-145.82674413009892
-1678872090,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.9,3.2,24.94,22.14,56.3,30.2,1009.4,-29.635672160636727,-154.82554433207568,-2.9563266087475832,-100.48824308917705,-3.0285984594248654,-99.75870330105589,-44.93900850509811,-145.8221139164059
-1678872100,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.3,3.5,24.93,22.15,56.2,30.2,1009.3,-29.635374136816985,-154.82495902512179,-2.9563240919725398,-100.48809321373587,-3.0285744470109313,-99.75800404068931,-44.93798252202548,-145.84100484402356
-1678872110,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.4,3.6,24.93,22.15,56.2,30.1,1009.4,-29.635328750691684,-154.8260770400819,-2.956462821749224,-100.48757743248075,-3.0286096719516227,-99.75846531218727,-44.935445005073056,-145.83945992495484
-1678872120,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.4,2.9,24.94,22.15,56.2,30.1,1009.4,-29.63572167042119,-154.8253978312431,-2.956478642439839,-100.48850344309287,-3.028603980322627,-99.75800399043737,-44.93875967640908,-145.83238110007036
-1678872130,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.0,2.8,24.96,22.17,56.2,30.1,1009.3,-29.63570282644097,-154.82642496769867,-2.956477737513184,-100.48881553272328,-3.0286358334943686,-99.75806529128337,-44.93582780973892,-145.84655265320404
-1678872140,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.3,2.4,24.94,22.17,56.2,30.1,1009.3,-29.63596745173571,-154.8240896270221,-2.956482413191843,-100.48860877773483,-3.028744800105214,-99.75912355933987,-44.937801980267025,-145.8442856975178
-1678872150,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.2,3.2,24.94,22.18,56.2,30.1,1009.4,-29.636001306772965,-154.8255496932959,-2.956396239951156,-100.48931852921902,-3.0286685662302864,-99.75812568616543,-44.93762469979673,-145.8421505355108
-1678872160,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.2,3.3,24.94,22.18,56.2,30.1,1009.3,-29.635794163207652,-154.8258723242377,-2.9562122763717507,-100.4887228932731,-3.0285169005706054,-99.75787978055752,-44.93882965081113,-145.82006942465065
-1678872170,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.7,2.9,24.94,22.19,56.2,30.1,1009.3,-29.635923916534978,-154.82679414685614,-2.9562627434230078,-100.4899598011169,-3.0286851687321876,-99.75805604927324,-44.93912630244069,-145.83357182480754
-1678872180,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.8,2.6,24.94,22.19,56.2,30.1,1009.3,-29.635891064669707,-154.82602960575483,-2.956225783007234,-100.48994539461467,-3.0285585681273823,-99.7584789600585,-44.93889284349316,-145.8334467453271
-1678872190,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.3,3.3,24.93,22.2,56.2,30.2,1009.3,-29.635757003935037,-154.82700814551106,-2.95617883138169,-100.49000576103141,-3.0287108470790254,-99.75850519841872,-44.94006971390399,-145.83011228170022
-1678872200,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.0,2.8,24.94,22.2,56.2,30.1,1009.3,-29.63544955144235,-154.82681532421617,-2.9561372919245033,-100.48924445073449,-3.0285993860816367,-99.75911147186741,-44.94060335141036,-145.8314732320505
-1678872210,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.4,3.4,24.94,22.2,56.2,30.2,1009.3,-29.635664196032995,-154.8261508813806,-2.9562486376418446,-100.48886245139158,-3.02866667650762,-99.7587047214266,-44.938156776273175,-145.822159995817
-1678872220,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.5,3.8,24.93,22.21,56.1,30.1,1009.4,-29.63570573836339,-154.8255697184708,-2.956248676095918,-100.48905164978284,-3.028753294111542,-99.75932334869646,-44.93685924928797,-145.8220167314191
-1678872230,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,3.1,24.93,22.23,56.1,30.1,1009.4,-29.635784578062005,-154.82572874979232,-2.95626335811207,-100.48884970789152,-3.0288637515801704,-99.75887148088282,-44.938502475816904,-145.81814272942228
-1678872240,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.4,3.5,24.93,22.23,56.1,30.1,1009.3,-29.63556667923614,-154.82519700484443,-2.956254767245388,-100.48850001871902,-3.02864799427001,-99.75888502456837,-44.9375874510813,-145.83568244168367
-1678872250,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.3,3.5,24.93,22.24,56.1,30.1,1009.3,-29.63564681567735,-154.82373793885202,-2.9562918377076324,-100.48909490357852,-3.0285879655687427,-99.75872650500676,-44.94253180201659,-145.82577187698746
-1678872260,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,2.9,24.93,22.25,56.1,30.1,1009.3,-29.63552889498019,-154.82403785513472,-2.9562031945928235,-100.4890013409649,-3.028591967430067,-99.75797334599632,-44.93880307493683,-145.83821320050163
-1678872270,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.3,3.2,24.93,22.25,56.2,30.1,1009.3,-29.63548951839174,-154.82505362671634,-2.9562944241696765,-100.48929976661312,-3.028618264415699,-99.75795269262522,-44.93987222819505,-145.83017868601604
-1678872280,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.1,3.5,24.93,22.27,56.2,30.1,1009.3,-29.63532103854228,-154.82598324649314,-2.9563879534784734,-100.48886387910623,-3.0286670468978016,-99.75846728966336,-44.93693239788081,-145.84383132532597
-1678872290,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.3,3.4,24.94,22.27,56.2,30.1,1009.4,-29.635582788954174,-154.82549067280334,-2.9564461932233788,-100.48903491254234,-3.0285271407850973,-99.75825528861769,-44.93838135252024,-145.83689134542075
-1678872300,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.0,3.0,24.93,22.28,56.2,30.1,1009.4,-29.635574448506212,-154.82523099370727,-2.95633166514786,-100.48934480290362,-3.0284279301629438,-99.75807328142693,-44.939146438618536,-145.85696581662822
-1678872310,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.6,3.2,24.94,22.29,56.2,30.1,1009.5,-29.63624472794189,-154.8242380962825,-2.9564286725070827,-100.48956079845681,-3.0286327282567975,-99.75851014036863,-44.940712961059795,-145.83155512492377
-1678872320,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.2,3.6,24.93,22.3,56.1,30.1,1009.4,-29.63582283281767,-154.82571126415326,-2.9562868387147594,-100.49020149352134,-3.0286798894162867,-99.75758817605917,-44.940426390003196,-145.82073902971374
-1678872330,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.8,2.7,24.93,22.31,56.2,30.0,1009.4,-29.63580594076637,-154.82296943393578,-2.9562186596580453,-100.4900933231925,-3.0285951604157137,-99.7581217916097,-44.94266859526043,-145.82685827482857
-1678872340,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.1,3.0,24.93,22.31,56.2,30.0,1009.4,-29.635358682232898,-154.8258036586953,-2.9561065908768196,-100.49045632830432,-3.0288233344451907,-99.75870839266118,-44.93969516518923,-145.82661455246063
-1678872350,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.6,2.5,24.93,22.32,56.2,30.0,1009.4,-29.635800554567332,-154.82541080368262,-2.956120738087313,-100.49121537089,-3.028640944395746,-99.75782954662611,-44.94010271679387,-145.80912464982802
-1678872360,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.0,3.1,24.93,22.33,56.2,30.0,1009.4,-29.635938972417556,-154.8243689240112,-2.9560281428621553,-100.49124492726774,-3.0287109393315115,-99.75837965818667,-44.942425571393834,-145.80921942562173
-1678872370,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,3.5,24.96,22.34,56.2,30.0,1009.4,-29.635759646264187,-154.8215911601312,-2.9561965928300893,-100.49043893497918,-3.0285927530331227,-99.7581380791308,-44.93873928863357,-145.8229356735409
-1678872380,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.9,3.6,24.93,22.34,56.2,30.0,1009.5,-29.635763039863896,-154.8231541220177,-2.955986687862165,-100.49005484186807,-3.0287636612914284,-99.75863368643732,-44.94265785858807,-145.80941110803036
-1678872390,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,3.3,24.94,22.35,56.2,30.0,1009.5,-29.636565472343843,-154.82111692207306,-2.95647135479573,-100.489660911624,-3.0286812488885944,-99.75947844288446,-44.941291932194446,-145.8167333417878
-1678872400,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.4,3.0,24.93,22.35,56.2,30.0,1009.4,-29.63627934630415,-154.82419547292437,-2.956295972440249,-100.49035870647369,-3.0287565764088047,-99.75978464580199,-44.94152412901694,-145.81843648546018
-1678872410,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.0,2.9,24.91,22.36,56.3,30.0,1009.4,-29.636574644449382,-154.82539702333904,-2.9563567385782537,-100.49015073516296,-3.028788856865522,-99.75961558352802,-44.93769403143851,-145.82845424701517
-1678872420,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.1,3.5,24.93,22.38,56.3,30.0,1009.4,-29.636491635905248,-154.8240962333948,-2.9562834698657654,-100.49015402420494,-3.0286426329941376,-99.75844281247495,-44.93724677842374,-145.8335847420312
-1678872430,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,2.7,24.91,22.39,56.3,29.9,1009.4,-29.636448997305166,-154.82227586142446,-2.956192574157268,-100.49091165207662,-3.0285510602298022,-99.75839325669432,-44.94284906386963,-145.81285624099468
-1678872440,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.8,2.7,24.91,22.4,56.3,29.9,1009.4,-29.635900348891575,-154.82435607776955,-2.956253061693351,-100.49042401680299,-3.028492875247596,-99.75880246178251,-44.93910810552074,-145.83287214343184
-1678872450,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.4,3.2,24.91,22.4,56.3,29.9,1009.4,-29.63608441586079,-154.82264764051484,-2.9562071450525087,-100.4908278626605,-3.028552547691156,-99.75858651275657,-44.94013397893734,-145.8115635726964
-1678872460,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.4,3.6,24.93,22.4,56.3,29.9,1009.4,-29.63605170343709,-154.82324700386047,-2.956184101811326,-100.49013246687481,-3.0286100939761185,-99.75930858737787,-44.93994978116015,-145.83273724486634
-1678872470,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.1,2.7,24.93,22.4,56.3,29.9,1009.4,-29.635803256948876,-154.82461830572905,-2.956194890323439,-100.49083602567622,-3.0285134110939986,-99.75972448067121,-44.94236626673161,-145.8355286276612
-1678872480,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.7,3.0,24.93,22.41,56.3,29.9,1009.4,-29.63542426094901,-154.82851091791693,-2.956290400917082,-100.49038287034335,-3.028469413446744,-99.7600267441362,-44.93912713877645,-145.83818419969958
-1678872490,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.0,2.7,24.91,22.41,56.3,29.9,1009.4,-29.635315781908464,-154.8246344964156,-2.9562219828176604,-100.49063546137745,-3.0286873435952932,-99.7591159302725,-44.941326881567136,-145.8223691263023
-1678872500,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.3,3.3,24.93,22.42,56.3,29.9,1009.4,-29.635293231844763,-154.8261746080099,-2.9562164084101417,-100.49017289769571,-3.0287849409160437,-99.7595445120927,-44.93992638098953,-145.8203876327386
-1678872510,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.1,3.8,24.93,22.42,56.3,29.9,1009.5,-29.635380037124783,-154.8265780871137,-2.9565094279232214,-100.49013753037353,-3.0284821011053347,-99.7590546245322,-44.940431148590335,-145.83028636248883
-1678872520,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.3,3.0,24.93,22.42,56.3,29.9,1009.5,-29.635333688210697,-154.82716226731628,-2.9562520065059394,-100.48988155938639,-3.028494898414484,-99.75962433764504,-44.9396648201246,-145.82493314673079
-1678872530,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.9,2.6,24.91,22.44,56.3,29.9,1009.5,-29.635417879323533,-154.82515296221985,-2.9562955186635813,-100.49080582720836,-3.028587700237775,-99.75973194921453,-44.93829005916698,-145.82648088242138
-1678872540,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.9,3.2,24.93,22.44,56.3,29.9,1009.4,-29.635013246236564,-154.82646095719932,-2.9561426327229885,-100.49085319323902,-3.028515639575566,-99.75911817331291,-44.93951073888408,-145.81683877542156
-1678872550,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.6,3.9,24.93,22.45,56.3,29.9,1009.3,-29.635399917205486,-154.82529925566894,-2.956226845761256,-100.49043505617578,-3.028604968549801,-99.75828147236697,-44.93971645624755,-145.8250794322476
-1678872560,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,3.8,24.94,22.45,56.3,29.9,1009.3,-29.634978484768645,-154.82520429661685,-2.9560530714460715,-100.48864812692716,-3.028530323732671,-99.75793241112058,-44.93824927883644,-145.82694487619028
-1678872570,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,3.2,24.96,22.46,56.3,29.9,1009.4,-29.63465270132351,-154.82770657083978,-2.9560058495312225,-100.48826555519749,-3.028673899731929,-99.75701087530321,-44.93455747460981,-145.83123487893243
-1678872580,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.1,3.1,24.93,22.47,56.3,29.9,1009.4,-29.63438723612622,-154.8261526258685,-2.9561176806007787,-100.48864839211627,-3.028584955364843,-99.75645445163168,-44.9390357662283,-145.838035865422
-1678872590,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.6,3.0,24.93,22.47,56.3,29.9,1009.3,-29.63421507491931,-154.827595438691,-2.9562947718170647,-100.48743884974058,-3.0287363000131027,-99.75649318478685,-44.93342072852266,-145.84108231118788
-1678872600,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,2.5,24.94,22.48,56.3,29.9,1009.4,-29.634407219158962,-154.82800772203277,-2.9563260440479384,-100.48820039038877,-3.0286126077104654,-99.75717856141718,-44.93553220471049,-145.8420755289843
-1678872610,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.7,2.8,24.96,22.48,56.3,29.9,1009.4,-29.634528565687482,-154.82711182732012,-2.9563817110632478,-100.488850694526,-3.028700535993644,-99.75687365424695,-44.93454556996781,-145.83935824033017
-1678872620,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.0,3.1,24.93,22.49,56.4,29.9,1009.4,-29.634590393593456,-154.82833044984275,-2.956518629476874,-100.48824590093345,-3.0286639438683154,-99.758699202517,-44.93399536566872,-145.85142302685065
-1678872630,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,2.8,24.93,22.49,56.3,29.8,1009.4,-29.63430274558538,-154.82768532507347,-2.9563238636635676,-100.48875987653237,-3.028579198644281,-99.75861893235411,-44.93476788933755,-145.8554397714132
-1678872640,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.4,3.0,24.93,22.5,56.3,29.8,1009.4,-29.634176506760895,-154.82765835855088,-2.9562317676350225,-100.48864451484572,-3.0287958633859087,-99.7583307303334,-44.93822825038467,-145.83973002263699
-1678872650,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.9,3.4,24.93,22.51,56.3,29.8,1009.4,-29.63458743877666,-154.82437627705113,-2.9561422242290796,-100.48905826828724,-3.0287165619835745,-99.75894175582117,-44.939511446019075,-145.83700967811697
-1678872660,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,2.7,24.93,22.53,56.3,29.8,1009.4,-29.634429432954935,-154.82617457760284,-2.9562393794349004,-100.49017283405688,-3.028589168311471,-99.75943429818064,-44.93846857310349,-145.83363486514213
-1678872670,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.6,3.1,24.91,22.54,56.3,29.8,1009.4,-29.634464841873836,-154.82830436386004,-2.9561445074110497,-100.49045688883172,-3.0286094012741387,-99.75937871854089,-44.93755252265746,-145.83879447155863
-1678872680,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,3.6,24.91,22.55,56.4,29.8,1009.4,-29.63389993324258,-154.82801580574528,-2.9559972366526317,-100.48927632273559,-3.0286388639286836,-99.7586707583868,-44.93653610638666,-145.83857309273913
-1678872690,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.3,3.4,24.91,22.55,56.3,29.8,1009.3,-29.634392532173635,-154.82834364729143,-2.9561210438820313,-100.4899433373754,-3.02876072450851,-99.75889582616506,-44.93785174813266,-145.84338927147755
-1678872700,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.5,3.7,24.93,22.55,56.3,29.8,1009.3,-29.63381208399463,-154.82980686810566,-2.9560479076999666,-100.48882033911518,-3.0287548697236226,-99.7594835021423,-44.9345154418928,-145.84958643840042
-1678872710,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.0,3.2,24.91,22.55,56.3,29.8,1009.4,-29.634455080259695,-154.830138217174,-2.956142222074281,-100.48874799385477,-3.0287219649917367,-99.75971534244933,-44.93094730693053,-145.85324895501248
-1678872720,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.0,2.7,24.91,22.55,56.3,29.8,1009.4,-29.634089383704794,-154.82791430080226,-2.956274410188767,-100.48879276530872,-3.028689459536502,-99.76005147071461,-44.93287704694679,-145.85526383712815
-1678872730,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.6,3.4,24.9,22.55,56.3,29.8,1009.4,-29.63462175114187,-154.82617593478403,-2.956231373883538,-100.48982243050638,-3.028684907037134,-99.75934885742583,-44.93760379645154,-145.8476131582444
-1678872740,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.7,2.6,24.91,22.55,56.3,29.8,1009.4,-29.634927632698435,-154.8263817448666,-2.956199820205643,-100.49052193980435,-3.0287583445094093,-99.75950725634682,-44.940489377028015,-145.850440382497
-1678872750,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.3,3.4,24.9,22.55,56.4,29.8,1009.4,-29.634555935975783,-154.825091331247,-2.9560999015730616,-100.49038323855723,-3.028803102146628,-99.75954058638472,-44.94125388006128,-145.84021613388566
-1678872760,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.0,3.1,24.93,22.56,56.4,29.7,1009.4,-29.634847025712816,-154.82538473333133,-2.956070456819309,-100.49048869223742,-3.0286748959618457,-99.76024456157799,-44.94378931771762,-145.83531847758982
-1678872770,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.6,2.8,24.91,22.57,56.4,29.7,1009.4,-29.634884809035896,-154.8260804401304,-2.956037382595748,-100.49017007964424,-3.0285945487121904,-99.76043034675892,-44.94084890134331,-145.8384515753599
-1678872780,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.7,3.1,24.9,22.57,56.3,29.7,1009.4,-29.63468998955021,-154.82338234037343,-2.9560592799696455,-100.48933599900631,-3.0287069648624962,-99.76029278012408,-44.94205602324163,-145.84426215878892
-1678872790,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.7,2.6,24.91,22.57,56.4,29.7,1009.3,-29.634913188158038,-154.82458430705614,-2.956133213744279,-100.48939792822577,-3.028662770629013,-99.76133706991455,-44.940296459618814,-145.83764218404994
-1678872800,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.9,3.0,24.93,22.56,56.4,29.7,1009.4,-29.63550689373756,-154.82313658797628,-2.9561527173940974,-100.490129670659,-3.028582836507911,-99.76075561153596,-44.9381664703758,-145.8395864113647
-1678872810,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,3.5,24.91,22.55,56.4,29.8,1009.4,-29.635452006699644,-154.82465265603255,-2.956133315581637,-100.48945945586607,-3.0286253242010024,-99.7608690803482,-44.93775236467727,-145.82154320100605
-1678872820,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.0,3.2,24.93,22.55,56.3,29.8,1009.4,-29.63556832246016,-154.8237679321614,-2.9562774482823393,-100.4893377411819,-3.02869771860376,-99.76012902110867,-44.940006962055115,-145.83994250125892
-1678872830,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.4,3.4,24.93,22.55,56.3,29.8,1009.4,-29.635242634581186,-154.82544507857844,-2.956161550452431,-100.4888973063953,-3.0287016836990137,-99.76038666250288,-44.93574382547137,-145.84788298766412
-1678872840,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.8,2.7,24.93,22.55,56.3,29.8,1009.4,-29.63478423184889,-154.82817215067467,-2.9562073437423337,-100.48872662122295,-3.0286640318972458,-99.75921225157232,-44.93212948660017,-145.85209985620372
-1678872850,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.7,3.1,24.94,22.55,56.3,29.8,1009.4,-29.635504932433662,-154.8233788759484,-2.956323353662578,-100.48859098272649,-3.0286816173077655,-99.76007031925222,-44.93739295820681,-145.8434388913622
-1678872860,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,2.8,24.93,22.55,56.3,29.8,1009.4,-29.634837807439443,-154.8282820623142,-2.9563304101368026,-100.4892215941641,-3.0286749279803225,-99.7593415301617,-44.93560527386782,-145.85154093922824
-1678872870,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.5,3.7,24.94,22.53,56.3,29.9,1009.4,-29.6348173809288,-154.82645454573736,-2.9564956967720963,-100.4887732543257,-3.0285230880418554,-99.75864986087363,-44.934178416426995,-145.86380347805803
-1678872880,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.9,3.6,24.93,22.5,56.3,29.9,1009.4,-29.634634632990743,-154.8265071501947,-2.95637162607103,-100.48918068036632,-3.028506197899756,-99.75879140536126,-44.9356644178884,-145.86403191856428
-1678872890,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,3.4,24.91,22.48,56.3,29.9,1009.4,-29.634662578621796,-154.82809718779805,-2.9563626140256827,-100.48879014696196,-3.028610965883401,-99.75837108688299,-44.93526338104917,-145.85560731245104
-1678872900,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.6,3.0,24.93,22.47,56.3,29.9,1009.4,-29.63408526710417,-154.82974418143303,-2.9563412552247286,-100.48877085560012,-3.028479540499291,-99.75911402020584,-44.93240028468627,-145.87203051412416
-1678872910,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.1,3.0,24.91,22.45,56.3,29.9,1009.4,-29.634097258013522,-154.82952867488032,-2.9563680638310013,-100.48844009141457,-3.02848809269174,-99.75908546395439,-44.92997893414854,-145.87015356247727
-1678872920,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.1,2.5,24.91,22.43,56.4,30.0,1009.3,-29.634320120518154,-154.82926527417655,-2.956229830257875,-100.48913738105352,-3.028528876542469,-99.75926116497216,-44.93334096316205,-145.86070915187813
-1678872930,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.3,2.9,24.91,22.42,56.4,30.0,1009.3,-29.63372761276937,-154.82880108810875,-2.956332244014849,-100.48910266054587,-3.0286138757791625,-99.75887822034566,-44.93339560073753,-145.87568907936912
-1678872940,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.9,2.8,24.91,22.4,56.4,30.1,1009.4,-29.634232141418902,-154.8277041819994,-2.9561725315327356,-100.48910837522817,-3.0287691670693393,-99.7588959276102,-44.93340956941867,-145.86363351300926
-1678872950,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.4,2.7,24.93,22.39,56.4,30.1,1009.3,-29.63444716710914,-154.8278935390128,-2.956501734818361,-100.48916008263096,-3.028487759827802,-99.7580569331913,-44.929587155888875,-145.84997497965733
-1678872960,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,3.0,24.96,22.38,56.4,30.1,1009.3,-29.634359390169692,-154.8271399446761,-2.9562655470256134,-100.48856465342182,-3.028752859925654,-99.75746731116506,-44.929299971772124,-145.8774379632709
-1678872970,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.4,2.9,24.96,22.35,56.4,30.1,1009.4,-29.633829865065824,-154.83041099853915,-2.956517440289172,-100.48781102744854,-3.028733131179224,-99.75749017159146,-44.93073928662483,-145.86572768803836
-1678872980,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.9,2.4,24.96,22.34,56.4,30.1,1009.3,-29.633791394252363,-154.82808022977497,-2.956453882057763,-100.48819058064387,-3.0287671514824,-99.7580931570671,-44.933495414847584,-145.85719089181418
-1678872990,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.9,2.7,24.93,22.32,56.4,30.2,1009.3,-29.63393589627051,-154.82875242349417,-2.956258115798265,-100.48856510124567,-3.0288470348905165,-99.75852232149643,-44.93264543101461,-145.86271458044237
-1678873000,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.7,2.5,24.93,22.3,56.4,30.2,1009.3,-29.633753586490652,-154.82771849039827,-2.9563167176963874,-100.48934016754396,-3.0287125358884164,-99.75908148978519,-44.930268068849905,-145.86798999820994
-1678873010,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.3,2.6,24.91,22.28,56.4,30.2,1009.4,-29.63408670890545,-154.82912991065717,-2.9563885957043023,-100.4896296469653,-3.028784588133797,-99.75830445596395,-44.9279613413824,-145.87422785185555
-1678873020,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,2.6,24.93,22.27,56.4,30.2,1009.3,-29.6339410073883,-154.82808356838297,-2.9563689659793004,-100.48916860640846,-3.0287044082903836,-99.75843024789017,-44.9287148908251,-145.86428931328348
-1678873030,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.2,2.7,24.93,22.26,56.4,30.2,1009.3,-29.633951862275282,-154.82852252600847,-2.956203406914748,-100.49030149398769,-3.0287426701959728,-99.75921942449695,-44.932525071623324,-145.873732823529
-1678873040,25.0,25.0,55.0,55.0,0,1300000000,,,3,9.0,2.5,24.9,22.24,56.4,30.3,1009.4,-29.634303059141935,-154.82756868379994,-2.9563596835221926,-100.4895313728982,-3.0285392481693347,-99.75985764404531,-44.92943646520765,-145.87817670278937
-1678873050,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.8,3.4,24.91,22.23,56.4,30.3,1009.3,-29.63413029447805,-154.8279694490215,-2.956359985897572,-100.48934007322666,-3.0286573884295986,-99.75951322905205,-44.93006229441066,-145.8745367187322
-1678873060,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.8,2.8,24.91,22.21,56.4,30.3,1009.4,-29.63415029142952,-154.8260225001434,-2.9562875259027734,-100.48931330944413,-3.0286390304940456,-99.75909185939919,-44.93400060675026,-145.8559718909043
-1678873070,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,2.9,24.93,22.2,56.5,30.4,1009.4,-29.634025159093476,-154.82664673985877,-2.95629635564282,-100.48924609731792,-3.028716151379545,-99.75861529093754,-44.931685072289426,-145.88570071686124
-1678873080,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.5,2.6,24.93,22.18,56.5,30.4,1009.4,-29.634450638725426,-154.82550141366363,-2.9563115202307118,-100.48980413898646,-3.028557412372526,-99.75839861184355,-44.93233415600001,-145.8783631176518
-1678873090,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.4,2.6,24.93,22.17,56.4,30.4,1009.4,-29.634887166708324,-154.82654308886845,-2.956272848871311,-100.48932535840724,-3.0286300854217596,-99.75989767936224,-44.937719429564176,-145.87600904168653
-1678873100,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.4,2.9,24.93,22.17,56.4,30.4,1009.4,-29.634249787599835,-154.83020912158958,-2.956377835175638,-100.48931441357136,-3.028802809952713,-99.75925081021202,-44.93958759378736,-145.87782929295656
-1678873110,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.9,3.2,24.93,22.16,56.4,30.4,1009.4,-29.634824185130828,-154.82768400530662,-2.956298635088315,-100.48902093101474,-3.0285619882098658,-99.75893545231895,-44.938287703473705,-145.87907059635359
-1678873120,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.8,3.0,24.93,22.16,56.4,30.4,1009.4,-29.635002136387318,-154.8265535462268,-2.956474563718645,-100.48970811346717,-3.028491517656471,-99.75822328765622,-44.93649123933548,-145.87964218883678
-1678873130,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.3,3.0,24.93,22.13,56.4,30.5,1009.3,-29.635278991609454,-154.82769884190805,-2.9564938230034885,-100.4897901736576,-3.028508148671005,-99.7593134688618,-44.934763783367195,-145.8834076873218
-1678873140,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.4,3.2,24.93,22.1,56.4,30.5,1009.3,-29.635499744448175,-154.82434194364592,-2.9565129812785393,-100.4903068096284,-3.0284964998181434,-99.75920087894322,-44.940731668875586,-145.87135188779865
-1678873150,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.2,3.6,24.93,22.09,56.3,30.6,1009.4,-29.634833902236714,-154.82719047565845,-2.9564135371983227,-100.49020201038965,-3.028504873372437,-99.75851443168904,-44.9346284691721,-145.87745812912019
-1678873160,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.0,2.8,24.94,22.1,56.3,30.6,1009.4,-29.635107012203044,-154.82569442736786,-2.956603573546099,-100.48958993481766,-3.0285231516192948,-99.75822870007687,-44.93160014506377,-145.89858098966027
-1678873170,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.0,3.0,24.93,22.11,56.3,30.5,1009.4,-29.6354383192168,-154.82256000989477,-2.9565561549520183,-100.48997847161645,-3.0285720185462783,-99.75797353679359,-44.93449410936365,-145.88415116037854
-1678873180,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.3,2.9,24.93,22.12,56.3,30.5,1009.4,-29.63495851829968,-154.8258722323929,-2.956389370491252,-100.48970522532842,-3.0288302179896642,-99.75908670919952,-44.93846124848598,-145.86973484161427
-1678873190,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,2.6,24.93,22.13,56.3,30.5,1009.3,-29.634536444564503,-154.8297522828599,-2.956553147685014,-100.48946970251069,-3.0286506100118786,-99.75860622812291,-44.934434345419675,-145.88048226105263
-1678873200,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.3,2.4,24.93,22.13,56.3,30.5,1009.3,-29.63476760613217,-154.82682351640523,-2.9566116162650613,-100.48899291175816,-3.0286767923727123,-99.75924996433737,-44.93477137224531,-145.86865544353302
-1678873210,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.4,3.1,24.93,22.15,56.3,30.5,1009.3,-29.634785022327755,-154.82663378559513,-2.9564591728004856,-100.48825654605812,-3.0285720504067744,-99.75872946262061,-44.93449941662526,-145.8686808895282
-1678873220,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,3.1,24.93,22.16,56.3,30.5,1009.3,-29.63468019335856,-154.82722094122406,-2.956604698538329,-100.48873795051226,-3.028579266336824,-99.75870551308023,-44.937115313263945,-145.8693195080599
-1678873230,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.4,2.9,24.93,22.16,56.3,30.5,1009.3,-29.634437636023133,-154.82697231629737,-2.956608977021955,-100.48834681140777,-3.0286391380518243,-99.75867029564048,-44.936194975255425,-145.88207236446485
-1678873240,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.9,2.8,24.93,22.17,56.3,30.5,1009.3,-29.634951999977307,-154.8259403712277,-2.956406589737126,-100.48850537039351,-3.0286622437142823,-99.75913175787541,-44.93538925723489,-145.86760030503774
-1678873250,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.6,3.3,24.93,22.17,56.3,30.4,1009.3,-29.635345913059975,-154.82628548637146,-2.9566514971531332,-100.4877537285113,-3.028639067111993,-99.7589481661898,-44.936897941986864,-145.86990948954022
-1678873260,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,3.2,24.93,22.18,56.2,30.4,1009.3,-29.635131283474063,-154.82561199666912,-2.9565407597126017,-100.48816719449457,-3.0285339332928682,-99.75868026563064,-44.93416073652183,-145.88538351989448
-1678873270,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,2.7,24.93,22.18,56.2,30.4,1009.3,-29.63500523517539,-154.8257712388786,-2.9567163240135463,-100.4879292966771,-3.0284890576674988,-99.75913703347739,-44.934815636838024,-145.89292220228953
-1678873280,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.6,3.5,24.93,22.19,56.2,30.4,1009.3,-29.63534487548358,-154.82112812144996,-2.9567931050360317,-100.48865103264635,-3.0285858516620854,-99.75907516174306,-44.93633736289095,-145.87061433432572
-1678873290,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.0,3.5,24.93,22.2,56.2,30.4,1009.3,-29.635703568009838,-154.82226781556287,-2.956573460624512,-100.48891599139726,-3.0286082282495257,-99.75751177532159,-44.93576927018638,-145.86979774367418
-1678873300,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.0,3.2,24.94,22.21,56.2,30.4,1009.3,-29.63616951703312,-154.81746782043857,-2.9565393562527813,-100.48832591420803,-3.0285227160167354,-99.75843554199821,-44.93830637198208,-145.86265653467677
-1678873310,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.1,3.1,24.96,22.21,56.2,30.4,1009.3,-29.635486670702683,-154.82042693086737,-2.956615766798004,-100.48822376161287,-3.0285784507811004,-99.75755621478658,-44.93629394584072,-145.8598841979767
-1678873320,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.4,2.7,24.93,22.21,56.2,30.4,1009.3,-29.63586948840582,-154.81940113089735,-2.956575941215206,-100.48891893189582,-3.0286136462580733,-99.75826934427664,-44.940522499483464,-145.85617120664662
-1678873330,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,2.7,24.94,22.24,56.2,30.4,1009.2,-29.635881445755878,-154.81989760347287,-2.956516887685208,-100.48888218089223,-3.0286129525876926,-99.75870334702459,-44.93835939946908,-145.8662272618086
-1678873340,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.0,3.5,24.93,22.24,56.2,30.4,1009.3,-29.635897348712042,-154.82006596074703,-2.95662060998741,-100.48896755775509,-3.0287211295968297,-99.75880345057908,-44.93838478564019,-145.86355212035605
-1678873350,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.3,2.8,24.93,22.24,56.2,30.4,1009.4,-29.636332416547262,-154.81777261579998,-2.9565848622949704,-100.48879051208776,-3.0285935155347388,-99.75862061256602,-44.93854355270405,-145.84711167005764
-1678873360,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.0,3.1,24.96,22.24,56.2,30.4,1009.3,-29.636389124161376,-154.8202273158626,-2.9565660004403567,-100.48981104490504,-3.0284506245023506,-99.75847158063308,-44.93630993364128,-145.84706077634775
-1678873370,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.4,2.8,24.93,22.24,56.2,30.4,1009.4,-29.636261308059503,-154.81909388201097,-2.9565443543274106,-100.48966542691885,-3.028472172010877,-99.75887091603629,-44.938794710915204,-145.83461000582062
-1678873380,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.9,3.3,24.94,22.25,56.2,30.4,1009.3,-29.636428676313283,-154.81929380171067,-2.9562871890866367,-100.4902412513288,-3.028382904503646,-99.75934015571482,-44.94187265767103,-145.82011757071507
-1678873390,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.1,3.1,24.94,22.25,56.2,30.4,1009.4,-29.636803205186034,-154.81571579579182,-2.9563300664355103,-100.49091048321557,-3.0285094307229072,-99.75944252917311,-44.942992434634704,-145.8076298996122
-1678873400,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.8,3.1,24.94,22.26,56.2,30.4,1009.3,-29.63636553839097,-154.81641153768123,-2.9563947722347144,-100.49054181336841,-3.0284822364473523,-99.75881357095074,-44.94252764692229,-145.81994505499
-1678873410,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.7,3.1,24.93,22.27,56.2,30.4,1009.3,-29.636494528375337,-154.81677107158814,-2.9566185461283574,-100.49095688526269,-3.028383879230993,-99.75818983763824,-44.940378084334604,-145.84111775774488
-1678873420,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.6,3.4,24.94,22.28,56.3,30.3,1009.4,-29.636837456296966,-154.8149060009664,-2.9564683045418585,-100.48981929800875,-3.0284529001984914,-99.75845151611182,-44.93924841750412,-145.83829170170387
-1678873430,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.8,3.1,24.94,22.29,56.3,30.3,1009.3,-29.637071570361787,-154.81472116162954,-2.956518928660428,-100.49010596258553,-3.0284354986553086,-99.7582196855701,-44.93883518533842,-145.84599536926657
-1678873440,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.1,3.0,24.93,22.29,56.3,30.3,1009.4,-29.636508973824334,-154.8145232888513,-2.956484077923431,-100.48940529732936,-3.028462782795435,-99.75838816665042,-44.9409459984024,-145.84145232385336
-1678873450,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.6,3.2,24.93,22.3,56.2,30.3,1009.4,-29.636699308088218,-154.81791582964564,-2.956580804505135,-100.4895012230424,-3.0284716214595555,-99.75891547010477,-44.9384197205227,-145.86029509807028
-1678873460,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.1,3.0,24.94,22.31,56.3,30.3,1009.4,-29.636444318647833,-154.81717974446906,-2.956608047078793,-100.48964109706338,-3.0285047572272,-99.75846735055026,-44.93799607145484,-145.8582005867568
-1678873470,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.4,3.2,24.94,22.32,56.3,30.2,1009.4,-29.637062845225927,-154.81726649485745,-2.956632911676172,-100.48922925256034,-3.0283232847964503,-99.75906099899106,-44.93641041583373,-145.85375000227734
-1678873480,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.5,2.7,24.96,22.33,56.3,30.2,1009.4,-29.636862155872624,-154.81745749223188,-2.956414116144739,-100.49022453180103,-3.0285568280096307,-99.75790513669197,-44.938168878433856,-145.8535979007985
-1678873490,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,3.1,24.94,22.33,56.3,30.2,1009.5,-29.63682672015299,-154.81940265050918,-2.956362243644841,-100.48980025765356,-3.0285481951235855,-99.7584628070038,-44.936667387900194,-145.85674262214357
-1678873500,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.5,2.6,24.93,22.33,56.3,30.2,1009.4,-29.63677116947188,-154.81923336552688,-2.956462201424702,-100.48909028661434,-3.028542692126457,-99.75877726647117,-44.93618395081813,-145.86020912340226
-1678873510,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.4,3.8,24.94,22.34,56.3,30.2,1009.4,-29.63646428545136,-154.8195277022402,-2.9564000438452878,-100.48942121884919,-3.0285870769997745,-99.75810258169125,-44.93691018704461,-145.874658975424
-1678873520,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.1,3.1,24.93,22.35,56.3,30.2,1009.4,-29.637413196962026,-154.81658086459475,-2.9566456330269277,-100.48976646336962,-3.0284947702125815,-99.75887540135794,-44.93957834105775,-145.85600808807757
-1678873530,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.7,2.7,24.93,22.35,56.3,30.2,1009.4,-29.637366212476877,-154.8152129887352,-2.956612829457192,-100.49051000449724,-3.0284810633793366,-99.75888384976675,-44.939505878821954,-145.85572148076082
-1678873540,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.1,3.6,24.93,22.35,56.2,30.2,1009.4,-29.637864777256556,-154.81384558860648,-2.9565402728415355,-100.49121692229511,-3.028488996064351,-99.75971810892423,-44.94019033161471,-145.86138410997413
-1678873550,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.0,3.4,24.94,22.36,56.3,30.2,1009.5,-29.6375084667197,-154.81411603202324,-2.9565038007707494,-100.49059208533542,-3.0286234315835947,-99.75901331742641,-44.94110100025952,-145.84664981395562
-1678873560,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.8,2.8,24.94,22.38,56.3,30.2,1009.4,-29.637531449561095,-154.81351222250083,-2.956715940137276,-100.48973054597279,-3.0284034035353895,-99.75962634055428,-44.941158255318385,-145.8524190546016
-1678873570,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.9,3.3,24.93,22.38,56.3,30.2,1009.5,-29.638448460927236,-154.81075909452753,-2.9568012395359307,-100.49040093368019,-3.02825811861441,-99.75934091536467,-44.94386859454366,-145.8329428656045
-1678873580,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.6,3.3,24.93,22.39,56.2,30.2,1009.4,-29.638304239764626,-154.80980675107213,-2.9567712256313357,-100.49047811014132,-3.028396375868469,-99.75991121560692,-44.945844118037705,-145.82552661925274
-1678873590,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.8,3.5,24.93,22.4,56.2,30.2,1009.4,-29.638408589260273,-154.81193826602615,-2.9565976676921712,-100.49060500941198,-3.028269384967048,-99.76035618548755,-44.94213789001322,-145.83218093824715
-1678873600,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.0,2.4,24.93,22.41,56.2,30.2,1009.4,-29.63833122195193,-154.81313451285834,-2.9566879836965247,-100.4902606328607,-3.028188217814633,-99.76125905054835,-44.942341243707105,-145.8434000381003
-1678873610,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.3,2.9,24.93,22.41,56.2,30.2,1009.5,-29.638264367466324,-154.81326624100555,-2.9566475213243297,-100.49080586141953,-3.028341762719773,-99.76088934932676,-44.94132819038821,-145.85429562510248
-1678873620,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.5,3.5,24.91,22.42,56.3,30.2,1009.5,-29.63860087590743,-154.81225780624504,-2.95663834867919,-100.49078631254771,-3.028342836992455,-99.76105936803846,-44.942646929110964,-145.85449937882592
-1678873630,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,3.5,24.93,22.42,56.2,30.2,1009.4,-29.638487345104853,-154.81163007732746,-2.9569017895504324,-100.49026587178889,-3.028348662818238,-99.76036087416145,-44.94420665237854,-145.8524323651431
-1678873640,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.6,3.9,24.94,22.42,56.2,30.2,1009.5,-29.63837085880522,-154.81187815539073,-2.9567348475624926,-100.490149613817,-3.0282941462675494,-99.76007853772715,-44.94008154639805,-145.8481008615322
-1678873650,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.6,3.9,24.97,22.43,56.1,30.1,1009.5,-29.638300030730655,-154.81143202892844,-2.956539610832765,-100.48988405619527,-3.028309892667437,-99.75970339504181,-44.94454763484065,-145.84639507528934
-1678873660,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.9,3.4,24.94,22.44,56.1,30.1,1009.5,-29.63833584661064,-154.81080815740134,-2.956746994302594,-100.49010876927372,-3.028313474275752,-99.75989363967312,-44.944534378355094,-145.85844708631964
-1678873670,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.0,2.9,24.94,22.44,56.2,30.1,1009.6,-29.638161547724316,-154.81246382653742,-2.956708628076246,-100.49044989941417,-3.0282042789184183,-99.7598256872895,-44.94564413802509,-145.83964192826224
-1678873680,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.9,2.9,24.93,22.45,56.2,30.1,1009.5,-29.63800695670986,-154.8152283797471,-2.956439401322777,-100.49054420296874,-3.0283387221825504,-99.76111238621787,-44.9479707533732,-145.84444100474417
-1678873690,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.1,2.8,24.93,22.46,56.3,30.1,1009.4,-29.638306405787613,-154.81310385140642,-2.956450875771448,-100.49072105912141,-3.0284012479677664,-99.76071804177896,-44.945016914009514,-145.84803958811034
-1678873700,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.1,3.1,24.94,22.47,56.3,30.1,1009.5,-29.638483197238642,-154.81318962401016,-2.956459876696862,-100.49057535999883,-3.0284183460718515,-99.75967171784528,-44.944933721401945,-145.83132933254873
-1678873710,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.3,3.1,24.96,22.47,56.3,30.1,1009.5,-29.638278745009593,-154.81262957633749,-2.9565995912028598,-100.49013099247243,-3.0282988709447984,-99.7592814243891,-44.94611073834976,-145.84611851558753
-1678873720,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.6,3.3,24.93,22.48,56.3,30.1,1009.4,-29.63809149426293,-154.81434711285965,-2.956528574145821,-100.48942499481839,-3.0282911252805573,-99.75960498257363,-44.944563236100336,-145.85195038065376
-1678873730,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.4,2.9,24.93,22.49,56.2,30.1,1009.4,-29.63821658008524,-154.81183925512886,-2.9564730978871574,-100.49043253476144,-3.028375184763592,-99.75964075220465,-44.94457787775856,-145.8382890459825
-1678873740,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.4,2.8,24.93,22.49,56.3,30.1,1009.4,-29.637647741773463,-154.81627292548126,-2.9564957202259494,-100.49046969511778,-3.0284468783102794,-99.75957235291355,-44.94367288766574,-145.83982820186196
-1678873750,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,3.2,24.93,22.51,56.3,30.1,1009.4,-29.638039329450226,-154.81563065536446,-2.956485302360048,-100.49046448598011,-3.0284144522590415,-99.75957436108061,-44.94314117962666,-145.82815664095455
-1678873760,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.0,3.5,24.94,22.51,56.3,30.1,1009.3,-29.637851319211713,-154.8162792532684,-2.9564309540955835,-100.48881450763409,-3.028336355956607,-99.76074128545267,-44.94383814214216,-145.83764552543747
-1678873770,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.6,3.1,24.96,22.54,56.3,30.1,1009.4,-29.637483838600556,-154.816497514109,-2.9565120524316613,-100.48928818179681,-3.028303107652337,-99.75983152224998,-44.94298636785668,-145.83696587124697
-1678873780,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.8,2.7,24.96,22.54,56.3,30.1,1009.4,-29.6375585343511,-154.81686980822786,-2.9567323487799433,-100.489532845627,-3.0282647979069894,-99.75891656690403,-44.940926550469285,-145.86216395869093
-1678873790,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.7,3.7,24.96,22.55,56.3,30.1,1009.4,-29.637337577324573,-154.81745373228955,-2.9564787726992954,-100.48848075243625,-3.0283767116416955,-99.75949861806932,-44.93836364181316,-145.84807134136537
-1678873800,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.6,2.9,24.93,22.55,56.3,30.1,1009.5,-29.637600699565997,-154.81869416660757,-2.956440641518114,-100.48871047952905,-3.028409955915367,-99.75959329653409,-44.93707231106604,-145.85698009073923
-1678873810,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.7,2.6,24.93,22.55,56.3,30.1,1009.5,-29.63725659276474,-154.81654134441158,-2.9566632720369213,-100.48933354775887,-3.028289997185864,-99.75917487866079,-44.94029932936792,-145.85993952196202
-1678873820,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.0,2.4,24.91,22.55,56.3,30.1,1009.5,-29.637677456069632,-154.81608838470967,-2.9566177663602393,-100.489774953764,-3.028438919371453,-99.75949716757235,-44.940525681320544,-145.85840247329324
-1678873830,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.6,3.0,24.93,22.55,56.4,30.1,1009.5,-29.637341222259955,-154.8165302259304,-2.9566825047495775,-100.48955774356871,-3.028223113730781,-99.7598730435566,-44.940777102197664,-145.8642539847442
-1678873840,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.5,3.2,24.93,22.55,56.4,30.0,1009.4,-29.63669761148891,-154.8199805921854,-2.9565531393951177,-100.48978601038432,-3.0284033459543904,-99.75902120865024,-44.9408124714791,-145.86449470823212
-1678873850,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.3,3.1,24.93,22.56,56.3,30.0,1009.5,-29.6370773568667,-154.81737185077608,-2.9565336153068262,-100.48911564182079,-3.0284318769629337,-99.75925738723285,-44.94261112484358,-145.85123888603567
-1678873860,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.9,3.2,24.94,22.59,56.3,30.0,1009.5,-29.636713776585694,-154.81660949590474,-2.9565039037865057,-100.48935845971346,-3.0283594627319967,-99.75916230725107,-44.94291289602114,-145.84526057356956
-1678873870,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.7,3.3,24.96,22.58,56.3,30.0,1009.4,-29.63714175445621,-154.81675184164976,-2.9567066053704765,-100.48936939753081,-3.028330165541692,-99.75897207193213,-44.939001388187606,-145.85620843622615
-1678873880,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.4,3.5,24.93,22.58,56.3,30.0,1009.5,-29.636847324881053,-154.8163633519972,-2.9566650774085645,-100.48881652456757,-3.0283487333880243,-99.75901779969134,-44.941090450715464,-145.8447011272734
-1678873890,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.2,2.7,24.93,22.57,56.3,30.0,1009.5,-29.63707040316937,-154.81736699576348,-2.9566181754716014,-100.49007255772536,-3.028248295349394,-99.7595657191614,-44.94212891762405,-145.8507509941736
-1678873900,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.1,2.9,24.93,22.56,56.3,30.0,1009.5,-29.637107045650538,-154.81671297831795,-2.9565995983830247,-100.49002766709839,-3.0282834625259714,-99.75950779442547,-44.94109028199684,-145.83671170950623
-1678873910,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.2,2.8,24.93,22.55,56.3,30.0,1009.5,-29.637062491799963,-154.81613641074333,-2.956518302192792,-100.49072490681549,-3.0281828428371753,-99.75929993915837,-44.94090955787009,-145.849359017564
-1678873920,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.0,2.7,24.93,22.55,56.3,30.0,1009.4,-29.63726911814156,-154.81515300965268,-2.9565902581658317,-100.4906458823383,-3.028375692868468,-99.76019213131049,-44.944247189694416,-145.83286149297902
-1678873930,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.2,3.0,24.93,22.55,56.4,30.1,1009.5,-29.63761958303561,-154.81536600760302,-2.956588889649787,-100.49113692180673,-3.028286675050158,-99.76019034047745,-44.94516040729999,-145.8226804866545
-1678873940,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.9,3.3,24.93,22.55,56.4,30.1,1009.5,-29.636810336774076,-154.81712528307008,-2.956466398193264,-100.49050934397498,-3.0283828968048097,-99.75927695258602,-44.94610925949345,-145.82307195780007
-1678873950,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.0,3.2,24.94,22.51,56.3,30.1,1009.5,-29.63717220852512,-154.81496922928537,-2.956547514503982,-100.49049467964589,-3.0284951810117726,-99.75946629715926,-44.9444890153253,-145.83544734864475
-1678873960,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.6,3.6,24.94,22.5,56.3,30.1,1009.5,-29.63737626053448,-154.81466719175447,-2.9565502467708193,-100.48964301157254,-3.0283158386463493,-99.75961964535087,-44.94417312775984,-145.8353816285543
-1678873970,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.8,2.4,24.93,22.48,56.4,30.1,1009.5,-29.63726414930115,-154.81517107212116,-2.956368858521566,-100.49065721266115,-3.0283984608679755,-99.75971249298303,-44.94369557683921,-145.83409301861835
-1678873980,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.3,2.3,24.93,22.47,56.4,30.1,1009.5,-29.63754887709822,-154.81651698112205,-2.9565741350028234,-100.49010721986143,-3.0283362439243176,-99.7607733380382,-44.943992278583245,-145.82518937689335
-1678873990,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.8,2.3,24.93,22.45,56.4,30.2,1009.5,-29.637061095638924,-154.81791092710915,-2.9565967172065974,-100.49032161360618,-3.028246373522246,-99.76028769272958,-44.941539893649754,-145.84517181758068
-1678874000,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.6,2.9,24.93,22.43,56.5,30.2,1009.5,-29.636599017098955,-154.81610121202874,-2.956630917393259,-100.49074380616211,-3.028383740850038,-99.75931371725066,-44.94323282514184,-145.8500589538651
-1678874010,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.7,3.1,24.94,22.41,56.5,30.2,1009.6,-29.636676829163427,-154.8190755891962,-2.9565850673520044,-100.49066834520836,-3.028529744690038,-99.75925748696659,-44.94026184905684,-145.8347486865877
-1678874020,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.5,2.4,24.94,22.4,56.5,30.3,1009.6,-29.636363200082698,-154.82033925451285,-2.9565668381793264,-100.49084196220366,-3.0284588752469377,-99.75869475196718,-44.93869501520485,-145.85574900252644
-1678874030,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.4,2.3,24.96,22.36,56.5,30.3,1009.6,-29.636529611173117,-154.82125597092943,-2.9566465680051444,-100.49121963463071,-3.0282405723309367,-99.7585802288577,-44.93876454508127,-145.85186571532134
-1678874040,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.2,2.4,24.96,22.35,56.5,30.3,1009.5,-29.636232314580575,-154.81825134242763,-2.956272705874193,-100.49122306886083,-3.028497511081576,-99.75974044109034,-44.942812708963096,-145.83185511433643
-1678874050,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.4,2.2,24.96,22.32,56.5,30.4,1009.6,-29.63658780510474,-154.81909402947198,-2.9563848432640834,-100.49158043480162,-3.028451853592615,-99.76000942342377,-44.943400014661215,-145.84410016320194
-1678874060,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,2.2,24.93,22.31,56.5,30.4,1009.6,-29.637224775642736,-154.8175168174253,-2.956572649528782,-100.49277092658787,-3.028473406537387,-99.75999454732305,-44.94117381498798,-145.84784036870954
-1678874070,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.3,2.3,24.9,22.29,56.5,30.4,1009.6,-29.636746379312825,-154.81683611824374,-2.95637411216098,-100.49249719574432,-3.0287851283910143,-99.76117674549532,-44.94759497131328,-145.8447573154905
-1678874080,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.6,2.8,24.91,22.27,56.5,30.4,1009.6,-29.637086040302968,-154.81566480021965,-2.9565280747762603,-100.49184845777145,-3.028606676211707,-99.76041954045719,-44.946846314717135,-145.84675264111965
-1678874090,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.3,2.4,24.91,22.26,56.5,30.5,1009.6,-29.636913702155404,-154.81516234842644,-2.956563045869205,-100.49191423962802,-3.028443601336951,-99.76170818947284,-44.947966405236095,-145.83068361113865
-1678874100,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.3,2.6,24.91,22.25,56.5,30.5,1009.6,-29.63712496845887,-154.81796229179074,-2.9564536568032382,-100.49230798438424,-3.028380086948022,-99.76182082508682,-44.946810507962425,-145.83706758489183
-1678874110,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.9,2.6,24.91,22.21,56.4,30.5,1009.6,-29.636677422427166,-154.81881528362732,-2.9564749798436623,-100.49247576189074,-3.028572215775391,-99.76130130351687,-44.94184259728129,-145.83548705553434
-1678874120,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.8,2.8,24.91,22.21,56.4,30.6,1009.6,-29.636752951656774,-154.81666947077443,-2.9565607155235303,-100.49260464014075,-3.0284786785342592,-99.7614094919181,-44.94534067098723,-145.83269142517284
-1678874130,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.7,2.8,24.93,22.17,56.4,30.6,1009.6,-29.63708200755839,-154.815701747471,-2.956482729174063,-100.49292733849983,-3.0286246502183873,-99.762325095726,-44.94596598575299,-145.82742650792213
-1678874140,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.0,2.9,24.93,22.17,56.4,30.6,1009.6,-29.636842742770337,-154.81731460944698,-2.956317694682667,-100.49311250265575,-3.0285960659625717,-99.7622497138401,-44.9457066516465,-145.82292278794864
-1678874150,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.3,2.6,24.93,22.15,56.4,30.6,1009.6,-29.637480266692968,-154.81522852892397,-2.956542974949352,-100.4922821997214,-3.028479341469619,-99.76326937578692,-44.9496232915742,-145.82047097095742
-1678874160,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.3,2.7,24.93,22.15,56.4,30.6,1009.6,-29.637102901962216,-154.81518602713624,-2.956594105152686,-100.49281217002091,-3.028619813602206,-99.76281762173011,-44.9516667204024,-145.8239320714865
-1678874170,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.7,2.8,24.93,22.15,56.4,30.6,1009.6,-29.637170686053416,-154.8163840687183,-2.95654185367398,-100.49274096248685,-3.028536879447344,-99.76281561100787,-44.94830689589142,-145.82513707445455
-1678874180,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.3,2.7,24.93,22.15,56.4,30.6,1009.7,-29.636871545537417,-154.81549078603956,-2.9565629817259884,-100.49266959691924,-3.0284869447699543,-99.76360978801256,-44.94989048685619,-145.8250199565231
-1678874190,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.5,3.0,24.93,22.16,56.4,30.6,1009.7,-29.63718476362957,-154.81569792418148,-2.956532221955697,-100.49318670597397,-3.02859167091521,-99.76201857853029,-44.948345603946834,-145.82064046506335
-1678874200,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.6,2.5,24.93,22.17,56.4,30.6,1009.8,-29.63806499779498,-154.81433414228275,-2.9566304879584866,-100.49309139179859,-3.0284222916383152,-99.76255744703307,-44.94843933760744,-145.81533755504546
-1678874210,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.0,2.5,24.93,22.19,56.4,30.6,1009.8,-29.63777608655188,-154.8132508988834,-2.9566852172251052,-100.49262555747323,-3.028439194690981,-99.76152693031618,-44.94741631877814,-145.8198663869318
-1678874220,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.4,2.4,24.93,22.19,56.4,30.6,1009.8,-29.637746008269268,-154.81390320531065,-2.9568450294021154,-100.49266951086523,-3.028505815050344,-99.7612503092981,-44.947057702695886,-145.8297208043564
-1678874230,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.6,2.2,24.91,22.2,56.3,30.6,1009.7,-29.63730034577871,-154.81483115170465,-2.956635381965351,-100.49393974867533,-3.0283830368823104,-99.76215175525812,-44.94642341525861,-145.8345035560183
-1678874240,25.0,25.0,55.0,55.0,0,1300000000,,,3,9.2,2.5,24.9,22.21,56.3,30.6,1009.8,-29.636929493527578,-154.81866876392112,-2.956595093511931,-100.4934731650142,-3.0284541368532536,-99.76292547904622,-44.94534194162612,-145.8243956452817
-1678874250,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,3.3,24.9,22.21,56.3,30.6,1009.7,-29.636199561811416,-154.82110010174222,-2.956568735682908,-100.4932534837991,-3.0284644959886005,-99.76365003021981,-44.944676735572415,-145.8458346228329
-1678874260,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.5,3.1,24.9,22.23,56.3,30.6,1009.8,-29.636554617833006,-154.81933883521947,-2.9563618321054137,-100.49289222606068,-3.0283095137833733,-99.76333136895676,-44.94561461463771,-145.83560571326436
-1678874270,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,3.3,24.9,22.23,56.3,30.6,1009.7,-29.63810139703108,-154.8168538486958,-2.9564546840213572,-100.49274708904099,-3.0282182772971145,-99.7630724265461,-44.96560352233827,-145.87259149433513
-1678874280,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.3,3.3,24.93,22.24,56.2,30.6,1009.7,-29.6380271467504,-154.8171040928964,-2.9564148193458646,-100.49241377507977,-3.028244189827101,-99.76295319057608,-44.96500165683517,-145.8779703230064
-1678874290,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.0,3.5,24.93,22.24,56.2,30.5,1009.6,-29.637889467361003,-154.8169252665774,-2.956405810643861,-100.49215753439111,-3.028179882249629,-99.76274806423581,-44.963890146281564,-145.88302851321342
-1678874300,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.4,3.1,24.91,22.24,56.2,30.5,1009.6,-29.637337867651215,-154.818252600923,-2.956322367034109,-100.49106155138597,-3.0283793317228835,-99.7628811269502,-44.96400826773615,-145.87674839542257
-1678874310,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.5,3.2,24.93,22.25,56.2,30.5,1009.8,-29.6373009545028,-154.8198436474468,-2.956405605415278,-100.4909305155754,-3.02821268201311,-99.76256436894757,-44.9613674610466,-145.88391935285472
-1678874320,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.5,3.4,24.93,22.25,56.1,30.5,1009.7,-29.63714097090204,-154.81940180031282,-2.9565014937441076,-100.4911038195736,-3.0282660810663993,-99.76273480164883,-44.96171208461454,-145.90124186427138
-1678874330,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.8,3.1,24.93,22.26,56.1,30.5,1009.7,-29.63734499112439,-154.81957225869627,-2.9564434653277125,-100.49141263401384,-3.028247790908025,-99.76156695363197,-44.96148017182933,-145.89257617347636
-1678874340,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.1,3.0,24.91,22.26,56.2,30.5,1009.7,-29.637073329207784,-154.8206999881688,-2.956255647498956,-100.49084321162162,-3.028239487508204,-99.76134419950733,-44.96183614786068,-145.89699503451797
-1678874350,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.1,3.0,24.93,22.27,56.1,30.5,1009.7,-29.637083813756977,-154.8197961905403,-2.956347002625196,-100.49071226043002,-3.0283461961034637,-99.761720125838,-44.9604958000093,-145.88785971845857
-1678874360,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.7,2.8,24.91,22.27,56.1,30.5,1009.7,-29.637000429434682,-154.8206510651297,-2.956328877656676,-100.49086538319354,-3.028276550515204,-99.76187442335186,-44.96130751558852,-145.8931435429046
-1678874370,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.0,2.9,24.93,22.28,56.2,30.5,1009.8,-29.637046281872884,-154.81928496696952,-2.9562888349233516,-100.49078126200087,-3.0283951666850095,-99.76154897940202,-44.96334451784072,-145.89318982085965
-1678874380,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.1,2.7,24.91,22.28,56.2,30.5,1009.8,-29.637028600364154,-154.81937587828682,-2.9562744133772934,-100.49093748351139,-3.0284001218305576,-99.76141957735553,-44.96217626986173,-145.90077147376047
-1678874390,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.1,3.1,24.91,22.29,56.1,30.5,1009.7,-29.636726384536015,-154.8213987188002,-2.9562350256872967,-100.49098542867206,-3.0283672213645065,-99.76088658457576,-44.9601841770966,-145.88458664320473
-1678874400,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.3,3.5,24.91,22.29,56.1,30.5,1009.7,-29.636500096392293,-154.82093641932133,-2.956206498979535,-100.49147902088227,-3.028522882357165,-99.7606983711331,-44.965215066795224,-145.88210806437897
-1678874410,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.0,3.1,24.9,22.3,56.1,30.5,1009.7,-29.636663080879607,-154.82286207089484,-2.9564076852357664,-100.49093296672375,-3.028303797611635,-99.76118827517355,-44.96062013266993,-145.90015971360236
-1678874420,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.1,3.6,24.93,22.31,56.1,30.5,1009.7,-29.6363868338605,-154.8237456991305,-2.9564919767677003,-100.49080896929082,-3.0283706530021473,-99.76086375512679,-44.960421851088,-145.88658504571475
-1678874430,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.1,3.9,24.93,22.31,56.0,30.4,1009.8,-29.636503348246283,-154.821875683935,-2.9563781736397665,-100.49070343044933,-3.028429586399191,-99.76019427399196,-44.96004346055345,-145.90784066977815
-1678874440,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.4,3.3,24.94,22.32,56.0,30.4,1009.7,-29.636197768469835,-154.82459138556615,-2.956317259399796,-100.49113026372497,-3.028549170209937,-99.76031261975335,-44.96075108354799,-145.90216877727005
-1678874450,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,3.5,24.93,22.33,56.0,30.4,1009.7,-29.636089244845326,-154.8266411189772,-2.9562853433631675,-100.49101162363989,-3.0283609146408805,-99.76093483457583,-44.95625774588177,-145.9157825026453
-1678874460,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.3,3.4,24.93,22.33,56.1,30.4,1009.8,-29.636209623881662,-154.8252287706927,-2.956226110000318,-100.49152673624363,-3.028414715637245,-99.76069038843728,-44.96384254159466,-145.91983811254744
-1678874470,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.6,3.0,24.91,22.34,56.1,30.4,1009.7,-29.636541133719263,-154.82529416260647,-2.956303343204756,-100.49132174995422,-3.0282459827165726,-99.76137949024654,-44.96105652809783,-145.9326314148
-1678874480,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,2.6,24.91,22.35,56.1,30.4,1009.7,-29.637131677912162,-154.82349072240058,-2.9563424388907302,-100.49194516231861,-3.0284222560994154,-99.76202554458536,-44.96219341419477,-145.9266123138182
-1678874490,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.4,3.5,24.9,22.35,56.1,30.4,1009.7,-29.637218527554086,-154.82326167650356,-2.9565263742308296,-100.49108941902927,-3.0283483726590648,-99.76248210217399,-44.96111936702312,-145.94154086013063
-1678874500,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.5,3.5,24.91,22.36,56.2,30.4,1009.7,-29.636666369103153,-154.82575587797527,-2.9562340847587776,-100.49109127590106,-3.028329550553373,-99.7620556495318,-44.95830351799427,-145.93263646126906
-1678874510,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.0,3.3,24.91,22.38,56.1,30.4,1009.7,-29.636654554201765,-154.82444348534284,-2.9561956880612446,-100.49090238166188,-3.028323383469147,-99.76093371511523,-44.96250462550763,-145.936166721492
-1678874520,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.3,3.0,24.93,22.38,56.1,30.4,1009.7,-29.63644024943951,-154.82501945514417,-2.9562723427591466,-100.49017643692274,-3.028192778128857,-99.76110738863133,-44.9581294936569,-145.93174566262397
-1678874530,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.5,3.4,24.93,22.39,56.1,30.4,1009.7,-29.63624011203164,-154.82520253765148,-2.9562644592031386,-100.49067033690469,-3.0282133270243055,-99.7605963819113,-44.958642109497326,-145.94263006887763
-1678874540,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.2,3.2,24.93,22.39,56.2,30.4,1009.7,-29.635818493463727,-154.82642932659792,-2.956368058917765,-100.49049757600262,-3.028222044445002,-99.75993132046153,-44.96001603125313,-145.94033857991957
-1678874550,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.7,3.0,24.94,22.4,56.2,30.3,1009.7,-29.636283569783757,-154.82355623364003,-2.9565427269379336,-100.4914505783623,-3.0282497355516003,-99.75988371068705,-44.961233934558955,-145.93649433603338
-1678874560,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.6,3.3,24.93,22.41,56.2,30.3,1009.7,-29.63555274018978,-154.8252084418902,-2.9565089770029616,-100.49050808991754,-3.028208671743096,-99.76025368219415,-44.95960022782039,-145.95892821664526
-1678874570,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.7,3.1,24.9,22.42,56.2,30.3,1009.7,-29.635471415224277,-154.8292007425291,-2.9562765047648525,-100.49080657508496,-3.028194464381256,-99.76037252225703,-44.95696841762793,-145.96331493017706
-1678874580,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.7,3.1,24.9,22.42,56.3,30.3,1009.7,-29.63612349902437,-154.8237639841626,-2.9564887197458862,-100.49074882734818,-3.0284176738486885,-99.76054772614307,-44.960247020455256,-145.9569282955917
-1678874590,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.6,2.8,24.91,22.43,56.3,30.3,1009.7,-29.635372749783816,-154.82569646561777,-2.956413969366516,-100.4909450298779,-3.028327128383879,-99.7609879620011,-44.96012454119001,-145.93634217493818
-1678874600,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.4,3.3,24.91,22.43,56.3,30.3,1009.7,-29.635397201159837,-154.82571451136067,-2.9564834217238483,-100.49093398475871,-3.028459327075229,-99.76084887855617,-44.95997468878426,-145.93997515305915
-1678874610,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.4,3.4,24.91,22.44,56.3,30.3,1009.7,-29.63535880283438,-154.82524853769564,-2.9564691239544603,-100.49152948330529,-3.028225787677154,-99.7602218776231,-44.959422177640384,-145.95763657654604
-1678874620,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.6,3.4,24.91,22.45,56.3,30.3,1009.7,-29.634836379454967,-154.8269483748381,-2.9563674399881523,-100.49020172997277,-3.02847066207595,-99.76073048571214,-44.95618107542051,-145.97683547606576
-1678874630,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.2,3.0,24.91,22.45,56.3,30.3,1009.6,-29.635270823390986,-154.82622227345087,-2.9566015475335705,-100.49108178892024,-3.0283190238335047,-99.7602094717382,-44.956204256156546,-145.97053027684706
-1678874640,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.5,2.8,24.93,22.46,56.3,30.3,1009.6,-29.63529042509591,-154.82747783893316,-2.9563549995794918,-100.49130897255313,-3.028503390282516,-99.76042509323656,-44.956349260433456,-145.97545569362342
-1678874650,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.9,2.7,24.94,22.47,56.3,30.2,1009.6,-29.63492502568036,-154.82814957138706,-2.9562983436741708,-100.49082821268578,-3.028487678707496,-99.76098793270405,-44.95870722940997,-145.96756170761378
-1678874660,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.3,3.3,24.93,22.47,56.3,30.2,1009.6,-29.634760989389374,-154.8290292205772,-2.9564984866727824,-100.49106905124067,-3.028151070870773,-99.76067920114106,-44.95646236235251,-145.95943292745778
-1678874670,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.8,2.9,24.94,22.47,56.3,30.2,1009.6,-29.635334122250526,-154.82615724060665,-2.9565238252799038,-100.49113451315041,-3.0284415986272624,-99.76076335802463,-44.95657648647872,-145.96745712520186
-1678874680,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.5,3.5,24.93,22.48,56.2,30.2,1009.6,-29.63463099352177,-154.82865221027978,-2.9563019689204477,-100.49064618409703,-3.0283667290799614,-99.76144859226395,-44.95887356413719,-145.9713946683513
-1678874690,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.7,3.0,24.91,22.49,56.2,30.2,1009.6,-29.63508923098629,-154.82767966171778,-2.95622688170298,-100.49186358424365,-3.028374173191038,-99.76138995763756,-44.959967841512245,-145.94922519976643
-1678874700,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.1,3.4,24.91,22.49,56.2,30.2,1009.7,-29.634974035067057,-154.8260804570879,-2.9563115482033924,-100.49188901489734,-3.028340258836279,-99.76104826912082,-44.95933744321527,-145.95829476422446
-1678874710,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.7,3.5,24.93,22.49,56.2,30.2,1009.7,-29.635328531859727,-154.82564375701628,-2.956523434181345,-100.4929304339481,-3.0282715511703047,-99.76042521771564,-44.95908269417931,-145.96031597436965
-1678874720,25.0,25.0,55.0,55.0,0,1300000000,,,3,4.9,3.5,24.93,22.5,56.2,30.2,1009.6,-29.63472077881816,-154.82831522721418,-2.9562369566100264,-100.49263979464158,-3.028232716294336,-99.76062187432751,-44.96017182183636,-145.9481594297053
-1678874730,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.6,3.3,24.93,22.53,56.2,30.2,1009.6,-29.634584995613547,-154.8280946948443,-2.9563248444572205,-100.49307578403072,-3.0282980197862672,-99.76059060296414,-44.9612443908952,-145.9531375662251
-1678874740,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,3.7,24.93,22.53,56.2,30.2,1009.6,-29.634780932255538,-154.82830843868018,-2.9561502497070045,-100.49310181206343,-3.0283306730846355,-99.76111961049028,-44.95916095531598,-145.94425476674357
-1678874750,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.0,3.3,24.93,22.55,56.2,30.2,1009.7,-29.634250130713117,-154.82823702349816,-2.9562537327859832,-100.49331786171761,-3.0285207081919863,-99.76065334525275,-44.95695329600797,-145.9615578830169
-1678874760,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.3,3.4,24.93,22.55,56.2,30.2,1009.7,-29.634498080571806,-154.82962809932005,-2.956298386509279,-100.49181487714738,-3.0284701326371595,-99.76007825375228,-44.95825633070872,-145.9491150903798
-1678874770,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.0,3.4,24.93,22.55,56.2,30.2,1009.7,-29.633864530007152,-154.83046915649706,-2.9561603301423607,-100.49232987602497,-3.0284875731971623,-99.7604296528468,-44.95847626387848,-145.95575465525053
-1678874780,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.3,3.4,24.93,22.55,56.2,30.2,1009.7,-29.634223851883974,-154.82898194024443,-2.9563553675663776,-100.49118063252453,-3.028353812445891,-99.76038623214468,-44.95424154709401,-145.9644768872516
-1678874790,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.1,3.4,24.93,22.55,56.3,30.2,1009.7,-29.63375222877245,-154.83274206382816,-2.956191109462134,-100.49131940343952,-3.0283234906897216,-99.76064290309347,-44.95289154619318,-145.94501845423036
-1678874800,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.7,3.0,24.93,22.55,56.3,30.2,1009.6,-29.63447120514931,-154.83064774773118,-2.9563610955898882,-100.49107420390168,-3.0284185813271804,-99.76128840122985,-44.954421739395364,-145.96072626275412
-1678874810,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.2,2.8,24.93,22.55,56.3,30.2,1009.6,-29.634176924775954,-154.83112559134943,-2.9562715283043453,-100.49182750869284,-3.028581946185712,-99.76091231522712,-44.95413087363626,-145.94974779586872
-1678874820,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.3,3.1,24.93,22.55,56.3,30.2,1009.7,-29.63454151934977,-154.82828262086076,-2.956351257778472,-100.49174417039372,-3.028485175073525,-99.76091043697807,-44.956241486330384,-145.9424196574901
-1678874830,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.8,3.2,24.91,22.56,56.3,30.2,1009.6,-29.6340107433457,-154.83219034658774,-2.9562154042369886,-100.49229798919475,-3.028519448378797,-99.76161605827919,-44.955336721115685,-145.9450716574191
-1678874840,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.5,2.8,24.93,22.58,56.3,30.2,1009.6,-29.63461962519827,-154.82651652043148,-2.956387044647872,-100.49231030162782,-3.028513153027999,-99.76194969430534,-44.95788109632347,-145.94879903881719
-1678874850,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.7,2.2,24.93,22.6,56.3,30.1,1009.7,-29.633921613299236,-154.83217348003572,-2.956169632227801,-100.49294941387609,-3.0285157315681492,-99.76166512004518,-44.95710530250129,-145.94736665495887
-1678874860,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,3.3,24.9,22.6,56.3,30.1,1009.7,-29.6341712515988,-154.8301019206929,-2.9560699341805536,-100.49251114593521,-3.0283416031197206,-99.76238611583777,-44.95655785754629,-145.95620827530485
-1678874870,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.1,3.5,24.93,22.59,56.4,30.1,1009.7,-29.634248002453024,-154.83260629522806,-2.956118023973973,-100.49289762745123,-3.028463273456097,-99.76203786738034,-44.95711423025742,-145.93914348145367
-1678874880,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.3,3.2,24.91,22.58,56.4,30.1,1009.7,-29.6348738933893,-154.83050987432097,-2.9563780444415455,-100.49275787998629,-3.0284405236599343,-99.76210796029552,-44.95582432964754,-145.9462683559427
-1678874890,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.0,3.7,24.91,22.57,56.4,30.2,1009.7,-29.63415004964592,-154.83219753499571,-2.9562721612976772,-100.49254623105361,-3.028572209705257,-99.76102554031468,-44.95753974150948,-145.94423419663335
-1678874900,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.5,4.2,24.93,22.57,56.4,30.2,1009.7,-29.63447731997413,-154.8302999519136,-2.9564252798592876,-100.490885253992,-3.0285080996759706,-99.76077734971874,-44.956038354235346,-145.95419164762276
-1678874910,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.6,2.9,24.94,22.55,56.3,30.2,1009.7,-29.634200934047485,-154.82949207936062,-2.95635874455634,-100.49174366224295,-3.0283500577821876,-99.7597087052161,-44.95591846987654,-145.95289317170443
-1678874920,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.5,3.0,24.93,22.55,56.3,30.2,1009.7,-29.634035240612366,-154.8310372891638,-2.956143675751359,-100.49129781279188,-3.0287216208747014,-99.76042527854307,-44.95522266153238,-145.9477475074479
-1678874930,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.3,2.5,24.93,22.55,56.4,30.2,1009.7,-29.634428383342524,-154.82975152612752,-2.9564964797659066,-100.4921532802173,-3.028498870108372,-99.76046522721916,-44.95582802873977,-145.9718469037377
-1678874940,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.6,2.2,24.9,22.55,56.4,30.2,1009.6,-29.63412840519638,-154.83073196472645,-2.956507623459279,-100.49285215965396,-3.0284100459889647,-99.76049731789723,-44.955000409795176,-145.96942296113812
-1678874950,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.6,2.5,24.91,22.54,56.4,30.2,1009.7,-29.63383406969127,-154.83285153412976,-2.9566247801884273,-100.492728027052,-3.028543924867324,-99.76039703766584,-44.95104848463974,-145.97084000056816
-1678874960,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.2,2.9,24.93,22.51,56.5,30.2,1009.7,-29.634408431957468,-154.83011414175297,-2.956493289413604,-100.49297287312194,-3.0283223309773994,-99.76075464900038,-44.95427328586462,-145.9483782199975
-1678874970,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.7,2.9,24.93,22.48,56.5,30.3,1009.7,-29.634678395999853,-154.82701968965208,-2.9567270060540536,-100.49221649626341,-3.0284673312796024,-99.76086258888331,-44.95447021706522,-145.96950996017642
-1678874980,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.5,3.6,24.93,22.46,56.4,30.3,1009.6,-29.634152927512627,-154.82867112618462,-2.956754829826046,-100.491568068665,-3.0283868908136826,-99.7605180370008,-44.94861119465965,-145.97512634411416
-1678874990,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.3,3.0,24.93,22.44,56.4,30.3,1009.7,-29.634167369178673,-154.82792986956557,-2.95663378513101,-100.490855597882,-3.028431859547184,-99.76163382529988,-44.953238574352014,-145.97569383777318
-1678875000,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,3.5,24.93,22.43,56.4,30.4,1009.6,-29.63424913807708,-154.82833146679246,-2.956413218542507,-100.49021236455802,-3.0283981202853196,-99.76038080894918,-44.9507569198169,-145.97347776251223
-1678875010,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,3.1,24.93,22.42,56.4,30.4,1009.6,-29.63400038576061,-154.8294062725101,-2.9564977264364467,-100.49078638589927,-3.0283174272268636,-99.7600829673417,-44.95245351731688,-145.97444176601303
-1678875020,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,2.4,24.93,22.4,56.4,30.4,1009.7,-29.634440756376385,-154.82718307437352,-2.956467783118736,-100.49024045415575,-3.028260878019224,-99.75978621777199,-44.953379410285095,-145.9840930553289
-1678875030,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.3,3.2,24.93,22.38,56.5,30.4,1009.6,-29.634360585285467,-154.82825027076635,-2.956319061196748,-100.49081676452667,-3.0284332857499012,-99.75905054910403,-44.95225628010858,-145.96587699144635
-1678875040,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.3,2.7,24.93,22.36,56.5,30.5,1009.6,-29.63427834382854,-154.8299815074867,-2.9562581554947176,-100.49096889620358,-3.0282991005162185,-99.75990395836753,-44.95432376440522,-145.98468679218857
-1678875050,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.2,2.1,24.91,22.34,56.4,30.5,1009.7,-29.63380258180826,-154.83081110896595,-2.9564463025507455,-100.49237836822768,-3.028401061900703,-99.75954768555671,-44.955173035821744,-145.99261522854405
-1678875060,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.7,2.6,24.91,22.33,56.4,30.5,1009.6,-29.633797383127142,-154.83010284315768,-2.956600477443669,-100.49174157883152,-3.02824901194364,-99.75923142606976,-44.95366318295002,-145.97617033638767
-1678875070,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,2.9,24.93,22.31,56.5,30.5,1009.5,-29.63392441331419,-154.8296989985609,-2.9564748921419213,-100.4911463378696,-3.028436299157674,-99.75906642218432,-44.952932869659854,-145.98114214633944
-1678875080,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.1,3.0,24.96,22.3,56.5,30.6,1009.6,-29.63378145094429,-154.82889737736755,-2.9564062162176645,-100.4915972900676,-3.0284177180467986,-99.75974708085121,-44.95614598101764,-145.97466734617396
-1678875090,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.1,3.0,24.94,22.28,56.5,30.6,1009.7,-29.633683592010414,-154.8293544910408,-2.9565058601944716,-100.49139994391197,-3.0282974982539885,-99.75909733609146,-44.95592264641529,-145.98671836709053
-1678875100,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.2,3.0,24.93,22.26,56.4,30.7,1009.6,-29.63303559223498,-154.83010127786142,-2.956508055663236,-100.48996973771868,-3.028467092260183,-99.7591341550962,-44.95555292023752,-145.98659083713403
-1678875110,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.1,2.8,24.94,22.21,56.5,30.7,1009.6,-29.63377331349541,-154.83027050172518,-2.9563958293670893,-100.48984415839797,-3.0284039388560853,-99.76053066464925,-44.956939197373636,-145.98758025646418
-1678875120,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.9,2.8,24.93,22.21,56.5,30.7,1009.6,-29.633331306919853,-154.82950216326077,-2.956588947049492,-100.49026055806962,-3.028369231114395,-99.75994109557176,-44.95499540596464,-145.98604320774913
-1678875130,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.5,2.9,24.93,22.14,56.4,30.8,1009.7,-29.63336611322346,-154.83033181912538,-2.9564065641990185,-100.489556453903,-3.028465527785449,-99.76012374851746,-44.954256797103,-145.9770163736102
-1678875140,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.2,3.2,24.93,22.14,56.4,30.8,1009.6,-29.63328310284129,-154.82965053586875,-2.956543706506114,-100.48902998642495,-3.028444052048421,-99.75951689561846,-44.95437628348946,-145.97812239137457
-1678875150,25.0,25.0,55.0,55.0,0,1300000000,,,3,4.4,3.7,24.94,22.11,56.4,30.8,1009.6,-29.633224063783494,-154.8304195696864,-2.956303496521746,-100.489452357302,-3.0284395904630843,-99.75837439115101,-44.951198075050954,-145.97618408305922
-1678875160,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.9,3.1,24.93,22.08,56.3,30.9,1009.6,-29.63316325335562,-154.83081517559984,-2.9565305701172035,-100.48940841583305,-3.0285629320197365,-99.75903549870628,-44.955341184511006,-145.96596808451665
-1678875170,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,2.5,24.94,22.05,56.3,31.0,1009.6,-29.632545191081185,-154.83204728235836,-2.9564420219620935,-100.48945035529802,-3.02864409515228,-99.75905719368757,-44.95190371808115,-145.98843606774528
-1678875180,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.1,2.9,24.93,22.04,56.3,31.0,1009.6,-29.633215541250266,-154.8326492895246,-2.9566703464347333,-100.48997572538794,-3.028462071786036,-99.75847488063812,-44.950517353604965,-145.99257942352008
-1678875190,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,3.0,24.93,22.05,56.4,31.0,1009.6,-29.63301407636015,-154.8320465575332,-2.956456078039365,-100.49018501619183,-3.0285248496766726,-99.75907084217208,-44.95104507048474,-145.99141467967834
-1678875200,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.7,3.2,24.93,22.06,56.4,31.0,1009.6,-29.63277006446909,-154.8337584158823,-2.9567448408610475,-100.49011066979637,-3.0285013097618965,-99.75828144538617,-44.950543688132726,-146.0077392110501
-1678875210,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.3,3.3,24.91,22.09,56.3,30.9,1009.6,-29.632868749077545,-154.83326172977397,-2.9564966480255968,-100.49093228729605,-3.0284186779330193,-99.75893759798566,-44.94837301696326,-146.01010291327114
-1678875220,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.1,3.4,24.91,22.1,56.3,30.9,1009.6,-29.63212520669054,-154.83231945376681,-2.9564624313543737,-100.49108154892754,-3.028487768263095,-99.75877627113275,-44.950890613420064,-146.0010711151151
-1678875230,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.6,3.0,24.93,22.11,56.3,30.9,1009.6,-29.632668511865855,-154.8342306342413,-2.9564921119763845,-100.49101236400097,-3.02853899614896,-99.75993303068118,-44.95224307322481,-146.00430445408674
-1678875240,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.0,3.3,24.93,22.12,56.3,30.9,1009.7,-29.63282593857286,-154.83241566361593,-2.956531175370713,-100.49146475193855,-3.0286724002892913,-99.75940677608514,-44.95440409201243,-145.98616414814978
-1678875250,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.6,3.4,24.93,22.13,56.3,30.8,1009.6,-29.63227870193462,-154.83596225077503,-2.9563330376138004,-100.49123792816124,-3.028671363194735,-99.75885372065396,-44.95308660327537,-145.994416337894
-1678875260,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.3,3.8,24.94,22.14,56.3,30.8,1009.7,-29.631865821785585,-154.83714151897928,-2.9563526615294125,-100.49078616596367,-3.028414931671946,-99.75839127446619,-44.95019267675195,-146.01478326797027
-1678875270,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.1,2.6,24.96,22.15,56.3,30.8,1009.6,-29.63191268438175,-154.83775298190895,-2.9566002360669463,-100.49032132176133,-3.0285047734442494,-99.75897406359515,-44.94944245710647,-146.01517956050603
-1678875280,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.1,2.5,24.94,22.15,56.3,30.8,1009.6,-29.63149874553536,-154.83798293342434,-2.9562114664093455,-100.49104628676368,-3.02838557116198,-99.75853098672474,-44.95001716425495,-146.02053500997528
-1678875290,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.3,3.0,24.93,22.16,56.3,30.8,1009.6,-29.631379825578716,-154.8382390363791,-2.9563203265179823,-100.49001095504526,-3.0284071516294087,-99.75926812224998,-44.947517518831354,-146.02495256901565
-1678875300,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.4,3.3,24.93,22.16,56.3,30.8,1009.7,-29.63128462174315,-154.837733025497,-2.956353273464049,-100.48960261027912,-3.0283533834466,-99.75813960069739,-44.945327273239926,-146.01812726676397
-1678875310,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.4,3.6,24.93,22.17,56.3,30.8,1009.6,-29.631446216057036,-154.83727024801854,-2.956242639039019,-100.48973180829223,-3.028382266618017,-99.75877500638053,-44.94618123487676,-146.0127273083036
-1678875320,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,3.1,24.93,22.18,56.3,30.8,1009.6,-29.631737978977704,-154.83878849507283,-2.9564944201774814,-100.49000677989842,-3.028327217492164,-99.75876874702425,-44.94530462055023,-146.02046945406846
-1678875330,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.6,3.1,24.94,22.18,56.3,30.8,1009.6,-29.63090510302969,-154.8394062416318,-2.9563689913511304,-100.49013169751166,-3.028379160789579,-99.7584585133159,-44.94963240523005,-146.00432292350962
-1678875340,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.8,2.6,24.93,22.18,56.3,30.8,1009.6,-29.63067686529506,-154.8412899577076,-2.956404578812459,-100.48994608897304,-3.0284919339045047,-99.75931750615761,-44.94731193511127,-146.01833847172014
-1678875350,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.3,2.8,24.91,22.19,56.3,30.8,1009.6,-29.63071755425984,-154.84188003909534,-2.9563299608979268,-100.48983480489899,-3.0285717776445606,-99.75955534076462,-44.94794743740404,-146.00154335040676
-1678875360,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,3.2,24.91,22.19,56.3,30.8,1009.6,-29.63049974784008,-154.84170849508334,-2.956148754081141,-100.4912071544505,-3.028343336161524,-99.75889646962219,-44.950960092546865,-145.9972659496086
-1678875370,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.6,2.6,24.94,22.2,56.3,30.7,1009.6,-29.63047217619127,-154.84312958258198,-2.9562563415593734,-100.49078500192245,-3.0284878255098615,-99.75918690992218,-44.94393907824039,-146.00839234650348
-1678875380,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.9,2.9,24.97,22.23,56.3,30.7,1009.6,-29.63055697672778,-154.84108782369972,-2.9560643842193213,-100.49120248915818,-3.0285322892577238,-99.75843829915127,-44.94888684475519,-146.01720844804663
-1678875390,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.1,2.8,24.93,22.23,56.3,30.7,1009.7,-29.630959367758038,-154.84174837384643,-2.9561253155734306,-100.49130328142923,-3.0284198732930507,-99.7590060068456,-44.943492835537036,-146.02157586879892
-1678875400,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.1,2.9,24.94,22.24,56.3,30.7,1009.7,-29.631045334643034,-154.8415602660672,-2.95630023251677,-100.4903598863961,-3.0284361039110275,-99.75929697244882,-44.94568198624856,-146.00486787040074
-1678875410,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.0,3.2,24.93,22.24,56.3,30.7,1009.7,-29.63026896101066,-154.84341677489675,-2.9562039315455255,-100.48965550658315,-3.0284728581142906,-99.75875703195452,-44.94521459446749,-146.03276674763987
-1678875420,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.0,3.6,24.94,22.25,56.3,30.7,1009.7,-29.62998657179273,-154.84333609879982,-2.95646152747923,-100.4899296360862,-3.0281857932029594,-99.75883081330424,-44.94485969745158,-146.02631901371598
-1678875430,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.3,2.4,24.93,22.26,56.3,30.7,1009.6,-29.629960337966644,-154.84318106269222,-2.9562321818482578,-100.4910199511243,-3.028210375580766,-99.75837792491784,-44.945309637920545,-146.03324811738312
-1678875440,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,2.7,24.93,22.26,56.3,30.7,1009.7,-29.630655917750843,-154.84010230331077,-2.956211053362943,-100.49121722442885,-3.0283851137542745,-99.75880127880087,-44.946330248171606,-146.0128011247901
-1678875450,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.3,3.5,24.91,22.27,56.3,30.7,1009.7,-29.630546418086308,-154.84129306421823,-2.956181541017032,-100.49120928247022,-3.028314197441866,-99.75785711492239,-44.94496828941345,-146.00367756372646
-1678875460,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.9,3.2,24.93,22.27,56.3,30.7,1009.6,-29.63012167947685,-154.84122218133214,-2.9562698937957252,-100.49068012498074,-3.0286656993878984,-99.75712093276199,-44.94394419523459,-146.02203543197447
-1678875470,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.4,3.0,24.91,22.28,56.2,30.7,1009.7,-29.629916112574655,-154.84519674293554,-2.956130058465378,-100.49063128646478,-3.028557480237353,-99.75803373104739,-44.9440081758738,-146.0297707690003
-1678875480,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.4,3.4,24.93,22.29,56.2,30.7,1009.7,-29.629958300120933,-154.84554681339282,-2.95622127363701,-100.49086110734065,-3.0285726754620432,-99.75849531814077,-44.94494346624299,-146.0219305811375
-1678875490,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,3.6,24.93,22.29,56.2,30.7,1009.6,-29.630288184146764,-154.84509692068843,-2.956304303036127,-100.49100367227351,-3.028387840105024,-99.75838116155451,-44.94317012426903,-146.01674781241232
-1678875500,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.6,3.4,24.93,22.3,56.2,30.6,1009.6,-29.63030929266565,-154.8452051112817,-2.956330805144305,-100.49078609903016,-3.0284610072371407,-99.75869566490937,-44.94308252950749,-146.02412858045875
-1678875510,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,2.9,24.91,22.31,56.3,30.6,1009.7,-29.630382183454117,-154.84262134808714,-2.9563080195886586,-100.49126359508271,-3.028484825051157,-99.75902102144279,-44.949918433617114,-146.01852143144174
-1678875520,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.1,3.0,24.91,22.31,56.3,30.6,1009.7,-29.630836271251056,-154.8406993822065,-2.95644822466196,-100.4907096781434,-3.0284044179858034,-99.75985205625011,-44.94887079958921,-146.01006206815117
-1678875530,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.4,2.7,24.91,22.32,56.3,30.6,1009.6,-29.630168091034292,-154.84247592131004,-2.9561731565337244,-100.49207816902768,-3.028375776570527,-99.75909880548984,-44.948753896163964,-146.01200786129698
-1678875540,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.6,3.1,24.91,22.33,56.3,30.6,1009.6,-29.629537864211592,-154.84465794858662,-2.9561665534893615,-100.49141676641356,-3.0285143337495635,-99.75920121131745,-44.94843046400752,-146.01157717415788
-1678875550,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.1,3.7,24.91,22.34,56.3,30.6,1009.6,-29.62978479799101,-154.8439437723777,-2.9561547579734366,-100.49112959909509,-3.0285717880570875,-99.75985462174494,-44.94722737665257,-146.0141261897346
-1678875560,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.0,3.2,24.91,22.34,56.3,30.6,1009.6,-29.62987236772581,-154.84107304919374,-2.9564026556825644,-100.49106906936503,-3.028472447990755,-99.7592366602017,-44.94616973300789,-146.02006224299714
-1678875570,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.9,2.8,24.91,22.34,56.3,30.5,1009.7,-29.630075493893706,-154.84100780227052,-2.9563013093194153,-100.49079063962017,-3.0285175559150317,-99.75994519034892,-44.9461003649825,-146.00123253077345
-1678875580,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.6,3.5,24.93,22.35,56.3,30.6,1009.6,-29.629909372312508,-154.84082496325294,-2.9563717024334357,-100.49130064870113,-3.028413075695518,-99.75969420130586,-44.94373628711976,-146.00760520805244
-1678875590,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.4,3.4,24.93,22.36,56.3,30.5,1009.7,-29.630060975674517,-154.84292680976827,-2.956277735291523,-100.49089212316595,-3.028526196837179,-99.75921029126633,-44.94457545449151,-146.02301503873855
-1678875600,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.1,2.5,24.93,22.38,56.3,30.5,1009.6,-29.629846210078906,-154.8418963874682,-2.9564148484104136,-100.49138363109695,-3.02851602847288,-99.75893062302258,-44.94389628643339,-146.0275476243053
-1678875610,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,2.0,24.94,22.38,56.3,30.5,1009.7,-29.629758316084068,-154.841244404944,-2.956238140132976,-100.49219642492363,-3.0286157484531246,-99.75907821280308,-44.94543405372223,-146.01771837352516
-1678875620,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,3.1,24.93,22.39,56.3,30.5,1009.6,-29.629850746714265,-154.84077891690893,-2.9563015045476204,-100.49128709579502,-3.0286378853581084,-99.76006062904455,-44.94762200114127,-146.00934775345118
-1678875630,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,3.3,24.94,22.4,56.3,30.5,1009.6,-29.629717398384606,-154.84159925760835,-2.956199714913086,-100.49112482479961,-3.0287548036039587,-99.7599487651002,-44.94411693457714,-146.02337777778604
-1678875640,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.9,2.7,24.94,22.4,56.3,30.5,1009.6,-29.62953100005294,-154.84430927460724,-2.956024761992367,-100.49094839773672,-3.0285297486691154,-99.75900860847132,-44.94482086343212,-146.01476912847153
-1678875650,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,3.2,24.91,22.4,56.3,30.5,1009.6,-29.629826138956794,-154.84260114672253,-2.956240190532467,-100.49134025243062,-3.028545524883209,-99.75865598798478,-44.94198296715407,-146.0367911697594
-1678875660,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.6,2.7,24.93,22.41,56.4,30.5,1009.6,-29.629210810475733,-154.84486086590414,-2.9561699019916174,-100.4916192498997,-3.028619742108995,-99.75745565195167,-44.94087876348844,-146.03143224190256
-1678875670,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.7,2.5,24.91,22.42,56.4,30.5,1009.6,-29.62942698621631,-154.84695335847059,-2.9560071988,-100.49179329326176,-3.0286115879175854,-99.75844950887458,-44.94309568105308,-146.02777092197164
-1678875680,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.1,2.8,24.93,22.42,56.4,30.5,1009.7,-29.629147146736923,-154.84485438952532,-2.956117749845043,-100.49082718620653,-3.0285131653139037,-99.7586985013646,-44.94294249102991,-146.0414675654601
-1678875690,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,3.0,24.93,22.44,56.4,30.5,1009.5,-29.62930901963285,-154.84439946026444,-2.956041780936842,-100.4910632438167,-3.0284288851446064,-99.75773724544443,-44.941471898556955,-146.02333960880878
-1678875700,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.3,3.2,24.93,22.44,56.3,30.5,1009.6,-29.6295717305839,-154.84428740091525,-2.956185430457952,-100.49155274635373,-3.0285266293692032,-99.75777259985516,-44.940283465900876,-146.02629132300518
-1678875710,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,3.4,24.93,22.46,56.3,30.5,1009.6,-29.629354013576886,-154.84278996036088,-2.9561192741510256,-100.49111176328293,-3.028670761819174,-99.75684670538766,-44.94063306375437,-146.01921619720721
-1678875720,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.6,2.8,24.96,22.46,56.3,30.4,1009.7,-29.62950914164296,-154.8427507858434,-2.9561538763328516,-100.49063099133619,-3.02858905473312,-99.75600096762844,-44.93923035769532,-146.03782516698925
-1678875730,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.1,2.8,24.94,22.47,56.3,30.4,1009.6,-29.629738520474408,-154.84337577296046,-2.9564574946209206,-100.49105398741636,-3.0284390078197063,-99.75632079528059,-44.94023042366423,-146.04455052392126
-1678875740,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,2.6,24.96,22.48,56.4,30.4,1009.6,-29.62954143262938,-154.84337481578805,-2.956154302721658,-100.49051311779928,-3.028585238659483,-99.75702515691779,-44.939417700139764,-146.02864783438812
-1678875750,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.2,3.3,24.96,22.48,56.4,30.4,1009.5,-29.629104876827547,-154.84479211929605,-2.956147992656162,-100.49014448733259,-3.028604738253396,-99.75658825453164,-44.940950576192485,-146.0274926874321
-1678875760,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.1,2.7,24.93,22.49,56.4,30.4,1009.5,-29.62907413320568,-154.84423065856745,-2.9561075001534096,-100.490477331132,-3.0288856661713974,-99.75623847879716,-44.941494207713134,-146.01424077775403
-1678875770,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.0,2.4,24.93,22.5,56.4,30.4,1009.7,-29.629119912350667,-154.84371673253386,-2.9564033208235063,-100.48952528446213,-3.0286609985278585,-99.75651885636877,-44.94132343271018,-146.04498203096082
-1678875780,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.3,2.7,24.94,22.51,56.4,30.3,1009.6,-29.629299790133356,-154.84426138523543,-2.95619701372789,-100.48929224676526,-3.0289203024904587,-99.75581163044284,-44.93757718228002,-146.03256815224722
-1678875790,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.2,2.8,24.96,22.53,56.4,30.4,1009.7,-29.629611402404148,-154.84456802918737,-2.956143354557495,-100.48984428159935,-3.0289220225374605,-99.75640565504781,-44.94277511552711,-146.01767374943125
-1678875800,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.0,2.6,24.97,22.53,56.4,30.3,1009.6,-29.629647113892645,-154.8410196770657,-2.956371653919789,-100.48912626515195,-3.028822649573338,-99.75634171738581,-44.94170552405094,-146.02175208424669
-1678875810,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.4,2.5,24.94,22.55,56.4,30.4,1009.6,-29.62901442111039,-154.8460584525206,-2.956231163334377,-100.48905701403622,-3.0288264615311173,-99.756087491133,-44.93798145460027,-146.03661918765357
-1678875820,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.5,2.7,24.96,22.55,56.4,30.3,1009.6,-29.629011054899085,-154.84540185682263,-2.9563882513553437,-100.48779398142251,-3.028567212411799,-99.75614684481701,-44.93763598372838,-146.03920199275896
-1678875830,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.3,2.8,24.96,22.55,56.4,30.3,1009.7,-29.629476294462137,-154.84406437997976,-2.9562058400941282,-100.48836438416924,-3.028630302682647,-99.75744995534409,-44.93930755253235,-146.0235838172616
-1678875840,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.3,2.1,24.93,22.55,56.4,30.3,1009.6,-29.62898293168472,-154.8434076049599,-2.956255918598168,-100.48848913410423,-3.0287028940783935,-99.75727645168799,-44.941262788397154,-146.02231831818006
-1678875850,25.0,25.0,55.0,55.0,0,1300000000,,,3,8.3,2.5,24.93,22.55,56.3,30.3,1009.5,-29.629241409280986,-154.84556256291174,-2.9560186893361347,-100.48906114076354,-3.0288274938822317,-99.75716108858394,-44.9403044394481,-146.02621355554095
-1678875860,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.0,3.1,24.93,22.55,56.3,30.3,1009.6,-29.629380625443336,-154.8452879953852,-2.956043151902255,-100.48983059741091,-3.0289008272051836,-99.75681213240448,-44.94220964582256,-146.02950991715775
-1678875870,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.1,2.9,24.93,22.55,56.3,30.3,1009.7,-29.62940375613746,-154.8425037115025,-2.95621105748256,-100.49007909826298,-3.0288040545381065,-99.75618231822135,-44.93892280033289,-146.04265029439185
-1678875880,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.8,3.2,24.93,22.55,56.3,30.3,1009.6,-29.629622717088093,-154.84284103047736,-2.9562345515091133,-100.48955477282627,-3.028718300657975,-99.75710394482914,-44.943544151020056,-146.0219132318051
-1678875890,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.7,3.0,24.96,22.55,56.3,30.2,1009.6,-29.629562984663256,-154.8433682141384,-2.9560905453467217,-100.48951359893572,-3.0287745670075,-99.75624224435794,-44.94299689341307,-146.0185436048857
-1678875900,25.0,25.0,55.0,55.0,0,1300000000,,,3,5.7,3.2,24.94,22.56,56.3,30.2,1009.6,-29.630135103692602,-154.84258715751653,-2.9561338214333777,-100.48881415293408,-3.028724485456638,-99.75697295090119,-44.942922860787,-146.0079321504472
-1678875910,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.8,2.8,24.96,22.57,56.3,30.2,1009.6,-29.63015267487193,-154.8411477254405,-2.9560975901543745,-100.488554225944,-3.028734999461143,-99.75728171700676,-44.94421501710604,-145.99602843666167
-1678875920,25.0,25.0,55.0,55.0,0,1300000000,,,3,7.1,2.8,24.96,22.56,56.3,30.2,1009.6,-29.629928468294757,-154.8431628346481,-2.9561737803615165,-100.48884287970465,-3.028775044644472,-99.75655389621605,-44.94399584124664,-146.0093090819899
-1678875930,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.6,2.6,24.97,22.56,56.2,30.2,1009.6,-29.63038502640126,-154.83923014814556,-2.956262695175483,-100.48863758227294,-3.028599167057395,-99.75643068679861,-44.94264613984372,-146.0162741119358
-1678875940,25.0,25.0,55.0,55.0,0,1300000000,,,3,6.9,3.1,24.97,22.55,56.3,30.2,1009.5,-29.630256819599914,-154.8405247652968,-2.956159055943165,-100.48815310547873,-3.0288695827953296,-99.75743578892022,-44.94117324765665,-146.01638161355663
-1678875950,25.0,25.0,55.0,55.0,0,1300000000,,,15,7.3,2.8,24.96,22.55,56.2,30.2,1009.6,-29.62999144952141,-154.84114159063876,-2.956185846785031,-100.48836562276014,-3.0287693080927047,-99.7573272780912,-44.93945263726515,-146.0247743528759
-1678875956,25.0,25.0,55.0,55.0,0,1300000000,,,31,6.5,2.8,24.94,22.55,56.2,30.2,1009.6,-29.629703313699277,-154.84173490310175,-2.9561398071691345,-100.48820658800017,-3.028585531222336,-99.75658024695836,-44.93793548932744,-146.02428532630975
-1678875962,25.0,25.0,55.0,55.0,0,1300000000,,,31,6.1,3.6,24.94,22.55,56.2,30.3,1009.6,-29.629408963680234,-154.84381273695476,-2.956078663709851,-100.48763680340215,-3.0288805745046172,-99.75542414078998,-44.93711657361925,-146.03381386535415
-1678875970,25.0,25.0,55.0,55.0,0,1300000000,,,31,6.4,3.2,24.94,22.55,56.2,30.3,1009.6,-29.629732756012586,-154.84219798541827,-2.9560811244154612,-100.48754882633033,-3.028838208180422,-99.75646771291426,-44.937497282110435,-146.03207351052365
-1678875980,25.0,25.0,55.0,55.0,0,1300000000,,,31,7.5,3.3,24.93,22.55,56.2,30.3,1009.6,-29.630209411365126,-154.83865580290697,-2.956230805218088,-100.48842746354288,-3.028743760529326,-99.75683984694494,-44.94159278794303,-146.02640498627136
-1678875990,25.0,25.0,55.0,55.0,0,1300000000,,,31,7.5,3.3,24.96,22.55,56.2,30.3,1009.6,-29.630072642705866,-154.840071596754,-2.9563340678421834,-100.4883628277739,-3.0285929530594666,-99.75675829115426,-44.93894214744394,-146.0354791514348
-1678876000,25.0,25.0,55.0,55.0,0,1300000000,,,31,6.9,2.8,24.96,22.55,56.2,30.4,1009.6,-29.630368835945227,-154.83762911569823,-2.9562066476798448,-100.48846649931856,-3.0285741997049094,-99.75790631246707,-44.93813002220528,-146.02608041037158
-1678876010,25.0,25.0,55.0,55.0,0,1300000000,,,31,7.2,2.7,24.94,22.53,56.2,30.4,1009.6,-29.630457860413017,-154.8395155692138,-2.9563393444605794,-100.48895924749668,-3.028586476992504,-99.75770597392155,-44.940977825350146,-146.05196057473438
-1678876020,25.0,25.0,55.0,55.0,0,1300000000,,,31,5.1,2.6,24.94,22.5,56.3,30.4,1009.7,-29.630340407644663,-154.83810812382941,-2.956428937517659,-100.48891328323803,-3.0283911498712723,-99.75826384745085,-44.9395988712309,-146.0373183902944
-1678876030,25.0,25.0,55.0,55.0,0,1300000000,,,31,5.8,2.9,24.93,22.49,56.3,30.4,1009.6,-29.630603913820384,-154.8378806703392,-2.9562627199393714,-100.48897254175812,-3.0284048291397503,-99.75787557449493,-44.93840546004685,-146.03172977795916
-1678876040,25.0,25.0,55.0,55.0,0,1300000000,,,31,6.2,3.2,24.94,22.47,56.2,30.5,1009.6,-29.631577888963957,-154.83542641591185,-2.9563108589314275,-100.48930479179775,-3.0284033984339715,-99.75837808808687,-44.942620736864704,-146.0221897279773
-1678876050,25.0,25.0,55.0,55.0,0,1300000000,,,31,7.1,3.0,24.93,22.45,56.2,30.5,1009.6,-29.631217889041128,-154.83565295529095,-2.9563372022963863,-100.48886016944313,-3.0285491258658013,-99.75824454517848,-44.94261566584711,-146.0271233272704
-1678876060,25.0,25.0,55.0,55.0,0,1300000000,,,31,7.1,3.2,24.96,22.44,56.3,30.5,1009.6,-29.631508161798074,-154.8352339054594,-2.956188314016577,-100.48877933945376,-3.028563638228397,-99.75866527896507,-44.943425231964895,-145.9974877673639
-1678876070,25.0,25.0,55.0,55.0,0,1300000000,,,31,5.7,3.0,24.94,22.42,56.2,30.5,1009.6,-29.631436588030514,-154.83536316809352,-2.956132061284155,-100.48845819070002,-3.0285908651113895,-99.75900732548826,-44.94481372433337,-145.99873306190017
-1678876080,25.0,25.0,55.0,55.0,0,1300000000,,,31,6.5,2.5,24.97,22.41,56.3,30.5,1009.5,-29.631837948585957,-154.83702851570004,-2.956327194450461,-100.48876480639203,-3.0286169902745916,-99.75911648876787,-44.94308796275749,-145.99908178420955
-1678876090,25.0,25.0,55.0,55.0,0,1300000000,,,31,6.9,2.8,24.94,22.39,56.3,30.6,1009.6,-29.63177327406295,-154.83391866853253,-2.956250850740138,-100.48856563465019,-3.0285778418389815,-99.75923442509595,-44.94520699821736,-145.99252089454822
-1678876100,25.0,25.0,55.0,55.0,0,1300000000,,,31,6.8,3.2,24.94,22.38,56.3,30.6,1009.6,-29.631431920036132,-154.8361374330909,-2.956214559913745,-100.48896210298808,-3.0285330735849234,-99.75888017377564,-44.94279765721852,-146.0105683682888
-1678876110,25.0,25.0,55.0,55.0,0,1300000000,,,31,6.6,3.0,24.94,22.35,56.3,30.6,1009.5,-29.631736856748798,-154.8334255203843,-2.9562666469524816,-100.48941541643332,-3.028566962188509,-99.75884810383693,-44.947549361763876,-145.99451605855896
-1678876120,25.0,25.0,55.0,55.0,0,1300000000,,,31,7.6,3.8,24.96,22.34,56.2,30.7,1009.6,-29.631743549260033,-154.83322529454142,-2.9563418088626205,-100.48952289744248,-3.0285397882351783,-99.75900038656586,-44.94754172862052,-145.99866127118116
-1678876130,25.0,25.0,55.0,55.0,0,1300000000,,,31,7.4,2.7,24.93,22.32,56.2,30.7,1009.6,-29.6316993376794,-154.8343304563303,-2.9563659278385805,-100.4893065170293,-3.0282607358734075,-99.75987164901221,-44.94174275370959,-146.01338736018673
-1678876140,25.0,25.0,55.0,55.0,0,1300000000,,,31,6.9,3.0,24.91,22.31,56.2,30.7,1009.6,-29.632404421101125,-154.83393151926836,-2.956377991619349,-100.49013892155376,-3.0282563157596663,-99.76037199639032,-44.94416482528742,-145.9979443295627
diff --git a/Python_script/TestData_JBY240_/2023_03_15-05_25_42_results_30.0deg_55.0rh.csv b/Python_script/TestData_JBY240_/2023_03_15-05_25_42_results_30.0deg_55.0rh.csv
deleted file mode 100644
index 332eaa77a992879a84179b31127cbfc23fa8a6df..0000000000000000000000000000000000000000
--- a/Python_script/TestData_JBY240_/2023_03_15-05_25_42_results_30.0deg_55.0rh.csv
+++ /dev/null
@@ -1,2201 +0,0 @@
-TIMESTAMP,TARGET_TEMPERATURE,READBACK_TEMPERATURE,TARGET_HUMIDITY,READBACK_HUMIDITY,RF_POWER,RF_FREQUENCY,DUT_IDENTIFIER,RUN_ID,EQUILIBRIUM_INDICATOR,TEMP_MEAS_INSTR,HUM_MEAS_INSTR,TEMP_DUT,TEMP_ROOM,HUM_DUT,HUM_ROOM,AIR_PRESS_ROOM,S11_MAGNITUDE,S11_PHASE,S12_MAGNITUDE,S12_PHASE,S21_MAGNITUDE,S21_PHASE,S22_MAGNITUDE,S22_PHASE
-1678876151,30.0,25.0,55.0,55.0,0,1300000000,,,2,100.0,3.5,24.93,22.29,56.3,30.7,1009.5,-29.632064796405913,-154.83501814017137,-2.956297585702935,-100.48939222785026,-3.028358563960242,-99.7606104978576,-44.94405648982466,-146.00219593180927
-1678876161,30.0,25.3,55.0,53.0,0,1300000000,,,0,63.6,16.9,25.0,22.29,56.2,30.7,1009.5,-29.632024509571767,-154.82489439196243,-2.9572931120883417,-100.47081774702211,-3.028806387045544,-99.74565067443686,-44.92137611836594,-146.0464888805058
-1678876171,30.0,26.4,55.0,49.0,0,1300000000,,,0,52.5,45.4,25.36,22.27,56.1,30.7,1009.5,-29.63234500436777,-154.8114107391367,-2.9588694712513073,-100.41977392658715,-3.0303829893665464,-99.69740293279432,-44.86289261982606,-146.08007760159205
-1678876181,30.0,27.7,55.0,45.0,0,1300000000,,,0,40.9,57.4,26.0,22.27,55.0,30.8,1009.5,-29.628675222782594,-154.8263805971291,-2.9614090245821147,-100.35073572983954,-3.0330958468929508,-99.62969302415726,-44.791437284338514,-146.29012531236532
-1678876191,30.0,28.8,55.0,42.0,0,1300000000,,,0,34.8,53.8,26.43,22.26,54.5,30.8,1009.5,-29.620564824597217,-154.8296560959248,-2.9641540690531567,-100.27894051322124,-3.0357763434134677,-99.55695120245456,-44.73706825951951,-146.5197946111219
-1678876201,30.0,29.5,55.0,41.0,0,1300000000,,,0,30.7,44.6,27.21,22.26,53.4,30.8,1009.5,-29.612971759492673,-154.84641256277936,-2.966964919826078,-100.21013270442398,-3.038381749289641,-99.48835987207929,-44.67816085684345,-146.7721181504319
-1678876211,30.0,30.0,55.0,41.0,0,1300000000,,,1,25.9,34.8,27.55,22.25,53.3,30.8,1009.5,-29.60678807746548,-154.87397156213964,-2.9691464731804817,-100.14935010463677,-3.040994530062855,-99.42547194784885,-44.62385266422788,-147.031636689433
-1678876221,30.0,30.2,55.0,42.0,0,1300000000,,,0,26.3,25.2,28.01,22.25,53.8,30.8,1009.5,-29.60055697856051,-154.8999169429769,-2.97132496332285,-100.09566024436842,-3.0433873666338074,-99.37193733074646,-44.57842885315586,-147.24253913018853
-1678876231,30.0,30.3,55.0,43.0,0,1300000000,,,0,22.8,18.1,28.26,22.25,54.5,30.8,1009.5,-29.593415332900854,-154.9251807979536,-2.973325076891607,-100.04883623897274,-3.04508338790813,-99.32377280592199,-44.536889280999084,-147.5123713729355
-1678876241,30.0,30.3,55.0,44.0,0,1300000000,,,0,24.3,12.5,28.4,22.26,55.4,30.8,1009.6,-29.58882283537656,-154.94341012042088,-2.9750040429560443,-100.00838218289199,-3.0468255099939827,-99.28213402031561,-44.49904275552771,-147.67041288795116
-1678876251,30.0,30.3,55.0,46.0,0,1300000000,,,0,22.8,8.4,28.5,22.26,56.0,30.8,1009.5,-29.585901246856835,-154.96120635133394,-2.9763288575568025,-99.97223807665372,-3.048489334635542,-99.24481024674992,-44.45741693742971,-147.7853441896325
-1678876261,30.0,30.2,55.0,47.0,0,1300000000,,,0,20.9,5.6,28.61,22.27,56.9,30.8,1009.5,-29.582391259608208,-154.9724934019295,-2.9778272286753786,-99.93911496634654,-3.049664231523063,-99.21264165954909,-44.42789806176911,-147.9236795391207
-1678876271,30.0,30.2,55.0,49.0,0,1300000000,,,0,20.6,3.8,28.72,22.27,57.5,30.8,1009.5,-29.579168442051397,-154.9844695016481,-2.979023731719099,-99.91033129201429,-3.0509332116992685,-99.18361687117718,-44.40251544316487,-148.00712623731656
-1678876281,30.0,30.2,55.0,50.0,0,1300000000,,,0,20.4,2.3,28.83,22.27,58.0,30.7,1009.4,-29.57538818770349,-154.99964977465933,-2.9801324645426637,-99.88541707354135,-3.0521684853065345,-99.15770523552966,-44.37954488263102,-148.14118291356013
-1678876291,30.0,30.2,55.0,51.0,0,1300000000,,,0,17.9,2.3,28.86,22.27,58.2,30.7,1009.4,-29.572322522288236,-155.01106430769508,-2.9810521983591443,-99.86289711379092,-3.0532163107199546,-99.13410656643437,-44.3613839250705,-148.24156241355885
-1678876301,30.0,30.2,55.0,51.0,0,1300000000,,,0,18.4,1.7,28.94,22.27,58.6,30.8,1009.4,-29.56982018483958,-155.01704106578316,-2.982033007342692,-99.8411671373682,-3.0540356549397862,-99.11301822622859,-44.34157343743502,-148.3176582662517
-1678876311,30.0,30.2,55.0,52.0,0,1300000000,,,0,17.8,1.2,29.0,22.27,58.8,30.7,1009.4,-29.56706621472702,-155.0225125720974,-2.98272549423935,-99.82301330608895,-3.0549616606008496,-99.09366214300049,-44.32764254805727,-148.38948456419595
-1678876321,30.0,30.1,55.0,53.0,0,1300000000,,,1,17.8,0.5,29.08,22.27,58.8,30.7,1009.5,-29.565188891782714,-155.0261533423891,-2.9835594036004,-99.80621152771913,-3.055691579352718,-99.0775771604206,-44.31384267166359,-148.43661723918513
-1678876331,30.0,30.1,55.0,53.0,0,1300000000,,,1,16.9,0.1,29.14,22.27,58.9,30.7,1009.5,-29.56297529503908,-155.0336446225497,-2.984167203412169,-99.79197419129422,-3.056311002419583,-99.06252364911643,-44.29575713701781,-148.50748379023986
-1678876341,30.0,30.1,55.0,54.0,0,1300000000,,,3,16.5,0.5,29.16,22.27,59.0,30.7,1009.5,-29.562234171592607,-155.04144951642098,-2.984915157363217,-99.77931192982037,-3.056842227858438,-99.04889088348895,-44.284764720051925,-148.52716006002376
-1678876351,30.0,30.1,55.0,54.0,0,1300000000,,,3,15.9,0.0,29.22,22.28,59.0,30.7,1009.6,-29.561557175528893,-155.04442621100443,-2.9856108474319054,-99.76588806648688,-3.057362182874016,-99.0359286101216,-44.2675631926014,-148.5565215109972
-1678876361,30.0,30.1,55.0,54.0,0,1300000000,,,3,14.9,1.0,29.26,22.28,58.9,30.7,1009.5,-29.56009943146299,-155.04509174727153,-2.986087006919827,-99.75510353571399,-3.058156437847446,-99.02514321180921,-44.26161133076476,-148.5964845216386
-1678876371,30.0,30.1,55.0,54.0,0,1300000000,,,3,15.4,0.7,29.3,22.28,58.8,30.7,1009.5,-29.558796363095702,-155.04947690510818,-2.9866234121250375,-99.74633849413118,-3.0584989388363644,-99.01575764881376,-44.24970606655735,-148.62341792822585
-1678876381,30.0,30.1,55.0,54.0,0,1300000000,,,3,15.6,1.4,29.34,22.28,58.7,30.7,1009.4,-29.557594935974812,-155.0524405029823,-2.9868919603646757,-99.7371077967461,-3.059064645683662,-99.00745957019083,-44.242268618656766,-148.63631133497123
-1678876391,30.0,30.1,55.0,54.0,0,1300000000,,,3,15.7,1.4,29.36,22.29,58.6,30.7,1009.5,-29.55589539144302,-155.05530582391776,-2.9872072029807235,-99.72886843650926,-3.0594065671759454,-98.99788401602993,-44.232502676964955,-148.67453056019994
-1678876401,30.0,30.1,55.0,54.0,0,1300000000,,,3,17.0,1.8,29.41,22.29,58.4,30.7,1009.4,-29.55481176034001,-155.05199008040503,-2.9877601452248848,-99.72201536750424,-3.0599311195841503,-98.99078545748769,-44.2321756340253,-148.69233699418658
-1678876411,30.0,30.1,55.0,54.0,0,1300000000,,,3,15.3,2.9,29.44,22.3,58.4,30.7,1009.5,-29.554265906991652,-155.05381886097223,-2.9881198625753465,-99.71503347107091,-3.060152487520795,-98.98375863681545,-44.225001362529,-148.68158988350095
-1678876421,30.0,30.1,55.0,54.0,0,1300000000,,,3,16.2,2.3,29.48,22.3,58.1,30.7,1009.5,-29.55284993654439,-155.0578516817458,-2.988234417753116,-99.70802415223326,-3.0603849739080626,-98.97785030449135,-44.2157985124782,-148.70652222973263
-1678876431,30.0,30.1,55.0,54.0,0,1300000000,,,3,15.3,2.9,29.51,22.3,58.0,30.7,1009.6,-29.55205703377905,-155.05794636000712,-2.988730523132031,-99.70301155881917,-3.060686854926443,-98.97314580891494,-44.21110470507364,-148.711282410691
-1678876441,30.0,30.0,55.0,54.0,0,1300000000,,,3,13.5,2.9,29.54,22.31,57.9,30.7,1009.5,-29.551737093425913,-155.0595457118551,-2.988854771684075,-99.69778602554806,-3.06098490994912,-98.96814787941437,-44.209098358333314,-148.70665323088352
-1678876451,30.0,30.0,55.0,54.0,0,1300000000,,,3,13.8,3.1,29.57,22.31,57.8,30.7,1009.5,-29.550811113341844,-155.05956503055435,-2.9893025323395856,-99.6930254552549,-3.0610476310087593,-98.96313030724276,-44.20057765907047,-148.74451698628684
-1678876461,30.0,30.1,55.0,54.0,0,1300000000,,,3,13.2,3.2,29.61,22.32,57.7,30.7,1009.6,-29.550272772452626,-155.06036849104956,-2.9894877564070192,-99.68931423703911,-3.0614586201498635,-98.95811684033215,-44.19649370372742,-148.73487900689258
-1678876471,30.0,30.0,55.0,54.0,0,1300000000,,,3,12.5,3.0,29.62,22.33,57.6,30.7,1009.5,-29.55037211935113,-155.05778597942052,-2.989835864867686,-99.68525757345482,-3.0615316337604574,-98.9551369051416,-44.193843153169674,-148.74268229998847
-1678876481,30.0,30.0,55.0,54.0,0,1300000000,,,3,14.6,2.2,29.65,22.34,57.5,30.7,1009.5,-29.549398555721424,-155.06059032105108,-2.9899468096406387,-99.68229327014106,-3.062166354917546,-98.95162458139309,-44.19359518708595,-148.7542786994125
-1678876491,30.0,30.0,55.0,54.0,0,1300000000,,,3,13.6,2.5,29.65,22.34,57.5,30.7,1009.5,-29.548378628032754,-155.05939296211375,-2.990074137707225,-99.67964544047375,-3.062142201777866,-98.94853583346479,-44.18829332399337,-148.76263625669506
-1678876501,30.0,30.0,55.0,54.0,0,1300000000,,,3,13.3,3.2,29.66,22.34,57.4,30.7,1009.5,-29.54824204756441,-155.0571501883317,-2.9901187541721175,-99.67676660569538,-3.062386082810098,-98.94613335011712,-44.18895703980016,-148.7422049816723
-1678876511,30.0,30.0,55.0,54.0,0,1300000000,,,3,12.1,4.0,29.69,22.35,57.3,30.7,1009.6,-29.547631862919378,-155.05545907711058,-2.990690213834119,-99.67385327282351,-3.0624882755030054,-98.94413753338148,-44.18783367794597,-148.75062790324512
-1678876521,30.0,30.1,55.0,54.0,0,1300000000,,,3,12.8,3.4,29.72,22.36,57.2,30.7,1009.5,-29.54730254389414,-155.0556781424166,-2.990765385911379,-99.67169064020892,-3.062620831755951,-98.9416494875204,-44.183092454187374,-148.76117748942744
-1678876531,30.0,30.0,55.0,54.0,0,1300000000,,,3,12.2,3.5,29.72,22.38,57.2,30.7,1009.5,-29.54720900917173,-155.0535073102281,-2.9907634747790275,-99.67134808040915,-3.06282839614802,-98.93988031712766,-44.18607825407814,-148.7289994143806
-1678876541,30.0,30.0,55.0,54.0,0,1300000000,,,3,12.2,2.9,29.72,22.39,57.1,30.7,1009.4,-29.547003822184486,-155.05266773908434,-2.9909704803329906,-99.66936567751792,-3.0628749199416525,-98.9396008881898,-44.18479311629721,-148.7211714050345
-1678876551,30.0,30.0,55.0,54.0,0,1300000000,,,3,13.1,3.6,29.73,22.4,57.1,30.6,1009.5,-29.546805229333806,-155.05356326060294,-2.990979944019786,-99.6677365523615,-3.0629671428787035,-98.93773682380078,-44.18098844803298,-148.71839762407237
-1678876561,30.0,30.0,55.0,54.0,0,1300000000,,,3,12.6,3.8,29.76,22.4,57.0,30.6,1009.5,-29.546954097018656,-155.05238166381992,-2.991225767440989,-99.66620603111312,-3.0631024060517826,-98.93639117017592,-44.17921204346584,-148.72782799219834
-1678876571,30.0,30.0,55.0,54.0,0,1300000000,,,3,11.5,4.0,29.76,22.41,57.0,30.6,1009.5,-29.54663653573196,-155.05086304660986,-2.99136882256527,-99.66466867928565,-3.0631629042679416,-98.93548134358082,-44.180576871592585,-148.70634304764766
-1678876581,30.0,30.0,55.0,54.0,0,1300000000,,,3,12.2,4.0,29.78,22.41,56.9,30.6,1009.4,-29.546212229585194,-155.0504260520358,-2.9914069731618675,-99.66315662794713,-3.0632375758168817,-98.93387858677589,-44.17710824301503,-148.7109231683917
-1678876591,30.0,30.0,55.0,54.0,0,1300000000,,,3,12.2,4.0,29.78,22.42,56.9,30.6,1009.5,-29.54569435818051,-155.0496281855324,-2.9913650823424085,-99.66248588281987,-3.0635510502920873,-98.93384876044827,-44.17604988272339,-148.71174835271742
-1678876601,30.0,30.0,55.0,54.0,0,1300000000,,,3,13.6,3.3,29.79,22.43,56.9,30.6,1009.5,-29.54609108235331,-155.04800538674337,-2.991435143412094,-99.66153018440723,-3.0634659797921024,-98.93380340262682,-44.17730918944113,-148.68766011769705
-1678876611,30.0,30.0,55.0,54.0,0,1300000000,,,3,13.0,3.5,29.79,22.43,56.8,30.6,1009.4,-29.546084386705772,-155.04324996033026,-2.9915498571132773,-99.66181060781783,-3.063681409231082,-98.93256614846422,-44.17753579233523,-148.68339803878027
-1678876621,30.0,30.0,55.0,54.0,0,1300000000,,,3,14.2,4.2,29.79,22.44,56.8,30.6,1009.5,-29.546073157659404,-155.04365701604888,-2.9915998295306667,-99.66169711429221,-3.0636358708731297,-98.93243121292014,-44.17832762721771,-148.67608582695553
-1678876631,30.0,30.0,55.0,54.0,0,1300000000,,,3,11.4,4.5,29.8,22.45,56.8,30.6,1009.5,-29.545522530486483,-155.04157595067164,-2.9915927890509635,-99.66063831590513,-3.063717630202902,-98.93089943767743,-44.174929120513504,-148.67669014068764
-1678876641,30.0,30.0,55.0,54.0,0,1300000000,,,3,10.9,4.8,29.83,22.46,56.8,30.6,1009.5,-29.545586079223423,-155.03904262886866,-2.9918151396602055,-99.65871760617628,-3.063932926737849,-98.93059748713868,-44.17374268054581,-148.6624327975524
-1678876651,30.0,30.0,55.0,54.0,0,1300000000,,,3,12.2,3.8,29.84,22.46,56.8,30.5,1009.5,-29.545281591769097,-155.03909796366077,-2.991950754757122,-99.65901158784754,-3.0640600281787123,-98.92989213874996,-44.17110782473861,-148.6652359124523
-1678876661,30.0,30.0,55.0,54.0,0,1300000000,,,3,11.8,4.0,29.86,22.47,56.7,30.5,1009.5,-29.544779211570983,-155.04127524945832,-2.991821164127184,-99.65907898167929,-3.0640005620709863,-98.92896226698586,-44.1725509548413,-148.6515478538142
-1678876671,30.0,30.0,55.0,54.0,0,1300000000,,,3,11.2,4.5,29.86,22.47,56.7,30.5,1009.5,-29.545185390052687,-155.03798769349842,-2.992181734868346,-99.65896770876155,-3.063904861792659,-98.92853597201886,-44.172369102618426,-148.63574015986455
-1678876681,30.0,30.0,55.0,54.0,0,1300000000,,,3,11.1,4.6,29.86,22.48,56.7,30.5,1009.4,-29.54501904034517,-155.03811534616105,-2.9919821729481395,-99.65815317155209,-3.063913634395643,-98.92828097809372,-44.17308220694675,-148.63522371584492
-1678876691,30.0,30.0,55.0,54.0,0,1300000000,,,3,10.0,4.0,29.87,22.48,56.7,30.5,1009.4,-29.545075195381468,-155.03486130679354,-2.9919958410719314,-99.65924471625239,-3.0640298658278144,-98.92732843928718,-44.17424508418413,-148.63785168578147
-1678876701,30.0,30.0,55.0,54.0,0,1300000000,,,3,12.7,3.6,29.89,22.49,56.7,30.5,1009.5,-29.54525949937169,-155.03292869092647,-2.9922010727048862,-99.65889668138263,-3.0638824141490053,-98.92770318459405,-44.17330431985956,-148.62054122767015
-1678876711,30.0,30.0,55.0,54.0,0,1300000000,,,3,9.9,4.2,29.9,22.49,56.8,30.5,1009.5,-29.54493848740638,-155.03478896868637,-2.9921334642803226,-99.65736917304635,-3.0640681587300493,-98.92784550506428,-44.171762381028444,-148.61886560848768
-1678876721,30.0,30.0,55.0,54.0,0,1300000000,,,3,11.2,4.0,29.9,22.5,56.8,30.5,1009.5,-29.544977666795212,-155.0310956948177,-2.992224759340453,-99.65715366137267,-3.064187404787515,-98.928049342788,-44.17352195403179,-148.59562504304253
-1678876731,30.0,30.0,55.0,54.0,0,1300000000,,,3,12.9,3.8,29.9,22.51,56.8,30.5,1009.5,-29.544843749459808,-155.0305799237642,-2.9922613188104146,-99.65834971080572,-3.064320430399489,-98.92803051036516,-44.17356219533911,-148.5779850399934
-1678876741,30.0,30.0,55.0,54.0,0,1300000000,,,3,10.9,3.9,29.9,22.54,56.8,30.5,1009.5,-29.544736941205816,-155.02562181139004,-2.9923329923680275,-99.65777656156669,-3.064342282424335,-98.92844981127553,-44.176029270986945,-148.57958199659734
-1678876751,30.0,30.0,55.0,54.0,0,1300000000,,,3,11.7,4.4,29.9,22.55,56.8,30.5,1009.5,-29.544550573915135,-155.02712188406622,-2.9923168662872324,-99.65765079355796,-3.0642447861880817,-98.92834495441154,-44.17199829084973,-148.57797721034137
-1678876761,30.0,30.0,55.0,54.0,0,1300000000,,,3,11.0,4.4,29.9,22.55,56.8,30.5,1009.6,-29.544434147315187,-155.02552624702244,-2.9923223921125897,-99.65760061749465,-3.06433657286306,-98.92843594933214,-44.17810900531273,-148.55670791919465
-1678876771,30.0,30.0,55.0,55.0,0,1300000000,,,3,11.4,4.1,29.9,22.55,56.8,30.5,1009.6,-29.544674027676745,-155.0254522673699,-2.9923596936302364,-99.65786165213747,-3.0643753677492196,-98.92866764928448,-44.17589294700512,-148.55250815552625
-1678876781,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.2,4.0,29.9,22.55,56.8,30.5,1009.6,-29.54452281789098,-155.02303085405777,-2.992432298553282,-99.65812589416744,-3.0644607033895888,-98.92837289854606,-44.17446911781914,-148.552380569894
-1678876791,30.0,30.0,55.0,55.0,0,1300000000,,,3,11.2,3.9,29.91,22.55,56.9,30.5,1009.6,-29.544370300299512,-155.022993246863,-2.992338346121354,-99.65813438674307,-3.0645247798184796,-98.92841604251643,-44.17651431928302,-148.53819566997484
-1678876801,30.0,30.0,55.0,55.0,0,1300000000,,,3,11.2,3.9,29.93,22.55,56.9,30.4,1009.6,-29.544384782215047,-155.02256390093444,-2.992700201716507,-99.65703714870959,-3.064367245824735,-98.92797945501668,-44.173896240729974,-148.53684912772528
-1678876811,30.0,30.0,55.0,55.0,0,1300000000,,,3,11.7,3.2,29.94,22.55,56.9,30.4,1009.6,-29.54480561067893,-155.01923239895294,-2.99252761717103,-99.65745903271139,-3.064644581259351,-98.92857688671565,-44.17596576459574,-148.51998839513413
-1678876821,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.8,2.3,29.96,22.55,57.1,30.4,1009.6,-29.544713786451876,-155.01682750071305,-2.992466303893613,-99.65709890086691,-3.0645671161247208,-98.92925049877468,-44.17447140188826,-148.5196571807422
-1678876831,30.0,30.0,55.0,55.0,0,1300000000,,,3,11.4,1.9,29.94,22.55,57.1,30.4,1009.6,-29.544231674355316,-155.01821338886276,-2.9924726862709687,-99.65685650052879,-3.064668539814937,-98.92890785210416,-44.173269157900485,-148.50964530780075
-1678876841,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.8,1.8,29.93,22.57,57.4,30.4,1009.6,-29.544670895069274,-155.0139553801572,-2.992636965971773,-99.65802129213124,-3.0647769827684828,-98.92802340460341,-44.1740486884299,-148.49791065095357
-1678876851,30.0,30.0,55.0,55.0,0,1300000000,,,3,11.1,1.6,29.96,22.56,57.6,30.4,1009.6,-29.544613757833062,-155.01336979536865,-2.9926912803578416,-99.657130484053,-3.0647750983989983,-98.92766788456325,-44.17441742135083,-148.49537114276345
-1678876861,30.0,30.0,55.0,56.0,0,1300000000,,,3,11.1,0.5,29.97,22.55,57.7,30.4,1009.6,-29.544855496691596,-155.01445500640494,-2.992875483723623,-99.65729427560683,-3.0648984011455656,-98.92831895996324,-44.171923724520695,-148.49480221188233
-1678876871,30.0,30.0,55.0,56.0,0,1300000000,,,3,10.9,0.8,29.97,22.55,57.8,30.4,1009.6,-29.54448187880635,-155.01135652894203,-2.9928895399852813,-99.65758985527735,-3.0647977973386427,-98.92741331903517,-44.17183245771065,-148.48757943417536
-1678876881,30.0,30.0,55.0,56.0,0,1300000000,,,3,10.8,0.4,29.94,22.55,57.8,30.4,1009.6,-29.544653083196124,-155.01090246242043,-2.9929176788731087,-99.65841913317509,-3.064996613533949,-98.92836387583564,-44.17346172832638,-148.46706999242667
-1678876891,30.0,30.0,55.0,56.0,0,1300000000,,,3,9.7,0.5,29.97,22.55,57.9,30.4,1009.6,-29.544422200914067,-155.00954641196512,-2.9928902525871974,-99.65797786760689,-3.0648690079013576,-98.9290666884155,-44.17328663736999,-148.46793522379832
-1678876901,30.0,30.0,55.0,56.0,0,1300000000,,,3,11.0,0.3,29.96,22.55,57.9,30.5,1009.7,-29.54462687718025,-155.00772406461937,-2.99283680319322,-99.65976311080627,-3.064827704443129,-98.9291949840315,-44.17359086285167,-148.45881918122615
-1678876911,30.0,30.0,55.0,56.0,0,1300000000,,,3,9.0,1.4,29.96,22.55,57.9,30.5,1009.7,-29.54452240472545,-155.006907250761,-2.9928512472650945,-99.6599788017243,-3.0648690565028645,-98.92988897085036,-44.17329709081564,-148.45742119441675
-1678876921,30.0,30.0,55.0,56.0,0,1300000000,,,3,9.9,1.4,29.94,22.51,57.9,30.5,1009.6,-29.54463181891795,-155.00427796268949,-2.9928509710967783,-99.65989901880644,-3.0648953333148814,-98.92983019048611,-44.174309347621225,-148.45082432642633
-1678876931,30.0,30.0,55.0,56.0,0,1300000000,,,3,10.0,1.7,29.94,22.5,57.8,30.5,1009.6,-29.544070000945478,-155.00310689057378,-2.9928282225955902,-99.66068155751964,-3.0650557081072787,-98.93050056782104,-44.175346020735766,-148.43033045995708
-1678876941,30.0,30.0,55.0,56.0,0,1300000000,,,3,9.3,2.2,29.96,22.48,57.7,30.5,1009.6,-29.544093265710053,-155.00228208740415,-2.992725384425193,-99.6615065483388,-3.0650508021808682,-98.93133245396056,-44.17556776218493,-148.42748926822898
-1678876951,30.0,30.0,55.0,56.0,0,1300000000,,,3,10.6,2.4,29.94,22.46,57.6,30.6,1009.7,-29.544345019090663,-155.0020071073311,-2.9928080591687225,-99.66151069708557,-3.065184781341883,-98.93229289641138,-44.17641288689241,-148.4075369014239
-1678876961,30.0,30.0,55.0,56.0,0,1300000000,,,3,10.4,1.9,29.93,22.44,57.5,30.6,1009.7,-29.544169645579462,-155.0000904616517,-2.9928500423970545,-99.66334714895825,-3.0650187332471863,-98.9316129748221,-44.17742016101249,-148.40763535524388
-1678876971,30.0,30.0,55.0,56.0,0,1300000000,,,3,10.7,2.2,29.94,22.43,57.4,30.6,1009.6,-29.544138517839986,-155.0037625363774,-2.9928183719734296,-99.66422244981902,-3.065104896918083,-98.93300928391159,-44.17544358360971,-148.39824966472457
-1678876981,30.0,30.0,55.0,56.0,0,1300000000,,,3,11.3,2.2,29.93,22.4,57.3,30.7,1009.7,-29.543820491650322,-154.9988681075739,-2.9928394671991736,-99.66468978289193,-3.065059009121109,-98.93421606140234,-44.1771247273605,-148.3889220648865
-1678876991,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.9,2.5,29.93,22.35,57.3,30.7,1009.7,-29.544286961349307,-154.99574706356003,-2.9927245318612226,-99.66560647116223,-3.0650969129837025,-98.93528692106183,-44.180042888037796,-148.36153741643182
-1678877001,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.9,3.2,29.93,22.32,57.2,30.7,1009.6,-29.544270639136712,-154.99524775915012,-2.9927340320852895,-99.66530463769975,-3.0651384067930443,-98.936924487108,-44.17919138506907,-148.3664333738041
-1678877011,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.4,3.3,29.94,22.27,57.2,30.8,1009.6,-29.544543321580228,-154.99354273348618,-2.992729235338036,-99.6666007460828,-3.0650375389173083,-98.93687311286521,-44.18025989428891,-148.35696935376598
-1678877021,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.4,2.5,29.94,22.27,57.1,30.9,1009.7,-29.54427190894169,-154.99428619928918,-2.9925032301593673,-99.66675880920117,-3.064945631972971,-98.93682387884414,-44.179114342269095,-148.3433363317221
-1678877031,30.0,30.0,55.0,55.0,0,1300000000,,,3,11.3,2.5,29.93,22.26,57.1,30.9,1009.7,-29.543631606618106,-154.99271809618986,-2.992620069097752,-99.66816185807,-3.0650228075781865,-98.9368752196628,-44.17930662657515,-148.35220854102604
-1678877041,30.0,30.0,55.0,55.0,0,1300000000,,,3,11.4,2.6,29.93,22.24,57.1,30.9,1009.7,-29.543614992207942,-154.9919524673206,-2.992465069333382,-99.6695812360747,-3.0651638579033014,-98.93861987384415,-44.181475639732355,-148.33218434150373
-1678877051,30.0,30.0,55.0,55.0,0,1300000000,,,3,11.3,2.6,29.93,22.21,57.0,30.9,1009.7,-29.543623998126726,-154.99205534346814,-2.9925710075969665,-99.67103631601655,-3.065145104378054,-98.93930322590893,-44.18282145202664,-148.32849710383795
-1678877061,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.1,3.1,29.93,22.2,57.0,31.0,1009.7,-29.544359990959098,-154.98928966385046,-2.9926337770878426,-99.67173202822961,-3.0647762329499884,-98.93921291015882,-44.17988099838125,-148.3212513273581
-1678877071,30.0,30.0,55.0,55.0,0,1300000000,,,3,11.2,3.3,29.93,22.18,56.9,31.0,1009.7,-29.54410504465271,-154.98708723221205,-2.9924363984109554,-99.67191237425851,-3.0649755418760023,-98.941008091807,-44.18825045605746,-148.2948576945431
-1678877081,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.0,3.4,29.93,22.15,56.8,31.0,1009.7,-29.5447005647841,-154.98407588483784,-2.992560853762776,-99.67226665125435,-3.0650487990414814,-98.94258195613796,-44.188915044408546,-148.266607100956
-1678877091,30.0,30.0,55.0,55.0,0,1300000000,,,3,11.0,3.2,29.94,22.16,56.8,31.1,1009.7,-29.545404240687922,-154.98024406999784,-2.9927081038263585,-99.6724627446714,-3.0648618004955797,-98.94314654516914,-44.1885263650116,-148.2516679715257
-1678877101,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.2,4.0,29.94,22.15,56.7,31.1,1009.7,-29.54472472048133,-154.98189785778234,-2.9926634560388155,-99.67281715687743,-3.0649976655542637,-98.94351123289562,-44.188502283068864,-148.26004812241916
-1678877111,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.7,3.2,29.94,22.14,56.7,31.1,1009.8,-29.54427681667856,-154.97833950476164,-2.9925673345343706,-99.67278678106457,-3.0649227439379874,-98.9427924498655,-44.18676818600537,-148.26876448623275
-1678877121,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.7,3.8,29.94,22.12,56.7,31.2,1009.7,-29.544404489453406,-154.97748647762785,-2.992787287241621,-99.67193624481533,-3.0650903534396257,-98.94407727823301,-44.18855228450694,-148.24918155427585
-1678877131,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.0,3.7,29.96,22.11,56.7,31.2,1009.7,-29.54457915527819,-154.97761865639524,-2.992749406385742,-99.67296306039546,-3.0651147783740775,-98.94404339308187,-44.188277564174285,-148.24366364054845
-1678877141,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.8,3.8,29.97,22.11,56.6,31.2,1009.7,-29.54454520202445,-154.9745799517408,-2.9930076826445284,-99.67286952496815,-3.065249415251787,-98.94424743115852,-44.188384833200864,-148.24615701576693
-1678877151,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.0,3.6,29.96,22.1,56.6,31.2,1009.7,-29.544508646357365,-154.97675235051656,-2.9928824428697705,-99.67339417705482,-3.0652506517113216,-98.94320368187383,-44.188428663241375,-148.23914456049255
-1678877161,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.2,4.2,29.96,22.11,56.5,31.2,1009.7,-29.54452293007727,-154.97533485920425,-2.9927986287617827,-99.67368796958138,-3.0652369099553796,-98.94384272438853,-44.19100759551492,-148.2211842726555
-1678877171,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.9,3.3,29.97,22.12,56.5,31.2,1009.7,-29.544939234949624,-154.9721688431444,-2.9929407675950253,-99.67488493822196,-3.0651191198182834,-98.94455491234216,-44.190054153580164,-148.21932941593914
-1678877181,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.9,3.6,29.96,22.12,56.6,31.2,1009.8,-29.545147325513554,-154.97009777013284,-2.9929084520421414,-99.67546364575175,-3.065220149317154,-98.94546622837775,-44.19100144242133,-148.20612771590126
-1678877191,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.1,3.8,29.97,22.13,56.6,31.2,1009.7,-29.545398337696366,-154.97002577246303,-2.9926275286040385,-99.67603362408536,-3.065277020648267,-98.94606329750978,-44.19099389702593,-148.20666716207535
-1678877201,30.0,30.0,55.0,55.0,0,1300000000,,,3,11.8,3.4,29.97,22.15,56.5,31.1,1009.8,-29.545338227189944,-154.96656548317935,-2.992732411143057,-99.67612082938662,-3.0653534096723067,-98.94702633261575,-44.19385508894856,-148.18405229594634
-1678877211,30.0,30.0,55.0,55.0,0,1300000000,,,3,11.1,3.7,29.97,22.15,56.5,31.1,1009.7,-29.544897111478644,-154.9681474244956,-2.992618653371855,-99.67661445952248,-3.0653781549057175,-98.9465636346569,-44.19277277162613,-148.18989273735482
-1678877221,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.0,3.6,29.96,22.16,56.6,31.1,1009.7,-29.545286447413975,-154.96666330265407,-2.9926237915067655,-99.67689055360555,-3.065307184206496,-98.94747393046995,-44.19590249558575,-148.17027386673877
-1678877231,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.1,4.3,29.96,22.16,56.6,31.1,1009.8,-29.54523795751416,-154.96298115194287,-2.992779964469024,-99.67711589433797,-3.065261553586544,-98.94746530253808,-44.19599046959214,-148.15007071122344
-1678877241,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.7,4.2,29.97,22.17,56.6,31.0,1009.7,-29.54568862584295,-154.9622200722816,-2.9927335253712846,-99.67712050007053,-3.0651663347504776,-98.94671817084352,-44.19210020650743,-148.16076122958182
-1678877251,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.1,3.4,29.97,22.18,56.6,31.0,1009.7,-29.54552598331687,-154.96072688551484,-2.9926950607666463,-99.67709410523324,-3.065317262597587,-98.94718514799438,-44.1952243842433,-148.13221353296908
-1678877261,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.8,3.8,29.97,22.18,56.6,31.0,1009.7,-29.545151305905083,-154.95943379752325,-2.992894295021384,-99.67769198369122,-3.0654182122587863,-98.94785011983035,-44.19629245669279,-148.13992733698987
-1678877271,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.6,3.4,29.97,22.18,56.5,31.0,1009.7,-29.54579307571974,-154.9579298666658,-2.9928059914613243,-99.67803613381777,-3.06529505871253,-98.94881259319011,-44.19514728955089,-148.13438809628897
-1678877281,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.4,4.3,29.97,22.19,56.6,31.0,1009.7,-29.54540926854031,-154.9582092899969,-2.992740188704218,-99.67812299060233,-3.065387440989851,-98.94835713425958,-44.19632257593602,-148.13342648817587
-1678877291,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.1,3.9,29.96,22.19,56.6,31.0,1009.8,-29.545719431171435,-154.95684405607142,-2.993035000891313,-99.6781618121873,-3.0653228571378883,-98.94844124887658,-44.19371533260878,-148.1157769732657
-1678877301,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.2,3.7,29.97,22.19,56.6,31.0,1009.7,-29.546067578213663,-154.95377397006024,-2.9928458835839833,-99.67977878097196,-3.0654015951393503,-98.94827462731465,-44.20103436403824,-148.1007712826874
-1678877311,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.5,3.3,29.96,22.19,56.6,31.0,1009.7,-29.545731013567842,-154.95278843155043,-2.9928446961796324,-99.68032901204037,-3.065266601152472,-98.9489134896456,-44.20041106499564,-148.09042564366032
-1678877321,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.2,3.7,29.97,22.19,56.6,31.0,1009.7,-29.54623923100562,-154.95321686384298,-2.992961856892285,-99.6803022072131,-3.065373029516967,-98.94863699892933,-44.20025001018405,-148.07929515876813
-1678877331,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.9,4.0,29.97,22.2,56.6,31.0,1009.8,-29.54679124287597,-154.94978552098598,-2.9929366842969523,-99.68012129520936,-3.0653852742998207,-98.94891027095173,-44.20057245863249,-148.08594607921344
-1678877341,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.2,3.6,30.0,22.21,56.7,31.0,1009.8,-29.5461872637963,-154.95096823906968,-2.9930273879953466,-99.67978275579135,-3.065487765232853,-98.94816815364516,-44.19691774030646,-148.09321781402735
-1678877351,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,3.8,29.97,22.23,56.6,31.0,1009.7,-29.546082093374118,-154.9500150773039,-2.9931121459691443,-99.67967017133384,-3.0653547639337795,-98.9492305374236,-44.19821009080948,-148.08226846468403
-1678877361,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.1,3.8,29.98,22.24,56.7,31.0,1009.7,-29.546214464530657,-154.9474352036792,-2.993097039210835,-99.68057925164915,-3.065457588674971,-98.94985475318593,-44.198920584791644,-148.07298192538266
-1678877371,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.9,4.3,29.97,22.25,56.7,30.9,1009.8,-29.546457585871796,-154.94454318361323,-2.993092862022806,-99.68147974276481,-3.065406595795919,-98.94994734562177,-44.200708869102534,-148.06411173920802
-1678877381,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.8,3.5,29.97,22.26,56.7,30.9,1009.7,-29.54725094729295,-154.94261096892004,-2.993261090503847,-99.681957322332,-3.0655562879411713,-98.9513420747666,-44.201209773527744,-148.04644525509514
-1678877391,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.2,3.8,29.97,22.26,56.7,30.9,1009.7,-29.547242212916718,-154.9407171894549,-2.99297697658039,-99.68212653320752,-3.06553963511371,-98.95119583351037,-44.20451011623875,-148.03241194282543
-1678877401,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.3,3.9,29.97,22.27,56.7,30.9,1009.8,-29.547346531146022,-154.94022891135438,-2.99319045908157,-99.68314632016349,-3.0653734974510187,-98.9508870982386,-44.2030422877656,-148.0426933489875
-1678877411,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.1,3.6,29.96,22.27,56.7,30.9,1009.7,-29.54721416345719,-154.93959497286014,-2.9928162540941767,-99.6834948950046,-3.065376730859372,-98.95129353633375,-44.20587161656864,-148.0183480112184
-1678877421,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.6,3.3,29.98,22.28,56.8,30.9,1009.8,-29.547717887668078,-154.9394782848431,-2.993041086388909,-99.68246074607741,-3.0655026646916888,-98.95155085089046,-44.20493692346866,-148.01033783070764
-1678877431,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.4,3.2,30.01,22.29,56.8,30.9,1009.7,-29.547426513868615,-154.93805130106855,-2.9930646950951925,-99.68264948876374,-3.0654258962912313,-98.95187807639371,-44.204641932721074,-148.0144323492446
-1678877441,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.4,3.0,29.98,22.3,56.8,30.9,1009.8,-29.547055429937142,-154.9395437462039,-2.9929947779447885,-99.6830672915943,-3.065579960731335,-98.95272649199646,-44.2060853040509,-148.01839793851724
-1678877451,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.1,3.0,29.97,22.31,56.9,30.9,1009.7,-29.546737065999412,-154.94111068953353,-2.99304061929967,-99.68430193964542,-3.065519962515677,-98.95370671487521,-44.20806566496195,-147.9998570892776
-1678877461,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.3,3.9,29.97,22.31,56.9,30.9,1009.7,-29.547218257056954,-154.93687488133074,-2.9929306694301068,-99.68509371357655,-3.0655201255392424,-98.95351059988609,-44.20898413863411,-147.9903788479128
-1678877471,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.6,3.6,29.97,22.31,56.9,30.8,1009.8,-29.547713203229314,-154.93389611023403,-2.9932674306051394,-99.68552413582108,-3.0653508209549867,-98.95467506022467,-44.209243799069604,-147.99665020680456
-1678877481,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.0,3.7,29.97,22.32,56.9,30.8,1009.8,-29.547870547750925,-154.931683128954,-2.993189459902635,-99.68597340667215,-3.0653744662540343,-98.95468225097142,-44.20940696746633,-147.96974047311133
-1678877491,30.0,30.0,55.0,55.0,0,1300000000,,,3,11.2,3.9,29.97,22.32,56.9,30.8,1009.8,-29.548218300962525,-154.93143633790677,-2.993158575354646,-99.68626924065673,-3.065437422750958,-98.95499683101968,-44.21084982660565,-147.95348862100474
-1678877501,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.3,3.2,29.97,22.33,56.9,30.8,1009.7,-29.548404298804428,-154.9291779576479,-2.9930814964951606,-99.68696897017375,-3.0656452820566664,-98.95575444214573,-44.210033268032504,-147.95084137166933
-1678877511,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.7,3.4,29.97,22.33,56.9,30.8,1009.7,-29.548136173688913,-154.92882445300148,-2.9931446916589755,-99.68787103635448,-3.065611807614191,-98.95575054568401,-44.211825118066415,-147.945737957046
-1678877521,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.8,3.7,29.97,22.35,56.9,30.8,1009.8,-29.54788035072182,-154.92646246711124,-2.992990664356261,-99.68749235961943,-3.0654946325384764,-98.95607487765554,-44.212922959120114,-147.94273584586028
-1678877531,30.0,30.0,55.0,55.0,0,1300000000,,,3,11.2,3.5,29.96,22.36,56.9,30.8,1009.7,-29.548629810356,-154.92342572067702,-2.9929576748516173,-99.68774507648082,-3.065406756313975,-98.95750104684211,-44.215511200058685,-147.93072722702095
-1678877541,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.1,3.2,29.97,22.38,56.9,30.8,1009.8,-29.548537656364104,-154.92518458836193,-2.9929300296472277,-99.68759790578395,-3.065498733898833,-98.9568709421456,-44.21358069288899,-147.92207797884197
-1678877551,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.2,3.6,29.97,22.38,56.9,30.7,1009.8,-29.548727483159535,-154.92421985654417,-2.992987326131671,-99.68842847749953,-3.065369134311324,-98.9579227754458,-44.21385654887423,-147.9145288758845
-1678877561,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.0,3.2,29.97,22.39,56.9,30.8,1009.8,-29.548910563342062,-154.9240352609361,-2.9928628185337844,-99.68924570411563,-3.0655217273956206,-98.95743677527189,-44.21223147735785,-147.91240914988168
-1678877571,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.0,3.4,29.97,22.4,56.9,30.7,1009.8,-29.54872241998787,-154.92053939634638,-2.9929996039953566,-99.68893933773576,-3.065461734493163,-98.95808853513158,-44.21734273526955,-147.8982463621768
-1678877581,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.6,3.5,29.97,22.4,56.9,30.7,1009.7,-29.548868376356992,-154.92032890325578,-2.9929351600615126,-99.68892498484433,-3.065493685833926,-98.95884946638921,-44.21837120352062,-147.88894658985657
-1678877591,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.4,2.9,29.98,22.4,57.0,30.7,1009.7,-29.549039431248918,-154.91858164711562,-2.992882262326289,-99.68941677309083,-3.065593453431008,-98.95907630872865,-44.21623190398272,-147.88727760945386
-1678877601,30.0,30.0,55.0,55.0,0,1300000000,,,3,11.1,3.2,29.97,22.41,57.0,30.7,1009.8,-29.54914626627476,-154.91754075236534,-2.9928372870598334,-99.69023071574289,-3.065483416940405,-98.95961713521307,-44.21804645350163,-147.8904721735164
-1678877611,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.6,3.0,29.97,22.42,57.0,30.7,1009.8,-29.54878615814675,-154.91632383503477,-2.9929281549243374,-99.69060979795566,-3.065451958427532,-98.95962076182012,-44.21628251325184,-147.88606789719822
-1678877621,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.3,3.4,29.97,22.42,57.0,30.7,1009.7,-29.549069836546032,-154.91543935388427,-2.992937976776191,-99.69180436865547,-3.0656016565699473,-98.96011909746042,-44.22064372032463,-147.86607430361485
-1678877631,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.8,3.9,29.98,22.43,56.9,30.7,1009.7,-29.54947668130023,-154.91500005227886,-2.9929648710816408,-99.69164108205382,-3.06567742898157,-98.95971777249983,-44.21733606654107,-147.85918770085607
-1678877641,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.4,3.2,30.0,22.43,56.9,30.7,1009.8,-29.549196750778567,-154.9132958361472,-2.992899596702138,-99.69184100132527,-3.065439823751894,-98.95925424063304,-44.2182134880558,-147.86336042242405
-1678877651,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.2,3.3,29.97,22.44,56.9,30.7,1009.7,-29.549626511587192,-154.91200439481378,-2.993054446150642,-99.69235192343757,-3.0656455314225637,-98.95989787011261,-44.22135476576788,-147.8436816959485
-1678877661,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.3,3.2,30.0,22.44,56.9,30.7,1009.7,-29.550047146057516,-154.90954004022544,-2.9930431768753447,-99.6926196880876,-3.0656262960829492,-98.96090589822674,-44.223141555687135,-147.83585080229054
-1678877671,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.8,2.9,29.98,22.45,56.9,30.7,1009.7,-29.55010835373413,-154.90839321920532,-2.9929975861480678,-99.69301296659404,-3.0654507391828503,-98.96031500911528,-44.22249354298672,-147.8293633011756
-1678877681,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.4,2.7,30.0,22.46,57.0,30.7,1009.8,-29.549829993803442,-154.90774449229727,-2.9931689400039625,-99.69282486467058,-3.065344859617287,-98.96172687831022,-44.221849444637364,-147.8339441930697
-1678877691,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.2,3.7,29.98,22.46,56.9,30.7,1009.8,-29.550301023416168,-154.90835614966198,-2.993196183066525,-99.69382186415385,-3.065475879104383,-98.96194944369851,-44.220219204561175,-147.82951336890514
-1678877701,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.7,3.3,29.97,22.47,56.9,30.7,1009.8,-29.550208031044278,-154.9057830125413,-2.993061449773294,-99.69356466150742,-3.065502114458422,-98.9623130359306,-44.22387394534031,-147.80928689346618
-1678877711,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.7,3.6,29.97,22.48,56.9,30.7,1009.7,-29.55098022665271,-154.90232794555962,-2.9931739201871066,-99.69389961064662,-3.065506595379963,-98.96277170122524,-44.22135171166427,-147.8035360140322
-1678877721,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.4,3.7,29.98,22.48,56.9,30.6,1009.7,-29.55061950498888,-154.90286134756028,-2.9930225357864004,-99.69396672473016,-3.065462948776218,-98.96240656150313,-44.22193939627002,-147.78425959297925
-1678877731,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.5,3.0,29.98,22.49,56.9,30.6,1009.8,-29.55137853308003,-154.9001068025872,-2.993276995445627,-99.69477242241952,-3.065548142806706,-98.96312485077353,-44.22507594135677,-147.7746906157551
-1678877741,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.9,3.4,30.01,22.5,56.9,30.6,1009.8,-29.551202650344806,-154.89974607207108,-2.9931091006163513,-99.69462132327328,-3.0656014646717136,-98.96346623243004,-44.222066619608846,-147.78203735231102
-1678877751,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.8,3.7,30.0,22.51,56.9,30.6,1009.7,-29.551162340949496,-154.8995575133696,-2.993237660590809,-99.69487782876602,-3.065430700103696,-98.96398111997762,-44.22439308038618,-147.77658040397554
-1678877761,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.1,3.3,29.98,22.51,56.8,30.6,1009.7,-29.55151028839012,-154.89835287473724,-2.993204708518049,-99.6956049473541,-3.0654866373089886,-98.96438818243506,-44.22449030265255,-147.7818873356463
-1678877771,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.6,4.0,30.0,22.54,56.8,30.6,1009.7,-29.551604988041266,-154.89545057875316,-2.9931439708750474,-99.69542258953295,-3.065491506687406,-98.9650894080695,-44.22540055867003,-147.765797311803
-1678877781,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.7,4.4,29.98,22.55,56.7,30.6,1009.8,-29.55122892457782,-154.8946186050124,-2.9933558255103976,-99.6955281766391,-3.065323056430193,-98.96402166397792,-44.22580927971459,-147.76213100509108
-1678877791,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.9,3.9,29.98,22.55,56.7,30.6,1009.8,-29.551181173605997,-154.89365507774835,-2.9933034198592594,-99.69630456882057,-3.0654358990018586,-98.96464480847362,-44.22671547239233,-147.74774430005675
-1678877801,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.0,3.7,29.98,22.55,56.7,30.6,1009.8,-29.551645408970376,-154.89120671374587,-2.9932816478415116,-99.6968510574794,-3.0654630718171934,-98.96568699899092,-44.22717675524706,-147.72960202294522
-1678877811,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.3,3.7,29.97,22.55,56.7,30.6,1009.8,-29.552052780092694,-154.89015693162438,-2.9933353188021714,-99.69655836277312,-3.0656626043391926,-98.96657672372358,-44.22843157780381,-147.73335603380184
-1678877821,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.3,3.6,29.98,22.55,56.7,30.6,1009.8,-29.552517453729127,-154.88954559790284,-2.9933104875014576,-99.69716160918443,-3.0655589441486137,-98.96692796832747,-44.22940810675634,-147.73410509609005
-1678877831,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.7,4.0,29.98,22.55,56.7,30.6,1009.8,-29.552159006959595,-154.8877685271638,-2.993300219823112,-99.69736251544651,-3.0655730774597663,-98.96640328212786,-44.22708101478009,-147.73097273534881
-1678877841,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.7,3.8,29.98,22.55,56.7,30.6,1009.8,-29.552313802941335,-154.88690474586085,-2.9933340664620918,-99.69733086394588,-3.0654959269034903,-98.967046075606,-44.22978687610849,-147.7083709683106
-1678877851,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.3,3.6,29.97,22.55,56.7,30.5,1009.8,-29.552740182027918,-154.8846574864809,-2.9933810733526793,-99.69802373395078,-3.0655021463614402,-98.9665117586981,-44.232609529720804,-147.690324195628
-1678877861,30.0,30.0,55.0,55.0,0,1300000000,,,3,6.6,3.6,30.01,22.58,56.8,30.5,1009.8,-29.552323307160545,-154.88553266717577,-2.993360137965288,-99.69822749998396,-3.0654101896219594,-98.9665407932187,-44.23039014350424,-147.6913844622907
-1678877871,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.5,3.3,29.97,22.59,56.7,30.5,1009.7,-29.552637505485087,-154.88349578082358,-2.9934137590145897,-99.69828360590103,-3.0653320650924583,-98.96773751763556,-44.22823573497222,-147.6994409751511
-1678877881,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.6,3.3,29.97,22.61,56.8,30.5,1009.7,-29.55254996967848,-154.88352083591354,-2.993342185525885,-99.69936032225645,-3.065405845015463,-98.96822640153651,-44.230238796027024,-147.6884640163211
-1678877891,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.0,3.6,29.97,22.61,56.8,30.5,1009.7,-29.552594112142646,-154.88162852929943,-2.993369301444973,-99.6996277401558,-3.065265915586255,-98.96862791622401,-44.23248132066292,-147.69336022990305
-1678877901,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.7,3.0,29.97,22.6,56.8,30.5,1009.8,-29.552563494254574,-154.87954684060634,-2.9935972328946487,-99.70001738004981,-3.065227994024423,-98.9690568871781,-44.232888908387466,-147.6901112133594
-1678877911,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.0,3.4,29.98,22.59,56.8,30.5,1009.8,-29.55270812628236,-154.87639047481056,-2.993539410687596,-99.69947908953898,-3.0653821738367455,-98.96843036437714,-44.233202237174055,-147.67975069976833
-1678877921,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.8,3.5,30.0,22.57,56.8,30.5,1009.8,-29.552432220044764,-154.87857437191983,-2.9933080246349686,-99.70013290443836,-3.0654642735273985,-98.96894778966474,-44.23542971666397,-147.65795942661575
-1678877931,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.9,3.4,29.98,22.55,56.9,30.5,1009.8,-29.552895616427072,-154.87643671316235,-2.993326241580072,-99.69981430089398,-3.0656174350986682,-98.96932232871575,-44.23599489383288,-147.6541452890042
-1678877941,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.0,3.2,29.98,22.55,56.9,30.5,1009.9,-29.553328637025757,-154.87414347969116,-2.993329365725957,-99.70024454412149,-3.0654765499692385,-98.96950923336478,-44.23692779672352,-147.64826902081776
-1678877951,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.0,3.1,30.0,22.55,56.9,30.6,1009.8,-29.553188532965564,-154.87489979788316,-2.993341057810168,-99.7008311075107,-3.0656191381681803,-98.96906785301393,-44.236475064434266,-147.63035398530658
-1678877961,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.7,2.9,30.0,22.55,56.9,30.6,1009.8,-29.553679484934868,-154.8741395930501,-2.993312640187533,-99.70112261338028,-3.065787049994237,-98.97016669307523,-44.23963676775919,-147.62615151573493
-1678877971,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.5,3.0,30.01,22.54,56.9,30.6,1009.8,-29.553321165378406,-154.8758191734832,-2.9932974665785066,-99.70103967350853,-3.065546620492514,-98.97043738128318,-44.236724098109164,-147.6383666452396
-1678877981,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.0,2.8,30.01,22.5,56.9,30.7,1009.9,-29.553570534593014,-154.87248644825848,-2.9934255407423938,-99.701519315179,-3.0655415612960697,-98.9707088891043,-44.23813914849077,-147.6250243248092
-1678877991,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.6,3.0,30.0,22.49,57.0,30.7,1009.8,-29.554019196580118,-154.87066055356345,-2.9934344266269024,-99.70233882161914,-3.0656968021326665,-98.97199048769824,-44.238425327680915,-147.60961485410473
-1678878001,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.6,2.9,30.0,22.47,57.0,30.7,1009.8,-29.552896927163577,-154.8725858513502,-2.9932310064042955,-99.70335630786865,-3.0656980766382875,-98.9706229711449,-44.2411262968529,-147.59799192810286
-1678878011,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.0,2.6,29.97,22.45,57.0,30.7,1009.8,-29.55321958858967,-154.87015629435373,-2.993143397671451,-99.70325565875828,-3.0656360947235664,-98.97190480037968,-44.24090265602649,-147.59591096378696
-1678878021,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.3,3.2,29.97,22.44,56.9,30.7,1009.7,-29.552998453406573,-154.87068400348113,-2.993151818094078,-99.70384604276764,-3.0655758417869934,-98.97176245965495,-44.239430844183836,-147.59005548982122
-1678878031,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.4,3.0,29.97,22.42,57.0,30.8,1009.9,-29.55302170657001,-154.86777972589195,-2.9932470949279253,-99.7040552309462,-3.0656256505808583,-98.97184743780599,-44.24020236985755,-147.57624356001244
-1678878041,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.2,3.1,30.0,22.4,57.0,30.8,1009.8,-29.55333609429961,-154.8664007555619,-2.9932439171184413,-99.70442396575196,-3.06553916356664,-98.97204755046882,-44.23893324139418,-147.5849182227884
-1678878051,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.7,3.2,29.98,22.39,56.9,30.8,1009.8,-29.553803252863663,-154.86356420695006,-2.993430166926117,-99.70486951395876,-3.0655388251510907,-98.97306090775507,-44.239757299309716,-147.58551493408768
-1678878061,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.7,3.2,30.0,22.33,56.9,30.9,1009.8,-29.553586778745892,-154.86468652376635,-2.993350967928803,-99.70543936989876,-3.065426195056404,-98.97303597422217,-44.24021793606825,-147.5828978348303
-1678878071,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.3,3.3,29.97,22.32,56.9,30.9,1009.8,-29.553535148630207,-154.86317495449643,-2.993301763796898,-99.70535744435995,-3.0655578655831652,-98.97301478746493,-44.23986737845966,-147.57969271434854
-1678878081,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.9,3.7,29.97,22.27,56.9,31.0,1009.8,-29.553874400023524,-154.86169767742936,-2.9934202265040604,-99.70634344521727,-3.0655221568725954,-98.97394663150183,-44.239836821234476,-147.5739129556981
-1678878091,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,3.2,29.97,22.26,56.9,31.0,1009.9,-29.55376548966091,-154.86175552689485,-2.993308226357272,-99.706713075196,-3.0655772143159803,-98.97370761387197,-44.239473446742856,-147.56879965439367
-1678878101,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.3,3.1,29.98,22.24,56.9,31.1,1009.8,-29.553832523262177,-154.86062939420484,-2.9934631966936,-99.70630656251139,-3.0653672037035022,-98.97375586795137,-44.240274252634286,-147.57930678005923
-1678878111,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.3,3.0,29.97,22.24,56.9,31.1,1009.8,-29.554235236511786,-154.85943872907214,-2.993257282550407,-99.7064578581847,-3.0655994639675503,-98.9742014484976,-44.23958652458289,-147.5721899762701
-1678878121,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.2,3.6,30.0,22.23,56.9,31.1,1009.8,-29.554048970977917,-154.86079178949038,-2.993345114720725,-99.70631564581372,-3.065524967997369,-98.97406124645698,-44.237876845747905,-147.56085852842153
-1678878131,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.4,3.3,30.01,22.23,56.9,31.1,1009.8,-29.554559445407126,-154.8563313346501,-2.9935427836604895,-99.7068207708143,-3.0654570971937867,-98.97458135824495,-44.24042567828135,-147.5527166544324
-1678878141,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.9,2.9,30.0,22.2,56.9,31.1,1009.9,-29.55500188644228,-154.85589014378837,-2.9935412478539627,-99.70765122033839,-3.0656529501460072,-98.97538310939369,-44.24237746147568,-147.54654567791474
-1678878151,30.0,30.0,55.0,55.0,0,1300000000,,,3,11.0,2.8,30.0,22.19,56.9,31.1,1009.8,-29.554673264241536,-154.8550905668012,-2.993414154240548,-99.70793088394176,-3.065545911048866,-98.97585960489933,-44.241782486184256,-147.5356874930657
-1678878161,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.7,3.3,29.98,22.18,56.9,31.2,1009.9,-29.554925186071905,-154.85321469327482,-2.993343289032049,-99.70823689189356,-3.065525825395005,-98.97692514776878,-44.243943996716474,-147.5240555602822
-1678878171,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.2,3.4,29.98,22.16,56.9,31.2,1009.8,-29.55479262584155,-154.85472512649284,-2.9934032349406863,-99.70910088652272,-3.065711567974873,-98.97732448468525,-44.241584793670725,-147.5228383086274
-1678878181,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.4,3.1,29.98,22.15,56.9,31.2,1009.9,-29.55436767185086,-154.85427543971997,-2.9933755667500392,-99.70881699385879,-3.065690697064725,-98.97719836830959,-44.242384426667975,-147.51876070267556
-1678878191,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.3,3.7,29.98,22.15,56.8,31.2,1009.8,-29.55525048588749,-154.85032256335177,-2.9935339777409857,-99.70861419557382,-3.065561369834331,-98.97862223247186,-44.242400846298366,-147.5037514904108
-1678878201,30.0,30.0,55.0,55.0,0,1300000000,,,3,6.6,3.6,29.97,22.16,56.8,31.2,1009.8,-29.555044450698638,-154.85044817083582,-2.993593075775323,-99.70900826460984,-3.065494401534756,-98.97862897173351,-44.24282006437073,-147.5207115626626
-1678878211,30.0,30.0,55.0,55.0,0,1300000000,,,3,11.0,2.9,29.96,22.16,56.9,31.2,1009.8,-29.55540796132713,-154.85050069017905,-2.9934636690541625,-99.71080823749142,-3.0655054921374516,-98.97846605583767,-44.244402077511154,-147.52000946857177
-1678878221,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.0,3.3,29.98,22.17,56.9,31.2,1009.8,-29.555289664291074,-154.84809134467957,-2.9936237836166173,-99.71031017605314,-3.0656729443604256,-98.97972829699468,-44.244929665540866,-147.50767763327346
-1678878231,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.1,3.9,29.97,22.17,56.8,31.2,1009.8,-29.555219297677624,-154.84679907753485,-2.993452108239101,-99.70986681235055,-3.06559923527261,-98.97921572942465,-44.243863362144864,-147.4944954558084
-1678878241,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.9,3.8,30.0,22.17,56.8,31.2,1009.8,-29.555626694039546,-154.84593195708274,-2.9934380075956106,-99.71032104740164,-3.0655346592420103,-98.9798547523868,-44.25025186788084,-147.47589546697387
-1678878251,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.5,3.2,29.98,22.18,56.8,31.2,1009.8,-29.555183286112605,-154.84826256026489,-2.9934901533674467,-99.71033683142416,-3.065641501341973,-98.97982762913463,-44.245547120047604,-147.49138456642254
-1678878261,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.3,3.9,29.98,22.18,56.7,31.2,1009.8,-29.555646868421867,-154.84524133654432,-2.9935519603310734,-99.70997921630143,-3.0655566071377693,-98.97969569579851,-44.24555195258069,-147.48067353085915
-1678878271,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.7,3.6,29.98,22.19,56.8,31.2,1009.9,-29.555719359624227,-154.84267755502026,-2.993680724063907,-99.70968075830416,-3.0655627593688677,-98.9802001868888,-44.24783328667268,-147.47217011407778
-1678878281,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.7,3.8,30.0,22.19,56.7,31.2,1009.8,-29.55609829999712,-154.83963091820127,-2.9935423215984085,-99.70994872338362,-3.0655471713449236,-98.98088202887514,-44.25125869505479,-147.4522130056155
-1678878291,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,3.3,29.97,22.2,56.7,31.2,1009.8,-29.555805755681916,-154.84132509335205,-2.9935087827354163,-99.710584372393,-3.0656286819763094,-98.9806969939583,-44.249690321824346,-147.4585214645285
-1678878301,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.3,3.3,29.97,22.2,56.7,31.2,1009.9,-29.55594868717402,-154.84178260588143,-2.993435121267249,-99.71170231295581,-3.0657748243436322,-98.98137363190583,-44.25152524552364,-147.44690031884363
-1678878311,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.5,3.2,29.97,22.21,56.8,31.1,1009.8,-29.555994391427372,-154.84057856663836,-2.9934763845390133,-99.7129241236336,-3.0657763094931916,-98.98170777814559,-44.25142731834454,-147.44210081099263
-1678878321,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,3.3,29.97,22.23,56.7,31.1,1009.8,-29.55589476459815,-154.84066675757984,-2.993601231597205,-99.71346453747108,-3.0655452563610153,-98.98255375455317,-44.2497747624294,-147.44670496859746
-1678878331,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.4,3.9,29.96,22.23,56.7,31.1,1009.8,-29.55646597684472,-154.83990543405022,-2.9935352350211697,-99.71424767489526,-3.065529655914163,-98.98349934109706,-44.25149668763346,-147.42929744028297
-1678878341,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.5,3.5,29.96,22.21,56.7,31.1,1009.8,-29.55617372300879,-154.83795720142942,-2.993350695928468,-99.71527291336893,-3.065512140642591,-98.98304657237023,-44.25110062544719,-147.41513588015334
-1678878351,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.9,3.2,29.96,22.21,56.7,31.1,1009.8,-29.556311055633145,-154.8340143425411,-2.993456908523964,-99.71452451225588,-3.065726700306338,-98.98416636552066,-44.25644380445397,-147.4134420838353
-1678878361,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.2,4.0,29.97,22.24,56.7,31.1,1009.8,-29.556487968885094,-154.8332504588371,-2.993391322271506,-99.71508978475741,-3.0658317764710583,-98.98398819872057,-44.25586018740845,-147.4147039278102
-1678878371,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.5,3.7,29.97,22.24,56.7,31.1,1009.8,-29.556958025719627,-154.8317325994514,-2.9933375988444633,-99.7154032709915,-3.0656544928888647,-98.98472485922983,-44.255440379835626,-147.40514324802513
-1678878381,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.2,3.9,29.97,22.25,56.7,31.1,1009.9,-29.557536811542757,-154.83091417629467,-2.993155952150591,-99.71535248864176,-3.065503069757607,-98.9858086713642,-44.25337768564702,-147.40516086189263
-1678878391,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.8,4.4,29.96,22.25,56.7,31.1,1009.8,-29.557336567824443,-154.83379103959533,-2.9932898758781445,-99.71514973709533,-3.0655845046172776,-98.98626516335132,-44.25451551996942,-147.4104890054966
-1678878401,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.9,3.7,29.97,22.27,56.7,31.1,1009.9,-29.5574994115554,-154.83107375013026,-2.99319858940376,-99.71567465825441,-3.0655886014145315,-98.98569992571939,-44.25635441746601,-147.38544099953427
-1678878411,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.7,3.4,29.97,22.27,56.7,31.1,1009.8,-29.55804927618283,-154.82857624616088,-2.993345890780597,-99.71532234804585,-3.0655518651886227,-98.9862415265706,-44.25475208928127,-147.38610485973248
-1678878421,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.0,3.8,29.97,22.27,56.7,31.0,1009.8,-29.558111885092664,-154.82731105902286,-2.9934440153137976,-99.71585354236274,-3.0656320910860084,-98.98543228607521,-44.25691570609238,-147.38427563942278
-1678878431,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.4,3.7,29.97,22.28,56.7,31.0,1009.9,-29.55827624817288,-154.82403742436153,-2.993671776936973,-99.71587433595305,-3.0656041834915086,-98.9848081458265,-44.25857240225361,-147.38402646700285
-1678878441,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.6,3.6,29.97,22.28,56.8,31.0,1009.9,-29.557942564387055,-154.8252874992749,-2.993487506655427,-99.71536811135549,-3.0656296613795404,-98.98447608476839,-44.25732384604377,-147.38837768463497
-1678878451,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.9,3.4,30.0,22.28,56.8,31.0,1009.8,-29.557688588950764,-154.8271781930268,-2.9936715799951408,-99.71537896650781,-3.0655865255424213,-98.98483007909485,-44.25336713988372,-147.3930560878063
-1678878461,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.5,3.6,30.0,22.29,56.8,31.0,1009.8,-29.55740627267504,-154.82543961783665,-2.993518141910474,-99.71516450719976,-3.0658147271751375,-98.98474791845865,-44.25568919777739,-147.3715972222904
-1678878471,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.7,2.9,29.98,22.29,56.8,31.0,1009.8,-29.55771995426726,-154.82605239540231,-2.993822461547393,-99.71502191345235,-3.0658029236510647,-98.98496690534726,-44.253410992973976,-147.38464523547992
-1678878481,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.3,2.8,30.0,22.29,56.8,31.0,1009.8,-29.55783069990801,-154.82433659969152,-2.993489004589576,-99.71547987677612,-3.065851238109298,-98.98507588764413,-44.25410930148077,-147.37543255370053
-1678878491,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.5,3.2,29.97,22.29,56.8,31.0,1009.9,-29.557533359060294,-154.82479170557428,-2.993382963613624,-99.7159360868473,-3.065928102270221,-98.98609372612769,-44.25675185567457,-147.35857463077477
-1678878501,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.7,3.5,29.98,22.3,56.8,31.0,1009.8,-29.557790611637135,-154.8231133404089,-2.9934581795149082,-99.71656108650946,-3.065848436102132,-98.9859687984788,-44.25629141342781,-147.356979935606
-1678878511,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.7,3.2,30.0,22.3,56.8,31.0,1009.9,-29.557509128260662,-154.82437344017575,-2.993558112979188,-99.71677153422938,-3.0657862699789833,-98.98668000767739,-44.25407312531416,-147.36444958754765
-1678878521,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.4,3.9,30.0,22.31,56.8,31.0,1009.8,-29.558059002441503,-154.82134475276715,-2.9934488429335655,-99.71735288169347,-3.0658231399843814,-98.98685643951505,-44.25608336476425,-147.34895261541993
-1678878531,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.6,3.4,29.98,22.31,56.8,31.0,1009.8,-29.557728129449256,-154.82111368828492,-2.9938272565238533,-99.7181533087513,-3.065876042820257,-98.98692455916166,-44.257331593356575,-147.38299983369805
-1678878541,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.1,3.8,29.97,22.33,56.8,30.9,1009.8,-29.557803320747354,-154.82227767575256,-2.9936017509833723,-99.7185168284671,-3.065849218110492,-98.98743069094488,-44.25663682940501,-147.363425440793
-1678878551,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.2,3.7,29.97,22.33,56.8,30.9,1009.8,-29.557716330193248,-154.81997985920853,-2.993584642916354,-99.71843322790647,-3.065698442614333,-98.98800886065041,-44.256089836559966,-147.34748738962864
-1678878561,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.4,3.6,29.96,22.35,56.8,30.9,1009.9,-29.558198030051415,-154.81859769434453,-2.993580515677043,-99.71849394893148,-3.065887476172785,-98.98818792836299,-44.25663485566201,-147.34653558720342
-1678878571,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.0,3.4,29.97,22.35,56.8,30.9,1009.8,-29.558542343012405,-154.81858614675613,-2.9937930769807313,-99.71875077197369,-3.065770926658436,-98.98821689470049,-44.257347757585876,-147.32057233429202
-1678878581,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.2,3.8,29.97,22.36,56.8,30.9,1009.8,-29.55847617502057,-154.82027836520803,-2.99378357751247,-99.71823810253811,-3.065879118124444,-98.98907691019208,-44.25907314589622,-147.32528654685612
-1678878591,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.8,3.7,30.0,22.38,56.8,30.9,1009.8,-29.55804877828346,-154.82089395339165,-2.993789712452639,-99.71804265783337,-3.065713443883951,-98.98953331721538,-44.25869988374862,-147.3261701768862
-1678878601,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.4,3.9,30.0,22.38,56.8,30.9,1009.9,-29.55797407450531,-154.81898681891332,-2.9935973925992636,-99.71717825810228,-3.0657343796691103,-98.9893889994369,-44.25878812215089,-147.32382702980433
-1678878611,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.9,3.2,30.0,22.39,56.8,30.9,1009.9,-29.5581956788126,-154.81805150008717,-2.993451697132512,-99.71889519063613,-3.065875267777307,-98.99004883092225,-44.26007240516345,-147.29952738488274
-1678878621,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.9,3.2,30.0,22.4,56.8,30.9,1009.8,-29.558023240946767,-154.81832520050995,-2.993645714829608,-99.71863332019997,-3.0657556468468843,-98.98989580326952,-44.260643972710525,-147.32294201553404
-1678878631,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.0,3.4,30.0,22.4,56.8,30.9,1009.9,-29.557361350259285,-154.81943605787035,-2.9933759085015605,-99.71915936180066,-3.0657538197057344,-98.98978410796902,-44.25773642671311,-147.32142926024562
-1678878641,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.3,3.6,30.0,22.41,56.8,30.9,1009.9,-29.557583253703434,-154.8204065102155,-2.993403730342077,-99.71900615728808,-3.0657496551981964,-98.98981920265038,-44.25663465706218,-147.328041071182
-1678878651,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.3,2.9,30.0,22.42,56.8,30.9,1009.9,-29.557510006334642,-154.81844114441074,-2.993561000056866,-99.71893071857146,-3.0655264041551344,-98.98974533304708,-44.256401191430115,-147.3282109703261
-1678878661,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.1,2.7,29.98,22.42,56.8,30.8,1009.9,-29.557189472244104,-154.82072105980066,-2.9935174636718815,-99.71964642654407,-3.065698717380459,-98.99047927549792,-44.25410012916125,-147.32232433599032
-1678878671,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.0,3.2,30.01,22.42,56.8,30.8,1009.9,-29.557070020303993,-154.8188753866235,-2.9936489501570787,-99.71893634978564,-3.0657771268185465,-98.99124062354717,-44.25635961295254,-147.32084947953118
-1678878681,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.3,3.4,30.03,22.43,56.8,30.8,1009.8,-29.557001401994686,-154.8205964732475,-2.9936336901979317,-99.71903272752829,-3.0658326725090843,-98.99021938637942,-44.25746570072289,-147.3158320724566
-1678878691,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.9,3.4,30.01,22.43,56.8,30.8,1009.8,-29.556219738911672,-154.8204478712901,-2.9936017794216823,-99.71895078679673,-3.065762148154544,-98.98933914996711,-44.25400560732569,-147.3238284103677
-1678878701,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.8,3.9,30.01,22.44,56.8,30.8,1009.9,-29.556646342410907,-154.82127202651657,-2.9937345735929872,-99.71983406273041,-3.065968834937194,-98.98942291914986,-44.2531420114652,-147.31873260864657
-1678878711,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.2,2.9,30.01,22.45,56.8,30.8,1009.9,-29.556748617214673,-154.81951495570726,-2.9936476065312463,-99.71970701893031,-3.065834893589006,-98.9897738249415,-44.25271886157205,-147.30862724143574
-1678878721,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.3,3.2,29.98,22.46,56.8,30.8,1009.8,-29.556906656849907,-154.81673185308358,-2.99376456049105,-99.7200594395345,-3.0655980433410734,-98.99023562590398,-44.25501802258246,-147.3017326563696
-1678878731,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.6,3.4,29.97,22.46,56.8,30.8,1009.8,-29.556803270927816,-154.81680912385013,-2.993577382272801,-99.72122151794312,-3.0659138839120432,-98.99084357466722,-44.25730455773148,-147.29715831702393
-1678878741,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.7,3.5,29.97,22.46,56.8,30.8,1009.8,-29.55630217197303,-154.81619067062474,-2.9935662164622503,-99.72067436125495,-3.0657792975761877,-98.99009023548022,-44.254436511345816,-147.3017263975119
-1678878751,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.1,3.9,30.0,22.47,56.9,30.8,1009.8,-29.55616160057791,-154.8141771376516,-2.993725035754726,-99.71947800107819,-3.0658101301661174,-98.99039723720102,-44.25123562425227,-147.30999126201726
-1678878761,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.4,4.1,29.98,22.47,56.8,30.8,1009.8,-29.556355067837362,-154.8155352324796,-2.99359883542024,-99.72010507765216,-3.0659350109284595,-98.99034322228422,-44.25501411499557,-147.29075636942594
-1678878771,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.2,3.6,29.98,22.48,56.8,30.8,1009.9,-29.555920216531263,-154.81461687365115,-2.9935630303847587,-99.7197177445299,-3.0660382262783865,-98.99035406908682,-44.25481012209262,-147.29121284184254
-1678878781,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.6,3.7,29.98,22.49,56.8,30.8,1010.0,-29.555608849166404,-154.8156128653113,-2.9937156975095833,-99.72054202621038,-3.0658910357760876,-98.98927206818928,-44.25337655412039,-147.29525828052653
-1678878791,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.9,2.9,29.97,22.49,56.8,30.7,1009.9,-29.55536429132539,-154.81595256545737,-2.9936598961809375,-99.72130784745103,-3.0658548594923367,-98.99063658355324,-44.254484387522425,-147.28019997151742
-1678878801,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.1,3.2,29.98,22.5,56.8,30.7,1009.9,-29.555842529215937,-154.8142970435582,-2.9937061747446227,-99.7216200102853,-3.065808444919418,-98.99251377948256,-44.2550298544521,-147.27997183389033
-1678878811,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.4,3.5,29.97,22.49,56.8,30.7,1009.9,-29.55602634558244,-154.8135370013229,-2.9937479328880268,-99.72227381585594,-3.0660027771667675,-98.99301273378408,-44.25708322325127,-147.26593747654903
-1678878821,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.9,3.1,29.97,22.5,56.8,30.7,1009.9,-29.55618767043074,-154.8132768206566,-2.993813633337983,-99.72285451234208,-3.065998745468028,-98.99348928948478,-44.25878901504483,-147.25920183580558
-1678878831,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.7,3.3,29.97,22.5,56.7,30.7,1009.9,-29.555483216674862,-154.81077320617197,-2.9935426958728284,-99.72282682377418,-3.0658972930878687,-98.99321574069103,-44.256052001251106,-147.25635597441024
-1678878841,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.6,3.5,29.97,22.51,56.8,30.7,1009.9,-29.555804452360505,-154.81162991816197,-2.9936876095592617,-99.72275461984071,-3.0658285572481714,-98.99382750311507,-44.256090028678194,-147.25199067315003
-1678878851,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.4,3.7,29.98,22.55,56.8,30.7,1009.9,-29.555356210987288,-154.81229392905735,-2.9936943199340904,-99.7229934037601,-3.0658592768675543,-98.99348095507375,-44.2549806288075,-147.25827933949267
-1678878861,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,3.9,29.97,22.55,56.8,30.7,1010.0,-29.555518632373747,-154.80946681131854,-2.993630187744785,-99.72290872633162,-3.0658369580203972,-98.99275217256984,-44.25711287636582,-147.24160234498152
-1678878871,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.2,3.6,29.97,22.55,56.8,30.7,1010.0,-29.55526181276948,-154.81159465303088,-2.9938699445303514,-99.72284864750047,-3.0656944680776332,-98.99244312244957,-44.253625970423855,-147.25622626799048
-1678878881,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.1,3.7,30.0,22.55,56.8,30.7,1010.0,-29.55554980226115,-154.809832513962,-2.9938633519414233,-99.7231313040332,-3.0659169771645622,-98.99224335347616,-44.256706370638256,-147.2501847599651
-1678878891,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.0,3.3,29.98,22.55,56.8,30.7,1009.9,-29.55521962865957,-154.81365802782395,-2.9938611014076146,-99.72315754754813,-3.065833299626247,-98.9927681034617,-44.256066735014976,-147.24423443042147
-1678878901,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.1,3.4,29.97,22.55,56.7,30.7,1010.0,-29.555558407476248,-154.81156022220196,-2.9936309791072575,-99.72449421324133,-3.0659092026031756,-98.99307416869962,-44.258449090911654,-147.23228636574112
-1678878911,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.9,3.6,29.98,22.55,56.7,30.7,1010.0,-29.555895171579575,-154.8074580470653,-2.9936848708805766,-99.72367139699634,-3.0660895916146353,-98.99384459736541,-44.2584014482084,-147.23251441227663
-1678878921,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.0,3.6,30.0,22.55,56.8,30.7,1010.0,-29.555487502403363,-154.81028367498647,-2.993627534551633,-99.72466378784902,-3.0660522633893357,-98.99325121232009,-44.25536532386478,-147.24051416863946
-1678878931,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.2,3.5,30.01,22.55,56.7,30.7,1010.0,-29.555120069999184,-154.81100816041194,-2.9934730588088385,-99.72433955963908,-3.0660550169480505,-98.99356115977488,-44.25666780972072,-147.2436463558929
-1678878941,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.5,3.1,30.01,22.55,56.7,30.7,1010.0,-29.555364295653664,-154.80710659710064,-2.9933264752791713,-99.72489472904297,-3.066134377404182,-98.99296781743615,-44.25845584234948,-147.21850114163007
-1678878951,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.8,3.9,30.0,22.55,56.7,30.7,1010.0,-29.555645536004373,-154.80522623371485,-2.993604692859793,-99.72521078645532,-3.066266252752073,-98.99391627146609,-44.26122388735352,-147.20825387414618
-1678878961,30.0,30.0,55.0,55.0,0,1300000000,,,3,6.9,3.7,30.0,22.55,56.7,30.7,1010.0,-29.555352900303802,-154.80806729248053,-2.9935874181887567,-99.7248761098458,-3.0661442000168733,-98.99482639709677,-44.26183929777047,-147.21108782018692
-1678878971,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.0,3.2,29.98,22.55,56.7,30.7,1010.0,-29.555232930092107,-154.80799560270037,-2.9933465756037463,-99.72531915865942,-3.06619413660914,-98.9950281449338,-44.25899920088157,-147.21191915209087
-1678878981,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.2,3.8,29.98,22.55,56.7,30.7,1010.0,-29.555710235733912,-154.80632576189817,-2.9934083281178707,-99.72630398155013,-3.0660604880735582,-98.9954903551565,-44.25953818466681,-147.19972534501852
-1678878991,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.7,3.0,29.97,22.55,56.7,30.7,1010.0,-29.55583738766141,-154.80650675121254,-2.993424797211881,-99.72689569889786,-3.066107018005498,-98.99631044711737,-44.25778212721951,-147.19470371285502
-1678879001,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.2,3.6,29.97,22.55,56.8,30.7,1010.0,-29.555486340968823,-154.80689500497826,-2.9934491652043382,-99.72756684959744,-3.066264681477169,-98.99608675225637,-44.258024452796136,-147.18609226711644
-1678879011,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,4.0,29.97,22.55,56.7,30.7,1010.0,-29.555081582225746,-154.80550384377224,-2.993450098948381,-99.72676337787044,-3.0661162073957167,-98.99560539104706,-44.25988455151917,-147.181133093784
-1678879021,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.6,4.4,29.97,22.53,56.7,30.7,1010.0,-29.55555518495099,-154.8022632337434,-2.9936128645540676,-99.72669395491467,-3.0659989824342326,-98.99595769338791,-44.26057417214244,-147.17462454093442
-1678879031,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.8,3.7,29.97,22.49,56.7,30.7,1010.0,-29.55589218845914,-154.79922296961755,-2.993583348610745,-99.72759003398605,-3.0659632092482525,-98.99562005926401,-44.26142079783027,-147.18124693151094
-1678879041,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.5,3.5,29.97,22.46,56.7,30.8,1010.0,-29.55609596747206,-154.79989211668774,-2.9934768321486933,-99.7281770395512,-3.0659355668561687,-98.9958985868063,-44.2605909854464,-147.1675403272349
-1678879051,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.0,3.7,29.98,22.46,56.7,30.8,1010.0,-29.556237993716586,-154.7997101552389,-2.993479614571763,-99.72801088441847,-3.0661366664982066,-98.99655536977018,-44.26236843749555,-147.13934099480807
-1678879061,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.5,3.8,30.0,22.43,56.8,30.8,1009.9,-29.556145704111294,-154.79731510293294,-2.993567589969373,-99.72712360077507,-3.0659876366841687,-98.99790547341809,-44.26316127691588,-147.1495956992842
-1678879071,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.3,4.2,29.98,22.42,56.7,30.9,1009.9,-29.556426655938928,-154.79474465475906,-2.9936571983030644,-99.72658588862441,-3.0660230661322068,-98.99707158268356,-44.26357546069978,-147.15095326083198
-1678879081,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.9,3.8,30.0,22.41,56.7,30.9,1010.0,-29.55571714451351,-154.79643462883155,-2.993491812890472,-99.72636381490405,-3.066063080947421,-98.99629947844781,-44.26235618857039,-147.1477058395771
-1678879091,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.3,3.8,29.98,22.4,56.7,30.9,1009.9,-29.555796864348537,-154.79514138779436,-2.9936924683479003,-99.72613065111467,-3.066091659575037,-98.99674186008197,-44.2620909517009,-147.1519704309553
-1678879101,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.0,3.2,30.01,22.38,56.8,30.9,1010.0,-29.55609345718613,-154.79523771829287,-2.9935590187656604,-99.72649095216684,-3.0662265176420296,-98.99699666904975,-44.26197545273791,-147.13438136892947
-1678879111,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.7,2.8,29.98,22.35,56.8,30.9,1010.0,-29.555917048039184,-154.7958371884046,-2.993784004318598,-99.727764013141,-3.066089480403815,-98.99791115339605,-44.260732291993925,-147.15669949644536
-1678879121,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.4,2.8,29.98,22.33,56.8,31.0,1010.0,-29.555870584723507,-154.79857674287007,-2.9936760417130586,-99.72859545494485,-3.0660075718071655,-98.99763852546927,-44.262447783359434,-147.14509200141316
-1678879131,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.6,3.9,29.98,22.32,56.8,31.0,1010.0,-29.556023217555957,-154.79764364205278,-2.993465020251268,-99.7285684995369,-3.066043399097284,-98.99852309107514,-44.26331823340844,-147.13038219594355
-1678879141,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.9,3.4,29.97,22.3,56.8,31.1,1010.1,-29.556257409156792,-154.796703885037,-2.993556881448783,-99.72902084340869,-3.066008243996916,-98.9985838170993,-44.26192161012054,-147.1431349488213
-1678879151,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.2,3.4,29.98,22.29,56.8,31.1,1010.0,-29.556160245543893,-154.79482445447564,-2.9934925938002657,-99.72942086023096,-3.066010754888277,-98.99882900043463,-44.26499908599347,-147.12715990867986
-1678879161,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.2,3.8,29.98,22.28,56.8,31.1,1010.0,-29.556872736081075,-154.79267354420932,-2.993462506525175,-99.72961374034264,-3.0661534353932343,-98.9996761271154,-44.265327218360994,-147.10951366382486
-1678879171,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.9,3.4,30.0,22.27,56.8,31.1,1010.1,-29.556750789718112,-154.7946865466039,-2.9935154345546082,-99.73071060798942,-3.066006188220695,-98.99925656202885,-44.26501363799905,-147.09632599994077
-1678879181,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.3,3.6,29.98,22.24,56.8,31.2,1010.1,-29.55674090445081,-154.79267893551082,-2.9935562636621253,-99.73049828440445,-3.0662985862648195,-98.99992761354147,-44.266814218126235,-147.09408730730428
-1678879191,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.6,3.7,29.98,22.23,56.8,31.2,1010.1,-29.557125396017796,-154.79106897091305,-2.993730217728544,-99.73103807386306,-3.066207438400474,-99.00014660165753,-44.269210583366466,-147.08584994067579
-1678879201,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.4,3.6,29.97,22.2,56.8,31.2,1010.1,-29.557396930839822,-154.78963604712857,-2.9937727899366346,-99.73157450828604,-3.0661393063920106,-99.00113046129975,-44.2699893814289,-147.0780298142216
-1678879211,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.7,3.9,29.97,22.19,56.8,31.2,1010.1,-29.557500726858766,-154.7884215874071,-2.9937030206009902,-99.73188853823557,-3.066153167682021,-99.00138821045623,-44.27060075314185,-147.0779867000257
-1678879221,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.9,3.8,29.98,22.18,56.8,31.2,1010.1,-29.557898248581942,-154.78700732169463,-2.993736282356794,-99.7319598869747,-3.0659658401960437,-99.00207907928522,-44.27067465626811,-147.08154060116698
-1678879231,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.2,3.4,29.97,22.17,56.7,31.2,1010.1,-29.55761122814623,-154.7861391088105,-2.993511187233034,-99.73274674356918,-3.0661171250133625,-99.00274519595395,-44.27066672951157,-147.06152590308145
-1678879241,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.1,3.6,29.97,22.15,56.7,31.3,1010.1,-29.557868324255473,-154.78461945364404,-2.9935941983861443,-99.73289084888167,-3.0661531894125944,-99.00192649260629,-44.27063063026107,-147.06581999626607
-1678879251,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.1,3.8,29.97,22.15,56.8,31.3,1010.1,-29.55779441926419,-154.78499259924948,-2.993565761102804,-99.73262636460294,-3.0661231259680592,-99.00232366860682,-44.27203394198081,-147.05695498998634
-1678879261,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.5,3.6,29.97,22.13,56.8,31.4,1010.1,-29.558622224979914,-154.78288447941912,-2.9936666947207486,-99.73365467207374,-3.06605420504581,-99.0030103925939,-44.27132747667656,-147.06025784913047
-1678879271,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.5,3.6,29.97,22.12,56.8,31.4,1010.1,-29.558673739477904,-154.78443536908304,-2.993672634202302,-99.73361468614353,-3.0659139729492475,-99.00340920674414,-44.26918445741717,-147.05523981252054
-1678879281,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.0,4.0,29.97,22.1,56.8,31.4,1010.1,-29.558236193709778,-154.7821044697578,-2.99353203440469,-99.73374821102776,-3.0660930664116997,-99.0024691559824,-44.2723963235873,-147.03647478803646
-1678879291,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.0,4.3,30.0,22.1,56.8,31.4,1010.2,-29.55837644408112,-154.781045738653,-2.993585595496109,-99.73354842435026,-3.0660827428033532,-99.00178480802519,-44.27036532831595,-147.0258719799702
-1678879301,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.3,3.8,30.0,22.09,56.8,31.4,1010.1,-29.558081542401275,-154.78279349808577,-2.993542760045031,-99.7337130013707,-3.0662047870053337,-99.00218123439447,-44.27442058970786,-147.02909613884776
-1678879311,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,3.6,29.98,22.06,56.8,31.4,1010.0,-29.558468460625434,-154.78060337575738,-2.993815271084848,-99.73340610990378,-3.066045246789983,-99.00204771790712,-44.27237996618388,-147.0355588214012
-1678879321,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.1,3.1,29.98,22.04,56.8,31.5,1010.1,-29.55827338153454,-154.7818167711924,-2.9936495421090514,-99.7348678609225,-3.0661924945172236,-99.0026883132707,-44.27487726617529,-147.02245014522214
-1678879331,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.9,3.3,29.98,22.04,56.8,31.5,1010.1,-29.5584727271954,-154.78083434620012,-2.9936601110258105,-99.73413692096157,-3.0661255710091897,-99.00355418137754,-44.27510666196891,-147.0197844261696
-1678879341,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.3,2.9,30.0,22.02,56.8,31.5,1010.1,-29.558834313579062,-154.7803356845072,-2.993591920655285,-99.73472107544193,-3.0662279569401285,-99.00320319179133,-44.277089330936704,-146.99317767971266
-1678879351,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.4,3.9,30.0,22.02,56.9,31.5,1010.1,-29.557769464220108,-154.7826485183832,-2.9933965477398945,-99.73546355924026,-3.0662247758846246,-99.00335895900974,-44.27347991879191,-147.00416029942423
-1678879361,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.1,3.8,30.0,22.03,56.8,31.5,1010.1,-29.558248315720782,-154.78041117300552,-2.993619242968811,-99.73589063015318,-3.066258312712015,-99.0035326372662,-44.27729683853347,-147.00824957159347
-1678879371,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.2,3.6,30.0,22.04,56.8,31.5,1010.1,-29.55836472548741,-154.7781195897767,-2.993700001727163,-99.73581339823188,-3.0662051949460842,-99.00280920382343,-44.27273262928604,-146.9896992797001
-1678879381,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.1,3.7,29.98,22.05,56.8,31.5,1010.1,-29.558721191356064,-154.77808899626686,-2.993686487830767,-99.73606147249274,-3.0662340083346935,-99.0032124371936,-44.274047411983624,-147.00516011069183
-1678879391,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.2,3.0,30.01,22.06,56.8,31.5,1010.2,-29.558706193543575,-154.77658431006196,-2.9936919785739793,-99.73577209853191,-3.0661819608564795,-99.00352495932005,-44.278176149457416,-146.98859333194702
-1678879401,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.5,3.2,29.98,22.08,56.8,31.4,1010.2,-29.559147858956262,-154.77537683391876,-2.9934862100969135,-99.73643938149348,-3.066299943948336,-99.00533080535011,-44.28052847103662,-146.98102694866722
-1678879411,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.2,3.5,30.0,22.08,56.8,31.4,1010.1,-29.55880775800598,-154.77751754449005,-2.9934649378108027,-99.73664081454069,-3.066106771315107,-99.0051001615393,-44.27650481267972,-146.97135020832044
-1678879421,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.2,3.2,29.97,22.09,56.9,31.4,1010.1,-29.55942568665048,-154.77330114958434,-2.9936488209435836,-99.73714265943448,-3.066285584780783,-99.00568719612022,-44.27870190852285,-146.96655624084732
-1678879431,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.2,2.8,30.0,22.09,56.9,31.4,1010.0,-29.559448619580714,-154.77333235121122,-2.993522441617089,-99.73803543313905,-3.0662388446714206,-99.00612754499863,-44.27928348510595,-146.96442959223998
-1678879441,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.8,3.5,29.97,22.1,56.9,31.4,1010.1,-29.559259265946167,-154.7734784668743,-2.9935092918812427,-99.73834675221896,-3.0661431642641213,-99.00617502166152,-44.277089864738166,-146.9826255082438
-1678879451,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.7,3.3,29.97,22.1,56.9,31.4,1010.0,-29.559758030509773,-154.77185719119566,-2.9934863286905444,-99.73850088447121,-3.066286156778964,-99.00679064126021,-44.279289913575,-146.97344737561605
-1678879461,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.4,3.7,30.0,22.1,56.9,31.4,1010.1,-29.55935422815437,-154.7722132539059,-2.993431210320336,-99.73857864903641,-3.066179770483859,-99.00730318648885,-44.28159474892589,-146.96694418910062
-1678879471,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.0,3.9,29.97,22.1,56.8,31.4,1010.1,-29.55977260495051,-154.77024024211482,-2.9935403389568034,-99.73847828708666,-3.0661811381792363,-99.00778510257551,-44.2801746601892,-146.96352061574933
-1678879481,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,3.7,30.0,22.11,56.8,31.4,1010.1,-29.559795721143836,-154.77006159486274,-2.9935306989305377,-99.73843252593113,-3.06636276771334,-99.00785920960385,-44.27893198656035,-146.96963407915777
-1678879491,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.3,4.0,30.0,22.11,56.8,31.4,1010.1,-29.56043778998073,-154.76725738607945,-2.993523615236224,-99.7381492359913,-3.066244306215979,-99.00819030506287,-44.28032569096294,-146.95232656148565
-1678879501,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.5,3.4,29.98,22.13,56.8,31.4,1010.1,-29.560260687085528,-154.76703647560305,-2.9935073411313518,-99.73878871788385,-3.0662251197872754,-99.00812619216485,-44.28036587996145,-146.9522375312341
-1678879511,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.0,4.3,29.97,22.14,56.8,31.4,1010.1,-29.560226873393173,-154.76811314793864,-2.99357428103225,-99.73881183421118,-3.0663907242501742,-99.00852801028739,-44.283935588129204,-146.95035107900677
-1678879521,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.0,4.1,29.98,22.15,56.7,31.4,1010.1,-29.56055993264909,-154.76579713820178,-2.9934848919835644,-99.73824369486584,-3.0663282394281843,-99.00899165729993,-44.28312378045635,-146.9404929770067
-1678879531,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.6,3.7,29.97,22.15,56.8,31.3,1010.1,-29.560422670613406,-154.76653080345346,-2.9936103739713267,-99.73882061767004,-3.0662935538059606,-99.00904861749812,-44.28260949593327,-146.9361697425386
-1678879541,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.4,3.6,29.97,22.16,56.8,31.3,1010.1,-29.561097674364678,-154.76266259452171,-2.993579519517961,-99.73913623426117,-3.0660528730827474,-99.00965231918997,-44.286082082742276,-146.92040607435237
-1678879551,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.2,4.1,29.97,22.17,56.8,31.3,1010.1,-29.560658051393744,-154.76608584750826,-2.993667239232966,-99.73892982853701,-3.0661804925812417,-99.00941874742458,-44.283852404154075,-146.94347299184605
-1678879561,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.5,3.2,29.98,22.18,56.8,31.3,1010.1,-29.560551209948525,-154.763425661721,-2.993657117297455,-99.73971960219706,-3.066096502539649,-99.00953963052608,-44.28361252389281,-146.9340519575454
-1678879571,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.3,3.5,30.0,22.19,56.8,31.2,1010.1,-29.56091756262902,-154.76401518712183,-2.993722835562381,-99.74060537435098,-3.066073923831367,-99.00887010300315,-44.27926332857751,-146.94757079417283
-1678879581,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.6,3.8,29.98,22.2,56.8,31.3,1010.1,-29.561251110276935,-154.76489460735814,-2.993590324763378,-99.73964505489063,-3.0662647541722987,-99.0099314926068,-44.28092198432934,-146.9332727717205
-1678879591,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.7,3.3,29.98,22.21,56.8,31.2,1010.1,-29.56081478616948,-154.76215011632448,-2.993614118175883,-99.74005030679747,-3.0663328756317187,-99.01029060271921,-44.28051306045376,-146.9229492647633
-1678879601,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.9,3.4,30.0,22.23,56.8,31.2,1010.1,-29.560402425377713,-154.7630032525611,-2.993546950143486,-99.73980718103175,-3.066301802700141,-99.00961838717703,-44.283660496195424,-146.91232131897897
-1678879611,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.8,3.9,30.0,22.24,56.8,31.2,1010.2,-29.56074490991746,-154.7622180039202,-2.993512133591703,-99.73967962838782,-3.066387817783779,-99.00959924960712,-44.284331742041665,-146.92253263435725
-1678879621,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.9,3.1,29.98,22.25,56.8,31.2,1010.1,-29.56129453510436,-154.76051819327589,-2.993621743979806,-99.74030623691496,-3.0662711849827073,-99.01043593085156,-44.28694608226138,-146.91644758757516
-1678879631,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.4,2.7,29.97,22.25,56.8,31.2,1010.1,-29.560769406619983,-154.76156960250376,-2.99344371779851,-99.74124385799746,-3.066139947337131,-99.01071010811397,-44.289103982141114,-146.9052151994171
-1678879641,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.5,3.0,29.98,22.26,56.9,31.2,1010.1,-29.561343579311302,-154.75920573105594,-2.993394745126452,-99.74190396285286,-3.066149464044165,-99.01180819476878,-44.29133133524421,-146.89043362605736
-1678879651,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.4,3.5,29.97,22.27,56.9,31.2,1010.1,-29.56185097818622,-154.7571524730277,-2.9937653015966204,-99.74142552476569,-3.0660521506407648,-99.01158273546481,-44.290704261911735,-146.88327506625745
-1678879661,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.5,3.9,29.97,22.27,56.8,31.2,1010.1,-29.56149452214474,-154.7578812775624,-2.9936382452380967,-99.7413978240974,-3.0660186679582098,-99.01213023257067,-44.2901648550447,-146.8904465108995
-1678879671,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.0,4.2,29.98,22.27,56.8,31.2,1010.0,-29.56197781624966,-154.75497871026704,-2.993755712934763,-99.74082037896424,-3.0658951345792445,-99.01206322362444,-44.287419512636646,-146.90678505755412
-1678879681,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.5,4.2,29.98,22.27,56.7,31.1,1010.1,-29.56215972786744,-154.75505453942864,-2.9937428756936306,-99.74191017945253,-3.065942562751563,-99.01162209081015,-44.28568562028281,-146.89844192550612
-1678879691,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.3,3.5,29.98,22.28,56.7,31.1,1010.1,-29.56222278694675,-154.75435908006023,-2.993577647625995,-99.74182209867739,-3.0660203788979326,-99.01229731466577,-44.28626025452011,-146.89118228717487
-1678879701,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.7,3.6,29.97,22.29,56.8,31.1,1010.1,-29.562297231548836,-154.7539809815077,-2.9936163469291746,-99.7419564959022,-3.0659331642469088,-99.0127192740743,-44.288712305007735,-146.8786961271357
-1678879711,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.4,3.6,29.97,22.29,56.7,31.1,1010.2,-29.56239375452469,-154.7528475981855,-2.993562552188454,-99.74237872217556,-3.0659496110306934,-99.01288490900626,-44.28791598708016,-146.88428490031094
-1678879721,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.3,3.1,30.01,22.29,56.8,31.1,1010.1,-29.56254718380019,-154.75385892396687,-2.993673384515433,-99.74238571594204,-3.065873030209043,-99.01388182457092,-44.288255327476556,-146.8761206645876
-1678879731,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.7,3.0,29.98,22.3,56.8,31.1,1010.1,-29.562452631427625,-154.75344590589012,-2.9936558037097383,-99.74227820901106,-3.0658393531544186,-99.01400491317932,-44.28836178039827,-146.88677925792896
-1678879741,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.6,3.2,29.98,22.31,56.9,31.1,1010.1,-29.56221050763014,-154.7558699919093,-2.9936870275874266,-99.74335084828896,-3.065833467457143,-99.01334912906616,-44.28561307145087,-146.8923228620252
-1678879751,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.2,3.4,29.98,22.32,56.9,31.1,1010.1,-29.562619457563677,-154.75438917153414,-2.9934929779856234,-99.74350139735286,-3.0658489363119887,-99.01395305776354,-44.28785583164284,-146.87463506226794
-1678879761,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.9,2.9,29.98,22.33,56.9,31.1,1010.1,-29.563352891951023,-154.7523502754526,-2.993871902790043,-99.7437173769362,-3.06592938442046,-99.01422663605295,-44.28821846331954,-146.87803798751636
-1678879771,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.7,3.1,29.98,22.33,56.9,31.1,1010.0,-29.5633458549244,-154.75123929306696,-2.9937301526215747,-99.74426301466107,-3.065869404208372,-99.01564649343509,-44.28894608028183,-146.87703315657043
-1678879781,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,3.8,29.98,22.34,56.9,31.1,1010.1,-29.563469696374632,-154.7493600440342,-2.993693087984888,-99.74491851170102,-3.065941553381351,-99.01504690249077,-44.29036990285131,-146.8689463264754
-1678879791,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.5,3.7,29.98,22.35,56.9,31.0,1010.1,-29.56339994834247,-154.74768434578394,-2.9939690660157297,-99.74341437946013,-3.065996172176133,-99.0149620894241,-44.291010765401936,-146.86180211873295
-1678879801,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.3,3.7,30.0,22.36,56.9,31.0,1010.1,-29.56314766258515,-154.74801537388822,-2.9936443049728596,-99.74352717508069,-3.0661337024961033,-99.01455874714729,-44.291192420360595,-146.85002349031976
-1678879811,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.0,3.3,29.98,22.38,56.9,31.0,1010.1,-29.563198500423358,-154.74624060283006,-2.9937722652552825,-99.74402358407755,-3.066132250970848,-99.0147871081515,-44.292740180620946,-146.83496872686692
-1678879821,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.2,3.4,30.0,22.38,56.9,31.0,1010.1,-29.563374354027143,-154.74556622307398,-2.9939434769358018,-99.74410337413676,-3.0660017233911194,-99.01392495504783,-44.295004193024184,-146.83882683136608
-1678879831,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.9,3.4,30.0,22.38,56.9,31.0,1010.1,-29.563033441408123,-154.7459083105685,-2.993934141747582,-99.74445015571688,-3.066013379781963,-99.0135896953611,-44.29170101842632,-146.84017883518226
-1678879841,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.5,3.4,29.98,22.38,56.9,31.0,1010.1,-29.563107029676257,-154.74900256431326,-2.993698196682762,-99.74538285669522,-3.065924695315141,-99.01406041136264,-44.28914777603919,-146.8370920474052
-1678879851,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,2.8,30.0,22.39,56.9,31.0,1010.1,-29.563649552922445,-154.74717989812004,-2.9937328354185713,-99.74514564934246,-3.0658828435878154,-99.01457202377628,-44.293090407526854,-146.82591956110355
-1678879861,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,3.5,30.0,22.39,56.9,31.0,1010.0,-29.56405320381018,-154.7435473882623,-2.9938311363809804,-99.74493937740979,-3.065961606497102,-99.01505109671572,-44.29269513512595,-146.82897830044854
-1678879871,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.2,3.4,30.01,22.4,56.9,31.0,1010.1,-29.564093387990454,-154.74271056255716,-2.993942226958091,-99.74438392011379,-3.066085782880257,-99.01488297717206,-44.290636387428954,-146.83078324261297
-1678879881,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.8,2.6,29.98,22.4,56.9,31.0,1010.1,-29.56418928430944,-154.74242918156963,-2.9937451480795274,-99.74537717607099,-3.06602546274309,-99.01604815283147,-44.291622774413845,-146.82111607488335
-1678879891,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.4,2.7,29.97,22.4,57.0,31.0,1010.1,-29.564117172137905,-154.74231371034813,-2.993960631232406,-99.74636841470074,-3.0659034532458844,-99.01620169213318,-44.29493019229129,-146.82978920544306
-1678879901,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.2,3.1,29.98,22.42,57.0,31.0,1010.0,-29.564852732480773,-154.73860936647867,-2.9939897298031464,-99.74581546076192,-3.065975225778504,-99.0172490819047,-44.2936120801781,-146.8127524092714
-1678879911,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.4,2.9,30.0,22.42,57.0,31.0,1010.0,-29.56453442911763,-154.74165150549916,-2.993918799614845,-99.74597118377213,-3.065984912389153,-99.01704970733759,-44.294168831468355,-146.81102212293118
-1678879921,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.1,3.6,29.97,22.42,57.0,31.0,1010.1,-29.56451741447197,-154.7409496005369,-2.9938721626237665,-99.74554164085292,-3.0662433496609482,-99.01718724176752,-44.293059647038774,-146.80675161351414
-1678879931,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.6,3.3,29.97,22.42,57.0,31.0,1010.1,-29.56456600987127,-154.73990819278052,-2.9938817205764146,-99.74570159176828,-3.066224204421592,-99.01714092934785,-44.29354244709778,-146.82119414881066
-1678879941,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.4,3.5,29.98,22.42,56.9,31.0,1010.1,-29.56411013684489,-154.7406785870312,-2.99392721525177,-99.74585345276016,-3.066053498393326,-99.01676467439468,-44.29253389019688,-146.81859082203948
-1678879951,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.2,3.4,29.97,22.42,56.9,31.0,1010.0,-29.564739590721764,-154.73831817058297,-2.9939492938015526,-99.74616942393793,-3.066068281908567,-99.01800064342221,-44.296534100870836,-146.80070337459634
-1678879961,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.1,3.3,29.97,22.43,56.9,30.9,1010.1,-29.564592102992062,-154.73849789000388,-2.993793963512863,-99.74682092336468,-3.0660035856987506,-99.01794186228955,-44.29736852129345,-146.8012321213154
-1678879971,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.3,3.5,29.98,22.43,56.9,31.0,1010.0,-29.56423486619743,-154.73975927476295,-2.993919627087495,-99.74607698701755,-3.0659740979948906,-99.01797972677063,-44.29465191487417,-146.79104584481317
-1678879981,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.9,2.8,30.0,22.44,56.9,30.9,1010.1,-29.56499725936352,-154.73687534046786,-2.994010685303377,-99.74686524945692,-3.0659481772110064,-99.01829801925078,-44.29603012567274,-146.8021646756059
-1678879991,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.4,2.8,30.0,22.44,56.9,30.9,1010.1,-29.564693151064695,-154.7370798657437,-2.993934584419561,-99.74771156651178,-3.0659583276883016,-99.01770013901333,-44.29546374917027,-146.80531485458937
-1678880001,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.1,3.1,30.0,22.45,56.9,30.9,1010.1,-29.56462117880725,-154.73709355801518,-2.993889301377454,-99.74804801531938,-3.0661019888212375,-99.01828629208164,-44.29526326622846,-146.7989229122757
-1678880011,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.8,2.8,29.98,22.44,56.9,30.9,1010.0,-29.564685123108298,-154.73807101689673,-2.993871336544425,-99.7481807351491,-3.0660327199291277,-99.01846845263043,-44.2933939330358,-146.7847872143594
-1678880021,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.9,3.2,29.98,22.45,56.9,30.9,1010.1,-29.564612865968037,-154.73593646624343,-2.9940865124251843,-99.74811918381671,-3.065956406409645,-99.0188636640872,-44.298743180324,-146.77635639779692
-1678880031,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.6,3.4,29.98,22.46,56.9,30.9,1010.0,-29.56455442919829,-154.73528205726566,-2.9937785386296727,-99.74840324440336,-3.066099769049229,-99.01885093088146,-44.297470829244794,-146.75885951977583
-1678880041,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.2,2.7,29.97,22.46,56.9,30.9,1010.1,-29.564728174466374,-154.73477215523286,-2.993669405393289,-99.74884940155697,-3.066202755882525,-99.01947843898073,-44.30128297698484,-146.74560904145963
-1678880051,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.4,4.0,30.0,22.46,56.9,30.9,1010.1,-29.56521605854469,-154.73446774757397,-2.993807932817,-99.74821197230878,-3.0661999112523235,-99.01909919432956,-44.29923379821556,-146.76463831581245
-1678880061,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.0,3.7,30.0,22.46,56.9,30.9,1010.1,-29.564687343302964,-154.73630911620754,-2.99369072232784,-99.74807282629968,-3.0659810484253764,-99.01814100392849,-44.29421596544763,-146.77141123090394
-1678880071,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.9,2.9,29.98,22.47,56.9,30.9,1010.1,-29.564464106001513,-154.7363101675324,-2.9936563825558182,-99.74881295024633,-3.0661101360533545,-99.01886137601693,-44.299044027544625,-146.76650894856465
-1678880081,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.7,2.6,29.97,22.47,56.9,30.9,1010.1,-29.56434024116743,-154.73653614364596,-2.9937220331637726,-99.74910494308102,-3.0660687817115555,-99.0187913726429,-44.297868980329554,-146.75977672758242
-1678880091,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.8,3.3,29.97,22.48,56.9,30.9,1010.0,-29.564821174063848,-154.73391759442586,-2.9937499112772974,-99.74880687249899,-3.06602858939165,-99.01901069982986,-44.29628478660124,-146.76967989941753
-1678880101,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.0,3.1,29.97,22.48,56.9,30.9,1010.1,-29.564839809351284,-154.73145585664594,-2.9939526809045365,-99.74858424626251,-3.0659361476511906,-99.0187715207766,-44.296386668789445,-146.76943346747618
-1678880111,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.5,2.6,29.97,22.48,56.9,30.9,1010.1,-29.56473767898729,-154.73274894105876,-2.993842238231885,-99.7490164125132,-3.0659642117211554,-99.019514055573,-44.29884428032585,-146.75290313191744
-1678880121,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.4,2.7,29.98,22.48,57.0,30.9,1010.1,-29.564110367779094,-154.73526744381746,-2.993792912751538,-99.74976850798264,-3.065833947974453,-99.02016889840536,-44.29848008082726,-146.75201166141304
-1678880131,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.5,3.5,29.97,22.49,56.9,30.9,1010.1,-29.564820557437553,-154.73293222474976,-2.993716868083873,-99.74987391552146,-3.0660943576932937,-99.0187564937479,-44.2964448978873,-146.75226695102194
-1678880141,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.5,3.8,29.98,22.49,56.9,30.9,1010.2,-29.564045696020553,-154.73498161586883,-2.9937899163284616,-99.74888589015428,-3.065994793472668,-99.01925887024507,-44.29428684847218,-146.7606446663836
-1678880151,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.6,3.2,30.0,22.5,56.9,30.8,1010.1,-29.56376854798545,-154.7361034254715,-2.993558702714463,-99.7488912965996,-3.06602118336496,-99.01935119582569,-44.297719901848744,-146.7433593295029
-1678880161,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.4,2.6,29.97,22.5,56.9,30.8,1010.0,-29.564211367071813,-154.73237173084118,-2.9936565481789623,-99.74951184474895,-3.0661397387301,-99.01970594367306,-44.299455110846814,-146.74254192856986
-1678880171,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.1,3.2,29.97,22.51,56.9,30.8,1010.0,-29.56376646949535,-154.73327551290922,-2.9937117506983384,-99.74955793803672,-3.0661460173670907,-99.01931776020263,-44.29830951077035,-146.72488147789696
-1678880181,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.0,3.3,29.98,22.51,56.9,30.8,1010.1,-29.56477717803289,-154.72771021737927,-2.9939639878220436,-99.75003909890415,-3.066247915929032,-99.01978674253422,-44.300472622849924,-146.71937367769414
-1678880191,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.5,3.6,29.98,22.53,56.9,30.8,1010.1,-29.56427337433343,-154.73020163492686,-2.9938427859291163,-99.75024899030878,-3.0664497912032687,-99.01972066532956,-44.303085901239584,-146.69682104094642
-1678880201,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.0,3.1,29.97,22.53,56.9,30.8,1010.1,-29.56454021603232,-154.72932844089434,-2.9939786993912314,-99.74948650379413,-3.066368583292513,-99.02003102323431,-44.29902912713712,-146.7186297571671
-1678880211,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.5,3.0,29.98,22.54,56.9,30.8,1010.0,-29.56450019137747,-154.72793883240334,-2.9939347776214547,-99.75054133956624,-3.066289056291312,-99.01977358453901,-44.30100660430372,-146.71191902874745
-1678880221,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.5,2.9,29.97,22.54,56.9,30.8,1010.1,-29.564448593919405,-154.72857273375058,-2.993892705447192,-99.75045461019562,-3.066255166237176,-99.02023263727449,-44.3017012311671,-146.71186421626527
-1678880231,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.5,3.2,29.98,22.55,56.9,30.8,1010.0,-29.564732843236797,-154.72854223630364,-2.9938810924461032,-99.75040534785573,-3.066386041987486,-99.02106971205674,-44.30382002544417,-146.6965660568193
-1678880241,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.1,3.3,30.0,22.55,56.9,30.8,1010.1,-29.564737141128006,-154.7281273177419,-2.9939521340458333,-99.74996982674296,-3.0662101902030683,-99.02080174676126,-44.30311102953801,-146.70470927978988
-1678880251,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.4,3.1,30.0,22.55,56.9,30.8,1010.1,-29.564622020200318,-154.7266475931352,-2.9938772845848796,-99.75064283507461,-3.0664077544319452,-99.02011444258125,-44.30409384796609,-146.70567670795103
-1678880261,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.5,3.2,30.0,22.55,56.9,30.8,1010.0,-29.564724738115437,-154.7253518204719,-2.9939914381140786,-99.7503492548814,-3.0663239197238905,-99.019707681869,-44.30375204738395,-146.70736108822524
-1678880271,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.7,3.0,30.01,22.55,56.9,30.8,1010.1,-29.5645069070286,-154.7271958045769,-2.9939280759464393,-99.75115154674543,-3.0662698412729683,-99.02092936731813,-44.30429147739157,-146.7060053431088
-1678880281,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.9,2.9,29.98,22.55,56.8,30.8,1010.1,-29.565174699125603,-154.72538437745146,-2.9938847449411456,-99.75186403588981,-3.066186465646319,-99.02117760573323,-44.300776133466655,-146.6943334388765
-1678880291,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.1,3.1,30.0,22.55,56.8,30.8,1010.1,-29.565283612412298,-154.72459940802634,-2.993986734631902,-99.75202494738821,-3.0662169542208284,-99.02172649020537,-44.30665646433111,-146.69254438689774
-1678880301,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.5,3.7,29.98,22.55,56.8,30.7,1010.1,-29.564915368746192,-154.7245914603386,-2.9938126893600354,-99.75155621954934,-3.0663846739660854,-99.02227566450694,-44.304657465325974,-146.69871018109453
-1678880311,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.7,3.5,30.0,22.55,56.8,30.7,1010.1,-29.565197775376273,-154.7240789756329,-2.993923216557431,-99.75091268559194,-3.0664642215516285,-99.02256315729531,-44.30654408037678,-146.6980162790025
-1678880321,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.1,3.7,30.0,22.55,56.8,30.7,1010.1,-29.565180285229754,-154.7234445281176,-2.9939862463999005,-99.75163787966443,-3.066496503089016,-99.02116857055762,-44.304623836401255,-146.6954173246853
-1678880331,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,3.8,30.0,22.55,56.8,30.7,1010.1,-29.56501173722976,-154.72300713037313,-2.9938665207405153,-99.75149580650016,-3.066435494232848,-99.02056134291007,-44.307921835952,-146.686310057192
-1678880341,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.1,3.7,30.0,22.55,56.8,30.8,1010.0,-29.564681830320474,-154.72533260105678,-2.993831489832977,-99.75120795673932,-3.066368417009463,-99.0204789782959,-44.30466493831973,-146.68232285131927
-1678880351,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.8,3.4,30.0,22.55,56.8,30.8,1010.1,-29.564799548127535,-154.72622465641004,-2.993940912377497,-99.75043993385694,-3.066487294383922,-99.02071535640471,-44.303308559092045,-146.69310805538
-1678880361,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.6,3.3,30.0,22.55,56.8,30.8,1010.1,-29.564582689151784,-154.72635221427464,-2.9938549293491477,-99.75123786849376,-3.066512041755904,-99.02064396923201,-44.30473798414579,-146.68651849459812
-1678880371,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.4,2.8,30.0,22.55,56.8,30.8,1010.1,-29.563881742612207,-154.7278950598088,-2.993852395007189,-99.75172155971532,-3.066447379064203,-99.02084656595164,-44.30429234707839,-146.67569787269727
-1678880381,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.4,3.1,29.98,22.54,56.8,30.8,1010.2,-29.56424554587397,-154.72876501455985,-2.993746999265996,-99.75227355253524,-3.0666693152546554,-99.0204690502765,-44.30630658385542,-146.65999135229038
-1678880391,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.2,3.3,30.0,22.51,56.8,30.8,1010.1,-29.56439488932933,-154.72761291970883,-2.993729741077242,-99.75187030155186,-3.066653290440513,-99.02166239716789,-44.30496079480655,-146.65156629445272
-1678880401,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.3,2.8,29.97,22.48,56.8,30.9,1010.2,-29.564477639053784,-154.72428671938073,-2.993728391025189,-99.75281646978107,-3.0665895978182762,-99.02169307059376,-44.30648478150565,-146.66432339348952
-1678880411,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.5,3.2,29.97,22.46,56.8,30.9,1010.2,-29.56433353638449,-154.72314470266488,-2.9938032150416354,-99.75397879555429,-3.0664129886743376,-99.02160625541485,-44.307745762933905,-146.66561862547636
-1678880421,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.2,3.5,29.97,22.45,56.9,30.9,1010.2,-29.56425683259948,-154.72194092387195,-2.993808260491748,-99.75340539564726,-3.066358431623772,-99.02235506254341,-44.30748312659959,-146.65999590165757
-1678880431,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.6,3.4,29.97,22.43,56.8,31.0,1010.2,-29.564748329758643,-154.72263875539127,-2.993980710600874,-99.75381621734225,-3.0665089229092795,-99.02187116983322,-44.305605843680155,-146.6582639933162
-1678880441,30.0,30.0,55.0,55.0,0,1300000000,,,3,6.8,3.5,29.97,22.4,56.8,31.0,1010.2,-29.564752804728172,-154.72186693388144,-2.9938260507156604,-99.75367946384641,-3.066370526880911,-99.02231310246668,-44.30640550889728,-146.6585742399215
-1678880451,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.6,3.5,29.97,22.4,56.8,31.0,1010.2,-29.564874759022366,-154.72153358220058,-2.9939747557401777,-99.75293231766256,-3.066521033339688,-99.02264569600364,-44.30563078093867,-146.6556108598016
-1678880461,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.7,3.5,29.97,22.33,56.8,31.1,1010.2,-29.564678172591993,-154.72167291347563,-2.993956571855725,-99.75297234967861,-3.0665310259260394,-99.02283599407367,-44.30461106863277,-146.65584438959914
-1678880471,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,3.2,30.0,22.31,56.8,31.1,1010.3,-29.564475782633316,-154.72201356772686,-2.9939795099812176,-99.75306409494249,-3.066396461960015,-99.02345744007287,-44.306006296859934,-146.66120092465175
-1678880481,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.5,3.1,29.97,22.29,56.8,31.2,1010.3,-29.564637096320805,-154.71894128977084,-2.993857558602089,-99.75365644915072,-3.066289907436384,-99.02303064836849,-44.30530405685535,-146.66354678471083
-1678880491,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.8,3.8,29.98,22.27,56.7,31.2,1010.3,-29.56465109462002,-154.72030973571052,-2.9939270576668435,-99.75361816141519,-3.0662016417591165,-99.02303444807634,-44.3028452251248,-146.67329015114643
-1678880501,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.1,4.0,29.98,22.27,56.7,31.2,1010.3,-29.564414243183204,-154.72016867561834,-2.9938092463511037,-99.75337919548932,-3.066210860801741,-99.02303653798027,-44.30510194264034,-146.6604465323255
-1678880511,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.7,3.5,29.98,22.23,56.7,31.3,1010.3,-29.564155295370107,-154.7226527041444,-2.993837259789951,-99.7538162527398,-3.0663885113186224,-99.02317229026843,-44.30589131292394,-146.63709475776224
-1678880521,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.9,3.3,30.0,22.21,56.7,31.3,1010.4,-29.564229844534857,-154.7228615953575,-2.993888308948935,-99.75334464135447,-3.0661631734030204,-99.02314888643892,-44.30123928189275,-146.65568038568358
-1678880531,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,3.4,29.98,22.19,56.7,31.3,1010.3,-29.56395739918609,-154.72316039767173,-2.9937845244362964,-99.75342092097685,-3.066188928188254,-99.02296305090006,-44.302484175654506,-146.6579379143235
-1678880541,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.9,3.1,30.01,22.15,56.7,31.4,1010.4,-29.56355074374794,-154.72349894093588,-2.9938356567075664,-99.7538251487108,-3.066319998625321,-99.02230529363662,-44.30339312200387,-146.64879800875048
-1678880551,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.0,3.3,29.97,22.15,56.7,31.4,1010.5,-29.56430663498896,-154.71938456123928,-2.994051478109564,-99.75410386571664,-3.066256049706784,-99.02274057453624,-44.30472016888469,-146.65529371971814
-1678880561,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.6,2.5,29.97,22.11,56.8,31.4,1010.5,-29.56455294770131,-154.71838821525145,-2.993913778342513,-99.75451870661462,-3.066176937329498,-99.02380872806796,-44.30423522594139,-146.6439436629827
-1678880571,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.7,2.8,29.97,22.1,56.8,31.5,1010.4,-29.564326305662977,-154.71871096947652,-2.993961206751669,-99.75431070047505,-3.0661592698491025,-99.02324502210381,-44.30205712692416,-146.64682655874384
-1678880581,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.4,2.9,29.98,22.1,56.9,31.5,1010.5,-29.56386292799303,-154.7199730847078,-2.993718403837749,-99.75415700877205,-3.066223198902941,-99.02460390034784,-44.30222871158196,-146.65618747953883
-1678880591,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.1,3.3,29.97,22.08,56.8,31.6,1010.3,-29.563507350372294,-154.7179227089008,-2.9938919264073234,-99.75437388333722,-3.0662797399186177,-99.0244462965858,-44.30051029505219,-146.65208167077486
-1678880601,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.0,3.2,29.97,22.06,56.8,31.6,1010.5,-29.56421882716796,-154.71951726412948,-2.9937685630054025,-99.75503219276904,-3.0662762406587274,-99.02506091781548,-44.302940173265604,-146.64364947958032
-1678880611,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.0,3.6,29.97,22.06,56.7,31.6,1010.4,-29.56379512272809,-154.72069190526796,-2.993872254482766,-99.75486615840302,-3.0661786576511267,-99.02487812423455,-44.3000068987422,-146.6565823390338
-1678880621,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.9,3.2,29.96,22.06,56.8,31.6,1010.4,-29.564316534063572,-154.71949910380926,-2.993653530283875,-99.75624218721333,-3.0663642208253536,-99.02513530269458,-44.3039147879987,-146.63544548346133
-1678880631,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.5,3.7,29.97,22.06,56.8,31.6,1010.5,-29.56414852398055,-154.7185101251099,-2.9938065063251313,-99.75531750667456,-3.066168804236283,-99.02639563778796,-44.305975160914635,-146.61850462936815
-1678880641,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.4,3.3,29.97,22.05,56.7,31.6,1010.5,-29.56393109481533,-154.71884704533417,-2.993734554967831,-99.75679763369696,-3.0663209547714407,-99.02615973431797,-44.30856003686075,-146.62532502061927
-1678880651,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.5,3.7,29.97,22.04,56.7,31.6,1010.4,-29.564056894692804,-154.719201112732,-2.9936016066049747,-99.75627248610303,-3.0662036594461677,-99.02577071386214,-44.30519638480227,-146.63076319319626
-1678880661,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.5,4.3,29.97,22.04,56.7,31.6,1010.5,-29.564119296073834,-154.71571407129866,-2.993774166964474,-99.755817465901,-3.066366859967569,-99.02536956022875,-44.30461256281876,-146.63758473976208
-1678880671,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.3,4.0,29.97,22.04,56.7,31.6,1010.5,-29.563949886079797,-154.71699346495205,-2.993884585725687,-99.75597949185817,-3.06620170789646,-99.02578861774583,-44.30270479455898,-146.64577892152286
-1678880681,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.2,3.2,29.97,22.02,56.7,31.6,1010.4,-29.56398609945099,-154.71755535974927,-2.993746166494814,-99.75680002792258,-3.0662193976908303,-99.025132243989,-44.3049036626394,-146.64626283227824
-1678880691,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.2,3.8,29.98,22.02,56.7,31.7,1010.4,-29.56392901503186,-154.7177339313404,-2.9938382406182766,-99.75667465934366,-3.0665004661346975,-99.02605254176838,-44.30691120038834,-146.62038491032007
-1678880701,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.0,3.3,29.96,22.01,56.7,31.7,1010.4,-29.564300554425564,-154.71545688559297,-2.9938780411853623,-99.75702537921511,-3.0663403390257793,-99.02670081166744,-44.30935702011246,-146.62174197811365
-1678880711,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.2,3.4,29.97,22.01,56.7,31.7,1010.6,-29.564024221502272,-154.71497405339719,-2.993907690750159,-99.75778899493122,-3.066292206570307,-99.02683606510617,-44.30677976563157,-146.638703525758
-1678880721,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.7,3.8,29.97,22.02,56.7,31.7,1010.6,-29.564176309820912,-154.71310511912773,-2.9937877965496913,-99.75804844109084,-3.066331476689182,-99.02711034953003,-44.307539699498335,-146.6051446508589
-1678880731,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.5,3.9,29.97,22.01,56.7,31.7,1010.6,-29.56426104782797,-154.71220008068389,-2.9937397009057936,-99.75859590585144,-3.0663513531774638,-99.02705351988581,-44.30718378593521,-146.60886583246645
-1678880741,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.0,3.8,29.97,22.0,56.6,31.7,1010.6,-29.564236204544258,-154.71253839895422,-2.993922289648805,-99.75900425943783,-3.066246158373537,-99.02666345555515,-44.30758995082275,-146.6210471336385
-1678880751,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.0,4.0,29.97,22.01,56.6,31.7,1010.6,-29.564576034260458,-154.71115170904284,-2.993859414869637,-99.75826958532757,-3.06652908192392,-99.0271021288538,-44.305172932118765,-146.62392827032625
-1678880761,30.0,30.0,55.0,55.0,0,1300000000,,,3,6.1,3.8,29.98,22.02,56.7,31.7,1010.6,-29.563985651879126,-154.71455757478367,-2.9937610954337384,-99.75858298001798,-3.066419412634308,-99.02635487925784,-44.301281936978356,-146.63348249824062
-1678880771,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.6,3.7,29.97,22.04,56.7,31.6,1010.6,-29.56380203340541,-154.71523662384004,-2.9939760696572337,-99.75830018632568,-3.066289933021854,-99.02674129740898,-44.303017300799176,-146.62598588324497
-1678880781,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.4,3.9,29.97,22.04,56.7,31.6,1010.6,-29.563843389971915,-154.7153869540719,-2.9938951244736236,-99.75691311006075,-3.0665467266106425,-99.02720999655304,-44.30163743407316,-146.62872901452175
-1678880791,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.3,3.8,29.97,22.05,56.7,31.6,1010.5,-29.564111465917648,-154.71570838237784,-2.9938645258865244,-99.75726119361994,-3.0665686175545845,-99.02846284800734,-44.299992464838304,-146.62018942597234
-1678880801,30.0,30.0,55.0,55.0,0,1300000000,,,3,6.5,3.8,29.97,22.06,56.7,31.6,1010.5,-29.564140109834284,-154.7135331340657,-2.99394073682663,-99.75802111557459,-3.0662549714103915,-99.02805820561032,-44.29939309101243,-146.62900521327595
-1678880811,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.5,4.1,29.97,22.08,56.7,31.6,1010.5,-29.563810846318304,-154.7151633842671,-2.993965985698814,-99.75829299800473,-3.0663042887654965,-99.02815266737375,-44.30220228030335,-146.61012047847228
-1678880821,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.4,3.9,29.97,22.09,56.7,31.6,1010.6,-29.564118876008386,-154.71529984554934,-2.993967742729487,-99.75832326959288,-3.0663282146665742,-99.02891866119916,-44.30516907274474,-146.61318682832396
-1678880831,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.3,3.6,29.97,22.09,56.7,31.5,1010.6,-29.56353334606257,-154.7170240500015,-2.994049758272825,-99.75832074575744,-3.0662855403880815,-99.02848050892125,-44.300219978258696,-146.62729561088543
-1678880841,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.4,3.6,29.97,22.1,56.7,31.5,1010.5,-29.563845803953495,-154.7154822788218,-2.993802285197216,-99.75793425304232,-3.0664292337546035,-99.0285646888212,-44.30293685921665,-146.61289967376766
-1678880851,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.9,3.7,29.97,22.09,56.7,31.5,1010.5,-29.563648628348872,-154.71447628553162,-2.9938018708302265,-99.75838305450931,-3.0663100547278255,-99.02855883903624,-44.30356474706735,-146.61751591983034
-1678880861,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.3,3.3,29.97,22.1,56.7,31.5,1010.5,-29.56382871873496,-154.7152495410861,-2.993761301365987,-99.75897850920698,-3.066538763175695,-99.02860267726935,-44.301128771350164,-146.62334727219164
-1678880871,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.4,3.8,29.97,22.11,56.7,31.5,1010.5,-29.564119671592888,-154.71410545924047,-2.993847129738117,-99.75859286533367,-3.0663924608450506,-99.029351886774,-44.30154166437708,-146.62842998531806
-1678880881,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.2,3.8,29.97,22.12,56.7,31.5,1010.5,-29.564404593361736,-154.71107202987176,-2.9939775559038835,-99.75881726143135,-3.066427177335772,-99.02988422965917,-44.302357166482324,-146.61307807985966
-1678880891,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.1,3.4,29.97,22.13,56.8,31.5,1010.5,-29.564507242186178,-154.71032312124927,-2.9938176102883673,-99.75867259311474,-3.066456396436932,-99.03036525926022,-44.30472537839059,-146.61817112992935
-1678880901,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.2,3.5,29.96,22.14,56.8,31.4,1010.4,-29.56448610610465,-154.70926222806958,-2.9939483894119725,-99.75886204095339,-3.066482194484061,-99.03010506610414,-44.305649158393294,-146.61311588758892
-1678880911,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,3.5,29.96,22.15,56.8,31.4,1010.4,-29.564327541382042,-154.71153555407497,-2.9941372087452067,-99.75929981258852,-3.0664324791334217,-99.03015061194651,-44.30290549487718,-146.61221398261208
-1678880921,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.1,3.9,29.96,22.15,56.8,31.4,1010.4,-29.564197991113343,-154.71127030814583,-2.993876940653542,-99.75902611581039,-3.066558970643945,-99.0300709376372,-44.30215007537643,-146.60820308030847
-1678880931,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.5,3.6,29.97,22.15,56.8,31.4,1010.5,-29.564258696883456,-154.71111390987141,-2.994013017058264,-99.75867565910025,-3.0663313234626695,-99.03146215955316,-44.30245928030576,-146.61164008304272
-1678880941,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.1,3.9,29.94,22.17,56.8,31.4,1010.5,-29.56406848418308,-154.71223477429695,-2.9938405960793673,-99.7595254573788,-3.0662827550905343,-99.03143839303713,-44.30410785825977,-146.59651161296563
-1678880951,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.3,4.0,29.97,22.18,56.8,31.4,1010.5,-29.564215410726757,-154.71162521291035,-2.99394838047994,-99.75921801850932,-3.06618744233866,-99.03106699731056,-44.30376126014825,-146.5984224448572
-1678880961,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.1,3.9,29.98,22.19,56.7,31.4,1010.5,-29.563904426034465,-154.71093256120986,-2.9940333458036044,-99.75989633268645,-3.066274522926014,-99.03016829248001,-44.30548674030133,-146.59320553171116
-1678880971,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.1,4.1,30.0,22.2,56.7,31.4,1010.5,-29.564317729279672,-154.7094271456174,-2.9939334345424387,-99.75997691657098,-3.066316321980995,-99.03002499449944,-44.30163969278973,-146.59124505250315
-1678880981,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.0,3.9,29.98,22.21,56.7,31.3,1010.5,-29.564562863831235,-154.71095551080703,-2.993992657727984,-99.75965823418426,-3.066291127490836,-99.03068734795457,-44.30272054607583,-146.60186715355206
-1678880991,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.8,3.4,30.0,22.23,56.7,31.3,1010.5,-29.563673921465508,-154.71165147402283,-2.9938574418129535,-99.75892107327844,-3.0663151664716786,-99.03096528126264,-44.30350469531745,-146.59824409242017
-1678881001,30.0,30.0,55.0,55.0,0,1300000000,,,3,6.4,4.0,29.98,22.24,56.8,31.3,1010.5,-29.564046499374005,-154.70899022387908,-2.9939290157945515,-99.75934303090865,-3.066084307827846,-99.03149161372484,-44.30461776029553,-146.59302958275
-1678881011,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.0,2.9,29.98,22.25,56.8,31.3,1010.5,-29.563898949073263,-154.71041684482708,-2.9940895364540463,-99.75905717849686,-3.0661417897887793,-99.03170779936083,-44.30122954676271,-146.6169880235575
-1678881021,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.6,3.6,29.98,22.27,56.9,31.3,1010.5,-29.563463016766924,-154.70950579613265,-2.99387193421559,-99.7589939282742,-3.0662167838478087,-99.03110507018144,-44.301980329478646,-146.61011650393206
-1678881031,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.4,3.5,29.97,22.27,56.8,31.3,1010.5,-29.56366289526359,-154.71232720288944,-2.9940232999284273,-99.75944538060955,-3.0662735777475962,-99.03142614768903,-44.30066684122157,-146.6198679998432
-1678881041,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.7,3.3,29.97,22.28,56.9,31.2,1010.4,-29.563248799120622,-154.71601795831992,-2.9940346035988656,-99.76009413046421,-3.066215199336538,-99.03101528273434,-44.29903297633863,-146.61280683572363
-1678881051,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.5,3.9,29.97,22.29,56.9,31.2,1010.5,-29.56326105584372,-154.71513103029216,-2.993957282393736,-99.76052591939636,-3.066426388068886,-99.03136224148653,-44.29856202829768,-146.61090400800802
-1678881061,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.5,3.8,29.97,22.3,56.9,31.2,1010.5,-29.563200622525923,-154.7127128627341,-2.9940673472547963,-99.75969247905653,-3.066314420212362,-99.03128529560398,-44.30111029720078,-146.61687263791208
-1678881071,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.0,3.5,29.98,22.31,56.8,31.2,1010.4,-29.56365295179822,-154.71470421036,-2.993923502625738,-99.76045581271202,-3.066381752868695,-99.03110200010599,-44.29971739929877,-146.6053804833936
-1678881081,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.9,3.5,29.98,22.32,56.8,31.2,1010.5,-29.563462976165905,-154.71277703178,-2.9940424361537437,-99.76008660521663,-3.0662760489335374,-99.0315782637621,-44.301642630117584,-146.60264472290663
-1678881091,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.6,3.3,29.97,22.33,56.8,31.2,1010.5,-29.563003644059982,-154.71337115928986,-2.9938927596644733,-99.76079611553308,-3.0662640998970563,-99.03154060932476,-44.303663528789315,-146.5982102146745
-1678881101,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.4,3.7,29.97,22.33,56.9,31.2,1010.6,-29.563117967214907,-154.711028762657,-2.9940010030382354,-99.76098539482871,-3.066065967599868,-99.0313314877621,-44.30101382560076,-146.6081957368556
-1678881111,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.4,3.4,29.94,22.34,56.9,31.2,1010.5,-29.563334720035897,-154.70951116072254,-2.9940464311063577,-99.76176152515434,-3.066147886183675,-99.0312436057903,-44.30212520584223,-146.58911759840228
-1678881121,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.2,3.1,29.97,22.35,56.9,31.1,1010.5,-29.56289052461753,-154.70789770772058,-2.9939852740315276,-99.76059722349913,-3.0661733924595076,-99.03092383052842,-44.30174670461519,-146.58158574386465
-1678881131,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.8,3.3,29.97,22.36,56.9,31.1,1010.6,-29.562540181911846,-154.71063165842307,-2.993932809551152,-99.76092826691563,-3.0663159969550664,-99.03102036737562,-44.30303148776299,-146.59352249675237
-1678881141,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.6,3.2,29.97,22.38,57.0,31.1,1010.6,-29.56301313974286,-154.70962344408647,-2.99399272691254,-99.76144768609474,-3.0661767898431034,-99.03147872956954,-44.30466560967357,-146.58708551255097
-1678881151,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.8,3.2,29.97,22.38,56.9,31.1,1010.6,-29.5634818319318,-154.70722955885648,-2.9940902041254294,-99.7610547478243,-3.0661509640359426,-99.03181150100446,-44.305195569996044,-146.5731182508436
-1678881161,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.1,3.5,29.98,22.39,56.9,31.1,1010.6,-29.563771275377533,-154.70821398768376,-2.994134503147527,-99.76053550355672,-3.0661265675708775,-99.03210423225842,-44.30281764272248,-146.58588825882796
-1678881171,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.5,3.1,29.97,22.39,56.9,31.1,1010.6,-29.56349759048861,-154.70864192050908,-2.9939960258809335,-99.76113692598388,-3.0662477160908046,-99.03126212815975,-44.302617766837415,-146.56854643323587
-1678881181,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.8,3.1,29.97,22.39,56.9,31.1,1010.6,-29.563656287547303,-154.70594273444064,-2.9939177699998214,-99.76157837777633,-3.066232802353234,-99.03248299150316,-44.30525364423111,-146.56180042088707
-1678881191,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.7,3.0,29.97,22.39,57.0,31.1,1010.5,-29.5634385482054,-154.70700822622067,-2.9940206308226927,-99.76135977113748,-3.0661535067068044,-99.03280611879111,-44.30288984176288,-146.58570324903823
-1678881201,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.8,2.8,29.96,22.4,57.0,31.1,1010.5,-29.56328833788405,-154.71023943709258,-2.993855321537616,-99.76187551870531,-3.0661961063351018,-99.03369863409365,-44.302412930165936,-146.58572457180452
-1678881211,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.9,3.5,29.97,22.4,57.0,31.1,1010.5,-29.563040754666513,-154.71007123715594,-2.9940159970172484,-99.76202464144768,-3.0661749198751935,-99.03276497707965,-44.302088191184694,-146.58051118957337
-1678881221,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.4,3.6,29.97,22.41,56.9,31.0,1010.5,-29.563227267385717,-154.70982034897395,-2.994018141176418,-99.76143793692516,-3.066168798776867,-99.03290613787476,-44.30299073653573,-146.5836827803057
-1678881231,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.3,3.7,29.97,22.41,56.9,31.0,1010.5,-29.563806156849814,-154.70555717092398,-2.9941743788393382,-99.76060231315938,-3.0662900375362807,-99.03290462360111,-44.305689689591496,-146.56715836526675
-1678881241,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.5,3.3,30.0,22.42,56.9,31.0,1010.5,-29.563362965908134,-154.7087043167836,-2.994127649665626,-99.75959963494014,-3.0664718773924236,-99.03230698493938,-44.30409892647799,-146.56695028251073
-1678881251,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.3,3.3,29.98,22.42,56.9,31.0,1010.5,-29.562920923251433,-154.71041669880512,-2.9939587125014677,-99.75951940096202,-3.0663669736192927,-99.03232414386441,-44.29983780101513,-146.5823218209388
-1678881261,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.1,3.2,29.98,22.43,56.9,31.0,1010.5,-29.56289863884112,-154.71057411855273,-2.9938088430277814,-99.76026574943602,-3.0663241332892093,-99.03155520736922,-44.299077899902144,-146.58081005255954
-1678881271,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.6,3.3,29.98,22.44,56.9,31.0,1010.5,-29.56300314717854,-154.70946156632672,-2.9939297947040853,-99.76006681163203,-3.0662527562536117,-99.03156482984691,-44.2964902503991,-146.58598195589164
-1678881281,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.7,3.4,29.98,22.44,56.9,31.0,1010.5,-29.56291804573578,-154.7096641550134,-2.9939332371814666,-99.76005104475207,-3.066220511693387,-99.03134113351678,-44.299524918002895,-146.58606189818903
-1678881291,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.2,3.8,29.98,22.44,56.9,31.0,1010.5,-29.56306080581349,-154.708010980244,-2.9941326461928073,-99.76026524681313,-3.0660920763245314,-99.03105201283387,-44.29753139792757,-146.58652280733693
-1678881301,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.7,3.1,30.0,22.45,56.9,31.0,1010.4,-29.563173719124745,-154.70959913363166,-2.9939874702199223,-99.76089526362237,-3.0661255175494144,-99.0309304679822,-44.297835000456615,-146.56242512312951
-1678881311,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.2,3.3,29.97,22.45,56.9,31.0,1010.4,-29.562444537566023,-154.70852633791927,-2.9940639912206386,-99.76045622937062,-3.0661947790019433,-99.03122849259125,-44.300347266931695,-146.5718726809511
-1678881321,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.3,3.2,29.97,22.45,56.9,31.0,1010.5,-29.563147287501806,-154.7066521773608,-2.9941275123730318,-99.76029355163506,-3.066324574930812,-99.03166899682942,-44.298643589557074,-146.55017686215797
-1678881331,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.6,2.5,29.97,22.45,56.9,31.0,1010.5,-29.56333364361578,-154.7044610297915,-2.9939451716524452,-99.76061951588851,-3.0662313854497807,-99.03270956891745,-44.303268687005186,-146.5455731665469
-1678881341,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,2.1,29.97,22.44,56.9,31.0,1010.5,-29.56323579203529,-154.7034853918584,-2.9938529699477012,-99.76219495779767,-3.066327997715923,-99.03230590802377,-44.30241365007805,-146.5486979861677
-1678881351,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.3,3.2,29.97,22.45,57.0,31.0,1010.5,-29.56299800019616,-154.70772200867532,-2.9938901954421193,-99.76188217846548,-3.066297509899509,-99.03304750297568,-44.30092081024262,-146.55336520088028
-1678881361,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.4,3.2,29.98,22.46,56.9,31.0,1010.6,-29.5628205379475,-154.70693741798968,-2.993947007261638,-99.762245115576,-3.066355793351832,-99.03213133819024,-44.30186384248593,-146.53817669390457
-1678881371,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.3,3.3,29.97,22.46,56.9,31.0,1010.5,-29.562954782633184,-154.70630867677923,-2.9940503875397253,-99.76264339065811,-3.066276648710752,-99.03257024313108,-44.303413310327066,-146.54228401580176
-1678881381,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.1,3.5,29.97,22.49,56.9,31.0,1010.5,-29.56298379253088,-154.70519901167694,-2.994089312237571,-99.7630254274614,-3.066174883831756,-99.03237121413997,-44.30235879441726,-146.5632790359744
-1678881391,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.6,3.9,29.97,22.49,56.9,30.9,1010.5,-29.563354191554645,-154.70565380978874,-2.993943720212278,-99.76303200174048,-3.0662433363787853,-99.0325473868891,-44.302086599853226,-146.56348319573803
-1678881401,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,3.5,29.98,22.5,56.8,30.9,1010.5,-29.563386757483453,-154.70433729512462,-2.993807314126586,-99.76313949506418,-3.066436521836546,-99.03268413768787,-44.30275260073308,-146.5463668211645
-1678881411,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.1,2.9,29.97,22.49,56.8,30.9,1010.5,-29.56353313650694,-154.7033267208941,-2.994239485127685,-99.76385379113141,-3.0661743657023917,-99.0329941927538,-44.30339326153905,-146.54360147314307
-1678881421,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.0,3.6,29.98,22.5,56.9,30.9,1010.5,-29.56364537983285,-154.70107241289884,-2.9941609184790514,-99.7636065080901,-3.066153198327971,-99.03331207538429,-44.30547894965173,-146.54520812226792
-1678881431,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.5,3.6,29.98,22.5,56.8,30.9,1010.4,-29.563677393055908,-154.7022934671212,-2.994210885586242,-99.76335748083142,-3.066202090711203,-99.03375296934819,-44.30527257168315,-146.5357240338656
-1678881441,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.0,3.5,29.97,22.5,56.8,30.9,1010.5,-29.563458116799758,-154.70317638232737,-2.9941084255128607,-99.76415157345853,-3.066298621434649,-99.03419425034144,-44.304002853759215,-146.53441441942797
-1678881451,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.9,3.6,29.97,22.5,56.8,30.9,1010.4,-29.563924075672034,-154.7022225853598,-2.9940213769630604,-99.7647426687689,-3.066214114291616,-99.03444825272106,-44.30429237430943,-146.51643523344316
-1678881461,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.6,3.6,29.98,22.49,56.8,30.9,1010.5,-29.564488467214574,-154.6998230430258,-2.994055108409184,-99.76425393995062,-3.0661738876257467,-99.03423624613654,-44.30659496595148,-146.49391684265944
-1678881471,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.7,3.2,30.0,22.49,56.8,30.9,1010.5,-29.564634695541496,-154.69806954829187,-2.9941331341161916,-99.76432764253636,-3.066200830929034,-99.03470797843654,-44.30675539183383,-146.5021560448356
-1678881481,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.6,3.2,29.98,22.49,56.8,30.9,1010.4,-29.564009760979957,-154.69888745483573,-2.993962389766563,-99.76418508899525,-3.0664499106211047,-99.03494303098869,-44.30776634508578,-146.49539244276073
-1678881491,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.5,3.1,29.98,22.49,56.9,30.9,1010.5,-29.5647336039768,-154.69595213325064,-2.994051443832726,-99.76456387041792,-3.0663048599456855,-99.03527915530023,-44.30629499302192,-146.50281431266583
-1678881501,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.7,2.7,29.97,22.49,56.9,30.9,1010.4,-29.56458015175373,-154.69644835276873,-2.994058496758857,-99.76494438529468,-3.066371998198136,-99.03525933260802,-44.304694177730404,-146.49925124986743
-1678881511,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.2,3.4,29.97,22.5,56.9,30.9,1010.5,-29.56541117002729,-154.694590279436,-2.9941745665507584,-99.76576119017867,-3.0663598529263867,-99.03565954435715,-44.30835274220695,-146.49362204598387
-1678881521,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.3,3.3,29.97,22.5,56.9,30.9,1010.4,-29.5652882801253,-154.69515413275388,-2.9941311448943626,-99.7652052228054,-3.066373328096689,-99.0352483677849,-44.30834340617743,-146.48987363871018
-1678881531,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.7,3.1,29.97,22.5,56.9,30.9,1010.5,-29.564613210616283,-154.69899648070347,-2.993988980558827,-99.76574738366693,-3.066209343089339,-99.03488748001207,-44.305789417004874,-146.48400919442093
-1678881541,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.5,3.6,29.97,22.5,56.9,30.9,1010.4,-29.564894412519756,-154.69556923924844,-2.9940409322960355,-99.76583262298156,-3.066250316133118,-99.03473086942446,-44.30759148537646,-146.46474051213073
-1678881551,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.7,3.3,29.97,22.51,56.9,30.9,1010.5,-29.564799613797938,-154.69585201721753,-2.994026312515383,-99.76558460933705,-3.0663278810222465,-99.03461544549845,-44.30856894516254,-146.4767240298877
-1678881561,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,3.0,29.97,22.53,56.8,30.9,1010.5,-29.564418187907794,-154.69824474202326,-2.9939363145069207,-99.76493784520271,-3.066496617925579,-99.03614742729043,-44.31196841776135,-146.48734663945484
-1678881571,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.4,3.6,29.98,22.54,56.8,30.9,1010.5,-29.565417519632057,-154.69314487887158,-2.994107837542418,-99.76609887903284,-3.066471825532138,-99.03545306407196,-44.31080514440979,-146.47856145761784
-1678881581,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.0,2.6,29.98,22.54,56.8,30.9,1010.5,-29.564934758015525,-154.69581789598297,-2.9940762581522673,-99.76584598415623,-3.066349497924732,-99.03651135329036,-44.30483489929156,-146.5018783213001
-1678881591,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.8,3.2,29.97,22.54,56.8,30.9,1010.5,-29.565323454412066,-154.69382418108952,-2.994337363710511,-99.76653287046298,-3.066458086138994,-99.03554015917109,-44.30855449070526,-146.48236478938688
-1678881601,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.9,4.1,29.98,22.55,56.8,30.9,1010.5,-29.565059783902583,-154.69156893634414,-2.994237206425627,-99.76537272477434,-3.0664749885545053,-99.03565569669368,-44.31104915563915,-146.47406781806055
-1678881611,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.0,3.3,30.0,22.55,56.8,30.9,1010.5,-29.565375368695133,-154.6909669412287,-2.994192970246734,-99.76545822432297,-3.0665612017747113,-99.03598731486998,-44.30900599711435,-146.4654377719742
-1678881621,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.1,3.1,30.01,22.55,56.8,30.9,1010.5,-29.56554645196849,-154.69071155530466,-2.9941971161529066,-99.76589184268867,-3.066550218005939,-99.03576219683445,-44.30748281802367,-146.47912415080185
-1678881631,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.4,3.1,30.0,22.55,56.8,30.9,1010.5,-29.565383229845395,-154.68984984066333,-2.9941066076919167,-99.7649768562504,-3.0665378491879727,-99.03583847982459,-44.30848265330951,-146.4717801120553
-1678881641,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.9,3.5,30.0,22.55,56.8,30.9,1010.5,-29.565292114637103,-154.69055518274317,-2.994246367930897,-99.76478945379479,-3.0665209638189523,-99.0349231155144,-44.30825735875641,-146.46750504066986
-1678881651,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.2,3.7,30.0,22.55,56.8,30.8,1010.5,-29.565041364979777,-154.69329708264604,-2.9941050971327083,-99.7644491684489,-3.0665316318228335,-99.03443680340443,-44.30672371965106,-146.46933434200696
-1678881661,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.6,3.1,30.01,22.55,56.8,30.8,1010.5,-29.564903132916744,-154.69390622857208,-2.9942346131398296,-99.76474820494161,-3.066612910774226,-99.03482134541773,-44.31017147855438,-146.4756229333259
-1678881671,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.4,3.3,30.01,22.56,56.8,30.8,1010.4,-29.565162629100197,-154.69118366345424,-2.994354713179259,-99.7651645042519,-3.0666166782698383,-99.03568380943932,-44.30869398372351,-146.46838444575502
-1678881681,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.5,2.9,30.0,22.56,56.8,30.8,1010.5,-29.56522336306518,-154.68890969190863,-2.994079309588627,-99.76563183046356,-3.0667682035866886,-99.03572312794479,-44.31273694812913,-146.46585119512997
-1678881691,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.4,3.4,30.0,22.58,56.8,30.8,1010.5,-29.565512271736264,-154.68874165221487,-2.9942713974191584,-99.76596557539116,-3.066610263331859,-99.03678694951844,-44.30981197283842,-146.45498266968448
-1678881701,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.4,3.6,30.01,22.57,56.7,30.8,1010.5,-29.566175972239005,-154.68834759157326,-2.9942240172615926,-99.76691844803324,-3.0666409514930764,-99.03764164017946,-44.31484893583206,-146.43396424736636
-1678881711,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.5,3.4,30.0,22.55,56.8,30.8,1010.5,-29.566021162837547,-154.68739365268638,-2.994134835660798,-99.76686013011455,-3.066806314493062,-99.0376048482566,-44.315681902234196,-146.43806420545542
-1678881721,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.1,3.3,29.98,22.55,56.7,30.8,1010.6,-29.56575458663304,-154.68745202796117,-2.993978895565968,-99.76770327436077,-3.0666913296401486,-99.03713643770901,-44.31527589465692,-146.420768557779
-1678881731,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.4,2.9,29.98,22.48,56.8,30.9,1010.6,-29.56573880934222,-154.6867398674547,-2.9940023933929516,-99.76730853188542,-3.066634766718007,-99.03724708350555,-44.31465394506528,-146.43577024206655
-1678881741,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.4,3.4,29.98,22.44,56.8,31.0,1010.5,-29.56588363796074,-154.68735332546674,-2.9940578491295335,-99.76754922259323,-3.066428228798835,-99.03810724595567,-44.31316894943534,-146.4298349517368
-1678881751,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.8,3.3,30.0,22.43,56.7,31.0,1010.5,-29.566117264033075,-154.68361848782013,-2.994112045092887,-99.7679708880286,-3.066640494816336,-99.03795969669409,-44.3176203013288,-146.42415322803177
-1678881761,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.0,3.2,29.98,22.4,56.8,31.1,1010.4,-29.56631869613127,-154.68555898206745,-2.9940886047173882,-99.76879696523753,-3.0667698703340927,-99.03728786851741,-44.31746799681494,-146.40953240881916
-1678881771,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.7,3.4,30.0,22.38,56.8,31.1,1010.5,-29.565917861241356,-154.68326342568002,-2.9939564761327757,-99.76872084163764,-3.0666375430381807,-99.03695829056085,-44.31687069182263,-146.41500158068354
-1678881781,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.5,3.3,30.0,22.36,56.8,31.1,1010.5,-29.56616331411393,-154.68525679425994,-2.99394954509601,-99.7685398454505,-3.066639254997571,-99.0381433662878,-44.317167882400085,-146.4039772804028
-1678881791,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.1,3.2,29.98,22.35,56.8,31.2,1010.5,-29.566514710865196,-154.68396440546408,-2.9938976993376842,-99.76920299989776,-3.0665634264940063,-99.03818545127253,-44.316247033798845,-146.40841495804486
-1678881801,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.1,2.7,29.98,22.31,56.8,31.2,1010.6,-29.56673651802413,-154.68240342241415,-2.9940771592726896,-99.76931670454567,-3.066560680761704,-99.03795932206786,-44.317461295440104,-146.40658742963953
-1678881811,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.5,3.4,29.98,22.29,56.8,31.2,1010.5,-29.566849041041525,-154.68423263371034,-2.9942732860174726,-99.77001385210603,-3.066630295798505,-99.03797757984859,-44.31939311768005,-146.40724348109913
-1678881821,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,3.4,30.0,22.27,56.8,31.3,1010.5,-29.56634409110265,-154.68315078488365,-2.9941081488806165,-99.76964051230371,-3.066667120038308,-99.03724844195695,-44.31820694779973,-146.402911517568
-1678881831,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.4,3.5,30.0,22.24,56.8,31.3,1010.6,-29.56639763402054,-154.68169160093225,-2.9939371939065573,-99.76970026954612,-3.0667922328364687,-99.0376083779948,-44.3195524556307,-146.39496702087678
-1678881841,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.6,3.2,30.01,22.2,56.8,31.4,1010.5,-29.566186573850747,-154.6833906073711,-2.9941441016795487,-99.76885672067418,-3.0665848122044204,-99.0380145756965,-44.3171959406299,-146.4070183539163
-1678881851,30.0,30.0,55.0,55.0,0,1300000000,,,3,6.8,3.6,30.0,22.19,56.8,31.4,1010.5,-29.5662893678603,-154.6842571962276,-2.9940238119921365,-99.76856727254469,-3.0667213042039183,-99.0378521111142,-44.316716772715814,-146.4004613058481
-1678881861,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.5,3.5,30.01,22.14,56.8,31.4,1010.5,-29.566118031594264,-154.6842657009666,-2.9938212088556133,-99.76865377953585,-3.0666138677928862,-99.03800756030977,-44.31535523458802,-146.41002640494517
-1678881871,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.3,3.6,30.01,22.13,56.8,31.5,1010.5,-29.566314055748492,-154.6824204369416,-2.993893413952299,-99.7681619793889,-3.0664986269152976,-99.03840086510967,-44.31254620999134,-146.41574942664963
-1678881881,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.9,3.6,30.0,22.09,56.8,31.5,1010.5,-29.566541376192426,-154.68312255631434,-2.993995543596305,-99.76887047351067,-3.0664471089497574,-99.03862680234181,-44.31438166217038,-146.41726896981112
-1678881891,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.7,3.1,30.01,22.04,56.8,31.6,1010.6,-29.566682574854116,-154.68031622665623,-2.994090982041058,-99.76906694484266,-3.0666975545506405,-99.03845412972451,-44.31797197029386,-146.41227118990537
-1678881901,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.8,3.2,29.98,22.03,56.8,31.7,1010.5,-29.567162796614554,-154.6794730056546,-2.994030598741408,-99.76957482357977,-3.0666483136644986,-99.03865573812833,-44.32057680463266,-146.40177510562302
-1678881911,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.9,3.0,29.97,22.03,56.8,31.7,1010.6,-29.566760169354648,-154.6832230235625,-2.9940216690740167,-99.76892459507722,-3.0666283449901197,-99.03936012217363,-44.31667918692884,-146.4140083044957
-1678881921,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.0,3.4,29.97,21.98,56.8,31.7,1010.5,-29.566404586051448,-154.68188347036565,-2.9941331751539106,-99.76917773577588,-3.066758982486787,-99.03990017901661,-44.31907018313329,-146.4062937089399
-1678881931,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.6,3.0,29.97,21.99,56.8,31.7,1010.6,-29.5667145322562,-154.68023442515005,-2.994253569426795,-99.76988420437027,-3.0664626050157597,-99.0399728399788,-44.31593993420131,-146.40315432601668
-1678881941,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.5,3.6,30.0,21.98,56.8,31.7,1010.5,-29.567151589827052,-154.6791672213799,-2.994202467549317,-99.77024451591343,-3.0664929462818318,-99.03988711326517,-44.31515780253725,-146.4137415532926
-1678881951,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.8,3.3,30.0,21.95,56.8,31.8,1010.5,-29.56754038577706,-154.67750717614535,-2.994315136372772,-99.77023898584336,-3.0663895021952237,-99.04000819717696,-44.314260555231435,-146.4172706066574
-1678881961,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.5,3.3,30.0,21.9,56.7,31.9,1010.6,-29.56711103195385,-154.67906183036376,-2.9942189174792464,-99.76987861173646,-3.066428590580979,-99.04089949080628,-44.31372838063473,-146.4046771916262
-1678881971,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.1,3.6,29.98,21.91,56.7,31.9,1010.6,-29.566928655515948,-154.67921081048993,-2.9942149331903503,-99.76911219758834,-3.0664643692042897,-99.04066896551744,-44.31676128460794,-146.38355576263936
-1678881981,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.7,3.8,29.98,21.89,56.7,31.9,1010.6,-29.5668336683296,-154.67818278098187,-2.9942368646920388,-99.76980677324775,-3.066679821318401,-99.03992409133085,-44.31764667161243,-146.40593668605953
-1678881991,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.6,3.4,30.0,21.9,56.7,31.9,1010.6,-29.566953134950033,-154.67797113762742,-2.994480542357211,-99.76993126456219,-3.066562764403342,-99.04005092959723,-44.3158066935431,-146.42078000777357
-1678882001,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.6,3.8,29.98,21.88,56.7,31.9,1010.5,-29.566986727054886,-154.67732007147376,-2.994323923302214,-99.76908024710052,-3.066634929381628,-99.04010143421333,-44.31603639582277,-146.41326425924692
-1678882011,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.9,3.9,30.0,21.87,56.7,31.9,1010.5,-29.56711650053901,-154.6779751227641,-2.994410208387591,-99.77001851495831,-3.0665126776905054,-99.0405574400801,-44.31609116086111,-146.4020243391227
-1678882021,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.5,3.9,30.01,21.88,56.7,31.9,1010.5,-29.56680025183937,-154.68026029010645,-2.9942747562607686,-99.76995957022348,-3.0664979184387087,-99.03965493616877,-44.31350217324166,-146.38840601696091
-1678882031,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.6,3.9,30.01,21.87,56.7,31.9,1010.6,-29.5666127953216,-154.67897412957888,-2.9944820076491796,-99.76920081037905,-3.0666707871014247,-99.03974743644048,-44.31388538125831,-146.402258585565
-1678882041,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.9,3.7,30.0,21.86,56.7,31.9,1010.5,-29.566638756723588,-154.6784347471822,-2.9943897214490702,-99.76969716687071,-3.0665132221661198,-99.03983715067366,-44.31433709146741,-146.39866099280192
-1678882051,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.2,3.5,29.98,21.88,56.7,31.9,1010.6,-29.56636752453635,-154.67843017652896,-2.994262287246181,-99.77028410727057,-3.0666921616985823,-99.040498466342,-44.31336590244321,-146.41027499123044
-1678882061,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.1,3.6,29.98,21.9,56.7,31.9,1010.5,-29.566724490771623,-154.67620468470628,-2.9944363561184586,-99.77046408529638,-3.066534150955892,-99.0408126500954,-44.314222555780376,-146.39709940293636
-1678882071,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.3,3.4,29.97,21.9,56.7,31.9,1010.5,-29.567049290315563,-154.67551268213174,-2.9943959186596776,-99.77082888255624,-3.0665457982834665,-99.04096704203302,-44.31119662608598,-146.39502342641072
-1678882081,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.6,3.9,29.97,21.88,56.7,31.9,1010.6,-29.566741761630333,-154.67703685539476,-2.994380280118525,-99.77065056226408,-3.0666172502561846,-99.04055709041047,-44.313860343131566,-146.38826251998393
-1678882091,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.4,4.0,29.97,21.9,56.6,31.9,1010.5,-29.566656686762272,-154.67960163797778,-2.994477218903611,-99.77161596623138,-3.066525163726171,-99.04017795993373,-44.31605140082119,-146.385313230735
-1678882101,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.6,4.3,30.0,21.91,56.6,31.9,1010.6,-29.566668494366972,-154.6773312090928,-2.994409404798443,-99.77057102417128,-3.0666310246908224,-99.03914430265688,-44.31276415433548,-146.40254552431372
-1678882111,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.3,3.5,30.01,21.93,56.6,31.9,1010.5,-29.566551378295387,-154.67776852619613,-2.994279459194601,-99.77016666963942,-3.066621690252475,-99.03997638627362,-44.313106569905244,-146.40900929066905
-1678882121,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.2,3.8,30.0,21.95,56.5,31.8,1010.6,-29.565957489176604,-154.68196686399952,-2.994367119297039,-99.76951447232746,-3.0665707942893534,-99.03983753788151,-44.310343311800644,-146.4236234650675
-1678882131,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.3,3.9,29.98,21.96,56.6,31.8,1010.6,-29.566057564156548,-154.68000841419308,-2.9942664469870794,-99.76986428710784,-3.066539326452939,-99.04019884742615,-44.31181608939159,-146.41790019359624
-1678882141,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.8,3.5,29.97,21.99,56.6,31.7,1010.5,-29.566316397124382,-154.6790788983763,-2.994338724207482,-99.77021871061498,-3.0665414462592686,-99.04068904015934,-44.31418287502452,-146.40583984316316
-1678882151,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.2,3.5,30.0,21.99,56.7,31.7,1010.6,-29.566840896942942,-154.67854095411522,-2.9943798383112723,-99.77056766319997,-3.0664168462394663,-99.04149066878034,-44.313811024770764,-146.40501525417517
-1678882161,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.0,3.3,30.0,22.0,56.7,31.7,1010.6,-29.566276597180327,-154.67987899708052,-2.994468273362767,-99.7713852678356,-3.0663587064680526,-99.04054444838657,-44.31340570755899,-146.40421855554717
-1678882171,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.1,3.7,29.97,22.01,56.7,31.7,1010.6,-29.565697440400456,-154.68156253503886,-2.9941422633272157,-99.77164449694509,-3.066273905022265,-99.04101797193034,-44.314810508717514,-146.39414477593377
-1678882181,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,3.8,29.98,22.02,56.7,31.7,1010.6,-29.566308623472835,-154.6739410572433,-2.994251466090268,-99.7720400447715,-3.066405379174197,-99.0410353790362,-44.31507472042516,-146.401531678983
-1678882191,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.6,3.8,29.98,22.02,56.7,31.7,1010.5,-29.566449659719858,-154.67520769233036,-2.9941773466755848,-99.77242070061119,-3.0664482430979585,-99.04121061985884,-44.314260323167275,-146.39523720951598
-1678882201,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,3.5,29.98,22.03,56.7,31.7,1010.7,-29.566758887903106,-154.676330234777,-2.994449944686534,-99.77184462960736,-3.0666350745540516,-99.04153539645996,-44.31737518387345,-146.38838256599763
-1678882211,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,3.9,30.0,22.03,56.7,31.7,1010.6,-29.56618826201086,-154.67806459002196,-2.994306320968522,-99.77175024195027,-3.066378201592354,-99.04171124963055,-44.316485049587996,-146.37910793620728
-1678882221,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.1,4.0,30.0,22.05,56.7,31.7,1010.6,-29.56613656414124,-154.67568145295033,-2.9944170182407106,-99.77217894098837,-3.066428274443502,-99.04163704897495,-44.31745758668539,-146.39573984986768
-1678882231,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.9,3.6,29.98,22.05,56.7,31.7,1010.6,-29.5671202074084,-154.6761597069566,-2.9943582337955204,-99.77358203715366,-3.06642576301868,-99.04167477027276,-44.31754281998557,-146.37346907577123
-1678882241,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.3,3.7,30.0,22.06,56.7,31.6,1010.6,-29.56644879787209,-154.67757958921027,-2.9942515549944377,-99.77228958682473,-3.066547904284838,-99.04186077933777,-44.316887502795865,-146.38549800984873
-1678882251,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,3.6,30.0,22.08,56.7,31.6,1010.6,-29.5668116414272,-154.67782285167874,-2.9941463115577354,-99.77298971687566,-3.0666332577277453,-99.04164302415859,-44.317693849881515,-146.37256354737295
-1678882261,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.7,3.1,29.97,22.09,56.7,31.6,1010.6,-29.56669307003263,-154.67678517128388,-2.994249211206523,-99.77276834372326,-3.066493548105772,-99.04326035724809,-44.31991909842487,-146.37854981435024
-1678882271,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.6,3.9,29.97,22.1,56.7,31.6,1010.6,-29.5667217081299,-154.67750477386468,-2.9943970280896517,-99.77307663679889,-3.0665727694219047,-99.04340803181292,-44.31656461773742,-146.39611587618083
-1678882281,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.5,4.0,29.96,22.11,56.7,31.6,1010.6,-29.56703637637672,-154.6731906284036,-2.9944436328250754,-99.77363687734488,-3.0665787514291196,-99.04283589644353,-44.3182682226702,-146.3767953993647
-1678882291,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.6,4.3,29.97,22.11,56.7,31.5,1010.6,-29.56692125657028,-154.6742451213357,-2.9944207077625435,-99.77394886639439,-3.0663474501669925,-99.04246137731046,-44.316038368007035,-146.38455706708513
-1678882301,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.0,4.8,29.97,22.12,56.6,31.5,1010.6,-29.566612339576864,-154.6731806258064,-2.994359133039791,-99.77353115699556,-3.0665677114378065,-99.04219366106422,-44.31809248849739,-146.37061605991175
-1678882311,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.1,4.3,29.98,22.13,56.6,31.5,1010.6,-29.566692751997028,-154.6744158625139,-2.9943151098213354,-99.77376055405622,-3.06650671691697,-99.04180982986097,-44.31717534585732,-146.3583449027576
-1678882321,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.0,4.2,29.98,22.14,56.6,31.5,1010.6,-29.566840284634154,-154.67530643675906,-2.994333942967419,-99.7737377870597,-3.0665819084372314,-99.04240262668998,-44.31533917761256,-146.37103849469042
-1678882331,30.0,30.0,55.0,55.0,0,1300000000,,,3,6.4,3.9,29.97,22.15,56.6,31.5,1010.6,-29.566853697598813,-154.6760434521041,-2.994431109047671,-99.77460951849012,-3.0665893939177495,-99.04215080520652,-44.31358186553817,-146.3760542474405
-1678882341,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.0,3.7,29.97,22.15,56.7,31.5,1010.5,-29.566335392192023,-154.6753534697715,-2.99435528999887,-99.7741616790937,-3.0665785583384886,-99.04321036585775,-44.317319621692484,-146.36949897546774
-1678882351,30.0,30.0,55.0,55.0,0,1300000000,,,3,6.7,4.1,29.96,22.16,56.7,31.4,1010.5,-29.56655882223696,-154.67598715788543,-2.9943859173936827,-99.77420582487906,-3.06637754138824,-99.04316062191296,-44.317035526651566,-146.3721548802714
-1678882361,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.7,4.4,29.97,22.17,56.8,31.4,1010.5,-29.567251220972484,-154.6719633150443,-2.9943275595901024,-99.77422678943957,-3.066544112553019,-99.04460828951673,-44.318757472800925,-146.3397133928717
-1678882371,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.6,4.1,29.98,22.18,56.7,31.4,1010.5,-29.566534948493658,-154.67215557294412,-2.9943507568808747,-99.773897525932,-3.066496304251154,-99.04386118428914,-44.31835387249716,-146.36205388212062
-1678882381,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.5,4.1,29.97,22.19,56.7,31.4,1010.5,-29.566750935265773,-154.6738488294682,-2.9942283440500246,-99.7744870680885,-3.0666496319789567,-99.04411350902008,-44.31894280170727,-146.35277550370665
-1678882391,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,3.3,29.97,22.2,56.7,31.4,1010.5,-29.56666046071914,-154.67256976331467,-2.994360962434191,-99.77475090828281,-3.0665259843722072,-99.04392820233855,-44.31837579282842,-146.3556051167073
-1678882401,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.3,4.0,29.97,22.21,56.7,31.4,1010.6,-29.566760957367787,-154.6719496205803,-2.994341527560094,-99.77502617657052,-3.066629712960023,-99.04316019780109,-44.3191128608087,-146.3452558115832
-1678882411,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.0,3.7,29.97,22.23,56.7,31.4,1010.5,-29.56628315221846,-154.67604027207108,-2.994105058687123,-99.77448000832844,-3.066437460056555,-99.04429031967865,-44.31856785468061,-146.36351018109542
-1678882421,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.7,3.6,29.97,22.24,56.8,31.4,1010.5,-29.565972893582458,-154.67646724163762,-2.9940831328505797,-99.77543354790019,-3.0666630917568742,-99.04377238469071,-44.317439256541675,-146.350934422586
-1678882431,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.9,3.8,29.97,22.24,56.8,31.4,1010.5,-29.566115101614944,-154.6754400891715,-2.9941297191069536,-99.77529218325397,-3.066712863331678,-99.0438960488034,-44.32014040899023,-146.34924413198357
-1678882441,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.8,4.1,29.97,22.25,56.7,31.3,1010.5,-29.565912276279494,-154.67705409847682,-2.994031349433286,-99.77545690536235,-3.0665973792452434,-99.04452184520149,-44.319170725023426,-146.35787292322414
-1678882451,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.6,3.8,29.96,22.26,56.8,31.3,1010.6,-29.56555813451935,-154.677259791759,-2.9939884230192098,-99.77510684932643,-3.0665301930317708,-99.04443054547951,-44.31716201250566,-146.38069757496763
-1678882461,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.6,3.9,29.97,22.27,56.8,31.3,1010.5,-29.56600343117088,-154.67638678992512,-2.994138281727636,-99.775654819224,-3.066669685209849,-99.04433062059087,-44.318413020152185,-146.3547056890312
-1678882471,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.7,4.3,29.97,22.28,56.8,31.3,1010.6,-29.566216743582427,-154.67634095662197,-2.9941207627293007,-99.77563054137434,-3.0666491034217342,-99.0446921407062,-44.31675658147557,-146.35612578868967
-1678882481,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.6,4.1,29.97,22.29,56.7,31.3,1010.5,-29.565931400313374,-154.67821100335925,-2.9940209396473003,-99.77531406342186,-3.066812571059075,-99.04453183170023,-44.31627220057245,-146.3434840584748
-1678882491,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.0,3.8,30.0,22.29,56.7,31.3,1010.5,-29.566467779092033,-154.6759567768579,-2.9941325106593855,-99.77559774162143,-3.066898513562928,-99.0451077770443,-44.32027962718753,-146.33617841693973
-1678882501,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.5,3.4,29.98,22.29,56.8,31.3,1010.5,-29.56621400973968,-154.67565882455128,-2.9940834585546474,-99.77527666388897,-3.0668351809456147,-99.04559832129297,-44.31956817253934,-146.34330843236114
-1678882511,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,3.9,29.97,22.29,56.8,31.2,1010.5,-29.565834410893647,-154.67526502257806,-2.994127579004076,-99.77586573225751,-3.0668293261296258,-99.04554031783654,-44.32065013742402,-146.34232074606308
-1678882521,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.9,4.0,29.97,22.3,56.7,31.2,1010.5,-29.565750207307637,-154.6754641252772,-2.994023543067417,-99.77576712036252,-3.066583202767447,-99.04623969397643,-44.319468837891485,-146.34275072536832
-1678882531,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.6,3.5,29.97,22.3,56.7,31.2,1010.5,-29.566036217350202,-154.6751827919086,-2.9940839795084537,-99.7763972552759,-3.066583143700956,-99.04723232597821,-44.320948405903664,-146.3389336430176
-1678882541,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.7,4.5,29.97,22.31,56.7,31.2,1010.5,-29.566420836886728,-154.67190788837817,-2.9940929083093417,-99.7758542032335,-3.0667690915969463,-99.04737630550672,-44.320848147835235,-146.32953774722753
-1678882551,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.7,4.3,29.97,22.32,56.8,31.2,1010.5,-29.566088560383996,-154.67205387910036,-2.9941760029201743,-99.77578665891606,-3.0666028937234255,-99.04633836206395,-44.319996877736614,-146.33791690680033
-1678882561,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.9,3.6,29.98,22.33,56.8,31.2,1010.5,-29.56636222668321,-154.67268907241692,-2.9942423274955514,-99.77568792992923,-3.0666988239557647,-99.04607407154916,-44.323401368346715,-146.31938201785192
-1678882571,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.7,3.3,29.98,22.33,56.8,31.2,1010.5,-29.565847629568434,-154.67520035530006,-2.994072689646295,-99.77580111895463,-3.0666774040507994,-99.04586711331224,-44.32133039250349,-146.3356673723859
-1678882581,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.1,3.9,29.98,22.33,56.9,31.2,1010.5,-29.565620227810797,-154.67781478979077,-2.9940785723107273,-99.7761168579741,-3.066895525962919,-99.0463415188395,-44.32142588969463,-146.32755122715392
-1678882591,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.4,3.6,29.97,22.33,56.9,31.2,1010.4,-29.56596670057764,-154.6735502088025,-2.994035204624932,-99.77645731217632,-3.066848501841539,-99.04570656777442,-44.323998198980725,-146.3144449561804
-1678882601,30.0,30.0,55.0,55.0,0,1300000000,,,3,6.9,3.7,29.97,22.33,56.9,31.2,1010.4,-29.565719550461978,-154.67543079143033,-2.9939583498292692,-99.77611844148846,-3.066883588789909,-99.04583836532379,-44.320939969256024,-146.3139378832603
-1678882611,30.0,30.0,55.0,55.0,0,1300000000,,,3,6.7,3.7,29.97,22.34,56.9,31.2,1010.4,-29.5658955072685,-154.67672827932583,-2.9938674177111735,-99.77682229358717,-3.0668868693275018,-99.04582307069788,-44.32082863322616,-146.3140716755846
-1678882621,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.9,3.5,29.97,22.34,57.0,31.2,1010.4,-29.56574349050826,-154.6758096854851,-2.993757301390424,-99.77614587998708,-3.0668283704643438,-99.04603697470404,-44.3202318812267,-146.31730432517193
-1678882631,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.0,3.3,29.97,22.34,57.0,31.2,1010.4,-29.565786205805562,-154.6748391331674,-2.9939523263342025,-99.77619490102673,-3.066680513619884,-99.0461318495963,-44.32006790683525,-146.32652722704316
-1678882641,30.0,30.0,55.0,55.0,0,1300000000,,,3,6.3,4.0,29.97,22.34,57.0,31.2,1010.5,-29.565706791700382,-154.67319911912435,-2.9938986951567714,-99.77596992196794,-3.066659343612211,-99.04615968187268,-44.32010999731678,-146.3171300261604
-1678882651,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.7,3.2,29.98,22.35,57.0,31.2,1010.5,-29.565557900245555,-154.67395858443402,-2.9937870685728325,-99.77619901717293,-3.066803325107177,-99.04583408534016,-44.32094106919551,-146.31223828007327
-1678882661,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.1,3.6,29.97,22.35,56.9,31.2,1010.5,-29.56535379162435,-154.67437773098618,-2.993552381241252,-99.77630451460699,-3.06666142007161,-99.04602469327195,-44.32251520356486,-146.30844128702353
-1678882671,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.0,3.1,29.98,22.35,56.9,31.2,1010.5,-29.566072518746115,-154.67513268108175,-2.9937441728453247,-99.77534320572384,-3.0667194918213236,-99.04735087381883,-44.318456518889334,-146.31496197925807
-1678882681,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.0,3.4,29.98,22.35,56.9,31.2,1010.5,-29.56558573079959,-154.67446886350848,-2.993786753768487,-99.77547118850981,-3.066809417216958,-99.04669632151436,-44.32272217354419,-146.3023114767431
-1678882691,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.3,3.5,29.97,22.36,56.9,31.2,1010.4,-29.56648465661857,-154.6692542396501,-2.993967574289825,-99.77650309823906,-3.0667829721464064,-99.04672730048233,-44.32355330599596,-146.28776682592564
-1678882701,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.8,3.9,29.98,22.38,56.9,31.1,1010.4,-29.56664308557961,-154.67045125765813,-2.9938117941297286,-99.77576461429487,-3.066835814397464,-99.04617280564383,-44.32061924341565,-146.3002811990618
-1678882711,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.8,3.7,29.98,22.38,56.9,31.1,1010.5,-29.5667217827866,-154.6714847600268,-2.9939028208713045,-99.77566256055356,-3.066868335955282,-99.0469320392276,-44.32229634690867,-146.29095647315418
-1678882721,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.3,3.4,29.98,22.39,56.9,31.1,1010.5,-29.56632539681701,-154.67056797624772,-2.99388089085109,-99.77629786746553,-3.0668664053022794,-99.04638252263925,-44.324664559292735,-146.28019944678977
-1678882731,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.5,2.7,30.0,22.39,56.9,31.2,1010.5,-29.56664609701848,-154.66972034819062,-2.994050471972339,-99.77654847888303,-3.066772654155269,-99.0464326895435,-44.32420830019442,-146.2695802615208
-1678882741,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.7,2.8,29.98,22.4,57.0,31.1,1010.6,-29.566255672433602,-154.6706501826669,-2.9940944069408704,-99.77719739840035,-3.0667137719473985,-99.0465653240378,-44.325940424870126,-146.28428082963086
-1678882751,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.2,3.0,29.97,22.41,57.0,31.1,1010.6,-29.56642244920844,-154.66771092228439,-2.99404826642308,-99.77703086810718,-3.0668358852135666,-99.04727496488462,-44.32666505155143,-146.278791920488
-1678882761,30.0,30.0,55.0,55.0,0,1300000000,,,3,6.8,3.2,29.97,22.41,57.0,31.1,1010.6,-29.566395630594293,-154.670571943727,-2.994132895403952,-99.7773928016823,-3.066811465660106,-99.04672078380892,-44.32309686601167,-146.28908289600946
-1678882771,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.2,3.4,29.97,22.42,57.0,31.1,1010.6,-29.566675273131658,-154.67069862057622,-2.9940309328965373,-99.77689556998517,-3.066806846090956,-99.04824155929468,-44.32263346220686,-146.28667149516374
-1678882781,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.7,3.0,29.98,22.46,57.0,31.0,1010.6,-29.565906230172395,-154.6700459413218,-2.9939925181776617,-99.77775812905857,-3.066995238758921,-99.04631114619036,-44.32941013261322,-146.26536090328685
-1678882791,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.5,3.0,29.98,22.47,57.0,31.0,1010.6,-29.566159140915097,-154.66968508827347,-2.9940344912390375,-99.7766711207,-3.066855750622745,-99.0469766236273,-44.326860297295326,-146.26375824018004
-1678882801,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.1,3.8,29.98,22.48,56.9,31.0,1010.6,-29.566622575771646,-154.6677716737115,-2.994054249192168,-99.77676726933977,-3.066754458895847,-99.04668549559624,-44.322629107869254,-146.28403495940665
-1678882811,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.2,3.6,30.0,22.48,56.9,31.0,1010.6,-29.566714597445916,-154.6676428191348,-2.994077730163636,-99.77650468728132,-3.0667473114024926,-99.04689238618488,-44.32779323572413,-146.25994490225244
-1678882821,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.0,3.2,29.98,22.48,56.9,31.0,1010.6,-29.56667223795957,-154.67173658549132,-2.9940960621592954,-99.77721530157882,-3.066884726188042,-99.04596631097819,-44.324774944049736,-146.2802531078281
-1678882831,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.2,3.2,30.0,22.48,56.9,31.0,1010.6,-29.566551535515426,-154.66747140523802,-2.994290562463462,-99.77742138871662,-3.066794935786379,-99.04659873113758,-44.326347720949585,-146.26566206563513
-1678882841,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.2,3.1,30.0,22.48,56.9,31.0,1010.6,-29.566451310134685,-154.66861889545535,-2.9941924984558375,-99.777110401782,-3.0668892258041947,-99.04688778361518,-44.32539712165723,-146.2855778617153
-1678882851,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.2,2.8,30.01,22.48,56.9,31.0,1010.5,-29.5666184948648,-154.66765291098875,-2.9940389217110575,-99.77739906622602,-3.0667843073297,-99.04658076215652,-44.32506842578249,-146.28410377480597
-1678882861,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.8,3.2,29.98,22.48,56.9,31.0,1010.6,-29.566663084555405,-154.66892990423725,-2.9939514113375805,-99.77719027762976,-3.0667493752121633,-99.04625269531795,-44.32475516133644,-146.29167015352195
-1678882871,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.8,2.8,30.01,22.47,56.9,31.0,1010.6,-29.566790581379202,-154.66751975808657,-2.9941300938164384,-99.77755011803207,-3.066778570018476,-99.04678726510775,-44.3237246074609,-146.27759476915125
-1678882881,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.7,3.4,30.0,22.47,56.9,31.0,1010.6,-29.566512087538435,-154.66741046774817,-2.9940803805900873,-99.77624320721675,-3.066762265554846,-99.04832014544625,-44.3221294625079,-146.2996269753793
-1678882891,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.0,2.9,30.0,22.47,56.9,31.0,1010.6,-29.566370922553716,-154.66714083478195,-2.99391982289475,-99.77675661397933,-3.066922342554301,-99.04767958826591,-44.3245735431678,-146.28024723946328
-1678882901,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.7,3.0,30.0,22.48,56.9,31.0,1010.6,-29.56646720997724,-154.66696618523486,-2.993992094997957,-99.77695533400241,-3.0668421266343113,-99.04790548200172,-44.32494769705086,-146.27546434272227
-1678882911,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.5,3.8,29.98,22.49,56.9,31.0,1010.6,-29.566291332888515,-154.66869539393016,-2.994156213484454,-99.77623945032576,-3.066878985948351,-99.04723259766814,-44.32244892530022,-146.28504265340447
-1678882921,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.6,3.5,29.98,22.49,56.9,31.0,1010.6,-29.566298237732028,-154.6678834182784,-2.9941864370025324,-99.77682371524112,-3.0667950725521176,-99.0470997541749,-44.323840520027254,-146.28891778468764
-1678882931,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,3.1,29.97,22.5,56.9,31.0,1010.6,-29.566246181863956,-154.66692993264087,-2.994253120099781,-99.77717402350486,-3.066880090156955,-99.04776598770071,-44.32224025908784,-146.28648936911404
-1678882941,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.4,3.5,29.97,22.5,56.9,31.0,1010.6,-29.56662166943294,-154.6649080017595,-2.9942938487499116,-99.77717597610827,-3.0667786031148037,-99.04723140658031,-44.3241676238509,-146.2682094847862
-1678882951,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.9,3.0,30.0,22.51,56.8,31.0,1010.6,-29.566574444516498,-154.66377060794474,-2.9944376077727215,-99.77808576982582,-3.0669057452717348,-99.04728739469097,-44.32625436417291,-146.26668238324257
-1678882961,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.5,3.6,29.98,22.55,56.8,31.0,1010.7,-29.566243867621477,-154.66631319496403,-2.994125676573291,-99.77747928107276,-3.0668799770893256,-99.04781125438092,-44.32453721418546,-146.26932758480302
-1678882971,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.9,2.7,29.98,22.55,56.9,31.0,1010.6,-29.56646579495352,-154.66551295269517,-2.9940880961921,-99.77839747303955,-3.0668372959069696,-99.04797764309714,-44.32568814798442,-146.26549650878502
-1678882981,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.6,3.8,29.97,22.55,56.8,31.0,1010.7,-29.566199269138963,-154.66454519774612,-2.994049737628403,-99.77800480610632,-3.0668842605473765,-99.0477305984862,-44.32409314974752,-146.2638525324712
-1678882991,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.9,3.4,29.98,22.55,56.8,31.0,1010.7,-29.566241742825795,-154.6653516274081,-2.9943050979984793,-99.77793470542197,-3.0669062511080907,-99.04776271509245,-44.326829376381205,-146.26794995517403
-1678883001,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.7,3.2,30.0,22.55,56.8,30.9,1010.7,-29.565960093625307,-154.66891655461288,-2.9941950974017977,-99.77780124543477,-3.066872752498001,-99.04820302639715,-44.324356399049904,-146.27071203977988
-1678883011,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.7,2.9,30.0,22.55,56.8,30.9,1010.7,-29.566271728139817,-154.66664720397733,-2.994164718552332,-99.7784749427461,-3.0668637035351862,-99.04825618800953,-44.32542032908947,-146.25869790773993
-1678883021,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.0,3.3,30.0,22.55,56.8,30.9,1010.7,-29.56591237265062,-154.66640579874257,-2.994249222964271,-99.77830383527846,-3.0669216915205197,-99.04758459190683,-44.32493209026723,-146.27716917320853
-1678883031,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.7,3.3,30.0,22.55,56.8,30.9,1010.6,-29.566171085257608,-154.66475596785168,-2.99428855041387,-99.77794366112869,-3.066860487275727,-99.04866316482001,-44.32500726416693,-146.25735295644597
-1678883041,30.0,30.0,55.0,55.0,0,1300000000,,,3,6.9,3.3,30.0,22.55,56.8,30.9,1010.7,-29.56625453741688,-154.66388381132217,-2.9943394000989034,-99.77853583241108,-3.06693301961443,-99.048418525628,-44.328025969819535,-146.25971494768174
-1678883051,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.1,2.6,30.0,22.55,56.8,30.9,1010.6,-29.56574356685303,-154.66552053454845,-2.9942290611516515,-99.77850311388646,-3.066829086059584,-99.04850740904658,-44.32630609948184,-146.26235107527168
-1678883061,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.6,3.5,30.0,22.55,56.9,30.9,1010.7,-29.565916142060154,-154.66712223561444,-2.994419226618683,-99.7780157246466,-3.066778559769792,-99.04780124218433,-44.32301699017343,-146.2681596386183
-1678883071,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.9,3.0,30.0,22.55,56.9,30.9,1010.5,-29.566297725989465,-154.66574109541776,-2.9941693514351715,-99.77785765269678,-3.066948266583147,-99.04819803683948,-44.324538655850404,-146.26040282636146
-1678883081,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.0,3.1,30.01,22.55,56.9,30.9,1010.7,-29.566076239692517,-154.6647662419162,-2.9944852514203686,-99.77795255519005,-3.0667615520544333,-99.04857762313699,-44.32598993322373,-146.2661303073229
-1678883091,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.6,2.8,30.0,22.55,56.9,30.9,1010.6,-29.5659321922218,-154.66563476548808,-2.994326394680817,-99.77781210690657,-3.0670683994479475,-99.04926931227867,-44.32625075579753,-146.26418031555582
-1678883101,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.0,2.4,30.0,22.55,56.9,30.9,1010.7,-29.5655455450075,-154.67020543378635,-2.9943848810790348,-99.77801015448149,-3.0669981686527388,-99.0491506728971,-44.32208419954004,-146.28148793045665
-1678883111,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.9,2.9,30.0,22.55,56.9,30.9,1010.7,-29.565270804275062,-154.6705329575844,-2.994344882109723,-99.77770225559904,-3.0668199196881982,-99.04947711970844,-44.3216274042539,-146.27818822879485
-1678883121,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.5,3.0,30.0,22.58,56.9,30.9,1010.7,-29.56481551926187,-154.67254611663458,-2.9941020819921524,-99.77660153583916,-3.0669675324683054,-99.05035405087878,-44.32073030287863,-146.27896874364274
-1678883131,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.6,2.8,30.0,22.59,56.9,30.9,1010.7,-29.56550134187883,-154.6694969246534,-2.9942346491941745,-99.77712253157975,-3.066930230648422,-99.0498548982571,-44.3199826784629,-146.26666587631667
-1678883141,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.3,2.5,30.01,22.6,56.9,30.8,1010.6,-29.56513536211535,-154.66829881714858,-2.9943015423416393,-99.77703736840081,-3.06699488704943,-99.0497733825182,-44.32179618927663,-146.26083973217493
-1678883151,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.7,3.1,30.01,22.6,56.9,30.8,1010.7,-29.564891472028574,-154.6699245372431,-2.9942482221044955,-99.77737977778558,-3.066980350073716,-99.04965879429012,-44.322491093998224,-146.2664847775165
-1678883161,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.6,3.2,30.0,22.6,56.9,30.8,1010.7,-29.565240096195076,-154.6686098172246,-2.9943204129866414,-99.77674656963548,-3.0671857439429595,-99.05001921124094,-44.32223114057397,-146.2696786538551
-1678883171,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.5,2.9,30.01,22.59,56.9,30.8,1010.7,-29.564741672487106,-154.67000917266742,-2.994252373767049,-99.77715611129976,-3.067142587497666,-99.04989793129269,-44.32233340980066,-146.26341018293476
-1678883181,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.5,2.7,30.0,22.55,56.8,30.9,1010.7,-29.56468412154233,-154.67064033882656,-2.994093225330476,-99.77756724866562,-3.067041502608368,-99.04944241079558,-44.31895827932813,-146.2675307651372
-1678883191,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.1,3.0,30.0,22.55,56.8,30.9,1010.8,-29.564507687498764,-154.67179366710727,-2.994134374039041,-99.77792172681586,-3.066963549613208,-99.04920165816945,-44.317806980026575,-146.2760150895311
-1678883201,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.5,3.0,29.98,22.55,56.8,30.9,1010.6,-29.564860840864444,-154.66966664820168,-2.9945121008694486,-99.77724723549369,-3.0670111361196444,-99.04916678218004,-44.31815106894571,-146.27679179884308
-1678883211,30.0,30.0,55.0,55.0,0,1300000000,,,3,6.9,3.6,30.0,22.51,56.9,31.0,1010.6,-29.56424149762366,-154.67125747905936,-2.9941879453419054,-99.77769288902104,-3.067133957656694,-99.04883208854099,-44.32038865685908,-146.27031198686856
-1678883221,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.7,3.2,29.97,22.47,56.8,31.0,1010.6,-29.56360341376877,-154.67307736816792,-2.9941292772841406,-99.77773113130228,-3.0672981491891997,-99.0484444903745,-44.32032015467372,-146.27190783515343
-1678883231,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.1,3.5,30.01,22.45,56.8,31.1,1010.6,-29.563530050078253,-154.67406833922726,-2.9941480842349866,-99.77755463492005,-3.0672434644367392,-99.04844662349133,-44.31991085568076,-146.27128742641392
-1678883241,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.9,3.5,30.0,22.42,56.8,31.1,1010.6,-29.563595497551717,-154.67133678345667,-2.9943315195639153,-99.77748387484694,-3.0670881069369256,-99.04804901293018,-44.31480006679977,-146.28247684870038
-1678883251,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.4,2.5,30.0,22.41,56.8,31.2,1010.6,-29.563597623004576,-154.6719972630404,-2.994399293883125,-99.77795814386012,-3.0669846126015585,-99.04861557617738,-44.31376841211674,-146.2998012445214
-1678883261,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.5,3.1,30.0,22.39,56.8,31.2,1010.6,-29.563758905447763,-154.6728860255083,-2.9941608094635406,-99.7775186461873,-3.0670975012712107,-99.04898669204742,-44.315761599434325,-146.30038848253452
-1678883271,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.1,3.9,30.01,22.38,56.8,31.2,1010.6,-29.56397750159001,-154.67222837821782,-2.994420722959772,-99.77810452689137,-3.0671323338216556,-99.04882390984451,-44.31525081883754,-146.29347826737427
-1678883281,30.0,30.0,55.0,55.0,0,1300000000,,,3,6.7,3.4,29.98,22.35,56.8,31.2,1010.5,-29.564050451393996,-154.67249095121,-2.994401747372341,-99.77792343885041,-3.0669886072858694,-99.04866137931192,-44.3126774365829,-146.2882216130425
-1678883291,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.5,3.3,30.01,22.34,56.8,31.2,1010.6,-29.563842380951062,-154.67086095605939,-2.9941800460825627,-99.77784194022183,-3.066862838372442,-99.04806896882795,-44.31439402916695,-146.28740126450785
-1678883301,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.4,3.1,30.01,22.29,56.8,31.3,1010.6,-29.56331178378026,-154.67425947018017,-2.9941971096394395,-99.77771991378326,-3.066893681353218,-99.04936999960056,-44.315615754952226,-146.29411451195443
-1678883311,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.7,3.2,29.98,22.28,56.8,31.4,1010.6,-29.563295315342092,-154.6747585014942,-2.994389103547509,-99.7776594980445,-3.0668128007926034,-99.04911092840358,-44.31147369451803,-146.30030602529925
-1678883321,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.3,3.4,30.0,22.27,56.8,31.4,1010.7,-29.562731563180122,-154.6712983465401,-2.994338082129449,-99.77791854894419,-3.066826861740038,-99.0487877419553,-44.315508157946695,-146.2993047025518
-1678883331,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.5,3.3,29.98,22.25,56.8,31.5,1010.6,-29.562900142670404,-154.67364496231025,-2.9940975768085876,-99.77804588817615,-3.066912900272652,-99.048881832414,-44.31355348016345,-146.28851988117023
-1678883341,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.4,3.2,29.97,22.24,56.7,31.5,1010.6,-29.56295106194366,-154.6733777383393,-2.9942792575403834,-99.77825151114483,-3.067026957331063,-99.04908769828658,-44.31269939447503,-146.30154142538322
-1678883351,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.1,3.2,29.98,22.2,56.7,31.5,1010.7,-29.562635391076345,-154.67212685816924,-2.994197197166727,-99.77781854692886,-3.067124397914447,-99.04997001744816,-44.313590749674525,-146.2894632066048
-1678883361,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.5,2.7,29.98,22.18,56.8,31.6,1010.5,-29.562953657331725,-154.67088855476104,-2.994187097325742,-99.77856848142414,-3.0670781046727686,-99.04967850388108,-44.31210079088498,-146.28969844457873
-1678883371,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.2,3.1,29.98,22.18,56.7,31.6,1010.5,-29.562454963293145,-154.6737299737187,-2.9940391422234813,-99.77840482551224,-3.067027205873119,-99.04960909185542,-44.313375952869016,-146.29697419989816
-1678883381,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.6,3.7,29.97,22.16,56.8,31.6,1010.6,-29.56275997961526,-154.67458169922654,-2.9942062250281314,-99.77852367232386,-3.066860599189942,-99.05011005274206,-44.31170331861765,-146.29544286237712
-1678883391,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.8,3.8,29.98,22.15,56.7,31.6,1010.6,-29.562627259854036,-154.674616696572,-2.994200105366296,-99.77753653380766,-3.0669088799006157,-99.04906888293431,-44.311166380647364,-146.3036912071086
-1678883401,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.4,3.4,29.98,22.14,56.7,31.6,1010.5,-29.562253970012364,-154.67387147286155,-2.9941008252900962,-99.77740163257819,-3.067084795820639,-99.04930239709812,-44.30985221612617,-146.30353158138948
-1678883411,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.1,3.6,29.97,22.13,56.7,31.7,1010.5,-29.562308919411397,-154.67382186683992,-2.994101821506211,-99.77763996111408,-3.067015323289381,-99.04949111892876,-44.31193211075191,-146.30375689641897
-1678883421,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.9,3.6,29.97,22.11,56.7,31.7,1010.5,-29.562208714380247,-154.6749387733205,-2.9942860080039404,-99.77803257824165,-3.0667833584971618,-99.04891998958982,-44.30575956599405,-146.32747664587737
-1678883431,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.5,3.3,30.0,22.1,56.7,31.7,1010.5,-29.56200983180335,-154.67475571184198,-2.9940684591312463,-99.77787017529148,-3.0670087994312123,-99.04938023458978,-44.30773180126039,-146.32957075610446
-1678883441,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.7,3.5,30.0,22.05,56.7,31.7,1010.5,-29.562713353003755,-154.67522695281778,-2.9943364131303998,-99.77730652568889,-3.066976217911845,-99.04863368892806,-44.305196751851426,-146.32248356013224
-1678883451,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.2,3.3,29.98,22.01,56.7,31.7,1010.6,-29.562526144316745,-154.6743675091454,-2.9942678498957798,-99.77859833477339,-3.0669675052063567,-99.04860992084858,-44.30623252807563,-146.32467691312462
-1678883461,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.4,3.1,29.98,22.01,56.7,31.8,1010.5,-29.562323862623895,-154.6741417093861,-2.9945363334797372,-99.77826353143213,-3.06703364204933,-99.04888412904478,-44.30776904707159,-146.31390293741256
-1678883471,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.0,3.1,29.97,22.0,56.7,31.8,1010.5,-29.562313194517962,-154.67339196377435,-2.9943956087020283,-99.7783966932504,-3.066986763757067,-99.04936484270976,-44.30312435551364,-146.32183647788491
-1678883481,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.5,3.7,29.97,22.0,56.7,31.9,1010.5,-29.561687818073604,-154.6774088798383,-2.9942181022972654,-99.77766549755381,-3.0670297593604134,-99.04923510508658,-44.304553395172235,-146.31814921405564
-1678883491,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.8,3.6,29.97,22.01,56.7,31.9,1010.4,-29.56178675589416,-154.6737837053935,-2.9943481000472945,-99.77787583085029,-3.0670149933985806,-99.04933049621202,-44.30535866889838,-146.31881076342054
-1678883501,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.4,4.0,29.98,22.01,56.7,31.8,1010.4,-29.561847541502004,-154.67394873766926,-2.994376804596233,-99.77863412540744,-3.066763409235524,-99.04814563770947,-44.3022658140428,-146.3462913746873
-1678883511,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.8,3.6,30.0,22.0,56.7,31.8,1010.4,-29.56162147253439,-154.67383463556246,-2.994335438034779,-99.77811291891332,-3.0668806862116664,-99.04869215452555,-44.30358008198874,-146.32828210705728
-1678883521,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.5,3.4,29.97,22.02,56.6,31.8,1010.4,-29.561662146441797,-154.6741943810615,-2.994392762405526,-99.77804537871636,-3.0668526184733613,-99.04895290901425,-44.30259049797882,-146.32446591324444
-1678883531,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.9,4.0,29.98,22.03,56.7,31.8,1010.4,-29.56203008090307,-154.67498837604353,-2.994313089472953,-99.77801521673125,-3.0668903508809464,-99.04940557970403,-44.30236183576322,-146.33475227289458
-1678883541,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.7,3.9,29.98,22.06,56.6,31.8,1010.4,-29.56138266709313,-154.67530261455911,-2.994259083253477,-99.77752474854529,-3.0670359863278596,-99.04952151245264,-44.30448986478385,-146.32738680289563
-1678883551,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.4,3.8,30.0,22.06,56.6,31.8,1010.4,-29.561316811604673,-154.67617711894866,-2.9945293288815873,-99.77734226463694,-3.0670052214536945,-99.04900318868836,-44.299020460131814,-146.34443206554778
-1678883561,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.4,3.8,29.98,22.09,56.6,31.7,1010.4,-29.561328037695027,-154.67414850383395,-2.9944685232999753,-99.77752165982989,-3.0670335779417806,-99.04851374621917,-44.30098701816995,-146.35910168824273
-1678883571,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.1,3.3,29.97,22.1,56.6,31.7,1010.5,-29.561206916047933,-154.6770428565842,-2.9944253225979205,-99.77831595879341,-3.0668477217180916,-99.0486618058515,-44.30046424380602,-146.35309502181715
-1678883581,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,3.1,29.98,22.11,56.7,31.7,1010.4,-29.561543410379247,-154.67481495452228,-2.994423862076343,-99.77866476140204,-3.066936696881593,-99.04848948015665,-44.30255152333234,-146.3544429745415
-1678883591,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,3.1,29.98,22.12,56.7,31.7,1010.3,-29.56130161219314,-154.67650235876326,-2.994217469211064,-99.77909591368841,-3.06690918506067,-99.0483680931146,-44.30058721891179,-146.3526716615222
-1678883601,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.6,3.7,29.98,22.13,56.7,31.7,1010.4,-29.560784160271993,-154.67695959611135,-2.9940463444899086,-99.77863348164392,-3.0669748496162135,-99.04894096686928,-44.299117811829376,-146.34456884974273
-1678883611,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.3,4.3,29.98,22.13,56.7,31.7,1010.3,-29.561275255086077,-154.6744296069788,-2.9944173421489166,-99.77882261742083,-3.0671568602960404,-99.0487971289273,-44.30013623175195,-146.3246261635193
-1678883621,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.6,3.8,30.0,22.13,56.7,31.7,1010.4,-29.5608693725489,-154.67783356375165,-2.9942871672754494,-99.77813454847812,-3.067133153282902,-99.04899574183015,-44.29771767747631,-146.34901875483482
-1678883631,30.0,30.0,55.0,55.0,0,1300000000,,,3,6.5,4.2,30.0,22.15,56.6,31.7,1010.4,-29.561220618989594,-154.67906794348684,-2.9944701717724898,-99.77843956175627,-3.067008043120934,-99.04887481774632,-44.295516363637645,-146.37238654701417
-1678883641,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.3,3.6,30.0,22.15,56.6,31.7,1010.5,-29.560401590072427,-154.67620810912985,-2.9943133108749564,-99.77775701903639,-3.0670452016989005,-99.04863374479133,-44.29625215430452,-146.359557512767
-1678883651,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.2,3.5,30.01,22.15,56.6,31.7,1010.4,-29.56051533366948,-154.67893791586386,-2.994516104882221,-99.7779230272324,-3.0670637400480416,-99.04881474691535,-44.2973040267784,-146.36515949295125
-1678883661,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.7,3.3,29.98,22.17,56.7,31.6,1010.4,-29.56063358108694,-154.67815055994032,-2.9945104468481647,-99.77848676818539,-3.066912457508215,-99.04895726923512,-44.295605870084536,-146.37381208193224
-1678883671,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.2,3.7,29.98,22.17,56.7,31.6,1010.4,-29.560403551010634,-154.6821001339665,-2.994368682634645,-99.77933301005685,-3.066886981488471,-99.0494214633416,-44.29601677938653,-146.36436649124627
-1678883681,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.4,3.3,29.97,22.19,56.7,31.6,1010.4,-29.560466284959453,-154.6811077261619,-2.994532030202866,-99.77933577490431,-3.067087117221448,-99.0493263750249,-44.29414960534569,-146.36597944331922
-1678883691,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.9,3.5,30.0,22.19,56.7,31.6,1010.4,-29.560368003938283,-154.68012879908224,-2.9945980811384225,-99.77952332668902,-3.0669523854505307,-99.04863489989381,-44.29151441763244,-146.38363919537505
-1678883701,30.0,30.0,55.0,55.0,0,1300000000,,,3,5.9,4.0,29.98,22.19,56.7,31.6,1010.4,-29.559700770567186,-154.68059408776108,-2.994472751144805,-99.77904998086237,-3.06706464457043,-99.04846249035415,-44.29411935078895,-146.3867699885348
-1678883711,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.4,3.8,29.98,22.2,56.6,31.6,1010.4,-29.560019184385162,-154.68088610465952,-2.994418968955121,-99.77902229986482,-3.0670280537169115,-99.04871847344066,-44.291881062346484,-146.36813584735782
-1678883721,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.5,3.5,30.0,22.2,56.7,31.5,1010.5,-29.559830105010434,-154.68003672844011,-2.9942732033396604,-99.77868098250094,-3.0669489987851284,-99.04922286893915,-44.2929483356665,-146.37582145783693
-1678883731,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.9,3.2,30.0,22.23,56.7,31.5,1010.4,-29.55996161490087,-154.68129650185992,-2.994253799661362,-99.77853889720637,-3.0669200221733943,-99.04855477311206,-44.289955590147514,-146.38044742005263
-1678883741,30.0,30.0,55.0,55.0,0,1300000000,,,3,6.5,3.8,30.01,22.24,56.6,31.5,1010.5,-29.55989950914075,-154.6809614321831,-2.9943673558114954,-99.77804518314434,-3.067042536715237,-99.04869302077982,-44.29186543279273,-146.38506678731372
-1678883751,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.4,3.6,30.01,22.24,56.6,31.5,1010.5,-29.55937751191843,-154.68211533012268,-2.994284017271151,-99.7785511683834,-3.0670472722578443,-99.04971732388547,-44.29320738361448,-146.38244646428976
-1678883761,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.8,3.7,30.0,22.25,56.6,31.5,1010.5,-29.55985086901418,-154.68015593082941,-2.9945385892676586,-99.77956890303858,-3.067240967552483,-99.0499555388582,-44.293189625580155,-146.37258232654625
-1678883771,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.6,3.5,30.0,22.25,56.7,31.5,1010.4,-29.559280748869877,-154.6813682599158,-2.994635917738879,-99.77876773296431,-3.066950746417035,-99.04853246427461,-44.29119236759304,-146.3919639192376
-1678883781,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.7,3.7,29.98,22.26,56.7,31.5,1010.4,-29.559269424751747,-154.67859318694659,-2.994334482746078,-99.77915355523217,-3.0670429082792565,-99.0484863715635,-44.291666057590604,-146.37929955511498
-1678883791,30.0,30.0,55.0,55.0,0,1300000000,,,3,6.9,3.8,29.98,22.26,56.7,31.5,1010.4,-29.558434491122615,-154.68113191066521,-2.994366977029215,-99.77799513872097,-3.0672205714559047,-99.04887636371953,-44.291633252634234,-146.38708337055968
-1678883801,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.4,3.3,30.0,22.27,56.7,31.4,1010.4,-29.559006952014123,-154.67759242946346,-2.9943698159348986,-99.77868033492429,-3.067339139138503,-99.04957887483287,-44.291046989035685,-146.3769937576489
-1678883811,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.2,3.6,30.01,22.28,56.7,31.4,1010.5,-29.559010805862233,-154.67833537750897,-2.9944511693765574,-99.77864965702378,-3.0670892792561637,-99.04975176747878,-44.29265241876042,-146.3670239957275
-1678883821,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.4,3.5,30.0,22.28,56.7,31.4,1010.4,-29.558909363779723,-154.67998293805363,-2.9943707231298378,-99.77884216565991,-3.0671449855290467,-99.05018774833357,-44.29292640812848,-146.38257628004152
-1678883831,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.2,4.0,29.98,22.3,56.7,31.4,1010.4,-29.558909182829535,-154.68160003071804,-2.994291364460129,-99.77988778711165,-3.067257394506199,-99.04982295357503,-44.295828564791606,-146.37406278676036
-1678883841,30.0,30.0,55.0,55.0,0,1300000000,,,3,6.8,4.3,30.0,22.3,56.6,31.3,1010.5,-29.558973269734217,-154.68098162415245,-2.9943536163218916,-99.77953292543431,-3.0671545204751554,-99.04990613660758,-44.29350647299973,-146.37932805435304
-1678883851,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.8,3.9,30.0,22.31,56.6,31.3,1010.5,-29.559349750965414,-154.68175087621864,-2.99441644045143,-99.7799418902598,-3.0672372468180797,-99.05057127903324,-44.29446852825287,-146.38271774984094
-1678883861,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.7,3.4,29.97,22.31,56.6,31.3,1010.5,-29.558810255319358,-154.68244240899668,-2.9945938192708903,-99.77980324467252,-3.0671519205736564,-99.04983642074782,-44.289046482711285,-146.39155266453204
-1678883871,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.3,3.8,30.01,22.32,56.7,31.3,1010.5,-29.559101820063457,-154.68106212462615,-2.994366161613471,-99.77985359605002,-3.0672242437066344,-99.04993831026785,-44.2915617720524,-146.3682943335499
-1678883881,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.7,3.8,30.0,22.33,56.7,31.3,1010.5,-29.55889749300892,-154.6827808909275,-2.9942053369606025,-99.77937741935465,-3.0673506743674728,-99.05011935989506,-44.288577501759114,-146.38357663761954
-1678883891,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.3,3.8,29.97,22.33,56.7,31.3,1010.5,-29.559050537901996,-154.681596318035,-2.9945200314404303,-99.77938256053788,-3.067174650339891,-99.0507721265606,-44.29130435322378,-146.38846263709172
-1678883901,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.4,3.8,30.0,22.34,56.7,31.3,1010.4,-29.55908252390996,-154.6832762789142,-2.994317428574132,-99.77963973820987,-3.067185931827879,-99.05094279753277,-44.291499167491565,-146.37117590638059
-1678883911,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.0,3.7,30.0,22.34,56.7,31.3,1010.5,-29.55913947206442,-154.68333629659193,-2.9943562680636893,-99.77977617764421,-3.0672027453196598,-99.05031466918223,-44.28983246995137,-146.3869409764277
-1678883921,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.1,3.8,30.0,22.35,56.7,31.3,1010.6,-29.559034475934858,-154.68319971338073,-2.9944942167845063,-99.77906853760201,-3.067159039256146,-99.05037777763252,-44.28914174745579,-146.40367288953155
-1678883931,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.4,3.8,30.0,22.36,56.7,31.2,1010.5,-29.559103961241114,-154.6823968537422,-2.9943801871085736,-99.78023023692931,-3.067189764265991,-99.05021851748565,-44.28802479256723,-146.39780478395923
-1678883941,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.9,3.6,30.0,22.38,56.6,31.2,1010.5,-29.559166654071465,-154.68247822481948,-2.9943365770123567,-99.77939748327745,-3.0670523585675302,-99.05140750888407,-44.28785519364623,-146.40265040242036
-1678883951,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.6,3.4,30.0,22.38,56.7,31.2,1010.5,-29.558607434187163,-154.68466198573037,-2.994516415101816,-99.778952121692,-3.067135001624479,-99.05156714435421,-44.2872606688094,-146.39658895966994
-1678883961,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.7,3.6,30.0,22.38,56.7,31.2,1010.5,-29.55847545265483,-154.6843790356951,-2.9945783666651824,-99.77897633410763,-3.06709830047313,-99.05124218857533,-44.28684027469389,-146.40504631324112
-1678883971,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.1,3.5,29.97,22.38,56.6,31.2,1010.5,-29.557997700998946,-154.6833519890404,-2.9944663769262054,-99.7792910529625,-3.0672774110866072,-99.0517351885992,-44.28857090586099,-146.4058853614897
-1678883981,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.8,3.9,30.0,22.38,56.7,31.2,1010.5,-29.55809049092418,-154.683687722059,-2.9945569399069427,-99.77902224627023,-3.0670672890984525,-99.0523127669245,-44.28721507802361,-146.40197455966415
-1678883991,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.6,3.6,29.97,22.38,56.7,31.2,1010.6,-29.557907082525023,-154.6827816938112,-2.9944980559787,-99.78009348034378,-3.067070343381087,-99.0513240957187,-44.2867470740957,-146.39305175780143
-1678884001,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.2,4.3,29.97,22.38,56.7,31.2,1010.5,-29.55835760731621,-154.67967231288338,-2.994443188131747,-99.78069070454902,-3.0671137391050367,-99.05234819735857,-44.2891646622016,-146.39889905360397
-1678884011,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.9,3.8,29.97,22.39,56.7,31.2,1010.5,-29.557834429768594,-154.68263089548597,-2.994451793871326,-99.78051271104806,-3.067181964262887,-99.05154850435905,-44.28496669079405,-146.40940086327362
-1678884021,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.7,4.4,29.97,22.39,56.7,31.2,1010.5,-29.557566139530724,-154.68411238049677,-2.994221093701739,-99.78147949893103,-3.0672659525687784,-99.05046549823928,-44.287477974118154,-146.41131097057897
-1678884031,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.0,3.7,29.97,22.39,56.7,31.2,1010.6,-29.557707531148267,-154.68363965098325,-2.994493991671194,-99.78057947161538,-3.06723816292204,-99.05143265860852,-44.2871007414037,-146.41814178585935
-1678884041,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.1,3.6,29.97,22.4,56.7,31.2,1010.6,-29.557891263047903,-154.68338467832956,-2.9942495790734758,-99.78058253939814,-3.0670554609526857,-99.05097132884121,-44.28559488834366,-146.41953375135859
-1678884051,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.9,3.6,29.97,22.4,56.8,31.2,1010.6,-29.55744941582687,-154.68467067869634,-2.9944804599961836,-99.78073245789689,-3.067022715203876,-99.0512812127732,-44.282664358721576,-146.4418245319989
-1678884061,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.5,4.0,29.97,22.41,56.8,31.2,1010.5,-29.557654604084888,-154.6844342689372,-2.9944903990131833,-99.78108566195199,-3.066988455439026,-99.05101159837427,-44.28465563937146,-146.43148048621364
-1678884071,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.4,3.6,29.97,22.42,56.8,31.2,1010.6,-29.557876630168888,-154.6850613976229,-2.9943305860409537,-99.78112843269955,-3.067071530491436,-99.05146103635998,-44.28569727410439,-146.43765153364942
-1678884081,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.0,3.8,29.97,22.42,56.8,31.2,1010.6,-29.557586459119523,-154.68532339605525,-2.994429763534436,-99.78115837415967,-3.0669102469536123,-99.05069351488011,-44.28445941779785,-146.43675231528525
-1678884091,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.9,3.8,29.98,22.42,56.8,31.2,1010.6,-29.557478677028207,-154.6853646711198,-2.994445812700092,-99.78054120686159,-3.067286160482726,-99.05131045737251,-44.285309112877925,-146.44257932968225
-1678884101,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.0,3.9,29.98,22.43,56.8,31.2,1010.5,-29.55724326822272,-154.68643470875435,-2.994301398698422,-99.78029261887765,-3.0671453729126967,-99.05155377265743,-44.284948750413726,-146.43283667445618
-1678884111,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.1,4.0,29.98,22.44,56.8,31.2,1010.5,-29.55736261977693,-154.68529436823687,-2.9947206159800555,-99.7798520747578,-3.066968933334237,-99.05068324697211,-44.28097911084319,-146.44379225786886
-1678884121,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.6,3.3,30.0,22.44,56.8,31.2,1010.5,-29.557599948684512,-154.68391732187203,-2.994727147442605,-99.77979803898221,-3.0669970375061246,-99.0510690177761,-44.280693451923874,-146.44316149046594
-1678884131,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.6,3.0,29.98,22.45,56.8,31.2,1010.6,-29.55759830219881,-154.6855676381584,-2.9945253780411556,-99.78032775056265,-3.06713866287198,-99.05206030466647,-44.28438574491053,-146.42630480050377
-1678884141,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.0,2.9,29.97,22.46,56.9,31.2,1010.6,-29.55775196350709,-154.68483216287856,-2.99468161617465,-99.77987754944293,-3.066922192457774,-99.05191472088924,-44.28223968324737,-146.43805905411082
-1678884151,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.4,3.4,29.98,22.47,56.9,31.2,1010.5,-29.55718415905686,-154.68505676424314,-2.994603468230872,-99.77983303912167,-3.067098296977073,-99.05104768340581,-44.2792264707657,-146.46863023858805
-1678884161,30.0,30.0,55.0,55.0,0,1300000000,,,3,6.8,4.0,29.97,22.48,56.9,31.2,1010.5,-29.556636413516276,-154.6869259866245,-2.9946102378098294,-99.77963369667641,-3.06700709193696,-99.05145655834775,-44.27979074650981,-146.45263296455957
-1678884171,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.6,4.2,29.97,22.48,56.8,31.2,1010.6,-29.55666992429482,-154.68738664567616,-2.9945438872948813,-99.77954965341654,-3.067056486679256,-99.05068527274908,-44.27901185248647,-146.44912875982357
-1678884181,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,4.2,30.0,22.49,56.8,31.2,1010.6,-29.557439043018082,-154.68538326726065,-2.9948435658861268,-99.77931140360334,-3.0672231741555835,-99.0506239161942,-44.27851737171331,-146.45647136025977
-1678884191,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.7,4.3,30.0,22.49,56.7,31.2,1010.6,-29.556883370794836,-154.68977113350562,-2.9947462532858498,-99.77986088782949,-3.067014965810457,-99.04907507510099,-44.27812585950215,-146.4607782429795
-1678884201,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.7,4.0,30.01,22.5,56.7,31.2,1010.6,-29.556631409195543,-154.6879058050225,-2.9946481269528364,-99.77964623253065,-3.0671364938904855,-99.04933894748932,-44.27755769853875,-146.46046307157496
-1678884211,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.4,3.9,30.0,22.5,56.7,31.1,1010.6,-29.556832730253134,-154.68720559832673,-2.994832310459378,-99.77919388546482,-3.067125571502376,-99.04918514874403,-44.27503163965777,-146.46450016204437
-1678884221,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,3.2,30.0,22.49,56.8,31.1,1010.6,-29.55608467987212,-154.6887188498935,-2.9947439657867974,-99.78015726593097,-3.0670366149570523,-99.04838726007196,-44.27517357717648,-146.46054367303958
-1678884231,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.7,3.1,30.0,22.5,56.7,31.1,1010.5,-29.556226987585553,-154.69077535539947,-2.994762240147506,-99.78013367474975,-3.067106954774949,-99.04992438985045,-44.27258365964985,-146.48841209994526
-1678884241,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.1,4.0,29.98,22.5,56.8,31.1,1010.5,-29.555805108824366,-154.69224589875617,-2.9948591436301686,-99.77948278177743,-3.066894329905093,-99.04952035474234,-44.27385997927027,-146.48728009562686
-1678884251,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.3,3.9,29.98,22.5,56.8,31.1,1010.5,-29.555777696111925,-154.69078239773725,-2.994685795611875,-99.7798278945922,-3.0670968634231777,-99.04901063894901,-44.2708758774982,-146.46885831407837
-1678884261,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.0,3.2,30.0,22.5,56.8,31.1,1010.6,-29.55535358331682,-154.6907028184103,-2.9946005242060143,-99.77939918240482,-3.067034983422599,-99.04850024980873,-44.2745993582708,-146.4785122216843
-1678884271,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.5,3.8,30.0,22.51,56.8,31.1,1010.6,-29.55465126723628,-154.693039968028,-2.9942815367909863,-99.77880866290482,-3.0672133709858933,-99.04898791132806,-44.27464128918851,-146.4601912235668
-1678884281,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.0,3.1,30.0,22.53,56.8,31.1,1010.6,-29.55473558077246,-154.6947762518235,-2.994407858517662,-99.77921112187339,-3.06711675871534,-99.04803679604503,-44.272478931181126,-146.48644931642855
-1678884291,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.6,3.5,30.0,22.54,56.9,31.1,1010.6,-29.554757350463085,-154.69336994125447,-2.9947156057858537,-99.77911631447964,-3.067080966538308,-99.04868693641524,-44.27472637907808,-146.48508076672726
-1678884301,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.1,3.1,30.0,22.55,56.9,31.1,1010.7,-29.554443281540035,-154.69421507013996,-2.994625112715233,-99.77911839687765,-3.067193958588819,-99.04963257269766,-44.275748367779485,-146.48367939314423
-1678884311,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.9,3.5,29.98,22.55,56.9,31.1,1010.6,-29.554526455724815,-154.6945640765064,-2.9946112939184895,-99.77917903299445,-3.066971328050296,-99.05014795886443,-44.27410769295629,-146.48727711599548
-1678884321,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.3,3.8,30.0,22.55,56.9,31.1,1010.6,-29.55442986458324,-154.6935235913219,-2.9947130517702636,-99.77858835368714,-3.0669685031544267,-99.04989976275584,-44.27311415580861,-146.49231825955457
-1678884331,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.4,3.9,30.0,22.55,56.9,31.1,1010.6,-29.554648293507707,-154.692484990272,-2.994775130340951,-99.77858671371773,-3.067115702718933,-99.05034451336502,-44.27236714531667,-146.49481802784285
-1678884341,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.1,3.5,29.98,22.55,56.9,31.1,1010.7,-29.554561799906367,-154.69331641908371,-2.9946163517656146,-99.7784175432246,-3.0670936713293266,-99.04997325083683,-44.271215565694334,-146.49322786843592
-1678884351,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.6,3.4,29.98,22.55,56.8,31.1,1010.6,-29.55459816515422,-154.69354491129565,-2.994539276354014,-99.77919184468743,-3.0669735567016025,-99.0500267290344,-44.275993145956605,-146.46269597550847
-1678884361,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.8,3.7,29.98,22.57,56.8,31.0,1010.5,-29.554650958604324,-154.69161443903775,-2.994593155283946,-99.77957971289541,-3.0671237443037485,-99.05071995292693,-44.27330803386867,-146.46204141291108
-1678884371,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.6,3.8,30.01,22.58,56.8,31.0,1010.7,-29.55503958319634,-154.6927542596685,-2.9946397256374753,-99.77955196354479,-3.067026031338444,-99.05049262990234,-44.27321895740985,-146.47663651500818
-1678884381,30.0,30.0,55.0,55.0,0,1300000000,,,3,6.5,4.2,29.97,22.59,56.8,31.0,1010.7,-29.5541428373909,-154.69519564643954,-2.99454220074436,-99.7785658093467,-3.067027920026692,-99.05040893615438,-44.26962874031824,-146.48219510024805
-1678884391,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.0,3.7,30.01,22.59,56.9,31.0,1010.7,-29.554324833138537,-154.69312944764735,-2.9946051995592837,-99.77910555088398,-3.0671060560680257,-99.05066569244192,-44.272736381637856,-146.47628221977922
-1678884401,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.1,3.2,30.01,22.58,56.9,31.0,1010.7,-29.55436135786586,-154.694461853473,-2.9947388291385857,-99.77980071025114,-3.0670645684056455,-99.05038610987813,-44.26906873823153,-146.49287954202617
-1678884411,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.0,3.3,30.0,22.58,56.9,31.0,1010.7,-29.554361907425864,-154.6951922409274,-2.9946216618928805,-99.78015617545951,-3.0668971118987933,-99.05054485826538,-44.2696387309085,-146.50566232437475
-1678884421,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.1,2.8,30.0,22.55,56.9,31.0,1010.7,-29.554614318342015,-154.69774170651965,-2.9944416925999375,-99.78064662067901,-3.0670596072235035,-99.051706336,-44.269878237158046,-146.4790908665091
-1678884431,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.1,2.7,29.97,22.55,56.9,31.1,1010.7,-29.554508340322627,-154.69638661281044,-2.994672402084237,-99.78108172972355,-3.0671865686776876,-99.05113001450336,-44.26873747799319,-146.49113621913304
-1678884441,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.5,3.2,29.97,22.55,57.0,31.1,1010.7,-29.55406746641531,-154.69711912786465,-2.9947758869414627,-99.78051629127671,-3.0670981110864624,-99.05047475246657,-44.267874772568746,-146.4957827835881
-1678884451,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.9,2.8,29.97,22.55,57.0,31.1,1010.6,-29.554219547814647,-154.6941043686434,-2.9947830239671074,-99.7806168122819,-3.0670292494022404,-99.05079801850876,-44.26910098267476,-146.49404471169808
-1678884461,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.1,3.1,29.96,22.51,57.0,31.1,1010.7,-29.553900453427925,-154.69683023276855,-2.9946830601208685,-99.78086528841875,-3.0670898762868193,-99.05154166599687,-44.26773097724169,-146.49311027369612
-1678884471,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.1,3.1,29.96,22.48,57.0,31.2,1010.7,-29.553717647493286,-154.69365014070567,-2.994797538516206,-99.78066131728673,-3.0672261476676486,-99.05161620882046,-44.26738947792022,-146.49754857503063
-1678884481,30.0,30.0,55.0,55.0,0,1300000000,,,3,6.9,3.3,29.96,22.45,57.0,31.2,1010.7,-29.55355374000022,-154.69560387758162,-2.99452451435958,-99.7807499423831,-3.0672286457578988,-99.05134747399744,-44.26713446696327,-146.48546058332525
-1678884491,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.8,3.0,29.97,22.43,57.0,31.2,1010.7,-29.553361687176583,-154.69548362975718,-2.994712043553978,-99.78042128519992,-3.0670592035959765,-99.05148638156004,-44.264939712743264,-146.50564368768528
-1678884501,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,2.9,29.97,22.41,56.9,31.2,1010.6,-29.552964079193792,-154.69593760076643,-2.9945976622314543,-99.78032707171495,-3.0670702410656174,-99.05133341414721,-44.26691066125152,-146.4889082381172
-1678884511,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.2,3.0,29.96,22.36,57.0,31.3,1010.7,-29.552653068660796,-154.69651522537987,-2.994604231277088,-99.78041444754409,-3.067228798774039,-99.05139570802416,-44.268121899322736,-146.47098798593407
-1678884521,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.6,3.5,30.0,22.33,57.0,31.4,1010.7,-29.553186969646156,-154.69687109123905,-2.9944864441541466,-99.78056121702436,-3.067381249070319,-99.05130290044661,-44.26669615255193,-146.49475869233302
-1678884531,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,2.8,29.97,22.31,57.0,31.4,1010.7,-29.552762829524603,-154.69697969791744,-2.994628640014749,-99.7815042729768,-3.0672511455385516,-99.0509478499488,-44.268002550629085,-146.48882559490585
-1678884541,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.3,3.3,29.97,22.29,57.0,31.5,1010.7,-29.552953523488448,-154.69582044504378,-2.9945221749514777,-99.78098335527986,-3.067136133330435,-99.05063287332959,-44.26736467279813,-146.4838444648475
-1678884551,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.9,3.1,29.97,22.28,57.1,31.5,1010.7,-29.55307054015547,-154.69601626774465,-2.9946190136812847,-99.78139561303301,-3.067130228231943,-99.05074603759137,-44.27103630040981,-146.47152533904088
-1678884561,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.4,2.5,29.97,22.21,57.1,31.5,1010.7,-29.55270253620679,-154.6987464688731,-2.994382420670923,-99.7816516380625,-3.0673073199203875,-99.05155269097934,-44.2717708693944,-146.4611000191725
-1678884571,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.9,2.6,29.97,22.16,57.1,31.6,1010.7,-29.552717639094976,-154.69760478310386,-2.9943546038572686,-99.78136780649028,-3.067164976927785,-99.05204740455558,-44.27012983282603,-146.4715685113016
-1678884581,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.4,3.0,29.97,22.15,57.1,31.7,1010.7,-29.553309261188527,-154.69837744553777,-2.994464351326352,-99.78152636540118,-3.06706144030801,-99.05174252378734,-44.26878084493298,-146.48101697105895
-1678884591,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.3,3.0,29.97,22.11,57.0,31.7,1010.7,-29.552615956103857,-154.69795908013654,-2.9945116238113707,-99.78123540123445,-3.0671830534237805,-99.05111838880796,-44.26651712592589,-146.48091825208218
-1678884601,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.8,3.0,29.97,22.06,57.1,31.8,1010.7,-29.553024749559317,-154.69600814771337,-2.994449140384856,-99.78150182241843,-3.067208665293963,-99.05157338968431,-44.26992972080325,-146.4576424403506
-1678884611,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.5,2.4,29.97,22.01,57.1,31.8,1010.7,-29.55310893230813,-154.69615765530304,-2.9943786994826374,-99.7819903424196,-3.0674223771672997,-99.052077342255,-44.270697346942654,-146.45676538137178
-1678884621,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.5,1.8,29.97,22.01,57.1,31.9,1010.7,-29.55282026858454,-154.6961993254476,-2.99442371032611,-99.7818856590767,-3.0673479021234544,-99.05267142372772,-44.26950412163578,-146.46815126951142
-1678884631,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.6,3.1,29.98,22.01,57.1,31.9,1010.7,-29.552476392899468,-154.69609480964004,-2.9944410147093574,-99.78142501418469,-3.067302826940272,-99.05283139889183,-44.27116409936609,-146.45946558791664
-1678884641,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.8,3.0,29.97,21.99,57.1,31.9,1010.7,-29.552698972385294,-154.69437250191126,-2.994488005098852,-99.78192332985137,-3.0674712617074857,-99.0517705125488,-44.27097720723416,-146.45382996527138
-1678884651,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.3,2.6,29.97,21.99,57.1,31.9,1010.7,-29.552702176694044,-154.69591778597737,-2.994443220662679,-99.78101772355905,-3.0674504691491555,-99.05275995908883,-44.271029523377095,-146.47592372881496
-1678884661,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.5,3.3,29.97,21.95,57.0,32.0,1010.7,-29.552146788472058,-154.69862982017636,-2.994463717234515,-99.78175801194922,-3.067502538428201,-99.05308165328664,-44.26918862568769,-146.47633725759064
-1678884671,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.4,3.1,29.97,21.96,57.0,32.0,1010.8,-29.55227386091069,-154.6971286266848,-2.9947552814787444,-99.7816661685654,-3.0674410512275814,-99.0521060927048,-44.26642490418325,-146.4981510418134
-1678884681,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.7,2.9,29.97,21.95,57.0,32.0,1010.7,-29.552807690108644,-154.69738878503668,-2.994829016963897,-99.78213148661197,-3.0674064391997566,-99.05285379669245,-44.26876389194226,-146.46225530614203
-1678884691,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.6,3.2,30.0,21.94,57.0,32.0,1010.7,-29.552972313285586,-154.6950072835697,-2.994709767065831,-99.78218373233202,-3.0674196971997736,-99.05261408812673,-44.27268678619822,-146.45391962434536
-1678884701,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.9,3.4,29.98,21.91,57.0,32.1,1010.7,-29.55298214998365,-154.69563242129547,-2.9946189624970163,-99.78174796614215,-3.0673803725401667,-99.05243116300154,-44.26765465671103,-146.47391664610225
-1678884711,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.5,1.9,29.98,21.91,57.0,32.1,1010.7,-29.55287180069787,-154.6960641554965,-2.994510749119652,-99.78199929981064,-3.067270762071314,-99.05360188344508,-44.27077651844346,-146.4547551161198
-1678884721,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.6,2.5,29.97,21.9,56.9,32.1,1010.7,-29.553084051176647,-154.69588418093795,-2.994556522890463,-99.78190858098866,-3.0673696739497642,-99.05397370144553,-44.27353616231574,-146.45939409666386
-1678884731,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.3,3.3,29.97,21.89,56.9,32.1,1010.7,-29.552387111565004,-154.69666605750558,-2.9945085179335034,-99.78120634142779,-3.067357982328977,-99.05383586510736,-44.2710950081654,-146.46132286454167
-1678884741,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.3,3.1,30.0,21.9,56.9,32.1,1010.7,-29.552522651711154,-154.6954230294226,-2.994511172446293,-99.78080446488141,-3.067430649228627,-99.05390971448976,-44.27352786180536,-146.45657291491875
-1678884751,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.2,2.9,30.0,21.86,56.8,32.1,1010.7,-29.552498050324107,-154.69797504201372,-2.9946401252020083,-99.78104985327485,-3.0674385394195918,-99.05399196622001,-44.27034986489234,-146.4696386847243
-1678884761,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.9,3.0,29.98,21.86,56.8,32.1,1010.7,-29.55270286675784,-154.69715694655793,-2.994555807879926,-99.78211923190489,-3.0675218241687032,-99.05404102346752,-44.27175731562147,-146.44623859537185
-1678884771,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.5,3.5,30.0,21.86,56.8,32.1,1010.7,-29.552561790910495,-154.69597085475758,-2.9944844088596567,-99.78252374278307,-3.0675033132165623,-99.05433424422142,-44.2718756139528,-146.44175495516345
-1678884781,30.0,30.0,55.0,55.0,0,1300000000,,,3,6.3,4.1,29.97,21.89,56.7,32.1,1010.7,-29.552508825241944,-154.69306476881488,-2.994521991973244,-99.7821398896675,-3.06756430263047,-99.05336566274308,-44.27282679048627,-146.45662332641186
-1678884791,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.5,3.8,29.97,21.88,56.7,32.1,1010.7,-29.55250067838033,-154.6938839021055,-2.994636859541575,-99.78218121721082,-3.0673568548867287,-99.05314852843128,-44.26957301001696,-146.4599124291945
-1678884801,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.2,3.5,29.97,21.9,56.7,32.1,1010.6,-29.55263902999707,-154.6943533250789,-2.994699594474998,-99.78184359328269,-3.0672979695036364,-99.05295123888833,-44.27034544264107,-146.46801470800216
-1678884811,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.2,3.2,29.98,21.93,56.7,32.1,1010.6,-29.552647860525777,-154.69466510807473,-2.994581617896825,-99.78225381213171,-3.067383119133897,-99.05297659439742,-44.27068797760842,-146.46244231063278
-1678884821,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.0,3.3,30.0,21.95,56.7,32.0,1010.6,-29.552263463303948,-154.6961560897393,-2.9945038590629918,-99.78205785599829,-3.0672964469286295,-99.05334769643164,-44.27181369472035,-146.46051328000618
-1678884831,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.1,3.0,30.0,21.96,56.7,32.0,1010.6,-29.552350448894956,-154.6967003377249,-2.9948036178570514,-99.782347303285,-3.067317748904358,-99.05338331163581,-44.27409844855141,-146.45632733472604
-1678884841,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.0,3.4,30.0,21.98,56.7,31.9,1010.7,-29.55246209088037,-154.69640411585226,-2.9947041307607822,-99.78256523985895,-3.067215639487631,-99.0533876141086,-44.27529059175373,-146.4553574073054
-1678884851,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.2,3.3,30.0,21.99,56.7,31.9,1010.6,-29.55279567242691,-154.69317262180363,-2.9945297464703424,-99.78270688985195,-3.067261687980636,-99.05407680380782,-44.27735018316123,-146.45081087592902
-1678884861,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.7,3.2,30.0,21.99,56.7,31.9,1010.6,-29.552922155552825,-154.69387337611042,-2.9946361856910353,-99.7824219413577,-3.067350404115297,-99.0544168058796,-44.27674596722624,-146.4461086872758
-1678884871,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.6,3.0,29.98,21.99,56.7,31.9,1010.7,-29.553071163918617,-154.6934781120359,-2.9947315431623918,-99.78242114390405,-3.0672547612356045,-99.05471583028995,-44.27395585478151,-146.4459372661793
-1678884881,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.0,2.9,29.97,22.0,56.7,31.9,1010.6,-29.553075581256003,-154.6913238219242,-2.9947880211920674,-99.7831883662994,-3.066930827834362,-99.05441659740147,-44.27220461371746,-146.4516906424608
-1678884891,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.9,3.7,29.98,22.01,56.7,31.9,1010.7,-29.553541268101554,-154.69026591285487,-2.994854506690823,-99.78273572593884,-3.0673416834644724,-99.05451424970202,-44.2740921269753,-146.4478812999347
-1678884901,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.6,3.2,29.97,22.02,56.7,31.8,1010.7,-29.55346650144366,-154.69045945515205,-2.9948107796452517,-99.78420016332315,-3.0673509259995386,-99.05445021235667,-44.27432798811804,-146.44151061889028
-1678884911,30.0,30.0,55.0,55.0,0,1300000000,,,3,6.7,3.4,29.98,22.02,56.7,31.8,1010.7,-29.553574121473567,-154.6906001185153,-2.994724248041738,-99.78458291709595,-3.067376739791844,-99.05349355284426,-44.27328456393084,-146.4432033352993
-1678884921,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.3,3.1,30.0,22.03,56.7,31.8,1010.7,-29.554022483296755,-154.6914064641238,-2.9948502828416883,-99.78412763654514,-3.067329401413672,-99.05416467376118,-44.27385917957619,-146.43633472565676
-1678884931,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.0,2.6,29.98,22.04,56.7,31.8,1010.7,-29.554193582146958,-154.69199600214898,-2.994872401907087,-99.78562220556496,-3.067428598024086,-99.05482569214159,-44.276675171058045,-146.4375388000414
-1678884941,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.6,2.8,29.97,22.05,56.7,31.8,1010.7,-29.55373462554135,-154.69200120852253,-2.9948916399348438,-99.78524126944005,-3.067320152761956,-99.05440214454397,-44.27710829752722,-146.42993398593376
-1678884951,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.4,3.7,30.0,22.05,56.7,31.8,1010.6,-29.553712677579988,-154.69229170728343,-2.994533936955235,-99.78500534342078,-3.0673096085679257,-99.05453604444769,-44.27435381376724,-146.44458259565295
-1678884961,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.8,3.8,30.0,22.06,56.7,31.8,1010.6,-29.553364521568884,-154.691956403784,-2.9944970419452326,-99.78465478331175,-3.067314829598872,-99.0534684522662,-44.2766390437243,-146.44378026624645
-1678884971,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.2,3.1,30.0,22.08,56.7,31.8,1010.6,-29.553359001980205,-154.6931668273539,-2.9945263870564864,-99.78417195663292,-3.0673806730833513,-99.05334146333206,-44.27432041693496,-146.43593008735553
-1678884981,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.0,3.6,30.01,22.09,56.7,31.8,1010.6,-29.553279629680354,-154.69224774764191,-2.9945863299012814,-99.78378087291459,-3.067217219402711,-99.05359813468745,-44.27126537498993,-146.44281216149446
-1678884991,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.2,3.3,30.0,22.1,56.7,31.7,1010.7,-29.55299460609517,-154.69118757329426,-2.994607295576073,-99.78434506555377,-3.067272626038201,-99.05307060760921,-44.274949178411795,-146.44573502007162
-1678885001,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.0,3.0,29.98,22.11,56.7,31.7,1010.7,-29.553514525699775,-154.69203973327342,-2.9947954583765704,-99.785392652891,-3.0674498431634096,-99.05373393583857,-44.272378171597346,-146.43815974809323
-1678885011,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.4,3.4,29.98,22.12,56.7,31.7,1010.6,-29.553141392475265,-154.69278790273202,-2.994559807827977,-99.78610908317052,-3.0673513808496162,-99.05363083129224,-44.273272672250606,-146.41879537826995
-1678885021,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.7,3.8,29.97,22.14,56.7,31.7,1010.7,-29.55306684370907,-154.69328867126558,-2.9945511397754787,-99.78627290189472,-3.0674462758120336,-99.05402793113899,-44.274333687616945,-146.42922380599535
-1678885031,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.7,3.8,29.97,22.15,56.7,31.7,1010.7,-29.55352014357888,-154.69064242766078,-2.9943853941050556,-99.78598824473663,-3.0673684661640026,-99.05421524508144,-44.2733628808373,-146.4356743916482
-1678885041,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.9,3.5,29.98,22.16,56.7,31.7,1010.7,-29.553134286432655,-154.69273944758493,-2.994752127570802,-99.78552853668893,-3.067322563045975,-99.05403974650696,-44.27017277896226,-146.44098730023606
-1678885051,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.4,4.4,29.97,22.16,56.6,31.6,1010.6,-29.553191583684267,-154.69137987860398,-2.9947473046764284,-99.784633929707,-3.067379592579355,-99.05390006931388,-44.271865551382575,-146.4451401068012
-1678885061,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,3.5,30.0,22.18,56.7,31.6,1010.6,-29.55279811555893,-154.6932799907937,-2.9947643488936633,-99.78477881050682,-3.067375729265665,-99.05351380447345,-44.27122897343557,-146.44164486442634
-1678885071,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,3.1,29.97,22.19,56.6,31.6,1010.6,-29.55283438636174,-154.69332153327923,-2.9945857794329105,-99.78533822329997,-3.0673679297208722,-99.05409754237702,-44.273336250838426,-146.42817095343932
-1678885081,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.8,3.7,29.98,22.2,56.7,31.6,1010.6,-29.55312540120918,-154.69088017397345,-2.994617638772503,-99.78513059537754,-3.067537144989231,-99.0540065328484,-44.27592820432338,-146.42348648039274
-1678885091,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.4,3.4,30.0,22.21,56.7,31.6,1010.7,-29.55353862049453,-154.69048871012762,-2.994815917276873,-99.78512555950374,-3.0673162087038497,-99.05480514701472,-44.27552672733324,-146.42888043135966
-1678885101,30.0,30.0,55.0,55.0,0,1300000000,,,3,6.3,3.7,29.98,22.21,56.7,31.6,1010.6,-29.553512018546904,-154.6880692784877,-2.9946112235506632,-99.78563948220065,-3.067478573583557,-99.05386986610773,-44.276832477006096,-146.40220782823843
-1678885111,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.6,4.2,30.0,22.23,56.7,31.6,1010.6,-29.5537424728007,-154.68844109894044,-2.994629827529155,-99.78548060703329,-3.0673207442456145,-99.05491805774447,-44.27696882556272,-146.41219722982152
-1678885121,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.3,4.0,30.0,22.24,56.6,31.5,1010.6,-29.553875518798968,-154.6903879461112,-2.994461100072936,-99.78533655166594,-3.0674507434179206,-99.05491376250184,-44.27474715077338,-146.4221921403113
-1678885131,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.0,4.3,30.0,22.24,56.6,31.5,1010.6,-29.554136970384384,-154.6889177306367,-2.994797282188644,-99.78522462724811,-3.0672698916673595,-99.05469238788876,-44.275543180925226,-146.4124818010851
-1678885141,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.0,4.0,29.98,22.25,56.6,31.5,1010.6,-29.553869100839595,-154.689454323989,-2.9947156195037925,-99.7859329394536,-3.0672719596875786,-99.054692664014,-44.27252337851236,-146.42548654728705
-1678885151,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.2,3.5,29.98,22.26,56.6,31.5,1010.5,-29.553593774146716,-154.69067827389867,-2.9945239409207676,-99.7857474072089,-3.0673036651173713,-99.05499094186125,-44.27387741198338,-146.4196517791695
-1678885161,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.1,3.6,29.98,22.27,56.7,31.5,1010.5,-29.553947300834157,-154.68721961370844,-2.9945816412765875,-99.78576511305735,-3.067010617448847,-99.05519835030339,-44.27385303231702,-146.42126813390027
-1678885171,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.1,3.3,29.98,22.28,56.7,31.5,1010.6,-29.55349952665822,-154.68794564619785,-2.994568974456688,-99.78617463593406,-3.067378413686159,-99.05473291895213,-44.27894312314258,-146.40334381018022
-1678885181,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.7,3.5,29.98,22.29,56.7,31.5,1010.6,-29.55360939910832,-154.69018897779213,-2.9946895738513533,-99.78648025284168,-3.067347254549035,-99.05595189246327,-44.27663064162522,-146.4073663528455
-1678885191,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.9,3.5,29.98,22.29,56.7,31.5,1010.6,-29.553628549931382,-154.68758984489793,-2.9946297216573874,-99.78611759489637,-3.0672163708711513,-99.05520625107022,-44.27764872457641,-146.41251509814433
-1678885201,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.7,3.2,29.97,22.3,56.7,31.5,1010.6,-29.554032950174797,-154.68805169734912,-2.9946867234926486,-99.78666715400227,-3.067264779317358,-99.05553713602735,-44.27962349962968,-146.38630013392293
-1678885211,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.8,3.2,29.98,22.3,56.7,31.5,1010.6,-29.554085552746137,-154.68701064102115,-2.9945428540190027,-99.78668796305045,-3.0673828668492424,-99.05600566408552,-44.27841390663379,-146.38695393729247
-1678885221,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.3,3.6,29.98,22.31,56.7,31.4,1010.6,-29.553826580412228,-154.68861002950763,-2.9945353134211223,-99.78605431490244,-3.0672797601047415,-99.05648231704005,-44.277138470490215,-146.4194955561717
-1678885231,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.6,4.1,29.98,22.33,56.7,31.4,1010.6,-29.553865564106964,-154.68743726359827,-2.994652780677975,-99.78638106114028,-3.067404940637396,-99.05739549482756,-44.27937159055729,-146.4014180803186
-1678885241,30.0,30.0,55.0,55.0,0,1300000000,,,3,11.0,3.7,29.98,22.33,56.7,31.4,1010.7,-29.553509550227606,-154.6892160775495,-2.9944528395622685,-99.78735995367484,-3.0673340418980786,-99.05696696313085,-44.278370601050284,-146.40419532991757
-1678885251,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.3,3.3,29.97,22.33,56.7,31.4,1010.5,-29.554290605033202,-154.6866903489081,-2.9946122054853337,-99.78679213378206,-3.0672990851662134,-99.05809396399864,-44.27925594075226,-146.387769949923
-1678885261,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.7,4.0,29.98,22.34,56.7,31.4,1010.6,-29.554092577273103,-154.6888115403983,-2.9946532441248164,-99.78752727530215,-3.0672309746922224,-99.05740785066911,-44.27699778064063,-146.39479731822738
-1678885271,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.5,4.1,29.98,22.35,56.7,31.4,1010.7,-29.55448559550552,-154.68989417278985,-2.9946597705501543,-99.78777892014429,-3.0673617422972694,-99.05704090674197,-44.275255751078085,-146.38383450928427
-1678885281,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.9,4.4,29.98,22.35,56.7,31.4,1010.6,-29.554274936576842,-154.68640613592655,-2.994613321692988,-99.7879228456647,-3.0672593834517476,-99.05689787986752,-44.27844832456906,-146.36724058260836
-1678885291,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.1,3.5,29.98,22.35,56.7,31.3,1010.6,-29.554463963624965,-154.68645100802925,-2.9946130383422624,-99.78819322080194,-3.067283257212987,-99.05760785227731,-44.27915179940933,-146.3535973110475
-1678885301,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.6,4.3,29.97,22.36,56.6,31.3,1010.6,-29.554131833501444,-154.68694468388807,-2.9944947894043565,-99.78810349844971,-3.067389147603763,-99.05695184838578,-44.28118668943359,-146.3604069731877
-1678885311,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.1,4.5,29.98,22.36,56.6,31.3,1010.6,-29.5544269470619,-154.68247878132286,-2.9945418804695145,-99.78740964104563,-3.067466355983899,-99.05663525768193,-44.28422853165972,-146.36306149546564
-1678885321,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.0,4.5,30.01,22.38,56.6,31.3,1010.6,-29.55444638652955,-154.68346490739685,-2.994569542996385,-99.7870244682538,-3.0674584947552463,-99.05653487367846,-44.2838594123743,-146.36647232204618
-1678885331,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.6,4.5,30.01,22.39,56.6,31.3,1010.6,-29.554285934712414,-154.6858723593253,-2.994536371057985,-99.78668100167032,-3.06725392784247,-99.05696559979917,-44.283608394084865,-146.36489645295717
-1678885341,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.1,3.7,30.01,22.39,56.6,31.3,1010.6,-29.554827308545477,-154.68432081858836,-2.9946668515049883,-99.78804316400544,-3.0673958759214575,-99.0563079587254,-44.28494942029101,-146.34828047157475
-1678885351,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.2,3.6,30.0,22.4,56.7,31.3,1010.7,-29.554799826635673,-154.68412636765825,-2.994647160763271,-99.78767414037291,-3.067313732256374,-99.05637380650032,-44.28545217348191,-146.3432310252181
-1678885361,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.1,3.6,29.97,22.4,56.7,31.3,1010.6,-29.5546462542531,-154.6866988437912,-2.994604702205449,-99.78849456431277,-3.067452327460087,-99.05604542353903,-44.282071603335766,-146.35749275763496
-1678885371,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.5,4.2,30.0,22.41,56.7,31.3,1010.7,-29.55450448421226,-154.68344162465442,-2.9944290153010615,-99.78745777456596,-3.0674777358457357,-99.056643010421,-44.2818142798346,-146.36728520901954
-1678885381,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.2,3.9,30.01,22.42,56.7,31.3,1010.6,-29.554477806928045,-154.685750819679,-2.994560668295617,-99.78767585085023,-3.0673449082652526,-99.0558773256783,-44.28352350331767,-146.36081096176306
-1678885391,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.9,4.3,30.0,22.42,56.7,31.3,1010.6,-29.554422139755353,-154.68642248871532,-2.994646497305911,-99.78761106514023,-3.0673140610667886,-99.05616150914587,-44.284555627407585,-146.36865695021
-1678885401,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.7,4.2,29.98,22.42,56.7,31.3,1010.6,-29.554373498301576,-154.68568036836393,-2.994550884345488,-99.78799021076756,-3.0675174529269684,-99.05602955324981,-44.287243356535946,-146.33575322498496
-1678885411,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.5,3.9,29.97,22.43,56.6,31.2,1010.6,-29.55446143705477,-154.68388597386263,-2.9942119168271804,-99.78790613295963,-3.0675087636205216,-99.0562651503598,-44.28926397186464,-146.33705016539082
-1678885421,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.9,4.3,30.0,22.43,56.7,31.2,1010.6,-29.55439417555549,-154.68404709376122,-2.994360287532483,-99.78782983933078,-3.067381087871908,-99.05620596345915,-44.287934739820855,-146.35324057002495
-1678885431,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.0,4.2,30.01,22.43,56.7,31.2,1010.6,-29.554927081927676,-154.68202293155989,-2.9945520257546248,-99.78850586213481,-3.0673806925218994,-99.05581902938876,-44.28768345032935,-146.35782645848806
-1678885441,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.0,3.8,30.01,22.44,56.7,31.2,1010.6,-29.55435801850987,-154.682945456355,-2.994446103518639,-99.7882850761466,-3.0674133898353655,-99.05527797209298,-44.287574043460005,-146.33306631235536
-1678885451,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.3,3.8,30.01,22.44,56.7,31.2,1010.6,-29.554509933661567,-154.6828659888173,-2.9944223977360935,-99.78806874547044,-3.0675292377681145,-99.0553162940205,-44.28654689324861,-146.34452410503414
-1678885461,30.0,30.0,55.0,55.0,0,1300000000,,,3,6.7,4.3,30.0,22.45,56.7,31.2,1010.7,-29.554507418599535,-154.68330697612126,-2.994632389907876,-99.78743998317051,-3.067546853030381,-99.05582841122298,-44.286336253068555,-146.34803555439242
-1678885471,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.2,4.2,30.0,22.46,56.7,31.2,1010.6,-29.55484284948358,-154.6811429864294,-2.9945402042972704,-99.7881288272903,-3.0674426063784885,-99.05589421580555,-44.28738696579686,-146.32156135184266
-1678885481,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.1,3.6,30.0,22.47,56.8,31.2,1010.6,-29.55465633373737,-154.68184262885836,-2.994447503742336,-99.7884962776253,-3.0673715750210735,-99.05622614874326,-44.28968186668535,-146.30792022769543
-1678885491,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.1,3.4,30.01,22.47,56.8,31.2,1010.6,-29.554757590483398,-154.67837770526143,-2.9945872185731757,-99.78877966210685,-3.0674256717036323,-99.0560812737754,-44.28834108257314,-146.32235360540813
-1678885501,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,3.3,30.0,22.48,56.9,31.2,1010.6,-29.554941857993565,-154.680410493846,-2.9945765609504353,-99.78811586717232,-3.0674044311263584,-99.0561588330217,-44.28783887376059,-146.3338298122126
-1678885511,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.3,3.2,29.98,22.48,56.9,31.2,1010.6,-29.55529369776031,-154.67958617655083,-2.994573192613435,-99.7882537385718,-3.0673251922001263,-99.05655742079719,-44.28821660626714,-146.3195655657267
-1678885521,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.3,3.6,29.98,22.48,56.9,31.2,1010.6,-29.555556225514067,-154.67828625425904,-2.9944474555512635,-99.78799939751563,-3.067211964782694,-99.05703985891284,-44.28659933926074,-146.32989915443017
-1678885531,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.0,3.5,29.98,22.49,56.9,31.2,1010.7,-29.55544171193661,-154.67855825696796,-2.994438100491215,-99.78795031039016,-3.0671449753479623,-99.05706201915788,-44.28819645582514,-146.32244876642204
-1678885541,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.7,3.6,29.98,22.5,56.9,31.2,1010.6,-29.55635144347751,-154.67777141333195,-2.994437822213852,-99.78761667128063,-3.067388713767837,-99.05735246826433,-44.28813957302381,-146.31229789992935
-1678885551,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.1,2.9,29.97,22.5,56.9,31.2,1010.6,-29.556081968066515,-154.6770188185232,-2.9945666656204475,-99.78893119783353,-3.0672975062598744,-99.0579238525601,-44.291911377438964,-146.31396596669737
-1678885561,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.7,3.3,29.98,22.51,57.0,31.2,1010.5,-29.55611611130502,-154.67567486411525,-2.9946113458358665,-99.7890948920553,-3.067311316141943,-99.05800069916452,-44.29060597745136,-146.31609961366152
-1678885571,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.4,3.2,29.98,22.53,57.0,31.2,1010.7,-29.55639101758901,-154.6749240835952,-2.994567603541673,-99.78956475947969,-3.0674479831792385,-99.05798750034288,-44.29506290848004,-146.3016879835292
-1678885581,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.7,3.6,29.98,22.54,57.0,31.2,1010.7,-29.556768418870753,-154.67394410459733,-2.994420459734765,-99.78946257501066,-3.067243743164778,-99.05842744792609,-44.29145479532692,-146.3081668028699
-1678885591,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.3,3.2,30.01,22.54,57.0,31.2,1010.7,-29.55718431222927,-154.6742816994828,-2.9945031774404423,-99.78877764349896,-3.067367877702444,-99.05903326921046,-44.29218910486274,-146.29877084157056
-1678885601,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.0,3.2,30.01,22.55,57.0,31.2,1010.7,-29.55681175633242,-154.6755391932648,-2.9947297354563234,-99.78882070334826,-3.0673540734231657,-99.05882594893808,-44.29043164858829,-146.3018792010242
-1678885611,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.2,3.3,30.01,22.55,57.0,31.2,1010.7,-29.55699015030255,-154.6709358212032,-2.9948449776288033,-99.7892051523187,-3.0673303631223736,-99.05868966069553,-44.29299589901699,-146.29150919465837
-1678885621,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.5,3.1,29.98,22.55,57.0,31.2,1010.7,-29.557537949532062,-154.67001984367718,-2.9947112179436046,-99.78879638632573,-3.0673659043265937,-99.05888135751478,-44.293372626865505,-146.302742141432
-1678885631,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.3,2.9,30.0,22.55,57.1,31.2,1010.7,-29.557318896124485,-154.6694132719046,-2.994727650147903,-99.78921934030961,-3.067518869340946,-99.05840945472764,-44.292646009698785,-146.29911343830918
-1678885641,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.3,3.0,30.01,22.55,57.1,31.2,1010.6,-29.557340600694417,-154.6699518085152,-2.9948301665812553,-99.78908163427029,-3.067213072686232,-99.05831195890318,-44.29213784888709,-146.29176253528564
-1678885651,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.5,2.7,30.01,22.55,57.1,31.2,1010.6,-29.5574566482856,-154.6691548559902,-2.994905497120331,-99.7894043248385,-3.0675565817545927,-99.05837997869004,-44.29486233622189,-146.27996390233088
-1678885661,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.3,2.8,30.01,22.55,57.1,31.1,1010.7,-29.557805256054444,-154.6681741827471,-2.994904968007117,-99.78981614134469,-3.0673227854228284,-99.05848360913649,-44.29237506246305,-146.27912346557093
-1678885671,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.8,2.5,30.01,22.55,57.0,31.1,1010.7,-29.55766442042585,-154.6685968769591,-2.9947120589401424,-99.78978775398173,-3.0675129900229416,-99.05948387059877,-44.29739712844564,-146.27849574644065
-1678885681,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.5,3.0,30.0,22.55,57.0,31.1,1010.6,-29.557469554485543,-154.66995327573235,-2.99461869916985,-99.7904383404443,-3.0674989640403854,-99.05941506225479,-44.29778586414143,-146.27124591750785
-1678885691,30.0,30.0,55.0,55.0,0,1300000000,,,3,11.1,2.8,29.98,22.55,57.0,31.1,1010.7,-29.557182092854237,-154.6705824500786,-2.9944151767523284,-99.79083932114222,-3.0674754620825064,-99.05994200449288,-44.297159917921405,-146.2620333705118
-1678885701,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.1,2.7,30.0,22.55,57.0,31.1,1010.7,-29.557909423164336,-154.6692951637469,-2.9946064345024643,-99.7910230184937,-3.067273186228076,-99.0603491931572,-44.29746994771616,-146.27025171777657
-1678885711,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.1,3.0,29.98,22.55,57.0,31.1,1010.7,-29.558607115458237,-154.66603722017015,-2.9946921443461383,-99.7914935817598,-3.0672673365895067,-99.06053501415612,-44.298188140198185,-146.25320110784395
-1678885721,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.4,3.1,30.0,22.55,57.0,31.1,1010.7,-29.558751997411935,-154.66562757542567,-2.9947793273142405,-99.79078814330234,-3.0674375775443217,-99.06052588361469,-44.30028339015835,-146.24483293145917
-1678885731,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.0,2.9,30.01,22.55,57.0,31.1,1010.7,-29.55872056271498,-154.66661659310807,-2.994664640665969,-99.79120892099938,-3.0673441299760547,-99.06039768637913,-44.29883978495909,-146.24456008816236
-1678885741,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.3,3.2,30.01,22.55,57.0,31.1,1010.7,-29.55868033577568,-154.6647892242479,-2.994633748756495,-99.79138797816498,-3.067575229790701,-99.06016364540918,-44.30163534455701,-146.23649982468908
-1678885751,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.0,2.9,30.01,22.55,57.0,31.1,1010.6,-29.55884280451656,-154.66668756703723,-2.99450519325901,-99.790613240982,-3.0674746145943237,-99.0613484459241,-44.29914352042739,-146.23471106369527
-1678885761,30.0,30.0,55.0,55.0,0,1300000000,,,3,11.0,3.1,30.01,22.55,57.0,31.1,1010.6,-29.5584098527722,-154.66777226583878,-2.994514838982659,-99.79094211490107,-3.067590829669415,-99.06108625683129,-44.301561436489116,-146.24025066178018
-1678885771,30.0,30.0,55.0,55.0,0,1300000000,,,3,11.0,2.7,30.01,22.55,56.9,31.1,1010.6,-29.558608411665368,-154.66981327374234,-2.9945935343913477,-99.79177704793166,-3.067379175806269,-99.06148790617164,-44.301423759411335,-146.23873350614963
-1678885781,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.3,3.3,30.01,22.55,56.9,31.1,1010.6,-29.558663969568443,-154.6658539441855,-2.994590629152447,-99.79108730391819,-3.06749346510058,-99.06169648700923,-44.305469327430245,-146.21080994435818
-1678885791,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.7,3.3,30.0,22.55,56.9,31.1,1010.7,-29.559282319861765,-154.66347590831776,-2.994714958920677,-99.79052396704262,-3.067350127263067,-99.061800231369,-44.304957961043726,-146.22405713292795
-1678885801,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.6,3.0,30.0,22.56,56.9,31.1,1010.7,-29.559468939707877,-154.6607194087248,-2.9946812828787737,-99.79064032299722,-3.0674435024652356,-99.06173299751576,-44.30515896912211,-146.21629675448804
-1678885811,30.0,30.0,55.0,55.0,0,1300000000,,,3,6.8,3.2,30.0,22.58,56.9,31.1,1010.8,-29.559704626953433,-154.6628569479123,-2.9948363988000146,-99.79121503037288,-3.0675896728154433,-99.0617864154683,-44.30493718763771,-146.2141839469429
-1678885821,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.3,3.2,30.01,22.59,56.9,31.1,1010.7,-29.55988562727994,-154.6586878510425,-2.9948539474361624,-99.79089549553328,-3.067512897656516,-99.06114644713418,-44.30568298081645,-146.22830217317969
-1678885831,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.7,3.2,30.01,22.61,56.8,31.1,1010.7,-29.5600049445809,-154.659679838028,-2.9949470763955066,-99.79091850446576,-3.067392253079823,-99.06038424195874,-44.30339085738848,-146.22256391630384
-1678885841,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.5,3.4,30.01,22.62,56.8,31.0,1010.6,-29.56006896382462,-154.65897140016273,-2.99461695498527,-99.79060808081518,-3.0674175017847727,-99.06149694419435,-44.3026938071952,-146.2080500239085
-1678885851,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.2,3.0,30.01,22.64,56.8,31.0,1010.6,-29.55968526121467,-154.6601929485449,-2.994808323288903,-99.7903093186524,-3.067545620147868,-99.06152098051967,-44.30322879123966,-146.22845861821187
-1678885861,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.5,3.2,30.01,22.67,56.8,30.9,1010.6,-29.559767729123575,-154.65917796758336,-2.9948214328919525,-99.79032513966366,-3.067401617561597,-99.06151247050884,-44.30338268828325,-146.2206633668479
-1678885871,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.4,3.2,30.01,22.67,56.8,30.9,1010.6,-29.559847353367367,-154.65801454307538,-2.9948272773996476,-99.79037314381875,-3.0674636948543372,-99.06144890588523,-44.30642675507247,-146.1964325557966
-1678885881,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.7,3.4,30.01,22.65,56.8,30.9,1010.6,-29.559646282840795,-154.65827862053874,-2.9949481473814936,-99.79034664515832,-3.0674973650705977,-99.0602722615838,-44.30420038611311,-146.21422946267964
-1678885891,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,3.5,30.01,22.64,56.8,30.9,1010.6,-29.559991308000235,-154.659026890624,-2.994900135204536,-99.7898186600935,-3.0674306676713368,-99.06050287648743,-44.30351255260171,-146.21527120754848
-1678885901,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.7,3.1,30.01,22.62,56.8,31.0,1010.7,-29.560119309850048,-154.65640363490706,-2.9947333953936397,-99.78970150041609,-3.0675437039251685,-99.06203116204503,-44.30887108064154,-146.20254676263744
-1678885911,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.4,3.3,30.01,22.61,56.8,31.0,1010.7,-29.56065017688349,-154.6563156149788,-2.994824201213655,-99.79091424112946,-3.0676745723338366,-99.06157596745498,-44.30761552934329,-146.1973079374861
-1678885921,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.0,3.7,30.01,22.58,56.8,31.0,1010.7,-29.560118731492324,-154.65901268870542,-2.994854031132079,-99.79083589759365,-3.0674173817521693,-99.06089279472458,-44.30496098059553,-146.2069539800769
-1678885931,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.6,3.0,30.01,22.55,56.8,31.1,1010.7,-29.5606230612163,-154.65607721810713,-2.994834144884901,-99.79123601652921,-3.0675527418010056,-99.06136842637298,-44.30962234636504,-146.20011563652358
-1678885941,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.0,3.3,30.01,22.55,56.8,31.1,1010.7,-29.560745528998126,-154.6558742451301,-2.9948255245064592,-99.79103090551145,-3.0675088673959645,-99.06125387592863,-44.30696930682294,-146.2018065783783
-1678885951,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.0,3.4,30.01,22.55,56.8,31.1,1010.7,-29.56104536717661,-154.65651172666884,-2.9948283585754423,-99.79203253331342,-3.067551197512151,-99.0608670465509,-44.30914506497825,-146.17739907367215
-1678885961,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.4,2.8,30.01,22.49,56.8,31.2,1010.6,-29.5611415594816,-154.6565993264611,-2.9947025745738056,-99.7915696727772,-3.0674223906157687,-99.06185337685316,-44.31209902665685,-146.18759759558588
-1678885971,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.9,2.5,30.0,22.47,56.8,31.2,1010.6,-29.561092865599367,-154.6543622596402,-2.9948142219071117,-99.79253273325368,-3.0673876852283453,-99.0612416045206,-44.31023602394174,-146.193131139406
-1678885981,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.6,2.8,30.01,22.44,56.8,31.2,1010.6,-29.56143038602468,-154.65138660294932,-2.994885345371152,-99.7925769608171,-3.0674193398203586,-99.06205739509541,-44.314037842124414,-146.1815404406644
-1678885991,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.2,3.0,30.0,22.43,56.8,31.2,1010.7,-29.56166951528292,-154.65192470362416,-2.994759521920975,-99.79344286986081,-3.067444996554255,-99.06249223461472,-44.31467666168156,-146.14331521408664
-1678886001,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.8,2.8,30.0,22.4,56.8,31.3,1010.6,-29.56211396274341,-154.65184063173723,-2.9946079055274595,-99.79421132383571,-3.0674071957489852,-99.06185536306602,-44.31562792883198,-146.14786014055628
-1678886011,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.0,3.7,30.0,22.39,56.8,31.3,1010.6,-29.562508213534695,-154.6496331464861,-2.994608925508185,-99.7934360727686,-3.067458274959116,-99.06308088131723,-44.316179259145024,-146.15067240495213
-1678886021,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.1,3.4,30.01,22.35,56.8,31.4,1010.6,-29.561992501214878,-154.64793066604494,-2.994676797919143,-99.79223265659229,-3.067506892991394,-99.062365061306,-44.313817951855235,-146.14180597649752
-1678886031,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.7,3.5,30.01,22.33,56.8,31.4,1010.6,-29.561963756338663,-154.65165198838267,-2.9945703501753576,-99.79232820005355,-3.0674123420674286,-99.06163386908852,-44.313584615482,-146.14953229093365
-1678886041,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.8,2.8,30.01,22.27,56.8,31.5,1010.6,-29.56212752451784,-154.65087030130644,-2.9948355639837763,-99.79243966459074,-3.067401841543255,-99.06270233950377,-44.31088143394017,-146.15931208707624
-1678886051,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.5,3.2,30.0,22.24,56.8,31.6,1010.6,-29.562007141321793,-154.6509845427879,-2.994637020411935,-99.7926589664701,-3.0675893367427873,-99.06316791271763,-44.315186655128386,-146.1426735421138
-1678886061,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.8,3.0,30.01,22.21,56.8,31.6,1010.7,-29.56242965427048,-154.64960068867106,-2.9945740664681364,-99.79283891683906,-3.0674467905015024,-99.0639588718639,-44.31704062023872,-146.1279751686233
-1678886071,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.1,3.5,30.01,22.16,56.8,31.7,1010.6,-29.562538790595486,-154.64958937414897,-2.994672505285896,-99.79265772090272,-3.0675243908812067,-99.06401108851838,-44.31549473507539,-146.13208078932547
-1678886081,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,3.2,30.01,22.15,56.8,31.7,1010.6,-29.56256651782127,-154.64823400934128,-2.9947661008478192,-99.79243965418384,-3.067479870861453,-99.06362191443128,-44.31420355379611,-146.13898954449877
-1678886091,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.8,2.8,30.0,22.11,56.8,31.7,1010.7,-29.56277472872948,-154.6474978662595,-2.994705488371212,-99.79263589268972,-3.0674675488147907,-99.06294613520662,-44.31830312648807,-146.13292754628205
-1678886101,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.8,3.1,30.01,22.09,56.8,31.8,1010.6,-29.56259295190137,-154.64712093525236,-2.9948306010606123,-99.79329150395426,-3.067512121582613,-99.06274052900127,-44.315886395050754,-146.1383859138131
-1678886111,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.4,2.4,30.01,22.03,56.8,31.9,1010.6,-29.562960964323413,-154.64626111359067,-2.994920096238544,-99.79485541563675,-3.0675496339346364,-99.06360383023772,-44.320712692168584,-146.13862763867772
-1678886121,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.9,3.5,30.0,22.02,56.8,31.9,1010.6,-29.563496688267115,-154.64413660435798,-2.9946531626097923,-99.79527878908199,-3.0673328941973073,-99.064889205595,-44.32023296431545,-146.1325594330386
-1678886131,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.1,3.7,29.98,22.02,56.8,31.9,1010.6,-29.563205415989625,-154.64651935551393,-2.9948516805427525,-99.79440525970192,-3.0672142500104864,-99.06327281044572,-44.31381644044237,-146.15282632704154
-1678886141,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.8,3.5,29.98,22.0,56.8,31.9,1010.6,-29.56335480006054,-154.64352261430133,-2.99501070224765,-99.79430781123726,-3.0674341162764818,-99.06393131560954,-44.31751316896968,-146.13859718286065
-1678886151,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.1,3.5,29.98,21.99,56.8,32.0,1010.6,-29.563263789145754,-154.64666086261846,-2.9949707256760405,-99.79489314248211,-3.06739374291842,-99.06342002868251,-44.314081462340155,-146.1314835621612
-1678886161,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.9,3.1,30.01,21.96,56.8,32.0,1010.6,-29.563285775336002,-154.64646632335374,-2.9946717723792444,-99.79554759708857,-3.0674380494032394,-99.06452672900079,-44.31703402997316,-146.1155501596408
-1678886171,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.7,3.1,30.0,21.95,56.8,32.1,1010.7,-29.563330597272767,-154.64806949396936,-2.994778994533182,-99.79571722953332,-3.0673973628150994,-99.06543989918782,-44.31686990728239,-146.1352933057267
-1678886181,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.3,3.4,30.01,21.97,56.7,32.1,1010.7,-29.563825424115727,-154.64302194040914,-2.9947958656369646,-99.79545850505536,-3.067405068322759,-99.06619631355694,-44.31930545902311,-146.1112008202312
-1678886191,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.1,3.6,30.01,21.98,56.7,32.1,1010.7,-29.56366196233016,-154.64520476697092,-2.9947479824394314,-99.79524293664835,-3.0674225852999664,-99.06673392586536,-44.32036219643592,-146.09711040391417
-1678886201,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.5,3.4,30.01,21.98,56.7,32.0,1010.6,-29.56345342780681,-154.64668659572894,-2.9947711262931658,-99.79570090937975,-3.0673844557097056,-99.06622806362131,-44.32098213742318,-146.1055483765971
-1678886211,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.5,4.2,29.98,21.99,56.7,32.1,1010.7,-29.56263882673187,-154.64687894429258,-2.994737228657336,-99.795751672433,-3.0673655714276893,-99.06670047822963,-44.321704603766364,-146.111106741876
-1678886221,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,3.4,30.0,21.96,56.7,32.1,1010.7,-29.56304346598906,-154.64714208007035,-2.9948543288613667,-99.796636775739,-3.067400662290285,-99.06710249768007,-44.321587109293496,-146.11028940720516
-1678886231,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.2,3.4,29.98,21.95,56.7,32.1,1010.7,-29.5635298666806,-154.6446448691471,-2.994796842000817,-99.79651154874836,-3.0672794828857404,-99.06756205706243,-44.3203302367569,-146.125196279529
-1678886241,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.9,3.9,29.97,21.95,56.6,32.1,1010.6,-29.56309914071972,-154.64660999063418,-2.994545988154546,-99.79621152596967,-3.0671551474118957,-99.06849847135936,-44.32129497412613,-146.10770652752936
-1678886251,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.3,3.7,29.97,21.95,56.7,32.1,1010.7,-29.563077450360254,-154.64514806555718,-2.994578265472102,-99.79601574332683,-3.067421926928084,-99.06888018610672,-44.32302867369501,-146.09816760718465
-1678886261,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.9,3.8,29.97,21.96,56.6,32.1,1010.6,-29.563029401201145,-154.64895696666008,-2.9946519806512546,-99.79628609198149,-3.067363850249854,-99.0682455881521,-44.32017381794402,-146.11380747960354
-1678886271,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.2,3.3,29.97,21.96,56.6,32.1,1010.7,-29.563348777525725,-154.64376737513498,-2.99466094192903,-99.79727813276628,-3.0673730088183078,-99.06852109976208,-44.32183516816144,-146.0936597890056
-1678886281,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.6,3.9,29.97,21.98,56.6,32.1,1010.5,-29.563128538905428,-154.64577034876612,-2.99452268974749,-99.79654771750371,-3.067455724680581,-99.06916594053264,-44.321275571614095,-146.08773322810254
-1678886291,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.0,4.2,29.97,21.99,56.6,32.1,1010.6,-29.562924925351773,-154.6459491334769,-2.994512721736617,-99.79713521189841,-3.0675494528648213,-99.06877887917264,-44.32031030756075,-146.09194174615976
-1678886301,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.9,4.5,29.98,21.99,56.6,32.0,1010.6,-29.563010493006104,-154.6463154404008,-2.994672422422858,-99.79597625567384,-3.0675405704079903,-99.06829584609929,-44.32022306726971,-146.09417377209033
-1678886311,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.7,4.1,30.01,22.0,56.6,32.0,1010.5,-29.562833559337726,-154.6465284726172,-2.9947861867712637,-99.79578096612269,-3.0673814172876614,-99.06717565256783,-44.31823733060992,-146.11766531649602
-1678886321,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.0,3.9,30.0,22.0,56.5,32.0,1010.5,-29.563405713035515,-154.64474905199503,-2.9947850760976147,-99.79669189166445,-3.067473464733383,-99.06755571053618,-44.323409945717,-146.0807202145301
-1678886331,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.4,4.1,30.0,22.0,56.5,32.0,1010.6,-29.5630534022647,-154.64654208942687,-2.994388590761919,-99.79664185562385,-3.067453686574551,-99.06746040937944,-44.32186559919842,-146.09976943811944
-1678886341,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.5,4.1,30.0,22.01,56.5,32.0,1010.6,-29.563217077928286,-154.64573233322835,-2.9944878610827423,-99.79729577449773,-3.0676788067920366,-99.06833194098208,-44.324747938482034,-146.08361545194572
-1678886351,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.5,3.9,30.01,22.02,56.5,32.0,1010.6,-29.56305725140578,-154.64532628052189,-2.994731885073039,-99.79668171594335,-3.067679720648659,-99.06806558821694,-44.32171467176066,-146.09805484657969
-1678886361,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.3,4.5,30.0,22.03,56.5,32.0,1010.5,-29.562460489582417,-154.6448039044353,-2.994427706746095,-99.79673804186193,-3.0675164355055564,-99.06846254372851,-44.324513778688654,-146.09211439545123
-1678886371,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.4,4.4,30.0,22.05,56.5,32.0,1010.6,-29.56303894852124,-154.64689588539804,-2.9944130585462823,-99.79794924655651,-3.0675566459728225,-99.06797524213783,-44.32252890410553,-146.10998811741672
-1678886381,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.5,3.9,29.98,22.06,56.5,31.9,1010.6,-29.56327693421777,-154.64554450881644,-2.9948050017416983,-99.79805286311674,-3.0674474838549743,-99.06849305832056,-44.32165450338033,-146.1065494664434
-1678886391,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.3,4.5,29.97,22.08,56.5,31.9,1010.6,-29.563294148969625,-154.64320834420172,-2.9945351851819497,-99.79839644485202,-3.067577534733142,-99.06931588067434,-44.32588949978978,-146.08921794891367
-1678886401,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.7,3.8,29.97,22.09,56.5,31.9,1010.6,-29.562802747801967,-154.64501656638402,-2.9944093391592035,-99.79848314040683,-3.0674740918461474,-99.06895706029198,-44.3240062675019,-146.09541823625028
-1678886411,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.9,4.2,29.97,22.09,56.6,31.9,1010.6,-29.563361278063564,-154.64430222351157,-2.994348066839001,-99.7990927703998,-3.0674485562637823,-99.06962477750578,-44.32380497537962,-146.09127028163897
-1678886421,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.2,4.2,29.97,22.11,56.6,31.9,1010.6,-29.563547668553625,-154.6422847368932,-2.994692140981356,-99.79886108442847,-3.067337581292624,-99.07026555614945,-44.32610642898013,-146.0975163218654
-1678886431,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.6,4.2,29.97,22.12,56.6,31.9,1010.6,-29.56319890690345,-154.64469705944543,-2.994723360290386,-99.79873472975882,-3.0674617268514783,-99.06948384491228,-44.32163995976431,-146.10698587044564
-1678886441,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.9,3.4,29.98,22.13,56.6,31.8,1010.6,-29.562939740617665,-154.64455571165945,-2.9946000453271293,-99.79928858618278,-3.067451549097087,-99.06942282819877,-44.32552491544699,-146.09933837861158
-1678886451,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.7,4.4,29.97,22.14,56.6,31.8,1010.6,-29.562684983194913,-154.64505084094213,-2.9945651606380723,-99.7982570282133,-3.067501308467614,-99.0699625610225,-44.32608386117316,-146.08243648654224
-1678886461,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.5,4.1,29.97,22.15,56.6,31.8,1010.6,-29.562697905877492,-154.64474739351667,-2.9947273888976573,-99.79941961372568,-3.0674489848457975,-99.07023543463708,-44.3256263817782,-146.10524809723688
-1678886471,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.7,5.0,29.97,22.15,56.6,31.8,1010.6,-29.562516234991683,-154.6472806701879,-2.9944109903537046,-99.79914149807205,-3.067307148584666,-99.06989245635044,-44.32478813049898,-146.10012559644426
-1678886481,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.2,4.7,29.97,22.16,56.5,31.8,1010.6,-29.562751705141505,-154.64604923298103,-2.9945323845908045,-99.79901564669292,-3.067507796226727,-99.07035969577704,-44.325193780393064,-146.0940165366919
-1678886491,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.1,4.8,29.97,22.18,56.6,31.7,1010.6,-29.56247054766411,-154.64668512170257,-2.994279420704689,-99.7986589237226,-3.0674509199314715,-99.06971882651081,-44.32365907476364,-146.07750242533453
-1678886501,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.8,4.2,29.98,22.18,56.6,31.7,1010.6,-29.562500211825107,-154.64642961457687,-2.9946085610046658,-99.7987320153311,-3.06738286337557,-99.07018180538311,-44.3249706353133,-146.09818690882085
-1678886511,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.6,3.5,29.97,22.2,56.7,31.7,1010.6,-29.56268733310889,-154.6444837782217,-2.994582927878247,-99.7986822868609,-3.0674891228376397,-99.06964690328537,-44.32510011259574,-146.0965540490824
-1678886521,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.6,3.4,29.97,22.21,56.8,31.7,1010.6,-29.56289739886612,-154.6438807315648,-2.994558750757606,-99.7995136579608,-3.0673451210870333,-99.0691321667875,-44.32377794073065,-146.09787242252636
-1678886531,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.7,3.2,29.97,22.21,56.8,31.7,1010.6,-29.563319517044885,-154.64423177463513,-2.99448180273623,-99.79999278043044,-3.0673475192188375,-99.07001275965625,-44.324925277653136,-146.0868704030731
-1678886541,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.9,3.7,29.97,22.24,56.8,31.7,1010.6,-29.562586652553723,-154.64537085596604,-2.9945005931379933,-99.79887394118943,-3.067178551951027,-99.07068448926083,-44.32535004564352,-146.090944809201
-1678886551,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.2,4.0,29.97,22.24,56.8,31.7,1010.6,-29.562962472568582,-154.64379964441687,-2.994717777871206,-99.79848079974688,-3.067228200072592,-99.07109084049262,-44.326122479201686,-146.09597824938595
-1678886561,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,4.0,29.98,22.25,56.8,31.7,1010.7,-29.563787693276264,-154.6397265076429,-2.9948684865184214,-99.79840008930616,-3.0671379964403984,-99.06980493735406,-44.3236391013746,-146.06762682191712
-1678886571,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.4,3.7,29.97,22.26,56.8,31.7,1010.6,-29.56332710984483,-154.64097095645303,-2.9948715439295626,-99.79837045896056,-3.067100551490009,-99.0695490316132,-44.32181312665801,-146.09089059612123
-1678886581,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.2,3.7,30.01,22.27,56.8,31.6,1010.6,-29.563457539493776,-154.64383320084042,-2.994822561024793,-99.79887712326772,-3.0671359738502986,-99.06898624624128,-44.32104555936108,-146.1038298159142
-1678886591,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.6,3.2,29.98,22.28,56.8,31.6,1010.6,-29.563514174508217,-154.642803301019,-2.9946125327320336,-99.79912501445853,-3.0672471392154126,-99.06984485327472,-44.324667065691294,-146.09656705500268
-1678886601,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.8,3.5,29.98,22.28,56.9,31.6,1010.7,-29.563496634659764,-154.64097790978136,-2.994726015697933,-99.7985196798072,-3.067313040361514,-99.06930000318161,-44.324035164330944,-146.0834919162467
-1678886611,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.6,3.2,30.0,22.29,56.9,31.6,1010.7,-29.563635561901584,-154.64358849389475,-2.994761877275355,-99.79886742274213,-3.06725749606382,-99.06967839467787,-44.319766366552365,-146.0966544621322
-1678886621,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.1,3.5,29.98,22.29,56.9,31.5,1010.6,-29.56375014466073,-154.6401089579677,-2.9947772734056084,-99.79898023892396,-3.06742717621092,-99.07004037572274,-44.32116677834158,-146.11151069759373
-1678886631,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.7,2.9,30.0,22.3,57.0,31.5,1010.6,-29.56395825423041,-154.64104014304039,-2.9949815644110114,-99.79825904784997,-3.0673752313418023,-99.07036366645731,-44.32101207647101,-146.11221446545986
-1678886641,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.2,2.8,30.01,22.3,57.0,31.5,1010.6,-29.56372103731872,-154.64376992726002,-2.994884462492834,-99.79758659583963,-3.0673304526740286,-99.07037639603958,-44.317524324896134,-146.0960502312504
-1678886651,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.8,3.3,29.98,22.3,57.0,31.5,1010.7,-29.563806477523315,-154.64391796515693,-2.994769712800014,-99.79885831459647,-3.0672999295525587,-99.06972267503755,-44.31975966958633,-146.10187487988972
-1678886661,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.5,2.9,29.98,22.31,57.0,31.5,1010.6,-29.56402708515021,-154.64369459016297,-2.9948242624573935,-99.79890873348509,-3.0671808514497463,-99.0695635363656,-44.31854442717918,-146.1024558122975
-1678886671,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.9,2.8,29.98,22.31,57.0,31.5,1010.7,-29.564358228737913,-154.63930831191252,-2.9949311831533247,-99.79970484187321,-3.0673904240381806,-99.06993630899497,-44.31931061022166,-146.0969158079211
-1678886681,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.9,3.3,29.98,22.32,57.0,31.5,1010.6,-29.564479094922945,-154.63842086407496,-2.995136929389351,-99.79948381754373,-3.067487976684304,-99.06956652103835,-44.32049301603688,-146.10585859188416
-1678886691,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.5,3.6,30.0,22.33,57.0,31.5,1010.7,-29.56424665050926,-154.63823986394172,-2.995023437124444,-99.79994092137937,-3.067275753855427,-99.06875225768805,-44.32066251892854,-146.10909341258306
-1678886701,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.0,3.2,29.97,22.33,57.0,31.5,1010.6,-29.56401257239363,-154.63799620830196,-2.995052810750743,-99.79912188739503,-3.0673156683023444,-99.06858820592049,-44.32059614595158,-146.11693914072004
-1678886711,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.1,3.0,29.97,22.33,57.0,31.5,1010.7,-29.564428704148774,-154.63706458091625,-2.9951956020574317,-99.79944027298508,-3.0672023581586383,-99.06893934727846,-44.320744112111484,-146.1043149043808
-1678886721,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,3.1,29.97,22.34,57.0,31.5,1010.6,-29.564151070054443,-154.6381023097705,-2.995026743066733,-99.79933102488597,-3.0672576507233984,-99.0693150902952,-44.32007581213195,-146.0981777369764
-1678886731,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.1,3.3,29.98,22.34,57.0,31.5,1010.6,-29.564743779268007,-154.6379071162967,-2.995071855468439,-99.79963724439327,-3.0674102795263973,-99.07057759169882,-44.321790137488186,-146.10251374401295
-1678886741,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.1,3.0,30.0,22.35,57.0,31.5,1010.7,-29.564007090948753,-154.63836261467404,-2.994879332016877,-99.7996796289873,-3.067236715496864,-99.07051439826803,-44.32107534012484,-146.1003746330151
-1678886751,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.6,3.6,30.0,22.35,57.0,31.4,1010.8,-29.564175353072145,-154.63803985660195,-2.9951013959360493,-99.79893088276934,-3.067173350029811,-99.06946559339227,-44.3208689167208,-146.0909440085486
-1678886761,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.6,2.8,30.0,22.38,57.0,31.4,1010.7,-29.56451726000318,-154.63799082528098,-2.9950135644845366,-99.79914757635815,-3.0671668393916347,-99.06997418399168,-44.322425221961986,-146.0846189669344
-1678886771,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.8,3.5,30.0,22.39,57.0,31.4,1010.6,-29.56473683615057,-154.6387387370821,-2.9952303003905705,-99.79888467982981,-3.0672434066969734,-99.06932453858168,-44.32263733378125,-146.09430390741977
-1678886781,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.1,2.8,30.01,22.4,57.0,31.4,1010.6,-29.56475829346424,-154.63671942866486,-2.995026601542305,-99.79827502320178,-3.0672423550347636,-99.07000753453806,-44.32149370151755,-146.0978109042895
-1678886791,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.3,2.9,30.01,22.42,57.0,31.3,1010.6,-29.564263618561757,-154.63913773439447,-2.995051051773854,-99.79908299010441,-3.06713555335693,-99.07007254470939,-44.32012893498445,-146.09006890663682
-1678886801,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.4,2.7,30.0,22.44,57.0,31.3,1010.4,-29.564802348110753,-154.63527387090903,-2.9950799641165826,-99.79997795731855,-3.0671881005467605,-99.07059389481462,-44.32378544751873,-146.08648899055612
-1678886811,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.3,3.1,29.98,22.44,57.0,31.2,1010.6,-29.565080731324088,-154.63469118408463,-2.9949828787163058,-99.80037957762974,-3.0673297732801763,-99.07029476276003,-44.3254288612806,-146.07209976982705
-1678886821,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.8,3.3,29.97,22.44,57.0,31.2,1010.6,-29.56479066640467,-154.63315123956644,-2.9951511447785117,-99.8008930611119,-3.067201680870786,-99.0705363297676,-44.32290710383871,-146.09269330204373
-1678886831,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.7,3.1,29.97,22.44,57.0,31.2,1010.5,-29.564981835148604,-154.63576597876775,-2.9950395553792526,-99.79990029041983,-3.0672889347557293,-99.07078978144594,-44.321708101733066,-146.1066123763354
-1678886841,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.0,3.1,30.0,22.43,56.9,31.2,1010.6,-29.565205259847673,-154.63415960116862,-2.995238280474079,-99.79987322053695,-3.067260616759472,-99.07059485817504,-44.3223287490122,-146.09144600652195
-1678886851,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.1,3.5,30.0,22.42,56.9,31.2,1010.5,-29.565027889479115,-154.63484381963332,-2.9953542972972635,-99.79945743996016,-3.0672954398711227,-99.07038798385365,-44.32241725546312,-146.11579868287987
-1678886861,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,3.2,30.0,22.42,56.9,31.2,1010.6,-29.565212400947,-154.63492826223253,-2.995128965070531,-99.80012254645848,-3.0673544740903718,-99.07106787335591,-44.324708455522654,-146.09668841187747
-1678886871,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,3.0,29.97,22.42,56.9,31.3,1010.6,-29.564952388348008,-154.63587606252537,-2.995011200742458,-99.80094052178522,-3.0672409747304012,-99.07058544333863,-44.32245722902826,-146.0817497395655
-1678886881,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.0,3.0,29.97,22.42,57.0,31.3,1010.6,-29.56558038200392,-154.63358350982702,-2.995140922324853,-99.80140205482262,-3.067143477194822,-99.07062153385617,-44.32368567771004,-146.07998271443938
-1678886891,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.3,2.4,29.98,22.42,57.0,31.3,1010.6,-29.565554943381144,-154.63338698055577,-2.995154808776634,-99.80183711132099,-3.0672544680229556,-99.07127182476351,-44.32623696767217,-146.07908946785406
-1678886901,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.2,2.5,29.98,22.43,57.0,31.3,1010.6,-29.565878556414503,-154.63243346204948,-2.9950299896939954,-99.80178240303344,-3.067322689407966,-99.07212187087177,-44.32492399820421,-146.0785104193276
-1678886911,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.0,2.6,29.97,22.44,57.0,31.3,1010.6,-29.565101991494966,-154.63362436952488,-2.994897400204609,-99.80196104904023,-3.0671871244724027,-99.07198957291571,-44.32603128558856,-146.06103680812132
-1678886921,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.9,2.7,29.98,22.44,57.0,31.3,1010.6,-29.565116954607603,-154.63170880707045,-2.994963651127277,-99.80107598140032,-3.067127690955215,-99.07201417528384,-44.3255263795068,-146.07255007193191
-1678886931,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.7,3.3,29.97,22.46,57.0,31.2,1010.6,-29.56555769652556,-154.6297211759151,-2.9951242055475813,-99.80216920255364,-3.067167790478443,-99.07222293348407,-44.329987024686524,-146.07590988173774
-1678886941,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.5,2.9,29.98,22.47,57.0,31.2,1010.6,-29.565364303157935,-154.63365815388917,-2.9949097041951096,-99.80189834315941,-3.0671842537646543,-99.07205890965803,-44.32774464230243,-146.0756301169109
-1678886951,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.4,3.1,30.0,22.46,56.9,31.2,1010.6,-29.565930811136795,-154.62932602732508,-2.995008509941077,-99.80198212012063,-3.067095564029478,-99.07191679349276,-44.32949219826537,-146.06091066455895
-1678886961,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.3,3.4,29.97,22.46,56.9,31.2,1010.6,-29.565736828050824,-154.63012250607665,-2.995054338832513,-99.8017196545424,-3.0671200041197473,-99.07144683794039,-44.327296375074326,-146.08809503548608
-1678886971,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.0,2.6,29.98,22.47,56.9,31.2,1010.6,-29.566113588354412,-154.6311733403088,-2.9950873739739103,-99.802182315736,-3.067104479889375,-99.07132623223097,-44.32736476373282,-146.0861990961822
-1678886981,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.1,3.6,29.98,22.46,56.8,31.2,1010.7,-29.566162435127165,-154.63025532277493,-2.9951496470009693,-99.80207318683296,-3.067120619812597,-99.07225640981196,-44.327184226105736,-146.06973645909721
-1678886991,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.5,3.2,30.0,22.47,56.8,31.2,1010.6,-29.56633775856534,-154.6313244285402,-2.9952115279410743,-99.80211484637557,-3.0670644581694955,-99.071520750329,-44.32671821852648,-146.06626810798056
-1678887001,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.6,3.7,29.98,22.48,56.8,31.2,1010.6,-29.566286283431744,-154.6304118040758,-2.9951885211427114,-99.8019465178834,-3.0672042537153956,-99.0713150800317,-44.32743753660834,-146.06813882801228
-1678887011,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.9,2.6,29.98,22.48,56.8,31.2,1010.6,-29.566839385844403,-154.62883010733387,-2.9951083936784566,-99.80224218937472,-3.0671547230354523,-99.07090675903804,-44.32653484316568,-146.0426129905469
-1678887021,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.7,3.4,30.0,22.49,56.8,31.2,1010.6,-29.566877971413096,-154.62552755650978,-2.9950230700390756,-99.80198099657542,-3.067072228172782,-99.07106659600095,-44.32778004384703,-146.05592242089426
-1678887031,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.3,4.0,29.98,22.49,56.8,31.2,1010.6,-29.567084828392368,-154.6256560297448,-2.9952152366519753,-99.8016546976298,-3.067098858020793,-99.07080724797873,-44.32842376249306,-146.06955364658054
-1678887041,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.5,2.6,30.01,22.5,56.8,31.2,1010.6,-29.56717426119023,-154.62884523413268,-2.9950541225543437,-99.80182141094292,-3.067210682246986,-99.07084181521665,-44.32938089631084,-146.06146281988424
-1678887051,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,2.9,30.01,22.54,56.8,31.2,1010.5,-29.56684664963219,-154.62940203315088,-2.9950833798774594,-99.80161451133152,-3.067232146460543,-99.07035139357299,-44.32848555196021,-146.06029732083658
-1678887061,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.8,3.0,30.0,22.55,56.8,31.2,1010.6,-29.56674270465348,-154.62914491898027,-2.9951498998198858,-99.80202766944542,-3.0672525424647965,-99.07117090019538,-44.32834142505175,-146.05005491291175
-1678887071,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.3,3.1,30.0,22.55,56.7,31.2,1010.6,-29.566808975460322,-154.62920033994413,-2.9950291890892378,-99.80291216538315,-3.0672782872975954,-99.07187366375359,-44.331533138806236,-146.0559863017243
-1678887081,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.6,2.8,29.97,22.55,56.8,31.2,1010.6,-29.566959835536537,-154.6278473068187,-2.9952485580181114,-99.80258699050466,-3.067275809482049,-99.07256345669737,-44.332803400106016,-146.0540177248582
-1678887091,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.8,3.4,29.97,22.55,56.7,31.2,1010.7,-29.567266451197373,-154.62608400847557,-2.9951243458645993,-99.80305659905818,-3.067266324545503,-99.07316498359138,-44.337684442575586,-146.0303575006265
-1678887101,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.2,3.6,29.97,22.55,56.7,31.2,1010.7,-29.567887534247163,-154.62561860786846,-2.9949596451207117,-99.80388331312466,-3.06712180261664,-99.07440177283002,-44.34256122200158,-146.03091242418367
-1678887111,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.7,3.6,29.98,22.55,56.6,31.2,1010.6,-29.567623749418605,-154.62551405024266,-2.9952753052515533,-99.80408517646538,-3.06706281527563,-99.07443641716493,-44.340285624790035,-146.04095062832153
-1678887121,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.4,3.7,29.97,22.55,56.6,31.2,1010.6,-29.56757817023817,-154.62587358047284,-2.9953250927703485,-99.80432062769997,-3.0671354929289745,-99.07475618039636,-44.339764267890544,-146.02880540306558
-1678887131,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,3.7,29.98,22.55,56.6,31.2,1010.7,-29.5671731126164,-154.62438529046247,-2.9951194773830583,-99.80402826316035,-3.0670853994342333,-99.07496629180044,-44.340827316026925,-146.0392172760714
-1678887141,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.1,3.6,29.97,22.55,56.6,31.2,1010.7,-29.567355642233156,-154.6244552714049,-2.9950057773584144,-99.80453068986583,-3.0671542596202315,-99.07516835750408,-44.342794414116476,-146.02288029378568
-1678887151,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.3,3.4,29.97,22.55,56.6,31.2,1010.7,-29.56721358771894,-154.62459343755876,-2.9950798071441778,-99.80366247835885,-3.0670155140434128,-99.07546631301302,-44.34038817436763,-146.0465744772859
-1678887161,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.9,4.0,29.97,22.55,56.6,31.2,1010.7,-29.567757392866916,-154.6246615574895,-2.9950780573504,-99.8033976950294,-3.0670982824693342,-99.07534925897355,-44.34116914515778,-146.0360629326707
-1678887171,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.0,4.5,29.98,22.55,56.6,31.2,1010.7,-29.567575521742274,-154.62699499344032,-2.995193979652173,-99.80300555715893,-3.0670917130026334,-99.07440473773971,-44.339815350420864,-146.0393533623291
-1678887181,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.9,4.0,30.0,22.55,56.5,31.2,1010.7,-29.567246351838566,-154.62776681634963,-2.995243492100159,-99.80287302585246,-3.0670391359444125,-99.07385578171804,-44.337156564037926,-146.05150964368622
-1678887191,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,3.3,29.98,22.55,56.6,31.2,1010.7,-29.567700371553972,-154.62525096707267,-2.9952851494355763,-99.80335474032204,-3.0671724792687827,-99.07509854069815,-44.34027228251522,-146.0356805111557
-1678887201,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,3.1,29.98,22.55,56.7,31.2,1010.8,-29.567414745379125,-154.62633884229027,-2.995140711342146,-99.80380398056289,-3.06709895985894,-99.07489049456227,-44.34281210504085,-146.0339744849447
-1678887211,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.2,3.2,29.97,22.55,56.6,31.2,1010.6,-29.566669753015837,-154.62913264337425,-2.9951392748677295,-99.80258182330701,-3.0670445506066617,-99.07495194357705,-44.33974319024355,-146.0516708465964
-1678887221,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.1,3.4,29.97,22.55,56.6,31.1,1010.7,-29.567230786181234,-154.62732605585492,-2.9951863960242187,-99.80334110844056,-3.0672066796023105,-99.07489041546378,-44.341874512364534,-146.03823765770284
-1678887231,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.1,3.2,29.97,22.58,56.7,31.1,1010.5,-29.566706894253475,-154.62797607618137,-2.9949789336268866,-99.80411118978488,-3.0670358666665347,-99.07497515282613,-44.33984064777671,-146.02558839800955
-1678887241,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.9,3.3,29.97,22.61,56.7,31.1,1010.6,-29.566871456428366,-154.62717127186656,-2.994973901568481,-99.80376433100179,-3.067194892788114,-99.07585668733212,-44.33972058184993,-146.02396766551405
-1678887251,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.7,3.8,29.97,22.62,56.7,31.1,1010.6,-29.56654199071386,-154.63093112837313,-2.994942037312952,-99.8034868398829,-3.067263346870001,-99.07601740445952,-44.34126972399622,-146.04054335907196
-1678887261,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.6,3.2,29.98,22.62,56.7,31.0,1010.6,-29.566654114587124,-154.6290431495907,-2.995022779553266,-99.8038329140925,-3.0671874176293756,-99.07537478953186,-44.341223313077826,-146.02859260191119
-1678887271,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.2,3.4,29.98,22.61,56.7,31.0,1010.5,-29.566924598168995,-154.62618289827518,-2.9949019185415993,-99.80385591209819,-3.067227954397249,-99.07564296560975,-44.34283160517455,-146.02177714911417
-1678887281,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.7,4.2,29.98,22.6,56.7,31.1,1010.6,-29.566754509146065,-154.62656814389814,-2.9950777593981615,-99.80361951546348,-3.067238310436024,-99.07522081044473,-44.3398989319254,-146.03557984668245
-1678887291,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.0,3.6,29.98,22.56,56.7,31.1,1010.6,-29.566599180998026,-154.62543323143035,-2.995091726758649,-99.80315513271144,-3.067331523980736,-99.07450727051803,-44.3402148201381,-146.019447519199
-1678887301,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.0,3.9,30.0,22.55,56.7,31.1,1010.7,-29.566630210662858,-154.62632551290196,-2.995085716735354,-99.80289955736629,-3.0673619776671615,-99.07463335639481,-44.3410131787533,-146.0002246073694
-1678887311,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.6,3.2,30.01,22.55,56.7,31.1,1010.6,-29.566858868250378,-154.62617635302976,-2.9950983797594803,-99.8034062148463,-3.0674816058684384,-99.07424869974399,-44.34431557273449,-146.00148309637996
-1678887321,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.9,2.9,29.98,22.55,56.7,31.2,1010.6,-29.566993770267196,-154.62546327785836,-2.9951792247527105,-99.80323982671106,-3.0673890568353777,-99.07400896034656,-44.3415941466468,-146.01827513567565
-1678887331,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.6,3.0,30.0,22.5,56.8,31.2,1010.6,-29.56684163370835,-154.62730608724397,-2.9948689488439237,-99.80351666499398,-3.067372761377274,-99.07500949843015,-44.34081611305721,-146.02358214090123
-1678887341,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.2,3.2,29.97,22.46,56.7,31.2,1010.6,-29.56716201907976,-154.62598336060358,-2.9948515545721155,-99.80359282743991,-3.067272590069767,-99.07466403943337,-44.341370501673396,-146.02167649546274
-1678887351,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.1,3.5,29.97,22.44,56.8,31.2,1010.7,-29.567119534676486,-154.6247481575522,-2.9949919750478586,-99.80409097141545,-3.067331790321436,-99.07426943986849,-44.34032891201284,-146.01533445708273
-1678887361,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.5,4.1,29.97,22.38,56.8,31.3,1010.6,-29.567158119412063,-154.6246185298885,-2.994906787129001,-99.80316786620479,-3.0674265619709233,-99.07386540883233,-44.340624849054066,-146.0033553244163
-1678887371,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.3,3.2,30.0,22.38,56.8,31.4,1010.6,-29.567094345976948,-154.62655010092024,-2.9949509782632684,-99.80316677091194,-3.067579343416149,-99.07459364027599,-44.341480347515414,-145.99918797581262
-1678887381,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.2,3.6,29.98,22.36,56.8,31.4,1010.7,-29.567073269527903,-154.62600039069824,-2.9951516918388417,-99.80240173768519,-3.067361444551252,-99.07535370293861,-44.342052052706826,-146.0299833805409
-1678887391,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.6,2.7,29.97,22.34,56.8,31.4,1010.6,-29.567363263805273,-154.62311620299997,-2.9950832129771,-99.80288782231068,-3.0675632327312314,-99.07502097897449,-44.344158800149984,-146.02310207437523
-1678887401,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.0,2.7,29.98,22.32,56.9,31.5,1010.7,-29.567378054574508,-154.6245390504137,-2.9950560098949808,-99.80382829080757,-3.06750891969288,-99.07458647472237,-44.34173726474354,-146.00855277526105
-1678887411,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.6,2.5,29.98,22.3,56.9,31.5,1010.7,-29.567615091392646,-154.62348432467692,-2.995182992549293,-99.80394423168927,-3.067499132599975,-99.07514879622073,-44.34538657014922,-146.01220054483093
-1678887421,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.0,3.2,29.97,22.27,56.9,31.5,1010.6,-29.56730236093167,-154.6226936055587,-2.9950089486338975,-99.80489896081937,-3.0674015958485152,-99.07458806416903,-44.3453161235301,-146.01001243786726
-1678887431,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.4,3.0,29.98,22.24,56.9,31.6,1010.6,-29.567343494316233,-154.62293838211568,-2.994696901634507,-99.80542963594048,-3.067498677531825,-99.07472389508959,-44.344381408003485,-146.02770543310703
-1678887441,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.7,2.9,29.98,22.17,56.9,31.7,1010.6,-29.567872150936054,-154.62179706996147,-2.9949629495763173,-99.80536862597523,-3.067203989451131,-99.07461247961791,-44.34214249123006,-146.02221493032422
-1678887451,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.1,3.3,29.98,22.11,56.9,31.7,1010.7,-29.56752792687636,-154.6241941140437,-2.9948639702774034,-99.804543055125,-3.067251863002278,-99.07475653569938,-44.342543906702694,-146.02524584901136
-1678887461,30.0,30.0,55.0,55.0,0,1300000000,,,3,6.9,3.2,29.98,22.11,56.9,31.8,1010.7,-29.567620181342136,-154.62470322495096,-2.994830291196975,-99.80492216946473,-3.067255464364815,-99.07497140944511,-44.343862188471654,-146.0099148554455
-1678887471,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.6,2.8,30.0,22.09,56.9,31.8,1010.7,-29.567655925219892,-154.62368589088535,-2.995018499286285,-99.80512296631788,-3.067284792160746,-99.07451904737869,-44.34398621346602,-146.02259709065186
-1678887481,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.5,3.1,29.98,22.03,56.9,31.9,1010.7,-29.56782467545952,-154.62259605637624,-2.994983575675726,-99.80510136699608,-3.067362103723796,-99.07495868489421,-44.34320216192685,-146.00036180141362
-1678887491,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.9,2.7,30.01,22.02,56.9,31.9,1010.8,-29.567705579537865,-154.62442047363604,-2.9948082777505642,-99.80570183171837,-3.0672560016706147,-99.07498624474448,-44.345366315911065,-145.9933023564412
-1678887501,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.6,3.2,30.0,22.01,56.9,31.9,1010.7,-29.56791134399009,-154.62280368489303,-2.99495025145342,-99.8054547578494,-3.0673228854615364,-99.07539766211656,-44.34456728116558,-145.9996836234932
-1678887511,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.9,3.2,29.98,21.99,56.9,31.9,1010.8,-29.56767301721341,-154.62320683850547,-2.9949687347043064,-99.80530776091948,-3.067285270247213,-99.07515444424477,-44.34462049158617,-146.00396472567735
-1678887521,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.2,2.8,29.97,21.93,56.9,32.1,1010.7,-29.567390418707582,-154.624162388113,-2.9950617193473725,-99.80567962987323,-3.0673084501419146,-99.0752507929188,-44.34236610237519,-145.9993556890742
-1678887531,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.4,2.8,29.98,21.91,56.9,32.1,1010.7,-29.5674725896691,-154.62322581482346,-2.9951557173076173,-99.8065363655845,-3.0672690109094836,-99.07460316555422,-44.34425061034955,-146.00604526592193
-1678887541,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.0,3.2,29.98,21.9,56.9,32.2,1010.7,-29.567074855345112,-154.62373708121652,-2.9948623295149424,-99.80571610784317,-3.0675287382437966,-99.07470451267638,-44.34129733584307,-146.01305465913336
-1678887551,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.6,2.8,29.97,21.87,56.9,32.2,1010.7,-29.567372024367007,-154.62427663487034,-2.99513101239614,-99.80663495059018,-3.067405098385504,-99.07506481277933,-44.34305219233316,-146.0165047955129
-1678887561,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.7,2.8,29.96,21.88,56.9,32.2,1010.7,-29.567568479100647,-154.6213621685954,-2.994745795082927,-99.8068414581418,-3.0674777783331564,-99.07551026746835,-44.346363323788296,-146.00236202829876
-1678887571,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.1,3.1,29.97,21.88,56.9,32.2,1010.7,-29.56827577512774,-154.62104776265724,-2.994848240621202,-99.80649555365247,-3.067577890686991,-99.07611657685452,-44.343672248334684,-146.0009845750858
-1678887581,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.7,3.1,29.97,21.89,56.8,32.2,1010.7,-29.567435277282037,-154.6234037258545,-2.994895697212761,-99.80571499254096,-3.067383397161544,-99.07551321783076,-44.343099566484284,-146.0005079033223
-1678887591,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.8,3.5,30.0,21.9,56.8,32.2,1010.7,-29.56830580488409,-154.62065222379286,-2.9950454170113465,-99.80607002735948,-3.0674348799635025,-99.07564450753704,-44.34283089471596,-145.99766024128476
-1678887601,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.3,3.9,29.97,21.9,56.8,32.2,1010.7,-29.568122541454372,-154.6207277866078,-2.9950393302594036,-99.80566159962201,-3.067369625718712,-99.07508280309153,-44.34316761941257,-146.0181548244715
-1678887611,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,3.8,29.97,21.9,56.7,32.2,1010.7,-29.56840650440155,-154.62001812613224,-2.9952722213865384,-99.8053059616509,-3.067398386616889,-99.07624076929878,-44.33994899411773,-146.02129670737824
-1678887621,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.5,3.6,29.97,21.87,56.7,32.2,1010.8,-29.568066997215496,-154.6222392466821,-2.994966110419189,-99.80588917306896,-3.0673419346160262,-99.07577722532578,-44.33819292707352,-146.01884157911599
-1678887631,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.7,3.2,29.97,21.89,56.7,32.2,1010.7,-29.567623838540335,-154.62288253774983,-2.994979164071285,-99.80510230174545,-3.067276025317277,-99.07647675417601,-44.34009504430202,-146.0174224187951
-1678887641,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.5,3.4,29.97,21.9,56.7,32.2,1010.6,-29.567637016003733,-154.62370344775138,-2.994881312467631,-99.80559063071904,-3.0673766648448098,-99.07674945154719,-44.34065241135721,-146.00526002678112
-1678887651,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.7,3.6,29.96,21.91,56.7,32.2,1010.7,-29.567531219562184,-154.6247137208741,-2.994891464279716,-99.80567872451577,-3.0674136679422914,-99.07649498780432,-44.34116908941835,-146.01105592219926
-1678887661,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,4.0,29.97,21.93,56.7,32.2,1010.7,-29.56708722645905,-154.62581932424177,-2.994860912672329,-99.80541429676238,-3.067378288373073,-99.07700783064641,-44.3410035786483,-146.0115696690131
-1678887671,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.9,3.5,29.97,21.94,56.6,32.2,1010.7,-29.56710566812523,-154.62562448812142,-2.9947816732111123,-99.80553204467721,-3.0675169648653555,-99.07669231870761,-44.339185146324176,-146.01191480814856
-1678887681,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.3,3.4,29.97,21.96,56.6,32.1,1010.6,-29.567216934909627,-154.62676917384616,-2.994870248577742,-99.8059427167704,-3.067525697224357,-99.07724235580955,-44.33709106291321,-146.03057441640857
-1678887691,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.8,3.8,29.97,21.97,56.6,32.1,1010.6,-29.566483060291702,-154.62717073772836,-2.994767952240058,-99.80596759174259,-3.067471663087668,-99.07560657990823,-44.338061980404,-146.03566477308738
-1678887701,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.1,3.2,29.97,21.99,56.7,32.1,1010.6,-29.56698111702304,-154.62732583799243,-2.994690658681834,-99.80633948907509,-3.0674211671526526,-99.0765557621014,-44.33662628212226,-146.02084693027592
-1678887711,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.2,3.4,29.97,21.98,56.7,32.1,1010.6,-29.567378599188956,-154.62570554162593,-2.9947727575842196,-99.80638855105575,-3.067283213737438,-99.07796664293465,-44.34011808625604,-146.0055347435975
-1678887721,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.9,3.5,29.97,21.99,56.7,32.1,1010.7,-29.56699399247047,-154.62638100494408,-2.9947557634671194,-99.8063287938339,-3.067459560949199,-99.07740869694791,-44.3390750488157,-146.0139794164284
-1678887731,30.0,30.0,55.0,55.0,0,1300000000,,,3,6.8,4.0,29.97,22.0,56.7,32.0,1010.7,-29.567134919412318,-154.6286518195337,-2.9947749280685794,-99.80602758085209,-3.067312097524193,-99.07847539586146,-44.338456859609,-146.0155509423292
-1678887741,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.6,3.5,29.97,22.02,56.7,32.0,1010.7,-29.567424769471323,-154.62548149752394,-2.9950124690472752,-99.80569024558018,-3.067453752530715,-99.07826802611785,-44.33690745151932,-146.02951858299338
-1678887751,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.4,4.0,29.96,22.03,56.6,32.0,1010.8,-29.567493879892183,-154.62497859553974,-2.9947401331242975,-99.80743506857452,-3.0674325403513523,-99.07876111420153,-44.339826699446505,-146.01934256052016
-1678887761,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.4,4.2,29.97,22.03,56.6,32.0,1010.7,-29.567641904602628,-154.6246767990249,-2.994950565698737,-99.80684778453538,-3.067193550640483,-99.07860628579719,-44.3406990247394,-146.02537232547562
-1678887771,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.3,4.5,29.97,22.04,56.6,32.0,1010.7,-29.56688186212949,-154.6260902859586,-2.994783619464267,-99.80669695404863,-3.0673314655065145,-99.07776813324432,-44.337923254590514,-146.03999674988503
-1678887781,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.8,3.9,29.97,22.05,56.6,31.9,1010.7,-29.56730698992697,-154.62657684035884,-2.9950053685147315,-99.80625646382785,-3.0673927670862766,-99.07833864256492,-44.33612893249564,-146.02822694763893
-1678887791,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.1,3.4,29.96,22.06,56.6,31.9,1010.7,-29.567098929624596,-154.62645733524107,-2.994866565382817,-99.80654896821666,-3.0674384041327607,-99.07853288412461,-44.33965510811,-146.0329853487128
-1678887801,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,3.9,29.97,22.06,56.6,31.9,1010.6,-29.5669926282731,-154.62546627301464,-2.99492532241691,-99.80596356683397,-3.0674451159240395,-99.07855600082137,-44.33912998050072,-146.0357349829521
-1678887811,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.2,3.9,29.98,22.08,56.7,31.9,1010.7,-29.566792974937187,-154.62477648740838,-2.9950157334096383,-99.80632377841778,-3.0672341438415924,-99.078273079174,-44.33662386312002,-146.04482695659894
-1678887821,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.6,3.7,29.97,22.09,56.7,31.9,1010.7,-29.566417326941085,-154.6275256853047,-2.9950048776574394,-99.80639337440729,-3.067362592389815,-99.07755089903509,-44.336379375759456,-146.0414215605967
-1678887831,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.0,3.4,29.97,22.09,56.7,31.9,1010.7,-29.566298869337814,-154.6283967073011,-2.995105706724623,-99.8060899252116,-3.0675004225553817,-99.07781489090208,-44.33522631860701,-146.04246235414297
-1678887841,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.1,3.6,29.97,22.1,56.7,31.8,1010.7,-29.56582411975651,-154.62948091483148,-2.995051293276532,-99.8065961791399,-3.067458942084195,-99.07758401467375,-44.335411293081904,-146.06470994732342
-1678887851,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.0,3.2,29.97,22.12,56.7,31.8,1010.7,-29.565638180208282,-154.6314088000694,-2.994904575184586,-99.80593672099802,-3.0673529708850995,-99.07730808469921,-44.3390847614749,-146.0464878859254
-1678887861,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.4,4.1,29.98,22.13,56.7,31.8,1010.6,-29.56629186978873,-154.63245159380895,-2.994922063157388,-99.80627327569005,-3.0674946219446935,-99.07730401912686,-44.33505641854324,-146.06150360284067
-1678887871,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.0,4.0,29.98,22.14,56.7,31.8,1010.7,-29.565814667680428,-154.63265077390201,-2.9948427609649424,-99.80532917650754,-3.067615776226184,-99.07724554967231,-44.33830925325737,-146.05686013197644
-1678887881,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.7,3.4,29.98,22.15,56.7,31.8,1010.7,-29.56564774462312,-154.63325600843632,-2.9948255417892664,-99.80570680838261,-3.067406344760222,-99.07624713185527,-44.34054057386868,-146.07556085533145
-1678887891,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.2,3.7,29.97,22.15,56.7,31.8,1010.7,-29.56576962488459,-154.63168083205184,-2.9949347517952836,-99.80538050265316,-3.0674775484866723,-99.07748963276887,-44.33769572254196,-146.08838166937156
-1678887901,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.2,3.5,29.97,22.17,56.8,31.8,1010.8,-29.565218632487674,-154.6342002822232,-2.9949224460249715,-99.80584219818117,-3.067241460557976,-99.07613961832132,-44.334173721691386,-146.07745393775994
-1678887911,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.5,3.8,29.97,22.17,56.8,31.8,1010.7,-29.564630463504503,-154.63422108199188,-2.9947765732770475,-99.80527433894041,-3.0673420660794655,-99.07658709946443,-44.33592904625276,-146.07754108784908
-1678887921,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.5,3.4,29.97,22.19,56.8,31.7,1010.8,-29.564727447877132,-154.63511512608818,-2.994755118799154,-99.80574257608971,-3.0672501296467263,-99.07662108819027,-44.333063745028184,-146.09063501498437
-1678887931,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.6,4.0,29.96,22.19,56.7,31.7,1010.8,-29.564482720757436,-154.63435190543294,-2.994855762581268,-99.80620250266544,-3.0673288380306274,-99.07557814741527,-44.33269830758472,-146.097998520714
-1678887941,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.9,3.6,29.97,22.2,56.7,31.7,1010.8,-29.56382050864512,-154.6364698464435,-2.9947718841091593,-99.80603554019568,-3.067246840388237,-99.07571023925475,-44.33413807531926,-146.10568641990596
-1678887951,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.6,3.9,29.97,22.21,56.8,31.7,1010.8,-29.563684919139437,-154.63571438957715,-2.994934588799638,-99.80589044682627,-3.067256077779658,-99.07687509306179,-44.33606016537064,-146.09504127762207
-1678887961,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.1,4.5,29.97,22.23,56.7,31.7,1010.7,-29.564028867955617,-154.63682348498008,-2.99498111295419,-99.80569180625973,-3.0673654414797764,-99.07559373266028,-44.331029185658664,-146.1089893319094
-1678887971,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.3,4.3,30.01,22.24,56.7,31.7,1010.8,-29.563704629226812,-154.636114736071,-2.9948269581446354,-99.80453278098844,-3.0673731803847066,-99.07442790218894,-44.332792274930874,-146.0969720090393
-1678887981,30.0,30.0,55.0,55.0,0,1300000000,,,3,6.8,4.4,30.01,22.25,56.7,31.7,1010.7,-29.56366883393652,-154.63729145268368,-2.994911932796318,-99.80448394655338,-3.0673010190150314,-99.07391113893512,-44.33315760228294,-146.11821189575042
-1678887991,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.0,3.7,30.01,22.25,56.7,31.7,1010.7,-29.56411061801743,-154.63830925034392,-2.995047731329471,-99.8045299314576,-3.0672181809482026,-99.07380988091647,-44.332787949154294,-146.10320760463952
-1678888001,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.0,4.2,30.0,22.27,56.7,31.6,1010.7,-29.563890550866926,-154.640207523651,-2.995025927322219,-99.80410841322292,-3.067283975815183,-99.0744649496608,-44.33211707538905,-146.0980083368228
-1678888011,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.6,3.7,30.0,22.27,56.7,31.6,1010.8,-29.563937768825564,-154.63838155427857,-2.994935484525209,-99.80485914741129,-3.067275026697547,-99.07391828764636,-44.33127479864649,-146.102285199415
-1678888021,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.3,3.7,30.0,22.28,56.7,31.6,1010.7,-29.56417129641304,-154.63784451073013,-2.9951625086858242,-99.80526243923613,-3.0673671359082917,-99.07469989877073,-44.329544212852674,-146.12090341193195
-1678888031,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.9,3.9,29.98,22.29,56.7,31.6,1010.7,-29.563328390283687,-154.63750636356042,-2.9951129403347965,-99.8053459899953,-3.067373207169533,-99.07533646648912,-44.329489725413936,-146.11799573923588
-1678888041,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.1,3.8,29.97,22.29,56.7,31.6,1010.7,-29.563613520159898,-154.6381945402373,-2.9950655755655973,-99.805675422744,-3.0672830357795178,-99.07633149093526,-44.33085700242011,-146.1146586738478
-1678888051,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.1,4.1,29.97,22.3,56.7,31.6,1010.8,-29.563894530824584,-154.63640932845792,-2.9950393922515244,-99.8053541012495,-3.0674264762191044,-99.07531112252995,-44.331436586115785,-146.10519216358108
-1678888061,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.6,3.8,30.0,22.3,56.7,31.5,1010.7,-29.563902251560688,-154.63671296818197,-2.995081344765108,-99.8059702607826,-3.0672156915238737,-99.0751767060721,-44.33033740630253,-146.10850320141472
-1678888071,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.0,3.6,30.01,22.31,56.7,31.5,1010.7,-29.563419801508118,-154.63774536729986,-2.995108508937946,-99.80531496016435,-3.067417559964982,-99.07440782881694,-44.329155228948174,-146.11713628999718
-1678888081,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.6,3.6,30.0,22.31,56.7,31.5,1010.7,-29.56328023935408,-154.63946825861254,-2.995045397301612,-99.80540921968023,-3.0673883007243194,-99.07453879063623,-44.32950579859444,-146.13150518703208
-1678888091,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.2,3.3,30.0,22.31,56.7,31.5,1010.7,-29.563096627471506,-154.6410132931509,-2.994854195472783,-99.804894305579,-3.067368360561164,-99.07638731120949,-44.33173945155578,-146.11782762887356
-1678888101,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.5,4.0,29.98,22.32,56.7,31.5,1010.7,-29.56260696396624,-154.64074431754855,-2.9949878067069484,-99.80544362220361,-3.0673249785794305,-99.07556675809752,-44.32966504032887,-146.11831798295412
-1678888111,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.7,3.8,29.97,22.33,56.7,31.5,1010.7,-29.562604065143162,-154.64148277953677,-2.9950451793065067,-99.80514773445512,-3.067376958647828,-99.07641611728589,-44.32770111105482,-146.12689219653922
-1678888121,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.0,4.2,29.97,22.33,56.7,31.5,1010.7,-29.562628505708467,-154.64264499155,-2.9949461523921106,-99.80481909842612,-3.0674205348066867,-99.07626449902597,-44.327231891383676,-146.11927925199157
-1678888131,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,3.3,29.97,22.34,56.8,31.5,1010.8,-29.56242594594407,-154.6415311306595,-2.9949754635320343,-99.80493509465745,-3.0672877441250357,-99.07696477693071,-44.32996184422227,-146.1246096352421
-1678888141,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.2,4.0,29.96,22.34,56.8,31.5,1010.7,-29.562367729428733,-154.6409986784257,-2.9949422801565855,-99.80574541566595,-3.0672284191495764,-99.07676056411054,-44.32947783791075,-146.13581671739803
-1678888151,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.5,3.7,29.97,22.35,56.8,31.5,1010.7,-29.562511117918646,-154.63916500220955,-2.995024277198815,-99.80583176178416,-3.067458881060519,-99.07576916192285,-44.32945892816605,-146.12943478368626
-1678888161,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.0,3.9,29.97,22.35,56.8,31.5,1010.7,-29.562412044405878,-154.63995384939972,-2.9949703118982764,-99.80639642417768,-3.0673346302330087,-99.07620336497165,-44.32857039221084,-146.13537799759578
-1678888171,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.2,3.0,29.96,22.35,56.9,31.5,1010.7,-29.56325833516525,-154.6372287068917,-2.995102058306298,-99.8063709269738,-3.0673237040489862,-99.07731188224805,-44.329747338155855,-146.12706537672798
-1678888181,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.3,3.2,29.96,22.35,56.9,31.4,1010.6,-29.563186255908967,-154.638039759212,-2.9952375266724873,-99.80636293840735,-3.067404440641152,-99.07700861467467,-44.32734175075272,-146.14580733132905
-1678888191,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.0,3.1,29.98,22.36,56.9,31.4,1010.7,-29.562930882817238,-154.63919609738286,-2.9952010281567487,-99.80665319485398,-3.067195041783417,-99.07689679300572,-44.325076182545935,-146.1551200364245
-1678888201,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.3,3.5,29.98,22.36,56.9,31.4,1010.8,-29.562429210408308,-154.64152635544667,-2.9951135454011855,-99.80684510694024,-3.067108497482245,-99.07607651498415,-44.32532657362502,-146.14465012443088
-1678888211,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.2,3.2,30.0,22.36,56.9,31.4,1010.7,-29.56239347817354,-154.6416759355424,-2.9950638787136996,-99.80651258776756,-3.0672318660740068,-99.07608044453985,-44.32457624927697,-146.13179825195166
-1678888221,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.8,3.5,30.0,22.38,56.9,31.4,1010.7,-29.56259298196195,-154.64123850200974,-2.995204335384517,-99.8058674598408,-3.0673561204760658,-99.07557943624747,-44.320796068761894,-146.15350463561998
-1678888231,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.6,3.7,30.0,22.39,56.9,31.4,1010.8,-29.5624069342446,-154.64125567292066,-2.9952501360135297,-99.80606404966491,-3.06728153857722,-99.0759940720784,-44.32417693622712,-146.1513587553567
-1678888241,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.2,3.2,30.0,22.41,56.9,31.4,1010.7,-29.56241181853265,-154.6420046543453,-2.99518494138388,-99.8061296660049,-3.067243043068089,-99.07567839931394,-44.32452290146835,-146.15301538739092
-1678888251,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.4,3.3,30.0,22.41,56.9,31.3,1010.8,-29.56212338369093,-154.64063006219078,-2.995323577098427,-99.80574565015029,-3.0673171081349726,-99.07571467860019,-44.32312051649461,-146.15342179500337
-1678888261,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.4,3.3,30.01,22.42,56.9,31.3,1010.8,-29.562243073738827,-154.6417981273153,-2.9952504736752066,-99.80596451859134,-3.0674629164223974,-99.07570682988775,-44.32116699251341,-146.16392962786938
-1678888271,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.3,3.6,29.98,22.42,56.9,31.3,1010.7,-29.56211800349176,-154.6442614105161,-2.995091372410915,-99.80658153664241,-3.067500823920144,-99.07483588915504,-44.32211779681266,-146.1456639185017
-1678888281,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.3,4.0,29.98,22.42,56.9,31.3,1010.8,-29.562387731583005,-154.64214406866645,-2.9948706209619287,-99.80569616580523,-3.0676450375415723,-99.0759187683455,-44.32724669090581,-146.13497417109573
-1678888291,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.0,3.0,30.01,22.42,56.9,31.3,1010.8,-29.56224560823861,-154.6450022647251,-2.9949877347460943,-99.80543012961597,-3.0674697434672806,-99.07712957016348,-44.32631073211713,-146.1505607794065
-1678888301,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.4,3.3,29.97,22.42,56.9,31.3,1010.7,-29.562265918672914,-154.64551688210219,-2.9950667636956556,-99.80671451017061,-3.06753250942364,-99.07685227594035,-44.3230735321157,-146.1632703753426
-1678888311,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.2,3.5,29.97,22.42,56.9,31.3,1010.7,-29.561800611001644,-154.6445100789074,-2.9948625741317407,-99.80639668880814,-3.0674682745278785,-99.07523319556817,-44.32676104960147,-146.1744714149233
-1678888321,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.8,3.5,30.01,22.43,57.0,31.2,1010.7,-29.562134206337824,-154.64324512094134,-2.9952138448121923,-99.80604406435559,-3.0674243770506897,-99.0753374162668,-44.32629834087667,-146.1785850347229
-1678888331,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.9,3.0,30.01,22.43,57.0,31.2,1010.6,-29.56214512986299,-154.64457101219872,-2.9951304055368784,-99.8051964120723,-3.067431996596675,-99.07613253316771,-44.32575167032734,-146.16264152539694
-1678888341,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.2,3.4,29.98,22.43,57.0,31.3,1010.7,-29.561936099284324,-154.6438557660931,-2.995295026898877,-99.80515905107922,-3.067439830858914,-99.07610252390654,-44.32564875248975,-146.18578166209488
-1678888351,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.0,3.0,29.97,22.43,57.0,31.3,1010.8,-29.561814783746176,-154.64341538960647,-2.995121414632147,-99.80494158150314,-3.0674742018642878,-99.07630363876987,-44.32409244339794,-146.1811819945518
-1678888361,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.9,3.1,29.97,22.43,57.0,31.3,1010.6,-29.561575894389147,-154.64551311511485,-2.9950687352657552,-99.80540869471345,-3.0674508620978225,-99.07663663923107,-44.326193801937215,-146.17757250015566
-1678888371,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.3,2.9,29.98,22.43,57.0,31.3,1010.7,-29.56118957269949,-154.64469113504254,-2.9949379340613387,-99.80477527328465,-3.0674237452601782,-99.07629211744978,-44.32339947125718,-146.18768859218738
-1678888381,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,2.8,30.0,22.46,57.0,31.3,1010.7,-29.56179083821786,-154.64312795978486,-2.9951591891036466,-99.80601727575502,-3.0673117038832216,-99.07588267421026,-44.32628965783301,-146.16276729977503
-1678888391,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.4,3.4,29.98,22.45,57.0,31.2,1010.7,-29.56122178842408,-154.6423188234384,-2.995188351280871,-99.8058037211863,-3.0674259968097273,-99.07624236948874,-44.32486659309963,-146.19313528334857
-1678888401,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.7,3.4,29.97,22.45,56.9,31.2,1010.7,-29.56164670382599,-154.6424327241311,-2.995122075788172,-99.80642125277336,-3.067293634755202,-99.07662536038534,-44.32539682853056,-146.1835070011875
-1678888411,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.6,2.6,29.97,22.45,56.9,31.2,1010.7,-29.561906529190722,-154.6413793246468,-2.9951535676307244,-99.8070640025909,-3.067121917069971,-99.07750857458214,-44.32568631498144,-146.17765153789722
-1678888421,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.9,3.4,29.97,22.45,56.9,31.2,1010.7,-29.56132195005018,-154.6438465930524,-2.9951178818393775,-99.80702501255809,-3.0671781227027135,-99.07709137454515,-44.32620776739499,-146.1656530640327
-1678888431,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.6,3.3,29.97,22.45,56.9,31.2,1010.8,-29.56183319721817,-154.64125603792553,-2.995227939048731,-99.80718615424604,-3.0674524799783764,-99.07747243716827,-44.32671789377401,-146.1738166094811
-1678888441,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.8,4.1,30.0,22.45,56.9,31.3,1010.7,-29.561432406667734,-154.64358655420892,-2.995265480848088,-99.8064033796015,-3.06721392016657,-99.07765474471276,-44.32630206431789,-146.1782309278576
-1678888451,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.6,3.6,30.0,22.46,56.9,31.3,1010.7,-29.561695285089428,-154.64191982318238,-2.995187701983568,-99.80672248943928,-3.067468440601263,-99.07640411330635,-44.32711653882289,-146.1685746207551
-1678888461,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.0,3.4,29.98,22.47,56.8,31.3,1010.7,-29.561632389338666,-154.6410653116565,-2.9953262109114154,-99.80633560430103,-3.0672786339670983,-99.07683355422827,-44.32939115916249,-146.17407517592213
-1678888471,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.8,3.2,29.98,22.47,56.9,31.3,1010.6,-29.561486117715244,-154.64213166521373,-2.9951489696573477,-99.80588586640349,-3.0673302428957,-99.0773578249189,-44.32737105850716,-146.18326634186863
-1678888481,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.3,3.4,30.0,22.48,56.9,31.2,1010.7,-29.561998631389894,-154.64137613065463,-2.995035521969017,-99.80620813844398,-3.0674359469084544,-99.0773773609584,-44.32622736163311,-146.1632116809114
-1678888491,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.0,3.6,30.0,22.48,56.9,31.2,1010.7,-29.56207526351703,-154.64060244079732,-2.9952979681237704,-99.80582924626314,-3.067561463122879,-99.07595793966554,-44.32611422431485,-146.1861097272494
-1678888501,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.1,3.8,30.01,22.49,56.8,31.2,1010.7,-29.562048190681082,-154.64057547700915,-2.99543794079965,-99.80562529370184,-3.0672785707774652,-99.07590730102007,-44.32509317091298,-146.18523883527652
-1678888511,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.1,3.4,30.0,22.5,56.8,31.2,1010.8,-29.56217102078903,-154.63951286115577,-2.9953263104733248,-99.80540868555009,-3.067400481667681,-99.0759241813806,-44.32535206005441,-146.19370355694255
-1678888521,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.2,3.0,30.0,22.51,56.8,31.2,1010.7,-29.56191021025188,-154.6380877415291,-2.995191623950949,-99.8057852855736,-3.0672738755812894,-99.07556269369888,-44.32605917781472,-146.17386059126275
-1678888531,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.9,3.4,30.0,22.51,56.8,31.2,1010.8,-29.562124586709764,-154.63875474047958,-2.9952296169866077,-99.8054541757115,-3.067313916060895,-99.07568876877886,-44.32466393622545,-146.1722451105817
-1678888541,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.6,3.3,30.0,22.55,56.8,31.2,1010.8,-29.562372132446587,-154.6385789752566,-2.9953681713928275,-99.8053440404755,-3.0672083654432925,-99.07575538397919,-44.32550790258067,-146.168620905503
-1678888551,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.2,3.4,30.01,22.55,56.8,31.2,1010.7,-29.56175543850227,-154.6399040181578,-2.995155968205592,-99.80560650170285,-3.0673123945943677,-99.07593486524493,-44.324687472432714,-146.17050056529547
-1678888561,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.5,3.0,30.01,22.55,56.8,31.2,1010.8,-29.562004911510265,-154.63979501394658,-2.9951671447084944,-99.80655105253483,-3.0671198333786673,-99.07543417376094,-44.32522703415984,-146.17878616503225
-1678888571,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.6,3.2,30.0,22.55,56.9,31.2,1010.7,-29.562634687449908,-154.63696771418392,-2.9952912243046717,-99.80677514738719,-3.0672882967315855,-99.07640975990019,-44.32439512610328,-146.16918376154638
-1678888581,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.4,3.1,29.98,22.55,56.8,31.2,1010.7,-29.56277885985511,-154.64072198355746,-2.9951564967627853,-99.8077949324777,-3.0673233453340027,-99.07673982396678,-44.32694817040343,-146.17642405930508
-1678888591,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.1,2.7,29.98,22.55,56.9,31.2,1010.8,-29.563083284426366,-154.63963467166874,-2.9951763415341763,-99.80857411947511,-3.0672816129611657,-99.07638865755005,-44.32669798787532,-146.1766395045272
-1678888601,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.0,3.1,30.0,22.55,56.9,31.1,1010.7,-29.563048341114712,-154.63728432881172,-2.995222415078982,-99.80829069302567,-3.0671510644732707,-99.07678712483491,-44.32715668569122,-146.16451390233027
-1678888611,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.3,3.6,29.98,22.56,56.9,31.1,1010.7,-29.5622953338217,-154.64243440421774,-2.994970627667071,-99.80820894766343,-3.0672027938515685,-99.07623036032561,-44.3212116134908,-146.1938911945703
-1678888621,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.7,3.5,30.0,22.57,56.9,31.1,1010.8,-29.562853452045815,-154.6384365393533,-2.9953283014123064,-99.80770142088218,-3.0670795773693653,-99.07646595633672,-44.32609836223213,-146.1770934741131
-1678888631,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.6,3.0,29.98,22.58,56.9,31.1,1010.8,-29.56284876386388,-154.6392371259152,-2.9951383629485266,-99.80729690423938,-3.0670911127483875,-99.07706522307942,-44.32342931529707,-146.20710352712106
-1678888641,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.4,3.1,29.97,22.58,56.9,31.1,1010.8,-29.562950132598104,-154.63867136735982,-2.99519262131545,-99.8083490062018,-3.0671072180209724,-99.07750131617998,-44.32881854744465,-146.175080258051
-1678888651,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.4,3.7,30.0,22.59,56.9,31.1,1010.8,-29.56269899830772,-154.63793141759825,-2.9951156030076875,-99.80753953350839,-3.0671656344360274,-99.07763783126273,-44.330123276693946,-146.17142579958025
-1678888661,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,3.4,30.0,22.58,56.8,31.1,1010.8,-29.56322690028379,-154.63737757866662,-2.9949457981536436,-99.80708273941893,-3.0672145141276808,-99.07714008056583,-44.32808579708578,-146.17550968355184
-1678888671,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.9,2.7,30.0,22.58,56.8,31.1,1010.8,-29.563110527506808,-154.63821415675488,-2.995096330217007,-99.80720187425943,-3.0673390791792072,-99.07679657367792,-44.328581587421006,-146.1783654981313
-1678888681,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.1,3.4,29.98,22.58,56.8,31.1,1010.8,-29.562935899037896,-154.63926521561032,-2.995154667280984,-99.80705892769105,-3.067337940767872,-99.07693517719186,-44.32909948888842,-146.17000049870225
-1678888691,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.2,3.3,29.98,22.57,56.9,31.1,1010.9,-29.562754212286567,-154.63816863930313,-2.9951544630162013,-99.80711301849135,-3.067380745161619,-99.07674673431795,-44.3295773481059,-146.16618339858593
-1678888701,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.4,3.0,29.97,22.56,56.9,31.1,1010.7,-29.56276739631384,-154.63956518207047,-2.9951628957663408,-99.80755405195028,-3.0672308740986285,-99.07654307770672,-44.3248933094625,-146.1785753718573
-1678888711,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.2,3.3,29.98,22.55,56.9,31.1,1010.7,-29.56299911069824,-154.63637086314893,-2.995244911973996,-99.80726073935578,-3.067233391634589,-99.07672265413579,-44.32757672557449,-146.1674574451112
-1678888721,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.6,3.2,29.97,22.55,56.9,31.1,1010.8,-29.562574127586384,-154.63845594137516,-2.9951306281686834,-99.80757249873368,-3.0672881282116027,-99.07676988795362,-44.32520905110338,-146.1709330069961
-1678888731,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.4,3.3,29.97,22.55,56.9,31.1,1010.8,-29.562926036173014,-154.6370942672794,-2.9951611862559737,-99.80817148636322,-3.06742616404477,-99.07743292684195,-44.32727071042039,-146.16434614714464
-1678888741,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.4,2.6,29.98,22.55,56.9,31.2,1010.9,-29.56308813816447,-154.63571037744634,-2.9953187848961083,-99.80837564989815,-3.067332203508333,-99.07770919589994,-44.32943459179477,-146.16193668938337
-1678888751,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.5,3.6,29.97,22.55,56.9,31.2,1010.7,-29.562762379143834,-154.6378407033208,-2.995118887928556,-99.80870340092258,-3.0674917676847375,-99.07635942376211,-44.32777571700929,-146.1755292299133
-1678888761,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.1,3.8,29.98,22.55,56.9,31.2,1010.8,-29.562715941132495,-154.63691892548695,-2.9951294223693097,-99.80810586189448,-3.067389713921433,-99.07669780030169,-44.32635157989802,-146.16526400698868
-1678888771,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.5,2.9,29.98,22.55,56.9,31.2,1010.8,-29.562284948822043,-154.63811485067967,-2.995098765153151,-99.80870071283586,-3.0675031569223448,-99.0768548364005,-44.32507152589209,-146.16744997472324
-1678888781,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.4,3.1,29.97,22.51,56.8,31.2,1010.9,-29.56269424100389,-154.63713930430748,-2.995189411231747,-99.80857608445538,-3.067517268221824,-99.07687936080949,-44.32407226153107,-146.1616093833573
-1678888791,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.9,3.1,29.97,22.5,56.9,31.2,1010.8,-29.56278604784392,-154.63617060085403,-2.9951975769160857,-99.80871653705141,-3.067454079471426,-99.07774821176392,-44.32780802478607,-146.15898509487786
-1678888801,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.9,3.2,29.97,22.49,56.8,31.2,1010.8,-29.56298511242394,-154.63608536294427,-2.9953033185595968,-99.80939286260423,-3.0675681576724365,-99.07780273979368,-44.326444110182734,-146.15392163000357
-1678888811,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,2.9,30.0,22.47,56.8,31.3,1010.9,-29.56266765564193,-154.63890502943963,-2.9952041876251845,-99.80928401415412,-3.067549680081922,-99.07767114739165,-44.32642196196011,-146.14520588325271
-1678888821,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.9,3.4,29.98,22.46,56.8,31.3,1010.8,-29.562786214449524,-154.63686669788902,-2.995320021295989,-99.8098770161273,-3.0674292653605284,-99.07720278428425,-44.3283380857882,-146.15049583097252
-1678888831,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.5,2.8,29.98,22.45,56.8,31.4,1010.9,-29.56282322697313,-154.63731085958858,-2.9952042992118164,-99.80984932980604,-3.0673589879846292,-99.07856927821327,-44.32797385360154,-146.1622577906632
-1678888841,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.7,3.3,29.98,22.43,56.8,31.4,1010.8,-29.56277159470759,-154.63448873581615,-2.995111660178567,-99.81053350344578,-3.06720318825899,-99.07851328241006,-44.33094364839647,-146.16289690215388
-1678888851,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.4,3.6,29.97,22.42,56.8,31.4,1010.7,-29.563394415718385,-154.6328551140883,-2.995254375562868,-99.81023786371667,-3.067261009454836,-99.07791288043141,-44.32660419126008,-146.15543398963203
-1678888861,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.5,3.5,29.97,22.4,56.8,31.4,1010.8,-29.563666814109588,-154.63206161221072,-2.9952411546676077,-99.80944143607104,-3.0670767895149256,-99.0787069292111,-44.32914458967413,-146.15612113624243
-1678888871,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.3,3.5,29.98,22.4,56.8,31.4,1010.8,-29.56427765214315,-154.63181581018497,-2.9954843490080805,-99.8099805423224,-3.0671466910735186,-99.07903697453115,-44.32944309557489,-146.16412129868837
-1678888881,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.5,3.1,29.98,22.38,56.9,31.5,1010.8,-29.56388250263782,-154.63050078792958,-2.995381489324017,-99.81023181517094,-3.0671550876550704,-99.078284993232,-44.33034343534334,-146.13259985860677
-1678888891,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.0,2.6,30.0,22.36,56.9,31.5,1010.9,-29.563798691829845,-154.63037826201014,-2.9953323656866355,-99.80986197211656,-3.0670828981063627,-99.07831230600348,-44.33099545922768,-146.1392085420877
-1678888901,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.4,2.9,29.97,22.34,56.9,31.5,1010.8,-29.56346753357529,-154.6337635802178,-2.995223235277341,-99.80992604380144,-3.0670940959500017,-99.07888573883092,-44.330271451860696,-146.13522480057722
-1678888911,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.3,3.0,29.98,22.33,56.9,31.5,1010.9,-29.563310242692722,-154.63248421911138,-2.9952315823209474,-99.80962453387286,-3.067092396322429,-99.07913634363143,-44.32836640990097,-146.14629017177467
-1678888921,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.6,3.2,30.0,22.31,56.9,31.6,1010.8,-29.56373285571263,-154.63360005028977,-2.995138981566977,-99.80886718313758,-3.0672955201319385,-99.07967149213361,-44.329094914502804,-146.1287705701772
-1678888931,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.6,3.3,30.0,22.3,56.8,31.6,1010.9,-29.563366404402515,-154.6352133317443,-2.995327139323178,-99.8096555782925,-3.067178230944854,-99.07870635516493,-44.32977625658059,-146.1464755850753
-1678888941,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.3,3.7,29.98,22.29,56.8,31.6,1010.9,-29.563494254984015,-154.63342261043402,-2.9952696486024193,-99.80954541737164,-3.0671170460476493,-99.07894694511413,-44.33016265958591,-146.1501601413186
-1678888951,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.9,3.3,29.98,22.27,56.8,31.7,1010.9,-29.56372298507992,-154.63263177942463,-2.995180050949118,-99.8099707556684,-3.067409989355431,-99.07866089549543,-44.33395528038926,-146.14946931262057
-1678888961,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.3,2.9,29.98,22.26,56.7,31.7,1010.8,-29.563589347457807,-154.6347299609707,-2.9951574951243365,-99.80985290335542,-3.0671884431618794,-99.07938365067169,-44.32950806223551,-146.1384175227426
-1678888971,30.0,30.0,55.0,55.0,0,1300000000,,,3,6.3,3.4,29.98,22.25,56.7,31.7,1010.9,-29.563593564571388,-154.63396037206647,-2.9952433898140933,-99.8100579438503,-3.0673263710123226,-99.07981616170179,-44.3310455399896,-146.1333361440914
-1678888981,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.5,3.6,29.98,22.24,56.7,31.7,1011.0,-29.56337761208152,-154.63068016625303,-2.995211669399702,-99.810534434701,-3.0673919617148604,-99.07932653088187,-44.33535816463022,-146.12578893822675
-1678888991,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.2,3.4,29.98,22.24,56.8,31.7,1010.8,-29.563784384485455,-154.63147404582637,-2.995251440227793,-99.81120303770508,-3.0673115742048704,-99.07889514497758,-44.335572125525864,-146.117398403998
-1678889001,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.9,3.2,29.98,22.24,56.8,31.7,1011.0,-29.563707452010174,-154.6315010574451,-2.995091990345004,-99.8109592293686,-3.0672866226273845,-99.0796245709613,-44.33437132384992,-146.11940030535234
-1678889011,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.5,2.8,29.98,22.23,56.7,31.7,1010.9,-29.56381662673482,-154.6308277403162,-2.9953259978791524,-99.81110976951022,-3.067276613869972,-99.07987293888537,-44.331885612319596,-146.13102423130016
-1678889021,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.7,2.9,30.01,22.24,56.7,31.7,1010.9,-29.56383972406181,-154.6313782363627,-2.9951875982835485,-99.810981296591,-3.067211852490623,-99.07963297599457,-44.334312720371386,-146.10803760649674
-1678889031,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.5,3.2,30.0,22.24,56.7,31.7,1010.9,-29.564563468425717,-154.6283999553322,-2.995229101552854,-99.81124113981049,-3.0672245646541003,-99.08018954975043,-44.33554810048095,-146.1027619410019
-1678889041,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.2,3.2,29.97,22.24,56.7,31.7,1010.9,-29.56377120236876,-154.6324711375308,-2.995298191198428,-99.8105280108187,-3.067342237404416,-99.08062428368656,-44.33583736133357,-146.1166600615742
-1678889051,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.9,3.6,29.97,22.24,56.7,31.7,1010.9,-29.56378216598806,-154.6326299540651,-2.995071419788507,-99.81117109252816,-3.06741236294242,-99.08082989390631,-44.33593314068708,-146.1031882613409
-1678889061,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.4,3.8,29.97,22.23,56.7,31.7,1010.8,-29.564414250448433,-154.62968101861844,-2.9953547898139954,-99.81142956763254,-3.0672324780802245,-99.08177199836854,-44.33626987469404,-146.110312036537
-1678889071,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.3,3.5,29.97,22.21,56.7,31.7,1010.9,-29.56448144922859,-154.62910062483743,-2.9952310783566425,-99.81156639999939,-3.067387228036707,-99.08183029027586,-44.33676264090074,-146.09399416778948
-1678889081,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.7,4.2,29.97,22.24,56.7,31.7,1011.0,-29.56493651177844,-154.62861543913752,-2.9952762777007913,-99.8119250578051,-3.067349079654215,-99.08153358111139,-44.33608322367312,-146.09716924459244
-1678889091,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.8,2.8,29.97,22.24,56.7,31.7,1010.9,-29.56461956302068,-154.62841142735365,-2.9952359569300757,-99.81195228881845,-3.067202908296942,-99.08142746332973,-44.337039741238435,-146.09539115199743
-1678889101,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.3,3.6,30.0,22.24,56.7,31.7,1010.9,-29.56460728366438,-154.62944120200672,-2.995017005534202,-99.81191369905466,-3.067098882318409,-99.08152367674876,-44.33814707012822,-146.08331595645532
-1678889111,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.3,3.4,29.97,22.25,56.7,31.7,1010.9,-29.56457359328943,-154.62713071535978,-2.9949843585749267,-99.81260191790082,-3.067331375798754,-99.08078422464271,-44.33823212490633,-146.06825512339103
-1678889121,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.1,3.3,30.0,22.25,56.7,31.7,1010.8,-29.564847483157564,-154.6280550277981,-2.995091639753104,-99.81203783016363,-3.067396712328322,-99.08108825891107,-44.33706007908566,-146.08085127687872
-1678889131,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.2,3.2,30.0,22.26,56.7,31.7,1010.9,-29.565157092726707,-154.62734526658664,-2.9948993521957252,-99.81228901887317,-3.067312497025012,-99.08237335913437,-44.341120150872285,-146.06795684769364
-1678889141,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.4,3.7,29.98,22.26,56.7,31.7,1010.9,-29.56511362516084,-154.62771222092493,-2.99496774752743,-99.8126332012828,-3.0672645774872715,-99.08200655250002,-44.34123378870112,-146.0662614406581
-1678889151,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.5,3.3,29.97,22.26,56.7,31.7,1010.9,-29.565146479803694,-154.626024393509,-2.99521988724438,-99.81267314900438,-3.067163934656208,-99.08231505995377,-44.34092105539942,-146.07781170470935
-1678889161,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.0,3.7,29.97,22.25,56.7,31.7,1010.9,-29.565371663908458,-154.62547826774963,-2.99532168331637,-99.81239840936784,-3.0670267350619245,-99.08290341476227,-44.34074201494819,-146.079214373191
-1678889171,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.5,4.2,29.97,22.27,56.6,31.7,1011.0,-29.56572385045558,-154.6241378098959,-2.995106157886665,-99.81313331054285,-3.0673276834148937,-99.08297752489071,-44.34366413127134,-146.0506432162735
-1678889181,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.4,3.7,29.97,22.27,56.6,31.7,1011.0,-29.56611096183847,-154.62196918895845,-2.995059758933154,-99.81308256243294,-3.0673463049826637,-99.08293800134078,-44.338350717420944,-146.0754191164776
-1678889191,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.6,3.8,29.97,22.27,56.6,31.7,1010.9,-29.566293362167645,-154.62520833852656,-2.9951893792315287,-99.81347389411192,-3.067171060956804,-99.0829275103967,-44.33822644844052,-146.0653711224879
-1678889201,30.0,30.0,55.0,55.0,0,1300000000,,,3,6.9,4.5,29.98,22.27,56.6,31.7,1011.0,-29.56629586082887,-154.62109311895534,-2.9949378037952012,-99.81367555031748,-3.0673415703478932,-99.08248784973017,-44.344817670916676,-146.05697314802055
-1678889211,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.7,3.9,30.0,22.28,56.6,31.6,1011.0,-29.566726079923704,-154.62021736706433,-2.9951824465992822,-99.81319311592333,-3.067310023495535,-99.08232708885899,-44.344413192175374,-146.0432835756751
-1678889221,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.2,3.9,29.98,22.29,56.5,31.6,1011.0,-29.566259872512852,-154.62322879017188,-2.9949923306370287,-99.81336626626499,-3.067168343501735,-99.08192745793042,-44.344106651487614,-146.03442192854976
-1678889231,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.4,3.9,29.98,22.29,56.6,31.6,1011.0,-29.56664572184463,-154.623393532791,-2.9949369257874734,-99.81337730280289,-3.067229510769336,-99.0828380781756,-44.34565048121482,-146.02748575925332
-1678889241,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.0,3.2,29.97,22.3,56.6,31.6,1011.0,-29.566238126247644,-154.62299474324678,-2.9948746082089106,-99.81392007187246,-3.067298929379052,-99.08292119369337,-44.35038941068225,-146.0276380676681
-1678889251,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.6,3.0,29.97,22.3,56.6,31.6,1011.0,-29.566568243851243,-154.62034654913504,-2.994891751587371,-99.81419007950586,-3.067327286721512,-99.08292949727183,-44.35094773885379,-146.0073957708633
-1678889261,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.9,3.8,29.98,22.31,56.7,31.5,1011.0,-29.56675419402579,-154.62179833127527,-2.995004285385118,-99.81337321152446,-3.0675581440018496,-99.08304832354617,-44.34979051349157,-146.0155355660402
-1678889271,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.7,3.3,30.0,22.31,56.7,31.5,1010.9,-29.566742715409266,-154.622590603,-2.9949609180270964,-99.81300926582239,-3.067517205979059,-99.08337627467034,-44.35021445396671,-146.00892999364203
-1678889281,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.0,3.9,29.98,22.32,56.7,31.5,1010.9,-29.566845730949506,-154.6209474500469,-2.995016374803809,-99.81252575505303,-3.067344359274186,-99.08260702023345,-44.35034968628577,-146.0050254545293
-1678889291,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.3,4.2,30.0,22.32,56.7,31.5,1011.0,-29.56696078199907,-154.62188337723617,-2.995004429979824,-99.81206415297866,-3.0675770921997385,-99.08312040599971,-44.34962655545079,-146.00715989281147
-1678889301,30.0,30.0,55.0,55.0,0,1300000000,,,3,6.8,4.6,30.01,22.33,56.7,31.5,1010.9,-29.56700442334097,-154.62147869798244,-2.9950862153796534,-99.81188381859461,-3.067423316668853,-99.08273253140676,-44.35031857502716,-146.00870386587786
-1678889311,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.2,3.3,30.0,22.33,56.6,31.5,1011.0,-29.566704366081595,-154.6218206239358,-2.9950706194564543,-99.81297755084707,-3.0675963013471588,-99.08226962339987,-44.348127889942404,-146.01592899373213
-1678889321,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.4,3.5,30.01,22.34,56.6,31.5,1011.0,-29.56710101550598,-154.61971510452335,-2.9950489181518867,-99.81346429595715,-3.0675344166264185,-99.08111477169454,-44.349105730093285,-145.999958170705
-1678889331,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.4,3.3,29.98,22.33,56.7,31.5,1011.0,-29.567195673544923,-154.62045627005375,-2.9950795443580036,-99.8140619391281,-3.067554894497574,-99.08309873375168,-44.35147674187587,-145.99489461637705
-1678889341,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.3,3.8,30.0,22.34,56.7,31.5,1011.0,-29.567317866590027,-154.6203524946335,-2.9949284034434207,-99.81396851490233,-3.0675921364539023,-99.08281123283103,-44.354741719577795,-145.98129748381956
-1678889351,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.7,3.0,30.0,22.35,56.7,31.5,1011.0,-29.567565648519558,-154.62193372441254,-2.99499249571857,-99.81547153815778,-3.0675072497018334,-99.0826490981464,-44.35393260745779,-145.98434317291353
-1678889361,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.7,3.4,30.0,22.35,56.8,31.5,1011.0,-29.567447878712446,-154.6203526878263,-2.9949410733631137,-99.81436599744208,-3.0675502018680323,-99.08347931675719,-44.35089462047121,-145.99012708967302
-1678889371,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.6,3.7,30.0,22.36,56.8,31.5,1011.0,-29.56707844683621,-154.62278090001573,-2.9950147111643255,-99.81381187998284,-3.0673365839914797,-99.08350656688519,-44.34942459212972,-146.01588421812698
-1678889381,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,3.1,29.97,22.38,56.8,31.5,1011.0,-29.567149810254524,-154.6225319370337,-2.9949384659970173,-99.81485960767222,-3.067408708341804,-99.08348173049886,-44.35167906416897,-146.00084504547283
-1678889391,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.1,3.1,30.0,22.39,56.8,31.5,1011.0,-29.567275248770983,-154.62053240502877,-2.99511718825199,-99.81498857857424,-3.0672679139620533,-99.08334753090301,-44.35042472694355,-146.0076950253603
-1678889401,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.9,2.8,29.98,22.39,56.8,31.4,1011.1,-29.56790848788867,-154.61840334352834,-2.9949716250946357,-99.81541053798497,-3.0673760389094484,-99.08500558650236,-44.35531398294968,-146.0027253119068
-1678889411,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.3,3.2,29.97,22.4,56.8,31.4,1011.0,-29.567602491861294,-154.61962567427722,-2.995041492404961,-99.8142882442057,-3.0673637102375824,-99.08502446330125,-44.352651727767096,-145.99758159351236
-1678889421,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.2,3.6,29.98,22.4,56.8,31.4,1011.0,-29.568054001341096,-154.61891439554725,-2.9950491420913474,-99.8146388971312,-3.067602607226503,-99.08496748127254,-44.3525194502657,-145.9932025014625
-1678889431,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.5,3.3,29.98,22.41,56.9,31.4,1011.1,-29.568211350545774,-154.61765830415268,-2.995085637091395,-99.81475408209634,-3.0674806705800606,-99.08557545979475,-44.351669638014435,-145.99300383575945
-1678889441,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.0,3.6,30.0,22.41,56.8,31.4,1011.1,-29.56845659425287,-154.61674407914143,-2.9951591789039345,-99.81445798384573,-3.067414969314859,-99.08548884889858,-44.3544929128743,-145.98739912282454
-1678889451,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.2,2.8,29.98,22.42,56.8,31.4,1011.1,-29.56836434172868,-154.61463340615379,-2.9952763188999243,-99.81437949842504,-3.0674216813595496,-99.0850673787537,-44.3534211187228,-145.98917785807163
-1678889461,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.5,3.6,30.01,22.42,56.8,31.4,1011.1,-29.567991708851487,-154.61518079576828,-2.995089627646148,-99.81415297397999,-3.0674584888908294,-99.08489668484924,-44.351149068057374,-145.99527043636516
-1678889471,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.5,3.4,30.01,22.42,56.8,31.4,1011.0,-29.56848482631019,-154.6167084131358,-2.9951045762204513,-99.81527712607297,-3.0675984160588183,-99.08509121613614,-44.35353353361024,-145.97524735886242
-1678889481,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.6,3.4,30.0,22.43,56.8,31.3,1011.1,-29.568196301367724,-154.61445859405288,-2.995182240641983,-99.8147624706713,-3.067482404583859,-99.08520434936648,-44.35438266028413,-145.9760034957416
-1678889491,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.3,3.4,30.0,22.43,56.8,31.3,1011.1,-29.56845964835277,-154.61383074511917,-2.995172771363803,-99.81510546364095,-3.067644217654591,-99.08559967368963,-44.35915614188815,-145.97231281896362
-1678889501,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.5,3.6,29.98,22.43,56.8,31.3,1011.1,-29.568067309698836,-154.61592171385163,-2.995069853877001,-99.81554252102356,-3.06755411293471,-99.08510208631738,-44.35688701981068,-145.97503281448215
-1678889511,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.4,3.5,29.98,22.44,56.8,31.3,1011.1,-29.56839356634374,-154.61492598909652,-2.9951765589091206,-99.81617738793065,-3.0675849408369205,-99.08523944454548,-44.356863717278195,-145.97095183449528
-1678889521,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.3,3.3,30.0,22.44,56.7,31.3,1011.2,-29.5683657445499,-154.61553375962762,-2.995094545161317,-99.81547930839902,-3.0672867667316304,-99.08552337908671,-44.35861297292546,-145.97689375875038
-1678889531,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.4,4.1,29.98,22.44,56.7,31.3,1011.1,-29.56857112099189,-154.61521436846084,-2.995092074777746,-99.81488040651074,-3.0674379000445895,-99.08638813931121,-44.36082401105185,-145.96777161347492
-1678889541,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.5,3.6,30.0,22.44,56.7,31.2,1011.0,-29.568854574883044,-154.6157402648726,-2.9951773908545127,-99.8151680866001,-3.0674812869461365,-99.0861087062155,-44.357226561838885,-145.96242350354743
-1678889551,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.9,4.0,30.0,22.44,56.7,31.2,1011.0,-29.568370025915776,-154.6163089253011,-2.9949678105724753,-99.81520459435757,-3.0675672394975564,-99.08578578399634,-44.36092002169882,-145.96655788990225
-1678889561,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.8,3.8,30.0,22.45,56.7,31.2,1011.2,-29.568564363040792,-154.6153621487493,-2.995070192454225,-99.81548432859347,-3.0674701530046145,-99.08467779837378,-44.35676826078886,-145.98538984406707
-1678889571,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.2,3.5,30.0,22.45,56.7,31.2,1011.1,-29.568780977793672,-154.6141145601373,-2.994986555710785,-99.8155822633992,-3.067340225083568,-99.08500987682991,-44.35964088668144,-145.9688232322379
-1678889581,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.1,2.7,29.97,22.45,56.8,31.2,1011.1,-29.568581126892294,-154.61462696808536,-2.9950951494737996,-99.81672666576118,-3.0674329736813615,-99.08522388046501,-44.359471177705984,-145.96219918358148
-1678889591,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,2.9,30.01,22.46,56.8,31.3,1011.0,-29.56877530231612,-154.61540097135685,-2.995077742296484,-99.81674928967857,-3.0675785444217434,-99.08467603366923,-44.36067612070982,-145.9532751869083
-1678889601,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.8,3.4,30.01,22.47,56.8,31.3,1011.1,-29.568676440561394,-154.61355743201645,-2.9949970322685378,-99.81612009095524,-3.0674713512297798,-99.08491067100516,-44.35752792273053,-145.9603549170803
-1678889611,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.6,3.4,30.0,22.47,56.9,31.3,1011.1,-29.56842138526611,-154.61574881039436,-2.9949172071633177,-99.81611897165571,-3.0676593460422312,-99.08543144303057,-44.35913129039459,-145.95035694626446
-1678889621,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.1,3.1,30.01,22.48,56.8,31.3,1011.1,-29.568766069838727,-154.6162814683685,-2.994929657887906,-99.81597993192376,-3.0676179213731505,-99.08596358946858,-44.358710204734805,-145.95580232604448
-1678889631,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.0,3.0,29.98,22.48,56.8,31.3,1011.1,-29.56872403595974,-154.61507617958912,-2.9952824463462404,-99.8164027550517,-3.0675889362949214,-99.08607390317279,-44.358293823361436,-145.96536951383516
-1678889641,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,2.9,29.98,22.5,56.8,31.3,1011.2,-29.568507653724502,-154.6142194936488,-2.995124529375766,-99.8171100461061,-3.067420927829185,-99.08568063891742,-44.35790935044099,-145.96110172862518
-1678889651,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.0,3.0,29.98,22.53,56.9,31.2,1011.2,-29.568825348464,-154.6126171313911,-2.995049875584275,-99.8176978401458,-3.067542552560463,-99.08710716601331,-44.36241940364014,-145.93980621889907
-1678889661,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.8,2.8,29.97,22.55,56.8,31.2,1011.2,-29.569123181228953,-154.6122990934709,-2.9951460429526873,-99.81759613637037,-3.0674675885778275,-99.08787509296528,-44.36149292169987,-145.9506432364421
-1678889671,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.9,3.9,29.97,22.55,56.8,31.2,1011.2,-29.569538887723482,-154.60984332854534,-2.9951290073611903,-99.81759231087999,-3.0675474023829667,-99.08692802356856,-44.36295855439428,-145.93135873170337
-1678889681,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.3,3.5,29.97,22.55,56.9,31.2,1011.1,-29.569048493297686,-154.61239634521078,-2.994923974593424,-99.81668259590421,-3.0675569986364444,-99.08701420935998,-44.36190871521903,-145.92929603069626
-1678889691,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.9,3.8,29.97,22.55,56.9,31.2,1011.1,-29.568621662719483,-154.61176934826224,-2.995021619568288,-99.81654026101184,-3.067743803455656,-99.08564292186372,-44.36188475732587,-145.9400106785332
-1678889701,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.5,3.3,30.0,22.55,56.9,31.1,1011.2,-29.56918644844412,-154.61149899713416,-2.995094621944965,-99.81707948791154,-3.06770807036491,-99.08617113994369,-44.36308158711427,-145.9307502168289
-1678889711,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.1,2.5,30.0,22.55,56.8,31.2,1011.2,-29.568496576129167,-154.61576502597788,-2.9951559975329864,-99.81714930994355,-3.067602410120427,-99.08632406851564,-44.35862582116396,-145.94993861616328
-1678889721,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.8,2.8,30.0,22.55,56.9,31.2,1011.2,-29.568539294522473,-154.61512202868838,-2.995044765146277,-99.81698420051285,-3.067609470760116,-99.08721974713946,-44.36194994460136,-145.9374591920294
-1678889731,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.4,3.7,30.0,22.55,56.8,31.2,1011.2,-29.56871023302583,-154.61436591768557,-2.9951542354466265,-99.81676184067351,-3.067452011439435,-99.08635169530271,-44.363277376036756,-145.93828035931045
-1678889741,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.2,4.5,30.0,22.55,56.8,31.2,1011.2,-29.568716075329412,-154.61241306198028,-2.99513049312662,-99.81715653664942,-3.067567371854408,-99.08666321103675,-44.361175576955375,-145.963106326891
-1678889751,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.9,3.4,30.0,22.55,56.7,31.2,1011.2,-29.56880346946262,-154.61324997295696,-2.99506105276449,-99.81728381471375,-3.067648364247276,-99.08633849350018,-44.362153937342,-145.94117718372624
-1678889761,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.5,3.5,29.97,22.54,56.8,31.2,1011.2,-29.56841387588387,-154.6159078933662,-2.995172019478466,-99.81771693286711,-3.067710698835313,-99.08536080975786,-44.362619764437,-145.93868007440204
-1678889771,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.6,3.4,29.97,22.51,56.8,31.2,1011.2,-29.56864652373218,-154.61281522859537,-2.9950802947504815,-99.81730650519526,-3.0677854209934887,-99.08604349344199,-44.36449259406039,-145.92948162494503
-1678889781,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.5,2.8,29.97,22.49,56.8,31.2,1011.1,-29.56841617261781,-154.61139577780042,-2.9951767525593502,-99.8176018840955,-3.0675724697709654,-99.08563464888609,-44.36152471559587,-145.9504842375358
-1678889791,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.7,2.6,29.97,22.48,56.9,31.2,1011.2,-29.569143884217258,-154.61208192413199,-2.9949944546513225,-99.81892559049933,-3.0675038211948342,-99.0860730653896,-44.362619206284315,-145.93664000302974
-1678889801,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.3,2.5,29.97,22.45,56.9,31.3,1011.1,-29.569036090513713,-154.61331641328147,-2.995097046026297,-99.81844323657428,-3.067462844096647,-99.08779761488314,-44.36213007639652,-145.92292919899555
-1678889811,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.0,3.2,30.0,22.44,56.9,31.3,1011.1,-29.569379722792757,-154.60935653639814,-2.9954273151939543,-99.8182905575243,-3.067517832037423,-99.08688520421266,-44.361710018805425,-145.94338323816945
-1678889821,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.3,3.1,29.97,22.42,56.9,31.4,1011.1,-29.568935568015267,-154.61102676881134,-2.9953379038393315,-99.81828126108513,-3.0675191226399843,-99.08675621090023,-44.361965297026,-145.94097582091854
-1678889831,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,2.8,29.97,22.41,56.9,31.4,1011.1,-29.569141616549445,-154.61104091292165,-2.9953901960553164,-99.81790996637088,-3.0675839719444467,-99.08757567577365,-44.361399590992505,-145.93476114620867
-1678889841,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.4,3.2,29.98,22.38,56.9,31.4,1011.3,-29.569693335416936,-154.6097889844668,-2.995308858045329,-99.81804805313298,-3.0676436019302966,-99.08695694811445,-44.36295793328355,-145.93798840505158
-1678889851,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.2,2.7,29.98,22.36,56.9,31.4,1011.1,-29.56937231895914,-154.60996773309034,-2.9953257745522412,-99.81768503636556,-3.067491884831479,-99.08689387090162,-44.361741997493525,-145.94057487124053
-1678889861,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.6,2.6,30.0,22.31,56.9,31.5,1011.1,-29.569740966358328,-154.6094403573948,-2.9953660868339522,-99.81805968461666,-3.0676745112667714,-99.08764242637186,-44.36538594032847,-145.92409640739137
-1678889871,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.1,2.8,29.98,22.29,56.9,31.5,1011.2,-29.569894912559636,-154.60644177846785,-2.9953184912975765,-99.81877497703321,-3.067400982522981,-99.08726310013961,-44.363696765148816,-145.93530788669872
-1678889881,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.4,2.7,29.97,22.27,57.0,31.6,1011.1,-29.5692399130588,-154.60776987831733,-2.9951225390780376,-99.81849328253298,-3.067547474510615,-99.08752381797517,-44.36562282533191,-145.92335929799756
-1678889891,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.0,3.0,29.97,22.25,56.9,31.6,1011.1,-29.569745187128348,-154.6060061969233,-2.9951787158794527,-99.81909418246114,-3.06773801659854,-99.08746686673304,-44.36816980169236,-145.91034704602166
-1678889901,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.4,3.3,29.97,22.21,56.9,31.7,1011.2,-29.56946248387155,-154.60569528099742,-2.99511528243607,-99.81851451701759,-3.067471743708147,-99.08782812895575,-44.36549479418754,-145.92010160481487
-1678889911,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.1,3.2,29.97,22.2,56.9,31.7,1011.2,-29.569738987210417,-154.6062189833285,-2.995199174927579,-99.81885803369508,-3.067577940378504,-99.08755110246938,-44.367371532823164,-145.91960566251
-1678889921,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.7,3.2,29.97,22.18,56.9,31.7,1011.2,-29.569821339780216,-154.60623224600957,-2.994994937460493,-99.81854660423176,-3.0676062873219614,-99.0880253479014,-44.36667477829698,-145.904945595372
-1678889931,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.9,3.8,29.98,22.15,56.9,31.7,1011.2,-29.569951830087035,-154.6055938415294,-2.9952050665334102,-99.81835280741737,-3.0677312096011895,-99.08869562453268,-44.36953910097568,-145.90104222215314
-1678889941,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.6,3.0,29.97,22.12,56.9,31.8,1011.2,-29.569685373807914,-154.607795512661,-2.9951113332556996,-99.81782665106591,-3.0677782710944754,-99.0878048335925,-44.36500472046703,-145.91789413760887
-1678889951,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.3,3.5,29.98,22.11,56.8,31.9,1011.1,-29.56974243971708,-154.60762318097588,-2.9951352262189657,-99.81781771977403,-3.0677526109712323,-99.08859977039208,-44.36672242721677,-145.89452350402107
-1678889961,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,2.8,29.97,22.11,56.8,31.9,1011.2,-29.569718161309527,-154.60737820554522,-2.9949910574296936,-99.81806481184968,-3.067662560323418,-99.08979617508147,-44.37047369474938,-145.8954281251249
-1678889971,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.1,3.0,29.97,22.11,56.8,31.9,1011.1,-29.570196904938754,-154.60661916569325,-2.9949346028215427,-99.81915902597602,-3.0676536212306678,-99.08986208850332,-44.37056627836338,-145.88368742768245
-1678889981,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.1,3.5,29.97,22.08,56.8,31.9,1011.2,-29.57009382593014,-154.60521938206202,-2.9951008916446344,-99.81922642234403,-3.0676747524511407,-99.08924664847164,-44.37068830070778,-145.888603405055
-1678889991,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.5,3.3,29.98,22.09,56.8,31.9,1011.2,-29.570741021957232,-154.60345189032995,-2.9950424184943443,-99.81902413425965,-3.067718418294553,-99.08961103990836,-44.37160226711779,-145.87722525903206
-1678890001,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.6,3.3,29.97,22.09,56.8,32.0,1011.2,-29.57098289579532,-154.602291878216,-2.995245790277865,-99.81923479577978,-3.0677922675830556,-99.09006880969018,-44.37416063982255,-145.8838894068626
-1678890011,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.2,2.9,29.97,22.06,56.8,32.0,1011.2,-29.570383465986417,-154.6045721254455,-2.9949903668553075,-99.82022192000412,-3.067643913158577,-99.08952889653682,-44.37198268708304,-145.88491414974365
-1678890021,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.4,3.1,29.97,22.05,56.8,32.0,1011.2,-29.57075176764895,-154.60386630630387,-2.995195665883859,-99.82052203286123,-3.0676809668599594,-99.08956122832713,-44.37210333792027,-145.86483932700784
-1678890031,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.3,3.6,29.98,22.05,56.7,32.0,1011.2,-29.570387187210358,-154.60488452966825,-2.995199961641364,-99.81978787583994,-3.06778209736134,-99.08956500669552,-44.37142215463158,-145.87482629389658
-1678890041,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.2,3.8,29.97,22.06,56.7,32.0,1011.2,-29.570616284411955,-154.60128284707528,-2.9953030063776587,-99.81907860168835,-3.06771143092563,-99.08994110001049,-44.371690323129556,-145.88619222036837
-1678890051,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,3.5,29.97,22.06,56.7,32.0,1011.1,-29.57022899584809,-154.6034370942889,-2.9953277589682936,-99.81886498143787,-3.0676309325629365,-99.09056478149455,-44.36831499870792,-145.89496404035603
-1678890061,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.5,2.9,29.98,22.05,56.7,32.0,1011.2,-29.569873916676443,-154.60738127601476,-2.9952050103057433,-99.81891411786756,-3.067673989517841,-99.09063271252805,-44.36852890016056,-145.89182907125902
-1678890071,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.1,3.2,29.97,22.03,56.7,32.0,1011.2,-29.570487472191857,-154.60482210264215,-2.9951979707800156,-99.81964180515844,-3.067789883051755,-99.09098886534527,-44.37250344401129,-145.89233183475685
-1678890081,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,3.3,29.97,22.05,56.8,32.0,1011.2,-29.570927770440328,-154.60150469198717,-2.9953330497908457,-99.81993482351871,-3.0677181392948927,-99.09033389056326,-44.37368510371495,-145.8852107948265
-1678890091,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.6,3.6,29.98,22.06,56.8,32.0,1011.2,-29.571499124109,-154.60040189798497,-2.995285726309618,-99.81942680485349,-3.0677781361970284,-99.09031581978427,-44.371904649909666,-145.87818052420062
-1678890101,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.2,3.6,30.0,22.09,56.7,32.0,1011.2,-29.570704219376715,-154.60196222467485,-2.9951479137550203,-99.81922026803467,-3.06770222833717,-99.09027837378329,-44.37452385493997,-145.8743235159546
-1678890111,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.0,3.0,29.97,22.1,56.7,32.0,1011.2,-29.570589942166457,-154.6026729920177,-2.99519724874511,-99.81943756181505,-3.067808311436935,-99.09053448460904,-44.374149363642,-145.8805798545739
-1678890121,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.7,3.2,29.97,22.11,56.7,31.9,1011.2,-29.57095580317518,-154.6033905335876,-2.9954043274873094,-99.82011307540188,-3.0677032046243453,-99.09055376643389,-44.37291565577566,-145.87950655829417
-1678890131,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.1,3.3,29.97,22.12,56.7,31.9,1011.2,-29.570907690884958,-154.6014986835365,-2.9953213072544753,-99.82074207172734,-3.0676370784894127,-99.09056200794916,-44.374112455937514,-145.87104703548408
-1678890141,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.9,3.5,29.97,22.14,56.7,31.9,1011.3,-29.57097383162386,-154.6012764433656,-2.9953658187541583,-99.82063946433783,-3.067619106295343,-99.09075573410418,-44.37239477216889,-145.87978323160652
-1678890151,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.0,3.4,29.98,22.15,56.7,31.8,1011.3,-29.571212999865036,-154.60274181141142,-2.995218192210513,-99.8214453631955,-3.0675991854683957,-99.0902571895888,-44.373046876283404,-145.87009257798746
-1678890161,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.0,3.6,29.97,22.15,56.7,31.8,1011.3,-29.571005952934854,-154.60358993682297,-2.9952190489193367,-99.82121666831941,-3.067487962436381,-99.09106553759547,-44.37493716737044,-145.87432439486042
-1678890171,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.6,3.2,29.98,22.15,56.7,31.8,1011.3,-29.571175983980297,-154.60243931112814,-2.9951771222045935,-99.82174651427584,-3.0676431046906534,-99.09102974524224,-44.37512042228617,-145.85031374638402
-1678890181,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,3.6,29.98,22.16,56.7,31.8,1011.2,-29.571332755985228,-154.60296437368905,-2.9953284717789646,-99.82195254504222,-3.067517840936268,-99.0910008292884,-44.374683153188485,-145.87247460719888
-1678890191,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.6,3.2,29.97,22.17,56.6,31.8,1011.2,-29.571661945826836,-154.6013358324172,-2.9952151463867214,-99.82121042023711,-3.06748932355412,-99.09112279861583,-44.3731952611008,-145.88057247341013
-1678890201,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.7,3.1,29.97,22.17,56.6,31.8,1011.2,-29.57114086506982,-154.60214322835657,-2.995152964484009,-99.82177717538107,-3.0673521547428555,-99.09138850886704,-44.37027799005436,-145.87111488355634
-1678890211,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.1,3.8,29.97,22.18,56.6,31.8,1011.2,-29.571632611408663,-154.60000913387452,-2.9953023328948,-99.82214488287268,-3.0676081802855237,-99.09157918341229,-44.37460904235289,-145.86123116837095
-1678890221,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.8,3.2,29.97,22.17,56.6,31.8,1011.2,-29.571538022901123,-154.60004933648813,-2.9954120277302776,-99.82139998441426,-3.067531317911833,-99.09265652049669,-44.37321580183272,-145.8751851222165
-1678890231,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.0,3.3,29.96,22.18,56.6,31.7,1011.3,-29.571427108461275,-154.59951947905867,-2.995492608581488,-99.82106817033076,-3.0676757609649528,-99.0924616071532,-44.37492670102529,-145.87684111817387
-1678890241,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.1,4.3,29.96,22.19,56.7,31.7,1011.3,-29.57146746267548,-154.6007111650387,-2.9952955084359574,-99.8215132940343,-3.0675686044890513,-99.09133564946862,-44.37301673970106,-145.86751262942875
-1678890251,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.4,3.6,29.97,22.2,56.6,31.7,1011.2,-29.571092977701223,-154.60242623141343,-2.9952513594760486,-99.82150272275564,-3.0675804657941534,-99.09221152579057,-44.37191877170947,-145.87779843485245
-1678890261,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.7,3.5,29.97,22.21,56.6,31.7,1011.2,-29.57068799805978,-154.60177067758158,-2.9951509791980326,-99.82114127456599,-3.0675732467370347,-99.09170448265016,-44.373427705360974,-145.87876650077777
-1678890271,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.0,3.7,29.97,22.21,56.6,31.7,1011.2,-29.57071076008696,-154.6034903561048,-2.9951888469589028,-99.82163014957538,-3.0676000965246173,-99.09171746735691,-44.36921467633293,-145.8922968058059
-1678890281,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.1,3.9,29.97,22.24,56.7,31.7,1011.2,-29.5709695204237,-154.6030078755856,-2.9952073439720026,-99.82232279593998,-3.067502996418905,-99.09154460882546,-44.370282549318304,-145.89198610834526
-1678890291,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.0,3.8,29.96,22.24,56.7,31.7,1011.2,-29.57088300967459,-154.60365207147535,-2.995010737642376,-99.82178189066337,-3.0676747226463483,-99.0917041083281,-44.37155577826135,-145.8746314180238
-1678890301,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.7,3.6,29.97,22.26,56.7,31.7,1011.2,-29.571339996403637,-154.6011764008127,-2.995134430094874,-99.82131049802192,-3.067471850263337,-99.0919385574467,-44.37250113288069,-145.87972943717898
-1678890311,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.0,3.7,29.98,22.26,56.7,31.7,1011.2,-29.5713175403351,-154.6020440007384,-2.9951671632971513,-99.82080385693352,-3.067580239454867,-99.09197508288959,-44.372997133544246,-145.89521583652248
-1678890321,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.9,3.5,29.97,22.28,56.7,31.7,1011.2,-29.571099752063873,-154.60470724559363,-2.995243529965308,-99.82111196840509,-3.0676979248916263,-99.09263501105288,-44.36975837450804,-145.90090135605467
-1678890331,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.2,3.2,29.97,22.29,56.7,31.6,1011.2,-29.570822044681655,-154.60707783038825,-2.9953172921169955,-99.8216999006149,-3.067385286690489,-99.092408718066,-44.368645148517004,-145.90144143912306
-1678890341,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.5,3.4,29.97,22.29,56.7,31.6,1011.2,-29.570910929944844,-154.60265124083045,-2.9953406240199176,-99.82078752470515,-3.0674809470758433,-99.09276826163698,-44.36785808515747,-145.90008624701193
-1678890351,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.2,3.2,29.97,22.3,56.7,31.6,1011.2,-29.570885267448613,-154.6032061375385,-2.995320868236729,-99.82066158470458,-3.0676599812713374,-99.09322444137858,-44.367353167654606,-145.9011490802382
-1678890361,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,3.6,30.0,22.31,56.7,31.6,1011.2,-29.57094285246029,-154.60192934899234,-2.995323640956289,-99.82133701093659,-3.067527195531553,-99.09233474687865,-44.366986601314395,-145.89579504452215
-1678890371,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.1,3.3,29.97,22.31,56.7,31.6,1011.2,-29.570303903396237,-154.60426630697032,-2.995149388440555,-99.82143637612475,-3.067527506920522,-99.09247265126409,-44.36962308214614,-145.89973748613244
-1678890381,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.9,3.2,29.97,22.33,56.8,31.5,1011.2,-29.570147362534527,-154.6036459707049,-2.9951586982794525,-99.82133614988429,-3.0677797646319425,-99.0914451997518,-44.36775260178506,-145.89056359044417
-1678890391,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.2,3.5,29.97,22.33,56.8,31.5,1011.2,-29.5700848549884,-154.60535293037447,-2.995314702331769,-99.82091916938093,-3.067712474290492,-99.09137530018201,-44.365997329486014,-145.90047564702888
-1678890401,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,3.3,29.97,22.33,56.8,31.5,1011.2,-29.570861601252012,-154.6036770726684,-2.995277309330694,-99.82124663998417,-3.0676005560592596,-99.09179059849774,-44.36874624897558,-145.9015614934816
-1678890411,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.5,3.4,29.97,22.34,56.8,31.5,1011.2,-29.570587161932828,-154.60481026968068,-2.9951256997018256,-99.82096146149807,-3.0677170732457344,-99.09198220650586,-44.36852829268518,-145.9060640267464
-1678890421,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.2,3.4,29.97,22.35,56.8,31.5,1011.3,-29.570680756742238,-154.60468611736275,-2.9952045042847395,-99.82118291748863,-3.067686865356042,-99.09226385293604,-44.36767684810288,-145.9149454391151
-1678890431,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.4,3.6,29.96,22.35,56.7,31.5,1011.2,-29.57009502525238,-154.60798043546578,-2.995124639733217,-99.82130317931532,-3.0676702414710206,-99.09226562850691,-44.367902662747454,-145.89308340530627
-1678890441,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.7,4.1,29.96,22.36,56.8,31.5,1011.2,-29.569625395322262,-154.60638174294243,-2.995136267273394,-99.82068930347695,-3.067505058775807,-99.0909735560566,-44.369442066838374,-145.90984947057507
-1678890451,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.2,4.1,29.97,22.38,56.8,31.5,1011.2,-29.569966962544022,-154.6067956783299,-2.995057019876986,-99.8210750993662,-3.067417036368019,-99.09162885031137,-44.36449663354355,-145.91168173054913
-1678890461,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.9,3.7,29.97,22.38,56.8,31.5,1011.2,-29.56959974183814,-154.60558800020974,-2.995099951885642,-99.8204659181083,-3.067588843514777,-99.0898344957048,-44.36367839710323,-145.92204536489882
-1678890471,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.2,3.1,29.97,22.38,56.8,31.5,1011.3,-29.570240104954067,-154.60424606230356,-2.995263718339153,-99.82077586527511,-3.067663804350747,-99.09049289608734,-44.36623864285673,-145.91132309160577
-1678890481,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.2,3.5,29.97,22.39,56.8,31.4,1011.2,-29.569284084365194,-154.6068424030773,-2.9951503272113995,-99.82045226175212,-3.067424367018699,-99.0908146539348,-44.36615970652287,-145.91560464080362
-1678890491,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.7,3.8,29.97,22.38,56.8,31.4,1011.3,-29.5699335660481,-154.60622426647203,-2.995118963733239,-99.82092901030045,-3.0675566430658447,-99.09108855803682,-44.36462770917871,-145.90329056872437
-1678890501,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.2,3.8,29.98,22.39,56.8,31.4,1011.3,-29.56929360345246,-154.60516206438342,-2.9951759206611057,-99.8200485944009,-3.0675096958606445,-99.09074159766908,-44.363706601377146,-145.91325955588306
-1678890511,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.1,3.3,29.97,22.39,56.8,31.4,1011.3,-29.56949034568018,-154.60692159034264,-2.995035761692023,-99.82017124569278,-3.067620546883549,-99.09037893955491,-44.36463171505367,-145.91568716697725
-1678890521,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.1,3.5,29.97,22.39,56.8,31.4,1011.2,-29.569266347437715,-154.60846302032138,-2.995239865222728,-99.8197049288111,-3.0675154550184445,-99.09065194248421,-44.36250864939218,-145.92370409287676
-1678890531,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.6,3.6,30.0,22.39,56.8,31.4,1011.2,-29.569550420016757,-154.6074304872017,-2.9952481700732694,-99.82002426342063,-3.0675814485827018,-99.09152606561256,-44.36115505361645,-145.92149545942894
-1678890541,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.7,3.4,29.97,22.4,56.8,31.4,1011.2,-29.569683793877783,-154.60566098726798,-2.9954834695335233,-99.82106882379813,-3.067467826131299,-99.09141340194435,-44.36102255844801,-145.92930060536963
-1678890551,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.5,3.6,29.97,22.4,56.8,31.4,1011.3,-29.5697421171031,-154.6084850220757,-2.995311439558383,-99.82147146383598,-3.0676046584048215,-99.09158036340618,-44.362383768595784,-145.92831473228887
-1678890561,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.4,3.8,29.97,22.4,56.7,31.4,1011.2,-29.569205684669633,-154.6074172961153,-2.995303197248227,-99.82178844502926,-3.0675178571373953,-99.09166886425132,-44.36015117855456,-145.9190590329488
-1678890571,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.2,3.9,29.97,22.4,56.7,31.4,1011.3,-29.569115635803076,-154.6074172398286,-2.995177024968308,-99.82157896288278,-3.0674276527842412,-99.09214865170597,-44.363950741173156,-145.91756799627345
-1678890581,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.5,3.4,30.0,22.41,56.7,31.4,1011.2,-29.56937364883034,-154.60850966934476,-2.9952674192464412,-99.82143021747888,-3.067486435875924,-99.09137800647923,-44.363025128691966,-145.92271995508585
-1678890591,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.6,3.4,30.0,22.41,56.7,31.4,1011.2,-29.569684014955143,-154.60588253673544,-2.9953166541493124,-99.82100425714877,-3.0674212629038933,-99.09108830849138,-44.36403796156016,-145.92273316876182
-1678890601,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,3.5,30.01,22.42,56.7,31.3,1011.2,-29.569149808681523,-154.6092545467498,-2.995140586254962,-99.82049548552695,-3.06757449188984,-99.09079756446975,-44.36452006198182,-145.9495776450048
-1678890611,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.3,3.7,30.01,22.42,56.7,31.3,1011.2,-29.568867321836365,-154.6121586999239,-2.995250138747052,-99.82038637037012,-3.067482309857831,-99.09057820582164,-44.36453445865081,-145.93944505076988
-1678890621,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.3,3.6,30.01,22.42,56.7,31.3,1011.2,-29.568481904617204,-154.61291972012003,-2.9951936068113416,-99.8199821514321,-3.0675664368190163,-99.08957451795969,-44.36238991639308,-145.94332005150005
-1678890631,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.0,3.6,30.0,22.42,56.7,31.3,1011.2,-29.56877268375793,-154.6097250482039,-2.9953009282854115,-99.81978860399917,-3.06732956979084,-99.09012064086026,-44.36589961663155,-145.93439617510484
-1678890641,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.7,3.5,30.01,22.43,56.7,31.3,1011.2,-29.568451392239794,-154.6115857778279,-2.995250574156793,-99.81890537544616,-3.067433975868583,-99.09066481751246,-44.36591453894533,-145.93592254795084
-1678890651,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.9,3.4,30.0,22.44,56.7,31.3,1011.2,-29.569107337452238,-154.60960611692113,-2.995267723202244,-99.8189229340144,-3.0674824557491154,-99.09017091560116,-44.364024199048956,-145.94212637946245
-1678890661,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.1,3.5,30.01,22.43,56.7,31.3,1011.2,-29.569009101380544,-154.6118223952639,-2.995348744711304,-99.81899265490286,-3.0675268966515197,-99.0901047007014,-44.36492754355746,-145.94440707682335
-1678890671,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.9,3.7,30.01,22.44,56.7,31.3,1011.2,-29.569086849129917,-154.6113756440709,-2.9951915217054923,-99.81952654258974,-3.0675183981128495,-99.08976066437744,-44.36694886891889,-145.93076366036837
-1678890681,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.9,3.6,30.01,22.44,56.7,31.3,1011.2,-29.56915892668031,-154.61082127896643,-2.9952965102184885,-99.82024192545568,-3.0676090804108664,-99.08901819273977,-44.36576582955192,-145.9471749510896
-1678890691,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,3.0,30.01,22.44,56.7,31.3,1011.2,-29.56905921440647,-154.6138260964418,-2.99519199376168,-99.81930150044371,-3.067441392348214,-99.0899355949364,-44.36498704478093,-145.97566551324257
-1678890701,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.7,3.8,30.01,22.45,56.7,31.3,1011.2,-29.569976970559498,-154.6108497211946,-2.995093414271122,-99.82042603630187,-3.067417068392336,-99.09014467585835,-44.37727135538105,-145.98357844607355
-1678890711,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.8,3.3,30.0,22.45,56.7,31.3,1011.2,-29.56932554373516,-154.6114204383816,-2.9951715518861666,-99.82030958431405,-3.067450559039929,-99.09068661449795,-44.37859703153215,-145.97895676059997
-1678890721,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.9,3.6,30.0,22.46,56.7,31.3,1011.2,-29.569127114367756,-154.61096214733882,-2.9950615159109817,-99.82073471247554,-3.067451517665114,-99.09063666488818,-44.38110139438017,-145.96633521124147
-1678890731,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.5,3.7,30.0,22.46,56.8,31.3,1011.3,-29.569479916931968,-154.61005440331573,-2.994956067995316,-99.82121446580244,-3.0673234293672875,-99.09080265500425,-44.38034904772862,-145.96432647717762
-1678890741,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.9,3.6,29.98,22.47,56.7,31.2,1011.1,-29.56893962910698,-154.6127478568369,-2.9949986209646084,-99.8212306306331,-3.0673443706284846,-99.09068645865366,-44.37801437548621,-145.95487931690025
-1678890751,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.7,3.5,29.98,22.48,56.7,31.2,1011.1,-29.569026983803994,-154.6114621522865,-2.995068774862599,-99.82148861578264,-3.067370585355875,-99.09103257427529,-44.379427834989215,-145.9702283060597
-1678890761,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.5,3.6,29.98,22.48,56.7,31.2,1011.1,-29.568812673065676,-154.61170088642137,-2.9952303896612156,-99.82067313136909,-3.0675329288422115,-99.09134250578619,-44.37923798322292,-145.9603945466737
-1678890771,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.5,4.4,29.98,22.49,56.8,31.2,1011.2,-29.568747638443874,-154.61322780425675,-2.995142845231627,-99.81999733712318,-3.0673970975018556,-99.09075566023425,-44.37402987828,-145.9617195568978
-1678890781,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.1,3.9,29.98,22.5,56.7,31.2,1011.2,-29.5691889837494,-154.6125735220012,-2.995214017098689,-99.82125340390117,-3.06749675392609,-99.09095097353654,-44.37707858594243,-145.95718410188798
-1678890791,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.3,3.8,29.97,22.53,56.7,31.2,1011.1,-29.568238333903412,-154.61509531752301,-2.995124067872434,-99.82062843732076,-3.0673649491166595,-99.09096090147325,-44.37367053218482,-145.98126171614024
-1678890801,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.8,3.4,29.97,22.55,56.8,31.2,1011.2,-29.568630865129904,-154.612915587337,-2.9949212066071826,-99.821366596861,-3.0676704231486567,-99.09030211970138,-44.37832667068517,-145.95878927135706
-1678890811,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.5,3.9,29.97,22.55,56.7,31.2,1011.2,-29.5684258891408,-154.61579447269347,-2.994963683389012,-99.82209996636065,-3.0675432765170374,-99.09111120191757,-44.38050653600166,-145.9546208786607
-1678890821,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,3.2,29.97,22.55,56.7,31.2,1011.2,-29.56862825039864,-154.61302316560878,-2.994930816023869,-99.8226266935613,-3.067497113718569,-99.09125800711058,-44.37824397893035,-145.95603477311832
-1678890831,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.8,3.4,29.97,22.55,56.8,31.2,1011.2,-29.568428169300844,-154.61432532805236,-2.99492622134582,-99.82287023904301,-3.0677046323210195,-99.09156737163221,-44.38177038564107,-145.9547180826769
-1678890841,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.2,3.5,29.97,22.55,56.8,31.2,1011.2,-29.568384630003635,-154.61303631041883,-2.9951202179671697,-99.82299764351423,-3.0676632614185766,-99.09206983821433,-44.380764628764744,-145.9514100564376
-1678890851,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.6,3.5,29.96,22.55,56.8,31.2,1011.2,-29.56869183572303,-154.6133771075308,-2.995048508266068,-99.82281856272787,-3.067691568019864,-99.09148627283152,-44.37996101986893,-145.97061416174523
-1678890861,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.6,3.7,29.97,22.55,56.8,31.2,1011.2,-29.56902166272726,-154.6136021919941,-2.995061175739819,-99.82292897696034,-3.067573001526138,-99.09144865837283,-44.37787584270529,-145.9640511147232
-1678890871,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,3.0,29.97,22.55,56.8,31.2,1011.2,-29.569013750657014,-154.61289421443374,-2.9951663106867343,-99.8219740933079,-3.067428320587324,-99.09175237863637,-44.37581323998964,-145.9683046810365
-1678890881,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.4,3.8,29.97,22.55,56.8,31.2,1011.3,-29.56917097567786,-154.61086010321543,-2.9950198053525323,-99.82264224649803,-3.0675552511285566,-99.09156746724555,-44.377553962706514,-145.96366836982295
-1678890891,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.0,3.1,29.97,22.55,56.8,31.2,1011.2,-29.568477619889837,-154.6119597912518,-2.9950626059756735,-99.82304606820358,-3.067416929848459,-99.09226493110621,-44.37864341805782,-145.97185908630834
-1678890901,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.4,3.2,29.96,22.55,56.8,31.2,1011.3,-29.56848276836019,-154.6117738699775,-2.9949421844204664,-99.82278721550374,-3.067429756616038,-99.09217847986393,-44.37598137660932,-145.96931846116908
-1678890911,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.4,3.4,29.97,22.54,56.8,31.2,1011.2,-29.56876837430917,-154.61270208512903,-2.994992745155078,-99.82322405803521,-3.0674459678563357,-99.09382469646003,-44.37607613784231,-145.9720744174487
-1678890921,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.3,3.7,29.97,22.51,56.8,31.2,1011.2,-29.569230589213767,-154.6110601972464,-2.9948822764419125,-99.82479488237372,-3.067505835525395,-99.09394133459713,-44.38118795939162,-145.9474661699465
-1678890931,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.0,3.2,29.96,22.5,56.8,31.2,1011.2,-29.56886584609137,-154.61230844022245,-2.9949889421785643,-99.82374214181435,-3.067630016135544,-99.0930139056149,-44.37989665471649,-145.95079231442665
-1678890941,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,3.5,29.97,22.49,56.8,31.2,1011.2,-29.56870078033063,-154.6140089759514,-2.994948831311622,-99.82331662888669,-3.0676269665316824,-99.09242597974448,-44.37644128430123,-145.96970392177832
-1678890951,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.2,3.7,29.97,22.48,56.8,31.2,1011.2,-29.568759211900733,-154.61314988107762,-2.9949622759309475,-99.82290862714586,-3.067929678562571,-99.09232219014402,-44.37648988875289,-145.9698519422984
-1678890961,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.7,3.5,29.98,22.46,56.8,31.2,1011.2,-29.5680910841531,-154.6142890985113,-2.9948652107887535,-99.82192385632554,-3.0677189479875553,-99.09154149319069,-44.37272993563566,-145.96812831666855
-1678890971,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,3.6,29.98,22.43,56.8,31.3,1011.2,-29.568339359277967,-154.61428424294579,-2.994901673746252,-99.8218718396077,-3.067805919230639,-99.0911930807085,-44.37272088019923,-145.9529764953934
-1678890981,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.9,3.4,30.0,22.41,56.9,31.3,1011.2,-29.568471572367848,-154.61360323044477,-2.9947271715180115,-99.8216736540632,-3.0678235947890045,-99.09114159977128,-44.376046718097356,-145.94809787253016
-1678890991,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.0,2.9,29.98,22.4,56.9,31.3,1011.2,-29.56829472598395,-154.61328162495863,-2.994811696269714,-99.82129903287982,-3.0678258559511433,-99.0907511744712,-44.37220831705658,-145.9699967201612
-1678891001,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.4,3.0,29.97,22.38,56.9,31.3,1011.2,-29.568344250495862,-154.6134262465091,-2.9949510356957094,-99.82142194039982,-3.067848971458199,-99.09048833606005,-44.37467674835843,-145.96761687478752
-1678891011,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.7,3.2,30.0,22.36,56.9,31.4,1011.2,-29.568269451341145,-154.61448834320439,-2.994882928574376,-99.82163384062957,-3.0679046582413685,-99.09076670416161,-44.3739537204409,-145.96110847237097
-1678891021,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.0,3.1,29.97,22.36,56.9,31.4,1011.2,-29.567661065648643,-154.61507734905027,-2.994833803107893,-99.82107378194323,-3.0678508172120678,-99.09122826312837,-44.37234422362296,-145.9757700036965
-1678891031,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.1,2.7,29.98,22.35,56.9,31.4,1011.2,-29.568194396803634,-154.61481195048376,-2.994810296603996,-99.82110255695652,-3.0678592622618606,-99.09200176475194,-44.373587916457744,-145.96713002031683
-1678891041,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.0,3.6,29.98,22.32,56.9,31.5,1011.2,-29.568354374922063,-154.6131919441038,-2.9949298007166467,-99.82139792257728,-3.0678135695384015,-99.0907957301749,-44.37413105179814,-145.95786734665498
-1678891051,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.8,3.0,29.97,22.31,56.9,31.5,1011.2,-29.567902570382493,-154.61416295925508,-2.995006430730369,-99.8203429268593,-3.0679020990887604,-99.09154863448283,-44.37217961087797,-145.970688662188
-1678891061,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.4,3.1,30.0,22.29,56.9,31.5,1011.3,-29.568151668446,-154.61385358409152,-2.994819410864198,-99.82182535555613,-3.0678207308434824,-99.09106113357662,-44.37469380655241,-145.96596898917193
-1678891071,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.1,2.8,30.0,22.28,56.9,31.5,1011.3,-29.567587781796764,-154.6158989048435,-2.9950521578223332,-99.82167990013014,-3.0678751491921514,-99.09116967798428,-44.376263988487096,-145.96101994128642
-1678891081,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,3.1,30.0,22.26,56.9,31.6,1011.3,-29.56702326995655,-154.61890468257624,-2.9948643107274577,-99.82113649740313,-3.0678875199389455,-99.09065417540198,-44.37387195171189,-145.96407335306142
-1678891091,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.2,3.1,29.98,22.24,56.8,31.6,1011.2,-29.56739902826779,-154.6168803275434,-2.994842734778887,-99.82173675171984,-3.0680717912233484,-99.09117980518793,-44.37571281368713,-145.95202246487
-1678891101,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.5,3.3,30.0,22.24,56.8,31.7,1011.2,-29.566977298700564,-154.6184033999242,-2.9947002484781793,-99.82204285865195,-3.0679930379465867,-99.09197089327301,-44.3728477024373,-145.95763482692163
-1678891111,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.3,3.3,30.0,22.23,56.9,31.7,1011.2,-29.56709604787465,-154.61718904666165,-2.9946135829499925,-99.82186104905409,-3.068098486618958,-99.09206736376093,-44.37421813719335,-145.96015182703033
-1678891121,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.2,3.4,30.0,22.2,56.8,31.7,1011.3,-29.567037394375205,-154.61986440471549,-2.9949456369269516,-99.82234860986114,-3.0677920963189793,-99.09094240248928,-44.36984631085055,-145.96452191012992
-1678891131,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,3.3,30.0,22.19,56.8,31.7,1011.3,-29.566485661283416,-154.62182333476437,-2.9945407415966656,-99.8225715893222,-3.0679719824776495,-99.0905242911022,-44.36867697537036,-145.9717639320665
-1678891141,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,3.0,29.97,22.19,56.9,31.7,1011.2,-29.56642305728596,-154.62101852236876,-2.994737436984271,-99.8219823794808,-3.0679594763868536,-99.09071662362895,-44.36926302213472,-145.97316753750522
-1678891151,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.1,3.0,29.98,22.19,56.9,31.7,1011.3,-29.566369294493654,-154.61808435045089,-2.994642309870027,-99.82211431892564,-3.067790128863817,-99.0908879045948,-44.37162533805007,-145.96447546263377
-1678891161,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.3,3.7,30.01,22.19,56.8,31.7,1011.3,-29.565807817445396,-154.6218821428524,-2.994607586058005,-99.82194411653363,-3.067875139299237,-99.09006176863569,-44.36998143381915,-145.9712896016704
-1678891171,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.2,3.7,30.01,22.18,56.8,31.7,1011.3,-29.566412624670445,-154.6204911204745,-2.994876486738552,-99.82209779326807,-3.067980229645147,-99.09109232660893,-44.36988422858914,-145.9756400138833
-1678891181,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.0,3.8,30.0,22.18,56.8,31.7,1011.3,-29.566462173756918,-154.6198553255192,-2.9946605522952527,-99.82206211892758,-3.067944184100879,-99.09086229498533,-44.37212153072481,-145.96366641432977
-1678891191,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.3,3.3,30.0,22.19,56.8,31.7,1011.3,-29.56627250294549,-154.62200725136714,-2.9946090258702958,-99.82223123926643,-3.067938458941495,-99.0909479686551,-44.37113930378031,-145.9598041764406
-1678891201,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.5,3.3,30.0,22.19,56.8,31.7,1011.3,-29.56650077427699,-154.6189318674542,-2.9949053683492357,-99.82216499941245,-3.0680014536965676,-99.09109098818327,-44.373040701728584,-145.96916643624408
-1678891211,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.6,2.7,30.0,22.2,56.8,31.7,1011.2,-29.566412507222857,-154.61749512678455,-2.9947347447525607,-99.82190860757302,-3.068071243389323,-99.09176891910565,-44.3742930097206,-145.9525735995494
-1678891221,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.7,3.2,30.0,22.21,56.8,31.7,1011.2,-29.566887821300547,-154.61829776889934,-2.994773894910889,-99.82269924090801,-3.0680816540091884,-99.09199578881112,-44.37329565015007,-145.9517074631084
-1678891231,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.1,3.2,30.0,22.21,56.8,31.7,1011.2,-29.567085629454425,-154.61697760467752,-2.9949959894323754,-99.82291569698204,-3.068033043138348,-99.09131980065538,-44.37546870275932,-145.95785106108286
-1678891241,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.3,3.5,30.0,22.23,56.8,31.7,1011.2,-29.56641813814171,-154.6172434265152,-2.995003246990304,-99.82237352685551,-3.0679762522715754,-99.09237795688159,-44.37179832882153,-145.96145075193695
-1678891251,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.5,3.6,30.0,22.24,56.7,31.7,1011.3,-29.56703847583477,-154.61659189257944,-2.994890189723094,-99.82341656371948,-3.06796207258927,-99.09186459130692,-44.371487141245595,-145.96646562592775
-1678891261,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.0,3.4,29.97,22.24,56.7,31.7,1011.3,-29.566935347281486,-154.61565479752736,-2.9949484462388796,-99.82330090223834,-3.0678893572676866,-99.09270861542394,-44.373547338433355,-145.95590316414908
-1678891271,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.1,3.2,29.97,22.25,56.7,31.7,1011.3,-29.566886244821468,-154.61586771366933,-2.9948565847827475,-99.82310849454724,-3.068029096155025,-99.09275922500245,-44.37149489978975,-145.96897833469444
-1678891281,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.0,3.5,29.97,22.25,56.8,31.7,1011.2,-29.56648191874164,-154.6160026042659,-2.9950694595976173,-99.82418912703686,-3.0679062231872214,-99.09243078972736,-44.37517002345711,-145.9721923466958
-1678891291,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.5,3.2,29.97,22.26,56.7,31.7,1011.3,-29.56642968918578,-154.6172704169121,-2.9947053277554807,-99.82397289169172,-3.068060081085902,-99.0935127136585,-44.37312236542737,-145.96223080017432
-1678891301,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.3,3.7,29.98,22.26,56.8,31.6,1011.3,-29.565959215016356,-154.6176657036318,-2.994954236646908,-99.82346538729297,-3.0679347091804834,-99.09288016495972,-44.37149993340554,-145.98730263117136
-1678891311,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.2,3.5,29.98,22.27,56.7,31.6,1011.3,-29.566696715346335,-154.6168731744936,-2.9948913705879416,-99.82359459071266,-3.067950703695738,-99.0930139513891,-44.37187369492462,-145.96706478318362
-1678891321,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.9,3.3,29.97,22.28,56.7,31.6,1011.3,-29.566861040267657,-154.61644271706,-2.994862183353753,-99.82378772262298,-3.068064730541953,-99.09345876507128,-44.372052775128836,-145.95746881966284
-1678891331,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.3,3.6,29.97,22.28,56.7,31.6,1011.3,-29.56659468616465,-154.6198330681064,-2.9950286147508813,-99.82399761689724,-3.067942636868834,-99.09344828572587,-44.37016476897712,-145.95982439980565
-1678891341,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.5,3.4,29.97,22.29,56.8,31.6,1011.2,-29.566542346917185,-154.6172627281896,-2.994847063022691,-99.82346071338213,-3.0680817454825404,-99.09382859994533,-44.37161235080427,-145.94982942373545
-1678891351,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.3,3.4,29.97,22.29,56.7,31.6,1011.3,-29.566509931289893,-154.61895409779913,-2.99481801528498,-99.82338971040376,-3.0680279147533964,-99.09322750724834,-44.369412359318545,-145.96599771583558
-1678891361,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.4,3.3,29.98,22.29,56.7,31.6,1011.3,-29.56619937374789,-154.6198196992416,-2.9948238600200066,-99.82339054313248,-3.068009788500098,-99.0932278997738,-44.369898796485536,-145.9577546873544
-1678891371,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.3,3.1,30.01,22.3,56.7,31.6,1011.3,-29.565751807988626,-154.61957916352628,-2.994793961781597,-99.82347822877242,-3.068186468146351,-99.0926157070328,-44.37220677416814,-145.9490426177552
-1678891381,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.2,3.2,30.0,22.31,56.7,31.5,1011.3,-29.566096231269565,-154.61922463154278,-2.9949515045342205,-99.82412712830116,-3.068019193007826,-99.09289402609983,-44.372952367562974,-145.94196677831735
-1678891391,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.7,2.8,30.01,22.32,56.7,31.5,1011.3,-29.566476231884735,-154.6181934279071,-2.9947279085021954,-99.82445612213176,-3.0682244111872525,-99.09378695984236,-44.37683437595251,-145.93412343304556
-1678891401,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.1,3.3,29.98,22.32,56.7,31.5,1011.2,-29.566442837983196,-154.61835910134343,-2.9948228971107103,-99.82365938840316,-3.067938951495371,-99.09373973239298,-44.373675588974216,-145.94153296142971
-1678891411,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.1,3.2,30.0,22.33,56.7,31.5,1011.2,-29.566356788118334,-154.61757067899632,-2.9946412907772437,-99.82454584083638,-3.0679743022714896,-99.09402066298323,-44.37562954327107,-145.9495665526826
-1678891421,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.1,3.4,29.97,22.34,56.8,31.5,1011.2,-29.566388971192485,-154.61656969455763,-2.9947842330428776,-99.82489736042646,-3.068022091961802,-99.09395304651804,-44.375069220057064,-145.93849923904477
-1678891431,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.4,3.0,29.97,22.34,56.8,31.5,1011.3,-29.56689350065119,-154.6140450735258,-2.994685749232346,-99.82589743618308,-3.0679319006917334,-99.09359655173468,-44.37811294670257,-145.92448592958405
-1678891441,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.7,3.3,29.97,22.35,56.7,31.5,1011.3,-29.567166927994926,-154.61333296115572,-2.994728643866413,-99.82596424740774,-3.0681895065122666,-99.09302727946135,-44.375951458710745,-145.93733778690017
-1678891451,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.9,3.8,29.97,22.36,56.8,31.5,1011.2,-29.566769447272957,-154.61453399950554,-2.994603427639908,-99.8246493135482,-3.068204036397627,-99.09320513449393,-44.374776177541165,-145.93068420456834
-1678891461,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.6,3.7,29.98,22.36,56.8,31.5,1011.3,-29.567271823926973,-154.61467741945634,-2.9946883419985966,-99.82442500525563,-3.068322204431902,-99.09331398782409,-44.37632565695945,-145.92027074177454
-1678891471,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.0,3.4,30.0,22.38,56.7,31.5,1011.3,-29.56737124546173,-154.613283232115,-2.994784909703336,-99.8239254747538,-3.0681904975487266,-99.09331848984569,-44.37720132311554,-145.91900948349485
-1678891481,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.3,3.4,30.0,22.38,56.7,31.5,1011.3,-29.56765306807563,-154.61389373529178,-2.9947185389726085,-99.82329546196111,-3.0680308112502623,-99.09302217641925,-44.37402488512948,-145.92375172047068
-1678891491,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.2,3.0,30.01,22.39,56.7,31.4,1011.2,-29.567662082354516,-154.61405391729744,-2.9949188184727653,-99.82360469813253,-3.0680594765998053,-99.09276764288299,-44.37590864106197,-145.94102436354416
-1678891501,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.6,3.2,30.0,22.4,56.7,31.4,1011.3,-29.56742974220818,-154.6149284189952,-2.9947127668239992,-99.82426419904375,-3.0679527031675042,-99.09208282249925,-44.37485953728863,-145.93175480086836
-1678891511,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.6,3.8,30.01,22.4,56.7,31.4,1011.2,-29.56729028399369,-154.61417548380513,-2.9948775089327704,-99.82448787702009,-3.068299916196808,-99.09176962239563,-44.375371227250675,-145.92889039364394
-1678891521,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,3.5,30.01,22.4,56.7,31.4,1011.3,-29.567257388930727,-154.61406827812831,-2.994833786731989,-99.82391546961732,-3.0681365655967396,-99.09227810781191,-44.37688699502118,-145.9311666531267
-1678891531,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.0,3.5,30.0,22.41,56.7,31.4,1011.2,-29.567729167279705,-154.6135146343711,-2.9949806957046627,-99.82426253763428,-3.0681096718464524,-99.09276903982303,-44.37684012062174,-145.93390013566054
-1678891541,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.1,3.6,29.98,22.41,56.7,31.4,1011.3,-29.56761982680358,-154.6140864948267,-2.994903247310789,-99.8233849222441,-3.068196301211787,-99.09248827885554,-44.37574587218431,-145.93508974986563
-1678891551,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.5,3.7,30.01,22.42,56.7,31.4,1011.3,-29.567625317851878,-154.6152227267147,-2.9948615574502164,-99.82396977692788,-3.0680680989760556,-99.09251585305566,-44.37821660878542,-145.93555139046836
-1678891561,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.8,3.6,29.98,22.43,56.7,31.4,1011.3,-29.567441642997778,-154.61349507979335,-2.9948828929981537,-99.82344347963665,-3.0679104948263114,-99.0919455419359,-44.37411539652029,-145.9505331403271
-1678891571,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.6,2.7,30.0,22.43,56.7,31.4,1011.3,-29.566970458738666,-154.61519057485415,-2.9947174386601647,-99.82465065620913,-3.068052078095736,-99.09217411743721,-44.37813492140616,-145.9286024664227
-1678891581,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.1,3.2,30.0,22.44,56.7,31.4,1011.2,-29.567326566992207,-154.61385630604218,-2.994826690543267,-99.82476533339259,-3.0680672553104245,-99.09240307141523,-44.37817286740422,-145.9312541024258
-1678891591,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.9,3.3,29.97,22.44,56.7,31.4,1011.3,-29.56824432884327,-154.61449964582687,-2.994906925235721,-99.82586785652845,-3.0679140535638556,-99.09277021810378,-44.37876006354032,-145.92732131263568
-1678891601,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.5,3.6,29.98,22.45,56.7,31.3,1011.2,-29.568082013918794,-154.61290731832815,-2.9947987762369754,-99.82644842349372,-3.0679225447906227,-99.09195465842258,-44.38016684119296,-145.91833264597267
-1678891611,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.4,3.0,29.98,22.45,56.7,31.3,1011.2,-29.56766107478172,-154.61280927043452,-2.9948443365210977,-99.8264894725199,-3.067843540221727,-99.09234902812857,-44.38107026531856,-145.92337597950842
-1678891621,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.6,4.1,30.0,22.46,56.7,31.3,1011.2,-29.568722690189144,-154.60951044773623,-2.994910612358649,-99.82632961248237,-3.0680169097560777,-99.09278751582369,-44.37975657816493,-145.92666144992697
-1678891631,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.6,3.3,30.01,22.46,56.7,31.3,1011.2,-29.568820842543502,-154.60883624765603,-2.995095156393883,-99.82589473191531,-3.067888502756505,-99.09241890248798,-44.37663543215067,-145.928069523873
-1678891641,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.0,3.8,30.0,22.47,56.7,31.3,1011.3,-29.568397879475974,-154.60884275552192,-2.994931071904249,-99.82626286346328,-3.067901604044929,-99.09280603554367,-44.38250242200155,-145.9101752395859
-1678891651,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.6,3.0,30.0,22.47,56.7,31.3,1011.2,-29.568517793481988,-154.6067573504714,-2.9949971486745133,-99.82600503779841,-3.0678574985430984,-99.09238502353782,-44.380354859507065,-145.91775226657685
-1678891661,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.3,3.2,29.98,22.47,56.7,31.3,1011.2,-29.569015962722453,-154.60746405416674,-2.9951577187269858,-99.8269619761396,-3.0678891700013216,-99.09345258520858,-44.38237483589613,-145.89518988556605
-1678891671,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,3.5,29.97,22.47,56.7,31.3,1011.3,-29.568479985307174,-154.60717319117114,-2.9949686542776535,-99.82680441326424,-3.0677653534289084,-99.09340908941415,-44.37973437484058,-145.91559396295847
-1678891681,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.9,3.2,29.98,22.48,56.7,31.3,1011.2,-29.569086007442017,-154.60767414344,-2.9950837221308992,-99.82668584425268,-3.0676546474709063,-99.09377039125421,-44.38095322904602,-145.9066985835355
-1678891691,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.9,3.7,29.98,22.48,56.7,31.2,1011.2,-29.56918067188324,-154.60395768410683,-2.9950868909868205,-99.82648065382313,-3.067914081009941,-99.09418878775055,-44.38461541538648,-145.8981682452628
-1678891701,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.9,3.2,30.0,22.49,56.8,31.2,1011.2,-29.56859655755696,-154.60587234875257,-2.9950386461360012,-99.82560022329727,-3.0677958614296013,-99.09374176281129,-44.38121512469975,-145.89702502377966
-1678891711,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.4,3.6,29.98,22.49,56.8,31.2,1011.3,-29.568904313976446,-154.60706086457617,-2.995057833199702,-99.82570609543285,-3.067893084371342,-99.0932525297355,-44.38080665670768,-145.8970243165228
-1678891721,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.2,3.0,30.0,22.5,56.7,31.2,1011.2,-29.568514966780043,-154.60775809791838,-2.995094116228547,-99.8258974455885,-3.0680389124351315,-99.09298064446077,-44.381589920452065,-145.89715976901635
-1678891731,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.7,3.1,30.0,22.51,56.8,31.2,1011.3,-29.568520022251526,-154.60657590958735,-2.9951688085463872,-99.82587459889713,-3.067919552772191,-99.09226493715825,-44.38368502867773,-145.90942949858555
-1678891741,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.3,2.9,29.98,22.51,56.8,31.2,1011.2,-29.568250517011418,-154.60952233975488,-2.995111710677328,-99.82512464647719,-3.068050500518157,-99.0929356485779,-44.38084057485965,-145.91005032493968
-1678891751,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,3.1,29.97,22.53,56.8,31.2,1011.2,-29.56855492778196,-154.60710377678708,-2.9950527691579754,-99.82542640704081,-3.0680699661531374,-99.09425237724908,-44.38350628288545,-145.89271498695757
-1678891761,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.7,3.1,29.98,22.55,56.8,31.3,1011.2,-29.568802311751064,-154.60460919516578,-2.9950352913342893,-99.82556346037116,-3.0679828265401716,-99.09330695285895,-44.38258642305088,-145.89773176609336
-1678891771,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,3.5,29.98,22.55,56.8,31.2,1011.3,-29.568922798404714,-154.6064682087472,-2.99504567509497,-99.82603742891484,-3.0679217955970843,-99.09335319764855,-44.38249598783395,-145.8916937972221
-1678891781,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.9,3.8,29.97,22.55,56.8,31.2,1011.2,-29.568619126170578,-154.60870572190075,-2.995103180037453,-99.82558269239135,-3.0680938415273507,-99.09308419161245,-44.38140986304148,-145.87918572542674
-1678891791,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.5,3.8,29.97,22.55,56.8,31.2,1011.3,-29.568653302271418,-154.60890072647157,-2.9950420136458513,-99.82561396291563,-3.0679296083151932,-99.09381827975128,-44.381257839782535,-145.89779978665902
-1678891801,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.9,3.0,29.97,22.55,56.8,31.2,1011.4,-29.56885084051903,-154.60921324517506,-2.995160298047594,-99.82505026918045,-3.0680154097539636,-99.09406274300008,-44.38046885588693,-145.89756400618242
-1678891811,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.9,3.5,29.97,22.55,56.7,31.2,1011.4,-29.569282933510898,-154.60592462897296,-2.9951400216716024,-99.8260236048496,-3.067901366601835,-99.09313307060373,-44.38204039881494,-145.8924465361852
-1678891821,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.7,3.2,29.97,22.55,56.7,31.2,1011.3,-29.56894336442291,-154.6062282959666,-2.995051059931357,-99.8260032170651,-3.0679919645484577,-99.09393532151503,-44.38326356591064,-145.91289481311352
-1678891831,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.7,3.3,29.97,22.55,56.7,31.1,1011.3,-29.56885757145237,-154.60566912505462,-2.995123187314425,-99.82678801551933,-3.0682649640629167,-99.09445884616058,-44.38535358623169,-145.88683653573077
-1678891841,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.3,3.5,29.97,22.55,56.7,31.1,1011.2,-29.568616613180296,-154.60683689307055,-2.9950093988527,-99.82692010710863,-3.068066581790769,-99.09469423730083,-44.38352281386311,-145.88307563553104
-1678891851,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.5,3.0,29.97,22.55,56.7,31.2,1011.2,-29.569150069858292,-154.60646738064327,-2.99502533818088,-99.82758788791244,-3.067972984449174,-99.09560322275327,-44.3860607462189,-145.85524518700058
-1678891861,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.1,3.3,29.98,22.55,56.7,31.2,1011.3,-29.56901344348307,-154.60607774118492,-2.9951273271915597,-99.82715987037685,-3.0679363662964034,-99.09571298108125,-44.38515106228277,-145.86872317053962
-1678891871,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,4.4,29.98,22.53,56.7,31.2,1011.3,-29.568820922132684,-154.60652138183653,-2.9950655228386336,-99.82668896622044,-3.068021708950146,-99.09484907722657,-44.382307678872834,-145.89042549936482
-1678891881,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.0,4.3,29.97,22.45,56.6,31.2,1011.3,-29.56817356654938,-154.60775826153895,-2.995019290380499,-99.82586638289835,-3.0679663247296456,-99.09455208778517,-44.383699740539875,-145.90145180659664
-1678891891,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.4,3.6,29.98,22.44,56.6,31.3,1011.3,-29.5685345276874,-154.60726713898623,-2.9952035853602483,-99.82696547989802,-3.068015380977884,-99.09412186886414,-44.38616461188802,-145.88191827739584
-1678891901,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.3,3.7,30.01,22.43,56.7,31.3,1011.2,-29.56880162759774,-154.60428797544145,-2.9953375459045746,-99.82649487672323,-3.0678846364788903,-99.0936677688364,-44.38552393549365,-145.88811745621413
-1678891911,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.9,3.3,30.0,22.42,56.7,31.3,1011.3,-29.56851847450361,-154.60494132363024,-2.9950861911396687,-99.8258003047534,-3.0680581097914503,-99.09360229629895,-44.38387218480003,-145.87007414832334
-1678891921,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,2.7,30.0,22.4,56.7,31.3,1011.3,-29.568441234937293,-154.6066004497863,-2.9949471043025335,-99.82670510816949,-3.068071402411896,-99.09318851044277,-44.38560889861147,-145.87376767614018
-1678891931,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.3,3.4,30.0,22.39,56.8,31.4,1011.3,-29.568731410948097,-154.60576543490436,-2.995092529960472,-99.82574955905423,-3.0682097725191455,-99.09364886671082,-44.38391528936354,-145.8620983483902
-1678891941,30.0,30.0,55.0,55.0,0,1300000000,,,3,6.6,3.0,30.0,22.35,56.8,31.4,1011.3,-29.568212413909745,-154.60868499652523,-2.994939929993104,-99.82673304632087,-3.067896695326444,-99.09279046913605,-44.38467194896497,-145.87218491565508
-1678891951,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.9,2.9,30.0,22.34,56.8,31.5,1011.3,-29.56857444178056,-154.60686342286078,-2.9951631266920016,-99.82675598422298,-3.0678853736096965,-99.09336281205084,-44.38160634815182,-145.89141706901017
-1678891961,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.0,3.4,30.0,22.31,56.8,31.5,1011.3,-29.568363940376372,-154.60836381694688,-2.99496385588023,-99.82683119474947,-3.067825102319416,-99.09352521255649,-44.38274274947028,-145.89325349429825
-1678891971,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.6,2.8,30.0,22.29,56.8,31.5,1011.4,-29.568589546471387,-154.60575456638432,-2.9949224973313697,-99.82766450629897,-3.068015051356707,-99.09415362953555,-44.387151256818015,-145.88346919312082
-1678891981,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.9,2.6,30.0,22.27,56.9,31.5,1011.4,-29.56905204681767,-154.6055942411418,-2.9951073568963498,-99.82689980120409,-3.0680300835696963,-99.09370080706316,-44.382918864661704,-145.88307294759312
-1678891991,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.5,2.8,30.0,22.25,56.9,31.6,1011.3,-29.569311071127565,-154.6056997898225,-2.9951796291191557,-99.82682430442256,-3.0678644862837317,-99.09373767215335,-44.37785976752571,-145.8883289402827
-1678892001,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.1,3.4,30.01,22.21,56.8,31.6,1011.2,-29.569117019783565,-154.60671578006912,-2.9952492030463733,-99.82671254167087,-3.0677696171832247,-99.09429190754994,-44.3806382338757,-145.90060311358388
-1678892011,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.3,2.7,29.98,22.19,56.9,31.6,1011.3,-29.56884083376306,-154.6079256693626,-2.9951287800593693,-99.82593587950952,-3.067940026525381,-99.09457182721455,-44.3776093846453,-145.9028257337382
-1678892021,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.5,3.2,30.0,22.18,56.9,31.7,1011.3,-29.56859652188995,-154.60760940721775,-2.99511747951024,-99.8268322358907,-3.068112484002772,-99.0934913658538,-44.38097539100057,-145.8766782125546
-1678892031,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.0,2.8,30.01,22.17,56.9,31.7,1011.3,-29.568698253259974,-154.60762768603612,-2.995168038564283,-99.82685170199433,-3.067990013089807,-99.0937604861461,-44.38256269350644,-145.88873979854728
-1678892041,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.3,2.9,30.0,22.16,56.9,31.7,1011.3,-29.568907623455175,-154.60661278200647,-2.995243081840895,-99.82657681564838,-3.0678772960089633,-99.09419219231447,-44.383066197420675,-145.87205788734312
-1678892051,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.2,3.0,30.0,22.14,56.9,31.7,1011.3,-29.56836142174753,-154.60842280017155,-2.995057288573432,-99.8269421684645,-3.067998442271413,-99.09389839770515,-44.38055499035325,-145.88712850426802
-1678892061,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.5,3.3,29.98,22.13,56.9,31.7,1011.4,-29.568554790516508,-154.6093996972614,-2.9953430799757297,-99.82603375520118,-3.067810043242401,-99.09508559578093,-44.3817447974319,-145.88709283072987
-1678892071,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.2,2.8,29.98,22.1,56.9,31.8,1011.3,-29.56829397091947,-154.60795549567143,-2.9951864336304372,-99.82687460045368,-3.0679302970259053,-99.09461537037036,-44.382892263524525,-145.88243707715887
-1678892081,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.3,3.2,30.0,22.1,56.8,31.8,1011.3,-29.568913312515246,-154.6070773545647,-2.9951977462962676,-99.8264460811788,-3.0677974214202015,-99.09475632801585,-44.38228657048529,-145.88143092970586
-1678892091,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.8,3.6,30.01,22.08,56.8,31.8,1011.3,-29.569132975071387,-154.60526664221186,-2.995222382219587,-99.82729386572116,-3.067740640270621,-99.09551302235614,-44.384651198529156,-145.88344641674774
-1678892101,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.0,3.2,29.98,22.06,56.8,31.9,1011.3,-29.56936313702572,-154.60643819696202,-2.9949619112184083,-99.82760522313849,-3.0678213169670383,-99.09588789692218,-44.38520073392386,-145.87613810443364
-1678892111,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.0,3.6,29.98,22.03,56.7,31.9,1011.3,-29.56935780327076,-154.60782302899958,-2.995197530557877,-99.8276435305647,-3.0678676203291015,-99.09703059586766,-44.38564584901269,-145.87356318638015
-1678892121,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.0,3.3,29.97,22.03,56.7,31.9,1011.3,-29.56908961506344,-154.60580253903967,-2.995097466027319,-99.82719624412687,-3.067787708995336,-99.09696287375274,-44.38216540241902,-145.88778623039207
-1678892131,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.1,4.0,29.98,22.02,56.7,31.9,1011.4,-29.569263549068594,-154.6080890587793,-2.9951475428824796,-99.82720937401709,-3.067910030930519,-99.09763467907726,-44.385099542478734,-145.87752672678064
-1678892141,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.4,3.2,29.98,22.01,56.7,32.0,1011.3,-29.569115373061404,-154.60438577732148,-2.995129365398155,-99.82759743811498,-3.0677199791420424,-99.09732097613299,-44.38489245504912,-145.88164789692408
-1678892151,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.7,2.9,29.97,22.01,56.7,32.0,1011.3,-29.568879637324038,-154.608439021552,-2.994837272063304,-99.82829098138053,-3.0677403755531225,-99.09749848782707,-44.384069860624166,-145.87303332552017
-1678892161,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.6,3.2,29.97,22.02,56.8,32.0,1011.3,-29.569081356667674,-154.60461090474755,-2.994908398980791,-99.82742754894379,-3.0676693389748646,-99.09951589708776,-44.38623244556006,-145.8638526320676
-1678892171,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.6,3.3,29.97,22.01,56.8,32.0,1011.3,-29.56923030938374,-154.60661182439082,-2.9949632210624175,-99.82842416844247,-3.06773297385121,-99.09900733697626,-44.38742979225698,-145.8576685842837
-1678892181,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.3,3.2,29.97,22.03,56.7,32.0,1011.3,-29.569390205294056,-154.60382675364878,-2.9949701521722085,-99.8288312937432,-3.067677288369852,-99.09936927676681,-44.386621781149856,-145.86724106076838
-1678892191,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.2,3.0,29.97,22.03,56.8,32.0,1011.3,-29.569336883822707,-154.60371454129074,-2.9951384972580404,-99.828284116715,-3.0675658405122257,-99.09883775427433,-44.38271574144176,-145.87312953320796
-1678892201,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.4,3.2,29.97,22.04,56.7,32.0,1011.3,-29.56936164994847,-154.60426595584656,-2.9950612147948306,-99.82987806412959,-3.067726714269736,-99.09904362777473,-44.386131651886956,-145.86580901921576
-1678892211,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.8,3.5,29.97,22.05,56.8,32.0,1011.3,-29.56929643754846,-154.60424835240588,-2.9949381519440137,-99.8303044271413,-3.067703404569963,-99.0993086010217,-44.384030156437234,-145.8694527920466
-1678892221,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.3,3.4,29.97,22.06,56.7,32.0,1011.3,-29.56955358993026,-154.60292958807227,-2.9951196791304833,-99.83007309453939,-3.0676632508443586,-99.09859281983753,-44.38430681391164,-145.86838893804284
-1678892231,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.1,3.4,30.0,22.06,56.8,31.9,1011.4,-29.569676534903078,-154.60557632519777,-2.995050608937175,-99.82957777171815,-3.0677712756074667,-99.09852799842255,-44.384639120027586,-145.86603875246843
-1678892241,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.4,3.3,30.0,22.09,56.7,31.9,1011.3,-29.569923677546534,-154.60208441020603,-2.995136315022995,-99.83085341423424,-3.067651598062628,-99.09833219648544,-44.38851550250514,-145.85758437086736
-1678892251,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.3,3.5,29.98,22.09,56.7,31.9,1011.3,-29.56970632542137,-154.6024332948841,-2.9950546011438113,-99.83119628215755,-3.067554837432953,-99.0982415045663,-44.38889699767881,-145.85379980851562
-1678892261,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,3.6,29.98,22.1,56.7,31.8,1011.3,-29.569876448510165,-154.6011555916403,-2.9950387860435104,-99.83100363110526,-3.0677445590349657,-99.0985964580779,-44.38771401447574,-145.85189736873323
-1678892271,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.4,3.9,29.98,22.11,56.7,31.8,1011.4,-29.570126067850943,-154.6019034830259,-2.9951497865884287,-99.83132258921185,-3.0677202509909973,-99.09937480375095,-44.390802988927085,-145.84397711522095
-1678892281,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.0,3.1,29.98,22.12,56.7,31.8,1011.3,-29.570647465517123,-154.60046235823557,-2.9951766429204763,-99.83160332379147,-3.067727866201398,-99.10029312262229,-44.390778288946116,-145.84912815008872
-1678892291,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.0,2.8,29.97,22.13,56.6,31.8,1011.3,-29.57076343833277,-154.6032171704268,-2.9950174994826577,-99.83315323328927,-3.067611589251759,-99.10054223247211,-44.38903604701103,-145.84376945472087
-1678892301,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.3,3.1,29.97,22.13,56.7,31.8,1011.4,-29.570723073876675,-154.60080358300894,-2.9951589953757125,-99.83287983155613,-3.0675809460658936,-99.10122172837927,-44.3908683661286,-145.8364149469709
-1678892311,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.0,3.0,29.96,22.14,56.7,31.8,1011.3,-29.571203426565766,-154.59889776848885,-2.995055555801711,-99.83387456734498,-3.067546660241728,-99.10154852951482,-44.39144195698671,-145.84099191097172
-1678892321,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.9,3.1,29.96,22.15,56.7,31.8,1011.3,-29.571184762101844,-154.5994791875122,-2.994997591895354,-99.83369852680333,-3.0675823294079168,-99.10289564509053,-44.38861672282617,-145.85334205346211
-1678892331,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.4,4.7,29.97,22.16,56.7,31.8,1011.4,-29.57120910241354,-154.59771991304382,-2.9951384996439816,-99.83304127890632,-3.0676117419292153,-99.10242442097903,-44.391590223805544,-145.83174483675126
-1678892341,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.7,4.7,29.97,22.17,56.6,31.8,1011.5,-29.571412569764767,-154.59913993845925,-2.995224344528828,-99.83281204221296,-3.067497182385608,-99.102212175053,-44.3907072946613,-145.83070421875553
-1678892351,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.6,4.5,29.97,22.18,56.6,31.7,1011.3,-29.571015882751585,-154.59690497080302,-2.9950940677097697,-99.83213719121314,-3.067614216986973,-99.10155274759089,-44.38833577651601,-145.85215543102152
-1678892361,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.4,4.0,29.97,22.19,56.5,31.7,1011.3,-29.57125675610838,-154.59822739193012,-2.9950151143017028,-99.83172029865746,-3.067568221698045,-99.10116892644301,-44.38831662646463,-145.83721871408795
-1678892371,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.6,3.8,29.97,22.2,56.6,31.7,1011.3,-29.571441765604284,-154.5980495509397,-2.9951278129988026,-99.83225992456457,-3.067666738523557,-99.10102272861805,-44.38949485136679,-145.84270733453315
-1678892381,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.5,3.8,29.98,22.2,56.6,31.7,1011.3,-29.57111041025979,-154.59841817893917,-2.995051980950338,-99.83155018980337,-3.067598876582311,-99.10085569625612,-44.388967685411565,-145.8409884743028
-1678892391,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.6,3.6,29.97,22.21,56.6,31.7,1011.4,-29.571347856242987,-154.59657851171934,-2.9952182532437526,-99.83092315643299,-3.0675946307794395,-99.101614040118,-44.38754000176004,-145.85487628277326
-1678892401,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.6,3.8,29.97,22.23,56.6,31.7,1011.4,-29.571497150372416,-154.59572654514048,-2.9955642258775637,-99.83144887608167,-3.067390497597267,-99.10039499167787,-44.38622874527436,-145.85499428452044
-1678892411,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.5,3.4,29.98,22.24,56.7,31.7,1011.5,-29.571538425246587,-154.59522999974033,-2.9954908064860657,-99.83181060288301,-3.0674533648157927,-99.10073325593494,-44.387428322601046,-145.85667595071038
-1678892421,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.3,3.4,29.97,22.24,56.6,31.7,1011.4,-29.571410488420238,-154.59738900882584,-2.995420704581969,-99.83246391764435,-3.067556216665537,-99.09992630914097,-44.38682450699122,-145.85977332116022
-1678892431,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.4,3.1,29.97,22.25,56.7,31.7,1011.4,-29.57127043662676,-154.59977406717294,-2.995283457612632,-99.83250236332059,-3.0675753830771098,-99.10016643933572,-44.38708238355039,-145.86601365492479
-1678892441,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.3,3.2,29.97,22.27,56.7,31.6,1011.4,-29.571733896128688,-154.59870048768124,-2.995147436247651,-99.83286173935487,-3.0676610969370244,-99.10150662544523,-44.38932728024448,-145.85425317900345
-1678892451,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,4.1,29.96,22.27,56.7,31.6,1011.3,-29.571627118273973,-154.59575865682393,-2.9951991223378642,-99.83309352541978,-3.067736365469436,-99.10082470547903,-44.390364486121136,-145.83568494297924
-1678892461,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.8,3.8,29.97,22.28,56.7,31.6,1011.3,-29.57170432259135,-154.59646848931732,-2.9951303437784524,-99.83320984233487,-3.0677421811041565,-99.10090581746019,-44.390559151045835,-145.84008814302013
-1678892471,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.8,3.6,29.98,22.28,56.7,31.6,1011.3,-29.571532976341643,-154.5945587348425,-2.99517410396909,-99.83341960973797,-3.067690578189815,-99.10105701090961,-44.394425673861626,-145.84096650077626
-1678892481,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.4,3.3,29.97,22.28,56.7,31.6,1011.3,-29.571696937273643,-154.59717355581722,-2.995045920148355,-99.83325573330669,-3.067551753575741,-99.10172526341023,-44.39334238292452,-145.84068250341204
-1678892491,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.7,3.4,29.96,22.29,56.7,31.6,1011.3,-29.572670585851274,-154.5935631275863,-2.9952800197946985,-99.83296073703754,-3.0675617276369778,-99.10180209208252,-44.393393134390706,-145.83444234306123
-1678892501,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.2,3.5,29.97,22.29,56.8,31.6,1011.4,-29.571809175869404,-154.59811009355815,-2.9951927105175353,-99.83299205250009,-3.067697357531747,-99.10117730880036,-44.39213741718141,-145.8363682835526
-1678892511,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.7,3.5,29.96,22.3,56.7,31.6,1011.3,-29.571543850752796,-154.59643122133173,-2.99549370369904,-99.83230176767333,-3.0675962785067563,-99.10197426763519,-44.39064633105458,-145.84813416105285
-1678892521,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.8,3.7,29.97,22.3,56.8,31.5,1011.3,-29.57167654618275,-154.59472801756732,-2.9953063822551544,-99.83314083019725,-3.0675824892012105,-99.10152408233928,-44.39575871492403,-145.81045489402672
-1678892531,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.4,3.5,29.97,22.31,56.8,31.5,1011.4,-29.572170825584468,-154.59521961318868,-2.995385417389002,-99.83295873908732,-3.0675416022998365,-99.10188586552107,-44.39401256134721,-145.83138585873317
-1678892541,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.5,3.8,29.97,22.33,56.8,31.5,1011.4,-29.572400173145212,-154.59439437659864,-2.9950791715100906,-99.83403139317642,-3.0674199679154714,-99.10168532724971,-44.39571495664524,-145.8293162306448
-1678892551,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.4,3.4,29.96,22.33,56.8,31.5,1011.3,-29.5725072335309,-154.5933005036157,-2.9951626215202842,-99.8340247141597,-3.0675101657048076,-99.10139184386581,-44.39440335286682,-145.81849544627093
-1678892561,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.9,3.6,29.98,22.34,56.7,31.5,1011.4,-29.572922800085696,-154.5928414970612,-2.9953354938593053,-99.83290320702977,-3.0676140944281753,-99.10159278153287,-44.39307511958508,-145.8229034131591
-1678892571,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.8,3.8,30.0,22.35,56.7,31.5,1011.3,-29.572489462083592,-154.59195537025735,-2.9953609237244647,-99.83302591138172,-3.0675272464274714,-99.10134233785024,-44.39229483188982,-145.82505289524678
-1678892581,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.5,3.8,29.98,22.35,56.7,31.5,1011.3,-29.572649771027937,-154.59392095431204,-2.995455859254597,-99.83318395161356,-3.0675058058499776,-99.10176394290848,-44.39568039306564,-145.81350380261892
-1678892591,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,3.5,29.98,22.36,56.8,31.5,1011.3,-29.572928079494048,-154.59479796852563,-2.995368364494151,-99.8336419350655,-3.0674377504173944,-99.10144608722035,-44.39436573400463,-145.81647623685384
-1678892601,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.9,3.3,29.98,22.38,56.8,31.5,1011.3,-29.572171984401482,-154.59350052736065,-2.9953371699805924,-99.83355122851154,-3.0675173345211966,-99.10047230724822,-44.394022767958496,-145.82946766534593
-1678892611,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.4,3.3,29.97,22.38,56.8,31.5,1011.3,-29.57284977133652,-154.58988593536083,-2.9955011167721732,-99.83280087956057,-3.067360606590086,-99.10100225740293,-44.390565916099696,-145.8488794677306
-1678892621,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.0,2.9,29.98,22.39,56.9,31.4,1011.3,-29.572928088060234,-154.59029347179248,-2.995657542107455,-99.83281966368482,-3.0673776553678223,-99.10095284859811,-44.39235735678728,-145.8247615568971
-1678892631,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.7,3.2,29.97,22.4,56.8,31.4,1011.3,-29.573028754257248,-154.59076397442144,-2.9955847918358876,-99.83287900536229,-3.0674516418151008,-99.10116986940832,-44.39245647526542,-145.83081506521896
-1678892641,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.9,3.4,30.0,22.41,56.8,31.4,1011.3,-29.573075654288363,-154.5913515344867,-2.995410079556721,-99.83226650477857,-3.06740452876967,-99.10083072096732,-44.393029307688614,-145.82998341431966
-1678892651,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.6,3.3,30.0,22.41,56.8,31.4,1011.4,-29.573582451672223,-154.5913812299694,-2.9956342045073043,-99.83260121294703,-3.0675595920256615,-99.10065800374464,-44.392177284131975,-145.82967080985185
-1678892661,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.3,3.5,29.98,22.41,56.8,31.4,1011.3,-29.57378606126252,-154.590509956313,-2.995472448365308,-99.83202943522055,-3.067414164624005,-99.10130334528856,-44.393277604280414,-145.8223734221685
-1678892671,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.0,3.5,29.97,22.42,56.7,31.4,1011.3,-29.57353894924836,-154.5930273068982,-2.995416502772874,-99.83245562347997,-3.067390278437375,-99.10172816369226,-44.39134661445632,-145.82041068666732
-1678892681,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.5,3.8,29.98,22.42,56.7,31.4,1011.3,-29.57302295866313,-154.59034801340343,-2.995527434096019,-99.8335663312712,-3.0675732561737767,-99.10170420545639,-44.39520666210751,-145.82202290807368
-1678892691,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.8,3.7,29.97,22.42,56.7,31.4,1011.3,-29.57372917273991,-154.59006599042957,-2.99539864166485,-99.83326537055964,-3.067445648474484,-99.1021125431559,-44.39752094002707,-145.8098009873351
-1678892701,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.5,3.3,29.97,22.42,56.7,31.4,1011.4,-29.573510573259696,-154.59156747461356,-2.99536559396408,-99.83376963622119,-3.0674105345895084,-99.10163103979198,-44.397374928707734,-145.82051126428428
-1678892711,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.8,3.9,29.97,22.43,56.7,31.4,1011.3,-29.573121102309887,-154.5925775740111,-2.995460547184032,-99.83323195467726,-3.0673747909841658,-99.10181472746385,-44.39541828835275,-145.82403418345916
-1678892721,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.8,3.1,29.97,22.43,56.7,31.4,1011.3,-29.573440202350053,-154.59206113910838,-2.995434670388361,-99.83372429042468,-3.0674331888200754,-99.10217789365639,-44.39769125479032,-145.81123103061213
-1678892731,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.2,3.8,29.97,22.44,56.8,31.3,1011.3,-29.573885236265795,-154.59141102368804,-2.995353356732282,-99.83341535302124,-3.067481449096155,-99.10268482739481,-44.396903641686606,-145.81527379792794
-1678892741,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.0,3.8,30.01,22.44,56.8,31.3,1011.4,-29.574042288692052,-154.59220884047272,-2.995333774266405,-99.83253369994841,-3.0674937584349293,-99.10311303181692,-44.39393328936275,-145.81619533057295
-1678892751,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.6,3.4,29.97,22.45,56.8,31.3,1011.3,-29.573541012710752,-154.59096074418423,-2.995404147179324,-99.83284275643013,-3.0674529088787894,-99.10275080063167,-44.39697323016378,-145.82373243327402
-1678892761,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.0,3.2,29.97,22.45,56.8,31.3,1011.3,-29.573991042071974,-154.58824051736633,-2.9951549982740038,-99.83310230625422,-3.0674300063594013,-99.10240592859832,-44.396461152785605,-145.8127443967633
-1678892771,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.6,3.3,29.97,22.46,56.8,31.3,1011.3,-29.574216294522266,-154.58945000906422,-2.9953039840115787,-99.83431886154578,-3.067557257394133,-99.10221028680236,-44.39695488232246,-145.81045762634224
-1678892781,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.6,3.6,29.97,22.46,56.8,31.3,1011.3,-29.57399213924375,-154.59097198585127,-2.995328406029567,-99.83366670104708,-3.0675103837359807,-99.10232871070778,-44.39340439135045,-145.82165717887477
-1678892791,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.2,3.4,29.97,22.47,56.7,31.3,1011.3,-29.57356933341819,-154.59156462652837,-2.995687515543386,-99.83378309365891,-3.0674564081537863,-99.10304463174369,-44.394730478140175,-145.816900511484
-1678892801,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.1,3.7,29.98,22.47,56.7,31.3,1011.3,-29.573788300249845,-154.58997229533222,-2.9953899194043823,-99.83405788918796,-3.0674394780482093,-99.1026259213628,-44.39560955879138,-145.8199246502251
-1678892811,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.5,4.3,29.97,22.47,56.7,31.2,1011.3,-29.573694381240486,-154.5900361430721,-2.995357086554367,-99.8343607809394,-3.067590049172513,-99.10241795839228,-44.39571699923554,-145.81295305763916
-1678892821,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.6,3.7,29.98,22.48,56.7,31.2,1011.3,-29.57373705826775,-154.59309380623657,-2.995214450764146,-99.83458339276639,-3.0678285488709953,-99.10240074522962,-44.39399191748099,-145.81334512225143
-1678892831,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.8,4.0,29.97,22.48,56.6,31.2,1011.3,-29.573574364660203,-154.58950509501656,-2.995492328442923,-99.83462595779157,-3.06755631774179,-99.10217227876423,-44.393055798809286,-145.818156338456
-1678892841,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.1,3.6,29.97,22.48,56.7,31.2,1011.3,-29.57380387550242,-154.58998241287503,-2.995502205052307,-99.83405750240993,-3.067492090816151,-99.10263533195985,-44.39307362006077,-145.8276569449094
-1678892851,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.3,3.8,29.96,22.48,56.7,31.2,1011.3,-29.573783723061382,-154.5893693015354,-2.9955094822671535,-99.83521310413194,-3.0675097426591567,-99.10234501948278,-44.39175166961646,-145.8287719016471
-1678892861,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.1,3.7,29.97,22.51,56.7,31.2,1011.3,-29.573534416764712,-154.5880763654515,-2.9953036877141033,-99.83521900951321,-3.067484554444823,-99.1017699241318,-44.392598731164206,-145.82305415546963
-1678892871,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.0,3.9,29.97,22.51,56.7,31.2,1011.3,-29.57324524425225,-154.58941811597688,-2.995532972952466,-99.83476026562117,-3.0676325080667914,-99.10152913302093,-44.39554529103398,-145.81923429406223
-1678892881,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.6,3.9,29.98,22.53,56.7,31.2,1011.3,-29.572920156140484,-154.59151002441038,-2.9953270308201803,-99.83438190398469,-3.0676803185001837,-99.10162142496443,-44.39437429839417,-145.83109795611637
-1678892891,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.7,3.4,29.98,22.54,56.7,31.2,1011.4,-29.573033687218636,-154.59231265420271,-2.9954009935054344,-99.83464137492538,-3.0674245938078633,-99.10096376469362,-44.393237790750916,-145.83259436141796
-1678892901,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.8,3.9,30.0,22.53,56.7,31.2,1011.3,-29.573036740566124,-154.58989605749423,-2.995405589859164,-99.83449549219354,-3.067488420927455,-99.10096162666146,-44.39300127352325,-145.82668759635047
-1678892911,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.1,3.9,29.98,22.55,56.7,31.2,1011.3,-29.572841724673474,-154.5920468649073,-2.9956076977779573,-99.83429696491747,-3.067479398045449,-99.1012309518184,-44.39245480043589,-145.81770122804141
-1678892921,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.2,3.9,29.98,22.55,56.7,31.2,1011.4,-29.57258739596766,-154.59128042027712,-2.9954304885339256,-99.83418676026882,-3.06757127291843,-99.10046376834339,-44.39535023079579,-145.82030070323893
-1678892931,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.1,3.0,30.01,22.55,56.7,31.1,1011.4,-29.57301484676482,-154.59191031588094,-2.995509913813965,-99.83432990781455,-3.0676100535115705,-99.10130165915832,-44.39694125732436,-145.81841876084727
-1678892941,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.4,3.2,30.01,22.55,56.7,31.1,1011.3,-29.572508964855444,-154.59425980142424,-2.99538219306148,-99.83398276558182,-3.0675963665861894,-99.10140578919153,-44.3915071661167,-145.82884081210292
-1678892951,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.5,3.5,30.01,22.55,56.7,31.1,1011.3,-29.571985497608008,-154.5948996340074,-2.9953426892121193,-99.83284355600645,-3.0677032652733587,-99.10092159096507,-44.39136772633324,-145.83124960948422
-1678892961,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.5,3.8,30.01,22.55,56.7,31.1,1011.3,-29.572434402965126,-154.5931249819137,-2.9953555478064398,-99.83240175479285,-3.067671778180374,-99.10150562769928,-44.39353244073352,-145.8287664234608
-1678892971,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.1,3.9,30.0,22.55,56.7,31.1,1011.3,-29.572336714736046,-154.59250184616693,-2.9952990798363412,-99.8332507237427,-3.067624804969818,-99.10100982068136,-44.39203927507505,-145.83092209021987
-1678892981,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.8,3.5,30.01,22.55,56.7,31.1,1011.3,-29.572158152944365,-154.59289788083797,-2.9954517863957313,-99.83189397250726,-3.067718339507664,-99.10170337830264,-44.39140633810115,-145.85080970677774
-1678892991,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.8,3.4,30.01,22.55,56.7,31.1,1011.3,-29.571717648423434,-154.59453565618233,-2.9954279268900885,-99.8318008974951,-3.067641676411542,-99.1022280068329,-44.393022162518335,-145.8339437118926
-1678893001,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.5,3.8,30.04,22.55,56.7,31.1,1011.3,-29.571089951378266,-154.59645049193355,-2.9953083295314302,-99.83182036496737,-3.0678072070459725,-99.10130853639268,-44.39316915522931,-145.83245098441995
-1678893011,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.1,3.4,30.01,22.55,56.7,31.2,1011.3,-29.571314525736785,-154.59661680974895,-2.9953137096230718,-99.83160789304543,-3.0677672376169083,-99.10180645752273,-44.39209792208304,-145.82978107791072
-1678893021,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.3,3.5,30.01,22.55,56.7,31.1,1011.3,-29.571497860917773,-154.59598744510566,-2.995209239490577,-99.83145587970459,-3.067656547020588,-99.10132561922524,-44.392217018882114,-145.83968015626036
-1678893031,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.3,4.0,30.0,22.55,56.7,31.1,1011.4,-29.571413614903868,-154.59442852637628,-2.995452086155923,-99.83239688066737,-3.06782943795793,-99.10071094860838,-44.39188975874281,-145.8372895940455
-1678893041,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.0,3.7,30.01,22.55,56.7,31.2,1011.3,-29.57136254097712,-154.59441875412267,-2.995397443253765,-99.8310620273514,-3.0676878357776722,-99.10127817834186,-44.39052967518889,-145.84926201676709
-1678893051,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.1,2.8,29.98,22.55,56.7,31.2,1011.3,-29.570584961155546,-154.59762483817116,-2.9953326434935064,-99.8315952486942,-3.0675833734294633,-99.10073549803147,-44.3880266212324,-145.8492533354793
-1678893061,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,3.5,29.97,22.55,56.8,31.1,1011.3,-29.571177285707865,-154.59574253367384,-2.9952311397289657,-99.83171933697948,-3.067656968354964,-99.10178796196205,-44.39179409800707,-145.83776812656203
-1678893071,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.4,3.6,30.0,22.56,56.8,31.1,1011.3,-29.571550554462664,-154.5913243188222,-2.995403710668615,-99.83233788657213,-3.0678066194898013,-99.10158153638527,-44.39523891896507,-145.82881061642033
-1678893081,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.0,4.2,30.0,22.58,56.7,31.1,1011.3,-29.571432375315126,-154.59123708234569,-2.995395880928313,-99.83200785557626,-3.0676706180734,-99.10095452255443,-44.39177713318578,-145.83974737230383
-1678893091,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.6,4.5,30.01,22.58,56.7,31.1,1011.4,-29.57151328677535,-154.5920498448462,-2.995394521564049,-99.83222833322255,-3.067884274649424,-99.10030421303075,-44.39141994760638,-145.83103781729167
-1678893101,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.3,3.7,30.03,22.6,56.7,31.1,1011.4,-29.57158895916197,-154.5951741767127,-2.995259919792232,-99.83188694532042,-3.0677802995094385,-99.10093142017367,-44.38940639671418,-145.83592581776696
-1678893111,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.7,3.4,30.01,22.6,56.7,31.1,1011.4,-29.571481684733033,-154.59364018232637,-2.9955862884599704,-99.83219576273248,-3.0676747644437405,-99.10075682688556,-44.390886118714945,-145.83344440269047
-1678893121,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.8,3.5,30.0,22.6,56.8,31.1,1011.4,-29.57176175173199,-154.59433845872192,-2.995437277022219,-99.83288139362587,-3.067755536719119,-99.10123035525943,-44.38822979140602,-145.83504776481203
-1678893131,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.8,3.1,30.0,22.59,56.8,31.1,1011.3,-29.571032078114182,-154.59592779502486,-2.9954176170788314,-99.83318687615318,-3.0678228000237437,-99.10152936821684,-44.3869578407573,-145.84347765932222
-1678893141,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.4,3.2,30.0,22.57,56.8,31.1,1011.4,-29.570902710910254,-154.59317521554289,-2.9952893374565686,-99.83384535083188,-3.067708444796373,-99.10147652075437,-44.392139428737146,-145.81532573894108
-1678893151,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.7,3.1,29.98,22.55,56.8,31.1,1011.3,-29.571204783311305,-154.5936441402697,-2.995321892513323,-99.83430477530335,-3.067894144194235,-99.1026439413041,-44.39395815547463,-145.81612797491402
-1678893161,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.9,3.2,29.98,22.55,56.8,31.1,1011.4,-29.570772621147068,-154.59504705045543,-2.995303190649164,-99.83411540935664,-3.0678963098959837,-99.10223225352995,-44.39107865474914,-145.83427736635088
-1678893171,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.3,3.4,29.98,22.55,56.8,31.2,1011.4,-29.570711670934784,-154.59710063130277,-2.9954460507326623,-99.83500816373684,-3.067888446264803,-99.10239869891383,-44.39196821603471,-145.82736009643892
-1678893181,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.8,3.7,29.97,22.5,56.8,31.2,1011.4,-29.570895798625457,-154.59486649136707,-2.9953127395310544,-99.83473053088017,-3.067851674655472,-99.10275037584546,-44.392504222182126,-145.82279421896945
-1678893191,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.1,3.8,29.98,22.48,56.8,31.2,1011.4,-29.571050745489508,-154.5938411584737,-2.995354722168895,-99.83483813581815,-3.068180824601568,-99.10206351061534,-44.39646285777734,-145.80225107452685
-1678893201,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.3,3.8,29.97,22.45,56.8,31.2,1011.5,-29.571045643720588,-154.5945889322603,-2.9954236100473155,-99.83433598524468,-3.067964438575734,-99.10226482975956,-44.39411140692662,-145.81625461379898
-1678893211,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.8,2.7,29.97,22.43,56.8,31.3,1011.4,-29.57195039849161,-154.59358239462995,-2.9952084115690774,-99.8349236755649,-3.0679139409732463,-99.10261542800636,-44.39482284175738,-145.80197423793402
-1678893221,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.4,3.4,29.98,22.4,56.9,31.4,1011.4,-29.570929995208886,-154.59450044526778,-2.9951053343541383,-99.83535217136186,-3.0681717489414284,-99.10150258142382,-44.3948263982377,-145.8038624291339
-1678893231,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.2,3.6,30.01,22.35,56.9,31.4,1011.4,-29.57122517655897,-154.59336636634288,-2.9951454545769085,-99.83417814531794,-3.0681425895459924,-99.10154130086063,-44.394041688899904,-145.79674190253098
-1678893241,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.6,3.2,30.0,22.33,56.9,31.4,1011.4,-29.570879037665307,-154.59335248094854,-2.995311249149851,-99.83305257925801,-3.067941305957623,-99.10108663166318,-44.392467600429875,-145.80792739522695
-1678893251,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.3,2.8,30.0,22.31,56.9,31.5,1011.4,-29.571295947257845,-154.59495116330646,-2.995269600001273,-99.83335362846309,-3.067924380086226,-99.10147370517056,-44.393309015159666,-145.80918647360085
-1678893261,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.8,2.2,30.01,22.29,56.9,31.5,1011.4,-29.570865432068196,-154.59601023543797,-2.9953033049503968,-99.83413510970918,-3.067812607767583,-99.10176852261624,-44.390560625336526,-145.8130925327212
-1678893271,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.1,3.1,30.0,22.27,56.9,31.5,1011.4,-29.57001766932234,-154.6010738544373,-2.9951213241696175,-99.8343493768654,-3.0678584694345705,-99.1014221036782,-44.39000147333503,-145.82159920293208
-1678893281,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.8,2.6,29.98,22.24,56.9,31.6,1011.4,-29.570159169460236,-154.59898841292528,-2.995312470937947,-99.83419652982715,-3.068018960875414,-99.10184045987934,-44.39299435146978,-145.82816744803193
-1678893291,30.0,30.0,55.0,55.0,0,1300000000,,,3,6.7,3.2,29.98,22.18,56.9,31.6,1011.3,-29.57052487518194,-154.59771773058796,-2.9952441592198724,-99.83419448511762,-3.067960642592568,-99.10174326615724,-44.3925298153942,-145.81191623265659
-1678893301,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.6,3.0,30.0,22.16,56.9,31.7,1011.4,-29.57067646047788,-154.59673640717602,-2.995328501585968,-99.83471781161025,-3.0678600268259455,-99.10179918096928,-44.39209510541395,-145.80027623713033
-1678893311,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.3,3.2,30.0,22.14,56.9,31.8,1011.5,-29.570043664588773,-154.59849994249257,-2.995287984714119,-99.83447472304826,-3.0679352024401862,-99.10130544198607,-44.390921370067375,-145.81954416505027
-1678893321,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.1,3.0,30.0,22.13,56.9,31.8,1011.4,-29.57017832897108,-154.59882097011464,-2.9952252290441264,-99.8340216635663,-3.067851283500793,-99.10228451514575,-44.391107655334594,-145.82161044460364
-1678893331,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.9,2.9,30.0,22.11,56.9,31.8,1011.6,-29.5705093948777,-154.59936083920246,-2.9950735222042084,-99.83449811016825,-3.0677374221454867,-99.10212143071489,-44.38805110387438,-145.82460267891565
-1678893341,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.6,2.6,29.98,22.11,57.0,31.8,1011.5,-29.570191557485916,-154.60052140226247,-2.9952110463044255,-99.83423176708692,-3.0679445451286407,-99.10190439415238,-44.38917739301644,-145.82145305197855
-1678893351,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.8,2.6,30.0,22.06,57.0,31.9,1011.5,-29.570018368106872,-154.59928419998133,-2.9952762769861287,-99.8340155408233,-3.0677229923527785,-99.10196010325761,-44.38841737949106,-145.82798880718966
-1678893361,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.1,2.3,29.97,22.05,57.0,31.9,1011.5,-29.57032618748208,-154.59926060752412,-2.995233391580882,-99.83428937006383,-3.0678459476169735,-99.10166224258883,-44.38903353704892,-145.81926381337252
-1678893371,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.7,3.2,29.97,22.04,57.0,31.9,1011.5,-29.570297519755716,-154.60007149706024,-2.995274201980613,-99.83470047491068,-3.067612045583244,-99.1008595228187,-44.38595243036288,-145.82173932099093
-1678893381,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.2,3.2,29.98,22.0,56.9,31.9,1011.4,-29.57023033424136,-154.5995690636392,-2.995467695898615,-99.83482209956846,-3.0679108445706897,-99.10145988643984,-44.38657948870012,-145.82189233556446
-1678893391,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.2,3.7,29.97,21.98,56.9,32.0,1011.5,-29.57027337574026,-154.60031518484928,-2.995320713200416,-99.83471631066911,-3.0679530744168693,-99.10115365911322,-44.38697227550148,-145.8249401396021
-1678893401,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.0,2.9,29.97,21.98,56.9,32.0,1011.4,-29.56963323869732,-154.6012229560055,-2.9951694588463855,-99.83544638054417,-3.0680917629428817,-99.10117890740374,-44.38899542946163,-145.79253064974878
-1678893411,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.3,2.9,29.98,21.97,56.9,32.0,1011.5,-29.569851462205815,-154.59976389156373,-2.9950829695468344,-99.83519601350926,-3.0679539298063947,-99.10148076283863,-44.38888647446154,-145.7988010720882
-1678893421,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.6,3.0,29.98,21.98,56.9,32.0,1011.5,-29.57000636018932,-154.59967705725893,-2.995226156201243,-99.83572317936621,-3.0680814262913207,-99.10170437105222,-44.39031269808289,-145.80744189691708
-1678893431,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.2,3.0,29.98,21.98,56.9,32.1,1011.5,-29.569923032301524,-154.6005867140739,-2.9953087006559542,-99.8351136079422,-3.0679661519304147,-99.10191352000894,-44.38827804175638,-145.81161660133566
-1678893441,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.9,3.4,29.97,21.98,56.8,32.1,1011.5,-29.569635635087458,-154.59947152029812,-2.995054556323838,-99.8358059730099,-3.067902506601619,-99.10183262908036,-44.38740140168523,-145.81424013774958
-1678893451,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.1,3.5,29.98,21.97,56.8,32.1,1011.4,-29.569521854722144,-154.5989332573986,-2.9953874394988977,-99.83596011691188,-3.068036658918914,-99.10060926437767,-44.38861276462567,-145.82314131972197
-1678893461,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.8,3.5,30.0,21.97,56.8,32.1,1011.5,-29.5696932945547,-154.5999993094969,-2.9949545180595876,-99.83491427054953,-3.068024850015805,-99.10196141392883,-44.38929705662364,-145.812353839502
-1678893471,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.3,3.4,30.0,21.96,56.7,32.1,1011.5,-29.569749156479052,-154.60090159427727,-2.9951370673330735,-99.83545428088483,-3.068160621281499,-99.1016671417971,-44.389962502134274,-145.81122829412826
-1678893481,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.6,3.1,29.98,21.94,56.7,32.1,1011.4,-29.569542086203533,-154.6021548137502,-2.9951567348091226,-99.83565367205476,-3.0679203836107845,-99.10238291811216,-44.39017822117984,-145.81059019978233
-1678893491,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.7,3.5,29.98,21.96,56.7,32.1,1011.4,-29.56983378642798,-154.59929937114285,-2.9952326797148707,-99.83514985941329,-3.0679517035003285,-99.1031159980117,-44.39234068420295,-145.7990371793226
-1678893501,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.1,3.5,29.97,21.98,56.6,32.1,1011.5,-29.569878375259485,-154.59897747411895,-2.9952226276271903,-99.83552537008755,-3.0678932036736297,-99.10249825791045,-44.391997700898635,-145.79397121211184
-1678893511,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.7,4.0,30.0,21.99,56.6,32.1,1011.5,-29.570121514292865,-154.59797915753728,-2.9953567804552343,-99.8346800560765,-3.0679212366709714,-99.10203866570457,-44.39189270698733,-145.81594822293826
-1678893521,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.3,3.8,29.97,22.0,56.6,32.1,1011.4,-29.570135985490328,-154.59740941960527,-2.995337596586629,-99.834464691543,-3.0678390003590685,-99.10246738020943,-44.38989102429754,-145.82256686036305
-1678893531,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,3.6,29.97,22.01,56.6,32.0,1011.4,-29.57012523761079,-154.59920730778953,-2.995539685588299,-99.83460989413499,-3.0679440476306,-99.10243167762228,-44.39003089077815,-145.81911717115096
-1678893541,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.3,3.8,29.97,22.03,56.6,32.0,1011.5,-29.569877417205728,-154.59902019409822,-2.995226331770998,-99.83409882210516,-3.0679913604549007,-99.10221171130047,-44.38803218451611,-145.822655626161
-1678893551,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.0,3.8,30.0,22.04,56.7,32.0,1011.5,-29.569863810418443,-154.59871247616013,-2.9952460566316303,-99.8337073509289,-3.0679497973568397,-99.10236708539946,-44.388063117755216,-145.82700791092233
-1678893561,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.1,3.2,30.0,22.05,56.7,32.0,1011.6,-29.569634596031324,-154.60056055612506,-2.9952229984168244,-99.83437582196693,-3.0679466620692026,-99.10170314016764,-44.38614653956776,-145.82757921013166
-1678893571,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.3,3.3,30.0,22.08,56.7,32.0,1011.5,-29.569594440428002,-154.60140048509285,-2.995220556347786,-99.83388760055702,-3.067915432930834,-99.10203859365765,-44.38622900040788,-145.82024351133146
-1678893581,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.6,3.0,30.0,22.09,56.7,32.0,1011.5,-29.569753100242377,-154.60095174177988,-2.995314425179444,-99.83306338053002,-3.067898913471017,-99.10233695790006,-44.38519138577752,-145.8341203047721
-1678893591,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.3,3.4,30.0,22.09,56.6,31.9,1011.6,-29.569502668383517,-154.6035751246301,-2.995450704684315,-99.83358514772326,-3.0678756710495723,-99.10267706622584,-44.38537580296827,-145.84256541162307
-1678893601,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.8,3.5,30.0,22.1,56.7,31.9,1011.5,-29.569105728243592,-154.60141954034808,-2.995444707148715,-99.83296675423719,-3.068063562767494,-99.10199109420698,-44.38482393078136,-145.84760508889207
-1678893611,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.9,3.2,30.0,22.11,56.6,31.9,1011.5,-29.568557925568907,-154.60254058036747,-2.995154291166202,-99.83284083383137,-3.067977519649606,-99.10253590687276,-44.38695668990941,-145.8242312840341
-1678893621,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.0,3.7,29.98,22.11,56.6,31.8,1011.4,-29.56935280243458,-154.60442979868577,-2.995409389489155,-99.83414783814325,-3.067997719915933,-99.10277767826916,-44.38688025768577,-145.82774038339525
-1678893631,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.8,4.0,29.98,22.11,56.6,31.8,1011.5,-29.5696759784082,-154.6025541512691,-2.995286869755242,-99.83423587011467,-3.0679811233118888,-99.10261751494066,-44.38576638269137,-145.8313870667192
-1678893641,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.3,3.6,29.97,22.12,56.6,31.8,1011.6,-29.56945442599011,-154.60274497374405,-2.9949864788087543,-99.8344330468755,-3.0679271135302804,-99.10339370435229,-44.38444622376407,-145.84280975443414
-1678893651,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.7,3.6,29.98,22.13,56.6,31.8,1011.5,-29.56885432126443,-154.60435597702312,-2.99506300278747,-99.83461837193768,-3.0679776817255817,-99.10265813976629,-44.38316781241262,-145.84264171245644
-1678893661,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.9,3.7,30.0,22.14,56.6,31.8,1011.5,-29.569281402936017,-154.60204341513491,-2.9952176825626218,-99.83427142018506,-3.0681318145608665,-99.10267825765837,-44.38445213547539,-145.83162170587423
-1678893671,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.5,3.6,30.01,22.14,56.6,31.8,1011.4,-29.56888353822584,-154.60240519591085,-2.9950877572895633,-99.83389889184087,-3.0681497457493965,-99.10166368885068,-44.38620986269325,-145.83583985675247
-1678893681,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.0,3.2,30.03,22.15,56.6,31.8,1011.5,-29.56878873087558,-154.60404675997165,-2.99496533523188,-99.83316369128543,-3.0680570281720163,-99.10241937844067,-44.38341841439053,-145.84737162862777
-1678893691,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.2,3.2,30.04,22.15,56.7,31.8,1011.5,-29.568663308038445,-154.60531025539944,-2.9952323260289497,-99.8335583118681,-3.0678764188056897,-99.10093861214746,-44.379709912024204,-145.85983798225234
-1678893701,30.0,30.0,55.0,55.0,0,1300000000,,,3,6.5,3.0,30.03,22.16,56.7,31.8,1011.5,-29.568354909924622,-154.60439859411545,-2.9954038568037387,-99.83306742966488,-3.06812552623152,-99.10092496146032,-44.381288637910565,-145.86464920291874
-1678893711,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.6,3.3,30.01,22.17,56.7,31.7,1011.5,-29.568588075954946,-154.60380730053996,-2.9952224294882352,-99.83367543294578,-3.068037649501893,-99.10200870933666,-44.383720179328705,-145.84993058524762
-1678893721,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.3,3.4,30.0,22.18,56.7,31.7,1011.5,-29.568849611472086,-154.60237956013796,-2.9951892348761233,-99.83430087248993,-3.0680754069967797,-99.10260994841711,-44.38648722696999,-145.84808378623185
-1678893731,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.2,3.3,30.01,22.19,56.7,31.7,1011.6,-29.568588991735233,-154.60405010092137,-2.9951932638525305,-99.83359760663217,-3.0680166886550357,-99.10274504908341,-44.3805896029143,-145.84739179344612
-1678893741,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.9,3.6,30.01,22.21,56.7,31.7,1011.5,-29.568397602625403,-154.60394838601974,-2.995195410785927,-99.83365983434466,-3.0678283691295576,-99.10171019959311,-44.38230399890763,-145.8510228638223
-1678893751,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.7,4.3,30.0,22.21,56.6,31.7,1011.5,-29.568988893353758,-154.60242581154415,-2.9955824215052917,-99.83432092598356,-3.0680046079357437,-99.10192398451309,-44.38310655022623,-145.8649895720387
-1678893761,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.4,4.1,30.01,22.23,56.6,31.7,1011.5,-29.56950685488859,-154.60261521739332,-2.9952656173360355,-99.83439295772709,-3.0679106536008898,-99.10226016397233,-44.3840976731434,-145.85142273048282
-1678893771,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.6,3.9,30.01,22.24,56.6,31.7,1011.6,-29.569338263103326,-154.60258618702716,-2.9951373487769644,-99.83473141170136,-3.067983570767458,-99.10247367500558,-44.38454798047185,-145.85519919868594
-1678893781,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.7,3.2,30.0,22.25,56.6,31.7,1011.4,-29.569506471314394,-154.60253954738783,-2.995031092542063,-99.83481441901968,-3.06797256752517,-99.10227264839894,-44.383388641728715,-145.8363487361342
-1678893791,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.2,3.5,30.01,22.25,56.7,31.7,1011.5,-29.569007791944784,-154.60353569839035,-2.995328713800021,-99.83487199107593,-3.0677805743750604,-99.10235668882775,-44.381547742587586,-145.85352778581384
-1678893801,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.1,3.8,30.01,22.26,56.7,31.6,1011.5,-29.569055701308663,-154.60445949644404,-2.9953124554943855,-99.83550234873152,-3.0678039828346964,-99.10194911791034,-44.38229219152507,-145.84972272772362
-1678893811,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.3,3.3,30.01,22.27,56.7,31.6,1011.5,-29.569268266405693,-154.601886099112,-2.995372678173557,-99.83416698936101,-3.067914409057306,-99.1022645490348,-44.383997873170756,-145.84213844109584
-1678893821,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.2,3.7,30.0,22.28,56.7,31.6,1011.6,-29.56922094150462,-154.60039738179046,-2.9953449694564043,-99.8351119658572,-3.0677708133039316,-99.10240277559151,-44.38549136442839,-145.83635424146715
-1678893831,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.2,3.4,30.0,22.29,56.7,31.6,1011.6,-29.56935670081149,-154.60026781775989,-2.995474647766565,-99.83429863663551,-3.0679010478452757,-99.10253829666131,-44.386494825638124,-145.8485258485059
-1678893841,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.6,4.2,30.0,22.32,56.6,31.5,1011.5,-29.56983690601227,-154.5992775102313,-2.995566964321046,-99.83520133873917,-3.067848687071517,-99.10306132935351,-44.386397976626846,-145.836570601826
-1678893851,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.9,4.2,29.98,22.33,56.6,31.5,1011.5,-29.569707777712026,-154.5994475586695,-2.9954735842836726,-99.8351469859141,-3.0676473752813385,-99.10307454286854,-44.38548952526722,-145.82662589240016
-1678893861,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.4,4.0,30.0,22.33,56.6,31.5,1011.5,-29.56950837179267,-154.60127396108734,-2.995441037800457,-99.83452525730834,-3.0676738988030925,-99.10278381195151,-44.38336887644791,-145.84042436581382
-1678893871,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,3.8,29.98,22.33,56.6,31.5,1011.6,-29.56987281559748,-154.60007281385626,-2.9954245763001937,-99.83518096865363,-3.0677684502302744,-99.10313381157513,-44.38600427153374,-145.83550386801707
-1678893881,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.6,3.4,29.98,22.34,56.7,31.5,1011.5,-29.570644847536585,-154.59882253478713,-2.995315004758888,-99.83486971090076,-3.0679905330081043,-99.10428959232736,-44.39117146648733,-145.8141573782541
-1678893891,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.3,3.1,29.98,22.34,56.7,31.5,1011.5,-29.5701473140498,-154.59979678070013,-2.995335342480858,-99.83510946796946,-3.0680444280477404,-99.10350775926108,-44.39069696655867,-145.8191327944298
-1678893901,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.7,2.9,30.0,22.35,56.7,31.5,1011.5,-29.57057923708686,-154.59799305141277,-2.9955552465332684,-99.8362782342079,-3.0678732668835638,-99.1038168257139,-44.3907508777621,-145.8167302264032
-1678893911,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.3,3.5,30.0,22.35,56.8,31.5,1011.6,-29.570551005548506,-154.59931803789812,-2.9955574230692332,-99.83534885447283,-3.067727874018164,-99.10397313152146,-44.38935769096064,-145.8018698106773
-1678893921,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.9,3.3,29.98,22.35,56.8,31.5,1011.5,-29.570410518331087,-154.59975061037758,-2.995600399509276,-99.83563885950815,-3.0678097445749346,-99.1038599988074,-44.390187801907935,-145.8154847875643
-1678893931,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.3,3.2,29.98,22.36,56.7,31.5,1011.6,-29.57041734358967,-154.59822965422134,-2.995655248671948,-99.83623715539375,-3.067851516465841,-99.10401150471802,-44.38962821433168,-145.8135094834582
-1678893941,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.3,3.6,29.98,22.38,56.7,31.4,1011.6,-29.57097074092585,-154.59397110959293,-2.995702539300222,-99.83600549975895,-3.067933571536154,-99.10444347960659,-44.39157671798549,-145.81264849093972
-1678893951,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.9,3.5,29.98,22.38,56.7,31.4,1011.5,-29.570969703691283,-154.59513412518766,-2.99563972063335,-99.83583638779804,-3.0678575026877346,-99.10435464846906,-44.38935375069864,-145.81072957915185
-1678893961,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.6,3.9,30.0,22.39,56.7,31.4,1011.6,-29.570873450282246,-154.5966154099739,-2.995447295747315,-99.83587453182439,-3.0678665994089878,-99.10323545566504,-44.38883828407646,-145.81234921593895
-1678893971,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.0,3.5,30.01,22.39,56.7,31.4,1011.6,-29.571265440460643,-154.59683293705464,-2.99559670676454,-99.83597533361734,-3.0679499871691367,-99.10321761556291,-44.390844692081586,-145.810764575134
-1678893981,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.3,3.3,30.01,22.4,56.7,31.4,1011.5,-29.57058332312185,-154.59685263919536,-2.9954812877098873,-99.83534100504065,-3.0677931432469063,-99.10344991521131,-44.390894790139015,-145.8264588444514
-1678893991,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.1,3.2,30.01,22.4,56.7,31.4,1011.5,-29.570756910835833,-154.59778730775446,-2.9955424768643777,-99.83589011331826,-3.0679187596412536,-99.10395634225819,-44.38898789749746,-145.81733177400562
-1678894001,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.0,3.0,30.0,22.41,56.8,31.3,1011.5,-29.570973789104332,-154.5965967682534,-2.9954191000937165,-99.83669382994866,-3.067876725570833,-99.1043573852926,-44.38887328514188,-145.82830328152443
-1678894011,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.1,3.5,29.98,22.41,56.8,31.3,1011.5,-29.57037801761548,-154.5979840238289,-2.9952869919673515,-99.83667473177417,-3.0677462847880665,-99.10362800356494,-44.38798041880817,-145.83313719918831
-1678894021,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,3.3,30.01,22.41,56.8,31.3,1011.6,-29.57037772190615,-154.60060474177135,-2.9953344254063614,-99.83722694683405,-3.067797490893021,-99.10315560596092,-44.38888453502652,-145.83319670353666
-1678894031,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.2,3.6,30.0,22.41,56.8,31.3,1011.5,-29.57062772829662,-154.60003392111636,-2.9952902080658244,-99.83592384913722,-3.0678313559454122,-99.10375440737236,-44.38588664216668,-145.8329541203146
-1678894041,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.6,3.7,29.98,22.41,56.7,31.3,1011.6,-29.570637867828047,-154.59922113540938,-2.995387099690462,-99.83649096517364,-3.0678414887644885,-99.1031960371715,-44.387656997978,-145.83499144960672
-1678894051,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.3,3.5,30.01,22.42,56.8,31.3,1011.6,-29.57062242753389,-154.59771629187804,-2.9955280786528826,-99.83591999502326,-3.067892881370273,-99.10358202471754,-44.38621101531908,-145.8419180267955
-1678894061,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.0,3.6,29.97,22.42,56.8,31.3,1011.5,-29.570193369070594,-154.59917562590937,-2.995349446892759,-99.83622357384229,-3.0678717411782297,-99.10285696603404,-44.38838828575793,-145.8256473803986
-1678894071,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.3,3.6,30.01,22.43,56.8,31.3,1011.6,-29.56994416936144,-154.60002247114804,-2.99535060888523,-99.83615650091257,-3.067720142482529,-99.10310356296978,-44.389075497442434,-145.83823151394787
-1678894081,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.2,3.2,30.0,22.44,56.8,31.3,1011.5,-29.56962400015329,-154.6018487596298,-2.9954769866724935,-99.83562729519535,-3.0677074993667235,-99.10363715601156,-44.386348035008055,-145.8385354397581
-1678894091,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.7,3.4,30.0,22.44,56.8,31.3,1011.5,-29.57022298717087,-154.60163221274053,-2.99559182127406,-99.83571610589495,-3.0677896021556217,-99.10315425418091,-44.38763196493272,-145.83326842754295
-1678894101,30.0,30.0,55.0,55.0,0,1300000000,,,3,11.2,3.2,30.01,22.45,56.7,31.3,1011.5,-29.569877338446847,-154.60198628264104,-2.995281968656149,-99.83596139179106,-3.0679786347039144,-99.10261817680659,-44.38621297329757,-145.8295974411878
-1678894111,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.5,3.4,30.01,22.46,56.7,31.3,1011.5,-29.57020508146954,-154.60069681610017,-2.9953041611818927,-99.8362403837428,-3.0679745227130004,-99.10224923105564,-44.385583348333654,-145.8360165102452
-1678894121,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.1,3.0,30.01,22.46,56.7,31.3,1011.6,-29.570115164848183,-154.60051922273826,-2.995364489743504,-99.83543538625563,-3.0679802544652945,-99.10282192091881,-44.384171775978444,-145.848420025103
-1678894131,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.9,3.0,30.03,22.46,56.7,31.3,1011.6,-29.56993548234912,-154.60212188549988,-2.995280007200756,-99.83517978555281,-3.0679450418413863,-99.10354660929393,-44.3860970279942,-145.8487334622197
-1678894141,30.0,30.0,55.0,55.0,0,1300000000,,,3,11.2,2.8,30.01,22.47,56.7,31.3,1011.6,-29.570386778755445,-154.59918307784565,-2.995379752604961,-99.8359412820212,-3.068035673761857,-99.10452889432715,-44.387607386152304,-145.82102577699084
-1678894151,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.5,3.5,30.0,22.48,56.8,31.3,1011.6,-29.570304283445033,-154.59816007357952,-2.9953095520349122,-99.83524463164363,-3.0678551267321,-99.10482518461222,-44.38273096650086,-145.8319869833403
-1678894161,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.4,3.6,30.0,22.49,56.8,31.3,1011.5,-29.570543467656165,-154.59912241315362,-2.9952746804283583,-99.83555250901806,-3.068039955653247,-99.10476686866853,-44.38551220496319,-145.82795030585797
-1678894171,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.0,3.2,30.01,22.5,56.8,31.2,1011.6,-29.570340786075135,-154.59798501152835,-2.9954686812677958,-99.83575867669629,-3.0679992289159284,-99.10367209785535,-44.38594675186138,-145.83231569071665
-1678894181,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,3.1,30.0,22.5,56.8,31.2,1011.5,-29.570040065628582,-154.59726493716113,-2.9955066772342382,-99.83595838306852,-3.06782650712198,-99.10359368261187,-44.386855153469725,-145.83912747954764
-1678894191,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.0,3.0,30.0,22.51,56.8,31.2,1011.6,-29.57015202457079,-154.5991276061643,-2.9954170972481804,-99.83587874757458,-3.067780821127622,-99.10338505549382,-44.38310306706602,-145.84931813519327
-1678894201,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.9,3.2,29.98,22.53,56.8,31.2,1011.6,-29.56979554363337,-154.59944641415615,-2.9953969116454893,-99.83685683514561,-3.0679638666368354,-99.10359836985565,-44.38494389994668,-145.83920230421052
-1678894211,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.8,3.5,30.0,22.53,56.8,31.2,1011.5,-29.57048189302466,-154.59548214284413,-2.99536408811979,-99.83667718001561,-3.0678991664632154,-99.10317908200686,-44.38453893660247,-145.8180908822154
-1678894221,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.7,3.2,30.0,22.54,56.7,31.2,1011.5,-29.570561380617523,-154.59733375939436,-2.9956411605284754,-99.83642382519785,-3.067716331212627,-99.10352971224398,-44.38285606957703,-145.83833583747062
-1678894231,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.6,3.2,29.98,22.54,56.8,31.2,1011.6,-29.570978622077618,-154.59352032386158,-2.9954144384013706,-99.8372382616035,-3.067827228109893,-99.1034153178865,-44.388427630754144,-145.8253381523916
-1678894241,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.0,3.2,29.98,22.54,56.8,31.2,1011.6,-29.570779663416324,-154.59585059183595,-2.99552124621545,-99.83666717764065,-3.067678135169993,-99.1038667030266,-44.38227335979257,-145.84127600422482
-1678894251,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.0,3.4,30.0,22.54,56.7,31.2,1011.7,-29.57062562416325,-154.5954770561667,-2.995556706264975,-99.83648893912257,-3.067723107595059,-99.1042792963566,-44.38640924159242,-145.8384136883438
-1678894261,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.5,3.9,30.01,22.54,56.7,31.2,1011.6,-29.5705224791994,-154.59637369255995,-2.995498672958095,-99.83747933888532,-3.067768062169362,-99.10320678011702,-44.38492353200057,-145.8324154971178
-1678894271,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.2,3.8,29.98,22.55,56.7,31.2,1011.6,-29.57040183476871,-154.59577146616542,-2.9954661314104984,-99.83693733785891,-3.067793057032044,-99.1037533115789,-44.38256411824641,-145.84157824330933
-1678894281,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.5,3.3,29.98,22.55,56.7,31.2,1011.6,-29.57029676609544,-154.59762433222036,-2.995320668106925,-99.83730057576517,-3.0677415010043823,-99.10420060309801,-44.38627416426496,-145.8379092728188
-1678894291,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.2,3.3,30.0,22.55,56.7,31.1,1011.6,-29.57043617231589,-154.59596812589152,-2.995367809071257,-99.8367862315039,-3.067711002168158,-99.1041560520886,-44.38497631855767,-145.81796993735378
-1678894301,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.0,4.0,30.0,22.55,56.7,31.1,1011.7,-29.570317253151117,-154.59858929530165,-2.9951776262450025,-99.83550224013422,-3.0678487244480976,-99.10418020854355,-44.38411199896024,-145.82939139272693
-1678894311,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.2,3.0,30.01,22.55,56.7,31.2,1011.6,-29.570221710157526,-154.59884054057613,-2.995200473680502,-99.83568030472733,-3.067865831398964,-99.10379225937763,-44.38380585342215,-145.82666015671103
-1678894321,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.3,2.7,30.01,22.55,56.7,31.1,1011.6,-29.569976180489697,-154.59851257738237,-2.9953383464370393,-99.83589421842855,-3.067694735635587,-99.10441379834717,-44.38112652214449,-145.84373524853032
-1678894331,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.6,2.8,30.0,22.55,56.8,31.1,1011.6,-29.569780789871047,-154.60005305812072,-2.995275785806981,-99.83663845442848,-3.0678409147513723,-99.10424701436624,-44.3832569813124,-145.84371466300578
-1678894341,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.7,3.0,30.01,22.55,56.8,31.1,1011.6,-29.56985650896577,-154.59970810649926,-2.995183443340113,-99.83724755101672,-3.0680515609456016,-99.10414172324322,-44.38568906716939,-145.81681103541666
-1678894351,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.6,2.7,29.98,22.55,56.8,31.1,1011.6,-29.570058391065764,-154.5981816203147,-2.9952225507248476,-99.83589219331807,-3.0678217715444007,-99.10555012758194,-44.38600806681315,-145.80977983475037
-1678894361,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.2,3.2,30.0,22.55,56.9,31.1,1011.7,-29.56989568856155,-154.59873232173314,-2.995177757088208,-99.83604159185651,-3.067967655353793,-99.104602957262,-44.38266346142924,-145.83285610760552
-1678894371,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.3,3.6,30.01,22.55,56.8,31.1,1011.6,-29.569721198284917,-154.5985860186297,-2.995216633559148,-99.83559975406222,-3.067945483069882,-99.1046662836461,-44.38229548388006,-145.82494512282253
-1678894381,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.0,3.3,30.01,22.55,56.8,31.1,1011.6,-29.569476970425406,-154.60060069569536,-2.995433008097482,-99.83634148730734,-3.06808043584365,-99.1042182084867,-44.38512180843296,-145.8212941191078
-1678894391,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,3.3,30.01,22.55,56.8,31.1,1011.6,-29.56963829463378,-154.60023732271506,-2.995307523562304,-99.83631955435978,-3.0679522240861825,-99.10357749368754,-44.38306012615031,-145.82744798270724
-1678894401,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.1,2.9,30.0,22.55,56.7,31.1,1011.6,-29.56946333294821,-154.60149842859266,-2.995330345907625,-99.83603820553446,-3.068089223155332,-99.10454565292206,-44.38232391381728,-145.82970129437766
-1678894411,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.9,3.6,30.0,22.55,56.7,31.1,1011.6,-29.569710943997766,-154.59923350437998,-2.9953258997088805,-99.8359704368811,-3.0681246074458652,-99.10487065622564,-44.38567840764592,-145.816670410754
-1678894421,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.3,3.5,29.98,22.55,56.7,31.1,1011.6,-29.569749931085084,-154.59885699565615,-2.995242176236528,-99.83669767987753,-3.0681262479534044,-99.1036085446373,-44.38197745208615,-145.8158479957252
-1678894431,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.8,3.6,30.01,22.55,56.8,31.1,1011.6,-29.569544589282152,-154.59821047133468,-2.9951983601640197,-99.83589995776555,-3.068052983964909,-99.10390705384243,-44.38501672738305,-145.8114268535226
-1678894441,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.3,2.9,30.0,22.55,56.8,31.1,1011.6,-29.569551962682215,-154.59960326879713,-2.9951060475547697,-99.836508310159,-3.0681785431841817,-99.1043250223135,-44.38838610760216,-145.80681504265178
-1678894451,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.9,2.8,30.0,22.57,56.8,31.1,1011.6,-29.56906745761852,-154.6009820905044,-2.9951212881735794,-99.83627724265347,-3.0682629925442493,-99.1040863286692,-44.38565812087653,-145.80617324280544
-1678894461,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.1,3.3,30.0,22.56,56.8,31.1,1011.7,-29.569077918029542,-154.6012306078798,-2.9951198134478334,-99.83659029658024,-3.068253745172322,-99.1036196090094,-44.386523606194814,-145.80615121150532
-1678894471,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.5,3.2,30.0,22.55,56.8,31.1,1011.6,-29.569790084229055,-154.5983839654979,-2.9952083618217333,-99.83707069163013,-3.068188833403318,-99.10385651124813,-44.38569383995969,-145.79827147160316
-1678894481,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.0,3.3,30.0,22.55,56.8,31.1,1011.7,-29.569332269229033,-154.5988170109004,-2.9952415631601066,-99.8365069474852,-3.0680928121083095,-99.10340216954175,-44.38105955283359,-145.79680027245678
-1678894491,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.5,3.1,29.98,22.55,56.7,31.1,1011.7,-29.56977787265891,-154.5982289602187,-2.9951809141227463,-99.83652673062306,-3.068306661184149,-99.10363637404672,-44.38404073214167,-145.78805181052704
-1678894501,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.6,3.7,30.0,22.55,56.7,31.1,1011.6,-29.569919812541343,-154.59864972614238,-2.9955194615716696,-99.83589064377361,-3.068077900980988,-99.10419050321835,-44.386234577701494,-145.80005814160486
-1678894511,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.7,3.2,30.0,22.53,56.7,31.1,1011.7,-29.569919060672945,-154.5970420993529,-2.995366024157864,-99.83748147730698,-3.0678682960338186,-99.10419016742762,-44.38639007156782,-145.79459723167955
-1678894521,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.1,3.0,29.98,22.47,56.7,31.2,1011.6,-29.569721174409914,-154.59637982225664,-2.9954050287779643,-99.83685057707281,-3.0679978178191942,-99.10402063597779,-44.3860623729399,-145.80371955376765
-1678894531,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.5,3.7,29.98,22.46,56.7,31.2,1011.7,-29.569817993901527,-154.59833716130493,-2.995197218864873,-99.83766582285078,-3.068102376254162,-99.1034069416566,-44.3850605975209,-145.78115964459454
-1678894541,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.7,3.2,29.98,22.43,56.7,31.2,1011.7,-29.56956712798299,-154.59696446030043,-2.9953813646859717,-99.83832659975093,-3.0679329137702998,-99.10338365505315,-44.38328761119959,-145.79792956825565
-1678894551,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.1,3.4,30.0,22.42,56.7,31.2,1011.7,-29.56934453055171,-154.5969459428999,-2.995315304663645,-99.83816256566713,-3.06802310464455,-99.10305339668031,-44.38468062131782,-145.79895119768335
-1678894561,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.5,3.0,29.98,22.39,56.8,31.3,1011.6,-29.569879239682002,-154.59635072801106,-2.995418111178102,-99.83778848093397,-3.0678981181689964,-99.10391879718814,-44.38585800455418,-145.7998787604625
-1678894571,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,3.2,29.98,22.35,56.8,31.3,1011.6,-29.569588019788775,-154.59463338378376,-2.9954254084901866,-99.8373556846322,-3.0678597712119258,-99.10345216886145,-44.38435712786056,-145.80699974402918
-1678894581,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,3.2,30.0,22.31,56.7,31.4,1011.6,-29.569996421042575,-154.59602430157884,-2.995325982543668,-99.8370414719198,-3.06802897462439,-99.1035976480567,-44.38681281357438,-145.7832508622713
-1678894591,30.0,30.0,55.0,55.0,0,1300000000,,,3,6.6,3.4,29.98,22.29,56.7,31.4,1011.6,-29.56971377955627,-154.5987699016151,-2.9954126913279295,-99.83745748987894,-3.068013309430064,-99.10304710807439,-44.3854489545983,-145.78784654967507
-1678894601,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.9,3.2,29.97,22.27,56.7,31.5,1011.7,-29.569746238082644,-154.59717913068312,-2.995410733352445,-99.8377462810789,-3.0681196403566307,-99.10449716811425,-44.386461662589326,-145.79469729882777
-1678894611,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.9,3.2,29.98,22.27,56.7,31.5,1011.6,-29.570002746591186,-154.59418015146463,-2.9955766044102026,-99.83853807882974,-3.0681000360302524,-99.10392936078549,-44.38719540824592,-145.78782485041742
-1678894621,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.0,3.4,30.0,22.28,56.7,31.5,1011.7,-29.569788025037408,-154.59574085751555,-2.9955027691903773,-99.83740449650347,-3.0680256969144937,-99.10436311583214,-44.388307631700215,-145.79280559578152
-1678894631,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.4,3.8,30.0,22.27,56.7,31.5,1011.6,-29.569609926274715,-154.59428808208997,-2.9953778646711977,-99.83799973442994,-3.0679324210045418,-99.1045124948751,-44.386856546178876,-145.80230054690088
-1678894641,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,3.3,30.0,22.26,56.7,31.5,1011.7,-29.56977043964934,-154.59331135040946,-2.99540303745299,-99.83852514081207,-3.0680318793066124,-99.10486948442824,-44.39050404538615,-145.7856840268551
-1678894651,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.9,3.7,29.97,22.26,56.7,31.5,1011.7,-29.570278141019088,-154.596650002448,-2.99546206858392,-99.83885984481253,-3.0678766387553216,-99.10633904782844,-44.38971885324258,-145.7887353457933
-1678894661,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.5,2.5,29.96,22.25,56.7,31.5,1011.6,-29.57062957734425,-154.594843418377,-2.995435490446602,-99.8399116179918,-3.0677973798041265,-99.10618806023271,-44.389525946583944,-145.7971586599587
-1678894671,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.3,3.5,29.96,22.24,56.8,31.5,1011.6,-29.570712147257833,-154.59455014626934,-2.995292043067963,-99.83990486495627,-3.067844750997221,-99.10612196833002,-44.39085260636591,-145.77090625251248
-1678894681,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.4,3.8,29.97,22.23,56.8,31.5,1011.6,-29.571004922150447,-154.59521961652774,-2.995359309039403,-99.83983747534391,-3.067916359845487,-99.10599880416517,-44.389804469943456,-145.79265349627258
-1678894691,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.0,3.5,29.97,22.21,56.7,31.6,1011.6,-29.570834390004784,-154.59538879912103,-2.9952686388250434,-99.83992447888397,-3.067951860935387,-99.1067980181134,-44.38912150999846,-145.78203855923658
-1678894701,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.9,3.4,29.97,22.2,56.7,31.6,1011.6,-29.570865037007053,-154.5959272738434,-2.9953612117106365,-99.83976807724757,-3.0679877502017265,-99.1065627855658,-44.38614153148771,-145.78853680699868
-1678894711,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.9,3.4,29.98,22.18,56.7,31.6,1011.6,-29.570555790121993,-154.59727043297104,-2.9952272325996927,-99.83943129145403,-3.067903532331587,-99.10658349691522,-44.38773012080955,-145.78985770563077
-1678894721,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.3,3.3,30.01,22.15,56.7,31.7,1011.6,-29.570140761959745,-154.59598472832297,-2.9953177328058924,-99.83902065027856,-3.0679067943157765,-99.1056707335966,-44.38772942011088,-145.8023118628936
-1678894731,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.6,3.1,30.0,22.15,56.7,31.7,1011.6,-29.570172254708393,-154.59761408346813,-2.99532862888154,-99.83934073206579,-3.068004838459844,-99.10542159845946,-44.3899325487948,-145.79991114120446
-1678894741,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.9,2.9,29.97,22.14,56.7,31.7,1011.7,-29.57018328974887,-154.59623360209093,-2.9952039712419514,-99.83911100873168,-3.067886829179467,-99.10683416062145,-44.3890774435578,-145.79370845642904
-1678894751,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.1,3.4,29.97,22.1,56.8,31.8,1011.7,-29.570514907126366,-154.59550353374902,-2.995259141485269,-99.83966349167977,-3.0678964499880985,-99.10668086240351,-44.38901995705143,-145.79706619006265
-1678894761,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.5,3.1,29.97,22.12,56.8,31.8,1011.8,-29.57064814215122,-154.59611003658486,-2.99531882178104,-99.8397895578689,-3.067996304308031,-99.10689967800488,-44.387337778903515,-145.79438781887822
-1678894771,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.1,3.5,30.0,22.13,56.8,31.8,1011.7,-29.570727729959003,-154.59404178275136,-2.9955753479775282,-99.83972189733488,-3.0680704513971597,-99.10657801324935,-44.389446378507046,-145.78657786731927
-1678894781,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.9,3.1,30.0,22.15,56.8,31.7,1011.6,-29.570234794634594,-154.59626895629378,-2.9953894759637425,-99.83907390371627,-3.067939711616848,-99.10708490676119,-44.387594750963956,-145.7984466974394
-1678894791,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,3.1,29.97,22.13,56.8,31.7,1011.6,-29.57067957423422,-154.59269806142999,-2.9954747789413676,-99.84044245838122,-3.068020042892336,-99.1075008431676,-44.38805935709435,-145.78681362860266
-1678894801,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.2,3.5,29.98,22.14,56.7,31.7,1011.7,-29.570349034658943,-154.5957909031357,-2.9953176273956004,-99.8400057515388,-3.0680423915827877,-99.10781255872081,-44.38648578031863,-145.77770857677044
-1678894811,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.2,3.1,29.98,22.15,56.7,31.7,1011.6,-29.57090470284924,-154.59528134751096,-2.995448032739171,-99.8411209177154,-3.0680095727292405,-99.10881381444602,-44.38817200910095,-145.7872245660971
-1678894821,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.1,3.4,29.97,22.15,56.7,31.7,1011.6,-29.57126867615916,-154.59449733535953,-2.9954198515868398,-99.84056162737949,-3.0679350135650236,-99.10926374520915,-44.38910002337961,-145.76989546925913
-1678894831,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.2,3.7,29.97,22.15,56.6,31.7,1011.7,-29.570705802779244,-154.59555410054747,-2.995320878507032,-99.84087508326057,-3.0679241066734035,-99.10877513946764,-44.388697983480306,-145.77364721969772
-1678894841,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.5,4.2,29.97,22.17,56.6,31.7,1011.7,-29.570661228710918,-154.5942701751087,-2.995413747331268,-99.84077115602153,-3.0677681836514017,-99.10949983080619,-44.386756844327664,-145.80133718708518
-1678894851,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.0,3.8,29.97,22.19,56.6,31.7,1011.7,-29.570644558315568,-154.59304104375883,-2.9952737777336838,-99.84131103741778,-3.0677791985238185,-99.10898390765001,-44.38966597822893,-145.79745993693405
-1678894861,30.0,30.0,55.0,55.0,0,1300000000,,,3,6.9,4.5,29.97,22.2,56.6,31.7,1011.6,-29.570557668294928,-154.59589662961244,-2.9954599380089375,-99.84061050100905,-3.067673684974046,-99.10868576488257,-44.38689428601002,-145.7984568658719
-1678894871,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.0,4.0,29.98,22.21,56.6,31.7,1011.7,-29.570157793117552,-154.59562551681628,-2.9955053876244397,-99.84068684266259,-3.0678590117862896,-99.10787281256181,-44.3861946020331,-145.79009343084107
-1678894881,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.9,3.8,30.0,22.23,56.5,31.7,1011.7,-29.57052088793962,-154.5949620275142,-2.9954379393248582,-99.84102934723903,-3.0679767574776466,-99.10756674152505,-44.38753214041568,-145.78951001803387
-1678894891,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.5,3.6,29.97,22.24,56.5,31.6,1011.7,-29.570181072451163,-154.5930725695127,-2.99535041902621,-99.84123819328829,-3.0680513143145403,-99.10733478988345,-44.38781608950712,-145.78622625255935
-1678894901,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.2,3.7,29.98,22.25,56.6,31.6,1011.7,-29.57038602994743,-154.5953331202178,-2.995463913240648,-99.84154989478664,-3.06786410341585,-99.1082753751259,-44.387022192456946,-145.7849654463557
-1678894911,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.6,3.9,29.98,22.25,56.6,31.6,1011.7,-29.570521140334392,-154.5947777320842,-2.9952924769894826,-99.84177621145656,-3.0678339071179024,-99.10861187304742,-44.388263218076254,-145.77835315377342
-1678894921,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.0,3.5,30.01,22.25,56.6,31.6,1011.7,-29.570544343462895,-154.5956490747099,-2.995470720082034,-99.84221540813341,-3.067900907952688,-99.10797478730565,-44.38493406179102,-145.7927913821644
-1678894931,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.2,3.5,29.97,22.26,56.6,31.6,1011.7,-29.57002645018453,-154.59738262595357,-2.9955836936684572,-99.84203739064321,-3.0678500718655197,-99.10784211885704,-44.38488235216897,-145.7994107259765
-1678894941,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.1,3.4,29.97,22.27,56.6,31.6,1011.7,-29.570257866515057,-154.59712264486774,-2.9956060049092805,-99.84179469335014,-3.0679740651572707,-99.10796274164319,-44.385959004001634,-145.7805341634464
-1678894951,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.1,3.7,29.97,22.26,56.6,31.6,1011.6,-29.570471603418,-154.59666465261523,-2.9955430658630675,-99.84187387083249,-3.0677841702950097,-99.10816553789307,-44.386606238281985,-145.7756603953905
-1678894961,30.0,30.0,55.0,55.0,0,1300000000,,,3,6.8,3.7,29.98,22.28,56.7,31.5,1011.6,-29.57053718663424,-154.59421974712245,-2.995700918726785,-99.84227693048462,-3.0679851237398204,-99.10848026319941,-44.3888285127148,-145.7743755258969
-1678894971,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.8,3.4,30.0,22.29,56.7,31.5,1011.7,-29.569917743184856,-154.59488427657433,-2.9955563861352226,-99.84170040062621,-3.0679437527670594,-99.10881901747378,-44.38950861360276,-145.77895060074215
-1678894981,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.3,3.7,29.97,22.3,56.6,31.5,1011.6,-29.569760061626866,-154.59433543668544,-2.995314077560023,-99.8417393393828,-3.067986885885652,-99.10872400603996,-44.39128913723964,-145.76946211191884
-1678894991,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.7,3.7,29.98,22.31,56.7,31.5,1011.7,-29.57038514134911,-154.59271871335338,-2.9953022559521476,-99.8427142689574,-3.0680990424580807,-99.10897404866978,-44.391090247100955,-145.76394795960542
-1678895001,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.5,3.3,29.98,22.31,56.7,31.5,1011.8,-29.569920901050047,-154.59527433924262,-2.9953708149164693,-99.84204554467269,-3.0678509392241082,-99.10887650483953,-44.389909639260914,-145.77593277232165
-1678895011,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.4,3.8,30.0,22.32,56.7,31.5,1011.7,-29.57044212271651,-154.59367259783812,-2.9954474465505094,-99.84254905128535,-3.067917006573115,-99.10832965356626,-44.39184685766168,-145.77357527816852
-1678895021,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.5,3.7,29.97,22.32,56.7,31.5,1011.7,-29.569553434559445,-154.59684103947106,-2.9951910705454936,-99.8420986087266,-3.0679048320376268,-99.10846741011885,-44.388948093578605,-145.77210927428922
-1678895031,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.7,3.6,29.97,22.33,56.6,31.5,1011.7,-29.570243319868858,-154.59628501012145,-2.995622226602209,-99.84263118147874,-3.067897126700116,-99.10839726730393,-44.388884315189415,-145.7854170349144
-1678895041,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.4,3.5,29.97,22.34,56.7,31.4,1011.7,-29.570085358133152,-154.59716193526194,-2.9955537728579937,-99.84216945912087,-3.0679355827001444,-99.10891391145212,-44.388145718348966,-145.7951396411305
-1678895051,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.0,3.6,29.97,22.34,56.7,31.4,1011.7,-29.570098286057366,-154.5975085149225,-2.995345702946886,-99.84149829736519,-3.0678564387426244,-99.10906497785459,-44.38760706303695,-145.793743176892
-1678895061,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.4,3.8,29.97,22.35,56.7,31.4,1011.9,-29.569681891797618,-154.59630126859713,-2.9953855486306513,-99.8412391197923,-3.067593577713928,-99.10896967065172,-44.38430100058397,-145.80540797898897
-1678895071,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.8,3.6,29.97,22.35,56.7,31.4,1011.7,-29.56970192086418,-154.5980510317061,-2.995257835299266,-99.84200588999225,-3.0677802685694533,-99.10914803392937,-44.388940570538665,-145.79572360843014
-1678895081,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.0,3.9,29.97,22.36,56.6,31.4,1011.8,-29.56998065962666,-154.59378508027143,-2.9954549327212425,-99.8425208817803,-3.0678572133591677,-99.10897600131527,-44.39247663847297,-145.76882187139384
-1678895091,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.0,3.8,29.98,22.36,56.7,31.4,1011.7,-29.570163280159818,-154.59459036274228,-2.9954125954366333,-99.84175795845195,-3.0678274385596964,-99.1089183980374,-44.38809647478862,-145.7663060625017
-1678895101,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.5,3.8,29.97,22.38,56.7,31.4,1011.7,-29.569748807255593,-154.59496857327463,-2.9955787067984025,-99.84110177308497,-3.0678543621733425,-99.10885732492109,-44.386407298482624,-145.78282420125714
-1678895111,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.0,3.8,29.98,22.38,56.7,31.4,1011.7,-29.569725035091192,-154.59553797641513,-2.9955721977021303,-99.84107866769926,-3.0679507925881166,-99.10746002078778,-44.38616525136075,-145.76956568538566
-1678895121,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.9,4.4,30.0,22.38,56.7,31.3,1011.8,-29.569753159280015,-154.59531506836532,-2.995632264428494,-99.84046219331293,-3.0678951363305904,-99.10778821156424,-44.384827455842185,-145.77133989555557
-1678895131,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.0,3.9,30.01,22.39,56.7,31.3,1011.8,-29.569880808215686,-154.59178254084483,-2.995486021609162,-99.84112797073435,-3.0681637104998667,-99.10783613116959,-44.3891798997866,-145.76954921159435
-1678895141,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.6,3.4,30.0,22.4,56.7,31.3,1011.7,-29.569585645186095,-154.5947470740568,-2.995547856563605,-99.84104609399323,-3.068081488192742,-99.10845477327283,-44.38603408103831,-145.78603363294306
-1678895151,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.1,3.1,29.98,22.4,56.7,31.3,1011.8,-29.569583441981827,-154.59524873202113,-2.995424476108788,-99.84068713182877,-3.0680385224120887,-99.10954436765779,-44.386715969529405,-145.79304370951377
-1678895161,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.3,3.0,29.98,22.41,56.8,31.3,1011.8,-29.569600785305393,-154.59290087431648,-2.9954598108625814,-99.84090324399934,-3.067911205666836,-99.10892063203616,-44.38874851644055,-145.78675747609654
-1678895171,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.2,3.5,29.98,22.41,56.8,31.3,1011.8,-29.570078413139044,-154.59408219273618,-2.9955208983697927,-99.84015144623011,-3.0680104197639793,-99.11003351937721,-44.38738095866694,-145.78517111031886
-1678895181,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.2,3.9,30.0,22.42,56.8,31.2,1011.8,-29.569712505400283,-154.5948855975549,-2.9954320943736077,-99.84061406485709,-3.06801620329781,-99.10899236621546,-44.38604054273851,-145.80839041106603
-1678895191,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.5,4.0,30.01,22.42,56.8,31.2,1011.8,-29.569277813176193,-154.59797360973835,-2.9955654898920168,-99.8396801564354,-3.0679703644164102,-99.10866913994609,-44.383604386123665,-145.7852130686651
-1678895201,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.2,3.5,30.0,22.43,56.7,31.2,1011.8,-29.56997828952144,-154.596250814738,-2.995609513424782,-99.840290433287,-3.0678457217105475,-99.1093459686414,-44.3833496151091,-145.79581933726146
-1678895211,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.4,3.8,30.0,22.43,56.7,31.2,1011.7,-29.569713124278387,-154.59662775464702,-2.9954934058379505,-99.84058929585785,-3.067942188634441,-99.1094145360689,-44.38483595728027,-145.80593120234056
-1678895221,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.4,3.6,30.0,22.43,56.7,31.2,1011.8,-29.569718374100674,-154.59559853432347,-2.9954926463929716,-99.84089638677061,-3.067961323611595,-99.10874341783628,-44.38564879231186,-145.81368096077088
-1678895231,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.1,3.5,30.0,22.44,56.8,31.2,1011.7,-29.569550565678565,-154.59720680904852,-2.9954581118793477,-99.84122533984484,-3.0679576953240204,-99.10868181966636,-44.38297150228624,-145.79569793449937
-1678895241,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.4,3.3,30.0,22.44,56.7,31.1,1011.7,-29.56906646967162,-154.5968456937582,-2.995344097459363,-99.84086094927913,-3.067933100926556,-99.1076920114783,-44.38159959225772,-145.80524325922178
-1678895251,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.8,3.4,30.0,22.44,56.8,31.1,1011.7,-29.56953472280537,-154.5929757931467,-2.995460134001595,-99.84078171926403,-3.067960445217966,-99.10856612603985,-44.386561953549865,-145.78215501956586
-1678895261,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.4,3.4,30.0,22.45,56.8,31.2,1011.8,-29.56919669606107,-154.5947624683848,-2.9954023115847055,-99.84078611711432,-3.0680060962334195,-99.10877700055418,-44.38438812546871,-145.79127269327086
-1678895271,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.9,3.2,30.0,22.45,56.8,31.2,1011.8,-29.569433062098675,-154.59608716805553,-2.9954099841295396,-99.84104157377256,-3.0679572359020053,-99.10916575014528,-44.382828672660054,-145.80445908044635
-1678895281,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.4,2.7,29.98,22.46,56.9,31.2,1011.7,-29.569460304300698,-154.59576720346263,-2.9953372316548514,-99.84134087224311,-3.068060849865671,-99.10873107464866,-44.38153769787733,-145.7939314647075
-1678895291,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.2,2.9,30.0,22.47,56.9,31.2,1011.7,-29.569350171857003,-154.59474743878712,-2.995374473360047,-99.84143688722794,-3.0680390135669895,-99.10960143646413,-44.38326262924643,-145.79198231296814
-1678895301,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,3.1,29.98,22.47,56.9,31.1,1011.7,-29.569072117945588,-154.59732117295923,-2.995264775545638,-99.84147311515568,-3.0681711093579462,-99.10922681273941,-44.384094904738056,-145.79421843487032
-1678895311,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.7,3.4,30.0,22.48,56.9,31.1,1011.8,-29.569337217396352,-154.5971507953575,-2.9953851518471337,-99.8411967451108,-3.068126597895087,-99.10929077889367,-44.38274051127415,-145.79924758086162
-1678895321,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.9,3.5,30.01,22.48,56.8,31.1,1011.8,-29.568921043928906,-154.59808590356462,-2.995323077494735,-99.84092974660577,-3.0680334869025225,-99.10828939410463,-44.38275647489995,-145.79618008652457
-1678895331,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.0,3.3,30.01,22.48,56.8,31.1,1011.7,-29.569303480158776,-154.5981324506585,-2.995351293534705,-99.84097552285526,-3.06824100158488,-99.10922954550287,-44.3839347791716,-145.79967034576285
-1678895341,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.8,3.0,29.98,22.48,56.8,31.1,1011.7,-29.569491112617193,-154.5985936799956,-2.995419046699931,-99.84199757879347,-3.068131712085329,-99.10879385984276,-44.385910632523114,-145.7789151969995
-1678895351,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.5,3.3,30.0,22.5,56.8,31.1,1011.7,-29.569173939125445,-154.5957077380131,-2.9954561568971605,-99.84224829347889,-3.0681274093100823,-99.10951275667504,-44.385789686490895,-145.7874608898218
-1678895361,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.0,3.2,30.0,22.5,56.8,31.0,1011.7,-29.56921044564492,-154.5970105482033,-2.9953947061085273,-99.8422391392353,-3.0680486517131667,-99.10907423315352,-44.38627683457977,-145.797851032468
-1678895371,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.5,3.4,30.01,22.5,56.8,31.0,1011.7,-29.568900498944835,-154.5977596098063,-2.9953307430641156,-99.84249252790421,-3.068190330553252,-99.10934007218314,-44.38496009926435,-145.78842402782428
-1678895381,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.4,3.8,29.97,22.5,56.8,31.0,1011.7,-29.569086176060807,-154.5955032563049,-2.9954463171302925,-99.84255683861667,-3.06822614593339,-99.10964349434114,-44.38561534536301,-145.7853211647099
-1678895391,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.4,3.7,30.0,22.5,56.8,31.0,1011.8,-29.568591370984564,-154.59780138366463,-2.995306047082696,-99.84225352026361,-3.068045806781105,-99.10945179030772,-44.38577358851688,-145.7879079582723
-1678895401,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.0,3.3,30.0,22.5,56.8,31.0,1011.8,-29.56908090432615,-154.59844420509637,-2.995238014734877,-99.84281424752925,-3.0681971236582335,-99.10916944556482,-44.38827651506857,-145.79603833760194
-1678895411,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.3,3.5,29.98,22.53,56.8,31.0,1011.8,-29.5686272386021,-154.59872054317398,-2.9953458830959456,-99.84251814438424,-3.068138098826836,-99.10885718074061,-44.384488383454766,-145.79712252562632
-1678895421,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.7,4.0,30.0,22.55,56.8,31.1,1011.8,-29.56879614027099,-154.59838168636358,-2.9954207916280415,-99.84228944292647,-3.068099199272647,-99.1087333930867,-44.38589526014451,-145.78979324102448
-1678895431,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.4,3.4,30.0,22.55,56.8,31.0,1011.8,-29.568647279944074,-154.59905620362605,-2.995344750554941,-99.8416277296354,-3.068055709205757,-99.10890181100147,-44.38363022561291,-145.7997667375855
-1678895441,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.7,3.6,30.0,22.55,56.7,31.0,1011.8,-29.569053742654955,-154.59961822994563,-2.9953780191975516,-99.84161298220364,-3.0680081221163324,-99.10848904117391,-44.38530804912435,-145.79366021732858
-1678895451,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,3.7,30.0,22.55,56.8,31.1,1011.8,-29.568483835128777,-154.60069133957953,-2.9952439666164654,-99.8416039253582,-3.06816929663484,-99.10853595860587,-44.38428233682807,-145.79726617545785
-1678895461,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.5,2.7,29.98,22.55,56.8,31.1,1011.8,-29.56849085633562,-154.5998895631285,-2.9951956020743364,-99.84134820445395,-3.0681653706324536,-99.10998506556709,-44.38595836564804,-145.79786990636424
-1678895471,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.9,2.9,29.97,22.55,56.8,31.0,1011.8,-29.568522405817838,-154.6003625799529,-2.995279299257621,-99.84140488395944,-3.0681949024402972,-99.11108929713474,-44.38339796674576,-145.77930532660218
-1678895481,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.9,2.9,29.98,22.54,56.8,31.1,1011.8,-29.568696129436788,-154.60119322996096,-2.995218254829404,-99.84201223275016,-3.0681431244107116,-99.11110780350165,-44.38502250987255,-145.78931831464718
-1678895491,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.9,3.2,29.98,22.55,56.8,31.1,1011.8,-29.568634891129708,-154.59905439524744,-2.9953069014552014,-99.84137066018891,-3.068086049660989,-99.11039593795309,-44.38293552309738,-145.7887244874607
-1678895501,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.1,3.5,30.0,22.51,56.8,31.0,1011.8,-29.568984051794214,-154.59817351750695,-2.9951559411738318,-99.84143560588124,-3.0682504851908057,-99.11071682196592,-44.38308418935422,-145.7980179238283
-1678895511,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.4,3.1,30.01,22.49,56.8,31.0,1011.8,-29.568895250288932,-154.59840362985452,-2.9953335347706416,-99.8419642358403,-3.068176941924703,-99.11045429299041,-44.38256579921358,-145.78905768722686
-1678895521,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.5,3.5,29.98,22.46,56.8,31.0,1011.8,-29.568831825488093,-154.59976667726966,-2.9953811774437384,-99.84143283150519,-3.0681516273317886,-99.1098059770165,-44.381083417645534,-145.79078355477156
-1678895531,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.5,3.4,30.0,22.46,56.9,31.1,1011.8,-29.56884202645911,-154.60033913856637,-2.9951591564410585,-99.84138509879679,-3.068202889819429,-99.11007960228794,-44.38001638398366,-145.80239282562053
-1678895541,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.0,3.3,30.0,22.4,56.9,31.2,1011.7,-29.56911614609453,-154.59731245524208,-2.995519649550892,-99.84148864463245,-3.0681691216989355,-99.11003724860116,-44.37907326438019,-145.82159955822146
-1678895551,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.9,3.4,30.0,22.38,56.9,31.2,1011.8,-29.569086094295557,-154.59585539712737,-2.9955260662319,-99.8421448937016,-3.067973429997915,-99.10990645615239,-44.38148131780445,-145.80873956884508
-1678895561,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.7,3.4,29.98,22.35,56.8,31.2,1011.7,-29.56867302809901,-154.59698193848132,-2.9954718528543833,-99.84219825430739,-3.0679784623288624,-99.11034002618187,-44.38260539653268,-145.80090823832634
-1678895571,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.0,3.7,30.0,22.31,56.8,31.3,1011.8,-29.56906521782807,-154.59567185499014,-2.995567442936043,-99.84133691972299,-3.0679707193613863,-99.1110660449088,-44.38460423493457,-145.79286189031274
-1678895581,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.2,3.4,30.0,22.3,56.8,31.3,1011.8,-29.569369652843246,-154.59554497531974,-2.9956174251171888,-99.84125363735355,-3.0680621579942677,-99.11129867905235,-44.383619073144615,-145.77567549399743
-1678895591,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.4,2.9,30.01,22.31,56.8,31.3,1011.8,-29.56941216664432,-154.59621569062745,-2.9954370118835403,-99.84189626440688,-3.0682216118628673,-99.11145793386657,-44.385946411331396,-145.78827336317318
-1678895601,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.0,2.8,29.98,22.29,56.8,31.3,1011.8,-29.56956809823277,-154.5952481652211,-2.9954882724853045,-99.84241742482398,-3.0679977271570884,-99.11196853073622,-44.383275294311,-145.80372703683412
-1678895611,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.3,2.9,29.98,22.29,56.9,31.3,1011.8,-29.569685714085896,-154.59692793522038,-2.9955156626044714,-99.84246694485641,-3.06786626446545,-99.1124324118111,-44.383717637329205,-145.7984645758011
-1678895621,30.0,30.0,55.0,55.0,0,1300000000,,,3,6.9,3.6,29.97,22.28,56.9,31.3,1011.8,-29.570045921670904,-154.59376608082988,-2.995672760363421,-99.84326580446846,-3.0679999266812255,-99.11230140690284,-44.38580875563801,-145.7842089094317
-1678895631,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.7,3.0,29.98,22.27,56.9,31.3,1011.8,-29.570532518665452,-154.5911118445718,-2.995754529831638,-99.84374570671075,-3.067918297379337,-99.11220349321894,-44.386589356574,-145.78435181313964
-1678895641,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.7,3.4,29.97,22.19,56.9,31.4,1011.8,-29.569937402663818,-154.59260615520287,-2.9956501092706604,-99.84359096016543,-3.067979478797547,-99.11225463963135,-44.38525126230449,-145.7814920150836
-1678895651,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,3.3,29.97,22.18,56.9,31.4,1011.8,-29.57037448868887,-154.59247425587898,-2.9957866783023626,-99.84423718994455,-3.0679888914183104,-99.11274933809644,-44.38588154076922,-145.78621687751203
-1678895661,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.2,3.4,29.98,22.18,56.9,31.4,1011.8,-29.57026211276834,-154.59152639015386,-2.9955673597089634,-99.8433544632244,-3.067855838790016,-99.11291782519274,-44.38640301290994,-145.78800218748341
-1678895671,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.3,3.7,30.01,22.18,56.9,31.4,1011.8,-29.570252079547288,-154.5916724521916,-2.9958635100385362,-99.84326577435793,-3.0678317374163058,-99.11204994893056,-44.38319425994081,-145.801625104715
-1678895681,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.3,3.1,30.01,22.17,56.8,31.4,1011.8,-29.57050163259111,-154.59032956177194,-2.9958578861822973,-99.84272441807848,-3.0679201283510693,-99.11326358306601,-44.387423532449105,-145.78347486949568
-1678895691,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.0,3.5,30.01,22.17,56.8,31.5,1011.8,-29.569853103086462,-154.5926875049952,-2.99563948601685,-99.8429116066834,-3.0679307893434964,-99.11321662423182,-44.38628181571667,-145.78838356206404
-1678895701,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.3,3.1,30.0,22.11,56.8,31.6,1011.8,-29.57041918402369,-154.59221350558005,-2.9957313521265956,-99.84302882742034,-3.067906372442228,-99.11380360146043,-44.386558127882594,-145.7860261930179
-1678895711,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.9,3.3,29.97,22.05,56.9,31.7,1011.8,-29.5705894573184,-154.59474801254856,-2.9956168230079188,-99.84411971790128,-3.0679115919422832,-99.1147322051758,-44.38667281192349,-145.7565133732517
-1678895721,30.0,30.0,55.0,55.0,0,1300000000,,,3,11.1,2.9,29.97,22.01,56.8,31.7,1011.8,-29.57024244772532,-154.59277490836027,-2.995737135233152,-99.84356875175791,-3.067802220552684,-99.11430238091745,-44.38475121896651,-145.7806734005767
-1678895731,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.0,3.4,29.97,22.0,56.8,31.7,1011.8,-29.569873577685545,-154.59382818877086,-2.9955446268515127,-99.84374806464676,-3.0678642667805245,-99.11327343975998,-44.38733173839872,-145.78747262468409
-1678895741,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.8,4.1,29.97,22.02,56.8,31.7,1011.9,-29.569965960881216,-154.59464220573128,-2.9957113615965825,-99.84366623490486,-3.067846278759032,-99.11366643587397,-44.38525788070507,-145.7791085020655
-1678895751,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.9,3.4,29.97,22.0,56.7,31.7,1011.9,-29.570143543216876,-154.59428962325546,-2.9956384560335696,-99.84360038806301,-3.0679458112655227,-99.1137310148133,-44.38427430317372,-145.78417728992235
-1678895761,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.3,3.0,29.97,21.99,56.7,31.8,1011.8,-29.569657108105048,-154.5959735003517,-2.995540682751383,-99.84330892081782,-3.0679238247198266,-99.11399810885224,-44.383004967371136,-145.7862600519373
-1678895771,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.6,3.1,29.97,21.97,56.7,31.8,1011.8,-29.56969750485811,-154.59424618260257,-2.9955397307416156,-99.84403481433893,-3.068077033040399,-99.11326098093647,-44.38284086663198,-145.78679645838523
-1678895781,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.0,3.8,29.97,21.97,56.8,31.8,1011.8,-29.569606889908528,-154.59470548552844,-2.9953912401480305,-99.84387961237596,-3.0681860833475234,-99.1125849964465,-44.38463340774446,-145.77811512573982
-1678895791,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.6,2.7,29.97,21.99,56.8,31.8,1011.8,-29.56974514904285,-154.59459848945377,-2.9954751392660155,-99.84379189952475,-3.068069446544985,-99.11319453444,-44.38319490334459,-145.77756150026977
-1678895801,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.6,3.4,29.97,21.99,56.8,31.8,1011.8,-29.570145178347683,-154.59496555360775,-2.995530218191267,-99.84430186172222,-3.067971820023029,-99.11380355405038,-44.38398772275798,-145.77698985316107
-1678895811,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.1,3.3,29.97,22.0,56.8,31.8,1011.8,-29.570354078957344,-154.59497165274928,-2.9957538094368346,-99.84359578225347,-3.0679411330466086,-99.11341701948132,-44.38330754784913,-145.79133482243634
-1678895821,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.8,3.8,29.97,22.02,56.7,31.8,1011.8,-29.570380026295208,-154.5916803976973,-2.995671197148888,-99.84314652292518,-3.068076147120336,-99.11370411265587,-44.3882747794433,-145.7755056830551
-1678895831,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.3,3.9,30.0,22.03,56.7,31.8,1011.9,-29.569818043720684,-154.59364910884602,-2.995529707992825,-99.84290251783509,-3.068043687187708,-99.11333764064833,-44.38513675471129,-145.77892049522222
-1678895841,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.3,3.2,30.0,22.05,56.7,31.7,1011.8,-29.56990244800874,-154.59462587476466,-2.995476140393236,-99.84330079763663,-3.067957477179652,-99.1130134807401,-44.383876147588026,-145.7732888245758
-1678895851,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.4,3.5,29.98,22.06,56.7,31.7,1011.8,-29.569859947697136,-154.59360390155805,-2.9956109752049063,-99.84317163097346,-3.0680077844723375,-99.11322340290296,-44.38572919748233,-145.77940842629363
-1678895861,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.1,3.8,29.98,22.09,56.7,31.7,1011.8,-29.570336490914507,-154.5928560213302,-2.9954886591259857,-99.84292142313124,-3.067851536543283,-99.1137645497492,-44.38322746082443,-145.77978733698095
-1678895871,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.7,3.7,29.97,22.1,56.7,31.7,1011.9,-29.57003142640569,-154.59498089584926,-2.9954949377251845,-99.84325193826685,-3.068068005733328,-99.11425014913877,-44.38385103750265,-145.77223498212578
-1678895881,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,3.2,29.97,22.11,56.7,31.7,1011.8,-29.570008122441195,-154.5947731865008,-2.995468572867614,-99.84335351530865,-3.067817935699391,-99.11398382714349,-44.38448677631759,-145.76249522876222
-1678895891,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.1,3.2,29.98,22.11,56.7,31.6,1011.9,-29.56997249720704,-154.59291209816888,-2.9953647063243705,-99.84345792654352,-3.0680155851213464,-99.11403761590874,-44.38613489759427,-145.7685909856434
-1678895901,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.7,3.4,29.98,22.12,56.7,31.6,1011.8,-29.56984208557449,-154.59596271498057,-2.9955939671778604,-99.8434491692972,-3.0680084041629776,-99.11369558679871,-44.38537663446841,-145.7677093784872
-1678895911,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.9,3.3,30.0,22.12,56.7,31.6,1011.8,-29.57048065821455,-154.5923778185519,-2.995556196986204,-99.84338825172192,-3.0679527977249794,-99.11433897056611,-44.38539928057912,-145.76324651776528
-1678895921,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.1,3.1,29.98,22.13,56.7,31.5,1011.8,-29.56993230539824,-154.59323745851023,-2.995736582401429,-99.84332140531285,-3.0679585968499046,-99.11255582916652,-44.384937445688976,-145.7573328647506
-1678895931,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.7,3.9,29.98,22.13,56.7,31.5,1011.9,-29.56940260058599,-154.59360826633625,-2.9957511901111427,-99.84298089826146,-3.067858296557284,-99.1123486704567,-44.38608264369157,-145.78447190783913
-1678895941,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.1,3.2,30.0,22.12,56.7,31.6,1011.9,-29.569469333043983,-154.5938000564811,-2.9956911821948005,-99.84320606854878,-3.0679729321387716,-99.11288034855474,-44.385775061925834,-145.78723510303337
-1678895951,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.5,3.2,29.97,22.12,56.7,31.6,1011.8,-29.569630690113144,-154.593903415189,-2.995483700423656,-99.84328144004415,-3.0679693258876677,-99.11341941917581,-44.38655897483369,-145.76990595780785
-1678895961,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.4,3.9,30.0,22.13,56.7,31.6,1011.8,-29.569820920023982,-154.59143969006715,-2.9954944499202845,-99.84272037682977,-3.067978761203733,-99.11267886198624,-44.38783946792171,-145.7645148728687
-1678895971,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.3,4.0,30.0,22.15,56.7,31.5,1011.8,-29.569496337744607,-154.59346444495827,-2.995492068183628,-99.84274511984408,-3.067974584842181,-99.11105623350905,-44.38709364291752,-145.7833610462684
-1678895981,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.5,3.6,30.0,22.15,56.7,31.5,1011.8,-29.56976941561343,-154.5928697596096,-2.9956198838682395,-99.84245195094594,-3.067893402178519,-99.11149085563669,-44.38440552522205,-145.77991870148804
-1678895991,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.4,3.9,29.97,22.16,56.7,31.5,1011.9,-29.57018366885621,-154.593765841151,-2.9956699498596246,-99.84344076811168,-3.0680595827568786,-99.11180680904634,-44.388076700533006,-145.77279012347597
-1678896001,30.0,30.0,55.0,55.0,0,1300000000,,,3,11.0,3.1,29.97,22.17,56.6,31.5,1011.8,-29.569474213330523,-154.59375125692992,-2.9956538083210678,-99.84331837383004,-3.068198413854647,-99.1120192095634,-44.38640704756417,-145.7772810617984
-1678896011,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.5,3.5,30.0,22.19,56.7,31.4,1011.9,-29.569609492010738,-154.5929236231682,-2.995714824968397,-99.84366464732572,-3.0680218357646547,-99.11189228576548,-44.3866735465508,-145.7704150619856
-1678896021,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.4,4.0,29.98,22.2,56.7,31.4,1011.9,-29.569500003699325,-154.5924794086718,-2.995713794183013,-99.8438562942699,-3.068013639504557,-99.11111651588992,-44.387917396352336,-145.76535470905546
-1678896031,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.5,3.8,29.97,22.2,56.7,31.4,1011.9,-29.569429790231116,-154.5939743771889,-2.9957854510675137,-99.8434253264069,-3.0680080860232954,-99.11130232905512,-44.3866587820733,-145.76625213184076
-1678896041,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.2,3.4,29.97,22.21,56.6,31.4,1011.9,-29.569825363092427,-154.59035624336553,-2.9956863334439503,-99.84407595894288,-3.0681087688359767,-99.11217696322261,-44.38880029737909,-145.75912465137836
-1678896051,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.0,3.5,29.97,22.23,56.7,31.4,1011.9,-29.56943907674589,-154.59102960511072,-2.995512890910595,-99.84363303955175,-3.068368742800126,-99.11261682603376,-44.39056567160071,-145.76280635390907
-1678896061,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.2,3.5,29.97,22.24,56.7,31.4,1011.9,-29.570249941843343,-154.59022608079997,-2.9957979925197504,-99.8437710881776,-3.0681307786574297,-99.11274711780892,-44.388724673802436,-145.7694931335294
-1678896071,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.9,4.0,30.0,22.24,56.7,31.4,1011.9,-29.570213740402966,-154.5885432361171,-2.9955730033486727,-99.84352247310932,-3.0681181616799504,-99.11243401379159,-44.38652486639761,-145.7771853924906
-1678896081,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.7,4.0,29.97,22.25,56.7,31.3,1011.9,-29.569879253091162,-154.59078922542895,-2.995580860099909,-99.8438015040449,-3.0681228635779583,-99.11247153995903,-44.38722406392124,-145.7709318571089
-1678896091,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.0,3.8,29.97,22.26,56.7,31.3,1011.9,-29.570259929699823,-154.5891611308296,-2.9957217609721765,-99.84304798123682,-3.0681169384851614,-99.11292072988637,-44.38982220714661,-145.7547973636314
-1678896101,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.7,3.8,29.97,22.27,56.7,31.3,1011.8,-29.57076008411448,-154.5853227894947,-2.9955354334199265,-99.84458553649489,-3.068147434739989,-99.11358059337732,-44.3915417152554,-145.73950116700877
-1678896111,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.7,3.6,29.98,22.27,56.7,31.3,1011.9,-29.570890354424986,-154.58857798949373,-2.995862754075567,-99.84451305957681,-3.067919452209283,-99.11395195348969,-44.39083305501852,-145.7544013299988
-1678896121,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.1,3.1,29.97,22.28,56.7,31.3,1011.9,-29.570565920454154,-154.58600422068318,-2.99576725238285,-99.84508060921019,-3.068008680777467,-99.11326658503715,-44.39125632390011,-145.7607558954781
-1678896131,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.3,3.6,29.97,22.29,56.8,31.3,1011.8,-29.570650126715037,-154.5867809547967,-2.9959150496435245,-99.84460439059171,-3.0680521157977054,-99.11338583267708,-44.39294078953428,-145.757657864265
-1678896141,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.6,3.1,29.97,22.29,56.8,31.3,1011.8,-29.570625924608997,-154.5873647798763,-2.9954611348808147,-99.84499163830505,-3.0681426480409946,-99.11365097466786,-44.39069607821264,-145.75761010234677
-1678896151,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.6,3.6,29.97,22.3,56.8,31.3,1011.9,-29.570784985949388,-154.58944677796023,-2.9956643457915173,-99.84510179376633,-3.0682243358078516,-99.11339054239491,-44.38952316333133,-145.7646345156838
-1678896161,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.4,3.1,29.97,22.32,56.7,31.2,1011.8,-29.570798992631456,-154.58943098838233,-2.995650006245702,-99.84524614936709,-3.068222498704718,-99.11323472531252,-44.3930468183271,-145.73309415786053
-1678896171,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,2.9,29.97,22.32,56.7,31.2,1011.9,-29.570280293727965,-154.58945476418367,-2.995609773684172,-99.84554330576655,-3.068080660548273,-99.11348190570669,-44.39142959612962,-145.75064947550354
-1678896181,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.0,3.7,30.0,22.33,56.7,31.2,1011.9,-29.570194122120675,-154.58861213198728,-2.9955062380359685,-99.8451307786888,-3.06796970428086,-99.11291657071945,-44.39114927153187,-145.77863205877028
-1678896191,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.4,3.4,30.0,22.33,56.7,31.2,1011.9,-29.57046091739951,-154.59006025135585,-2.9954720912374304,-99.84499645759668,-3.068206929618607,-99.11323871638088,-44.39188537482127,-145.75636343524755
-1678896201,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.1,3.5,30.01,22.34,56.7,31.2,1011.9,-29.569890430087582,-154.5905486886276,-2.995748242832491,-99.84369341963624,-3.0680657698329155,-99.11306145568389,-44.38805904727677,-145.75929751023892
-1678896211,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.9,3.1,30.01,22.34,56.7,31.2,1011.9,-29.56998845853814,-154.5916491716214,-2.99560433708574,-99.84427420515154,-3.0679687095391572,-99.11294521993776,-44.38799238903748,-145.75357999206938
-1678896221,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.7,3.1,30.0,22.35,56.8,31.1,1011.9,-29.57041774137744,-154.59078810302142,-2.9956422386230876,-99.84509624892078,-3.0680568200605207,-99.11326045626625,-44.391375980571354,-145.74459647889748
-1678896231,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.1,2.5,29.98,22.35,56.8,31.1,1011.9,-29.569610368626055,-154.59245730108222,-2.995474299253658,-99.84435325963607,-3.0681069361269504,-99.11349668709833,-44.39185643529039,-145.74377614655833
-1678896241,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.8,3.3,30.01,22.35,56.8,31.1,1011.9,-29.5694843962653,-154.59244844110748,-2.9954211356603437,-99.84425333384434,-3.06816853307772,-99.1124955844457,-44.38999552107398,-145.76679442204485
-1678896251,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.2,3.3,30.01,22.36,56.8,31.1,1011.9,-29.569789211723354,-154.591398268957,-2.995583089686937,-99.84434716944348,-3.068174442693918,-99.1134150141469,-44.39127120669134,-145.75036351451487
-1678896261,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.8,3.5,30.0,22.38,56.8,31.1,1011.9,-29.569445662955186,-154.5915423376301,-2.995628831015702,-99.84338468611978,-3.068122979631052,-99.11300716522408,-44.39070264571107,-145.7698353845116
-1678896271,30.0,30.0,55.0,55.0,0,1300000000,,,3,6.9,2.9,30.0,22.38,56.8,31.1,1011.9,-29.569706383377866,-154.59327070814942,-2.995559100830831,-99.8436263511011,-3.0680796827321495,-99.11301423566115,-44.38862549559785,-145.77123369207698
-1678896281,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.4,2.8,29.97,22.39,56.8,31.1,1011.8,-29.568968862876197,-154.5971140351293,-2.995465322905298,-99.84334621617168,-3.0682030455378264,-99.11373661794669,-44.386734578127175,-145.7877319176921
-1678896291,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.5,3.5,29.98,22.39,56.8,31.1,1011.8,-29.56971919808568,-154.59344609503643,-2.995671878330387,-99.84439774589924,-3.0682436036791447,-99.11312118384046,-44.38876017205211,-145.7826206033636
-1678896301,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.6,3.3,29.97,22.4,56.8,31.0,1011.9,-29.569347327383234,-154.59292397666042,-2.9957645810814175,-99.84369134249451,-3.0679269037008163,-99.11358622042584,-44.385636520739794,-145.7951927404536
-1678896311,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.7,3.1,30.0,22.4,56.8,31.0,1011.9,-29.569358039989105,-154.59308543783584,-2.9955851281612116,-99.84368664285674,-3.067859898669707,-99.1133936493791,-44.38609578279721,-145.78032349737495
-1678896321,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.1,3.2,29.98,22.41,56.8,31.0,1011.9,-29.56845478866755,-154.5971316990748,-2.9955854074257897,-99.84285490832285,-3.067977702206276,-99.11357488588577,-44.383584288969196,-145.80347538775587
-1678896331,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.9,3.6,30.0,22.41,56.8,31.0,1011.8,-29.569044882063725,-154.59524683994536,-2.9956470570521754,-99.8432549048497,-3.068100773053227,-99.11390476849267,-44.38360084557222,-145.80887420889454
-1678896341,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.7,3.5,30.01,22.42,56.8,31.1,1011.9,-29.569153318416447,-154.59730644507516,-2.995528394983822,-99.84443391391785,-3.067976482569386,-99.11348843050759,-44.38467027896894,-145.78655299260464
-1678896351,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.3,3.8,29.97,22.43,56.8,31.0,1011.9,-29.569335740568707,-154.59504839417943,-2.99559609454142,-99.84416446181989,-3.0680458227965337,-99.11377847088995,-44.38614982425381,-145.78872139594375
-1678896361,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.1,3.8,29.98,22.43,56.8,31.0,1011.9,-29.569886245522103,-154.59138928240407,-2.9958151007849407,-99.84421469496114,-3.068073479422802,-99.11397320543759,-44.383095697816515,-145.79749529501646
-1678896371,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.6,3.5,30.0,22.43,56.7,31.0,1011.9,-29.56919666098276,-154.5920842816465,-2.9956593691493083,-99.8435466751733,-3.0680927821729176,-99.11380586931463,-44.38593256570354,-145.79508409822165
-1678896381,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.2,3.2,30.0,22.44,56.7,31.0,1012.0,-29.56899058087263,-154.5935481595236,-2.995647119772147,-99.84499910395358,-3.0680673598669745,-99.11362847397717,-44.38486321287055,-145.7992703730852
-1678896391,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.2,3.3,29.98,22.44,56.7,31.0,1011.9,-29.568979620585335,-154.59316270643055,-2.9954185805605125,-99.84475659050067,-3.0681804628187215,-99.11407879277805,-44.38618345047908,-145.80906220438942
-1678896401,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.6,3.0,30.0,22.45,56.7,31.0,1011.9,-29.56914207330747,-154.59334545124474,-2.995446006601248,-99.8449826812108,-3.068098329378653,-99.11418410212173,-44.38680266019232,-145.7756416657569
-1678896411,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.3,3.3,30.0,22.45,56.7,31.0,1011.9,-29.569109673642338,-154.5935723092149,-2.9954855985774915,-99.8449555183648,-3.068066314932547,-99.11452686977559,-44.385929334784315,-145.78002837417552
-1678896421,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.7,3.2,30.0,22.45,56.7,30.9,1011.8,-29.5695019763877,-154.59160592117126,-2.995627392496683,-99.84512330454804,-3.068360084020065,-99.11458524629191,-44.38658185462095,-145.7754625438755
-1678896431,30.0,30.0,55.0,55.0,0,1300000000,,,3,6.7,3.3,30.0,22.45,56.7,30.9,1011.9,-29.569015174654094,-154.59384663887104,-2.995580267799811,-99.84465673349261,-3.068275952716737,-99.11368688662921,-44.3841600046402,-145.79224619617588
-1678896441,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.5,3.3,29.98,22.46,56.7,30.9,1011.9,-29.569067011179957,-154.59518996581323,-2.995810390808346,-99.84385339020034,-3.0682594443150317,-99.11362077485639,-44.38578634746543,-145.79408212312163
-1678896451,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.5,3.3,29.98,22.46,56.7,31.0,1011.9,-29.56890048900015,-154.5957637646925,-2.995463769492754,-99.84451535632256,-3.0681441047161995,-99.11369469829582,-44.386201011235116,-145.78233172852163
-1678896461,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.5,2.7,29.98,22.47,56.8,30.9,1011.9,-29.56880150077787,-154.59727965766191,-2.9956333242108535,-99.84471435267086,-3.068297582765852,-99.11419929603053,-44.383396654711156,-145.79183747299052
-1678896471,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.7,3.2,29.98,22.47,56.8,30.9,1011.9,-29.568029491067072,-154.5987931332804,-2.995448809694662,-99.84402026654261,-3.0680794477264373,-99.11417286304811,-44.38631844984214,-145.798231679207
-1678896481,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.1,3.8,29.98,22.48,56.8,30.9,1011.9,-29.568075055500202,-154.59845307728546,-2.995365783040356,-99.84455373979814,-3.0684094912598208,-99.11359720384499,-44.38566210149068,-145.78467619314338
-1678896491,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.9,3.1,29.98,22.48,56.8,30.9,1011.9,-29.568625012354417,-154.5968082826226,-2.99557076894446,-99.84435900778541,-3.068172763670593,-99.11402851707065,-44.38592999339196,-145.788301897165
-1678896501,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.4,3.4,29.98,22.51,56.8,30.9,1011.9,-29.568382666958644,-154.59758118146564,-2.9954150516012628,-99.84429262704445,-3.0683047358310773,-99.11466086073898,-44.389605787552426,-145.75958597236988
-1678896511,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.5,3.8,29.98,22.55,56.7,30.9,1011.9,-29.568369440551354,-154.59644820049687,-2.9954693493605475,-99.84424281456907,-3.0682477859133113,-99.11520785801042,-44.389050927317754,-145.76941994577066
-1678896521,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.2,3.2,30.0,22.55,56.7,30.7,1011.9,-29.568472219460936,-154.59568126108394,-2.995475602222979,-99.84415683048879,-3.0682625994916135,-99.11436879477334,-44.38824610148713,-145.77604081568177
-1678896531,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,3.2,29.98,22.55,56.8,30.7,1011.9,-29.56844458008326,-154.5950507248249,-2.995526920249469,-99.8438779269429,-3.068305880847364,-99.11463811489324,-44.38407111798923,-145.78490938737005
-1678896541,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.5,2.9,30.0,22.55,56.8,30.7,1011.9,-29.568821562607553,-154.59746683263182,-2.9953812040041674,-99.84427258277356,-3.0682792744716436,-99.11509086209735,-44.386026472672995,-145.7693293685739
-1678896551,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.1,3.2,29.97,22.55,56.8,30.7,1012.0,-29.568932091225435,-154.59556447193842,-2.995717153001995,-99.84443206965057,-3.0682561512139213,-99.11505880504883,-44.386295268586665,-145.7861352758013
-1678896561,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.5,2.9,29.98,22.55,56.8,30.8,1012.0,-29.56867187256174,-154.59773653657362,-2.995386596784106,-99.84421517323689,-3.068229661962535,-99.11485664188167,-44.386075209119376,-145.7688036830638
-1678896571,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,3.7,30.0,22.55,56.8,30.7,1012.0,-29.568916110934673,-154.59737220274494,-2.995587247590773,-99.84421277097427,-3.068232380587879,-99.11578048659878,-44.38679240851668,-145.78734142109323
-1678896581,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.1,3.2,30.01,22.55,56.8,30.7,1011.9,-29.56866858756475,-154.59965769062697,-2.995350001072752,-99.84478608548163,-3.068357433473569,-99.1149406178304,-44.384979668359925,-145.7790859635642
-1678896591,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.0,2.9,30.01,22.55,56.7,30.7,1012.0,-29.56871622699118,-154.59781426184202,-2.995558223916357,-99.84446147836377,-3.068314423912402,-99.11344196876065,-44.38446028124764,-145.77493805389582
-1678896601,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.9,3.7,29.98,22.55,56.7,30.8,1012.0,-29.568734302581685,-154.5979825714142,-2.9955795148252884,-99.84357837655301,-3.0682755905481356,-99.11389508977862,-44.3818142252226,-145.7905020310794
-1678896611,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.1,3.1,30.01,22.55,56.7,30.8,1012.0,-29.56757652389313,-154.60206948912708,-2.9953181956218318,-99.84365436743269,-3.0682272775385497,-99.11256000288758,-44.38244586908419,-145.79226618430346
-1678896621,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.3,3.3,29.98,22.55,56.7,30.8,1012.0,-29.567719457854512,-154.59950993630463,-2.9951604281085453,-99.84461074909105,-3.06825629072506,-99.11281021039922,-44.385178601397214,-145.76611329156609
-1678896631,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.1,3.6,29.97,22.55,56.7,30.8,1011.9,-29.568280363100857,-154.59647023038156,-2.9952423246244555,-99.84481309160445,-3.06817784189139,-99.11302276376014,-44.38594998709985,-145.7656024540261
-1678896641,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.9,3.7,30.0,22.55,56.7,30.7,1012.1,-29.568123623549806,-154.59809955340756,-2.995257553214449,-99.84405336628335,-3.0683691299153444,-99.11347139577028,-44.38251334652861,-145.7776295879227
-1678896651,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.7,3.4,29.98,22.55,56.7,30.7,1012.0,-29.5684614649386,-154.59730418185242,-2.995344948546709,-99.84450890298687,-3.0683369594764844,-99.11437740366043,-44.38807361279922,-145.76361719282937
-1678896661,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.2,2.9,29.98,22.55,56.7,30.7,1012.0,-29.56806793630607,-154.5987656179829,-2.995298108379292,-99.84396470457487,-3.068137403517086,-99.1137091195138,-44.38565259157308,-145.77895609257055
-1678896671,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.5,3.5,29.98,22.55,56.7,30.8,1012.0,-29.56818337420887,-154.59868801329418,-2.9954487633382887,-99.84379789706246,-3.068188435925669,-99.1144044421445,-44.38666288436838,-145.76436479637104
-1678896681,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.6,3.6,30.0,22.55,56.7,30.8,1011.9,-29.56799515515791,-154.5975110170137,-2.995204578587277,-99.84429188115841,-3.068276238544516,-99.11361603580626,-44.38684885531474,-145.7653733531181
-1678896691,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.5,3.4,30.0,22.55,56.7,30.8,1012.0,-29.567756817283662,-154.59967999698372,-2.9953620547477784,-99.84366394227787,-3.068275025689196,-99.11349188041105,-44.38390111093906,-145.76511571498057
-1678896701,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.3,3.2,30.01,22.55,56.7,30.8,1012.0,-29.56862859505073,-154.59568555396916,-2.995484856628779,-99.844285390399,-3.0683331149732225,-99.11423937871577,-44.386168155925596,-145.76331164089137
-1678896711,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.6,3.0,30.01,22.55,56.7,30.8,1012.0,-29.568083795155566,-154.59945886007196,-2.9955607486918314,-99.84420777967458,-3.0682530657776343,-99.11339208569264,-44.384080845785824,-145.77755614974177
-1678896721,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.9,3.2,30.0,22.55,56.7,30.9,1012.1,-29.567735835457604,-154.60120128482146,-2.9954425590911544,-99.84391624801607,-3.068297850144448,-99.1135950561025,-44.38545740416327,-145.76331585685304
-1678896731,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.7,3.7,30.0,22.55,56.7,30.9,1012.1,-29.567703391317185,-154.60136706378202,-2.9953212927850603,-99.84333861134853,-3.0684249777160497,-99.11393749457332,-44.3846141172981,-145.78310956506655
-1678896741,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.4,3.6,30.01,22.49,56.7,30.9,1012.0,-29.567088130090372,-154.6013332218897,-2.9953337475366233,-99.8432319635325,-3.0684695031083224,-99.11305508720748,-44.38180249957614,-145.7883061043024
-1678896751,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.6,3.2,30.01,22.46,56.7,30.9,1011.9,-29.567362205913994,-154.60014094226997,-2.99561854117778,-99.84336307440907,-3.068460060721285,-99.11374823542246,-44.385506666687455,-145.78172191888478
-1678896761,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.7,2.9,30.0,22.44,56.7,30.9,1012.0,-29.567168355639613,-154.60136300837604,-2.9953499282296154,-99.8437030162459,-3.068419367274922,-99.11334342100655,-44.38191206914132,-145.77915234244597
-1678896771,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.7,2.7,30.01,22.43,56.7,31.0,1012.0,-29.566883470519542,-154.60311230837286,-2.9955740562558275,-99.84438033776904,-3.0684294017661036,-99.11285576684682,-44.38389846777741,-145.78209426466964
-1678896781,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.9,3.1,30.0,22.43,56.7,31.0,1012.0,-29.56651141355536,-154.6024049729336,-2.995473169622186,-99.84457317258833,-3.0685429152903603,-99.11288505072585,-44.38395664483059,-145.76269432258644
-1678896791,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.9,2.9,30.0,22.42,56.7,31.0,1012.0,-29.566792080246156,-154.60337858500884,-2.9954753975214166,-99.84480992923186,-3.068518514207452,-99.11329539192236,-44.38412597185749,-145.77525013441468
-1678896801,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.6,3.0,30.0,22.41,56.7,31.0,1012.0,-29.56646609261506,-154.60310471157786,-2.995389771001551,-99.84511314997877,-3.0684393447973046,-99.11298171675837,-44.38667168472832,-145.76462551341757
-1678896811,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.0,3.0,29.98,22.4,56.8,31.0,1012.1,-29.56626951584053,-154.6020727597852,-2.995328603620025,-99.84392942564496,-3.0684717894940206,-99.11316965516579,-44.38615241775426,-145.7715829961844
-1678896821,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.1,3.0,30.01,22.38,56.8,30.9,1011.9,-29.566051600981776,-154.6053230620031,-2.995491251313229,-99.84386541240808,-3.068453243221829,-99.11236128868975,-44.38319730129011,-145.79549375197396
-1678896831,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.3,2.9,30.04,22.35,56.8,31.0,1012.1,-29.566202118931017,-154.6048736923155,-2.995542362963598,-99.8435747510297,-3.0684938738657204,-99.11309277812296,-44.3846036396822,-145.80498720160435
-1678896841,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.0,3.1,30.01,22.31,56.7,31.1,1012.1,-29.56582980853208,-154.6046549988958,-2.995445111335325,-99.84376532882274,-3.0684796825789733,-99.11314331343473,-44.383016373318405,-145.80072083946578
-1678896851,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.4,3.4,30.01,22.3,56.7,31.1,1012.0,-29.56617334605412,-154.60514727481998,-2.9954771128993234,-99.843391573897,-3.068373040576477,-99.11360813347974,-44.3833173306344,-145.7892090200949
-1678896861,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.0,3.8,30.0,22.29,56.7,31.1,1012.0,-29.56578261351291,-154.60535060660482,-2.995214127721968,-99.84359984692463,-3.068697858029304,-99.11305901584785,-44.381006042208774,-145.78807220380367
-1678896871,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.6,3.0,30.01,22.25,56.7,31.1,1012.0,-29.565718532951824,-154.6054636026091,-2.9955266204648985,-99.84421471182523,-3.0683845817323,-99.11313859506343,-44.38057532062822,-145.80333997071992
-1678896881,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.5,3.1,29.97,22.23,56.7,31.2,1012.0,-29.56581612032042,-154.6049744648337,-2.9954249843553833,-99.84463619066067,-3.0683342815934016,-99.11328796403475,-44.3784866449697,-145.79628128405986
-1678896891,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.9,3.5,30.0,22.21,56.7,31.2,1012.1,-29.565421464688445,-154.60352953011878,-2.9951803253435343,-99.84508184921856,-3.0685296858419813,-99.11261822914861,-44.38298090996527,-145.79893012844997
-1678896901,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.3,3.5,29.98,22.2,56.7,31.3,1012.0,-29.565623753915826,-154.6070084055915,-2.9952116935554285,-99.845177543876,-3.068503979193449,-99.11238383884027,-44.37806518998542,-145.81144259316812
-1678896911,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.0,3.3,29.98,22.2,56.7,31.3,1012.1,-29.565600635725318,-154.6051610424636,-2.9951737695976925,-99.84470560404716,-3.0685202741790936,-99.11311333195349,-44.37838865516295,-145.81643762277338
-1678896921,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.1,3.1,29.97,22.18,56.7,31.3,1012.1,-29.565043243702156,-154.60663767615335,-2.9951579065509994,-99.84460851901196,-3.0685637454249646,-99.11292078662332,-44.380317081366556,-145.81411852305888
-1678896931,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.9,3.3,29.98,22.16,56.7,31.4,1012.0,-29.564563085045023,-154.6113739294873,-2.9952930802005144,-99.84377808573463,-3.0684310166772972,-99.11334370491976,-44.3786547776492,-145.79831977279366
-1678896941,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.4,3.6,30.0,22.16,56.7,31.4,1012.0,-29.564924655955135,-154.60936577705942,-2.9953160701808628,-99.84376068848067,-3.068616748329825,-99.1137049450816,-44.37771377923973,-145.81339518121402
-1678896951,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.6,3.0,29.98,22.16,56.7,31.4,1012.0,-29.56442320742024,-154.61071898569293,-2.9953370077795896,-99.84404045227431,-3.068559022161283,-99.11308775377522,-44.375011345144,-145.8220384343827
-1678896961,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.7,3.8,29.97,22.15,56.7,31.4,1012.1,-29.56433989979439,-154.60934474937756,-2.995357049288581,-99.84377604132514,-3.068566853315965,-99.11341438922906,-44.377326686202416,-145.82121007658756
-1678896971,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.2,3.7,29.98,22.13,56.7,31.4,1012.0,-29.565170016104382,-154.60722537695662,-2.9953748492359136,-99.84362849253652,-3.068603104269842,-99.11483418139764,-44.37927917306815,-145.81455861079036
-1678896981,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,3.6,30.0,22.11,56.7,31.5,1012.0,-29.564893038357095,-154.60762398554635,-2.9952301531573973,-99.84455650543809,-3.068580293129606,-99.11362533745216,-44.379363211061204,-145.80830123949613
-1678896991,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.6,3.4,30.01,22.12,56.6,31.5,1012.0,-29.56422805492189,-154.61121651402127,-2.995289071288154,-99.84442444057633,-3.068542973305537,-99.11301132055557,-44.37443894252618,-145.81626759365383
-1678897001,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.1,3.6,30.0,22.11,56.6,31.5,1012.0,-29.564536758099635,-154.6092508172385,-2.995268934458255,-99.84476699271232,-3.068578436998046,-99.11285445867715,-44.37451912170089,-145.8012467224962
-1678897011,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.3,3.9,30.01,22.12,56.6,31.5,1012.0,-29.564727262136223,-154.60875023920883,-2.995263394763752,-99.84476836849977,-3.0686567998954755,-99.11252428297588,-44.3781259494522,-145.7947839536091
-1678897021,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.7,3.5,29.98,22.14,56.6,31.5,1012.0,-29.56381793557039,-154.61139195567284,-2.9952370625579885,-99.84460022656533,-3.0684903312424843,-99.11360036521712,-44.375579235898755,-145.80606267655074
-1678897031,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.9,3.3,29.98,22.15,56.6,31.4,1012.0,-29.56433934635284,-154.61024643980463,-2.995368351340551,-99.84481756887632,-3.0684841015554642,-99.11344188238577,-44.37711043896356,-145.80371305233683
-1678897041,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.0,3.9,29.98,22.15,56.6,31.4,1012.1,-29.564374188593874,-154.61128346253275,-2.99529805725919,-99.84452111404464,-3.068471283397031,-99.11384151938981,-44.37497883890665,-145.82638014101727
-1678897051,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.3,4.0,29.97,22.15,56.6,31.4,1012.0,-29.564134047725954,-154.60899990955156,-2.995379577188188,-99.8444324154063,-3.0685915036807887,-99.11387380819485,-44.37543450656274,-145.81388661546018
-1678897061,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.4,3.8,30.0,22.16,56.6,31.4,1012.0,-29.56394405187543,-154.6120025112439,-2.995263474428599,-99.84469249264409,-3.068473410403878,-99.1146560164365,-44.37950564589164,-145.81901045394903
-1678897071,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.7,3.5,29.97,22.16,56.6,31.4,1012.0,-29.56445143684315,-154.60956761195249,-2.995400551574203,-99.84436112753649,-3.068381055795793,-99.11397963004593,-44.378293343414995,-145.8253025352428
-1678897081,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.0,3.5,30.0,22.17,56.6,31.4,1012.0,-29.5645898349083,-154.6099565260604,-2.9953278139882618,-99.8453804029883,-3.0684686099456,-99.11387939355446,-44.37693768593206,-145.82913014985243
-1678897091,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.9,4.1,30.0,22.16,56.6,31.4,1012.1,-29.564342548995413,-154.61349803516728,-2.995349139214337,-99.84431828937574,-3.068548936592894,-99.11222531041,-44.37549348399638,-145.8601068842068
-1678897101,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.2,3.4,30.01,22.16,56.6,31.4,1012.1,-29.564320226604075,-154.6090134433509,-2.9954811776518246,-99.84543567204915,-3.068654653843234,-99.11254231068727,-44.37728417008245,-145.820110374451
-1678897111,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.7,3.3,29.98,22.16,56.6,31.4,1012.1,-29.56450557769874,-154.6103781234806,-2.995420550001939,-99.84629807964515,-3.068527440916333,-99.11275182778576,-44.37920092138107,-145.82790814376497
-1678897121,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.4,3.8,29.97,22.18,56.6,31.4,1012.0,-29.564229348788594,-154.61024431185893,-2.995504113469413,-99.84557187561717,-3.0686513418203427,-99.11407521520327,-44.37687680237488,-145.82979259681025
-1678897131,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.6,4.0,29.98,22.16,56.6,31.4,1012.0,-29.564192360607503,-154.61046850858244,-2.9953802531745066,-99.84556365641292,-3.06863037589084,-99.11331732136041,-44.37541198696654,-145.8150843320981
-1678897141,30.0,30.0,55.0,55.0,0,1300000000,,,3,6.7,3.9,29.97,22.19,56.6,31.4,1012.1,-29.56388570862883,-154.61081132538268,-2.9952018762309205,-99.84607245406409,-3.0687969681051372,-99.11312544575033,-44.377484676222416,-145.80866160213193
-1678897151,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.0,3.6,29.98,22.19,56.6,31.4,1012.0,-29.564212810127106,-154.61089755835138,-2.9955778736415,-99.84624745932983,-3.0686567659224577,-99.11309617311504,-44.37801053990222,-145.8214760133057
-1678897161,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.6,3.4,29.98,22.21,56.6,31.3,1012.0,-29.564686695204777,-154.60762511431713,-2.9954948522758436,-99.84584636280763,-3.0685460555440613,-99.11322486070644,-44.37578978341814,-145.81508073870748
-1678897171,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,3.9,29.98,22.21,56.6,31.3,1012.1,-29.56434371472109,-154.6112409800132,-2.9955492608184615,-99.84607930453217,-3.068215063151272,-99.11321146677432,-44.37424541586438,-145.82757900773174
-1678897181,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.7,4.1,30.0,22.23,56.6,31.3,1012.1,-29.564615716184047,-154.60921402625573,-2.9956239173386012,-99.84564732720436,-3.0684009543756874,-99.11393873247373,-44.376125358714056,-145.81721940151849
-1678897191,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.6,3.9,30.0,22.24,56.6,31.3,1012.1,-29.564149801143515,-154.610971245654,-2.9953221984931626,-99.84529343166417,-3.0684344835167927,-99.11378386188785,-44.37536649677327,-145.82024567957944
-1678897201,30.0,30.0,55.0,55.0,0,1300000000,,,3,6.6,4.3,30.0,22.25,56.5,31.3,1012.1,-29.56370999066295,-154.61040520282924,-2.995399284949424,-99.84522860564361,-3.0682815366891565,-99.11388771386662,-44.37424457146162,-145.8255537810615
-1678897211,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.6,3.8,30.0,22.25,56.5,31.3,1012.0,-29.56384256549501,-154.6108920236054,-2.9954822515324313,-99.84524347860955,-3.068668431524907,-99.11357683535022,-44.375824830575745,-145.82102996904484
-1678897221,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.4,4.2,29.98,22.26,56.6,31.3,1012.0,-29.56397979283007,-154.61251806188736,-2.9954048685232944,-99.84588930359429,-3.068685968330238,-99.11409524737181,-44.37493549485143,-145.82754611209745
-1678897231,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.1,3.8,30.0,22.27,56.6,31.3,1012.1,-29.564251141509818,-154.6102428914922,-2.9954560775388477,-99.84463919925537,-3.0687349592616924,-99.11429865965108,-44.375319990193,-145.8377000446713
-1678897241,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.6,4.6,30.0,22.28,56.5,31.2,1012.0,-29.56386572106752,-154.61196481124796,-2.9953917987240155,-99.84484369540179,-3.068688459580998,-99.11370097053226,-44.37419390624144,-145.8389327316358
-1678897251,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.8,3.9,29.98,22.28,56.5,31.2,1012.0,-29.5641581848122,-154.60963443467145,-2.9953975763085023,-99.84482754998868,-3.0685657209989268,-99.11416446235458,-44.37323912832327,-145.8388385665591
-1678897261,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.9,4.0,29.98,22.29,56.5,31.2,1012.0,-29.564356559425185,-154.6096321073446,-2.9952661999697296,-99.84546673281137,-3.068517622649421,-99.11503272376568,-44.374566905258035,-145.8294121745674
-1678897271,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.8,4.1,29.97,22.3,56.6,31.2,1012.0,-29.5638447749753,-154.61089587159265,-2.9953467582621296,-99.84611010962857,-3.0685962853631903,-99.11469025216026,-44.37453624163006,-145.82793102145553
-1678897281,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.1,3.9,29.97,22.31,56.6,31.2,1012.0,-29.56402527134508,-154.61071587548062,-2.9955877578547767,-99.84583674157318,-3.0685638793274905,-99.11456057991614,-44.37367741087542,-145.83745486274768
-1678897291,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.8,3.5,29.97,22.32,56.7,31.2,1012.0,-29.56467636139152,-154.60811006908887,-2.995630502849948,-99.84553245506233,-3.0685401609540985,-99.11524244601837,-44.371967386079646,-145.84109528054577
-1678897301,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.0,3.6,29.97,22.32,56.7,31.2,1012.0,-29.564493255029618,-154.607944866676,-2.995614073275145,-99.84643751778374,-3.0685376325296865,-99.11488078878212,-44.374250118427334,-145.84054734513455
-1678897311,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.9,3.4,29.97,22.33,56.7,31.2,1012.0,-29.564149554388095,-154.61015054590655,-2.9956522261671625,-99.84660975655028,-3.0685515938821064,-99.1150796493531,-44.372534457013025,-145.85380105786805
-1678897321,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.8,3.7,29.97,22.34,56.7,31.2,1012.1,-29.56479686233397,-154.6090946961137,-2.9957438254011466,-99.8464869017722,-3.0683858345472794,-99.11403588734207,-44.37065462210229,-145.85240639355888
-1678897331,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.0,3.7,29.97,22.35,56.7,31.1,1012.1,-29.564374229575737,-154.60798117427038,-2.995693378342474,-99.84709787366867,-3.068597097689924,-99.11406083075626,-44.371967246821534,-145.85655638602665
-1678897341,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.3,3.6,29.98,22.35,56.7,31.1,1012.1,-29.564706074184244,-154.6089521014261,-2.9955958780154224,-99.8466536293801,-3.0684726073373687,-99.11486945862536,-44.37197375444023,-145.84153804548941
-1678897351,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.6,3.8,29.97,22.36,56.7,31.1,1012.1,-29.563868416388914,-154.60987969052877,-2.995718129641583,-99.84675575686747,-3.0684548036809245,-99.11479908499514,-44.37067442849315,-145.85562140687213
-1678897361,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.3,3.0,29.97,22.38,56.7,31.1,1012.1,-29.564450658572625,-154.60944898268943,-2.9957859553080732,-99.84716780849303,-3.0684305692918117,-99.11499328855567,-44.37133271806094,-145.8537874509092
-1678897371,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.2,3.5,29.98,22.39,56.7,31.1,1012.0,-29.563764592492994,-154.61158121111384,-2.9956203926947045,-99.84688229524376,-3.0683360072407417,-99.11490544302873,-44.36702867328823,-145.86878008633315
-1678897381,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.3,3.0,29.98,22.4,56.8,31.1,1012.1,-29.564498677485133,-154.6102674649062,-2.9958114039569295,-99.84719678863279,-3.0683672867677703,-99.11495071519792,-44.36997165953299,-145.84989382647686
-1678897391,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.9,3.4,29.98,22.4,56.8,31.1,1012.0,-29.563675425083122,-154.6098070763234,-2.995757651986915,-99.84742662054806,-3.0682987410549174,-99.1146315400816,-44.371094585572244,-145.83658653949826
-1678897401,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.9,3.3,29.98,22.41,56.8,31.0,1012.0,-29.563926540486214,-154.60923103676734,-2.995545896851764,-99.84783184382833,-3.0685383048305557,-99.11503019690214,-44.3743867171019,-145.82043867079244
-1678897411,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.1,3.1,29.98,22.41,56.8,31.0,1012.1,-29.563530036398596,-154.61108772982138,-2.9955335637277103,-99.84628418917268,-3.0683850437961615,-99.1147469057224,-44.36842621754601,-145.8462576277407
-1678897421,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.9,3.2,30.0,22.41,56.8,31.0,1012.1,-29.563037345295363,-154.6140611600289,-2.9955658049338076,-99.84637638061886,-3.068667635560396,-99.11429281778284,-44.36708135867118,-145.84958742812245
-1678897431,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.7,3.4,30.0,22.42,56.8,31.0,1012.1,-29.563334264146803,-154.61241842943045,-2.995690005060687,-99.84681205369662,-3.068463608456234,-99.11434845506511,-44.36845366547405,-145.8482993769593
-1678897441,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.4,3.1,30.0,22.42,56.8,31.0,1012.1,-29.563663491910784,-154.6108926229269,-2.9955818984027296,-99.84702195604427,-3.068620643329227,-99.11334953083556,-44.369778319461346,-145.83556779396017
-1678897451,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.9,3.2,30.0,22.42,56.8,31.0,1012.1,-29.563151664814555,-154.61435897201633,-2.99546866606489,-99.84717429221179,-3.0685293920343746,-99.11370588375135,-44.36788355171895,-145.85868920712704
-1678897461,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.0,3.4,29.98,22.42,56.8,31.0,1012.1,-29.56291856129203,-154.61501642227967,-2.9955572070155894,-99.8477212392533,-3.0686760565245734,-99.11397954227492,-44.36859869928037,-145.8824212477963
-1678897471,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.0,3.3,29.97,22.43,56.8,31.0,1012.1,-29.562336097636027,-154.61589788962834,-2.9954198951597624,-99.84768967519284,-3.0686356737859932,-99.1131851041266,-44.36895733880421,-145.85586948925842
-1678897481,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.7,3.9,30.01,22.44,56.8,31.0,1012.0,-29.56288653865556,-154.61407209801473,-2.9955637895945832,-99.84736925124658,-3.0684685794193802,-99.11351834522357,-44.36642605556297,-145.86271561419855
-1678897491,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.6,3.8,29.98,22.44,56.8,31.0,1012.0,-29.562911898105213,-154.61297504042773,-2.9955523596468314,-99.8470990502953,-3.0685446238225107,-99.11309718717843,-44.36411229172524,-145.86804446662492
-1678897501,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.7,3.7,29.98,22.45,56.8,31.0,1012.1,-29.562690267759955,-154.61430666270056,-2.995564979979189,-99.84706960568792,-3.068549532848497,-99.11353587869847,-44.36535212526668,-145.8707126818856
-1678897511,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.6,3.3,30.0,22.46,56.8,31.0,1012.1,-29.563163589278126,-154.612401233402,-2.9956341073015853,-99.84693807637986,-3.068540436781167,-99.11348039325281,-44.36695345644141,-145.86207172161892
-1678897521,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.5,3.2,29.98,22.45,56.8,31.0,1012.1,-29.562663944558988,-154.61433694540588,-2.99577559812327,-99.8468351761102,-3.0683664931431753,-99.11368196604124,-44.365411038250535,-145.87346319108389
-1678897531,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.1,3.5,29.98,22.46,56.8,31.0,1012.1,-29.562672190338155,-154.6120691456651,-2.9955584269239677,-99.84680247706325,-3.068568221392502,-99.11352064574031,-44.368524160937994,-145.86034388821787
-1678897541,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.1,3.2,29.97,22.47,56.8,31.0,1012.0,-29.562841201954015,-154.61076590729144,-2.995643830914927,-99.8467051829463,-3.068513628640069,-99.11351275358584,-44.363973763337015,-145.88696082258434
-1678897551,30.0,30.0,55.0,55.0,0,1300000000,,,3,6.6,3.5,30.0,22.47,56.8,31.0,1012.1,-29.563232344701138,-154.61109599251162,-2.9956112291359718,-99.84704569060362,-3.0684740853006782,-99.11353232223634,-44.36574994545617,-145.86612036376647
-1678897561,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.9,3.3,29.97,22.48,56.8,31.0,1012.1,-29.56276167820667,-154.61416878028666,-2.9956169126807843,-99.84678957208334,-3.068401818646807,-99.11366955072482,-44.366525847527505,-145.86200891406486
-1678897571,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.0,3.1,29.98,22.49,56.8,30.9,1012.2,-29.562885840184762,-154.61344836819424,-2.9955993260141422,-99.84737617794923,-3.0685119866501442,-99.11342583864985,-44.36749267968207,-145.85612139741994
-1678897581,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.1,3.4,29.98,22.5,56.8,30.9,1012.1,-29.563074408367193,-154.61154930510722,-2.995626231417531,-99.84738345781298,-3.0683535615712088,-99.1142559877986,-44.36921081188316,-145.84822711829852
-1678897591,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.4,3.4,30.0,22.51,56.8,30.9,1012.1,-29.56338784782553,-154.60787565201602,-2.9956284604546664,-99.84784677638197,-3.0684015804973575,-99.11357219185297,-44.3671470927478,-145.84321513395804
-1678897601,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.7,3.5,30.0,22.51,56.7,30.9,1012.1,-29.563394220463,-154.60966564246985,-2.995612113345568,-99.84733964592438,-3.0684960747139978,-99.11439935232899,-44.36868355413024,-145.84664273363754
-1678897611,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.2,3.4,29.98,22.54,56.8,30.9,1012.1,-29.563797216769615,-154.6096138412307,-2.9958132192118447,-99.84731117676918,-3.0687316644393627,-99.11400825471064,-44.36466521428807,-145.8609247627942
-1678897621,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.7,3.6,30.0,22.55,56.8,30.9,1012.2,-29.563689808556187,-154.60892484259998,-2.99570436349629,-99.84795166908353,-3.068599722999188,-99.11375122458323,-44.36681016185279,-145.84331974075542
-1678897631,30.0,30.0,55.0,55.0,0,1300000000,,,3,6.9,3.3,30.0,22.55,56.8,30.9,1012.1,-29.56435916610519,-154.60728784154557,-2.995723763847395,-99.84832385985625,-3.0685044993027315,-99.11478215406785,-44.36778333945788,-145.84256254031843
-1678897641,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.8,3.2,29.98,22.55,56.8,30.9,1012.1,-29.563870733260394,-154.60930537904196,-2.995742720801275,-99.84817969797282,-3.068590467816716,-99.11491702259237,-44.36694891902074,-145.84535559731918
-1678897651,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.2,3.7,29.98,22.55,56.8,30.9,1012.1,-29.563651595815355,-154.61043354854235,-2.9955615211280353,-99.8476917839951,-3.0685827676304815,-99.11537988239685,-44.36823633279044,-145.83875005716445
-1678897661,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.3,3.4,29.98,22.55,56.8,30.8,1012.1,-29.563640935040958,-154.61150158868955,-2.9953945364432037,-99.84837293136768,-3.068509295550556,-99.11522547934464,-44.368070541541385,-145.84209360153596
-1678897671,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.3,3.2,29.98,22.55,56.8,30.8,1012.1,-29.563752865188683,-154.61016547673884,-2.995623255379434,-99.84790257489321,-3.0684646589661444,-99.11497854765916,-44.36828643472693,-145.84255887055713
-1678897681,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.2,3.2,29.98,22.55,56.8,30.8,1012.1,-29.563855284005882,-154.60932024957265,-2.9957063872188283,-99.84767326828599,-3.0684413288584262,-99.11523518842874,-44.369093603825725,-145.86676613865734
-1678897691,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.4,2.9,29.98,22.55,56.8,30.8,1012.1,-29.56386781270669,-154.60743293518644,-2.9956664944920552,-99.84759904267992,-3.0683796005535733,-99.11557272592388,-44.369112241582904,-145.86445541669318
-1678897701,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.0,3.4,29.98,22.55,56.8,30.8,1012.2,-29.56381143870054,-154.6092896959397,-2.9957958658004187,-99.84692175254503,-3.068435683871915,-99.11627173392375,-44.368273084517355,-145.86806876920485
-1678897711,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.4,3.7,29.98,22.55,56.8,30.8,1012.2,-29.564309168785037,-154.60672363263794,-2.995618076842837,-99.84822892180307,-3.0683530433254576,-99.11608988384539,-44.36758702512,-145.8600964766817
-1678897721,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.6,3.5,29.98,22.55,56.7,30.8,1012.2,-29.564354259084503,-154.60512110940238,-2.995830340370413,-99.84798586977816,-3.0682842675475035,-99.11548705806534,-44.36714636979985,-145.86286704303967
-1678897731,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.1,3.6,30.0,22.55,56.7,30.8,1012.2,-29.564842515372803,-154.60515315994397,-2.995646201430961,-99.84855711449127,-3.068331895481915,-99.11566972398258,-44.36827863515159,-145.84054767082858
-1678897741,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.3,3.4,30.0,22.55,56.7,30.8,1012.2,-29.564235171290143,-154.60686170131783,-2.9959134698270273,-99.84847538463018,-3.068343093448704,-99.11405786890607,-44.36571708452181,-145.8649218949288
-1678897751,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.5,3.8,30.01,22.56,56.7,30.8,1012.1,-29.564481406342935,-154.60885204312027,-2.995732678628,-99.84802748215567,-3.0683774275580644,-99.11417941668577,-44.36708928567137,-145.86177255057808
-1678897761,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.8,3.2,30.0,22.55,56.7,30.8,1012.2,-29.56420949901652,-154.60591331544555,-2.995582899898835,-99.84840396584028,-3.068379031039714,-99.1147758042562,-44.36609441726244,-145.86225839825482
-1678897771,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.7,3.9,30.0,22.55,56.7,30.8,1012.1,-29.564056554404242,-154.6096569331009,-2.9954333163489477,-99.8492809640321,-3.068360640927785,-99.11374565152961,-44.36789624389875,-145.85059922582502
-1678897781,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.3,3.2,29.98,22.55,56.8,30.8,1012.2,-29.56412460753377,-154.61064457893346,-2.9956305068204205,-99.84819261959919,-3.0683914053348262,-99.11483522360972,-44.36652875477496,-145.8651814851185
-1678897791,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.8,2.9,30.0,22.55,56.8,30.8,1012.2,-29.564463206313935,-154.60750623305586,-2.9956039495918363,-99.8484450733916,-3.0683535966454207,-99.11450141051438,-44.36737466531922,-145.85036605383445
-1678897801,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.1,3.5,30.0,22.55,56.7,30.8,1012.2,-29.5644211003957,-154.60873910778363,-2.9955839164228752,-99.84819920120223,-3.0682984094746644,-99.1150038613786,-44.36822176330885,-145.86218251011198
-1678897811,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.6,3.2,30.01,22.55,56.7,30.8,1012.1,-29.56477876784309,-154.60793257012367,-2.995842349396687,-99.84814451630446,-3.0683060637461117,-99.11525856346259,-44.366046452615294,-145.88498183858937
-1678897821,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.7,3.3,29.98,22.55,56.8,30.8,1012.2,-29.564304286278546,-154.60643690632028,-2.995746699634472,-99.8485720461972,-3.06819326335746,-99.11551481862345,-44.36958770950977,-145.85276052155956
-1678897831,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.1,3.3,29.98,22.55,56.8,30.8,1012.2,-29.56494093230448,-154.60451728208656,-2.9957089448877894,-99.84833715573531,-3.0682594980505886,-99.11639966081323,-44.370771472018326,-145.84980751355178
-1678897841,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.7,3.0,29.97,22.53,56.9,30.8,1012.3,-29.564977934444343,-154.60385905409328,-2.995688902343719,-99.84915475926836,-3.0682348333930722,-99.11597442450005,-44.369603897782326,-145.85584159319947
-1678897851,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.3,3.3,30.0,22.48,56.8,30.8,1012.2,-29.565475860010217,-154.6025700360109,-2.995680239866312,-99.84979782748881,-3.068265297764629,-99.11518912548064,-44.37156931352446,-145.8484316498899
-1678897861,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.6,3.5,30.0,22.46,56.8,30.9,1012.2,-29.56510263655359,-154.60314032082127,-2.9958349790796763,-99.84881775919399,-3.068290006888507,-99.11538553738127,-44.371808645527096,-145.84049936697943
-1678897871,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.3,3.3,30.01,22.45,56.8,30.9,1012.2,-29.56500398254745,-154.60388518727646,-2.995539256393291,-99.8482935415901,-3.068455740917794,-99.11560353566205,-44.370793126923054,-145.8506030674475
-1678897881,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.5,3.0,30.0,22.45,56.8,30.9,1012.2,-29.56439887565825,-154.60859450541363,-2.9957738609984523,-99.84819682596788,-3.0684844787231573,-99.11574175971299,-44.36695054321674,-145.87272527221768
-1678897891,30.0,30.0,55.0,55.0,0,1300000000,,,3,7.6,3.6,30.0,22.42,56.8,31.0,1012.2,-29.56479061211344,-154.60685010776768,-2.995634944886461,-99.84893042850034,-3.068313109714018,-99.11512513503654,-44.36789138028033,-145.86025486165087
-1678897901,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.3,2.9,29.98,22.4,56.8,31.0,1012.2,-29.565004460075166,-154.6068090468641,-2.995717203370729,-99.84920080714623,-3.0683697632647116,-99.11545529538355,-44.36735761305829,-145.8690850415083
-1678897911,30.0,30.0,55.0,55.0,0,1300000000,,,3,8.7,3.0,29.97,22.4,56.8,31.0,1012.2,-29.564774427166927,-154.60770488563367,-2.9955860269341654,-99.84960927458376,-3.0684373406176397,-99.11496929939301,-44.37009191124061,-145.85432771185094
-1678897921,30.0,30.0,55.0,55.0,0,1300000000,,,3,10.4,3.0,29.98,22.38,56.9,31.0,1012.2,-29.56473726856672,-154.6088517927353,-2.9956612197465264,-99.84981672873955,-3.0684612239172013,-99.1156630477231,-44.36822293666477,-145.8540873716534
-1678897931,30.0,30.0,55.0,55.0,0,1300000000,,,3,9.1,2.9,29.97,22.36,56.8,31.0,1012.2,-29.56504155368219,-154.60846621831496,-2.995571233374705,-99.85059151353833,-3.068458580481892,-99.11575164028848,-44.369837090196455,-145.83491351723993
-1678897941,30.0,30.0,55.0,55.0,0,1300000000,,,15,8.5,3.4,30.0,22.35,56.8,31.1,1012.2,-29.56454315225257,-154.60756339542337,-2.9955255965076018,-99.85008393948706,-3.0683296838696683,-99.11605767093992,-44.36707581219078,-145.84028748284905
-1678897947,30.0,30.0,55.0,55.0,0,1300000000,,,31,8.7,3.5,29.97,22.35,56.8,31.1,1012.2,-29.564473961529853,-154.60649427255518,-2.9956358513945203,-99.84978603583718,-3.0682971939780264,-99.11563699073335,-44.36845872719948,-145.83789354206215
-1678897954,30.0,30.0,55.0,55.0,0,1300000000,,,31,8.7,3.8,29.97,22.33,56.8,31.1,1012.2,-29.564700942008866,-154.60671800899934,-2.995594077860047,-99.85009229568924,-3.068507286206544,-99.11552416915126,-44.36990910564943,-145.84662779686442
-1678897961,30.0,30.0,55.0,55.0,0,1300000000,,,31,9.1,3.5,29.97,22.32,56.8,31.1,1012.2,-29.56480235360328,-154.60615012969217,-2.995764520593422,-99.84934258657225,-3.0686142805550016,-99.115177941521,-44.36886350883208,-145.84681136420866
-1678897971,30.0,30.0,55.0,55.0,0,1300000000,,,31,8.2,2.7,30.0,22.31,56.8,31.1,1012.2,-29.564738354456694,-154.60553275549748,-2.995654259854124,-99.84970746214071,-3.0683526237650187,-99.11560059391846,-44.36794778718364,-145.8475564023686
-1678897981,30.0,30.0,55.0,55.0,0,1300000000,,,31,8.3,3.0,29.97,22.29,56.8,31.1,1012.2,-29.564662536645393,-154.6061379004633,-2.995655086016853,-99.85093368178553,-3.0682889958193615,-99.11549568637345,-44.36911849025726,-145.8434109692182
-1678897991,30.0,30.0,55.0,55.0,0,1300000000,,,31,7.6,3.4,30.0,22.27,56.8,31.2,1012.3,-29.564791969381385,-154.60881531722157,-2.9955999795028476,-99.84994631230029,-3.068517412452176,-99.11604001909576,-44.36645339372515,-145.829561646892
-1678898001,30.0,30.0,55.0,55.0,0,1300000000,,,31,8.6,3.2,29.97,22.24,56.7,31.2,1012.3,-29.564774825214748,-154.60737961071874,-2.995666795510255,-99.84993196880879,-3.068556626477092,-99.11610517865257,-44.367540918927915,-145.83721041721407
-1678898011,30.0,30.0,55.0,55.0,0,1300000000,,,31,8.8,3.2,29.97,22.21,56.7,31.2,1012.3,-29.564284222755873,-154.60571063516156,-2.9956922100703167,-99.85008372122705,-3.0684153078991843,-99.11545635313394,-44.37185994529494,-145.82945884773235
-1678898021,30.0,30.0,55.0,55.0,0,1300000000,,,31,8.5,2.9,29.97,22.2,56.8,31.2,1012.2,-29.56450545826334,-154.60592342880423,-2.995597097637071,-99.8508415071674,-3.068453362356392,-99.11627441177976,-44.3721551352262,-145.82802756208145
-1678898031,30.0,30.0,55.0,55.0,0,1300000000,,,31,10.5,2.8,29.97,22.18,56.8,31.2,1012.3,-29.56453184406954,-154.60594331536095,-2.995551872146641,-99.85037323842324,-3.0684854087334372,-99.11758637099605,-44.37434485571049,-145.8273019749662
-1678898041,30.0,30.0,55.0,55.0,0,1300000000,,,31,8.1,3.5,30.0,22.17,56.8,31.3,1012.3,-29.56461920460869,-154.60702535957645,-2.9955595675027875,-99.85066560039031,-3.068565250354664,-99.11681632915405,-44.37013683978079,-145.83258965291546
-1678898051,30.0,30.0,55.0,55.0,0,1300000000,,,31,8.3,3.6,29.98,22.16,56.8,31.3,1012.3,-29.5649035333166,-154.6057209120029,-2.9956830159996435,-99.85030574083702,-3.068579024614712,-99.11635093142269,-44.36850711305561,-145.83342363845318
-1678898061,30.0,30.0,55.0,55.0,0,1300000000,,,31,8.0,3.6,29.97,22.15,56.8,31.3,1012.2,-29.564552166903812,-154.60866385140446,-2.9956496524325233,-99.84934945932939,-3.0687586870734416,-99.11625563003,-44.36828202657647,-145.84593657781005
-1678898071,30.0,30.0,55.0,55.0,0,1300000000,,,31,8.9,3.4,30.0,22.13,56.8,31.4,1012.3,-29.564726645399503,-154.61047443943605,-2.9957089231921485,-99.84931911575025,-3.068460244752962,-99.11662164724984,-44.367823078128545,-145.84666061978203
-1678898081,30.0,30.0,55.0,55.0,0,1300000000,,,31,9.1,3.1,29.98,22.1,56.8,31.4,1012.2,-29.564342753513895,-154.60800541335217,-2.9955975706542075,-99.848948745047,-3.0685801593691755,-99.11629850030735,-44.364583367415264,-145.8525313584518
-1678898091,30.0,30.0,55.0,55.0,0,1300000000,,,31,9.9,3.1,30.0,22.1,56.8,31.4,1012.2,-29.564617197762658,-154.6090409440856,-2.99555480671072,-99.84878610653878,-3.0686701553503837,-99.11732857019133,-44.3669258012078,-145.8499843151253
-1678898101,30.0,30.0,55.0,55.0,0,1300000000,,,31,9.1,3.0,29.98,22.1,56.8,31.4,1012.3,-29.564458641357,-154.6090232780205,-2.9955100291626016,-99.848458144802,-3.068727666474093,-99.11685786886379,-44.36781810865904,-145.83781257315096
-1678898111,30.0,30.0,55.0,55.0,0,1300000000,,,31,9.2,2.9,30.0,22.1,56.8,31.4,1012.2,-29.5645724665267,-154.6087827319731,-2.9955873359826906,-99.84895141950753,-3.068650243947437,-99.11734738064081,-44.369481125942364,-145.83979117507096
-1678898121,30.0,30.0,55.0,55.0,0,1300000000,,,31,10.0,3.3,29.97,22.11,56.8,31.4,1012.3,-29.56440816436569,-154.6081064704647,-2.995548538506819,-99.84968734017714,-3.0684664652297284,-99.11687781369383,-44.36984547893593,-145.83892649601773
-1678898131,30.0,30.0,55.0,55.0,0,1300000000,,,31,9.3,3.1,29.97,22.12,56.7,31.4,1012.3,-29.564384579250795,-154.60795973604965,-2.995782276455197,-99.85012223672753,-3.068505901312669,-99.11707604614402,-44.368713744107154,-145.847945915749
diff --git a/Python_script/ahlborn_temp_hum_sensors.py b/Python_script/ahlborn_temp_hum_sensors.py
deleted file mode 100644
index a77b1d9a97c22bf603f3cb385eb826371fd3c76b..0000000000000000000000000000000000000000
--- a/Python_script/ahlborn_temp_hum_sensors.py
+++ /dev/null
@@ -1,197 +0,0 @@
-# -*- coding: utf-8 -*-
-"""
-Created on Mon Jan  2 11:08:12 2023
-
-@author: michael pawelzik
-@co-author: uros mavric
-Some parts have been copied from uros mavric and then they have been modified for compatibility. 
-
-#### SYNTAX FOR CALLING CLASS OBJECTS ########################################
-
-Look into module play_with_ahlborn.py
-
-##############################################################################
-"""
-
-
-
-import time
-from telnetlib import Telnet
-import re
-from datetime import datetime
-
-class ahlborn:
-   
-    
-    # constructor of class
-    def __init__(self, ip = '192.168.115.44', wait_time = 1):
-        self.__ip_adress = ip 
-        self.__buffer = ''
-        self.timestamp = datetime(1970,1,1,0,0,0)
-        self.__tn = Telnet(self.__ip_adress, 10001)
-        self.__wait_time = wait_time
-        
-        self.temp_entries = []
-        
-        # assign properties for temperature
-        self.temp_ids = []
-        self.temp_vals = []
-        self.temp_units = []
-        self.temp_val_categories = []
-        self.temp_info_fields = []
-        
-        # assign properties for humidity
-        self.hum_ids =[]
-        self.hum_vals = []
-        self.hum_units = []
-        self.hum_val_categories = []
-        self.hum_info_fields = []
-        
-        # assign properties for pressure
-        self.press_ids =[]
-        self.press_vals = []
-        self.press_units = []
-        self.press_val_categories = []
-        self.press_info_fields = []
-        
-    # method that requests the sensor data from ahlborn
-    def request_temp_hum_data_from_ahlborn(self):
-        
-        
-        iteration = 0
-        while iteration < 3:
-            try:
-                
-             
-                # timestamp for sensor data from ahlborn
-                self.timestamp = datetime.now()
-                
-                # A command for manual request of sensor data is sent to ahlborn
-                self.__tn.write(bytes('S1',encoding='utf8') + b'\r')
-                time.sleep(self.__wait_time)
-                
-                # request timestamp from OS for sensor data
-                self.__timestamp = datetime.now()
-                
-                # buffer of ahlborn is read and stored in buffer
-                buffer = self.__tn.read_very_eager()
-                time.sleep(self.__wait_time)
-                
-                # data of buffer is decoded with cp437
-                self.__buffer = buffer.decode('cp437')
-                time.sleep(self.__wait_time)
-                
-                if self.__buffer == '':
-                    iteration += 1
-                    print('An error has occured during readout of sensor data.')
-                else:
-                    
-                    # leave while loop
-                    break
-            
-            except EOFError:
-                iteration += 1
-                print('An error has occured during readout of sensor data.')
-        
-        return
-       
-    
-    # method for extraction of sensor temperatures out of buffer of ahlborn    
-    def get_param_of_temp_entries(self):
-        
-        self.temp_entries.clear()
-        
-        #clear properties for temperature
-        self.temp_ids.clear()
-        self.temp_vals.clear()
-        self.temp_units.clear()
-        self.temp_val_categories.clear()
-        self.temp_info_fields.clear()
-        
-        # find all temperature entries in buffer of ahlborn
-        list_temp_strings = re.findall(r'([0-9]{2}:.[+-].*\s[°C|K]+\s.*\r\n)', self.__buffer)
-        
-        # for each temperature entry split string into list of parameters. Delimiter is white space char 
-        list_temp_entries = [re.split(r'\s', element, maxsplit=4) for element in list_temp_strings]
-        
-        
-        # for each temp entry assign parameter to class property of parameter             
-        for element in list_temp_entries:
-           
-            self.temp_ids.append(int(element[0].rstrip(':')))
-            self.temp_vals.append(float(element[1].rstrip()))
-            self.temp_units.append(element[2].rstrip())
-            self.temp_val_categories.append(element[3].rstrip())
-            self.temp_info_fields.append(element[4].rstrip())            
-           
-        return
-        
-
-    # method for extraction of sensor humidities out of buffer of ahlborn    
-    def get_param_of_hum_entries(self):
-                
-        # clear properties for humidity
-        self.hum_ids.clear()
-        self.hum_vals.clear()
-        self.hum_units.clear()
-        self.hum_val_categories.clear()
-        self.hum_info_fields.clear()
-        
-        # find all humidity entries in buffer of ahlborn
-        list_hum_strings = re.findall(r'([0-9]{2}:.[+-].*\s%H\s.*\r\n)', self.__buffer)
-        
-        # for each humidity entry split string into list of parameters. Delimiter is white space char 
-        list_hum_entries = [re.split(r'\s', element, maxsplit=4) for element in list_hum_strings]
-        
-        
-        # for each hum entry assign parameter to class property of parameter             
-        for element in list_hum_entries:
-           
-            self.hum_ids.append(int(element[0].rstrip(':')))
-            self.hum_vals.append(float(element[1].rstrip()))
-            self.hum_units.append(element[2].rstrip())
-            self.hum_val_categories.append(element[3].rstrip())
-            self.hum_info_fields.append(element[4].rstrip())
-        
-        return
-
-    def get_param_of_press_entries(self):
-        
-                
-        # clear properties for pressure
-        self.press_ids.clear()
-        self.press_vals.clear()
-        self.press_units.clear()
-        self.press_val_categories.clear()
-        self.press_info_fields.clear()
-        
-        # find all pressure entries in buffer of ahlborn
-        list_press_strings = re.findall(r'([0-9]{2}:.[+-].*\smb\s.*\r\n)', self.__buffer)
-        
-        # for each pressure entry split string into list of parameters. Delimiter is white space char 
-        list_press_entries = [re.split(r'\s', element, maxsplit=4) for element in list_press_strings]
-        
-        
-        # for each pressure entry assign parameter to class property of parameter             
-        for element in list_press_entries:
-           
-            self.press_ids.append(int(element[0].rstrip(':')))
-            self.press_vals.append(float(element[1].rstrip()))
-            self.press_units.append(element[2].rstrip())
-            self.press_val_categories.append(element[3].rstrip())
-            self.press_info_fields.append(element[4].rstrip()) 
-           
-        return
-    
-    # close telenet connection
-    def close(self):
-        self.__tn.close()
-    
-    # destructor of class
-    def __del__(self):
-        self.close()
-
-
-
-    
-    
\ No newline at end of file
diff --git a/Python_script/almemo710.py b/Python_script/almemo710.py
index 14fddca22ae5c5fd6f1c070a11039ab8c8379019..19850e9b0236eb00192b9953be4d80d7d1bbd5c3 100644
--- a/Python_script/almemo710.py
+++ b/Python_script/almemo710.py
@@ -42,7 +42,7 @@ class almemo710:
             # open telenet connection to ALMEMO 710
             self.tn = Telnet(self.ip_adress, 10001, timeout)
         
-        except socket.time:
+        except socket.timeout:
             print("Exception occurred accessing ALMEMO 710 via Telnet\n")
             raise KeyboardInterrupt
 
@@ -127,7 +127,18 @@ class almemo710:
         # search date string in reply to command P13 
         # date alway has the following format: xx.xx.xx where x is within [0-9]
         # get time out of read buffer and strip white space characters
-        date = re.search(r'([0-9]{2}\.[0-9]{2}\.[0-9]{2})', read_buffer).group(1)
+        try:
+            date = re.search(r'([0-9]{2}\.[0-9]{2}\.[0-9]{2})', read_buffer).group(1)
+        
+        except AttributeError as attr_err:
+               
+               # set date to 'N/A' if no valid date is returned by device 
+               date = 'N/A'
+                    
+               print(read_buffer)
+               print('An error occured during parameter search.' \
+                          'Parameter is set to default (N/A)\n')
+               print(traceback.print_tb(attr_err.__traceback__))
         
         return date
     
@@ -140,8 +151,19 @@ class almemo710:
         # search time string in reply to command P10 
         # time alway has the following format: xx:xx:xx where x cis within [0-9]
         # get time out of read buffer and strip white space characters
-        time = re.search(r'([0-9]{2}:[0-9]{2}:[0-9]{2})', read_buffer).group(1)
+        try:
+            time = re.search(r'([0-9]{2}:[0-9]{2}:[0-9]{2})', read_buffer).group(1)
 
+        except AttributeError as attr_err:
+               
+               # set time to 'N/A' if no valid date is returned by device 
+               time = 'N/A'
+                    
+               print(read_buffer)
+               print('An error occured during parameter search.' \
+                          'Parameter is set to default (N/A)\n')
+               print(traceback.print_tb(attr_err.__traceback__))
+        
         return time
     
     # method to set channel name of selected channel at ALMEMO 710
@@ -183,10 +205,25 @@ class almemo710:
         # search channel name in reply to cammand P00
         # name follows after 2$\ in read_buffer
         # get name out of read buffer 
-        channel_name = re.search(r'(2\$\\[^;]+)', read_buffer).group(1)
+        try:
+            
+            channel_name = re.search(r'(2\$\\[^;]+)', read_buffer).group(1)
+        
+            # strip white space characters
+            channel_name = channel_name.strip(r'(2\$\\)')
         
-        # strip white space characters
-        return channel_name.strip(r'(2\$\\)')
+        except AttributeError as attr_err:
+               
+            # set channel name  to 'N/A' if no valid name is returned by device 
+            channel_name = 'N/A'
+                    
+            print(read_buffer)
+            print('An error occured during parameter search.' \
+                          'Parameter is set to default (N/A)\n')
+            print(traceback.print_tb(attr_err.__traceback__))
+        
+ 
+        return channel_name
     
     
     # method to request the list of all active measurement  channels of all sensors
@@ -301,6 +338,7 @@ class almemo710:
             
             # sore measured values for all sensor channels in measurment buffer of class
             self.meas_buffer.loc[:, 'meas_val'] = meas_vals_list
+            
         
         # if no line with measured values is found and error message is
         # printed that contains relevant data
diff --git a/Python_script/prototype.py b/Python_script/prototype.py
index c663488a51bfebc9fd11d518e16af2138f1a171a..453b878e46e906fd19287d1f310ece6b3cd17cdd 100755
--- a/Python_script/prototype.py
+++ b/Python_script/prototype.py
@@ -35,7 +35,7 @@ class MeasurementData:
     # values for measurement instruments temperature, measurement instruments humidity 
     def __init__(self, timestamp, temp, hum, power, frequency, s11, s21, s12, s22, perc_temp_heater, \
                  perc_hum_heater, temp_dut, temp_room, temp_meas_instr, hum_dut, hum_room, \
-                 hum_meas_instr, air_press_room):
+                 hum_meas_instr, air_press_room, temp_chamber_meas_instr, hum_chamber_meas_instr):
         self.timestamp = timestamp
         self.temp = temp
         self.hum = hum
@@ -53,12 +53,14 @@ class MeasurementData:
         self.temp_dut = temp_dut
         self.temp_room = temp_room
         self.temp_meas_instr = temp_meas_instr
+        self.temp_chamber_meas_instr=temp_chamber_meas_instr
         # new variables for DUT humidity, room humidity, air pressure room, Michael
         self.hum_dut = hum_dut
         self.hum_room = hum_room
         self.air_press_room = air_press_room
         # new variable for measurement instruments humidity, Michael 
         self.hum_meas_instr = hum_meas_instr
+        self.hum_chamber_meas_instr = hum_chamber_meas_instr
 
 
 class Measurements:
@@ -74,9 +76,11 @@ class Measurements:
         self.vna_config_file = config_data["vna_config_file"]
         target_accuracy = [self.max_delta_temp, self.max_delta_hum]
         self.chamber = climate_chamber.create_chamber(chamber_address, target_accuracy)
+        self.instr_chamber = climate_chamber.create_chamber(config_data['instr_chamber_ip'],
+                                                            target_accuracy)
         self.vna = VNA.create_vna(vna_address, target_accuracy)
         # new object for external sensors, decice 'ALMEMO710', fixed IP in code for device, Michael
-        self.ext_sensors = almemo710.almemo710(ip = logger_adress, timeout = 1)
+        self.ext_sensors = almemo710.almemo710(ip = logger_adress, timeout = 10)
         self.standby = standby
         self.output_basename = output_basename
         self.clock = virtual_time.get_clock(chamber_address, target_accuracy)
@@ -95,7 +99,8 @@ class Measurements:
         # request all sensor channels from ALMEMO710 of all sensors that are connected to this device, Michael
         self.ext_sensors.request_sens_channel_list()
 
-        self.measurement_plot = MeasurementPlot.MeasurementPlot()
+        self.measurement_plot = MeasurementPlot.MeasurementPlot(env_cond_sensors = \
+                                                                config_data['env_cond_sensors'])
         self.data_collection = []
 
     def perform_measurements(self, sweep_file):
@@ -179,6 +184,7 @@ class Measurements:
                           'EQUILIBRIUM_INDICATOR', 'TEMP_HEATER', 'HUM_HEATER',
                           'TEMP_DUT', 'TEMP_ROOM', 'TEMP_MEAS_INSTR',
                           'HUM_DUT','HUM_ROOM', 'HUM_MEAS_INSTR', 'AIR_PRESS_ROOM',
+                          'READBACK_TEMP_MEAS_INSTR', 'READBACK_HUM_MEAS_INSTR',
                           'S11_MAGNITUDE', 'S11_PHASE', 'S12_MAGNITUDE',
                           'S12_PHASE', 'S21_MAGNITUDE', 'S21_PHASE', 'S22_MAGNITUDE', 'S22_PHASE']
             # csv.dict writer add adda row wise
@@ -326,7 +332,6 @@ class Measurements:
             
         # loop with 3 Itherations in case of ALMEMO 710 readout error, Michael
         while iteration < 3:
-            
             try:
                 # request temperatures, humidities and and air pressure from external sensors, Michael
                 temp_dut, temp_room, temp_meas_instr, hum_dut, hum_room, hum_meas_instr, \
@@ -341,13 +346,16 @@ class Measurements:
                 time.sleep(1)
                 iteration+=1
         
+        [temp_chamber_meas_instr, hum_chamber_meas_instr, mode_meas_instr, alarms_meas_instr] = \
+            self.instr_chamber.read_monitor().split(',')
         
         # values percentage temp_heater, percentage hum_heater, temp_dut, temp_room, temp_meas_instr,
         # hum_dut, hum_room, hum_meas_instr air_press_room added to parameterlist in returned
         # values, Michael
         return MeasurementData(int(self.clock.time()), temp, hum, power, frequency, s11, s21, s12, s22, \
                                perc_temp_heater, perc_hum_heater, temp_dut, temp_room, temp_meas_instr, \
-                                   hum_dut, hum_room, hum_meas_instr, air_press_room)
+                                   hum_dut, hum_room, hum_meas_instr, air_press_room, \
+                                       temp_chamber_meas_instr, hum_chamber_meas_instr)
 
     def store_and_plot_data(self, target_temp, target_hum, data, equi_indicator):
         measurement = {
@@ -377,6 +385,8 @@ class Measurements:
             'HUM_MEAS_INSTR': data.hum_meas_instr,            
             # Air pressure for room of external sensors added, Michael
             'AIR_PRESS_ROOM': data.air_press_room,
+            'READBACK_TEMP_MEAS_INSTR': float(data.temp_chamber_meas_instr),
+            'READBACK_HUM_MEAS_INSTR': float(data.hum_chamber_meas_instr),
             'S11_PHASE': self.calculate_mean_phase(data.s11),
             'S11_MAGNITUDE': 20*math.log10(self.calculate_mean_magnitude(data.s11)),
             'S21_PHASE': self.calculate_mean_phase(data.s21),
@@ -396,6 +406,7 @@ class Measurements:
     def get_trace_data(self, trace):
         return self.vna.get_list_of_measurement_values(trace, "SDAT")
     
+    
     # new method to request temperaure values from external sensors of ahlborn, Michael 
     def get_ext_sensor_values(self):
         
@@ -488,7 +499,7 @@ def plot_output(output_basename, measurements_appendices, show_blocking_plot, co
     # storepath is set to working directory with subfolder Plots, Michael
     storepath = os.path.join(os.getcwd(),'Plots')
     # create objet for PostPlot class in PostPlot module, Michael
-    post_plot = PostPlot.PostPlot()
+    post_plot = PostPlot.PostPlot(env_cond_sensors = config_data['env_cond_sensors'])
     for index, m in enumerate(measurements_appendices):
         measurement_name = output_basename+'_'+str(m)
         list_of_frames.append(pd.read_csv(measurement_name+'.csv'))
diff --git a/Python_script/test_stand_parameter.json b/Python_script/test_stand_parameter.json
index 377cd13a7ea98367e48043e6a2a68fa170653f83..e8b2b45b265cf2822dff321441566f59d1c901ff 100644
--- a/Python_script/test_stand_parameter.json
+++ b/Python_script/test_stand_parameter.json
@@ -1 +1 @@
-{"delta_temp": 0.1, "delta_hum": 1, "delta_mag": 0.01 , "delta_phase": 1.5, "sleep_time": 10.0, "frequency": 1300000000, "vna_config_file": "CalSetup2.znxml","chamber_ip":"192.168.115.186", "vna_ip":"192.168.115.39", "data_folder":"measurements", "logger_ip": "192.168.115.94", "time_unit": "min"}
+{"delta_temp": 0.1, "delta_hum": 1, "delta_mag": 0.01 , "delta_phase": 1.5, "sleep_time": 10.0, "frequency": 1300000000, "vna_config_file": "CalSetup2.znxml","chamber_ip":"192.168.115.186", "instr_chamber_ip": "192.168.115.187", "vna_ip":"192.168.115.39", "data_folder":"measurements", "logger_ip": "192.168.115.94", "time_unit": "min", "env_cond_sensors": "int"}
diff --git a/Python_script/the.pdf b/Python_script/the.pdf
index efd92b1502d1ef54657b7af20c41b5fa49f809df..ac526011e9e8b3ca5fbdf2d09f162a6f08e05130 100644
Binary files a/Python_script/the.pdf and b/Python_script/the.pdf differ