From 40d58c940395fba77ecd1a2cedc11feec530c2db Mon Sep 17 00:00:00 2001 From: Sander Roosendaal Date: Mon, 11 Jan 2021 08:30:07 +0100 Subject: [PATCH 01/30] adding a few tests --- rowers/interactiveplots.py | 104 --------------------------- rowers/tests/statements.py | 6 ++ rowers/tests/test_analysis.py | 132 ++++++++++++++++++++++++++++++++++ 3 files changed, 138 insertions(+), 104 deletions(-) diff --git a/rowers/interactiveplots.py b/rowers/interactiveplots.py index 8e107017..fe956508 100644 --- a/rowers/interactiveplots.py +++ b/rowers/interactiveplots.py @@ -104,33 +104,6 @@ import rowers.datautils as datautils from pandas.core.groupby.groupby import DataError -def newtestpower(x): - try: - if abs(x['testpower'] - x['testdup']) <= 0.2: - return np.nan - except (AttributeError,TypeError): - return np.nan - - - return x['testpower'] - -def newtestpowerid(x): - try: - if np.isnan(x['testpower']): - return np.nan - except (AttributeError,TypeError): - return np.nan - - return x['id'] - -def newtestpowerdate(x): - try: - if np.isnan(x['testpower']): - return np.nan - except (AttributeError,TypeError): - return np.nan - - return x['date'] def workoutname(id): try: @@ -157,73 +130,6 @@ def all_goldmedalstandards(workouts,startdate,enddate): return dates,testpowers,testduration,ids -def get_testpower(workouts,fitnesstestsecs,kfitness): - dates = [] - testpower = [] - testduration = [] - fatigues = [] - fitnesses = [] - data = [] - for w in workouts: - cpfile = 'media/cpdata_{id}.parquet.gz'.format(id=w.id) - try: - df = pd.read_parquet(cpfile) - df['workout'] = w.id - df['workoutdate'] = arrow.get(w.date.strftime('%d-%m-%Y')).datetime - data.append(df) - except: - strokesdf = dataprep.getsmallrowdata_db(['power','workoutid','time'],ids=[w.id]) - res = myqueue(queuelow, - handle_setcp, - strokesdf, - cpfile,w.id) - - if len(data)>1: - df = pd.concat(data,axis=0) - - fitfunc = lambda pars,x: abs(pars[0])/(1+(x/abs(pars[2]))) + abs(pars[1])/(1+(x/abs(pars[3]))) - errfunc = lambda pars,x,y: fitfunc(pars,x)-y - - for w in workouts: - # Create CP data point for date range - ids = [w.id for w in workouts.filter(date__gte=w.date-datetime.timedelta(days=kfitness), - date__lte=w.date)] - - try: - powerdf = df[df['workout'].isin(ids)] - - powerdf = powerdf[powerdf['cp'] == powerdf.groupby(['delta'])['cp'].transform('max')] - powerdf = powerdf.sort_values(['delta']).reset_index() - - - powerdf = powerdf[powerdf['cp']>0] - powerdf.dropna(axis=0,inplace=True) - powerdf.sort_values(['delta','cp'],ascending=[1,0],inplace=True) - powerdf.drop_duplicates(subset='delta',keep='first',inplace=True) - except KeyError: - powerdf = pd.DataFrame() - - # p1,fitt,fitpower,ratio = datautils.cpfit(powerdf) - if len(powerdf['delta'])>= 4: - thesecs = powerdf['delta'].values - theavpower = powerdf['cp'].values - - if thesecs.min() < fitnesstestsecs and thesecs.max() > fitnesstestsecs: - ww = griddata(thesecs,theavpower,np.array([fitnesstestsecs]),method='linear',rescale=True) - powertest = ww[0] - else: - powertest = np.nan - - - - dates.append(arrow.get(w.date).datetime) - testpower.append(powertest) - testduration.append(fitnesstestsecs) - fatigues.append(np.nan) - fitnesses.append(np.nan) - - return dates,testpower, testduration,fatigues,fitnesses - def errorbar(fig, x, y, source=ColumnDataSource(), @@ -1761,12 +1667,6 @@ def goldmedalscorechart(user,startdate=None,enddate=None): }) df.sort_values(['date'],inplace=True) - #df['testdup'] = df['testpower'].shift(1) - #df['testpower'] = df.apply(lambda x: newtestpower(x),axis=1) - #df['date'] = df.apply(lambda x: newtestpowerdate(x), axis=1) - - - mask = df['testpower'].isnull() dates = df.mask(mask)['date'].dropna().values @@ -1838,10 +1738,6 @@ def goldmedalscorechart(user,startdate=None,enddate=None): idx = df.groupby(['date'])['score'].transform(max) == df['score'] df = df[idx] - #df = df.groupby(['date']).max() - #df['date'] = df.index.values - - source = ColumnDataSource( data = dict( diff --git a/rowers/tests/statements.py b/rowers/tests/statements.py index 31df3ae7..edb30faa 100644 --- a/rowers/tests/statements.py +++ b/rowers/tests/statements.py @@ -121,6 +121,7 @@ def get_random_file(filename='rowers/tests/testdata/testdata.csv',name=''): workoutdate = row.rowdatetime.date() workoutstarttime = row.rowdatetime + extension = filename[-3:] if name != '': @@ -183,6 +184,11 @@ class WorkoutFactory(factory.DjangoModelFactory): duration=get_random_file(name=faker.word())['duration'] distance=get_random_file(name=faker.word())['totaldist'] csvfilename=get_random_file(name=faker.word())['filename'] + trimp = 120 + hrtss = 60 + rscore = 60 + goldmedalstandard = 49 + goldmedalseconds = 509 class SessionFactory(factory.DjangoModelFactory): diff --git a/rowers/tests/test_analysis.py b/rowers/tests/test_analysis.py index c78114b9..9b775bb7 100644 --- a/rowers/tests/test_analysis.py +++ b/rowers/tests/test_analysis.py @@ -911,6 +911,138 @@ class WorkoutHistoTestNew(TestCase): self.assertEqual(response.status_code,200) +class History(TestCase): + def setUp(self): + self.u = UserFactory() + + self.r = Rower.objects.create(user=self.u, + birthdate=faker.profile()['birthdate'], + gdproptin=True,surveydone=True, + gdproptindate=timezone.now(), + rowerplan='coach') + + self.c = Client() + self.user_workouts = WorkoutFactory.create_batch(20, user=self.r) + self.factory = RequestFactory() + self.password = faker.word() + self.u.set_password(self.password) + self.u.save() + + def tearDown(self): + for workout in self.user_workouts: + try: + os.remove(workout.csvfilename) + except (IOError, FileNotFoundError, OSError): + pass + + @patch('rowers.dataprep.create_engine') + @patch('rowers.dataprep.getsmallrowdata_db') + def test_workouts_history(self, mocked_sqlalchemy, + mocked_getsmallrowdata_db): + + login = self.c.login(username=self.u.username, password=self.password) + self.assertTrue(login) + + url = '/rowers/history/' + + response = self.c.get(url) + self.assertEqual(response.status_code,200) + + @patch('rowers.dataprep.create_engine') + @patch('rowers.dataprep.getsmallrowdata_db', side_effect=mocked_getsmallrowdata_db) + def test_workouts_history_submit(self, mocked_sqlalchemy, + mocked_getsmallrowdata_db): + + login = self.c.login(username=self.u.username,password=self.password) + self.assertTrue(login) + + startdate = (self.user_workouts[0].startdatetime-datetime.timedelta(days=50)).date() + enddate = (self.user_workouts[0].startdatetime+datetime.timedelta(days=50)).date() + + form_data = { + 'startdate':startdate, + 'enddate':enddate, + 'workouttype':'rower', + 'yaxis':'TRIMP', + } + + form = HistorySelectForm(form_data) + + result = form.is_valid() + if not result: + print(form.errors) + + self.assertTrue(form.is_valid()) + + response = self.c.get('/rowers/history/',form_data) + + self.assertEqual(response.status_code,200) + +class GoldMedalScores(TestCase): + def setUp(self): + self.u = UserFactory() + + self.r = Rower.objects.create(user=self.u, + birthdate=faker.profile()['birthdate'], + gdproptin=True,surveydone=True, + gdproptindate=timezone.now(), + rowerplan='coach') + + self.c = Client() + self.user_workouts = WorkoutFactory.create_batch(20, user=self.r) + self.factory = RequestFactory() + self.password = faker.word() + self.u.set_password(self.password) + self.u.save() + + def tearDown(self): + for workout in self.user_workouts: + try: + os.remove(workout.csvfilename) + except (IOError, FileNotFoundError, OSError): + pass + + @patch('rowers.dataprep.create_engine') + @patch('rowers.dataprep.getsmallrowdata_db') + def test_workouts_goldmedalscores(self, mocked_sqlalchemy, + mocked_getsmallrowdata_db): + + login = self.c.login(username=self.u.username, password=self.password) + self.assertTrue(login) + + url = '/rowers/goldmedalscores/' + + response = self.c.get(url) + self.assertEqual(response.status_code,200) + + @patch('rowers.dataprep.create_engine') + @patch('rowers.dataprep.getsmallrowdata_db', side_effect=mocked_getsmallrowdata_db) + def test_workouts_goldmedalscores_submit(self, mocked_sqlalchemy, + mocked_getsmallrowdata_db): + + login = self.c.login(username=self.u.username,password=self.password) + self.assertTrue(login) + + startdate = (self.user_workouts[0].startdatetime-datetime.timedelta(days=50)).date() + enddate = (self.user_workouts[0].startdatetime+datetime.timedelta(days=50)).date() + + form_data = { + 'startdate':startdate, + 'enddate':enddate, + } + + form = DateRangeForm(form_data) + + result = form.is_valid() + if not result: + print(form.errors) + + self.assertTrue(form.is_valid()) + + response = self.c.post('/rowers/goldmedalscores/',form_data) + + self.assertEqual(response.status_code,200) + class WorkoutFlexallTestNew(TestCase): def setUp(self): self.u = UserFactory() From 6e236ae1e20b555185594d8f56b09fe5b04760f7 Mon Sep 17 00:00:00 2001 From: Sander Roosendaal Date: Mon, 11 Jan 2021 13:03:56 +0100 Subject: [PATCH 02/30] begin of unit tests --- rowers/dataprep.py | 2 +- rowers/tests/test_analysis.py | 12 +- rowers/tests/test_unit_tests.py | 61 + rowers/tests/testdata/boxplotdata.csv | 18820 ++++++++++++++++++++++++ rowers/views/analysisviews.py | 20 +- 5 files changed, 18903 insertions(+), 12 deletions(-) create mode 100644 rowers/tests/test_unit_tests.py create mode 100644 rowers/tests/testdata/boxplotdata.csv diff --git a/rowers/dataprep.py b/rowers/dataprep.py index 5568b998..f12241b8 100644 --- a/rowers/dataprep.py +++ b/rowers/dataprep.py @@ -2655,7 +2655,7 @@ def read_cols_df_sql(ids, columns, convertnewtons=True): try: df = pd.read_parquet(f,columns=columns) data.append(df) - except (OSError,IndexError): + except (OSError,IndexError,ArrowInvalid): rowdata,row = getrowdata(id=id) if rowdata and len(rowdata.df): datadf = dataprep(rowdata.df,id=id,bands=True,otwpower=True,barchart=True) diff --git a/rowers/tests/test_analysis.py b/rowers/tests/test_analysis.py index 9b775bb7..eb4ed3da 100644 --- a/rowers/tests/test_analysis.py +++ b/rowers/tests/test_analysis.py @@ -936,7 +936,7 @@ class History(TestCase): pass @patch('rowers.dataprep.create_engine') - @patch('rowers.dataprep.getsmallrowdata_db') + @patch('rowers.dataprep.getsmallrowdata_db',side_effect=mocked_getsmallrowdata_db) def test_workouts_history(self, mocked_sqlalchemy, mocked_getsmallrowdata_db): @@ -948,6 +948,11 @@ class History(TestCase): response = self.c.get(url) self.assertEqual(response.status_code,200) + url = '/rowers/history/data/' + response = self.c.get(url) + self.assertEqual(response.status_code,200) + + @patch('rowers.dataprep.create_engine') @patch('rowers.dataprep.getsmallrowdata_db', side_effect=mocked_getsmallrowdata_db) def test_workouts_history_submit(self, mocked_sqlalchemy, @@ -978,6 +983,11 @@ class History(TestCase): self.assertEqual(response.status_code,200) + response = self.c.get('/rowers/history/data/',form_data,xhr=True) + + self.assertEqual(response.status_code,200) + + class GoldMedalScores(TestCase): def setUp(self): self.u = UserFactory() diff --git a/rowers/tests/test_unit_tests.py b/rowers/tests/test_unit_tests.py new file mode 100644 index 00000000..463d04c1 --- /dev/null +++ b/rowers/tests/test_unit_tests.py @@ -0,0 +1,61 @@ +from __future__ import absolute_import +from __future__ import division +from __future__ import print_function +from __future__ import unicode_literals + +from .statements import * + + +nu = datetime.datetime.now() + +# interactive plots +from rowers import interactiveplots + +class InteractivePlotTests(TestCase): + def setUp(self): + self.u = UserFactory() + + self.r = Rower.objects.create(user=self.u, + birthdate=faker.profile()['birthdate'], + gdproptin=True,surveydone=True, + gdproptindate=timezone.now(), + rowerplan='coach') + + self.c = Client() + self.user_workouts = WorkoutFactory.create_batch(5, user=self.r) + self.factory = RequestFactory() + self.password = faker.word() + self.u.set_password(self.password) + self.u.save() + + def test_interactive_hr_piechart(self): + df = pd.read_csv('rowers/tests/testdata/getrowdata_mock.csv') + + script, div = interactiveplots.interactive_hr_piechart(df, self.r,'') + self.assertFalse(len(script)==0) + self.assertFalse(len(div)==0) + + def test_interactive_workouttype_piechart(self): + workouts = Workout.objects.filter(user=self.r) + script, div = interactiveplots.interactive_workouttype_piechart(workouts) + self.assertFalse(len(script)==0) + self.assertFalse(len(div)==0) + + def test_interactive_boxchart(self): + df = pd.read_csv('rowers/tests/testdata/boxplotdata.csv') + print(df.info()) + + script, div = interactiveplots.interactive_boxchart(df, 'spm') + + self.assertFalse(len(script)==0) + self.assertFalse(len(div)==0) + + def test_interactive_activitychart(self): + workouts = Workout.objects.filter(user=self.r).order_by('date') + workouts2 = Workout.objects.filter(user=self.r).order_by('-date') + + startdate = workouts[0].date-datetime.timedelta(days=5) + enddate = workouts2[0].date+datetime.timedelta(days=5) + script, div = interactiveplots.interactive_activitychart(workouts,startdate,enddate) + self.assertFalse(len(script)==0) + self.assertFalse(len(div)==0) diff --git a/rowers/tests/testdata/boxplotdata.csv b/rowers/tests/testdata/boxplotdata.csv new file mode 100644 index 00000000..c9e1f550 --- /dev/null +++ b/rowers/tests/testdata/boxplotdata.csv @@ -0,0 +1,18820 @@ +__null_dask_index__,distance,workoutstate,spm,driveenergy,date +1,3.9,4.0,27.750000000000036,106.30952380952395,2020-11-21 +1379,14288.2,4.0,18.42857142857144,332.16861429927906,2020-11-21 +1378,14277.6,4.0,18.380952380952394,329.81244635367,2020-11-21 +1377,14266.7,4.0,18.000000000000014,325.04745326461466,2020-11-21 +1376,14256.0,4.0,17.61904761904763,325.0512354764992,2020-11-21 +1375,14245.400000000001,4.0,17.66666666666668,333.3670659557099,2020-11-21 +1374,14234.5,4.0,17.714285714285726,342.87227770105267,2020-11-21 +1373,14223.6,4.0,17.85714285714287,349.51834277700294,2020-11-21 +1372,14212.400000000001,4.0,18.09523809523811,347.19060512366366,2020-11-21 +1371,14200.800000000001,4.0,17.90476190476192,334.81609528237095,2020-11-21 +1370,14190.2,4.0,18.142857142857153,320.1086743006294,2020-11-21 +1369,14179.400000000001,4.0,18.2857142857143,310.29342400953016,2020-11-21 +1368,14168.6,4.0,18.333333333333346,306.2268504879761,2020-11-21 +1380,14299.300000000001,4.0,18.238095238095248,335.41586650889667,2020-11-21 +1367,14158.6,4.0,18.2857142857143,310.9284254121915,2020-11-21 +1365,14137.2,4.0,17.90476190476192,323.19090052889385,2020-11-21 +1364,14126.6,4.0,18.000000000000014,326.57537444961326,2020-11-21 +1363,14115.5,4.0,18.09523809523811,330.8393164919111,2020-11-21 +1362,14105.0,4.0,17.85714285714287,335.65104465262505,2020-11-21 +1361,14094.2,4.0,17.714285714285726,338.29830507745555,2020-11-21 +1360,14083.6,4.0,17.66666666666668,336.4365675417756,2020-11-21 +1359,14071.900000000001,4.0,17.80952380952382,326.66244312400806,2020-11-21 +1358,14061.0,4.0,17.714285714285726,314.3384181589198,2020-11-21 +1357,14050.5,4.0,17.904761904761916,307.6969095646141,2020-11-21 +1356,14040.2,4.0,17.61904761904763,307.8453017343546,2020-11-21 +1355,14029.300000000001,4.0,17.285714285714295,313.0065201223571,2020-11-21 +1354,14018.0,4.0,17.333333333333343,323.51203760239014,2020-11-21 +1366,14147.800000000001,4.0,18.142857142857153,318.0457103284307,2020-11-21 +1381,14310.2,4.0,17.80952380952382,339.074995339113,2020-11-21 +1382,14320.900000000001,4.0,17.142857142857153,341.500256690808,2020-11-21 +1383,14332.400000000001,4.0,17.095238095238106,340.3836711816035,2020-11-21 +1410,14620.7,4.0,17.85714285714287,282.85914469662976,2020-11-21 +1409,14609.7,4.0,18.047619047619058,292.7074728447272,2020-11-21 +1408,14600.900000000001,4.0,18.47619047619049,304.77965224199727,2020-11-21 +1407,14590.6,4.0,18.714285714285726,313.20974033531144,2020-11-21 +1406,14579.800000000001,4.0,18.761904761904773,313.1259138583194,2020-11-21 +1405,14569.300000000001,4.0,18.523809523809536,309.81679209862654,2020-11-21 +1404,14558.900000000001,4.0,18.428571428571438,308.785632278056,2020-11-21 +1403,14548.5,4.0,18.142857142857153,309.6868026149343,2020-11-21 +1402,14538.1,4.0,17.761904761904773,310.8002771205439,2020-11-21 +1401,14526.900000000001,4.0,17.80952380952382,311.1341148439535,2020-11-21 +1400,14515.400000000001,4.0,17.523809523809536,309.174601022878,2020-11-21 +1399,14505.300000000001,4.0,17.428571428571438,307.01124815900914,2020-11-21 +1398,14494.2,4.0,17.61904761904763,309.3621919144073,2020-11-21 +1397,14483.2,4.0,17.761904761904773,313.2460262526928,2020-11-21 +1396,14472.1,4.0,17.428571428571438,319.7998373112124,2020-11-21 +1395,14461.1,4.0,17.47619047619049,327.39899710761733,2020-11-21 +1394,14449.900000000001,4.0,17.380952380952394,329.86820593155625,2020-11-21 +1393,14439.400000000001,4.0,17.571428571428584,323.4681950192563,2020-11-21 +1392,14428.1,4.0,17.952380952380963,312.52417993004246,2020-11-21 +1391,14417.7,4.0,18.09523809523811,302.37294649081844,2020-11-21 +1390,14407.800000000001,4.0,18.000000000000014,300.3417552379348,2020-11-21 +1389,14396.6,4.0,18.000000000000014,304.87248898125745,2020-11-21 +1388,14386.5,4.0,18.000000000000014,310.23358992508344,2020-11-21 +1387,14375.400000000001,4.0,18.09523809523811,312.9839723194668,2020-11-21 +1386,14364.7,4.0,17.952380952380963,315.8815356004668,2020-11-21 +1385,14354.2,4.0,17.66666666666668,322.5396904387011,2020-11-21 +1384,14343.1,4.0,17.238095238095248,333.58585892977254,2020-11-21 +1353,14007.800000000001,4.0,17.333333333333343,330.27521425579215,2020-11-21 +1411,14631.7,4.0,17.47619047619049,282.15231682492964,2020-11-21 +1352,13997.0,4.0,17.380952380952394,330.4880158483128,2020-11-21 +1350,13974.6,4.0,17.380952380952394,319.4572302957059,2020-11-21 +1318,13620.1,4.0,17.333333333333343,340.13257158838906,2020-11-21 +1317,13608.900000000001,4.0,17.380952380952394,351.2210636565922,2020-11-21 +1316,13598.1,4.0,17.47619047619049,360.4999251006988,2020-11-21 +1315,13586.1,4.0,17.61904761904763,362.0719522765784,2020-11-21 +1314,13575.1,4.0,17.380952380952394,354.98923015467506,2020-11-21 +1313,13563.300000000001,4.0,17.523809523809533,343.1249295037529,2020-11-21 +1312,13552.2,4.0,17.61904761904763,332.7446115974799,2020-11-21 +1311,13541.400000000001,4.0,17.66666666666668,323.2287018518397,2020-11-21 +1310,13530.400000000001,4.0,17.571428571428584,319.81695812083274,2020-11-21 +1309,13519.900000000001,4.0,17.85714285714287,321.6299565172999,2020-11-21 +1308,13508.5,4.0,17.66666666666668,324.9648399179113,2020-11-21 +1307,13497.1,4.0,17.523809523809533,328.67802884713103,2020-11-21 +1319,13631.1,4.0,17.333333333333343,330.44486690998684,2020-11-21 +1306,13486.2,4.0,17.42857142857144,328.71640186407274,2020-11-21 +1304,13463.900000000001,4.0,16.904761904761916,308.71899955340484,2020-11-21 +1303,13452.6,4.0,17.00000000000001,301.56138524406356,2020-11-21 +1302,13441.1,4.0,17.00000000000001,299.2651475022231,2020-11-21 +1301,13430.1,4.0,17.00000000000001,303.03437296866264,2020-11-21 +1300,13419.2,4.0,17.00000000000001,308.6560058707389,2020-11-21 +1299,13407.7,4.0,17.00000000000001,311.4680520370367,2020-11-21 +1298,13396.300000000001,4.0,17.00000000000001,312.4552731259301,2020-11-21 +1297,13385.300000000001,4.0,17.00000000000001,315.0514635028545,2020-11-21 +1296,13374.2,4.0,17.00000000000001,321.70839585311967,2020-11-21 +1295,13363.300000000001,4.0,17.00000000000001,330.8517060191605,2020-11-21 +1294,13351.5,4.0,17.00000000000001,337.27823730307296,2020-11-21 +1293,13340.900000000001,4.0,17.00000000000001,336.3742664075413,2020-11-21 +1305,13475.0,4.0,17.047619047619058,319.92572918793337,2020-11-21 +1320,13642.0,4.0,17.285714285714295,329.67807384879586,2020-11-21 +1321,13653.1,4.0,17.61904761904763,339.33561951809713,2020-11-21 +1322,13664.1,4.0,17.80952380952382,355.26931039023987,2020-11-21 +1349,13963.800000000001,4.0,17.238095238095248,315.0636363444775,2020-11-21 +1348,13952.900000000001,4.0,17.47619047619049,318.2796312911609,2020-11-21 +1347,13942.5,4.0,17.571428571428584,326.04361360508483,2020-11-21 +1346,13931.7,4.0,17.952380952380963,335.5455090353359,2020-11-21 +1345,13920.6,4.0,18.09523809523811,346.3182113932531,2020-11-21 +1344,13909.900000000001,4.0,18.000000000000014,355.53687717438925,2020-11-21 +1343,13899.0,4.0,18.000000000000014,358.6975809815043,2020-11-21 +1342,13887.6,4.0,18.000000000000014,355.8843699073219,2020-11-21 +1341,13876.800000000001,4.0,18.09523809523811,348.3459940785265,2020-11-21 +1340,13865.0,4.0,17.952380952380963,339.44418406768864,2020-11-21 +1339,13853.800000000001,4.0,17.66666666666668,335.13037881158175,2020-11-21 +1338,13843.1,4.0,17.333333333333343,336.86610892503114,2020-11-21 +1337,13831.900000000001,4.0,17.047619047619058,339.4837820218348,2020-11-21 +1336,13820.5,4.0,16.904761904761916,342.74725604698244,2020-11-21 +1335,13809.2,4.0,16.904761904761916,346.02413907285796,2020-11-21 +1334,13798.2,4.0,17.047619047619058,347.4398808209579,2020-11-21 +1333,13786.900000000001,4.0,17.333333333333343,346.49057166134185,2020-11-21 +1332,13775.2,4.0,17.66666666666668,344.52378266554024,2020-11-21 +1331,13764.5,4.0,17.952380952380963,342.25314254317993,2020-11-21 +1330,13753.800000000001,4.0,18.09523809523811,340.93030905971705,2020-11-21 +1329,13742.300000000001,4.0,18.000000000000014,341.80662741408173,2020-11-21 +1328,13731.400000000001,4.0,18.000000000000014,344.4930763610445,2020-11-21 +1327,13720.6,4.0,18.000000000000014,350.4453402137261,2020-11-21 +1326,13709.1,4.0,18.000000000000014,360.24138792832287,2020-11-21 +1325,13698.1,4.0,18.000000000000014,371.31612936754044,2020-11-21 +1324,13687.2,4.0,18.09523809523811,376.3682062641228,2020-11-21 +1323,13675.5,4.0,17.85714285714287,370.1851015506041,2020-11-21 +1351,13986.2,4.0,17.571428571428584,326.55065996963265,2020-11-21 +1292,13329.6,4.0,17.00000000000001,326.8812053137134,2020-11-21 +1412,14641.7,4.0,17.761904761904773,289.0460632610129,2020-11-21 +1414,14663.2,4.0,18.85714285714287,310.1337402647094,2020-11-21 +1501,15581.5,4.0,18.47619047619049,299.81785897409304,2020-11-21 +1500,15571.400000000001,4.0,18.47619047619049,299.63865189562046,2020-11-21 +1499,15561.0,4.0,18.523809523809536,299.9655988231485,2020-11-21 +1498,15550.400000000001,4.0,18.523809523809536,297.2156032564468,2020-11-21 +1497,15540.1,4.0,18.80952380952382,288.5203068599501,2020-11-21 +1496,15529.6,4.0,18.952380952380963,278.8608256983583,2020-11-21 +1495,15519.400000000001,4.0,18.952380952380963,277.488123107398,2020-11-21 +1494,15510.0,4.0,18.80952380952382,290.2625431473588,2020-11-21 +1493,15499.800000000001,4.0,18.61904761904763,312.8378014982312,2020-11-21 +1492,15489.5,4.0,18.2857142857143,335.54419851893357,2020-11-21 +1491,15479.2,4.0,18.238095238095248,350.37724972100347,2020-11-21 +1490,15468.300000000001,4.0,18.571428571428584,351.9265065685869,2020-11-21 +1502,15591.7,4.0,18.190476190476204,306.93237473509504,2020-11-21 +1489,15457.5,4.0,18.523809523809536,339.7433433266142,2020-11-21 +1487,15435.800000000001,4.0,18.571428571428584,297.7782193273358,2020-11-21 +1486,15425.300000000001,4.0,18.333333333333343,280.5008640909312,2020-11-21 +1485,15415.2,4.0,18.142857142857157,273.847708003858,2020-11-21 +1484,15405.800000000001,4.0,18.428571428571438,278.1657870622092,2020-11-21 +1483,15395.7,4.0,18.428571428571438,286.53290668642956,2020-11-21 +1482,15385.400000000001,4.0,18.23809523809525,294.58574270656555,2020-11-21 +1481,15374.900000000001,4.0,18.2857142857143,302.5731220728211,2020-11-21 +1480,15364.0,4.0,18.142857142857153,309.0313691023804,2020-11-21 +1479,15353.5,4.0,17.90476190476192,317.68403483514635,2020-11-21 +1478,15342.900000000001,4.0,18.000000000000014,324.2142349077018,2020-11-21 +1477,15332.1,4.0,17.90476190476192,326.0787053538521,2020-11-21 +1476,15320.7,4.0,18.333333333333343,325.27209148787813,2020-11-21 +1488,15446.7,4.0,18.523809523809536,319.18017967745993,2020-11-21 +1503,15602.2,4.0,18.142857142857153,318.8591629591088,2020-11-21 +1504,15613.1,4.0,17.90476190476192,330.16699931145206,2020-11-21 +1505,15623.800000000001,4.0,18.000000000000014,335.5346052277143,2020-11-21 +1532,15885.300000000001,4.0,20.761904761904777,280.808040214622,2020-11-21 +1531,15874.400000000001,4.0,20.47619047619049,255.93100851885774,2020-11-21 +1530,15865.5,4.0,20.571428571428584,223.84180412136106,2020-11-21 +1529,15856.5,4.0,21.142857142857157,200.7904735833509,2020-11-21 +1528,15848.800000000001,4.0,19.90476190476192,206.47701561306428,2020-11-21 +1527,15841.7,4.0,19.571428571428584,233.51697399400376,2020-11-21 +1526,15841.7,4.0,18.85714285714287,260.494072288588,2020-11-21 +1525,15831.800000000001,4.0,18.142857142857157,276.10428852122544,2020-11-21 +1524,15821.2,4.0,17.80952380952382,282.64250354665614,2020-11-21 +1523,15811.0,4.0,17.380952380952394,282.3833199957767,2020-11-21 +1522,15800.5,4.0,17.047619047619058,286.1580490148534,2020-11-21 +1521,15790.5,4.0,17.42857142857144,293.4814010202015,2020-11-21 +1520,15779.2,4.0,17.333333333333343,298.51680331651556,2020-11-21 +1519,15768.7,4.0,17.285714285714295,301.65370559253415,2020-11-21 +1518,15758.6,4.0,17.523809523809536,304.3688963362689,2020-11-21 +1517,15747.800000000001,4.0,17.952380952380963,302.23304763423096,2020-11-21 +1516,15737.2,4.0,18.142857142857153,296.75674274596764,2020-11-21 +1515,15726.6,4.0,18.42857142857144,289.1622799722599,2020-11-21 +1514,15717.2,4.0,18.2857142857143,282.29851500620293,2020-11-21 +1513,15706.900000000001,4.0,18.142857142857153,278.6210502210772,2020-11-21 +1512,15696.6,4.0,17.90476190476192,281.26650935961857,2020-11-21 +1511,15686.7,4.0,18.000000000000014,288.3611330033343,2020-11-21 +1510,15676.0,4.0,18.000000000000014,298.18174972505574,2020-11-21 +1509,15665.900000000001,4.0,18.000000000000014,308.5569410668224,2020-11-21 +1508,15655.6,4.0,18.000000000000014,318.92297701041633,2020-11-21 +1507,15645.300000000001,4.0,18.000000000000014,327.69169499790655,2020-11-21 +1506,15634.400000000001,4.0,18.000000000000014,334.5938600165447,2020-11-21 +1475,15309.2,4.0,18.00000000000001,325.3915473232509,2020-11-21 +1413,14652.7,4.0,18.190476190476204,300.4933968600121,2020-11-21 +1474,15299.1,4.0,17.761904761904773,325.7929919589056,2020-11-21 +1472,15276.5,4.0,17.66666666666668,329.8593795173396,2020-11-21 +1440,14940.5,4.0,18.047619047619058,306.45967130190456,2020-11-21 +1439,14930.0,4.0,18.428571428571438,302.83874067679574,2020-11-21 +1438,14919.1,4.0,18.61904761904763,301.8277215694786,2020-11-21 +1437,14908.6,4.0,18.61904761904763,307.5387582818148,2020-11-21 +1436,14898.7,4.0,18.428571428571438,318.4711460116767,2020-11-21 +1435,14887.6,4.0,17.952380952380963,328.4412479296643,2020-11-21 +1434,14876.5,4.0,18.047619047619058,332.4108490644885,2020-11-21 +1433,14865.900000000001,4.0,18.2857142857143,330.37247449614415,2020-11-21 +1432,14854.900000000001,4.0,18.42857142857144,322.6844004237199,2020-11-21 +1431,14844.900000000001,4.0,18.142857142857153,315.9820701671605,2020-11-21 +1430,14834.400000000001,4.0,17.952380952380963,311.95166516496306,2020-11-21 +1429,14823.900000000001,4.0,17.523809523809536,309.3668773682016,2020-11-21 +1441,14951.400000000001,4.0,17.90476190476192,309.92530484758123,2020-11-21 +1428,14812.900000000001,4.0,17.380952380952394,304.3464815161199,2020-11-21 +1426,14791.300000000001,4.0,17.142857142857153,291.7555086708366,2020-11-21 +1425,14780.400000000001,4.0,16.904761904761916,287.8896169414404,2020-11-21 +1424,14769.5,4.0,16.904761904761916,287.19944647903446,2020-11-21 +1423,14758.900000000001,4.0,17.047619047619058,289.49341960129357,2020-11-21 +1422,14748.300000000001,4.0,17.333333333333343,293.0979605987254,2020-11-21 +1421,14737.5,4.0,17.66666666666668,298.57896021121894,2020-11-21 +1420,14727.1,4.0,17.952380952380963,306.52714626211565,2020-11-21 +1419,14716.5,4.0,18.000000000000014,315.94606723635025,2020-11-21 +1418,14706.0,4.0,18.047619047619058,322.96372136489185,2020-11-21 +1417,14695.5,4.0,18.333333333333343,325.98393475882824,2020-11-21 +1416,14684.5,4.0,18.761904761904773,323.77795715050706,2020-11-21 +1415,14673.800000000001,4.0,18.90476190476192,318.2778771713557,2020-11-21 +1427,14802.2,4.0,17.190476190476204,298.3596205972732,2020-11-21 +1442,14961.800000000001,4.0,17.90476190476192,312.1518927725599,2020-11-21 +1443,14972.2,4.0,18.142857142857153,311.88416066435775,2020-11-21 +1444,14982.300000000001,4.0,18.2857142857143,309.58174312536437,2020-11-21 +1471,15265.800000000001,4.0,17.47619047619049,323.18809232152216,2020-11-21 +1470,15255.2,4.0,17.904761904761916,316.8661882334145,2020-11-21 +1469,15244.0,4.0,17.66666666666668,315.6961462727835,2020-11-21 +1468,15233.400000000001,4.0,17.714285714285726,318.4217590205917,2020-11-21 +1467,15222.6,4.0,17.85714285714287,325.196781527902,2020-11-21 +1466,15211.7,4.0,18.09523809523811,325.3863057122883,2020-11-21 +1465,15200.400000000001,4.0,18.000000000000014,318.8490152285342,2020-11-21 +1464,15190.400000000001,4.0,18.000000000000014,310.0912307942989,2020-11-21 +1463,15179.7,4.0,18.000000000000014,302.2838896377773,2020-11-21 +1462,15168.7,4.0,18.000000000000014,295.20220288665615,2020-11-21 +1461,15157.5,4.0,18.000000000000014,290.7676785313564,2020-11-21 +1460,15146.900000000001,4.0,18.000000000000014,289.11504102572525,2020-11-21 +1459,15136.800000000001,4.0,18.000000000000014,291.0677173423398,2020-11-21 +1458,15125.900000000001,4.0,18.000000000000014,296.06671249398397,2020-11-21 +1457,15115.300000000001,4.0,18.000000000000014,297.97632518155797,2020-11-21 +1456,15104.800000000001,4.0,18.000000000000014,291.10415917289026,2020-11-21 +1455,15094.0,4.0,18.000000000000014,277.65752702453017,2020-11-21 +1454,15083.900000000001,4.0,18.000000000000014,264.53036601328733,2020-11-21 +1453,15073.800000000001,4.0,18.000000000000014,257.3472427597243,2020-11-21 +1452,15063.300000000001,4.0,17.90476190476192,258.6223360073061,2020-11-21 +1451,15053.6,4.0,18.142857142857153,263.2847147326195,2020-11-21 +1450,15042.900000000001,4.0,18.2857142857143,267.2343695643205,2020-11-21 +1449,15033.2,4.0,18.333333333333346,270.39938023611353,2020-11-21 +1448,15023.5,4.0,18.190476190476204,275.7696314170602,2020-11-21 +1447,15013.5,4.0,18.2857142857143,284.4301582289387,2020-11-21 +1446,15003.1,4.0,18.190476190476204,295.60083376799946,2020-11-21 +1445,14992.5,4.0,18.333333333333346,304.2066583335627,2020-11-21 +1473,15288.400000000001,4.0,17.61904761904763,331.046833144062,2020-11-21 +1291,13318.2,4.0,17.00000000000001,313.51158955704824,2020-11-21 +1290,13306.800000000001,4.0,17.00000000000001,305.95152378639114,2020-11-21 +1289,13296.2,4.0,17.00000000000001,304.0966348440056,2020-11-21 +1124,11584.800000000001,4.0,17.761904761904773,271.87991467746156,2020-11-21 +1123,11574.800000000001,4.0,17.523809523809533,276.0638104206135,2020-11-21 +1122,11565.1,4.0,17.42857142857144,287.3647418253143,2020-11-21 +1121,11554.5,4.0,17.047619047619058,302.6956484950915,2020-11-21 +1120,11543.900000000001,4.0,16.904761904761916,315.939901037189,2020-11-21 +1119,11533.300000000001,4.0,16.904761904761916,322.18111339520533,2020-11-21 +1118,11522.6,4.0,17.047619047619058,316.7686540927996,2020-11-21 +1117,11511.400000000001,4.0,17.333333333333343,303.56232511194264,2020-11-21 +1116,11500.6,4.0,17.761904761904773,290.777124432851,2020-11-21 +1115,11490.6,4.0,17.904761904761916,283.8364021203533,2020-11-21 +1114,11480.5,4.0,17.66666666666668,284.87310010664896,2020-11-21 +1113,11470.1,4.0,17.47619047619049,292.94986802219563,2020-11-21 +1125,11595.6,4.0,17.61904761904763,273.04949471263967,2020-11-21 +1112,11459.900000000001,4.0,17.333333333333343,300.50988864858175,2020-11-21 +1110,11438.800000000001,4.0,17.2857142857143,305.4956701855549,2020-11-21 +1109,11428.0,4.0,17.047619047619058,299.33696864262583,2020-11-21 +1108,11416.2,4.0,16.952380952380963,290.7385941656417,2020-11-21 +1107,11406.1,4.0,17.42857142857144,288.382809609978,2020-11-21 +1106,11395.7,4.0,17.61904761904763,293.96080382972866,2020-11-21 +1105,11385.1,4.0,17.523809523809533,309.88641622425627,2020-11-21 +1104,11374.800000000001,4.0,17.47619047619049,329.3596266566741,2020-11-21 +1103,11363.800000000001,4.0,17.380952380952394,339.7300264866528,2020-11-21 +1102,11352.800000000001,4.0,17.66666666666668,338.6772886689997,2020-11-21 +1101,11341.800000000001,4.0,17.904761904761916,330.6490903270346,2020-11-21 +1100,11330.400000000001,4.0,17.761904761904773,317.53586255768096,2020-11-21 +1099,11320.400000000001,4.0,17.238095238095248,306.72125327973595,2020-11-21 +1111,11449.1,4.0,17.238095238095248,304.6549494711942,2020-11-21 +1126,11606.2,4.0,17.428571428571438,275.9380836427986,2020-11-21 +1127,11616.6,4.0,17.61904761904763,279.6156650651227,2020-11-21 +1128,11626.6,4.0,17.66666666666668,280.6117289189617,2020-11-21 +1165,11929.800000000001,4.0,17.714285714285726,325.11653336941646,2020-11-21 +1164,11919.1,4.0,17.85714285714287,331.43977407007367,2020-11-21 +1163,11908.800000000001,4.0,18.09523809523811,336.7640432137189,2020-11-21 +1162,11897.400000000001,4.0,18.09523809523811,339.98683213007035,2020-11-21 +1161,11886.5,4.0,17.85714285714287,338.3378063641561,2020-11-21 +1160,11875.400000000001,4.0,17.714285714285726,329.80805235360657,2020-11-21 +1159,11863.900000000001,4.0,17.66666666666668,315.9887906016497,2020-11-21 +1158,11853.6,4.0,17.714285714285726,301.9422027938018,2020-11-21 +1157,11842.7,4.0,17.85714285714287,294.20539465828887,2020-11-21 +1156,11832.2,4.0,18.09523809523811,295.9795492219721,2020-11-21 +1155,11821.5,4.0,18.000000000000014,303.667725518156,2020-11-21 +1154,11811.400000000001,4.0,17.90476190476192,310.0968150258509,2020-11-21 +1153,11800.5,4.0,18.047619047619058,313.38708110165726,2020-11-21 +1152,11789.7,4.0,18.428571428571438,314.1465276032618,2020-11-21 +1151,11779.2,4.0,18.61904761904763,312.2398332380675,2020-11-21 +1150,11768.6,4.0,18.714285714285726,288.77714936238743,2020-11-21 +1149,11758.5,4.0,18.47619047619049,238.13519727467383,2020-11-21 +1148,11748.1,4.0,18.238095238095248,163.48754957013455,2020-11-21 +1137,11707.800000000001,4.0,16.571428571428584,102.04785991251077,2020-11-21 +1136,11688.2,4.0,17.09523809523811,202.80189942758835,2020-11-21 +1135,11688.2,4.0,17.2857142857143,288.7398559784982,2020-11-21 +1134,11688.2,4.0,19.523809523809536,331.7302254753147,2020-11-21 +1133,11678.400000000001,4.0,18.428571428571438,320.33110069766315,2020-11-21 +1132,11668.0,4.0,17.90476190476192,286.40643259832797,2020-11-21 +1131,11657.7,4.0,17.61904761904763,281.1325593400731,2020-11-21 +1130,11647.6,4.0,17.761904761904773,282.2142171894078,2020-11-21 +1129,11637.1,4.0,17.571428571428584,281.05344406756467,2020-11-21 +1098,11309.5,4.0,17.190476190476204,302.72511739462027,2020-11-21 +1166,11941.0,4.0,17.66666666666668,319.23088656164055,2020-11-21 +1097,11298.6,4.0,17.190476190476204,305.04972751963135,2020-11-21 +1095,11277.5,4.0,17.42857142857144,324.8529180816683,2020-11-21 +1063,10935.5,4.0,17.61904761904763,318.1184447661868,2020-11-21 +1062,10925.1,4.0,17.42857142857144,324.8924312017349,2020-11-21 +1061,10914.0,4.0,17.047619047619058,329.24502720091454,2020-11-21 +1060,10903.2,4.0,16.904761904761916,328.0315372017155,2020-11-21 +1059,10892.2,4.0,16.904761904761916,318.25455437634946,2020-11-21 +1058,10881.0,4.0,17.047619047619058,302.28032162540467,2020-11-21 +1057,10870.7,4.0,17.42857142857144,287.21888649275104,2020-11-21 +1056,10860.0,4.0,17.61904761904763,279.55828186668987,2020-11-21 +1055,10849.5,4.0,17.61904761904763,282.71339734624235,2020-11-21 +1054,10839.2,4.0,17.42857142857144,294.71993906303436,2020-11-21 +1053,10828.6,4.0,17.047619047619058,306.4631530613331,2020-11-21 +1052,10818.0,4.0,16.80952380952382,315.26203623146955,2020-11-21 +1064,10946.5,4.0,17.61904761904763,313.35901667356285,2020-11-21 +1051,10807.2,4.0,17.142857142857153,318.2542170887351,2020-11-21 +1049,10784.900000000001,4.0,17.47619047619049,314.4374267190493,2020-11-21 +1048,10774.0,4.0,17.571428571428584,317.5605978130169,2020-11-21 +1047,10763.0,4.0,17.47619047619049,322.6752112118679,2020-11-21 +1046,10752.1,4.0,17.095238095238106,326.29076878511114,2020-11-21 +1045,10741.1,4.0,17.190476190476204,322.77290585961214,2020-11-21 +1044,10729.900000000001,4.0,17.333333333333343,310.95302051930815,2020-11-21 +1043,10718.400000000001,4.0,17.523809523809533,296.51027351802225,2020-11-21 +1042,10708.800000000001,4.0,17.761904761904773,289.7462141331792,2020-11-21 +1041,10698.6,4.0,17.61904761904763,289.62865845063936,2020-11-21 +1040,10688.0,4.0,17.428571428571438,291.12649822105647,2020-11-21 +1039,10677.0,4.0,17.61904761904763,292.45388891917275,2020-11-21 +1038,10666.400000000001,4.0,17.761904761904773,292.0292493992683,2020-11-21 +1050,10796.0,4.0,17.190476190476204,316.7072212870945,2020-11-21 +1065,10957.400000000001,4.0,17.42857142857144,311.4753976353528,2020-11-21 +1066,10967.7,4.0,17.047619047619058,311.55963053682615,2020-11-21 +1067,10978.800000000001,4.0,16.904761904761916,311.0725872082256,2020-11-21 +1094,11266.7,4.0,17.42857142857144,329.86394993476404,2020-11-21 +1093,11255.6,4.0,17.142857142857153,324.2657243391024,2020-11-21 +1092,11244.1,4.0,17.42857142857144,313.7420645411196,2020-11-21 +1091,11233.800000000001,4.0,17.42857142857144,303.22194725864597,2020-11-21 +1090,11223.400000000001,4.0,17.238095238095248,297.9634259880911,2020-11-21 +1089,11212.6,4.0,17.2857142857143,301.71911617964054,2020-11-21 +1088,11202.2,4.0,17.142857142857153,306.1422442311133,2020-11-21 +1087,11191.400000000001,4.0,16.904761904761916,306.00809278375476,2020-11-21 +1086,11180.1,4.0,17.00000000000001,301.66891911014534,2020-11-21 +1085,11169.2,4.0,17.00000000000001,293.2050236821932,2020-11-21 +1084,11159.0,4.0,17.00000000000001,283.2317173728356,2020-11-21 +1083,11147.900000000001,4.0,17.095238095238106,273.3615949531777,2020-11-21 +1082,11136.900000000001,4.0,16.952380952380963,263.7323146451701,2020-11-21 +1081,11126.0,4.0,16.66666666666668,256.7215495040371,2020-11-21 +1080,11116.0,4.0,16.238095238095248,255.34714732351884,2020-11-21 +1079,11105.2,4.0,16.095238095238106,260.1775865169352,2020-11-21 +1078,11095.300000000001,4.0,16.238095238095248,270.57053546159636,2020-11-21 +1077,11084.6,4.0,16.66666666666668,281.6443397049307,2020-11-21 +1076,11074.400000000001,4.0,16.952380952380963,292.001989861866,2020-11-21 +1075,11063.900000000001,4.0,17.095238095238106,298.0295085310985,2020-11-21 +1074,11053.1,4.0,16.904761904761916,298.0593267785106,2020-11-21 +1073,11042.1,4.0,17.142857142857153,293.01358063852365,2020-11-21 +1072,11031.7,4.0,17.2857142857143,287.03984866402175,2020-11-21 +1071,11021.1,4.0,17.333333333333343,284.3600824195577,2020-11-21 +1070,11010.800000000001,4.0,17.2857142857143,289.36131235729107,2020-11-21 +1069,11000.2,4.0,17.142857142857153,298.1503989226202,2020-11-21 +1068,10989.6,4.0,16.904761904761916,306.7987043005684,2020-11-21 +1096,11287.6,4.0,17.238095238095248,312.86628613633616,2020-11-21 +1167,11951.900000000001,4.0,17.80952380952382,314.7395734022044,2020-11-21 +1168,11963.2,4.0,17.714285714285726,314.89603475785907,2020-11-21 +1169,11973.5,4.0,17.80952380952382,320.828857053113,2020-11-21 +1257,12945.1,4.0,17.333333333333343,336.9371849821263,2020-11-21 +1256,12934.300000000001,4.0,17.190476190476204,329.0452875959063,2020-11-21 +1255,12923.400000000001,4.0,17.2857142857143,315.72656141942207,2020-11-21 +1254,12911.7,4.0,17.190476190476204,302.84321664584377,2020-11-21 +1253,12900.900000000001,4.0,17.333333333333343,296.05265994016736,2020-11-21 +1252,12890.5,4.0,17.2857142857143,301.42640966854594,2020-11-21 +1251,12879.5,4.0,17.142857142857153,312.65928846089116,2020-11-21 +1250,12868.7,4.0,16.80952380952382,321.48640601733916,2020-11-21 +1249,12857.5,4.0,17.047619047619058,319.7825167345272,2020-11-21 +1248,12845.5,4.0,17.333333333333343,308.07413667966216,2020-11-21 +1247,12834.6,4.0,17.761904761904773,293.07710941812695,2020-11-21 +1246,12824.1,4.0,17.904761904761916,286.3093772272622,2020-11-21 +1258,12955.7,4.0,17.2857142857143,339.758887153787,2020-11-21 +1245,12813.6,4.0,17.761904761904773,290.1248339310291,2020-11-21 +1243,12792.1,4.0,17.047619047619058,315.9377795527637,2020-11-21 +1242,12781.300000000001,4.0,16.904761904761916,322.7278955388839,2020-11-21 +1241,12770.5,4.0,17.00000000000001,321.2053521641092,2020-11-21 +1240,12759.7,4.0,17.00000000000001,313.92152354814897,2020-11-21 +1239,12748.300000000001,4.0,16.904761904761916,306.29964469257266,2020-11-21 +1238,12737.800000000001,4.0,17.047619047619058,304.7341916220498,2020-11-21 +1237,12727.0,4.0,17.333333333333343,308.985612348451,2020-11-21 +1236,12715.900000000001,4.0,17.66666666666668,317.10672567703716,2020-11-21 +1235,12705.2,4.0,17.952380952380963,323.78090255504105,2020-11-21 +1234,12694.2,4.0,18.000000000000014,324.41633498124014,2020-11-21 +1233,12683.2,4.0,18.238095238095248,319.7974210277711,2020-11-21 +1232,12672.1,4.0,18.238095238095248,314.2646259962342,2020-11-21 +1244,12803.0,4.0,17.333333333333343,302.8043786934127,2020-11-21 +1259,12967.400000000001,4.0,17.142857142857153,337.8107392992031,2020-11-21 +1260,12978.6,4.0,16.904761904761916,334.53653034295183,2020-11-21 +1261,12989.300000000001,4.0,17.00000000000001,330.77764578830613,2020-11-21 +1288,13284.7,4.0,16.904761904761916,305.7384101005264,2020-11-21 +1287,13273.300000000001,4.0,17.142857142857153,305.69660171492103,2020-11-21 +1286,13263.0,4.0,17.190476190476204,299.56771884060515,2020-11-21 +1285,13252.400000000001,4.0,17.47619047619049,289.80675354906714,2020-11-21 +1284,13241.300000000001,4.0,17.571428571428584,285.09136023163705,2020-11-21 +1283,13230.6,4.0,17.380952380952394,286.46895178747724,2020-11-21 +1282,13220.2,4.0,17.238095238095248,297.4592780835443,2020-11-21 +1281,13210.1,4.0,17.571428571428584,310.9879871152799,2020-11-21 +1280,13198.5,4.0,17.428571428571438,320.3414906576192,2020-11-21 +1279,13187.5,4.0,17.66666666666668,326.5950921759529,2020-11-21 +1278,13177.2,4.0,17.85714285714287,329.9172338884077,2020-11-21 +1277,13166.400000000001,4.0,17.571428571428584,330.35840821755505,2020-11-21 +1276,13155.300000000001,4.0,17.66666666666668,330.36840454831645,2020-11-21 +1275,13144.6,4.0,17.61904761904763,327.61421093053815,2020-11-21 +1274,13133.300000000001,4.0,17.523809523809533,322.87617136075414,2020-11-21 +1273,13122.300000000001,4.0,17.47619047619049,320.7340172740593,2020-11-21 +1272,13111.2,4.0,17.47619047619049,317.6857082279259,2020-11-21 +1271,13100.5,4.0,17.190476190476204,315.9430173674915,2020-11-21 +1270,13089.1,4.0,17.142857142857153,315.5885963205908,2020-11-21 +1269,13078.400000000001,4.0,16.904761904761916,317.30562628216813,2020-11-21 +1268,13067.400000000001,4.0,17.00000000000001,322.00527417826004,2020-11-21 +1267,13056.6,4.0,17.00000000000001,328.54348195824366,2020-11-21 +1266,13045.400000000001,4.0,17.00000000000001,331.7775224036671,2020-11-21 +1265,13034.2,4.0,17.00000000000001,332.1433816082519,2020-11-21 +1264,13022.7,4.0,17.00000000000001,330.2420323098486,2020-11-21 +1263,13012.5,4.0,17.00000000000001,328.11287202397705,2020-11-21 +1262,13000.800000000001,4.0,17.00000000000001,328.48230630663045,2020-11-21 +1231,12661.2,4.0,18.000000000000014,311.9656451521,2020-11-21 +1230,12650.900000000001,4.0,17.61904761904763,317.15739937144417,2020-11-21 +1229,12640.300000000001,4.0,17.190476190476204,325.21139802930514,2020-11-21 +1228,12629.1,4.0,16.80952380952382,332.2496791251186,2020-11-21 +1196,12272.0,4.0,17.333333333333343,334.26590995163883,2020-11-21 +1195,12261.0,4.0,17.2857142857143,325.10741431963754,2020-11-21 +1194,12250.2,4.0,17.142857142857153,321.7552707848306,2020-11-21 +1193,12239.300000000001,4.0,16.904761904761916,325.2289940776528,2020-11-21 +1192,12228.400000000001,4.0,16.904761904761916,336.23606585662253,2020-11-21 +1191,12217.2,4.0,17.142857142857153,350.652652993776,2020-11-21 +1190,12206.1,4.0,17.190476190476204,359.56779981792454,2020-11-21 +1189,12194.900000000001,4.0,17.380952380952394,358.00967452750297,2020-11-21 +1188,12183.800000000001,4.0,17.714285714285726,347.34499670347384,2020-11-21 +1187,12172.1,4.0,17.761904761904773,332.1520037138431,2020-11-21 +1186,12161.1,4.0,17.523809523809533,322.63041698904357,2020-11-21 +1185,12150.2,4.0,17.333333333333343,321.6392692568837,2020-11-21 +1184,12139.0,4.0,17.095238095238106,322.23116984530157,2020-11-21 +1183,12127.800000000001,4.0,17.238095238095248,323.228660387581,2020-11-21 +1182,12117.0,4.0,17.761904761904773,325.31234096695323,2020-11-21 +1181,12106.1,4.0,17.80952380952382,328.3835995752826,2020-11-21 +1180,12095.900000000001,4.0,17.80952380952382,332.8841041988094,2020-11-21 +1179,12084.800000000001,4.0,17.761904761904773,335.91232762473265,2020-11-21 +1178,12072.900000000001,4.0,17.66666666666668,331.98802879826883,2020-11-21 +1177,12062.5,4.0,17.428571428571438,329.78347849219216,2020-11-21 +1176,12051.400000000001,4.0,17.571428571428584,333.1498873219002,2020-11-21 +1175,12040.1,4.0,17.238095238095248,338.91014947903284,2020-11-21 +1174,12028.900000000001,4.0,17.285714285714295,344.4418184751846,2020-11-21 +1173,12018.0,4.0,17.714285714285726,347.3056063337421,2020-11-21 +1172,12006.6,4.0,17.66666666666668,343.27439799640246,2020-11-21 +1171,11995.7,4.0,17.571428571428584,336.7331285471598,2020-11-21 +1170,11984.800000000001,4.0,17.761904761904773,329.5616935351645,2020-11-21 +1197,12283.400000000001,4.0,17.2857142857143,346.3525216011168,2020-11-21 +1533,15894.2,4.0,21.000000000000014,283.82552420834986,2020-11-21 +1198,12294.800000000001,4.0,17.142857142857153,354.5642785813442,2020-11-21 +1200,12318.1,4.0,17.00000000000001,353.84644120672976,2020-11-21 +1227,12618.1,4.0,17.00000000000001,334.4514238170503,2020-11-21 +1226,12606.6,4.0,17.00000000000001,330.8765780308513,2020-11-21 +1225,12595.400000000001,4.0,17.00000000000001,323.8163956428662,2020-11-21 +1224,12583.900000000001,4.0,17.00000000000001,317.3313542889554,2020-11-21 +1223,12573.2,4.0,17.00000000000001,314.19131354598505,2020-11-21 +1222,12562.300000000001,4.0,17.00000000000001,317.1735071210104,2020-11-21 +1221,12551.5,4.0,16.904761904761916,323.139407885166,2020-11-21 +1220,12540.400000000001,4.0,17.047619047619058,328.3897879127875,2020-11-21 +1219,12529.6,4.0,17.42857142857144,330.1817071443462,2020-11-21 +1218,12518.5,4.0,17.61904761904763,326.6505316717311,2020-11-21 +1217,12507.0,4.0,17.61904761904763,321.06409847111934,2020-11-21 +1216,12496.300000000001,4.0,17.42857142857144,317.3117416192824,2020-11-21 +1215,12486.0,4.0,17.047619047619058,316.4174935154142,2020-11-21 +1214,12475.0,4.0,16.904761904761916,319.4038771754719,2020-11-21 +1213,12463.6,4.0,17.00000000000001,324.88994039195177,2020-11-21 +1212,12452.7,4.0,17.00000000000001,329.4595700699873,2020-11-21 +1211,12441.400000000001,4.0,17.00000000000001,332.330084105119,2020-11-21 +1210,12429.900000000001,4.0,17.00000000000001,331.7711144006778,2020-11-21 +1209,12418.5,4.0,16.904761904761916,328.5304236941936,2020-11-21 +1208,12407.5,4.0,17.142857142857153,326.6376788536197,2020-11-21 +1207,12396.400000000001,4.0,17.2857142857143,327.98607131283546,2020-11-21 +1206,12385.400000000001,4.0,17.333333333333343,331.29969780102954,2020-11-21 +1205,12374.2,4.0,17.2857142857143,337.20352262028666,2020-11-21 +1204,12363.2,4.0,17.142857142857153,341.70035088330576,2020-11-21 +1203,12352.1,4.0,16.904761904761916,343.75083243464456,2020-11-21 +1202,12340.6,4.0,17.00000000000001,345.21940106107695,2020-11-21 +1201,12329.800000000001,4.0,17.00000000000001,349.5245750179265,2020-11-21 +1199,12306.300000000001,4.0,16.904761904761916,356.65798542955304,2020-11-21 +1037,10656.1,4.0,17.523809523809533,291.9356245678304,2020-11-21 +1534,15902.5,4.0,20.761904761904777,275.45372239613016,2020-11-21 +1536,15922.400000000001,4.0,19.52380952380954,269.40244359932035,2020-11-21 +1881,19262.100000000002,4.0,17.571428571428584,234.7852065646499,2020-11-21 +1880,19252.7,4.0,17.952380952380963,248.2285001778568,2020-11-21 +1879,19242.4,4.0,18.190476190476204,245.3789225566633,2020-11-21 +1878,19232.600000000002,4.0,17.85714285714287,234.09245742048338,2020-11-21 +1877,19222.5,4.0,17.714285714285726,223.28005673985786,2020-11-21 +1876,19213.4,4.0,17.66666666666668,216.5335357290435,2020-11-21 +1875,19203.8,4.0,17.80952380952382,213.3375232588889,2020-11-21 +1874,19193.9,4.0,17.714285714285726,218.8983049532136,2020-11-21 +1873,19184.8,4.0,17.904761904761916,229.83579485548714,2020-11-21 +1872,19175.5,4.0,17.523809523809536,240.45981116507795,2020-11-21 +1871,19165.600000000002,4.0,17.428571428571438,245.78777319329157,2020-11-21 +1870,19155.600000000002,4.0,17.523809523809536,245.4457926918924,2020-11-21 +1882,19271.3,4.0,17.380952380952394,206.14156090494853,2020-11-21 +1869,19145.5,4.0,17.714285714285726,240.23753195029752,2020-11-21 +1867,19126.2,4.0,18.380952380952394,235.11578890610372,2020-11-21 +1866,19117.100000000002,4.0,18.333333333333346,236.9945708288478,2020-11-21 +1865,19107.5,4.0,18.2857142857143,246.10642522068545,2020-11-21 +1864,19097.8,4.0,18.142857142857153,261.57412815889313,2020-11-21 +1863,19088.0,4.0,17.90476190476192,278.63025915592794,2020-11-21 +1862,19078.100000000002,4.0,18.000000000000014,291.5750780049486,2020-11-21 +1861,19067.600000000002,4.0,17.90476190476192,295.4884042749577,2020-11-21 +1860,19057.2,4.0,18.047619047619058,291.0016316470593,2020-11-21 +1859,19046.8,4.0,18.333333333333343,286.7059239595061,2020-11-21 +1858,19036.9,4.0,18.761904761904773,285.5998020688925,2020-11-21 +1857,19026.8,4.0,18.809523809523824,287.8719716168909,2020-11-21 +1856,19017.0,4.0,18.90476190476192,288.4845989121104,2020-11-21 +1868,19135.9,4.0,18.000000000000014,236.55531476122576,2020-11-21 +1883,19279.4,4.0,17.380952380952394,172.2227895434254,2020-11-21 +1884,19287.5,4.0,17.66666666666668,152.15895015267856,2020-11-21 +1885,19296.5,4.0,17.80952380952382,156.995466891943,2020-11-21 +1912,19537.3,4.0,17.66666666666668,192.98244583770224,2020-11-21 +1911,19528.0,4.0,17.66666666666668,180.34260289868604,2020-11-21 +1910,19519.3,4.0,17.428571428571438,166.73304368119204,2020-11-21 +1909,19510.2,4.0,17.571428571428584,157.42350780581975,2020-11-21 +1908,19501.3,4.0,17.238095238095248,153.91052321723475,2020-11-21 +1907,19492.600000000002,4.0,17.380952380952394,154.55792490612004,2020-11-21 +1906,19484.2,4.0,17.47619047619049,160.2922069368943,2020-11-21 +1905,19475.7,4.0,17.523809523809533,167.43422610366267,2020-11-21 +1904,19466.5,4.0,17.523809523809536,176.9584429828776,2020-11-21 +1903,19457.5,4.0,17.80952380952382,189.06947290597594,2020-11-21 +1902,19449.600000000002,4.0,17.85714285714287,197.81446377139434,2020-11-21 +1901,19440.100000000002,4.0,18.09523809523811,196.2300017874777,2020-11-21 +1900,19430.8,4.0,18.09523809523811,186.96818293522318,2020-11-21 +1899,19421.600000000002,4.0,17.952380952380963,176.00395978607617,2020-11-21 +1898,19412.600000000002,4.0,17.571428571428584,172.48197429423448,2020-11-21 +1897,19404.2,4.0,17.47619047619049,178.25409601375134,2020-11-21 +1896,19395.7,4.0,17.238095238095248,186.39367663890664,2020-11-21 +1895,19386.8,4.0,17.380952380952394,186.8604269515672,2020-11-21 +1894,19377.600000000002,4.0,17.47619047619049,179.60862104961188,2020-11-21 +1893,19368.5,4.0,17.61904761904763,169.86688402289911,2020-11-21 +1892,19359.600000000002,4.0,17.47619047619049,165.03082846605398,2020-11-21 +1891,19350.9,4.0,17.380952380952394,168.3621762393247,2020-11-21 +1890,19342.5,4.0,17.333333333333343,180.47609839533078,2020-11-21 +1889,19333.3,4.0,17.333333333333343,194.9525843795324,2020-11-21 +1888,19324.100000000002,4.0,17.285714285714295,202.89560083352094,2020-11-21 +1887,19315.2,4.0,17.61904761904763,196.99073300354002,2020-11-21 +1886,19305.4,4.0,17.904761904761916,177.79149702398217,2020-11-21 +1855,19006.7,4.0,18.61904761904763,284.15959356450827,2020-11-21 +1913,19546.600000000002,4.0,17.85714285714287,200.04150164290792,2020-11-21 +1854,18996.3,4.0,18.380952380952394,274.387136180153,2020-11-21 +1852,18975.7,4.0,18.190476190476204,262.77034132647833,2020-11-21 +1820,18655.0,4.0,18.238095238095248,276.31168746427727,2020-11-21 +1819,18645.5,4.0,18.09523809523811,291.77083229610884,2020-11-21 +1818,18634.7,4.0,18.333333333333343,295.4783718698579,2020-11-21 +1817,18624.2,4.0,18.61904761904763,286.7705056542146,2020-11-21 +1816,18613.7,4.0,18.61904761904763,277.1307889092605,2020-11-21 +1815,18603.3,4.0,18.428571428571438,276.1780367595348,2020-11-21 +1814,18593.2,4.0,17.952380952380963,285.00362156367765,2020-11-21 +1813,18583.3,4.0,18.047619047619058,295.43720114862555,2020-11-21 +1812,18572.7,4.0,18.2857142857143,298.17605736898497,2020-11-21 +1811,18562.3,4.0,18.333333333333346,290.3023852875479,2020-11-21 +1810,18551.7,4.0,18.2857142857143,280.5398063010197,2020-11-21 +1809,18542.0,4.0,18.142857142857153,277.21398039804643,2020-11-21 +1821,18664.8,4.0,18.66666666666668,258.324551589286,2020-11-21 +1808,18531.7,4.0,17.90476190476192,282.6144469631995,2020-11-21 +1806,18511.0,4.0,18.142857142857153,301.27033002003657,2020-11-21 +1805,18500.5,4.0,18.190476190476204,298.29499096365043,2020-11-21 +1804,18489.9,4.0,18.380952380952394,285.0825930692654,2020-11-21 +1803,18479.600000000002,4.0,18.714285714285726,267.4281153542307,2020-11-21 +1802,18469.600000000002,4.0,18.761904761904773,249.14547942847057,2020-11-21 +1801,18459.5,4.0,18.42857142857144,239.32865139112096,2020-11-21 +1800,18450.3,4.0,18.571428571428584,242.5916625597022,2020-11-21 +1799,18440.600000000002,4.0,18.238095238095248,255.47860284209452,2020-11-21 +1798,18431.2,4.0,18.2857142857143,272.3841919261433,2020-11-21 +1797,18421.5,4.0,18.714285714285726,286.0308496812605,2020-11-21 +1796,18411.0,4.0,18.66666666666668,287.1142174303261,2020-11-21 +1795,18400.9,4.0,18.571428571428584,280.4077954264551,2020-11-21 +1807,18521.2,4.0,17.90476190476192,293.57263624583607,2020-11-21 +1822,18674.7,4.0,18.952380952380963,250.31667958477573,2020-11-21 +1823,18684.5,4.0,19.09523809523811,257.68414181379774,2020-11-21 +1824,18695.0,4.0,19.000000000000014,276.4455837608556,2020-11-21 +1851,18966.2,4.0,18.238095238095248,266.51337360371053,2020-11-21 +1850,18955.600000000002,4.0,18.66666666666668,272.6728584904298,2020-11-21 +1849,18946.3,4.0,18.952380952380963,277.744526877765,2020-11-21 +1848,18936.0,4.0,19.09523809523811,278.2131576789346,2020-11-21 +1847,18926.0,4.0,18.90476190476192,277.34724634558467,2020-11-21 +1846,18916.100000000002,4.0,19.142857142857157,277.81780919291595,2020-11-21 +1845,18906.3,4.0,19.2857142857143,281.559085976457,2020-11-21 +1844,18896.5,4.0,19.333333333333346,287.2557286807161,2020-11-21 +1843,18886.3,4.0,19.2857142857143,293.74132334124783,2020-11-21 +1842,18876.4,4.0,19.142857142857157,297.37835556168557,2020-11-21 +1841,18866.5,4.0,18.90476190476192,300.0984956194291,2020-11-21 +1840,18856.5,4.0,19.000000000000014,302.3650122051433,2020-11-21 +1839,18846.2,4.0,19.000000000000014,302.5456548243811,2020-11-21 +1838,18836.3,4.0,19.000000000000014,300.14628882056854,2020-11-21 +1837,18826.0,4.0,19.000000000000014,293.7098638616471,2020-11-21 +1836,18815.7,4.0,19.000000000000014,284.7909626805423,2020-11-21 +1835,18805.4,4.0,19.09523809523811,279.3767465365214,2020-11-21 +1834,18795.3,4.0,18.85714285714287,280.1574384857212,2020-11-21 +1833,18785.8,4.0,18.714285714285726,284.71896784783166,2020-11-21 +1832,18775.7,4.0,18.66666666666668,289.55479746256555,2020-11-21 +1831,18765.5,4.0,18.714285714285726,290.91085711150913,2020-11-21 +1830,18755.7,4.0,18.85714285714287,291.04436965920144,2020-11-21 +1829,18745.4,4.0,19.09523809523811,293.6915721568058,2020-11-21 +1828,18735.100000000002,4.0,19.000000000000014,300.6823091497914,2020-11-21 +1827,18725.2,4.0,19.000000000000014,307.27051773055496,2020-11-21 +1826,18714.8,4.0,19.000000000000014,306.8064301228276,2020-11-21 +1825,18704.9,4.0,19.000000000000014,295.5276161417534,2020-11-21 +1853,18986.5,4.0,18.095238095238106,266.17057411450594,2020-11-21 +1794,18391.4,4.0,18.761904761904773,274.81823454057206,2020-11-21 +1914,19556.4,4.0,18.047619047619058,204.97612938440386,2020-11-21 +1916,19574.8,4.0,18.571428571428584,211.31732246086423,2020-11-21 +2001,20266.9,4.0,17.61904761904763,366.76190476190504,2020-11-21 +2002,20266.9,4.0,19.23809523809525,306.6190476190478,2020-11-21 +2003,20266.9,4.0,15.523809523809533,244.61904761904776,2020-11-21 +2004,20289.1,4.0,19.214285714285726,169.66666666666677,2020-11-21 +2005,20291.1,4.0,28.357142857142875,125.19047619047628,2020-11-21 +2006,20292.4,4.0,28.523809523809547,139.4285714285715,2020-11-21 +2007,20295.5,4.0,32.80952380952383,134.57142857142867,2020-11-21 +2008,20296.8,4.0,34.88095238095241,138.2857142857144,2020-11-21 +2009,20298.8,4.0,26.76190476190478,155.0000000000001,2020-11-21 +2010,20301.4,4.0,24.214285714285733,169.76190476190487,2020-11-21 +2011,20308.1,4.0,23.95238095238097,154.8095238095239,2020-11-21 +2012,20314.7,4.0,15.809523809523874,124.42857142857162,2020-11-21 +2000,20266.9,4.0,17.952380952380963,376.6190476190478,2020-11-21 +2003,20266.9,4.0,15.571428571428584,148.62761357353554,2020-11-21 +2001,20266.9,4.0,17.61904761904763,263.1183112066798,2020-11-21 +2000,20266.9,4.0,18.000000000000014,267.9228980141733,2020-11-21 +1999,20256.4,4.0,18.09523809523811,260.94551871255817,2020-11-21 +1998,20246.800000000003,4.0,17.952380952380963,260.4883751271552,2020-11-21 +1997,20236.9,4.0,17.66666666666668,272.9840440798796,2020-11-21 +1996,20226.7,4.0,17.238095238095248,280.4845776275398,2020-11-21 +1995,20217.0,4.0,17.095238095238106,287.76721781477414,2020-11-21 +1994,20207.2,4.0,17.333333333333343,292.5564259449226,2020-11-21 +1993,20196.2,4.0,17.523809523809533,293.5962302549635,2020-11-21 +1992,20186.0,4.0,17.66666666666668,294.4776790079168,2020-11-21 +1991,20176.100000000002,4.0,17.761904761904773,293.84916889037413,2020-11-21 +1990,20165.600000000002,4.0,17.714285714285726,288.4529282279609,2020-11-21 +2002,20266.9,4.0,19.23809523809525,219.66582793808246,2020-11-21 +1999,20256.4,4.0,18.11904761904763,377.71428571428595,2020-11-21 +1998,20246.8,4.0,18.11904761904763,395.6190476190479,2020-11-21 +1997,20236.9,4.0,18.00000000000001,403.6190476190479,2020-11-21 +1969,20036.9,4.0,20.880952380952394,229.09523809523824,2020-11-21 +1970,20037.0,4.0,19.642857142857157,255.9047619047621,2020-11-21 +1971,20037.0,4.0,23.2857142857143,290.76190476190493,2020-11-21 +1972,20037.0,4.0,29.285714285714306,255.90476190476207,2020-11-21 +1973,20037.0,4.0,35.11904761904764,137.90476190476198,2020-11-21 +1975,20037.0,4.0,36.83333333333336,120.42857142857149,2020-11-21 +1976,20037.0,4.0,28.119047619047638,220.95238095238108,2020-11-21 +1977,20037.0,4.0,21.52380952380954,364.714285714286,2020-11-21 +1978,20041.3,4.0,17.571428571428584,428.14285714285745,2020-11-21 +1979,20050.8,4.0,16.095238095238106,402.38095238095264,2020-11-21 +1980,20061.5,4.0,17.61904761904763,393.28571428571456,2020-11-21 +1981,20071.8,4.0,17.642857142857153,377.57142857142884,2020-11-21 +1982,20082.4,4.0,17.66666666666668,368.5714285714288,2020-11-21 +1983,20092.3,4.0,17.595238095238106,363.52380952380975,2020-11-21 +1984,20103.2,4.0,17.59523809523811,364.2380952380955,2020-11-21 +1985,20114.3,4.0,17.619047619047628,371.1904761904764,2020-11-21 +1986,20124.2,4.0,17.833333333333343,378.90476190476215,2020-11-21 +1987,20134.3,4.0,17.97619047619049,375.5714285714288,2020-11-21 +1988,20144.8,4.0,18.09523809523811,374.19047619047643,2020-11-21 +1989,20155.1,4.0,17.880952380952394,373.7142857142859,2020-11-21 +1990,20165.6,4.0,17.928571428571438,377.8095238095241,2020-11-21 +1991,20176.1,4.0,18.023809523809536,385.38095238095264,2020-11-21 +1992,20186.0,4.0,18.00000000000001,387.52380952380975,2020-11-21 +1993,20196.2,4.0,17.90476190476192,381.1428571428574,2020-11-21 +1994,20207.2,4.0,17.6904761904762,382.5714285714288,2020-11-21 +1995,20217.0,4.0,17.571428571428584,396.5238095238098,2020-11-21 +1996,20226.7,4.0,17.761904761904773,396.0476190476193,2020-11-21 +1989,20155.100000000002,4.0,17.85714285714287,281.06779173503963,2020-11-21 +1915,19565.3,4.0,18.571428571428584,207.50955334045275,2020-11-21 +1988,20144.800000000003,4.0,18.190476190476204,272.2020306092236,2020-11-21 +1986,20124.2,4.0,17.66666666666668,270.18594620634536,2020-11-21 +1942,19823.600000000002,4.0,21.04761904761906,310.2008954101485,2020-11-21 +1941,19813.7,4.0,20.952380952380967,316.65633081216737,2020-11-21 +1940,19803.9,4.0,20.809523809523824,319.8245155916618,2020-11-21 +1939,19794.4,4.0,20.52380952380954,319.1582197290473,2020-11-21 +1938,19784.7,4.0,20.428571428571445,313.61738022561224,2020-11-21 +1937,19774.800000000003,4.0,20.52380952380954,306.209809305858,2020-11-21 +1936,19765.300000000003,4.0,20.90476190476192,298.3823591821769,2020-11-21 +1935,19755.800000000003,4.0,20.809523809523824,294.7115163039955,2020-11-21 +1934,19746.600000000002,4.0,20.66666666666668,296.3296150626841,2020-11-21 +1933,19736.5,4.0,20.380952380952394,301.1796150409899,2020-11-21 +1932,19727.0,4.0,20.47619047619049,302.0838671276175,2020-11-21 +1931,19716.7,4.0,20.523809523809536,295.3870073092547,2020-11-21 +1943,19832.7,4.0,20.66666666666668,302.6623994570325,2020-11-21 +1930,19707.0,4.0,20.61904761904763,282.2052660943857,2020-11-21 +1928,19687.4,4.0,20.142857142857157,256.6151556863215,2020-11-21 +1927,19678.100000000002,4.0,19.857142857142872,251.84145160805681,2020-11-21 +1926,19668.9,4.0,19.66666666666668,248.20427076416325,2020-11-21 +1925,19660.0,4.0,19.333333333333346,241.2362147553948,2020-11-21 +1924,19650.8,4.0,19.047619047619058,231.4469061885614,2020-11-21 +1923,19641.600000000002,4.0,19.000000000000014,220.58936905938202,2020-11-21 +1922,19631.8,4.0,18.952380952380963,215.3244057093638,2020-11-21 +1921,19622.5,4.0,18.66666666666668,218.00825683366494,2020-11-21 +1920,19613.5,4.0,18.238095238095248,223.86301512067743,2020-11-21 +1919,19603.4,4.0,18.190476190476204,226.5748974118937,2020-11-21 +1918,19593.5,4.0,18.095238095238106,224.93156088211697,2020-11-21 +1917,19584.2,4.0,18.47619047619049,217.8863552625362,2020-11-21 +1929,19697.4,4.0,20.42857142857144,267.6049867151553,2020-11-21 +1944,19842.0,4.0,20.333333333333346,297.43148123631545,2020-11-21 +1945,19851.800000000003,4.0,20.04761904761906,295.3866830691104,2020-11-21 +1946,19861.0,4.0,19.90476190476192,293.8190011532023,2020-11-21 +1985,20114.300000000003,4.0,17.238095238095248,279.8341190965327,2020-11-21 +1984,20103.2,4.0,17.190476190476204,289.4992645713717,2020-11-21 +1983,20092.300000000003,4.0,17.190476190476204,298.4632104161761,2020-11-21 +1982,20082.4,4.0,17.333333333333343,298.8802605013309,2020-11-21 +1981,20071.800000000003,4.0,17.2857142857143,285.70595208617493,2020-11-21 +1980,20061.5,4.0,17.142857142857153,242.21449502356805,2020-11-21 +1979,20050.800000000003,4.0,15.57142857142858,171.47632215213895,2020-11-21 +1966,20020.600000000002,4.0,21.666666666666682,194.82875169293425,2020-11-21 +1965,20020.600000000002,4.0,22.2857142857143,289.7198308030195,2020-11-21 +1964,20020.600000000002,4.0,22.000000000000014,343.8710428280932,2020-11-21 +1963,20020.600000000002,4.0,22.000000000000014,343.414943374505,2020-11-21 +1962,20011.0,4.0,22.000000000000014,318.6351741553923,2020-11-21 +1961,20001.5,4.0,21.90476190476192,313.46029539926394,2020-11-21 +1960,19993.100000000002,4.0,22.04761904761906,325.130020888142,2020-11-21 +1959,19984.100000000002,4.0,22.52380952380954,330.125500726012,2020-11-21 +1958,19974.300000000003,4.0,22.66666666666668,327.42338479348507,2020-11-21 +1957,19965.0,4.0,22.142857142857157,318.76302147548813,2020-11-21 +1956,19955.5,4.0,21.476190476190492,308.91753695035504,2020-11-21 +1955,19945.600000000002,4.0,20.761904761904773,299.45014154347245,2020-11-21 +1954,19935.800000000003,4.0,20.619047619047635,291.6139323663105,2020-11-21 +1953,19926.600000000002,4.0,20.809523809523824,286.5916953440089,2020-11-21 +1952,19917.5,4.0,20.761904761904773,282.12232749754304,2020-11-21 +1951,19907.7,4.0,20.333333333333346,279.5234934236746,2020-11-21 +1950,19898.300000000003,4.0,20.04761904761906,279.97804178422837,2020-11-21 +1949,19888.800000000003,4.0,19.90476190476192,282.3324483272326,2020-11-21 +1948,19879.800000000003,4.0,20.000000000000014,286.7832868729155,2020-11-21 +1947,19870.7,4.0,20.000000000000014,291.3303407279069,2020-11-21 +1987,20134.300000000003,4.0,17.952380952380963,266.93092491490313,2020-11-21 +1793,18381.2,4.0,18.714285714285726,273.1280910261464,2020-11-21 +1792,18370.9,4.0,18.85714285714287,276.2703858420104,2020-11-21 +1791,18361.5,4.0,19.190476190476204,279.841358279166,2020-11-21 +1636,16810.600000000002,4.0,19.571428571428584,288.41217850123076,2020-11-21 +1635,16801.0,4.0,19.952380952380967,295.08666823043535,2020-11-21 +1634,16791.8,4.0,20.190476190476204,303.54371984131285,2020-11-21 +1633,16781.7,4.0,19.952380952380967,312.5845092030911,2020-11-21 +1632,16771.9,4.0,19.66666666666668,320.26274668414237,2020-11-21 +1631,16762.4,4.0,19.333333333333346,324.23581702824157,2020-11-21 +1630,16751.600000000002,4.0,19.047619047619058,322.9797175337546,2020-11-21 +1629,16741.4,4.0,18.80952380952382,317.86385855813853,2020-11-21 +1628,16731.5,4.0,19.047619047619058,308.17792462815015,2020-11-21 +1627,16720.9,4.0,19.333333333333346,296.89716049498657,2020-11-21 +1626,16710.8,4.0,19.761904761904773,288.6586546355147,2020-11-21 +1625,16701.100000000002,4.0,19.90476190476192,287.82607709480953,2020-11-21 +1637,16820.9,4.0,19.380952380952394,287.0723063729743,2020-11-21 +1624,16691.2,4.0,19.761904761904773,294.25579740238294,2020-11-21 +1622,16671.2,4.0,18.952380952380963,311.23837046128466,2020-11-21 +1621,16660.8,4.0,19.047619047619058,315.7736288146866,2020-11-21 +1620,16650.7,4.0,19.2857142857143,318.82038688940474,2020-11-21 +1619,16639.9,4.0,19.333333333333346,321.93729683342735,2020-11-21 +1618,16629.9,4.0,19.190476190476204,327.5814665359094,2020-11-21 +1617,16619.8,4.0,19.2857142857143,331.87868422183,2020-11-21 +1616,16609.600000000002,4.0,19.09523809523811,333.60235645780153,2020-11-21 +1615,16598.9,4.0,19.380952380952394,334.23267700996325,2020-11-21 +1614,16588.8,4.0,19.619047619047635,335.85697356671085,2020-11-21 +1613,16578.600000000002,4.0,19.809523809523824,336.68247274614964,2020-11-21 +1612,16568.4,4.0,19.857142857142872,339.38027199113196,2020-11-21 +1611,16558.2,4.0,20.09523809523811,341.5525907913237,2020-11-21 +1623,16681.3,4.0,19.333333333333346,303.6414461472785,2020-11-21 +1638,16830.600000000002,4.0,19.47619047619049,287.0620914331573,2020-11-21 +1639,16840.600000000002,4.0,19.42857142857144,288.2803726160138,2020-11-21 +1640,16850.4,4.0,19.761904761904773,293.7030655051064,2020-11-21 +1667,17126.600000000002,4.0,19.047619047619058,293.7880664122316,2020-11-21 +1666,17116.2,4.0,19.000000000000014,295.5883249828215,2020-11-21 +1665,17106.100000000002,4.0,18.85714285714287,300.6261078358074,2020-11-21 +1664,17096.3,4.0,18.714285714285726,306.4699771511763,2020-11-21 +1663,17085.600000000002,4.0,18.66666666666668,311.33459421112684,2020-11-21 +1662,17075.2,4.0,18.714285714285726,313.0782706967227,2020-11-21 +1661,17064.7,4.0,18.952380952380963,311.27826888371976,2020-11-21 +1660,17054.7,4.0,18.952380952380963,307.7415383997918,2020-11-21 +1659,17044.2,4.0,18.714285714285726,304.75262325621094,2020-11-21 +1658,17034.100000000002,4.0,18.66666666666668,303.61626441344214,2020-11-21 +1657,17023.0,4.0,18.714285714285726,303.8448984127601,2020-11-21 +1656,17013.3,4.0,18.85714285714287,306.0531333511222,2020-11-21 +1655,17003.2,4.0,19.09523809523811,308.48088550549875,2020-11-21 +1654,16992.8,4.0,19.000000000000014,311.5207938440079,2020-11-21 +1653,16982.5,4.0,19.000000000000014,318.2613069115608,2020-11-21 +1652,16972.5,4.0,19.000000000000014,327.46828618390623,2020-11-21 +1651,16962.600000000002,4.0,19.000000000000014,336.01351758560384,2020-11-21 +1650,16952.5,4.0,19.000000000000014,339.8578720731824,2020-11-21 +1649,16941.9,4.0,18.90476190476192,335.6150445990371,2020-11-21 +1648,16930.9,4.0,19.047619047619058,325.6733545174102,2020-11-21 +1647,16920.7,4.0,19.333333333333346,316.9861207150167,2020-11-21 +1646,16910.4,4.0,19.761904761904773,311.4582303410601,2020-11-21 +1645,16900.600000000002,4.0,19.809523809523824,311.9906857072626,2020-11-21 +1644,16890.8,4.0,19.90476190476192,315.1593302134864,2020-11-21 +1643,16880.8,4.0,19.52380952380954,314.98233654288435,2020-11-21 +1642,16870.7,4.0,19.42857142857144,309.18804752910955,2020-11-21 +1641,16860.3,4.0,19.619047619047635,302.22413142196024,2020-11-21 +1610,16548.4,4.0,20.000000000000014,341.08162382129717,2020-11-21 +1668,17137.100000000002,4.0,19.333333333333346,295.54755911567156,2020-11-21 +1609,16538.0,4.0,20.000000000000014,339.1161532231042,2020-11-21 +1607,16517.2,4.0,19.857142857142872,328.07270052702916,2020-11-21 +1575,16199.0,4.0,20.333333333333346,338.92892077116375,2020-11-21 +1574,16189.2,4.0,19.952380952380967,327.94711183548077,2020-11-21 +1573,16178.900000000001,4.0,20.142857142857157,289.783315641019,2020-11-21 +1572,16169.400000000001,4.0,20.42857142857144,220.89902970792315,2020-11-21 +1571,16159.5,4.0,18.47619047619049,138.93660520511034,2020-11-21 +1557,16110.6,4.0,18.66666666666668,174.4477005767191,2020-11-21 +1556,16110.6,4.0,18.42857142857144,260.9260875315465,2020-11-21 +1555,16110.6,4.0,17.952380952380963,309.99182763504234,2020-11-21 +1554,16100.7,4.0,18.66666666666668,305.2952244946273,2020-11-21 +1553,16090.6,4.0,18.952380952380963,277.0412225498329,2020-11-21 +1552,16081.1,4.0,19.09523809523811,269.11444985568744,2020-11-21 +1551,16071.300000000001,4.0,18.90476190476192,284.7887634911676,2020-11-21 +1576,16209.400000000001,4.0,20.761904761904773,335.8010998325151,2020-11-21 +1550,16062.1,4.0,19.142857142857157,301.4869138750264,2020-11-21 +1548,16041.5,4.0,19.238095238095248,323.5539149250953,2020-11-21 +1547,16031.5,4.0,19.428571428571445,322.25709312364063,2020-11-21 +1546,16021.0,4.0,19.428571428571445,311.0109454259395,2020-11-21 +1545,16010.900000000001,4.0,19.238095238095248,294.25284536885283,2020-11-21 +1544,16001.0,4.0,19.2857142857143,281.21886839671254,2020-11-21 +1543,15991.5,4.0,19.142857142857157,274.18778619242914,2020-11-21 +1542,15981.7,4.0,18.80952380952382,275.46273939700427,2020-11-21 +1541,15971.800000000001,4.0,19.142857142857157,282.0020914012092,2020-11-21 +1540,15962.2,4.0,19.190476190476204,286.81325119568805,2020-11-21 +1539,15951.800000000001,4.0,19.47619047619049,286.6145796454398,2020-11-21 +1538,15941.800000000001,4.0,19.47619047619049,284.72308590824696,2020-11-21 +1537,15932.2,4.0,19.333333333333346,276.27475090246753,2020-11-21 +1549,16051.2,4.0,19.2857142857143,316.2820749656648,2020-11-21 +1577,16218.900000000001,4.0,20.809523809523824,329.7690024816259,2020-11-21 +1578,16228.6,4.0,20.809523809523824,324.95619788425404,2020-11-21 +1579,16238.0,4.0,20.66666666666668,319.532915637732,2020-11-21 +1606,16506.7,4.0,19.71428571428573,321.02336956442315,2020-11-21 +1605,16496.600000000002,4.0,19.66666666666668,318.1489493141552,2020-11-21 +1604,16487.100000000002,4.0,19.809523809523824,317.82577709523355,2020-11-21 +1603,16476.4,4.0,19.71428571428573,322.21721970330077,2020-11-21 +1602,16467.0,4.0,19.90476190476192,328.2466503933315,2020-11-21 +1601,16456.5,4.0,19.52380952380954,332.6245551141377,2020-11-21 +1600,16446.0,4.0,19.42857142857144,332.7441472632826,2020-11-21 +1599,16435.7,4.0,19.52380952380954,330.31695909004895,2020-11-21 +1598,16425.4,4.0,19.809523809523824,322.7396574082703,2020-11-21 +1597,16415.0,4.0,19.857142857142872,314.97159727823333,2020-11-21 +1596,16404.9,4.0,20.09523809523811,310.42621857669286,2020-11-21 +1595,16394.3,4.0,20.000000000000014,310.35455781846247,2020-11-21 +1594,16385.0,4.0,19.90476190476192,311.4259341901259,2020-11-21 +1593,16374.7,4.0,19.952380952380967,312.23165421793243,2020-11-21 +1592,16364.5,4.0,20.47619047619049,310.24678967494026,2020-11-21 +1591,16354.2,4.0,21.04761904761906,309.5872852617929,2020-11-21 +1590,16344.5,4.0,21.238095238095255,313.61516689434416,2020-11-21 +1589,16335.300000000001,4.0,20.952380952380967,322.14563743866574,2020-11-21 +1588,16325.300000000001,4.0,20.61904761904763,329.9303529501274,2020-11-21 +1587,16315.5,4.0,20.23809523809525,331.9448567070999,2020-11-21 +1586,16305.5,4.0,20.142857142857157,327.1937866994727,2020-11-21 +1585,16295.900000000001,4.0,20.333333333333346,320.07031393962325,2020-11-21 +1584,16286.1,4.0,20.47619047619049,311.45127848793027,2020-11-21 +1583,16276.0,4.0,20.571428571428584,305.72572850288464,2020-11-21 +1582,16266.800000000001,4.0,21.04761904761906,304.9267151616994,2020-11-21 +1581,16257.900000000001,4.0,20.952380952380967,307.3510536838685,2020-11-21 +1580,16247.7,4.0,20.71428571428573,312.02511901968853,2020-11-21 +1608,16527.8,4.0,20.09523809523811,335.28752220888526,2020-11-21 +1669,17147.4,4.0,19.66666666666668,296.46082054670507,2020-11-21 +1670,17157.2,4.0,19.952380952380967,294.8496116868993,2020-11-21 +1671,17167.0,4.0,20.09523809523811,291.9925504083028,2020-11-21 +1759,18039.9,4.0,18.714285714285726,300.0963193176001,2020-11-21 +1758,18029.5,4.0,18.66666666666668,306.0361096676238,2020-11-21 +1757,18019.2,4.0,18.714285714285726,307.89633522527237,2020-11-21 +1756,18009.0,4.0,18.85714285714287,303.4063759229221,2020-11-21 +1755,17998.4,4.0,19.09523809523811,294.20027029355265,2020-11-21 +1754,17988.5,4.0,19.000000000000014,285.78026446449053,2020-11-21 +1753,17978.2,4.0,19.000000000000014,281.5065352395753,2020-11-21 +1752,17968.3,4.0,19.000000000000014,282.12944153669116,2020-11-21 +1751,17958.3,4.0,19.000000000000014,283.36972211454696,2020-11-21 +1750,17948.8,4.0,18.90476190476192,282.61925463778687,2020-11-21 +1749,17938.4,4.0,19.142857142857157,276.8701368590381,2020-11-21 +1748,17928.600000000002,4.0,19.190476190476204,268.17812835382404,2020-11-21 +1760,18049.8,4.0,18.85714285714287,297.4860741075716,2020-11-21 +1747,17918.7,4.0,19.47619047619049,259.8412871879484,2020-11-21 +1745,17899.8,4.0,19.47619047619049,256.79042235751535,2020-11-21 +1744,17890.3,4.0,19.190476190476204,260.1745858789289,2020-11-21 +1743,17880.9,4.0,19.142857142857157,262.5385570031051,2020-11-21 +1742,17870.9,4.0,19.000000000000014,262.86093581986427,2020-11-21 +1741,17861.2,4.0,18.85714285714287,261.83353596810025,2020-11-21 +1740,17851.2,4.0,18.714285714285726,264.225089493855,2020-11-21 +1739,17841.3,4.0,18.761904761904773,271.4828230170833,2020-11-21 +1738,17831.2,4.0,18.571428571428584,282.0016941799507,2020-11-21 +1737,17821.2,4.0,18.571428571428584,291.2157347406982,2020-11-21 +1736,17811.600000000002,4.0,18.761904761904773,295.138804390241,2020-11-21 +1735,17800.9,4.0,18.80952380952382,289.362874228354,2020-11-21 +1734,17790.5,4.0,18.714285714285726,279.8743021407255,2020-11-21 +1746,17909.3,4.0,19.571428571428584,256.33330985909004,2020-11-21 +1761,18059.5,4.0,19.09523809523811,301.35394301415147,2020-11-21 +1762,18069.4,4.0,19.000000000000014,309.0839612883466,2020-11-21 +1763,18079.5,4.0,19.000000000000014,314.8243153966215,2020-11-21 +1790,18351.4,4.0,19.047619047619058,277.97611933385883,2020-11-21 +1789,18341.600000000002,4.0,18.61904761904763,272.3920812398171,2020-11-21 +1788,18331.4,4.0,17.90476190476192,268.144652663466,2020-11-21 +1787,18321.5,4.0,17.428571428571438,264.70016356969325,2020-11-21 +1786,18311.100000000002,4.0,17.2857142857143,261.524762346129,2020-11-21 +1785,18300.9,4.0,17.571428571428584,257.8149413201372,2020-11-21 +1784,18291.100000000002,4.0,17.952380952380963,255.1398773032089,2020-11-21 +1783,18281.4,4.0,18.09523809523811,254.2768849865634,2020-11-21 +1782,18271.3,4.0,17.90476190476192,258.7389424719662,2020-11-21 +1781,18261.5,4.0,18.142857142857153,267.13926609838154,2020-11-21 +1780,18251.9,4.0,18.190476190476204,274.81988780335166,2020-11-21 +1779,18241.3,4.0,18.380952380952394,280.59819001549386,2020-11-21 +1778,18231.100000000002,4.0,18.714285714285726,284.7835823277171,2020-11-21 +1777,18220.9,4.0,18.66666666666668,284.20104298250953,2020-11-21 +1776,18210.9,4.0,18.571428571428584,283.0962775670233,2020-11-21 +1775,18200.8,4.0,18.761904761904773,284.2661497208809,2020-11-21 +1774,18190.7,4.0,18.714285714285726,284.17913918382413,2020-11-21 +1773,18180.600000000002,4.0,18.85714285714287,285.41445408112696,2020-11-21 +1772,18171.2,4.0,19.190476190476204,287.9462973605127,2020-11-21 +1771,18161.0,4.0,18.85714285714287,288.98411397953623,2020-11-21 +1770,18151.3,4.0,18.714285714285726,290.2831332337985,2020-11-21 +1769,18141.100000000002,4.0,18.66666666666668,292.2817524389921,2020-11-21 +1768,18130.8,4.0,18.714285714285726,291.9558699686366,2020-11-21 +1767,18120.4,4.0,18.85714285714287,293.39758772901166,2020-11-21 +1766,18110.100000000002,4.0,19.09523809523811,298.2831969895649,2020-11-21 +1765,18099.9,4.0,19.000000000000014,305.97425903435305,2020-11-21 +1764,18089.8,4.0,19.000000000000014,313.3212990678453,2020-11-21 +1733,17780.7,4.0,18.90476190476192,271.6190808589986,2020-11-21 +1732,17771.0,4.0,18.428571428571438,268.57534437822585,2020-11-21 +1731,17760.100000000002,4.0,18.571428571428584,270.7035805335335,2020-11-21 +1730,17750.5,4.0,18.80952380952382,276.0214972048833,2020-11-21 +1698,17437.3,4.0,19.66666666666668,284.2842483127896,2020-11-21 +1697,17427.2,4.0,19.952380952380967,285.66950482035065,2020-11-21 +1696,17417.9,4.0,20.190476190476204,288.38190262889253,2020-11-21 +1695,17407.8,4.0,19.952380952380967,293.8715570542285,2020-11-21 +1694,17398.600000000002,4.0,19.66666666666668,302.58834914585316,2020-11-21 +1693,17388.7,4.0,19.333333333333346,312.11770427835677,2020-11-21 +1692,17378.600000000002,4.0,18.952380952380963,317.5704343749469,2020-11-21 +1691,17368.2,4.0,18.952380952380963,318.2307789399721,2020-11-21 +1690,17358.100000000002,4.0,19.428571428571445,317.14655900328853,2020-11-21 +1689,17348.2,4.0,19.619047619047635,316.5930983979936,2020-11-21 +1688,17337.7,4.0,19.523809523809536,318.8082133154678,2020-11-21 +1687,17328.2,4.0,19.47619047619049,322.0143047901713,2020-11-21 +1686,17317.8,4.0,19.380952380952394,322.65079971462274,2020-11-21 +1685,17307.100000000002,4.0,19.571428571428584,318.88234558493673,2020-11-21 +1684,17297.0,4.0,19.857142857142872,313.85764756090873,2020-11-21 +1683,17287.4,4.0,20.23809523809525,308.8431706407627,2020-11-21 +1682,17277.3,4.0,20.2857142857143,306.54519421082534,2020-11-21 +1681,17267.4,4.0,20.333333333333346,308.3429229911749,2020-11-21 +1680,17257.8,4.0,20.2857142857143,314.61580632444054,2020-11-21 +1679,17247.7,4.0,20.142857142857157,321.53163649403035,2020-11-21 +1678,17237.4,4.0,19.90476190476192,327.47322871695474,2020-11-21 +1677,17227.2,4.0,20.000000000000014,328.34998638183635,2020-11-21 +1676,17217.0,4.0,20.000000000000014,322.63620745944274,2020-11-21 +1675,17206.7,4.0,20.000000000000014,312.13231988573114,2020-11-21 +1674,17196.5,4.0,20.000000000000014,301.05342363121866,2020-11-21 +1673,17186.600000000002,4.0,20.000000000000014,292.43288113490814,2020-11-21 +1672,17176.9,4.0,20.000000000000014,289.95233751110675,2020-11-21 +1699,17446.8,4.0,19.333333333333346,282.49703982992776,2020-11-21 +1535,15912.7,4.0,21.09523809523811,267.7973953319869,2020-11-21 +1700,17456.3,4.0,19.047619047619058,281.0752756801172,2020-11-21 +1702,17476.4,4.0,18.90476190476192,281.97799333492503,2020-11-21 +1729,17740.5,4.0,19.142857142857153,276.76012218879714,2020-11-21 +1728,17730.9,4.0,19.142857142857153,275.0009813805825,2020-11-21 +1727,17720.5,4.0,19.333333333333346,271.02996822326065,2020-11-21 +1726,17710.7,4.0,18.761904761904773,266.1056063542706,2020-11-21 +1725,17700.7,4.0,18.61904761904763,260.9860957361367,2020-11-21 +1724,17691.2,4.0,18.80952380952382,256.4224047309863,2020-11-21 +1723,17681.4,4.0,19.000000000000014,249.35477487109057,2020-11-21 +1722,17671.9,4.0,19.190476190476204,243.84869902772726,2020-11-21 +1721,17662.100000000002,4.0,19.380952380952394,244.04244884420564,2020-11-21 +1720,17653.3,4.0,19.23809523809525,248.6880233050683,2020-11-21 +1719,17644.2,4.0,18.761904761904773,256.64476915679427,2020-11-21 +1718,17634.3,4.0,18.714285714285726,266.4183067149732,2020-11-21 +1717,17624.600000000002,4.0,18.66666666666668,275.0499492490811,2020-11-21 +1716,17614.7,4.0,18.714285714285726,282.67571521182646,2020-11-21 +1715,17604.9,4.0,18.952380952380963,292.08009410640784,2020-11-21 +1714,17595.3,4.0,18.952380952380963,302.2991892559618,2020-11-21 +1713,17585.4,4.0,18.714285714285726,310.60563586731587,2020-11-21 +1712,17575.100000000002,4.0,18.571428571428584,312.91926802544424,2020-11-21 +1711,17564.8,4.0,18.761904761904773,305.9548754168029,2020-11-21 +1710,17555.0,4.0,19.2857142857143,291.25914464744454,2020-11-21 +1709,17545.100000000002,4.0,19.71428571428573,273.33111865074966,2020-11-21 +1708,17534.9,4.0,19.523809523809536,260.6293584251853,2020-11-21 +1707,17526.0,4.0,19.571428571428584,257.4419626430942,2020-11-21 +1706,17516.0,4.0,19.333333333333346,261.9547123859396,2020-11-21 +1705,17506.100000000002,4.0,19.238095238095248,270.2832737384955,2020-11-21 +1704,17496.600000000002,4.0,19.2857142857143,278.4869547384495,2020-11-21 +1703,17486.8,4.0,19.142857142857157,281.8125658580552,2020-11-21 +1701,17466.7,4.0,18.90476190476192,281.23469133197625,2020-11-21 +1036,10646.0,4.0,17.333333333333343,292.4963193946913,2020-11-21 +1035,10635.2,4.0,17.095238095238106,288.69465159954814,2020-11-21 +1034,10624.7,4.0,17.238095238095248,281.2354387911542,2020-11-21 +378,3642.9,4.0,17.380952380952394,323.76265458461995,2020-11-21 +377,3632.0,4.0,17.47619047619049,333.1020855975279,2020-11-21 +376,3621.0,4.0,18.09523809523811,346.9299166319937,2020-11-21 +375,3610.3,4.0,18.380952380952394,361.7859298472488,2020-11-21 +374,3599.4,4.0,18.333333333333346,375.1360714773308,2020-11-21 +373,3588.6000000000004,4.0,18.2857142857143,387.39967946605884,2020-11-21 +372,3577.5,4.0,18.142857142857153,396.66636141038805,2020-11-21 +371,3566.3,4.0,17.90476190476192,397.77081616961004,2020-11-21 +370,3554.1000000000004,4.0,18.000000000000014,389.34492447661853,2020-11-21 +369,3542.9,4.0,18.09523809523811,374.2349663966262,2020-11-21 +368,3531.5,4.0,17.85714285714287,357.3611756338353,2020-11-21 +367,3520.6000000000004,4.0,17.714285714285726,346.9345183648077,2020-11-21 +379,3653.2000000000003,4.0,17.47619047619049,323.31585816457346,2020-11-21 +366,3509.5,4.0,17.66666666666668,347.0210517205356,2020-11-21 +364,3487.7000000000003,4.0,17.85714285714287,367.30280310011676,2020-11-21 +363,3476.5,4.0,18.09523809523811,380.0056313455798,2020-11-21 +362,3465.0,4.0,18.000000000000014,387.07557873064104,2020-11-21 +361,3454.5,4.0,18.000000000000014,387.13194171141384,2020-11-21 +360,3442.6000000000004,4.0,18.000000000000014,381.977223064982,2020-11-21 +359,3430.9,4.0,18.000000000000014,376.8272991914547,2020-11-21 +358,3419.8,4.0,18.000000000000014,375.42193086318366,2020-11-21 +357,3408.6000000000004,4.0,17.90476190476192,376.4819730551959,2020-11-21 +356,3397.5,4.0,18.142857142857153,375.6447658348287,2020-11-21 +355,3386.2000000000003,4.0,18.2857142857143,365.728728027484,2020-11-21 +354,3375.1000000000004,4.0,18.333333333333346,346.6558902611657,2020-11-21 +353,3364.2000000000003,4.0,18.380952380952394,329.506502237453,2020-11-21 +365,3498.4,4.0,17.714285714285726,354.3722702084198,2020-11-21 +380,3663.8,4.0,17.523809523809533,332.3230268209984,2020-11-21 +381,3675.5,4.0,17.523809523809533,347.3453302988512,2020-11-21 +382,3687.1000000000004,4.0,17.47619047619049,362.08233499134207,2020-11-21 +409,3983.9,4.0,18.09523809523811,319.1653816543659,2020-11-21 +408,3972.9,4.0,18.000000000000014,317.2216102440103,2020-11-21 +407,3962.2000000000003,4.0,18.09523809523811,317.60845082868997,2020-11-21 +406,3951.4,4.0,17.952380952380963,318.6522588299804,2020-11-21 +405,3940.6000000000004,4.0,17.66666666666668,317.18641172780326,2020-11-21 +404,3930.1000000000004,4.0,17.238095238095248,317.42313986748894,2020-11-21 +403,3919.0,4.0,17.190476190476204,321.9828791837007,2020-11-21 +402,3908.1000000000004,4.0,17.190476190476204,332.07435334758907,2020-11-21 +401,3897.2000000000003,4.0,17.238095238095248,342.95024442331965,2020-11-21 +400,3886.3,4.0,17.333333333333343,350.74748608162986,2020-11-21 +399,3875.2000000000003,4.0,17.47619047619049,354.2445668428161,2020-11-21 +398,3863.7000000000003,4.0,17.66666666666668,353.42092325550095,2020-11-21 +397,3853.2000000000003,4.0,17.80952380952382,353.84682803718636,2020-11-21 +396,3842.5,4.0,17.904761904761916,356.46663071939963,2020-11-21 +395,3831.5,4.0,17.523809523809536,358.2487190413396,2020-11-21 +394,3819.4,4.0,17.428571428571438,360.1914592024723,2020-11-21 +393,3808.5,4.0,17.61904761904763,362.704183404583,2020-11-21 +392,3797.4,4.0,17.66666666666668,362.8147140420242,2020-11-21 +391,3786.4,4.0,17.66666666666668,364.8896610292825,2020-11-21 +390,3775.7000000000003,4.0,17.714285714285726,365.0685157800433,2020-11-21 +389,3763.7000000000003,4.0,17.285714285714295,360.4167564785554,2020-11-21 +388,3753.0,4.0,17.238095238095248,356.8543378889125,2020-11-21 +387,3741.9,4.0,17.47619047619049,356.02709858714707,2020-11-21 +386,3730.6000000000004,4.0,17.66666666666668,358.6117128252863,2020-11-21 +385,3720.0,4.0,17.904761904761916,365.61909224159785,2020-11-21 +384,3709.3,4.0,17.66666666666668,371.0709497396629,2020-11-21 +383,3698.2000000000003,4.0,17.380952380952394,370.1776539187182,2020-11-21 +352,3353.5,4.0,18.09523809523811,320.50910274001194,2020-11-21 +410,3994.4,4.0,17.85714285714287,321.3235930453616,2020-11-21 +351,3342.6000000000004,4.0,17.47619047619049,321.19260465760385,2020-11-21 +349,3321.6000000000004,4.0,17.61904761904763,331.0359871071978,2020-11-21 +317,2974.6000000000004,4.0,18.2857142857143,333.4847027950534,2020-11-21 +316,2963.3,4.0,19.09523809523811,321.43311292542666,2020-11-21 +315,2953.0,4.0,19.571428571428584,314.5119950801542,2020-11-21 +314,2943.1000000000004,4.0,19.809523809523824,318.1518997294101,2020-11-21 +313,2933.2000000000003,4.0,19.380952380952394,313.9853544619735,2020-11-21 +312,2922.8,4.0,18.80952380952382,275.81590072115694,2020-11-21 +311,2912.5,4.0,18.095238095238106,203.1912940576949,2020-11-21 +310,2901.8,4.0,18.238095238095248,117.94387228189743,2020-11-21 +298,2852.4,4.0,18.809523809523824,166.4326163338,2020-11-21 +297,2852.4,4.0,18.571428571428584,247.50321777997377,2020-11-21 +296,2842.4,4.0,17.47619047619049,296.0307401573614,2020-11-21 +295,2831.8,4.0,17.714285714285726,299.37809435481074,2020-11-21 +318,2985.2000000000003,4.0,18.000000000000014,341.98512637274064,2020-11-21 +294,2821.7000000000003,4.0,17.761904761904773,283.6080025535743,2020-11-21 +292,2800.7000000000003,4.0,17.428571428571438,288.5766495678248,2020-11-21 +291,2790.4,4.0,17.571428571428584,293.4574898223985,2020-11-21 +290,2779.8,4.0,17.238095238095248,298.09290785000235,2020-11-21 +289,2768.8,4.0,17.285714285714295,303.92035572214013,2020-11-21 +288,2758.7000000000003,4.0,17.61904761904763,311.6403427474399,2020-11-21 +287,2747.9,4.0,17.904761904761916,313.39656589468075,2020-11-21 +286,2737.0,4.0,17.80952380952382,309.22295969331634,2020-11-21 +285,2726.9,4.0,17.66666666666668,301.14554659829486,2020-11-21 +284,2715.9,4.0,17.380952380952394,293.3384702354978,2020-11-21 +283,2704.8,4.0,17.380952380952394,290.6588346375817,2020-11-21 +282,2694.8,4.0,17.571428571428584,296.69678725100516,2020-11-21 +281,2684.6000000000004,4.0,17.952380952380963,307.61574297471145,2020-11-21 +293,2811.4,4.0,17.66666666666668,279.53371679895537,2020-11-21 +319,2996.1000000000004,4.0,18.333333333333343,347.1211120651239,2020-11-21 +320,3007.3,4.0,18.61904761904763,349.5112915193505,2020-11-21 +321,3017.6000000000004,4.0,18.61904761904763,350.810095002963,2020-11-21 +348,3309.7000000000003,4.0,17.714285714285726,326.4052625442766,2020-11-21 +347,3299.7000000000003,4.0,18.000000000000014,324.50686831679525,2020-11-21 +346,3289.4,4.0,18.142857142857153,327.8420960597788,2020-11-21 +345,3278.3,4.0,17.714285714285726,331.8398130880488,2020-11-21 +344,3267.1000000000004,4.0,17.571428571428584,336.25952652791375,2020-11-21 +343,3256.4,4.0,17.61904761904763,337.95175605507836,2020-11-21 +342,3245.4,4.0,17.428571428571438,336.91212242577444,2020-11-21 +341,3234.5,4.0,17.523809523809536,338.2661293595174,2020-11-21 +340,3223.9,4.0,17.80952380952382,339.5079055415067,2020-11-21 +339,3212.4,4.0,17.85714285714287,336.2624462117205,2020-11-21 +338,3201.9,4.0,18.000000000000014,329.44012697170183,2020-11-21 +337,3191.8,4.0,18.142857142857153,322.08471749948603,2020-11-21 +336,3180.5,4.0,18.2857142857143,316.83309327927935,2020-11-21 +335,3169.9,4.0,18.333333333333346,316.5140711578865,2020-11-21 +334,3158.9,4.0,18.2857142857143,322.18597809878935,2020-11-21 +333,3148.5,4.0,18.142857142857153,330.78726352367494,2020-11-21 +332,3137.9,4.0,17.90476190476192,340.89279358948113,2020-11-21 +331,3126.7000000000003,4.0,18.000000000000014,351.8543489149215,2020-11-21 +330,3116.2000000000003,4.0,17.90476190476192,362.0811352113201,2020-11-21 +329,3105.3,4.0,18.047619047619058,368.5755486002446,2020-11-21 +328,3094.1000000000004,4.0,18.333333333333343,368.53726324400975,2020-11-21 +327,3082.6000000000004,4.0,18.761904761904773,357.5390070016753,2020-11-21 +326,3072.3,4.0,18.90476190476192,343.10626894632196,2020-11-21 +325,3061.9,4.0,18.761904761904773,334.10395783996717,2020-11-21 +324,3051.2000000000003,4.0,18.238095238095248,334.4423580637719,2020-11-21 +323,3040.2000000000003,4.0,18.09523809523811,341.8236924070942,2020-11-21 +322,3029.4,4.0,18.333333333333343,349.2555404273602,2020-11-21 +350,3332.3,4.0,17.2857142857143,328.4624046215929,2020-11-21 +280,2673.6000000000004,4.0,18.09523809523811,318.26447216824397,2020-11-21 +411,4005.4,4.0,17.80952380952382,321.3963482672192,2020-11-21 +413,4027.4,4.0,17.380952380952394,322.49302504292103,2020-11-21 +500,5002.5,4.0,17.190476190476204,353.36522018545145,2020-11-21 +499,4991.200000000001,4.0,17.47619047619049,355.57505551342774,2020-11-21 +498,4980.8,4.0,17.571428571428584,364.494609740083,2020-11-21 +497,4968.900000000001,4.0,17.380952380952394,367.3471532359553,2020-11-21 +496,4958.400000000001,4.0,17.333333333333343,362.9677209401676,2020-11-21 +495,4946.200000000001,4.0,17.42857142857144,353.577635858756,2020-11-21 +494,4934.8,4.0,17.238095238095248,345.24793906991,2020-11-21 +493,4924.3,4.0,17.2857142857143,344.7642510519379,2020-11-21 +492,4912.2,4.0,17.142857142857153,351.61267962708774,2020-11-21 +491,4901.5,4.0,16.904761904761916,359.3945405195062,2020-11-21 +490,4889.900000000001,4.0,17.00000000000001,365.5126818195474,2020-11-21 +489,4878.8,4.0,17.00000000000001,367.3668973096781,2020-11-21 +501,5013.900000000001,4.0,17.142857142857153,359.1321325224978,2020-11-21 +488,4867.2,4.0,17.00000000000001,364.79101990670995,2020-11-21 +486,4844.6,4.0,17.00000000000001,361.4321351138633,2020-11-21 +485,4833.3,4.0,17.00000000000001,364.79606560918717,2020-11-21 +484,4821.900000000001,4.0,17.00000000000001,368.8568205879269,2020-11-21 +483,4810.6,4.0,16.904761904761916,365.06860098827167,2020-11-21 +482,4798.6,4.0,17.047619047619058,352.56533974714733,2020-11-21 +481,4787.3,4.0,17.42857142857144,338.2922953888455,2020-11-21 +480,4776.1,4.0,17.61904761904763,331.7881015360839,2020-11-21 +479,4765.400000000001,4.0,17.61904761904763,339.96267722721507,2020-11-21 +478,4754.2,4.0,17.333333333333343,356.2881408070839,2020-11-21 +477,4742.8,4.0,17.190476190476204,366.0289476961973,2020-11-21 +476,4731.2,4.0,17.190476190476204,364.5547481543999,2020-11-21 +475,4719.8,4.0,17.333333333333343,353.68443227399905,2020-11-21 +487,4855.8,4.0,17.00000000000001,362.1839758880327,2020-11-21 +502,5024.900000000001,4.0,16.80952380952382,369.422272203572,2020-11-21 +503,5036.8,4.0,17.142857142857153,378.74629535456563,2020-11-21 +504,5048.3,4.0,17.2857142857143,383.0756345730963,2020-11-21 +531,5352.400000000001,4.0,16.904761904761916,370.91783105329233,2020-11-21 +530,5340.0,4.0,17.00000000000001,361.54779320287673,2020-11-21 +529,5328.5,4.0,17.00000000000001,352.0240863448711,2020-11-21 +528,5317.5,4.0,17.00000000000001,349.3031554061568,2020-11-21 +527,5306.5,4.0,17.00000000000001,352.92413642370286,2020-11-21 +526,5295.3,4.0,16.904761904761916,355.9693219221302,2020-11-21 +525,5284.6,4.0,17.047619047619058,354.11790860348015,2020-11-21 +524,5273.400000000001,4.0,17.42857142857144,348.43839734387313,2020-11-21 +523,5261.700000000001,4.0,17.61904761904763,343.4735964761303,2020-11-21 +522,5251.1,4.0,17.523809523809533,346.0079947525736,2020-11-21 +521,5239.8,4.0,17.571428571428584,355.0838599014417,2020-11-21 +520,5228.6,4.0,17.333333333333343,363.8562928781329,2020-11-21 +519,5217.5,4.0,17.238095238095248,367.53840375537027,2020-11-21 +518,5206.200000000001,4.0,17.2857142857143,370.19578058890244,2020-11-21 +517,5194.900000000001,4.0,17.142857142857153,370.8613339215502,2020-11-21 +516,5184.200000000001,4.0,16.80952380952382,370.6790208607765,2020-11-21 +515,5173.0,4.0,17.142857142857153,369.8891150611206,2020-11-21 +514,5161.5,4.0,17.2857142857143,365.61231448848224,2020-11-21 +513,5149.900000000001,4.0,17.238095238095248,358.4388807337933,2020-11-21 +512,5138.8,4.0,17.42857142857144,357.9366308899046,2020-11-21 +511,5127.1,4.0,17.42857142857144,362.65688478764775,2020-11-21 +510,5115.900000000001,4.0,17.238095238095248,370.6979490940247,2020-11-21 +509,5105.900000000001,4.0,17.2857142857143,380.1883864614696,2020-11-21 +508,5094.400000000001,4.0,17.047619047619058,385.1092842585049,2020-11-21 +507,5082.700000000001,4.0,17.047619047619058,384.7807196058051,2020-11-21 +506,5071.200000000001,4.0,17.2857142857143,384.0938708514856,2020-11-21 +505,5059.6,4.0,17.333333333333343,383.03903957055513,2020-11-21 +474,4708.5,4.0,17.2857142857143,342.3409640835325,2020-11-21 +412,4016.2000000000003,4.0,17.61904761904763,321.88037170810475,2020-11-21 +473,4697.2,4.0,17.142857142857153,337.74303198077024,2020-11-21 +471,4675.400000000001,4.0,16.904761904761916,345.12495949691885,2020-11-21 +439,4321.400000000001,4.0,17.00000000000001,335.40008434077976,2020-11-21 +438,4310.1,4.0,17.00000000000001,340.19822863894933,2020-11-21 +437,4299.2,4.0,17.00000000000001,348.1366195457433,2020-11-21 +436,4287.6,4.0,17.00000000000001,354.3456910353666,2020-11-21 +435,4276.400000000001,4.0,17.00000000000001,356.18713407113296,2020-11-21 +434,4264.7,4.0,17.00000000000001,352.6023917450362,2020-11-21 +433,4253.900000000001,4.0,17.00000000000001,350.41321790549694,2020-11-21 +432,4242.2,4.0,17.095238095238106,351.16514341729226,2020-11-21 +431,4231.0,4.0,16.85714285714287,351.93129484209356,2020-11-21 +430,4220.2,4.0,16.714285714285726,351.63894364029414,2020-11-21 +429,4208.7,4.0,16.66666666666668,347.671670598648,2020-11-21 +428,4197.1,4.0,16.714285714285726,335.48895810603244,2020-11-21 +440,4332.0,4.0,17.00000000000001,337.58117411607395,2020-11-21 +427,4186.1,4.0,16.85714285714287,325.4342675323639,2020-11-21 +425,4163.8,4.0,17.00000000000001,328.81669073097066,2020-11-21 +424,4152.2,4.0,17.00000000000001,339.54888215569804,2020-11-21 +423,4141.1,4.0,17.00000000000001,353.102757521318,2020-11-21 +422,4129.7,4.0,17.00000000000001,363.30279695866113,2020-11-21 +421,4118.6,4.0,17.00000000000001,370.2222831891196,2020-11-21 +420,4106.7,4.0,16.904761904761916,374.3142487672223,2020-11-21 +419,4096.0,4.0,17.142857142857153,375.86184764023403,2020-11-21 +418,4084.0,4.0,17.2857142857143,376.6196587949494,2020-11-21 +417,4072.3,4.0,17.333333333333343,373.0511738551239,2020-11-21 +416,4061.7000000000003,4.0,17.190476190476204,364.7015284618251,2020-11-21 +415,4049.9,4.0,17.2857142857143,349.60601715421774,2020-11-21 +414,4038.3,4.0,17.095238095238106,332.3826632855904,2020-11-21 +426,4175.2,4.0,17.095238095238106,323.8069273332418,2020-11-21 +441,4343.5,4.0,16.904761904761916,346.9713393314498,2020-11-21 +442,4355.1,4.0,17.142857142857153,354.6930669176463,2020-11-21 +443,4366.3,4.0,17.2857142857143,353.01321790056124,2020-11-21 +470,4664.0,4.0,17.142857142857153,349.00911266986236,2020-11-21 +469,4652.6,4.0,17.190476190476204,348.6128420102881,2020-11-21 +468,4641.5,4.0,17.47619047619049,346.1811310432036,2020-11-21 +467,4631.2,4.0,17.571428571428584,345.5804093669408,2020-11-21 +466,4619.5,4.0,17.380952380952394,346.6334179761577,2020-11-21 +465,4608.8,4.0,17.238095238095248,354.01632957746835,2020-11-21 +464,4597.8,4.0,17.571428571428584,360.59115514807945,2020-11-21 +463,4586.0,4.0,17.428571428571438,362.0959422666548,2020-11-21 +462,4575.3,4.0,17.66666666666668,360.13220043950827,2020-11-21 +461,4564.2,4.0,17.761904761904773,357.4206810853036,2020-11-21 +460,4552.5,4.0,17.714285714285726,354.4690550815569,2020-11-21 +459,4541.1,4.0,17.85714285714287,356.1540723502027,2020-11-21 +458,4530.8,4.0,18.09523809523811,355.0947026530736,2020-11-21 +457,4519.8,4.0,18.000000000000014,345.6158886796029,2020-11-21 +456,4508.0,4.0,18.09523809523811,328.1814476836191,2020-11-21 +455,4497.1,4.0,17.952380952380963,308.35693742399644,2020-11-21 +454,4485.0,4.0,17.66666666666668,294.71207676166466,2020-11-21 +453,4474.2,4.0,17.238095238095248,294.43154458364836,2020-11-21 +452,4462.2,4.0,17.095238095238106,305.4152189686937,2020-11-21 +451,4452.8,4.0,17.238095238095248,321.5688742853463,2020-11-21 +450,4442.8,4.0,17.761904761904773,331.5282424817908,2020-11-21 +449,4431.7,4.0,17.904761904761916,332.7831258163893,2020-11-21 +448,4420.7,4.0,17.761904761904773,326.1373670506086,2020-11-21 +447,4409.6,4.0,17.238095238095248,318.1188316685368,2020-11-21 +446,4399.1,4.0,17.190476190476204,316.8402802141747,2020-11-21 +445,4387.900000000001,4.0,17.190476190476204,327.0875554548776,2020-11-21 +444,4377.2,4.0,17.333333333333343,341.1958344027456,2020-11-21 +472,4686.6,4.0,16.904761904761916,339.61455428811075,2020-11-21 +279,2663.1000000000004,4.0,18.000000000000014,324.324589862588,2020-11-21 +278,2652.8,4.0,18.000000000000014,324.9985349576251,2020-11-21 +277,2642.2000000000003,4.0,18.000000000000014,324.68656889396857,2020-11-21 +119,987.6,4.0,18.09523809523811,372.93041489089734,2020-11-21 +118,976.1,4.0,18.000000000000014,364.9089449119323,2020-11-21 +117,965.0,4.0,18.000000000000014,356.0104414465177,2020-11-21 +116,954.3000000000001,4.0,18.000000000000014,349.4945191560496,2020-11-21 +115,941.8000000000001,4.0,18.000000000000014,342.8980112982475,2020-11-21 +114,931.5,4.0,18.000000000000014,339.17993099757564,2020-11-21 +113,920.7,4.0,17.90476190476192,336.9545912331199,2020-11-21 +112,909.7,4.0,18.047619047619058,336.055812142562,2020-11-21 +111,898.5,4.0,18.428571428571438,338.2584659043983,2020-11-21 +110,887.8000000000001,4.0,18.61904761904763,343.21702699093544,2020-11-21 +109,877.5,4.0,18.523809523809536,350.9971577115905,2020-11-21 +108,866.8000000000001,4.0,18.47619047619049,358.26155663881497,2020-11-21 +120,998.7,4.0,17.66666666666668,371.2608623175613,2020-11-21 +107,856.0,4.0,18.380952380952394,359.95832186626535,2020-11-21 +105,834.0,4.0,18.952380952380963,346.6382828546566,2020-11-21 +104,823.1,4.0,19.09523809523811,340.25528608001014,2020-11-21 +103,813.0,4.0,19.09523809523811,338.5778368791339,2020-11-21 +102,802.4000000000001,4.0,18.85714285714287,340.1567730469481,2020-11-21 +101,792.2,4.0,18.80952380952382,342.09035486531366,2020-11-21 +100,781.0,4.0,18.714285714285726,339.71614525262027,2020-11-21 +99,769.7,4.0,18.333333333333346,333.08294443281807,2020-11-21 +98,759.5,4.0,17.952380952380963,327.77443437598833,2020-11-21 +97,748.7,4.0,17.333333333333343,312.06212448451083,2020-11-21 +96,737.7,4.0,16.761904761904773,285.10040584086494,2020-11-21 +95,726.7,4.0,16.80952380952382,232.7164911356182,2020-11-21 +81,672.5,4.0,17.380952380952394,131.88360718363853,2020-11-21 +106,845.0,4.0,18.571428571428584,355.10456990427895,2020-11-21 +121,1009.6,4.0,17.904761904761916,357.1057861662322,2020-11-21 +122,1021.5,4.0,18.380952380952394,333.56072638483977,2020-11-21 +123,1030.5,4.0,18.66666666666668,306.6548211520569,2020-11-21 +150,1318.8000000000002,4.0,18.047619047619058,345.8701531698796,2020-11-21 +149,1308.0,4.0,18.428571428571438,344.24180793438757,2020-11-21 +148,1297.3000000000002,4.0,18.61904761904763,339.1156878266705,2020-11-21 +147,1286.6000000000001,4.0,18.61904761904763,334.5711156398536,2020-11-21 +146,1275.7,4.0,18.428571428571438,333.3906057279022,2020-11-21 +145,1265.1000000000001,4.0,18.047619047619058,337.8247328669627,2020-11-21 +144,1254.7,4.0,17.90476190476192,345.85415087539343,2020-11-21 +143,1244.3000000000002,4.0,17.90476190476192,352.06491748165195,2020-11-21 +142,1233.7,4.0,18.142857142857153,350.38958093101513,2020-11-21 +141,1222.4,4.0,18.2857142857143,340.63886487496774,2020-11-21 +140,1211.6000000000001,4.0,18.333333333333346,328.3680334223416,2020-11-21 +139,1201.3,4.0,18.190476190476204,323.8720380019082,2020-11-21 +138,1190.7,4.0,18.190476190476204,326.568332418185,2020-11-21 +137,1179.7,4.0,18.238095238095248,332.48586597006386,2020-11-21 +136,1168.9,4.0,18.761904761904773,335.7955043253686,2020-11-21 +135,1158.4,4.0,18.90476190476192,333.90499696938423,2020-11-21 +134,1147.6000000000001,4.0,18.66666666666668,329.8673093479009,2020-11-21 +133,1137.6000000000001,4.0,18.47619047619049,329.73137960380797,2020-11-21 +132,1126.6000000000001,4.0,18.333333333333343,331.6044811826869,2020-11-21 +131,1115.9,4.0,18.23809523809525,335.9667341386726,2020-11-21 +130,1105.4,4.0,18.2857142857143,341.71452884321036,2020-11-21 +129,1094.7,4.0,18.142857142857153,346.85875125771463,2020-11-21 +128,1084.2,4.0,17.90476190476192,349.29546714661353,2020-11-21 +127,1073.0,4.0,17.90476190476192,341.15992862238954,2020-11-21 +126,1062.5,4.0,17.952380952380963,323.7945716439109,2020-11-21 +125,1052.2,4.0,18.66666666666668,305.6606263272781,2020-11-21 +124,1040.8,4.0,18.761904761904773,296.69470423242194,2020-11-21 +80,672.5,4.0,16.952380952380963,204.17155714159577,2020-11-21 +151,1330.3000000000002,4.0,17.80952380952382,344.75978097112784,2020-11-21 +79,662.0,4.0,15.666666666666679,258.97875922294315,2020-11-21 +77,642.1,4.0,16.47619047619049,280.93077882211446,2020-11-21 +45,301.8,4.0,17.952380952380963,266.9716983531559,2020-11-21 +44,292.3,4.0,18.095238095238106,251.531195827783,2020-11-21 +43,282.40000000000003,4.0,18.09523809523811,241.84661678479165,2020-11-21 +42,273.0,4.0,17.61904761904763,244.33489679268382,2020-11-21 +41,262.5,4.0,17.190476190476204,257.1594952625389,2020-11-21 +40,252.20000000000002,4.0,16.80952380952382,272.8847040862479,2020-11-21 +39,242.10000000000002,4.0,17.00000000000001,268.5807962825492,2020-11-21 +38,232.0,4.0,17.00000000000001,243.5059328685478,2020-11-21 +37,221.10000000000002,4.0,17.85714285714287,209.1387108829567,2020-11-21 +36,211.20000000000002,4.0,15.714285714285722,188.24371066165997,2020-11-21 +32,176.10000000000002,4.0,15.619047619047628,302.4983078145608,2020-11-21 +31,176.10000000000002,4.0,17.80952380952382,298.87548103982704,2020-11-21 +46,312.5,4.0,17.571428571428584,284.0786907762045,2020-11-21 +30,165.3,4.0,17.190476190476204,280.33385834719587,2020-11-21 +28,144.8,4.0,19.09523809523811,250.92507973207435,2020-11-21 +27,134.9,4.0,20.47619047619049,237.66400650750927,2020-11-21 +26,126.7,4.0,21.47619047619049,227.20287462100453,2020-11-21 +25,117.60000000000001,4.0,22.71428571428573,212.9528471934944,2020-11-21 +24,109.10000000000001,4.0,23.52380952380954,196.00276811496101,2020-11-21 +23,102.2,4.0,24.380952380952397,179.10046402857623,2020-11-21 +22,94.60000000000001,4.0,24.238095238095255,166.1579467525529,2020-11-21 +21,87.4,4.0,23.428571428571445,160.47183197040505,2020-11-21 +20,80.0,4.0,22.2857142857143,162.63316200710858,2020-11-21 +19,72.60000000000001,4.0,21.000000000000014,159.67612958712738,2020-11-21 +18,64.8,4.0,20.857142857142872,146.4786087075562,2020-11-21 +17,64.8,4.0,25.238095238095255,124.20592391832184,2020-11-21 +29,154.70000000000002,4.0,18.09523809523811,261.25874102411115,2020-11-21 +47,323.1,4.0,17.80952380952382,297.07647852815523,2020-11-21 +48,333.8,4.0,17.80952380952382,305.5834597412704,2020-11-21 +49,344.8,4.0,17.66666666666668,310.70093445957406,2020-11-21 +76,631.5,4.0,16.66666666666668,286.3501531949452,2020-11-21 +75,620.5,4.0,16.80952380952382,296.0872700524877,2020-11-21 +74,609.9,4.0,16.80952380952382,293.8824111658374,2020-11-21 +73,599.3000000000001,4.0,16.66666666666668,287.00490260994104,2020-11-21 +72,587.2,4.0,16.714285714285726,279.4009483344597,2020-11-21 +71,577.1,4.0,16.85714285714287,278.0229848720312,2020-11-21 +70,566.4,4.0,17.095238095238106,279.16148107749336,2020-11-21 +69,555.9,4.0,17.00000000000001,279.79602620813523,2020-11-21 +68,545.1,4.0,17.095238095238106,277.43953625355266,2020-11-21 +67,534.5,4.0,16.85714285714287,269.133340911334,2020-11-21 +66,523.3000000000001,4.0,16.714285714285726,257.9636123256431,2020-11-21 +65,513.5,4.0,16.66666666666668,252.62891087930763,2020-11-21 +64,502.8,4.0,16.714285714285726,252.32707640017583,2020-11-21 +63,492.3,4.0,16.85714285714287,258.36929654631086,2020-11-21 +62,482.0,4.0,17.095238095238106,266.55391030989654,2020-11-21 +61,472.20000000000005,4.0,17.00000000000001,269.1515303179924,2020-11-21 +60,461.20000000000005,4.0,17.00000000000001,267.3519736284769,2020-11-21 +59,450.70000000000005,4.0,17.00000000000001,270.45543918657904,2020-11-21 +58,440.0,4.0,17.00000000000001,279.47862448475536,2020-11-21 +57,429.6,4.0,16.904761904761916,292.6742834528623,2020-11-21 +56,418.70000000000005,4.0,17.047619047619058,302.36446668014037,2020-11-21 +55,408.0,4.0,17.333333333333343,300.3107103167026,2020-11-21 +54,396.6,4.0,17.761904761904773,290.7968273988926,2020-11-21 +53,386.90000000000003,4.0,17.904761904761916,287.38883624679823,2020-11-21 +52,376.70000000000005,4.0,17.66666666666668,292.095520330988,2020-11-21 +51,366.3,4.0,17.380952380952394,301.2547494314708,2020-11-21 +50,355.5,4.0,17.380952380952394,309.73182729447933,2020-11-21 +78,652.6,4.0,16.333333333333343,279.27713059973564,2020-11-21 +152,1341.1000000000001,4.0,18.047619047619058,342.81925149599147,2020-11-21 +153,1352.1000000000001,4.0,18.333333333333343,343.0447275251164,2020-11-21 +154,1362.2,4.0,18.761904761904773,347.11404704429754,2020-11-21 +245,2302.8,4.0,17.523809523809533,299.92991632951225,2020-11-21 +244,2292.4,4.0,17.761904761904773,300.22778241732465,2020-11-21 +243,2281.7000000000003,4.0,17.61904761904763,305.89225333149597,2020-11-21 +242,2270.9,4.0,17.428571428571438,311.1550457113151,2020-11-21 +241,2260.7000000000003,4.0,17.61904761904763,315.273857276087,2020-11-21 +240,2249.7000000000003,4.0,17.66666666666668,313.37587789428756,2020-11-21 +239,2238.9,4.0,17.571428571428584,310.98940058988467,2020-11-21 +238,2228.4,4.0,17.85714285714287,309.100683590632,2020-11-21 +237,2216.9,4.0,17.571428571428584,304.3780199569745,2020-11-21 +236,2206.3,4.0,17.66666666666668,300.57350474626776,2020-11-21 +235,2196.0,4.0,17.714285714285726,301.1163620203675,2020-11-21 +234,2185.2000000000003,4.0,17.380952380952394,302.33399747799865,2020-11-21 +246,2313.7000000000003,4.0,17.42857142857144,307.65869887302836,2020-11-21 +233,2174.3,4.0,17.190476190476204,306.9944319697935,2020-11-21 +231,2152.8,4.0,16.80952380952382,311.5590392487711,2020-11-21 +230,2141.8,4.0,17.047619047619058,310.84098575259713,2020-11-21 +229,2131.1,4.0,17.333333333333343,311.5649843545533,2020-11-21 +228,2120.2000000000003,4.0,17.66666666666668,315.01851895499203,2020-11-21 +227,2109.9,4.0,17.952380952380963,323.19914557589675,2020-11-21 +226,2098.9,4.0,18.000000000000014,331.87109647309444,2020-11-21 +225,2088.4,4.0,18.047619047619058,336.4575088502285,2020-11-21 +224,2077.8,4.0,18.333333333333343,336.14019291970465,2020-11-21 +223,2067.1,4.0,18.761904761904773,332.3665376063608,2020-11-21 +222,2056.7000000000003,4.0,18.90476190476192,328.92647252651955,2020-11-21 +221,2045.9,4.0,18.761904761904773,328.2739921280763,2020-11-21 +220,2035.9,4.0,18.333333333333343,329.18432436186856,2020-11-21 +232,2163.4,4.0,17.142857142857153,311.10902321049434,2020-11-21 +247,2324.4,4.0,16.952380952380963,315.8113818984315,2020-11-21 +248,2335.2000000000003,4.0,16.952380952380963,318.65578702558224,2020-11-21 +249,2346.2000000000003,4.0,17.42857142857144,318.05398532118284,2020-11-21 +276,2631.8,4.0,18.000000000000014,327.2453306623638,2020-11-21 +275,2620.9,4.0,17.90476190476192,332.28350689535387,2020-11-21 +274,2610.4,4.0,18.142857142857153,334.4888857103193,2020-11-21 +273,2599.4,4.0,18.2857142857143,328.7777472392172,2020-11-21 +272,2588.5,4.0,18.333333333333346,313.560465263091,2020-11-21 +271,2578.5,4.0,18.2857142857143,296.04645228182414,2020-11-21 +270,2568.5,4.0,18.142857142857153,283.9424185563597,2020-11-21 +269,2557.7000000000003,4.0,17.90476190476192,281.1982879751575,2020-11-21 +268,2547.5,4.0,17.90476190476192,285.9301658223512,2020-11-21 +267,2537.4,4.0,18.142857142857153,291.98958713566344,2020-11-21 +266,2526.9,4.0,18.2857142857143,296.53848422033866,2020-11-21 +265,2516.5,4.0,18.42857142857144,299.7000723220678,2020-11-21 +264,2506.2000000000003,4.0,18.142857142857153,304.0132741415921,2020-11-21 +263,2495.4,4.0,17.952380952380963,308.03987817441106,2020-11-21 +262,2485.0,4.0,17.523809523809536,309.2838534333572,2020-11-21 +261,2473.8,4.0,17.380952380952394,302.82433417220204,2020-11-21 +260,2463.4,4.0,17.190476190476204,292.0929076077366,2020-11-21 +259,2452.5,4.0,17.142857142857153,280.99956140725766,2020-11-21 +258,2441.8,4.0,16.904761904761916,274.08383933400194,2020-11-21 +257,2431.5,4.0,17.00000000000001,272.33568397747376,2020-11-21 +256,2421.2000000000003,4.0,17.00000000000001,278.83997287036993,2020-11-21 +255,2410.6,4.0,17.00000000000001,290.5555456301579,2020-11-21 +254,2399.7000000000003,4.0,16.904761904761916,303.5576207576613,2020-11-21 +253,2389.6,4.0,17.047619047619058,314.27185780510456,2020-11-21 +252,2378.8,4.0,17.42857142857144,318.5565061062499,2020-11-21 +251,2367.7000000000003,4.0,17.61904761904763,316.14740706830014,2020-11-21 +250,2356.5,4.0,17.61904761904763,315.25457451125965,2020-11-21 +219,2025.3000000000002,4.0,17.952380952380963,329.04613542765276,2020-11-21 +218,2014.4,4.0,17.952380952380963,327.112026870906,2020-11-21 +217,2003.5,4.0,18.333333333333343,322.11374343979054,2020-11-21 +216,1993.4,4.0,18.66666666666668,315.2158562797787,2020-11-21 +181,1657.0,4.0,18.190476190476204,403.5371650467755,2020-11-21 +180,1645.3000000000002,4.0,17.952380952380963,406.75532601312904,2020-11-21 +179,1634.2,4.0,17.952380952380963,403.27166616848103,2020-11-21 +178,1621.9,4.0,17.85714285714287,388.93989693578385,2020-11-21 +177,1610.2,4.0,17.761904761904773,373.8779864533035,2020-11-21 +176,1598.6000000000001,4.0,18.09523809523811,365.181925740633,2020-11-21 +175,1587.6000000000001,4.0,18.000000000000014,359.0487077101594,2020-11-21 +174,1575.8000000000002,4.0,17.90476190476192,353.3620759478198,2020-11-21 +173,1564.8000000000002,4.0,18.142857142857153,346.51341335313487,2020-11-21 +172,1553.8000000000002,4.0,18.190476190476204,336.44245541166123,2020-11-21 +171,1542.4,4.0,18.380952380952394,328.13847544523617,2020-11-21 +170,1532.5,4.0,18.61904761904763,325.4056777112522,2020-11-21 +169,1521.8000000000002,4.0,18.80952380952382,324.70908187821044,2020-11-21 +168,1511.5,4.0,18.952380952380963,325.63905038360144,2020-11-21 +167,1501.0,4.0,19.047619047619058,326.6267377616249,2020-11-21 +166,1490.6000000000001,4.0,18.66666666666668,326.0194128615274,2020-11-21 +165,1480.6000000000001,4.0,18.333333333333343,323.9774419561138,2020-11-21 +164,1470.0,4.0,18.047619047619058,321.01509863313714,2020-11-21 +163,1459.2,4.0,17.90476190476192,317.2345649827488,2020-11-21 +162,1448.1000000000001,4.0,18.000000000000014,314.49699172296687,2020-11-21 +161,1437.1000000000001,4.0,18.000000000000014,314.7439359903708,2020-11-21 +160,1426.8000000000002,4.0,18.000000000000014,317.972839237956,2020-11-21 +159,1416.1000000000001,4.0,17.90476190476192,325.37149906736624,2020-11-21 +158,1405.2,4.0,18.047619047619058,336.0834803475627,2020-11-21 +157,1394.2,4.0,18.333333333333343,346.7510323962499,2020-11-21 +156,1383.3000000000002,4.0,18.761904761904773,352.45955518866174,2020-11-21 +155,1372.5,4.0,18.90476190476192,352.2452524934731,2020-11-21 +182,1668.2,4.0,18.66666666666668,392.33662446317464,2020-11-21 +532,5364.1,4.0,17.047619047619058,372.7805041381182,2020-11-21 +183,1678.5,4.0,18.42857142857144,374.78858561494644,2020-11-21 +185,1700.0,4.0,18.761904761904773,340.6378017662695,2020-11-21 +215,1983.8000000000002,4.0,18.952380952380963,308.45570703847,2020-11-21 +214,1973.0,4.0,19.09523809523811,302.86707979641346,2020-11-21 +213,1962.3000000000002,4.0,19.000000000000014,299.429223597637,2020-11-21 +212,1952.6000000000001,4.0,19.000000000000014,299.91229890937217,2020-11-21 +211,1942.2,4.0,19.09523809523811,303.06126886603226,2020-11-21 +210,1931.6000000000001,4.0,18.85714285714287,307.8019213901391,2020-11-21 +209,1921.3000000000002,4.0,18.714285714285726,313.2053540327232,2020-11-21 +208,1911.4,4.0,18.66666666666668,317.37343872502123,2020-11-21 +207,1901.0,4.0,18.714285714285726,316.4369002488817,2020-11-21 +206,1890.6000000000001,4.0,18.85714285714287,312.76215517993137,2020-11-21 +205,1880.2,4.0,19.190476190476204,312.206718003998,2020-11-21 +204,1870.3000000000002,4.0,18.952380952380963,316.5187148209527,2020-11-21 +203,1859.9,4.0,18.571428571428584,313.3616040986188,2020-11-21 +202,1849.5,4.0,18.571428571428584,301.20152258392966,2020-11-21 +201,1839.2,4.0,18.571428571428584,248.43757998436166,2020-11-21 +200,1828.8000000000002,4.0,15.857142857142868,170.4018710481093,2020-11-21 +196,1780.8000000000002,4.0,22.761904761904777,160.1061423555405,2020-11-21 +195,1780.8000000000002,4.0,21.52380952380954,243.7611138989655,2020-11-21 +194,1780.8000000000002,4.0,17.714285714285726,301.33758247670556,2020-11-21 +193,1780.8000000000002,4.0,19.2857142857143,322.53210103854383,2020-11-21 +192,1771.0,4.0,19.333333333333346,314.0612196473543,2020-11-21 +191,1761.1000000000001,4.0,19.2857142857143,300.24464956183294,2020-11-21 +190,1750.7,4.0,19.142857142857157,315.21553278499925,2020-11-21 +189,1740.1000000000001,4.0,18.90476190476192,319.4225215315046,2020-11-21 +188,1730.3000000000002,4.0,19.09523809523811,320.1146508111897,2020-11-21 +187,1720.3000000000002,4.0,18.85714285714287,320.016275899054,2020-11-21 +186,1709.8000000000002,4.0,18.714285714285726,325.4173648861471,2020-11-21 +184,1689.4,4.0,18.66666666666668,357.01087547961976,2020-11-21 +533,5375.3,4.0,17.333333333333343,367.516343719471,2020-11-21 +534,5386.6,4.0,17.761904761904773,359.38483502503016,2020-11-21 +535,5397.1,4.0,17.904761904761916,354.8040193341434,2020-11-21 +879,8968.6,4.0,18.380952380952394,310.9847442479224,2020-11-21 +878,8957.5,4.0,18.42857142857144,298.5924673416312,2020-11-21 +877,8947.800000000001,4.0,18.142857142857153,293.73492518098465,2020-11-21 +876,8937.5,4.0,17.85714285714287,295.1849017674177,2020-11-21 +875,8926.5,4.0,17.571428571428584,299.0155052550677,2020-11-21 +874,8915.7,4.0,17.714285714285726,301.67304849523885,2020-11-21 +873,8905.0,4.0,17.952380952380963,302.313135753717,2020-11-21 +872,8894.6,4.0,18.047619047619058,302.53554474405365,2020-11-21 +871,8884.0,4.0,17.66666666666668,305.07604358025094,2020-11-21 +870,8873.800000000001,4.0,17.238095238095248,306.75416915084685,2020-11-21 +869,8862.7,4.0,17.095238095238106,303.43594476465046,2020-11-21 +868,8852.2,4.0,17.238095238095248,297.117510720385,2020-11-21 +880,8979.6,4.0,18.09523809523811,324.8658574536334,2020-11-21 +867,8841.300000000001,4.0,17.66666666666668,292.22281566311324,2020-11-21 +865,8820.4,4.0,18.09523809523811,296.25473783891107,2020-11-21 +864,8809.800000000001,4.0,18.000000000000014,301.46663193779125,2020-11-21 +863,8799.6,4.0,18.000000000000014,302.6877413378071,2020-11-21 +862,8788.800000000001,4.0,18.000000000000014,300.476075370295,2020-11-21 +861,8778.1,4.0,18.000000000000014,296.77479058606303,2020-11-21 +860,8767.4,4.0,18.000000000000014,292.967734427542,2020-11-21 +859,8757.300000000001,4.0,18.000000000000014,291.4472869080712,2020-11-21 +858,8747.2,4.0,18.09523809523811,292.33595929679234,2020-11-21 +857,8736.4,4.0,17.952380952380963,291.1931016248067,2020-11-21 +856,8725.800000000001,4.0,17.571428571428584,287.244691174883,2020-11-21 +855,8715.1,4.0,17.47619047619049,280.5215988490171,2020-11-21 +854,8704.6,4.0,17.333333333333343,271.88848766634067,2020-11-21 +866,8830.7,4.0,17.952380952380963,292.0273472714225,2020-11-21 +881,8990.7,4.0,17.571428571428584,334.37903073654127,2020-11-21 +882,9001.800000000001,4.0,17.238095238095248,335.02538508728765,2020-11-21 +883,9012.800000000001,4.0,17.190476190476204,323.80315710485235,2020-11-21 +910,9297.6,4.0,16.66666666666668,304.1163628821014,2020-11-21 +909,9286.5,4.0,16.952380952380963,297.88307026226494,2020-11-21 +908,9274.9,4.0,17.095238095238106,289.8500168764638,2020-11-21 +907,9264.5,4.0,17.00000000000001,282.13194982521753,2020-11-21 +906,9253.5,4.0,17.00000000000001,273.2133191046758,2020-11-21 +905,9242.9,4.0,17.00000000000001,261.4357571150772,2020-11-21 +904,9232.0,4.0,17.00000000000001,251.4933056470683,2020-11-21 +903,9221.7,4.0,17.00000000000001,249.68576301634934,2020-11-21 +902,9211.0,4.0,17.00000000000001,258.41188588665955,2020-11-21 +901,9200.800000000001,4.0,16.904761904761916,275.080373936539,2020-11-21 +900,9190.4,4.0,17.047619047619058,292.41479715716054,2020-11-21 +899,9179.9,4.0,17.333333333333343,303.9583886179384,2020-11-21 +898,9169.2,4.0,17.66666666666668,308.93656732673503,2020-11-21 +897,9159.2,4.0,18.047619047619058,309.9592545046868,2020-11-21 +896,9148.7,4.0,18.047619047619058,305.37621159118675,2020-11-21 +895,9138.0,4.0,17.571428571428584,295.5573367113975,2020-11-21 +894,9126.9,4.0,17.47619047619049,282.36863868946875,2020-11-21 +893,9117.1,4.0,17.333333333333343,269.12877605580627,2020-11-21 +892,9106.6,4.0,17.238095238095248,262.6673300208056,2020-11-21 +891,9096.5,4.0,17.2857142857143,268.08819122511795,2020-11-21 +890,9086.9,4.0,17.142857142857153,279.1604700803017,2020-11-21 +889,9075.9,4.0,16.904761904761916,286.94333594385023,2020-11-21 +888,9065.0,4.0,16.904761904761916,287.0257434906931,2020-11-21 +887,9054.0,4.0,17.142857142857153,280.6780029466064,2020-11-21 +886,9043.7,4.0,17.2857142857143,277.7765979638639,2020-11-21 +885,9033.4,4.0,17.333333333333343,286.17353243341097,2020-11-21 +884,9023.5,4.0,17.190476190476204,304.6108458737175,2020-11-21 +853,8694.0,4.0,17.238095238095248,267.1473813675142,2020-11-21 +911,9308.9,4.0,16.333333333333343,307.22747909153986,2020-11-21 +852,8684.2,4.0,17.190476190476204,269.07961292168466,2020-11-21 +850,8662.9,4.0,17.333333333333343,281.3660678483965,2020-11-21 +818,8324.7,4.0,17.00000000000001,298.91620627878365,2020-11-21 +817,8313.800000000001,4.0,17.00000000000001,301.258635640109,2020-11-21 +816,8303.0,4.0,17.00000000000001,303.79320711106027,2020-11-21 +815,8292.4,4.0,17.00000000000001,309.28259310295635,2020-11-21 +814,8281.9,4.0,16.904761904761916,315.3129723693968,2020-11-21 +813,8270.7,4.0,16.952380952380963,317.30533256882677,2020-11-21 +812,8259.4,4.0,17.47619047619049,311.9692669696314,2020-11-21 +811,8248.300000000001,4.0,17.952380952380963,302.05301712092756,2020-11-21 +810,8237.800000000001,4.0,18.2857142857143,296.41210077863764,2020-11-21 +809,8227.5,4.0,18.47619047619049,301.3648749842153,2020-11-21 +808,8216.6,4.0,18.09523809523811,310.3294607747522,2020-11-21 +807,8206.2,4.0,17.47619047619049,318.86027997203826,2020-11-21 +819,8335.1,4.0,17.00000000000001,294.1076467647503,2020-11-21 +806,8194.9,4.0,17.47619047619049,323.89192433252947,2020-11-21 +804,8172.5,4.0,17.285714285714295,317.83940240848364,2020-11-21 +803,8161.900000000001,4.0,17.61904761904763,312.2334987767291,2020-11-21 +802,8151.400000000001,4.0,17.80952380952382,302.68848226604314,2020-11-21 +801,8140.3,4.0,17.85714285714287,294.0715259100175,2020-11-21 +800,8130.1,4.0,18.190476190476204,288.95725579771215,2020-11-21 +799,8119.6,4.0,17.952380952380963,289.3620765009732,2020-11-21 +798,8108.900000000001,4.0,17.66666666666668,296.32434259095044,2020-11-21 +797,8098.3,4.0,17.238095238095248,306.2857752648739,2020-11-21 +796,8087.400000000001,4.0,17.095238095238106,312.31829330577654,2020-11-21 +795,8076.8,4.0,17.333333333333343,315.0246352844458,2020-11-21 +794,8065.400000000001,4.0,17.61904761904763,314.79804628247354,2020-11-21 +793,8055.400000000001,4.0,17.523809523809533,312.7833875475631,2020-11-21 +805,8184.0,4.0,17.238095238095248,322.83682108275457,2020-11-21 +820,8345.800000000001,4.0,17.00000000000001,289.3685570386408,2020-11-21 +821,8356.800000000001,4.0,17.00000000000001,288.0404910391376,2020-11-21 +822,8367.300000000001,4.0,17.00000000000001,289.2688526682365,2020-11-21 +849,8652.800000000001,4.0,17.61904761904763,286.56843057510986,2020-11-21 +848,8642.1,4.0,17.523809523809533,287.73013887110244,2020-11-21 +847,8631.5,4.0,17.47619047619049,288.5302635229128,2020-11-21 +846,8621.0,4.0,17.47619047619049,288.80451443709495,2020-11-21 +845,8610.5,4.0,17.428571428571438,286.84594676193535,2020-11-21 +844,8599.800000000001,4.0,17.66666666666668,285.28125735933577,2020-11-21 +843,8589.9,4.0,17.761904761904773,283.9583406797196,2020-11-21 +842,8579.7,4.0,17.714285714285726,283.6658645026632,2020-11-21 +841,8569.4,4.0,17.952380952380963,288.1756024526296,2020-11-21 +840,8559.300000000001,4.0,18.047619047619058,294.3356529707911,2020-11-21 +839,8548.5,4.0,17.571428571428584,298.29631922091517,2020-11-21 +838,8537.7,4.0,17.380952380952394,300.8658110902794,2020-11-21 +837,8527.4,4.0,17.47619047619049,302.1637999864738,2020-11-21 +836,8516.800000000001,4.0,17.523809523809533,301.6900714974331,2020-11-21 +835,8506.1,4.0,17.523809523809533,302.5839310722574,2020-11-21 +834,8495.2,4.0,17.571428571428584,303.4239362466183,2020-11-21 +833,8484.9,4.0,17.238095238095248,302.4490204369233,2020-11-21 +832,8474.300000000001,4.0,17.285714285714295,299.9958224344779,2020-11-21 +831,8463.5,4.0,17.61904761904763,298.95249216404784,2020-11-21 +830,8452.800000000001,4.0,17.904761904761916,299.31394744905316,2020-11-21 +829,8442.6,4.0,17.80952380952382,302.69582835771786,2020-11-21 +828,8431.800000000001,4.0,17.761904761904773,306.91478002846566,2020-11-21 +827,8421.6,4.0,17.333333333333343,309.22109728748075,2020-11-21 +826,8410.9,4.0,17.047619047619058,306.5998361486477,2020-11-21 +825,8399.6,4.0,16.904761904761916,302.14779210891083,2020-11-21 +824,8388.800000000001,4.0,17.00000000000001,297.30359893839085,2020-11-21 +823,8378.0,4.0,17.00000000000001,292.7108911291555,2020-11-21 +851,8673.300000000001,4.0,17.190476190476204,274.17937049708524,2020-11-21 +912,9320.300000000001,4.0,16.047619047619058,306.4573652163315,2020-11-21 +913,9331.300000000001,4.0,15.904761904761916,301.1115077532771,2020-11-21 +914,9342.7,4.0,15.904761904761916,294.8914020207375,2020-11-21 +1002,10294.5,4.0,16.66666666666668,263.0898910852933,2020-11-21 +1001,10283.300000000001,4.0,16.80952380952382,244.7665554802885,2020-11-21 +1000,10272.7,4.0,16.80952380952382,235.05286969630217,2020-11-21 +999,10262.800000000001,4.0,16.66666666666668,239.85108585626705,2020-11-21 +998,10252.900000000001,4.0,16.380952380952394,257.281025215721,2020-11-21 +997,10242.2,4.0,16.380952380952394,277.22520086362084,2020-11-21 +996,10230.800000000001,4.0,16.571428571428584,293.50750897055866,2020-11-21 +995,10220.800000000001,4.0,16.952380952380963,304.1132363460714,2020-11-21 +994,10209.6,4.0,17.095238095238106,307.0008864213994,2020-11-21 +993,10198.6,4.0,17.00000000000001,304.75294266007745,2020-11-21 +992,10187.5,4.0,17.00000000000001,301.8392195139038,2020-11-21 +991,10176.300000000001,4.0,16.904761904761916,300.45860962586187,2020-11-21 +1003,10305.0,4.0,16.714285714285726,278.07836612775316,2020-11-21 +990,10165.1,4.0,17.142857142857153,303.874959098258,2020-11-21 +988,10143.400000000001,4.0,17.333333333333343,325.48731653685724,2020-11-21 +987,10132.7,4.0,17.2857142857143,334.24063532619454,2020-11-21 +986,10121.1,4.0,17.142857142857153,338.0182456162428,2020-11-21 +985,10110.0,4.0,16.904761904761916,338.07082958627433,2020-11-21 +984,10099.0,4.0,17.00000000000001,334.74437667488326,2020-11-21 +983,10086.900000000001,4.0,17.00000000000001,330.95015622967514,2020-11-21 +982,10076.2,4.0,17.00000000000001,329.4458653320164,2020-11-21 +981,10064.5,4.0,17.00000000000001,330.4283547132927,2020-11-21 +980,10053.5,4.0,17.00000000000001,331.73711972272974,2020-11-21 +979,10042.1,4.0,17.00000000000001,334.3040523371813,2020-11-21 +978,10031.1,4.0,17.00000000000001,336.25106156484475,2020-11-21 +977,10019.5,4.0,17.00000000000001,337.1324505647688,2020-11-21 +989,10154.7,4.0,17.2857142857143,314.28725141913253,2020-11-21 +1004,10315.800000000001,4.0,16.85714285714287,284.43004969688377,2020-11-21 +1005,10326.0,4.0,17.095238095238106,280.119045650674,2020-11-21 +1006,10336.5,4.0,17.00000000000001,270.62306607594326,2020-11-21 +1033,10614.5,4.0,17.761904761904773,273.66740088089773,2020-11-21 +1032,10603.900000000001,4.0,17.80952380952382,269.4055625037413,2020-11-21 +1031,10593.5,4.0,17.904761904761916,269.90473292735624,2020-11-21 +1030,10583.7,4.0,17.61904761904763,272.90222650421833,2020-11-21 +1029,10573.300000000001,4.0,17.380952380952394,273.72671809597523,2020-11-21 +1028,10563.1,4.0,17.190476190476204,273.10359357001335,2020-11-21 +1027,10552.900000000001,4.0,17.142857142857153,268.97302671116216,2020-11-21 +1026,10542.300000000001,4.0,16.904761904761916,262.4988091654966,2020-11-21 +1025,10532.300000000001,4.0,17.00000000000001,256.0728181133394,2020-11-21 +1024,10522.0,4.0,17.00000000000001,253.5914730565224,2020-11-21 +1023,10511.900000000001,4.0,17.00000000000001,256.67422104165075,2020-11-21 +1022,10501.900000000001,4.0,17.00000000000001,263.0403370005363,2020-11-21 +1021,10491.800000000001,4.0,16.904761904761916,268.57808883152325,2020-11-21 +1020,10481.2,4.0,17.142857142857153,270.04953896657787,2020-11-21 +1019,10470.5,4.0,17.2857142857143,267.0698238651817,2020-11-21 +1018,10460.5,4.0,17.333333333333343,262.6582750133821,2020-11-21 +1017,10450.2,4.0,17.380952380952394,257.93350886957114,2020-11-21 +1016,10439.7,4.0,17.095238095238106,251.7523872818723,2020-11-21 +1015,10429.300000000001,4.0,16.571428571428584,245.3345267264329,2020-11-21 +1014,10418.5,4.0,16.238095238095248,241.32775134741746,2020-11-21 +1013,10407.900000000001,4.0,16.1904761904762,241.33655054269173,2020-11-21 +1012,10398.400000000001,4.0,16.095238095238106,245.4038083094125,2020-11-21 +1011,10387.900000000001,4.0,16.380952380952394,249.50278353777318,2020-11-21 +1010,10377.400000000001,4.0,16.619047619047628,252.0385859016051,2020-11-21 +1009,10367.0,4.0,16.80952380952382,252.74349365889208,2020-11-21 +1008,10356.6,4.0,16.85714285714287,255.65547229715617,2020-11-21 +1007,10346.900000000001,4.0,17.095238095238106,261.15474852572794,2020-11-21 +976,10009.0,4.0,17.00000000000001,340.81185658550567,2020-11-21 +975,9997.400000000001,4.0,17.00000000000001,344.44841400909087,2020-11-21 +974,9986.1,4.0,16.904761904761916,346.1366055277131,2020-11-21 +973,9974.7,4.0,17.142857142857153,343.4193348929216,2020-11-21 +941,9630.5,4.0,17.952380952380963,274.2019594358137,2020-11-21 +940,9620.1,4.0,17.66666666666668,272.72296151344403,2020-11-21 +939,9610.5,4.0,17.333333333333343,267.4862562425382,2020-11-21 +938,9599.2,4.0,17.047619047619058,257.93185045934996,2020-11-21 +937,9589.0,4.0,16.904761904761916,250.8656419528814,2020-11-21 +936,9578.6,4.0,17.00000000000001,254.58837628492344,2020-11-21 +935,9568.5,4.0,17.00000000000001,268.4130674835747,2020-11-21 +934,9558.300000000001,4.0,17.00000000000001,286.42607531975165,2020-11-21 +933,9547.300000000001,4.0,17.00000000000001,301.17778017295984,2020-11-21 +932,9535.800000000001,4.0,16.904761904761916,308.3105039312295,2020-11-21 +931,9525.5,4.0,17.142857142857153,309.6650368988188,2020-11-21 +930,9514.4,4.0,17.2857142857143,309.5471079858695,2020-11-21 +929,9503.5,4.0,17.333333333333343,309.1240058889917,2020-11-21 +928,9492.7,4.0,17.2857142857143,309.9477019702806,2020-11-21 +927,9481.9,4.0,17.142857142857153,308.8033286521877,2020-11-21 +926,9471.0,4.0,16.80952380952382,305.74695017899467,2020-11-21 +925,9460.300000000001,4.0,17.142857142857153,300.0488383575819,2020-11-21 +924,9449.800000000001,4.0,17.2857142857143,293.3513509106123,2020-11-21 +923,9439.300000000001,4.0,17.333333333333343,286.73557620572086,2020-11-21 +922,9428.800000000001,4.0,17.2857142857143,282.67782773870965,2020-11-21 +921,9417.6,4.0,17.238095238095248,277.200730737149,2020-11-21 +920,9407.0,4.0,16.761904761904773,271.30520172774237,2020-11-21 +919,9396.2,4.0,16.80952380952382,266.0982887995831,2020-11-21 +918,9386.0,4.0,16.619047619047628,265.4594415831825,2020-11-21 +917,9375.6,4.0,16.380952380952394,269.32498594297635,2020-11-21 +916,9364.800000000001,4.0,16.190476190476204,278.2599718160634,2020-11-21 +915,9353.5,4.0,16.142857142857153,287.53116497313226,2020-11-21 +942,9640.6,4.0,18.09523809523811,273.83024543674094,2020-11-21 +792,8044.8,4.0,17.47619047619049,309.74610715112595,2020-11-21 +943,9651.1,4.0,18.09523809523811,275.0266006060775,2020-11-21 +945,9672.1,4.0,17.571428571428584,281.93889959807075,2020-11-21 +972,9963.6,4.0,17.190476190476204,334.2423521645909,2020-11-21 +971,9952.6,4.0,17.47619047619049,319.4658290018076,2020-11-21 +970,9941.1,4.0,17.571428571428584,308.08661822659815,2020-11-21 +969,9930.800000000001,4.0,17.47619047619049,300.9702213240745,2020-11-21 +968,9920.1,4.0,17.095238095238106,301.9558586435959,2020-11-21 +967,9909.7,4.0,17.2857142857143,306.792610099772,2020-11-21 +966,9898.900000000001,4.0,17.095238095238106,311.8580892839349,2020-11-21 +965,9888.300000000001,4.0,17.380952380952394,314.83945631463007,2020-11-21 +964,9877.5,4.0,17.61904761904763,317.80793615842674,2020-11-21 +963,9866.800000000001,4.0,17.80952380952382,312.1492021589065,2020-11-21 +962,9855.900000000001,4.0,17.85714285714287,303.1099426257073,2020-11-21 +961,9845.0,4.0,18.380952380952394,293.5967442280694,2020-11-21 +960,9835.1,4.0,17.571428571428584,287.4805653615594,2020-11-21 +959,9824.5,4.0,17.142857142857153,288.8336530563495,2020-11-21 +958,9814.4,4.0,17.09523809523811,297.7139190321667,2020-11-21 +957,9802.5,4.0,17.09523809523811,301.467463789458,2020-11-21 +956,9791.7,4.0,17.238095238095248,304.87236542018115,2020-11-21 +955,9780.9,4.0,17.61904761904763,308.65774461950286,2020-11-21 +954,9769.9,4.0,17.047619047619058,310.9619787311175,2020-11-21 +953,9759.5,4.0,16.904761904761916,314.4924885059171,2020-11-21 +952,9748.6,4.0,17.00000000000001,318.0082198055969,2020-11-21 +951,9737.5,4.0,16.904761904761916,317.61933776995033,2020-11-21 +950,9726.7,4.0,17.142857142857153,317.1243019990661,2020-11-21 +949,9715.7,4.0,17.2857142857143,314.0780789672687,2020-11-21 +948,9704.7,4.0,17.238095238095248,306.11773855726176,2020-11-21 +947,9693.2,4.0,17.333333333333343,297.1184760467267,2020-11-21 +946,9682.9,4.0,17.47619047619049,288.239056471058,2020-11-21 +944,9661.9,4.0,17.952380952380963,278.0144174847825,2020-11-21 +1968,20036.9,4.0,21.04761904761906,183.4761904761906,2020-11-21 +791,8033.8,4.0,17.47619047619049,301.5653981284636,2020-11-21 +789,8012.6,4.0,17.714285714285726,273.1150682904623,2020-11-21 +622,6340.200000000001,4.0,18.000000000000014,329.8153872674784,2020-11-21 +621,6329.700000000001,4.0,18.09523809523811,332.3385259545361,2020-11-21 +620,6319.200000000001,4.0,17.85714285714287,330.6309487658634,2020-11-21 +619,6308.8,4.0,17.714285714285726,325.33158142357036,2020-11-21 +618,6297.700000000001,4.0,17.761904761904773,317.38716218114183,2020-11-21 +617,6287.200000000001,4.0,17.66666666666668,306.2491963305182,2020-11-21 +616,6275.900000000001,4.0,17.428571428571438,299.4987339162767,2020-11-21 +615,6265.8,4.0,17.571428571428584,297.3171402438399,2020-11-21 +614,6255.1,4.0,17.238095238095248,298.30441924277864,2020-11-21 +613,6244.200000000001,4.0,17.380952380952394,303.6755437935508,2020-11-21 +612,6234.0,4.0,17.47619047619049,311.41165428215004,2020-11-21 +611,6223.3,4.0,17.428571428571438,318.05247354619473,2020-11-21 +623,6350.8,4.0,18.000000000000014,326.19524211533314,2020-11-21 +610,6212.6,4.0,17.66666666666668,326.0502546755075,2020-11-21 +608,6191.0,4.0,18.190476190476204,327.3758812638191,2020-11-21 +607,6180.5,4.0,18.380952380952394,322.9250573954231,2020-11-21 +606,6169.700000000001,4.0,18.142857142857153,318.0668374366426,2020-11-21 +605,6159.1,4.0,17.90476190476192,314.7816882760424,2020-11-21 +604,6148.700000000001,4.0,18.000000000000014,316.57872261865475,2020-11-21 +603,6137.5,4.0,18.000000000000014,318.48999993261464,2020-11-21 +602,6126.8,4.0,17.90476190476192,316.77021759026246,2020-11-21 +601,6115.5,4.0,18.142857142857153,314.8027889864413,2020-11-21 +600,6105.200000000001,4.0,18.380952380952394,315.07115059619207,2020-11-21 +599,6094.400000000001,4.0,18.190476190476204,317.93983330595586,2020-11-21 +598,6084.5,4.0,18.000000000000014,325.2030161912444,2020-11-21 +597,6073.5,4.0,17.90476190476192,332.18026298789795,2020-11-21 +609,6201.900000000001,4.0,18.09523809523811,329.7710430616899,2020-11-21 +624,6362.1,4.0,17.90476190476192,323.1232831587595,2020-11-21 +625,6372.8,4.0,18.047619047619058,319.88563736014237,2020-11-21 +626,6383.5,4.0,18.428571428571438,320.58557086374395,2020-11-21 +653,6672.400000000001,4.0,18.428571428571438,343.6236147605489,2020-11-21 +652,6662.0,4.0,18.61904761904763,328.50361015584633,2020-11-21 +651,6652.0,4.0,18.61904761904763,322.0277550821439,2020-11-21 +650,6641.400000000001,4.0,18.428571428571438,324.0982392201711,2020-11-21 +649,6630.700000000001,4.0,17.952380952380963,331.16811776812085,2020-11-21 +648,6619.900000000001,4.0,18.047619047619058,338.76045202798605,2020-11-21 +647,6608.8,4.0,18.190476190476204,343.0505495749661,2020-11-21 +646,6598.1,4.0,18.380952380952394,341.9392636794661,2020-11-21 +645,6587.200000000001,4.0,18.61904761904763,339.83583968611765,2020-11-21 +644,6576.5,4.0,18.90476190476192,336.23402397178234,2020-11-21 +643,6566.0,4.0,18.809523809523824,334.69708545688616,2020-11-21 +642,6555.6,4.0,18.761904761904773,335.5711583691522,2020-11-21 +641,6544.900000000001,4.0,18.333333333333343,336.5972038905953,2020-11-21 +640,6534.200000000001,4.0,18.047619047619058,333.73840161540534,2020-11-21 +639,6523.1,4.0,17.90476190476192,327.2423893875015,2020-11-21 +638,6512.1,4.0,18.000000000000014,318.84206708494554,2020-11-21 +637,6501.3,4.0,18.000000000000014,314.5312165053852,2020-11-21 +636,6490.3,4.0,18.000000000000014,315.6465269045814,2020-11-21 +635,6479.700000000001,4.0,18.000000000000014,319.6049061882631,2020-11-21 +634,6469.200000000001,4.0,18.000000000000014,323.3601130948666,2020-11-21 +633,6458.200000000001,4.0,18.000000000000014,326.0757373870754,2020-11-21 +632,6447.6,4.0,18.000000000000014,328.1944714815684,2020-11-21 +631,6437.1,4.0,17.90476190476192,331.4748840299578,2020-11-21 +630,6425.8,4.0,18.047619047619058,334.7628121689803,2020-11-21 +629,6415.5,4.0,18.428571428571438,334.0709806213938,2020-11-21 +628,6404.3,4.0,18.61904761904763,329.91041871711667,2020-11-21 +627,6393.8,4.0,18.61904761904763,324.85575785462834,2020-11-21 +596,6062.200000000001,4.0,17.571428571428584,331.73372075438215,2020-11-21 +654,6684.3,4.0,18.047619047619058,357.47424310744486,2020-11-21 +595,6051.8,4.0,17.428571428571438,326.7133263547213,2020-11-21 +593,6030.200000000001,4.0,17.238095238095248,315.9550399852543,2020-11-21 +561,5682.700000000001,4.0,17.238095238095248,343.40987797661546,2020-11-21 +560,5671.5,4.0,17.190476190476204,337.7775783222818,2020-11-21 +559,5660.5,4.0,17.095238095238106,331.7939989825064,2020-11-21 +558,5649.1,4.0,17.380952380952394,325.2208336080405,2020-11-21 +557,5638.6,4.0,17.61904761904763,320.32466061667003,2020-11-21 +556,5627.900000000001,4.0,17.904761904761916,318.35362563572903,2020-11-21 +555,5617.3,4.0,17.80952380952382,322.56605018224053,2020-11-21 +554,5606.700000000001,4.0,17.761904761904773,328.72808555595236,2020-11-21 +553,5595.6,4.0,17.238095238095248,338.77208443434915,2020-11-21 +552,5584.8,4.0,17.190476190476204,348.174681354213,2020-11-21 +551,5573.900000000001,4.0,17.095238095238106,353.3107062899812,2020-11-21 +550,5562.8,4.0,17.380952380952394,352.0068820615467,2020-11-21 +562,5693.6,4.0,17.66666666666668,344.24833967344534,2020-11-21 +549,5551.900000000001,4.0,17.61904761904763,348.6325562946686,2020-11-21 +547,5530.0,4.0,17.952380952380963,341.65320553868503,2020-11-21 +546,5518.8,4.0,18.047619047619058,342.2944435768021,2020-11-21 +545,5508.0,4.0,17.571428571428584,343.8333453891464,2020-11-21 +544,5497.5,4.0,17.47619047619049,345.2336526225565,2020-11-21 +543,5486.3,4.0,17.333333333333343,346.21583527207724,2020-11-21 +542,5475.1,4.0,17.238095238095248,346.05790878741726,2020-11-21 +541,5463.200000000001,4.0,17.2857142857143,349.3452042187604,2020-11-21 +540,5453.200000000001,4.0,17.142857142857153,354.6543726128152,2020-11-21 +539,5441.900000000001,4.0,16.80952380952382,360.16626899969816,2020-11-21 +538,5430.900000000001,4.0,17.047619047619058,363.4061657229414,2020-11-21 +537,5419.5,4.0,17.333333333333343,361.8846735098648,2020-11-21 +536,5408.6,4.0,17.761904761904773,356.35832889218955,2020-11-21 +548,5541.1,4.0,17.80952380952382,343.4088668550602,2020-11-21 +563,5704.3,4.0,17.952380952380963,342.0027479531556,2020-11-21 +564,5715.0,4.0,18.09523809523811,337.2905190751329,2020-11-21 +565,5725.8,4.0,18.000000000000014,331.86097792704516,2020-11-21 +592,6019.0,4.0,17.285714285714295,314.1263558484127,2020-11-21 +591,6008.3,4.0,17.61904761904763,317.3412961274707,2020-11-21 +590,5997.3,4.0,17.80952380952382,320.52345482014954,2020-11-21 +589,5986.6,4.0,17.85714285714287,321.3109848286919,2020-11-21 +588,5976.1,4.0,18.09523809523811,321.1727967076472,2020-11-21 +587,5965.5,4.0,18.09523809523811,321.758998603156,2020-11-21 +586,5955.1,4.0,17.85714285714287,324.6155204671685,2020-11-21 +585,5944.8,4.0,17.714285714285726,331.7529787968169,2020-11-21 +584,5933.6,4.0,17.66666666666668,337.6311036483705,2020-11-21 +583,5922.400000000001,4.0,17.714285714285726,336.8322176519432,2020-11-21 +582,5911.700000000001,4.0,17.952380952380963,333.9580736628171,2020-11-21 +581,5900.3,4.0,17.952380952380963,333.54441705768375,2020-11-21 +580,5889.900000000001,4.0,17.714285714285726,335.1314329765055,2020-11-21 +579,5878.900000000001,4.0,17.66666666666668,338.78687466671397,2020-11-21 +578,5867.700000000001,4.0,17.80952380952382,337.9596620848849,2020-11-21 +577,5856.1,4.0,17.714285714285726,338.5562482315335,2020-11-21 +576,5845.8,4.0,17.904761904761916,343.98588777386146,2020-11-21 +575,5834.5,4.0,17.523809523809536,345.78893110244184,2020-11-21 +574,5823.6,4.0,17.428571428571438,337.5225587954495,2020-11-21 +573,5811.900000000001,4.0,17.523809523809536,322.1988406403359,2020-11-21 +572,5800.1,4.0,17.80952380952382,304.6620335388328,2020-11-21 +571,5789.0,4.0,17.85714285714287,308.26929610771913,2020-11-21 +570,5780.0,4.0,18.09523809523811,330.8687312942957,2020-11-21 +569,5770.0,4.0,18.000000000000014,350.01049163736934,2020-11-21 +568,5758.3,4.0,18.000000000000014,356.01973345305515,2020-11-21 +567,5747.3,4.0,18.000000000000014,348.6501524277361,2020-11-21 +566,5736.5,4.0,18.000000000000014,334.9881401565593,2020-11-21 +594,6041.400000000001,4.0,17.571428571428584,321.1183407002069,2020-11-21 +655,6695.200000000001,4.0,17.90476190476192,364.28518012587017,2020-11-21 +656,6706.0,4.0,18.000000000000014,363.4043614396062,2020-11-21 +657,6717.1,4.0,18.000000000000014,358.0101754904193,2020-11-21 +756,7678.1,4.0,17.2857142857143,358.6526252136522,2020-11-21 +755,7666.900000000001,4.0,17.047619047619058,361.2234012540144,2020-11-21 +754,7655.8,4.0,16.952380952380963,362.03190901440485,2020-11-21 +753,7644.3,4.0,17.333333333333343,361.6238172945011,2020-11-21 +752,7633.0,4.0,17.761904761904773,359.97082254638633,2020-11-21 +751,7621.900000000001,4.0,17.80952380952382,358.433126787879,2020-11-21 +750,7611.1,4.0,17.714285714285726,355.9198390372146,2020-11-21 +749,7599.6,4.0,17.80952380952382,350.80669745959904,2020-11-21 +748,7588.0,4.0,18.000000000000014,340.52904784769106,2020-11-21 +747,7576.3,4.0,18.190476190476204,328.0501221996475,2020-11-21 +746,7566.1,4.0,18.380952380952394,319.9449875595048,2020-11-21 +745,7556.3,4.0,18.142857142857153,318.2313618601727,2020-11-21 +757,7689.400000000001,4.0,17.238095238095248,356.609890628205,2020-11-21 +744,7545.1,4.0,17.90476190476192,323.50525114352945,2020-11-21 +742,7523.6,4.0,18.000000000000014,343.9479509289415,2020-11-21 +741,7512.400000000001,4.0,18.000000000000014,349.4628619958336,2020-11-21 +740,7501.6,4.0,18.000000000000014,350.7497412226645,2020-11-21 +739,7490.0,4.0,18.000000000000014,348.9102182818764,2020-11-21 +738,7478.8,4.0,18.000000000000014,345.26159174898976,2020-11-21 +737,7468.200000000001,4.0,17.90476190476192,340.52123083077004,2020-11-21 +736,7457.400000000001,4.0,18.142857142857153,332.6159668158599,2020-11-21 +735,7446.700000000001,4.0,18.2857142857143,320.7042969072756,2020-11-21 +734,7435.900000000001,4.0,18.333333333333346,308.11759378274826,2020-11-21 +733,7426.200000000001,4.0,18.2857142857143,301.89377425860414,2020-11-21 +732,7415.8,4.0,18.142857142857153,302.8335988750803,2020-11-21 +731,7405.1,4.0,17.90476190476192,308.82603543968344,2020-11-21 +743,7534.3,4.0,18.000000000000014,334.2150608052926,2020-11-21 +758,7700.5,4.0,17.42857142857144,355.92623463524956,2020-11-21 +759,7711.8,4.0,17.333333333333343,351.5569406383198,2020-11-21 +760,7723.0,4.0,17.285714285714295,341.66485175692117,2020-11-21 +788,8002.400000000001,4.0,17.190476190476204,239.75469665511696,2020-11-21 +787,7991.700000000001,4.0,16.714285714285726,195.41129848619244,2020-11-21 +786,7980.8,4.0,17.047619047619058,154.58887938339262,2020-11-21 +784,7962.5,4.0,18.142857142857153,162.47825485958793,2020-11-21 +783,7924.700000000001,4.0,18.47619047619049,221.2330837626622,2020-11-21 +782,7924.700000000001,4.0,18.142857142857153,272.72454296178955,2020-11-21 +781,7924.700000000001,4.0,17.90476190476192,302.24735948914815,2020-11-21 +780,7924.700000000001,4.0,18.09523809523811,306.96482563281916,2020-11-21 +779,7924.700000000001,4.0,17.952380952380963,298.68584041657425,2020-11-21 +778,7914.1,4.0,17.66666666666668,297.5271670515657,2020-11-21 +777,7903.6,4.0,17.238095238095248,305.2317885187493,2020-11-21 +776,7892.900000000001,4.0,17.190476190476204,308.9758027134932,2020-11-21 +775,7882.1,4.0,17.095238095238106,308.11060110937836,2020-11-21 +774,7871.0,4.0,17.380952380952394,302.3895097989879,2020-11-21 +773,7860.5,4.0,17.61904761904763,295.2213692728635,2020-11-21 +772,7849.700000000001,4.0,17.80952380952382,287.0449726190726,2020-11-21 +771,7839.400000000001,4.0,17.85714285714287,281.53330248205265,2020-11-21 +770,7828.900000000001,4.0,18.09523809523811,281.01389155615664,2020-11-21 +769,7818.8,4.0,18.09523809523811,285.7403306691166,2020-11-21 +768,7808.1,4.0,17.85714285714287,296.9934388600916,2020-11-21 +767,7798.1,4.0,17.80952380952382,311.655329456216,2020-11-21 +766,7787.8,4.0,17.523809523809536,320.61020846213114,2020-11-21 +765,7776.8,4.0,17.428571428571438,320.9905501047201,2020-11-21 +764,7765.400000000001,4.0,17.61904761904763,316.49155498330526,2020-11-21 +763,7755.3,4.0,17.66666666666668,311.7226648642484,2020-11-21 +762,7744.400000000001,4.0,17.66666666666668,316.06393805359994,2020-11-21 +761,7734.0,4.0,17.714285714285726,328.67741866568883,2020-11-21 +730,7394.8,4.0,18.000000000000014,318.11826213653734,2020-11-21 +729,7384.400000000001,4.0,18.09523809523811,323.6918996331633,2020-11-21 +728,7373.8,4.0,17.85714285714287,305.10907034585864,2020-11-21 +727,7363.5,4.0,17.904761904761916,254.88920122406606,2020-11-21 +684,7002.8,4.0,17.90476190476192,305.36937209183475,2020-11-21 +683,6992.400000000001,4.0,18.142857142857153,306.41489754161205,2020-11-21 +682,6981.400000000001,4.0,18.380952380952394,304.7116639090462,2020-11-21 +681,6971.1,4.0,18.09523809523811,303.84119989071024,2020-11-21 +680,6960.900000000001,4.0,18.142857142857153,306.60018646866234,2020-11-21 +679,6950.6,4.0,18.095238095238106,309.10277404045956,2020-11-21 +678,6939.700000000001,4.0,17.952380952380963,306.91556774633364,2020-11-21 +677,6929.400000000001,4.0,18.142857142857153,302.6297366747573,2020-11-21 +676,6918.8,4.0,18.238095238095248,296.73802703668775,2020-11-21 +675,6908.900000000001,4.0,17.90476190476192,293.94912336730863,2020-11-21 +674,6898.0,4.0,18.000000000000014,296.8529056210789,2020-11-21 +673,6887.6,4.0,18.000000000000014,303.54506403594553,2020-11-21 +672,6877.3,4.0,18.000000000000014,311.7409731277147,2020-11-21 +671,6866.5,4.0,18.000000000000014,321.86225553537145,2020-11-21 +670,6855.5,4.0,18.000000000000014,331.57716532877356,2020-11-21 +669,6844.3,4.0,18.000000000000014,339.2672180999091,2020-11-21 +668,6833.8,4.0,18.000000000000014,341.4182034586672,2020-11-21 +667,6823.200000000001,4.0,18.000000000000014,335.94381529431865,2020-11-21 +666,6812.1,4.0,18.000000000000014,323.1602670256144,2020-11-21 +665,6801.400000000001,4.0,17.90476190476192,307.71836113704137,2020-11-21 +664,6791.0,4.0,18.047619047619058,296.598187140189,2020-11-21 +663,6780.400000000001,4.0,18.428571428571438,294.7387843145117,2020-11-21 +662,6770.1,4.0,18.61904761904763,302.45052375819057,2020-11-21 +661,6760.0,4.0,18.61904761904763,317.19879997149417,2020-11-21 +660,6750.0,4.0,18.428571428571438,332.5919171829277,2020-11-21 +659,6738.700000000001,4.0,18.047619047619058,343.8962076505814,2020-11-21 +658,6727.900000000001,4.0,17.90476190476192,351.28897407344243,2020-11-21 +685,7013.1,4.0,18.000000000000014,301.4518204529225,2020-11-21 +790,8023.0,4.0,17.523809523809533,290.91086208693054,2020-11-21 +686,7023.8,4.0,18.000000000000014,297.28236104883797,2020-11-21 +688,7044.1,4.0,18.000000000000014,307.1558668345216,2020-11-21 +726,7353.200000000001,4.0,17.952380952380963,178.46913547454182,2020-11-21 +714,7289.3,4.0,16.380952380952394,191.71459284763014,2020-11-21 +713,7289.3,4.0,16.285714285714295,278.38040131136364,2020-11-21 +712,7289.3,4.0,18.761904761904773,328.9818794934346,2020-11-21 +711,7289.3,4.0,18.000000000000014,328.0360230895505,2020-11-21 +710,7278.400000000001,4.0,18.000000000000014,304.6591255459873,2020-11-21 +709,7268.1,4.0,18.000000000000014,305.79405443743207,2020-11-21 +708,7257.200000000001,4.0,18.000000000000014,309.55951322943315,2020-11-21 +707,7246.400000000001,4.0,18.000000000000014,308.3017144936092,2020-11-21 +706,7236.0,4.0,18.000000000000014,306.7235118644349,2020-11-21 +705,7225.700000000001,4.0,18.000000000000014,306.8250996729024,2020-11-21 +704,7214.400000000001,4.0,18.000000000000014,305.686456352877,2020-11-21 +703,7203.400000000001,4.0,18.000000000000014,305.76632491890035,2020-11-21 +702,7193.3,4.0,18.190476190476204,307.1290918175055,2020-11-21 +701,7182.400000000001,4.0,17.714285714285726,306.31569920189406,2020-11-21 +700,7172.0,4.0,17.428571428571438,305.34494475054225,2020-11-21 +699,7161.8,4.0,17.42857142857144,304.1413964030559,2020-11-21 +698,7149.6,4.0,17.285714285714295,298.36414408145396,2020-11-21 +697,7139.6,4.0,17.523809523809533,296.10561557148185,2020-11-21 +696,7129.0,4.0,17.714285714285726,298.07022549510555,2020-11-21 +695,7118.400000000001,4.0,17.428571428571438,298.9497375547332,2020-11-21 +694,7108.200000000001,4.0,17.523809523809536,301.45107062516144,2020-11-21 +693,7097.400000000001,4.0,17.80952380952382,305.19306328463307,2020-11-21 +692,7086.6,4.0,17.85714285714287,309.9729370040509,2020-11-21 +691,7076.400000000001,4.0,18.09523809523811,316.87667161211755,2020-11-21 +690,7066.1,4.0,18.000000000000014,321.00494525829134,2020-11-21 +689,7055.200000000001,4.0,18.000000000000014,316.63854774383515,2020-11-21 +687,7034.200000000001,4.0,18.000000000000014,298.5447405294595,2020-11-21 +1967,20036.8,4.0,21.47619047619049,205.61904761904776,2020-11-21 +785,7970.8,4.0,17.66666666666668,135.22506515447975,2020-11-21 +1965,20020.6,4.0,22.83333333333335,358.0000000000002,2020-11-21 +638,6512.1,4.0,17.952380952380963,473.2857142857146,2020-11-21 +639,6523.1,4.0,17.97619047619049,471.9523809523813,2020-11-21 +640,6534.2,4.0,18.190476190476204,464.714285714286,2020-11-21 +641,6544.9,4.0,18.50000000000001,461.33333333333366,2020-11-21 +642,6555.6,4.0,18.85714285714287,451.9047619047622,2020-11-21 +643,6566.0,4.0,18.952380952380963,448.5714285714289,2020-11-21 +644,6576.5,4.0,19.000000000000014,449.8571428571431,2020-11-21 +645,6587.2,4.0,18.738095238095248,461.9047619047622,2020-11-21 +646,6598.1,4.0,18.59523809523811,464.47619047619077,2020-11-21 +647,6608.8,4.0,18.35714285714287,466.714285714286,2020-11-21 +648,6619.9,4.0,18.23809523809525,476.61904761904793,2020-11-21 +649,6630.7,4.0,18.1904761904762,470.38095238095275,2020-11-21 +650,6641.4,4.0,18.690476190476204,464.47619047619077,2020-11-21 +651,6652.0,4.0,18.880952380952394,472.33333333333366,2020-11-21 +652,6662.0,4.0,19.023809523809536,471.66666666666697,2020-11-21 +653,6672.4,4.0,18.90476190476192,477.0952380952384,2020-11-21 +654,6684.3,4.0,18.523809523809536,499.3333333333337,2020-11-21 +655,6695.2,4.0,18.30952380952382,494.19047619047655,2020-11-21 +656,6706.0,4.0,18.261904761904773,490.9523809523813,2020-11-21 +657,6717.1,4.0,18.261904761904773,488.0952380952384,2020-11-21 +658,6727.9,4.0,18.142857142857153,489.1904761904765,2020-11-21 +659,6738.7,4.0,18.23809523809525,490.0476190476194,2020-11-21 +660,6750.0,4.0,18.547619047619058,491.9523809523813,2020-11-21 +661,6760.0,4.0,18.85714285714287,478.2857142857146,2020-11-21 +662,6770.1,4.0,18.952380952380967,464.0476190476194,2020-11-21 +637,6501.3,4.0,17.952380952380963,472.4285714285718,2020-11-21 +636,6490.3,4.0,18.023809523809536,472.8095238095241,2020-11-21 +635,6479.7,4.0,18.214285714285726,468.33333333333366,2020-11-21 +634,6469.2,4.0,18.30952380952382,456.8571428571431,2020-11-21 +608,6191.0,4.0,18.2857142857143,431.3333333333336,2020-11-21 +609,6201.9,4.0,18.142857142857153,427.0476190476194,2020-11-21 +610,6212.6,4.0,17.904761904761916,419.57142857142884,2020-11-21 +611,6223.3,4.0,17.66666666666668,424.9047619047622,2020-11-21 +612,6234.0,4.0,17.738095238095248,438.0476190476193,2020-11-21 +613,6244.2,4.0,17.690476190476204,448.714285714286,2020-11-21 +614,6255.1,4.0,17.619047619047628,455.1904761904765,2020-11-21 +615,6265.8,4.0,17.7857142857143,468.0476190476194,2020-11-21 +616,6275.9,4.0,17.66666666666668,470.66666666666697,2020-11-21 +617,6287.2,4.0,17.85714285714287,461.3809523809527,2020-11-21 +618,6297.7,4.0,18.047619047619058,458.90476190476227,2020-11-21 +619,6308.8,4.0,18.190476190476204,444.61904761904793,2020-11-21 +663,6780.4,4.0,18.833333333333346,447.6190476190479,2020-11-21 +620,6319.2,4.0,18.404761904761916,432.714285714286,2020-11-21 +622,6340.2,4.0,18.47619047619049,440.0476190476194,2020-11-21 +623,6350.8,4.0,18.2857142857143,450.0476190476193,2020-11-21 +624,6362.1,4.0,18.142857142857153,460.14285714285745,2020-11-21 +625,6372.8,4.0,18.214285714285726,474.4761904761908,2020-11-21 +626,6383.5,4.0,18.50000000000001,474.7619047619051,2020-11-21 +627,6393.8,4.0,18.7857142857143,469.8095238095241,2020-11-21 +628,6404.3,4.0,18.90476190476192,449.3809523809527,2020-11-21 +629,6415.5,4.0,18.690476190476204,433.4761904761907,2020-11-21 +630,6425.8,4.0,18.30952380952382,422.0952380952384,2020-11-21 +631,6437.1,4.0,18.142857142857153,426.76190476190504,2020-11-21 +632,6447.6,4.0,18.238095238095248,435.14285714285745,2020-11-21 +633,6458.2,4.0,18.261904761904773,453.14285714285745,2020-11-21 +621,6329.7,4.0,18.642857142857153,430.42857142857173,2020-11-21 +664,6791.0,4.0,18.452380952380963,447.52380952380986,2020-11-21 +665,6801.4,4.0,18.238095238095248,449.76190476190504,2020-11-21 +666,6812.1,4.0,18.404761904761916,452.57142857142884,2020-11-21 +697,7139.6,4.0,17.642857142857153,405.28571428571456,2020-11-21 +698,7149.6,4.0,17.571428571428584,407.66666666666697,2020-11-21 +699,7161.8,4.0,17.690476190476204,418.61904761904793,2020-11-21 +700,7172.0,4.0,17.73809523809525,422.8095238095241,2020-11-21 +701,7182.4,4.0,17.92857142857144,438.0952380952384,2020-11-21 +702,7193.3,4.0,18.214285714285726,445.714285714286,2020-11-21 +703,7203.4,4.0,17.952380952380963,444.714285714286,2020-11-21 +704,7214.4,4.0,18.000000000000014,440.7619047619051,2020-11-21 +705,7225.7,4.0,18.000000000000014,444.66666666666697,2020-11-21 +706,7236.0,4.0,18.000000000000014,429.714285714286,2020-11-21 +707,7246.4,4.0,18.000000000000014,434.0952380952384,2020-11-21 +708,7257.2,4.0,18.000000000000014,469.9047619047622,2020-11-21 +696,7129.0,4.0,17.85714285714287,414.5238095238098,2020-11-21 +709,7268.1,4.0,18.000000000000014,428.2380952380955,2020-11-21 +711,7289.3,4.0,18.000000000000014,248.19047619047637,2020-11-21 +712,7289.3,4.0,18.761904761904773,157.90476190476198,2020-11-21 +713,7289.3,4.0,16.238095238095248,125.38095238095245,2020-11-21 +714,7289.3,4.0,16.404761904761912,157.57142857142867,2020-11-21 +715,7304.7,4.0,16.833333333333343,169.4761904761906,2020-11-21 +716,7305.1,4.0,19.33333333333335,182.23809523809535,2020-11-21 +717,7305.3,4.0,21.857142857142872,198.14285714285728,2020-11-21 +718,7306.5,4.0,22.7857142857143,208.57142857142873,2020-11-21 +719,7307.2,4.0,23.47619047619049,193.76190476190487,2020-11-21 +720,7308.1,4.0,27.928571428571445,132.57142857142867,2020-11-21 +721,7310.0,4.0,26.738095238095255,137.00000000000009,2020-11-21 +722,7313.4,4.0,24.595238095238113,191.09523809523822,2020-11-21 +710,7278.4,4.0,18.000000000000014,344.6190476190478,2020-11-21 +607,6180.5,4.0,18.547619047619058,449.5714285714289,2020-11-21 +695,7118.4,4.0,17.7857142857143,429.1904761904765,2020-11-21 +693,7097.4,4.0,18.142857142857153,423.09523809523836,2020-11-21 +667,6823.2,4.0,18.404761904761916,454.28571428571456,2020-11-21 +668,6833.8,4.0,18.380952380952394,448.714285714286,2020-11-21 +669,6844.3,4.0,18.16666666666668,443.9047619047622,2020-11-21 +670,6855.5,4.0,18.023809523809536,446.14285714285745,2020-11-21 +671,6866.5,4.0,17.90476190476192,441.0476190476193,2020-11-21 +672,6877.3,4.0,18.071428571428584,429.14285714285745,2020-11-21 +673,6887.6,4.0,18.09523809523811,427.8095238095241,2020-11-21 +674,6898.0,4.0,18.23809523809525,431.1904761904765,2020-11-21 +675,6908.9,4.0,18.190476190476204,433.28571428571456,2020-11-21 +676,6918.8,4.0,18.42857142857144,470.42857142857173,2020-11-21 +677,6929.4,4.0,18.261904761904773,475.80952380952414,2020-11-21 +678,6939.7,4.0,18.238095238095248,453.5714285714289,2020-11-21 +694,7108.2,4.0,17.85714285714287,429.3333333333336,2020-11-21 +679,6950.6,4.0,18.30952380952382,428.90476190476215,2020-11-21 +681,6971.1,4.0,18.452380952380963,407.38095238095264,2020-11-21 +682,6981.4,4.0,18.523809523809536,434.95238095238125,2020-11-21 +683,6992.4,4.0,18.30952380952382,450.8095238095241,2020-11-21 +684,7002.8,4.0,18.071428571428584,454.3809523809527,2020-11-21 +685,7013.1,4.0,18.142857142857153,452.9047619047622,2020-11-21 +686,7023.8,4.0,18.30952380952382,459.76190476190504,2020-11-21 +687,7034.2,4.0,18.452380952380963,457.66666666666697,2020-11-21 +688,7044.1,4.0,18.35714285714287,453.61904761904793,2020-11-21 +689,7055.2,4.0,18.452380952380963,443.3809523809527,2020-11-21 +690,7066.1,4.0,18.261904761904773,426.47619047619077,2020-11-21 +691,7076.4,4.0,18.309523809523824,414.0952380952384,2020-11-21 +692,7086.6,4.0,18.16666666666668,418.0476190476193,2020-11-21 +680,6960.9,4.0,18.523809523809536,415.8571428571431,2020-11-21 +606,6169.7,4.0,18.452380952380963,460.0952380952384,2020-11-21 +605,6159.1,4.0,18.214285714285726,448.52380952380986,2020-11-21 +604,6148.7,4.0,18.16666666666668,426.3333333333336,2020-11-21 +518,5206.2,4.0,17.642857142857153,473.52380952380986,2020-11-21 +519,5217.5,4.0,17.61904761904763,474.00000000000034,2020-11-21 +520,5228.6,4.0,17.66666666666668,473.2380952380956,2020-11-21 +521,5239.8,4.0,17.7857142857143,467.33333333333366,2020-11-21 +522,5251.1,4.0,17.761904761904773,462.38095238095275,2020-11-21 +523,5261.7,4.0,17.80952380952382,456.8095238095241,2020-11-21 +524,5273.4,4.0,17.714285714285722,447.8095238095241,2020-11-21 +525,5284.6,4.0,17.523809523809533,433.14285714285745,2020-11-21 +526,5295.3,4.0,17.452380952380963,434.3333333333336,2020-11-21 +527,5306.5,4.0,17.50000000000001,449.2380952380956,2020-11-21 +528,5317.5,4.0,17.547619047619058,468.0952380952384,2020-11-21 +529,5328.5,4.0,17.47619047619049,477.714285714286,2020-11-21 +517,5194.9,4.0,17.571428571428584,467.76190476190504,2020-11-21 +530,5340.0,4.0,17.333333333333346,468.19047619047655,2020-11-21 +532,5364.1,4.0,17.023809523809533,436.8095238095241,2020-11-21 +533,5375.3,4.0,17.35714285714287,429.66666666666697,2020-11-21 +534,5386.6,4.0,17.85714285714287,430.0476190476194,2020-11-21 +535,5397.1,4.0,18.09523809523811,436.76190476190504,2020-11-21 +536,5408.6,4.0,18.071428571428584,438.28571428571456,2020-11-21 +537,5419.5,4.0,17.738095238095248,433.95238095238125,2020-11-21 +538,5430.9,4.0,17.47619047619049,449.9523809523812,2020-11-21 +539,5441.9,4.0,17.404761904761916,453.714285714286,2020-11-21 +540,5453.2,4.0,17.571428571428584,456.8571428571432,2020-11-21 +541,5463.2,4.0,17.642857142857153,457.00000000000034,2020-11-21 +542,5475.1,4.0,17.571428571428584,470.61904761904793,2020-11-21 +543,5486.3,4.0,17.738095238095248,471.76190476190504,2020-11-21 +531,5352.4,4.0,17.071428571428584,442.09523809523836,2020-11-21 +544,5497.5,4.0,17.880952380952394,469.71428571428606,2020-11-21 +516,5184.2,4.0,17.404761904761916,459.3809523809527,2020-11-21 +514,5161.5,4.0,17.571428571428584,473.2857142857146,2020-11-21 +488,4867.2,4.0,17.452380952380963,440.14285714285745,2020-11-21 +489,4878.8,4.0,17.261904761904773,428.8571428571431,2020-11-21 +490,4889.9,4.0,17.261904761904773,439.9523809523813,2020-11-21 +491,4901.5,4.0,17.142857142857153,453.9047619047622,2020-11-21 +492,4912.2,4.0,17.38095238095239,458.14285714285745,2020-11-21 +493,4924.3,4.0,17.333333333333343,458.9047619047622,2020-11-21 +494,4934.8,4.0,17.380952380952394,463.76190476190504,2020-11-21 +495,4946.2,4.0,17.47619047619049,465.38095238095275,2020-11-21 +496,4958.4,4.0,17.571428571428584,479.0952380952384,2020-11-21 +497,4968.9,4.0,17.61904761904763,478.28571428571456,2020-11-21 +498,4980.8,4.0,17.833333333333346,474.9523809523813,2020-11-21 +499,4991.2,4.0,17.738095238095248,459.8095238095241,2020-11-21 +515,5173.0,4.0,17.61904761904763,464.14285714285745,2020-11-21 +500,5002.5,4.0,17.595238095238106,453.5714285714289,2020-11-21 +502,5024.9,4.0,17.404761904761916,457.4285714285718,2020-11-21 +503,5036.8,4.0,17.571428571428584,457.2380952380956,2020-11-21 +504,5048.3,4.0,17.642857142857153,461.76190476190504,2020-11-21 +505,5059.6,4.0,17.66666666666668,462.42857142857173,2020-11-21 +506,5071.2,4.0,17.642857142857153,464.47619047619077,2020-11-21 +507,5082.7,4.0,17.523809523809533,474.4761904761908,2020-11-21 +508,5094.4,4.0,17.523809523809533,466.33333333333366,2020-11-21 +509,5105.9,4.0,17.6904761904762,455.8571428571432,2020-11-21 +510,5115.9,4.0,17.547619047619058,452.714285714286,2020-11-21 +511,5127.1,4.0,17.571428571428584,457.0952380952384,2020-11-21 +512,5138.8,4.0,17.547619047619058,463.3809523809527,2020-11-21 +513,5149.9,4.0,17.47619047619049,475.7619047619051,2020-11-21 +501,5013.9,4.0,17.571428571428584,451.8571428571431,2020-11-21 +723,7326.8,4.0,20.71428571428573,289.85714285714306,2020-11-21 +545,5508.0,4.0,17.952380952380963,464.0952380952384,2020-11-21 +547,5530.0,4.0,18.047619047619058,437.714285714286,2020-11-21 +578,5867.7,4.0,17.904761904761916,451.66666666666697,2020-11-21 +579,5878.9,4.0,17.7857142857143,458.76190476190504,2020-11-21 +580,5889.9,4.0,17.928571428571438,464.3333333333336,2020-11-21 +581,5900.3,4.0,18.11904761904763,459.47619047619077,2020-11-21 +582,5911.7,4.0,18.142857142857153,450.0000000000003,2020-11-21 +583,5922.4,4.0,17.952380952380963,473.9523809523813,2020-11-21 +584,5933.6,4.0,17.97619047619049,499.8571428571432,2020-11-21 +585,5944.8,4.0,17.90476190476192,503.80952380952414,2020-11-21 +586,5955.1,4.0,18.11904761904763,490.80952380952414,2020-11-21 +587,5965.5,4.0,18.404761904761916,460.0952380952384,2020-11-21 +588,5976.1,4.0,18.42857142857144,429.2380952380955,2020-11-21 +589,5986.6,4.0,18.190476190476204,442.14285714285745,2020-11-21 +577,5856.1,4.0,17.85714285714287,442.90476190476215,2020-11-21 +590,5997.3,4.0,18.11904761904763,440.714285714286,2020-11-21 +592,6019.0,4.0,17.595238095238106,438.47619047619077,2020-11-21 +593,6030.2,4.0,17.619047619047628,431.42857142857173,2020-11-21 +594,6041.4,4.0,17.7857142857143,427.66666666666697,2020-11-21 +595,6051.8,4.0,17.714285714285726,433.714285714286,2020-11-21 +596,6062.2,4.0,17.738095238095248,447.61904761904793,2020-11-21 +597,6073.5,4.0,17.97619047619049,474.2380952380956,2020-11-21 +598,6084.5,4.0,18.16666666666668,483.80952380952414,2020-11-21 +599,6094.4,4.0,18.47619047619049,473.3809523809527,2020-11-21 +600,6105.2,4.0,18.642857142857157,448.42857142857173,2020-11-21 +601,6115.5,4.0,18.452380952380963,414.4761904761907,2020-11-21 +602,6126.8,4.0,18.071428571428584,400.6666666666669,2020-11-21 +603,6137.5,4.0,18.047619047619058,413.714285714286,2020-11-21 +591,6008.3,4.0,17.833333333333346,439.66666666666697,2020-11-21 +546,5518.8,4.0,18.16666666666668,451.8095238095241,2020-11-21 +576,5845.8,4.0,17.952380952380963,440.0952380952384,2020-11-21 +574,5823.6,4.0,17.738095238095248,451.3809523809527,2020-11-21 +548,5541.1,4.0,17.85714285714287,441.4761904761907,2020-11-21 +549,5551.9,4.0,17.80952380952382,445.28571428571456,2020-11-21 +550,5562.8,4.0,17.690476190476204,446.9047619047622,2020-11-21 +551,5573.9,4.0,17.50000000000001,457.4761904761908,2020-11-21 +552,5584.8,4.0,17.66666666666668,462.0000000000003,2020-11-21 +553,5595.6,4.0,17.761904761904773,459.95238095238125,2020-11-21 +554,5606.7,4.0,18.047619047619058,448.66666666666697,2020-11-21 +555,5617.3,4.0,18.047619047619058,432.90476190476215,2020-11-21 +556,5627.9,4.0,18.023809523809533,427.28571428571456,2020-11-21 +557,5638.6,4.0,17.761904761904773,432.9047619047622,2020-11-21 +558,5649.1,4.0,17.690476190476204,445.714285714286,2020-11-21 +559,5660.5,4.0,17.547619047619058,453.5714285714289,2020-11-21 +575,5834.5,4.0,17.714285714285726,443.61904761904793,2020-11-21 +560,5671.5,4.0,17.547619047619058,457.714285714286,2020-11-21 +562,5693.6,4.0,17.97619047619049,464.95238095238125,2020-11-21 +563,5704.3,4.0,18.142857142857153,466.8095238095241,2020-11-21 +564,5715.0,4.0,18.190476190476204,460.0952380952384,2020-11-21 +565,5725.8,4.0,18.023809523809536,455.8095238095241,2020-11-21 +566,5736.5,4.0,18.023809523809536,450.66666666666697,2020-11-21 +567,5747.3,4.0,18.09523809523811,444.3809523809527,2020-11-21 +568,5758.3,4.0,18.190476190476204,468.8095238095241,2020-11-21 +569,5770.0,4.0,18.30952380952382,473.33333333333366,2020-11-21 +570,5780.0,4.0,18.500000000000014,465.66666666666697,2020-11-21 +571,5789.0,4.0,18.333333333333343,467.90476190476227,2020-11-21 +572,5800.1,4.0,18.2857142857143,452.80952380952414,2020-11-21 +573,5811.9,4.0,17.92857142857144,442.1904761904765,2020-11-21 +561,5682.7,4.0,17.6904761904762,451.95238095238125,2020-11-21 +487,4855.8,4.0,17.404761904761916,449.0952380952384,2020-11-21 +724,7333.4,4.0,15.547619047619058,386.8571428571431,2020-11-21 +726,7353.2,4.0,18.35714285714287,426.8095238095241,2020-11-21 +876,8937.5,4.0,18.00000000000001,439.0952380952384,2020-11-21 +877,8947.8,4.0,18.214285714285726,423.9523809523812,2020-11-21 +878,8957.5,4.0,18.380952380952394,427.38095238095264,2020-11-21 +879,8968.6,4.0,18.333333333333343,443.9047619047622,2020-11-21 +880,8979.6,4.0,18.11904761904763,466.76190476190504,2020-11-21 +881,8990.7,4.0,17.738095238095248,481.1904761904765,2020-11-21 +882,9001.8,4.0,17.571428571428584,465.38095238095275,2020-11-21 +883,9012.8,4.0,17.66666666666668,413.714285714286,2020-11-21 +884,9023.5,4.0,17.738095238095248,389.04761904761926,2020-11-21 +885,9033.4,4.0,17.833333333333343,377.8571428571431,2020-11-21 +886,9043.7,4.0,17.833333333333346,402.38095238095264,2020-11-21 +887,9054.0,4.0,17.61904761904763,424.47619047619077,2020-11-21 +888,9065.0,4.0,17.190476190476204,435.14285714285745,2020-11-21 +889,9075.9,4.0,17.09523809523811,442.2380952380955,2020-11-21 +890,9086.9,4.0,17.333333333333346,453.4761904761908,2020-11-21 +891,9096.5,4.0,17.571428571428584,457.14285714285745,2020-11-21 +892,9106.6,4.0,17.761904761904773,473.0000000000003,2020-11-21 +893,9117.1,4.0,17.85714285714287,468.0000000000003,2020-11-21 +894,9126.9,4.0,17.761904761904773,468.0000000000003,2020-11-21 +895,9138.0,4.0,17.761904761904773,472.71428571428606,2020-11-21 +896,9148.7,4.0,18.238095238095248,464.2857142857146,2020-11-21 +897,9159.2,4.0,18.333333333333343,457.0476190476194,2020-11-21 +898,9169.2,4.0,18.190476190476204,430.4285714285717,2020-11-21 +899,9179.9,4.0,17.85714285714287,412.57142857142884,2020-11-21 +900,9190.4,4.0,17.380952380952394,408.5714285714289,2020-11-21 +875,8926.5,4.0,17.738095238095248,452.42857142857173,2020-11-21 +874,8915.7,4.0,17.85714285714287,464.0476190476194,2020-11-21 +873,8905.0,4.0,17.97619047619049,465.2857142857146,2020-11-21 +872,8894.6,4.0,18.071428571428584,445.66666666666697,2020-11-21 +847,8631.5,4.0,17.523809523809536,477.9047619047622,2020-11-21 +848,8642.1,4.0,17.66666666666668,453.0476190476194,2020-11-21 +849,8652.8,4.0,17.66666666666668,424.8095238095241,2020-11-21 +850,8662.9,4.0,17.571428571428584,411.47619047619077,2020-11-21 +851,8673.3,4.0,17.42857142857144,418.3333333333336,2020-11-21 +852,8684.2,4.0,17.452380952380963,424.47619047619077,2020-11-21 +853,8694.0,4.0,17.547619047619058,433.47619047619077,2020-11-21 +854,8704.6,4.0,17.714285714285722,433.8095238095241,2020-11-21 +855,8715.1,4.0,17.738095238095248,439.14285714285745,2020-11-21 +856,8725.8,4.0,17.785714285714295,442.95238095238125,2020-11-21 +857,8736.4,4.0,17.97619047619049,449.5714285714289,2020-11-21 +858,8747.2,4.0,18.047619047619058,433.90476190476215,2020-11-21 +901,9200.8,4.0,17.071428571428584,407.66666666666697,2020-11-21 +859,8757.3,4.0,18.000000000000014,432.0476190476193,2020-11-21 +1966,20020.6,4.0,22.21428571428573,279.2380952380954,2020-11-21 +861,8778.1,4.0,17.952380952380963,442.2380952380955,2020-11-21 +862,8788.8,4.0,18.023809523809536,451.714285714286,2020-11-21 +863,8799.6,4.0,18.214285714285726,460.0000000000003,2020-11-21 +864,8809.8,4.0,18.30952380952382,436.0952380952384,2020-11-21 +865,8820.4,4.0,18.35714285714287,419.00000000000034,2020-11-21 +866,8830.7,4.0,18.238095238095248,408.8095238095241,2020-11-21 +867,8841.3,4.0,17.785714285714295,420.0000000000003,2020-11-21 +868,8852.2,4.0,17.428571428571438,420.8095238095241,2020-11-21 +869,8862.7,4.0,17.380952380952394,421.38095238095264,2020-11-21 +870,8873.8,4.0,17.47619047619049,414.714285714286,2020-11-21 +871,8884.0,4.0,17.761904761904773,421.09523809523836,2020-11-21 +860,8767.4,4.0,18.000000000000014,428.0476190476193,2020-11-21 +902,9211.0,4.0,17.023809523809536,427.52380952380986,2020-11-21 +903,9221.7,4.0,16.952380952380963,450.38095238095275,2020-11-21 +904,9232.0,4.0,17.00000000000001,455.66666666666697,2020-11-21 +1892,19359.6,4.0,17.690476190476204,446.80952380952414,2020-11-21 +1891,19350.9,4.0,17.690476190476204,443.2380952380955,2020-11-21 +1890,19342.5,4.0,17.66666666666668,447.5714285714289,2020-11-21 +1889,19333.3,4.0,17.619047619047628,442.76190476190504,2020-11-21 +1888,19324.1,4.0,17.714285714285726,454.1904761904765,2020-11-21 +1887,19315.2,4.0,17.904761904761916,449.61904761904793,2020-11-21 +1886,19305.4,4.0,18.238095238095248,449.28571428571456,2020-11-21 +1885,19296.5,4.0,18.11904761904763,412.61904761904793,2020-11-21 +1884,19287.5,4.0,17.92857142857144,371.33333333333354,2020-11-21 +1883,19279.4,4.0,17.61904761904763,341.52380952380975,2020-11-21 +1882,19271.3,4.0,17.61904761904763,343.1904761904764,2020-11-21 +1881,19262.1,4.0,17.66666666666668,359.9523809523812,2020-11-21 +1893,19368.5,4.0,17.880952380952394,444.00000000000034,2020-11-21 +1880,19252.7,4.0,17.97619047619049,405.0000000000003,2020-11-21 +1878,19232.6,4.0,18.071428571428584,408.5238095238098,2020-11-21 +1877,19222.5,4.0,18.023809523809536,406.2380952380955,2020-11-21 +1876,19213.4,4.0,17.97619047619049,404.6666666666669,2020-11-21 +1875,19203.8,4.0,17.97619047619049,387.0000000000002,2020-11-21 +1874,19193.9,4.0,17.80952380952382,361.52380952380975,2020-11-21 +1873,19184.8,4.0,17.952380952380963,349.8095238095241,2020-11-21 +1872,19175.5,4.0,17.761904761904773,342.0952380952383,2020-11-21 +1871,19165.6,4.0,17.66666666666668,364.1904761904765,2020-11-21 +1870,19155.6,4.0,17.833333333333346,390.90476190476215,2020-11-21 +1869,19145.5,4.0,17.952380952380963,385.0952380952383,2020-11-21 +1868,19135.9,4.0,18.190476190476204,374.90476190476215,2020-11-21 +1867,19126.2,4.0,18.500000000000014,369.52380952380975,2020-11-21 +1879,19242.4,4.0,18.16666666666668,418.0952380952384,2020-11-21 +846,8621.0,4.0,17.66666666666668,490.8571428571431,2020-11-21 +1894,19377.6,4.0,17.880952380952394,437.714285714286,2020-11-21 +1896,19395.7,4.0,17.761904761904773,451.57142857142884,2020-11-21 +905,9242.9,4.0,17.00000000000001,460.0476190476194,2020-11-21 +1921,19622.5,4.0,19.023809523809536,503.4285714285718,2020-11-21 +1920,19613.5,4.0,18.714285714285726,487.61904761904793,2020-11-21 +1919,19603.4,4.0,18.66666666666668,469.4285714285718,2020-11-21 +1918,19593.5,4.0,18.500000000000014,477.66666666666697,2020-11-21 +1917,19584.2,4.0,18.738095238095248,484.80952380952414,2020-11-21 +1916,19574.8,4.0,18.7857142857143,467.666666666667,2020-11-21 +1915,19565.3,4.0,18.833333333333343,458.0476190476194,2020-11-21 +1914,19556.4,4.0,18.452380952380963,452.0476190476193,2020-11-21 +1913,19546.6,4.0,18.333333333333346,441.0476190476194,2020-11-21 +1912,19537.3,4.0,18.142857142857153,436.76190476190504,2020-11-21 +1911,19528.0,4.0,18.023809523809536,431.42857142857173,2020-11-21 +1895,19386.8,4.0,17.85714285714287,440.47619047619077,2020-11-21 +1910,19519.3,4.0,17.80952380952382,425.90476190476215,2020-11-21 +1908,19501.3,4.0,17.571428571428584,409.8571428571431,2020-11-21 +1907,19492.6,4.0,17.690476190476204,396.1904761904765,2020-11-21 +1906,19484.2,4.0,17.690476190476204,395.1904761904765,2020-11-21 +1905,19475.7,4.0,17.833333333333343,433.14285714285745,2020-11-21 +1904,19466.5,4.0,17.85714285714287,456.0952380952384,2020-11-21 +1903,19457.5,4.0,18.142857142857153,460.5238095238098,2020-11-21 +1902,19449.6,4.0,18.214285714285726,465.52380952380986,2020-11-21 +1901,19440.1,4.0,18.2857142857143,446.66666666666697,2020-11-21 +1900,19430.8,4.0,18.142857142857153,434.57142857142884,2020-11-21 +1899,19421.6,4.0,18.047619047619058,453.14285714285745,2020-11-21 +1898,19412.6,4.0,17.6904761904762,457.61904761904793,2020-11-21 +1897,19404.2,4.0,17.80952380952382,454.8571428571432,2020-11-21 +1909,19510.2,4.0,17.85714285714287,411.90476190476215,2020-11-21 +845,8610.5,4.0,17.7857142857143,460.66666666666697,2020-11-21 +844,8599.8,4.0,18.00000000000001,434.714285714286,2020-11-21 +843,8589.9,4.0,18.09523809523811,424.6190476190479,2020-11-21 +757,7689.4,4.0,17.61904761904763,471.80952380952414,2020-11-21 +758,7700.5,4.0,17.761904761904773,471.7619047619051,2020-11-21 +759,7711.8,4.0,17.547619047619058,435.714285714286,2020-11-21 +760,7723.0,4.0,17.523809523809536,422.1904761904765,2020-11-21 +761,7734.0,4.0,17.90476190476192,423.714285714286,2020-11-21 +762,7744.4,4.0,18.00000000000001,422.14285714285745,2020-11-21 +763,7755.3,4.0,18.071428571428584,438.0476190476194,2020-11-21 +764,7765.4,4.0,18.023809523809536,456.09523809523836,2020-11-21 +765,7776.8,4.0,17.80952380952382,446.0952380952384,2020-11-21 +766,7787.8,4.0,17.85714285714287,442.52380952380986,2020-11-21 +767,7798.1,4.0,18.071428571428584,444.47619047619077,2020-11-21 +768,7808.1,4.0,18.023809523809536,428.42857142857173,2020-11-21 +756,7678.1,4.0,17.642857142857153,470.4761904761908,2020-11-21 +769,7818.8,4.0,18.190476190476204,423.3333333333336,2020-11-21 +771,7839.4,4.0,18.09523809523811,442.0476190476194,2020-11-21 +772,7849.7,4.0,18.047619047619058,444.714285714286,2020-11-21 +773,7860.5,4.0,17.880952380952394,440.5714285714289,2020-11-21 +774,7871.0,4.0,17.642857142857153,419.6190476190479,2020-11-21 +775,7882.1,4.0,17.547619047619058,407.66666666666697,2020-11-21 +776,7892.9,4.0,17.59523809523811,405.2380952380955,2020-11-21 +777,7903.6,4.0,17.619047619047628,419.0476190476193,2020-11-21 +778,7914.1,4.0,17.833333333333343,439.52380952380986,2020-11-21 +779,7924.7,4.0,17.97619047619049,501.8095238095242,2020-11-21 +780,7924.7,4.0,18.047619047619058,420.80952380952414,2020-11-21 +781,7924.7,4.0,17.90476190476192,314.6190476190478,2020-11-21 +782,7924.7,4.0,18.142857142857153,225.52380952380963,2020-11-21 +770,7828.9,4.0,18.142857142857153,431.0952380952384,2020-11-21 +783,7924.7,4.0,18.47619047619049,189.90476190476204,2020-11-21 +755,7666.9,4.0,17.523809523809533,473.3809523809527,2020-11-21 +753,7644.3,4.0,17.66666666666668,475.8571428571432,2020-11-21 +727,7363.5,4.0,18.333333333333346,439.9047619047622,2020-11-21 +728,7373.8,4.0,18.404761904761916,453.47619047619077,2020-11-21 +729,7384.4,4.0,18.59523809523811,459.95238095238125,2020-11-21 +730,7394.8,4.0,18.50000000000001,462.4285714285718,2020-11-21 +731,7405.1,4.0,18.452380952380963,452.52380952380986,2020-11-21 +732,7415.8,4.0,18.571428571428584,447.2380952380955,2020-11-21 +733,7426.2,4.0,18.642857142857153,432.95238095238125,2020-11-21 +734,7435.9,4.0,18.66666666666668,431.00000000000034,2020-11-21 +735,7446.7,4.0,18.642857142857153,438.09523809523836,2020-11-21 +736,7457.4,4.0,18.571428571428584,454.0952380952384,2020-11-21 +737,7468.2,4.0,18.50000000000001,473.666666666667,2020-11-21 +738,7478.8,4.0,18.47619047619049,494.38095238095275,2020-11-21 +754,7655.8,4.0,17.47619047619049,478.7619047619051,2020-11-21 +739,7490.0,4.0,18.333333333333346,501.1904761904765,2020-11-21 +741,7512.4,4.0,17.97619047619049,520.6190476190479,2020-11-21 +742,7523.6,4.0,17.97619047619049,514.0000000000003,2020-11-21 +743,7534.3,4.0,18.16666666666668,502.4285714285718,2020-11-21 +744,7545.1,4.0,18.2857142857143,486.0952380952384,2020-11-21 +745,7556.3,4.0,18.59523809523811,471.71428571428606,2020-11-21 +746,7566.1,4.0,18.71428571428573,464.9523809523813,2020-11-21 +747,7576.3,4.0,18.42857142857144,465.47619047619077,2020-11-21 +748,7588.0,4.0,18.16666666666668,470.3333333333336,2020-11-21 +749,7599.6,4.0,17.92857142857144,467.61904761904793,2020-11-21 +750,7611.1,4.0,17.80952380952382,471.2857142857146,2020-11-21 +751,7621.9,4.0,17.90476190476192,473.714285714286,2020-11-21 +752,7633.0,4.0,17.880952380952394,477.61904761904793,2020-11-21 +740,7501.6,4.0,18.16666666666668,512.4761904761908,2020-11-21 +725,7342.8,4.0,15.595238095238106,436.714285714286,2020-11-21 +784,7962.5,4.0,18.142857142857153,258.14285714285734,2020-11-21 +786,7980.8,4.0,17.047619047619058,358.71428571428595,2020-11-21 +817,8313.8,4.0,17.214285714285722,459.8571428571431,2020-11-21 +818,8324.7,4.0,17.261904761904773,436.9047619047622,2020-11-21 +819,8335.1,4.0,17.404761904761916,417.4285714285717,2020-11-21 +820,8345.8,4.0,17.428571428571438,429.28571428571456,2020-11-21 +821,8356.8,4.0,17.595238095238106,448.5238095238098,2020-11-21 +822,8367.3,4.0,17.47619047619049,473.2857142857146,2020-11-21 +823,8378.0,4.0,17.2857142857143,472.42857142857173,2020-11-21 +824,8388.8,4.0,17.190476190476204,475.2380952380956,2020-11-21 +825,8399.6,4.0,17.09523809523811,472.61904761904793,2020-11-21 +826,8410.9,4.0,17.380952380952394,466.0476190476194,2020-11-21 +827,8421.6,4.0,17.7857142857143,437.28571428571456,2020-11-21 +828,8431.8,4.0,18.095238095238106,429.28571428571456,2020-11-21 +816,8303.0,4.0,17.30952380952382,471.14285714285745,2020-11-21 +829,8442.6,4.0,18.00000000000001,461.00000000000034,2020-11-21 +831,8463.5,4.0,17.904761904761916,496.4285714285718,2020-11-21 +832,8474.3,4.0,17.80952380952382,485.0000000000003,2020-11-21 +833,8484.9,4.0,17.761904761904773,453.52380952380986,2020-11-21 +834,8495.2,4.0,17.85714285714287,428.9523809523812,2020-11-21 +835,8506.1,4.0,17.714285714285726,413.95238095238125,2020-11-21 +836,8516.8,4.0,17.761904761904773,416.9523809523812,2020-11-21 +837,8527.4,4.0,17.738095238095248,422.3333333333336,2020-11-21 +838,8537.7,4.0,17.642857142857153,436.5714285714289,2020-11-21 +839,8548.5,4.0,17.85714285714287,459.61904761904793,2020-11-21 +840,8559.3,4.0,18.16666666666668,477.1428571428575,2020-11-21 +841,8569.4,4.0,18.09523809523811,447.714285714286,2020-11-21 +842,8579.7,4.0,18.071428571428584,428.0000000000003,2020-11-21 +830,8452.8,4.0,18.095238095238106,493.2380952380956,2020-11-21 +785,7970.8,4.0,17.66666666666668,376.04761904761926,2020-11-21 +815,8292.4,4.0,17.333333333333346,425.1428571428574,2020-11-21 +813,8270.7,4.0,17.30952380952382,367.38095238095264,2020-11-21 +787,7991.7,4.0,16.714285714285726,374.19047619047643,2020-11-21 +788,8002.4,4.0,17.142857142857153,397.90476190476215,2020-11-21 +789,8012.6,4.0,17.738095238095248,441.66666666666697,2020-11-21 +790,8023.0,4.0,17.738095238095248,505.85714285714323,2020-11-21 +791,8033.8,4.0,17.7857142857143,493.38095238095275,2020-11-21 +792,8044.8,4.0,17.738095238095248,451.00000000000034,2020-11-21 +793,8055.4,4.0,17.761904761904773,440.28571428571456,2020-11-21 +794,8065.4,4.0,17.80952380952382,429.8571428571431,2020-11-21 +795,8076.8,4.0,17.619047619047628,436.66666666666697,2020-11-21 +796,8087.4,4.0,17.61904761904763,451.66666666666697,2020-11-21 +797,8098.3,4.0,17.761904761904773,435.8571428571431,2020-11-21 +798,8108.9,4.0,17.952380952380963,446.6190476190479,2020-11-21 +814,8281.9,4.0,17.238095238095248,383.66666666666697,2020-11-21 +799,8119.6,4.0,18.190476190476204,473.66666666666697,2020-11-21 +801,8140.3,4.0,18.047619047619058,478.9047619047622,2020-11-21 +802,8151.4,4.0,18.047619047619058,459.38095238095264,2020-11-21 +803,8161.9,4.0,17.92857142857144,426.1904761904765,2020-11-21 +804,8172.5,4.0,17.523809523809536,435.3333333333336,2020-11-21 +805,8184.0,4.0,17.47619047619049,465.80952380952414,2020-11-21 +806,8194.9,4.0,17.523809523809536,488.47619047619077,2020-11-21 +807,8206.2,4.0,17.61904761904763,489.0476190476194,2020-11-21 +808,8216.6,4.0,18.190476190476204,465.14285714285745,2020-11-21 +809,8227.5,4.0,18.59523809523811,442.00000000000034,2020-11-21 +810,8237.8,4.0,18.500000000000014,431.8571428571432,2020-11-21 +811,8248.3,4.0,18.11904761904763,415.0000000000002,2020-11-21 +812,8259.4,4.0,17.61904761904763,389.38095238095264,2020-11-21 +800,8130.1,4.0,18.30952380952382,486.0476190476194,2020-11-21 +1866,19117.1,4.0,18.571428571428584,373.28571428571456,2020-11-21 +486,4844.6,4.0,17.380952380952394,455.33333333333366,2020-11-21 +484,4821.9,4.0,17.095238095238106,445.28571428571456,2020-11-21 +156,1383.3,4.0,18.92857142857144,460.7619047619051,2020-11-21 +157,1394.2,4.0,18.404761904761916,451.66666666666697,2020-11-21 +158,1405.2,4.0,18.261904761904773,448.4761904761907,2020-11-21 +159,1416.1,4.0,18.11904761904763,457.66666666666697,2020-11-21 +160,1426.8,4.0,18.11904761904763,459.80952380952414,2020-11-21 +161,1437.1,4.0,18.142857142857153,450.0476190476194,2020-11-21 +162,1448.1,4.0,18.023809523809536,458.28571428571456,2020-11-21 +163,1459.2,4.0,17.92857142857144,422.28571428571456,2020-11-21 +164,1470.0,4.0,18.190476190476204,370.71428571428595,2020-11-21 +165,1480.6,4.0,18.50000000000001,310.1904761904764,2020-11-21 +166,1490.6,4.0,18.809523809523824,252.38095238095252,2020-11-21 +167,1501.0,4.0,19.071428571428584,230.38095238095255,2020-11-21 +168,1511.5,4.0,18.97619047619049,247.19047619047635,2020-11-21 +169,1521.8,4.0,18.952380952380963,253.0476190476192,2020-11-21 +170,1532.5,4.0,18.738095238095248,266.0476190476192,2020-11-21 +171,1542.4,4.0,18.547619047619058,261.66666666666686,2020-11-21 +172,1553.8,4.0,18.47619047619049,255.00000000000017,2020-11-21 +173,1564.8,4.0,18.404761904761916,286.2380952380954,2020-11-21 +174,1575.8,4.0,18.16666666666668,329.1904761904764,2020-11-21 +175,1587.6,4.0,18.2857142857143,389.0000000000003,2020-11-21 +176,1598.6,4.0,18.214285714285726,452.0476190476194,2020-11-21 +177,1610.2,4.0,17.952380952380963,472.714285714286,2020-11-21 +178,1621.9,4.0,18.142857142857153,465.1904761904765,2020-11-21 +179,1634.2,4.0,18.142857142857153,467.90476190476227,2020-11-21 +180,1645.3,4.0,18.071428571428584,430.57142857142884,2020-11-21 +155,1372.5,4.0,19.142857142857153,461.9047619047622,2020-11-21 +154,1362.2,4.0,19.09523809523811,472.8095238095241,2020-11-21 +153,1352.1,4.0,18.7857142857143,466.1904761904765,2020-11-21 +152,1341.1,4.0,18.380952380952394,452.38095238095264,2020-11-21 +126,1062.5,4.0,18.2857142857143,444.5714285714289,2020-11-21 +127,1073.0,4.0,18.380952380952394,453.3333333333336,2020-11-21 +128,1084.2,4.0,18.50000000000001,445.8095238095241,2020-11-21 +129,1094.7,4.0,18.571428571428584,448.9047619047622,2020-11-21 +130,1105.4,4.0,18.642857142857153,445.2857142857146,2020-11-21 +131,1115.9,4.0,18.61904761904763,463.42857142857173,2020-11-21 +132,1126.6,4.0,18.66666666666668,477.80952380952414,2020-11-21 +133,1137.6,4.0,18.73809523809525,477.5714285714289,2020-11-21 +134,1147.6,4.0,18.880952380952394,482.14285714285745,2020-11-21 +135,1158.4,4.0,18.880952380952394,491.2857142857146,2020-11-21 +136,1168.9,4.0,18.738095238095248,494.71428571428606,2020-11-21 +137,1179.7,4.0,18.452380952380963,501.0476190476194,2020-11-21 +181,1657.0,4.0,18.47619047619049,381.28571428571456,2020-11-21 +138,1190.7,4.0,18.452380952380963,487.14285714285745,2020-11-21 +140,1211.6,4.0,18.714285714285726,460.61904761904793,2020-11-21 +141,1222.4,4.0,18.642857142857153,455.5714285714289,2020-11-21 +142,1233.7,4.0,18.571428571428584,462.0476190476194,2020-11-21 +143,1244.3,4.0,18.452380952380963,474.38095238095275,2020-11-21 +144,1254.7,4.0,18.452380952380963,474.0952380952384,2020-11-21 +145,1265.1,4.0,18.523809523809536,483.0000000000003,2020-11-21 +146,1275.7,4.0,18.71428571428573,461.9047619047622,2020-11-21 +147,1286.6,4.0,18.85714285714287,449.38095238095264,2020-11-21 +148,1297.3,4.0,18.7857142857143,445.57142857142884,2020-11-21 +149,1308.0,4.0,18.50000000000001,449.0952380952384,2020-11-21 +150,1318.8,4.0,18.214285714285726,455.76190476190504,2020-11-21 +151,1330.3,4.0,18.047619047619058,468.3333333333336,2020-11-21 +139,1201.3,4.0,18.523809523809536,466.80952380952414,2020-11-21 +182,1668.2,4.0,18.880952380952394,315.4285714285717,2020-11-21 +183,1678.5,4.0,18.761904761904773,253.42857142857162,2020-11-21 +184,1689.4,4.0,19.047619047619058,216.33333333333348,2020-11-21 +218,2014.4,4.0,18.547619047619058,474.5238095238098,2020-11-21 +219,2025.3,4.0,18.380952380952394,483.0952380952384,2020-11-21 +220,2035.9,4.0,18.73809523809525,494.14285714285745,2020-11-21 +221,2045.9,4.0,19.023809523809536,504.4285714285718,2020-11-21 +222,2056.7,4.0,19.11904761904763,508.4761904761908,2020-11-21 +223,2067.1,4.0,19.023809523809536,516.714285714286,2020-11-21 +224,2077.8,4.0,18.7857142857143,513.1904761904766,2020-11-21 +225,2088.4,4.0,18.452380952380963,491.714285714286,2020-11-21 +226,2098.9,4.0,18.333333333333346,483.95238095238125,2020-11-21 +227,2109.9,4.0,18.142857142857153,475.0476190476193,2020-11-21 +228,2120.2,4.0,17.85714285714287,470.8571428571432,2020-11-21 +229,2131.1,4.0,17.619047619047628,477.33333333333366,2020-11-21 +217,2003.5,4.0,18.809523809523824,474.4761904761908,2020-11-21 +230,2141.8,4.0,17.571428571428584,490.09523809523847,2020-11-21 +232,2163.4,4.0,17.428571428571438,498.3333333333337,2020-11-21 +233,2174.3,4.0,17.428571428571438,504.14285714285745,2020-11-21 +234,2185.2,4.0,17.547619047619058,503.3809523809527,2020-11-21 +235,2196.0,4.0,17.833333333333346,500.9047619047622,2020-11-21 +236,2206.3,4.0,17.80952380952382,499.90476190476227,2020-11-21 +237,2216.9,4.0,17.642857142857153,495.8571428571432,2020-11-21 +238,2228.4,4.0,17.761904761904773,491.47619047619077,2020-11-21 +239,2238.9,4.0,17.642857142857153,488.7619047619051,2020-11-21 +240,2249.7,4.0,17.761904761904773,487.33333333333366,2020-11-21 +241,2260.7,4.0,17.85714285714287,490.5714285714289,2020-11-21 +242,2270.9,4.0,17.714285714285726,486.71428571428606,2020-11-21 +243,2281.7,4.0,17.80952380952382,491.38095238095264,2020-11-21 +231,2152.8,4.0,17.333333333333343,491.0952380952384,2020-11-21 +125,1052.2,4.0,18.7857142857143,467.8095238095241,2020-11-21 +216,1993.4,4.0,19.000000000000014,476.90476190476227,2020-11-21 +214,1973.0,4.0,19.11904761904763,478.9047619047622,2020-11-21 +185,1700.0,4.0,19.11904761904763,227.38095238095252,2020-11-21 +186,1709.8,4.0,19.142857142857153,239.57142857142875,2020-11-21 +187,1720.3,4.0,19.452380952380963,256.42857142857156,2020-11-21 +188,1730.3,4.0,19.571428571428584,250.7142857142859,2020-11-21 +189,1740.1,4.0,19.238095238095248,241.0476190476192,2020-11-21 +190,1750.7,4.0,19.30952380952382,230.95238095238113,2020-11-21 +191,1761.1,4.0,19.309523809523824,241.57142857142873,2020-11-21 +192,1771.0,4.0,19.2857142857143,203.857142857143,2020-11-21 +193,1780.8,4.0,19.2857142857143,140.04761904761912,2020-11-21 +197,1803.3,4.0,22.500000000000014,149.66666666666674,2020-11-21 +198,1810.6,4.0,21.40476190476192,319.14285714285734,2020-11-21 +199,1819.1,4.0,19.333333333333343,461.14285714285745,2020-11-21 +215,1983.8,4.0,19.11904761904763,485.3809523809527,2020-11-21 +200,1828.8,4.0,16.2857142857143,535.1904761904766,2020-11-21 +202,1849.5,4.0,18.833333333333346,472.666666666667,2020-11-21 +203,1859.9,4.0,18.7857142857143,480.2857142857146,2020-11-21 +204,1870.3,4.0,18.92857142857144,496.0476190476194,2020-11-21 +205,1880.2,4.0,19.16666666666668,503.38095238095275,2020-11-21 +206,1890.6,4.0,19.071428571428584,505.19047619047655,2020-11-21 +207,1901.0,4.0,19.023809523809536,497.5238095238098,2020-11-21 +208,1911.4,4.0,18.97619047619049,488.66666666666697,2020-11-21 +209,1921.3,4.0,18.92857142857144,489.1904761904765,2020-11-21 +210,1931.6,4.0,18.880952380952394,484.0476190476194,2020-11-21 +211,1942.2,4.0,19.047619047619058,476.1904761904765,2020-11-21 +212,1952.6,4.0,19.000000000000014,472.1904761904765,2020-11-21 +213,1962.3,4.0,18.952380952380963,478.38095238095275,2020-11-21 +201,1839.2,4.0,18.90476190476192,489.42857142857173,2020-11-21 +124,1040.8,4.0,18.809523809523824,468.19047619047655,2020-11-21 +123,1030.5,4.0,18.7857142857143,468.52380952380986,2020-11-21 +122,1021.5,4.0,18.761904761904773,460.28571428571456,2020-11-21 +33,176.1,4.0,15.023809523809533,177.6190476190477,2020-11-21 +36,211.2,4.0,16.047619047619058,500.7142857142861,2020-11-21 +37,221.1,4.0,18.214285714285726,435.8571428571432,2020-11-21 +38,232.0,4.0,17.428571428571438,425.3809523809527,2020-11-21 +39,242.1,4.0,17.547619047619058,436.8095238095241,2020-11-21 +40,252.2,4.0,17.35714285714287,440.4285714285717,2020-11-21 +41,262.5,4.0,17.61904761904763,424.76190476190504,2020-11-21 +42,273.0,4.0,17.97619047619049,427.4285714285717,2020-11-21 +43,282.4,4.0,18.42857142857144,425.47619047619077,2020-11-21 +44,292.3,4.0,18.500000000000014,437.4285714285717,2020-11-21 +45,301.8,4.0,18.35714285714287,464.66666666666697,2020-11-21 +46,312.5,4.0,17.952380952380963,477.0476190476194,2020-11-21 +32,176.1,4.0,16.047619047619058,175.71428571428584,2020-11-21 +47,323.1,4.0,17.928571428571438,462.3809523809527,2020-11-21 +49,344.8,4.0,17.833333333333343,477.6190476190479,2020-11-21 +50,355.5,4.0,17.6904761904762,467.0952380952384,2020-11-21 +51,366.3,4.0,17.6904761904762,456.5238095238098,2020-11-21 +52,376.7,4.0,17.833333333333343,455.19047619047655,2020-11-21 +53,386.9,4.0,17.952380952380963,461.8571428571432,2020-11-21 +54,396.6,4.0,17.880952380952394,485.71428571428606,2020-11-21 +55,408.0,4.0,17.714285714285722,491.8571428571432,2020-11-21 +56,418.7,4.0,17.50000000000001,474.14285714285745,2020-11-21 +57,429.6,4.0,17.2857142857143,459.0476190476193,2020-11-21 +58,440.0,4.0,17.16666666666668,449.2380952380955,2020-11-21 +59,450.7,4.0,16.97619047619049,442.28571428571456,2020-11-21 +60,461.2,4.0,17.023809523809536,453.0952380952384,2020-11-21 +48,333.8,4.0,17.85714285714287,470.4285714285718,2020-11-21 +61,472.2,4.0,17.142857142857153,459.00000000000034,2020-11-21 +31,176.1,4.0,18.16666666666668,273.52380952380975,2020-11-21 +29,154.7,4.0,18.500000000000014,524.4761904761908,2020-11-21 +3,9.4,4.0,40.88095238095241,131.57142857142867,2020-11-21 +4,12.1,4.0,44.023809523809554,115.6190476190477,2020-11-21 +5,15.7,4.0,42.4761904761905,107.71428571428578,2020-11-21 +6,19.1,4.0,42.4761904761905,111.5238095238096,2020-11-21 +7,22.5,4.0,42.47619047619051,101.85714285714293,2020-11-21 +8,25.9,4.0,41.50000000000003,106.14285714285721,2020-11-21 +9,29.9,4.0,40.21428571428574,110.52380952380959,2020-11-21 +10,33.3,4.0,39.30952380952384,122.23809523809533,2020-11-21 +11,37.2,4.0,39.88095238095241,128.85714285714295,2020-11-21 +12,40.7,4.0,40.14285714285717,137.33333333333343,2020-11-21 +13,44.7,4.0,41.59523809523812,112.14285714285722,2020-11-21 +14,48.3,4.0,40.69047619047622,135.38095238095246,2020-11-21 +30,165.3,4.0,17.523809523809536,452.76190476190504,2020-11-21 +15,52.5,4.0,36.52380952380955,206.80952380952394,2020-11-21 +17,64.8,4.0,25.500000000000014,198.23809523809538,2020-11-21 +18,64.8,4.0,21.23809523809525,205.14285714285728,2020-11-21 +19,72.6,4.0,21.357142857142872,206.0000000000001,2020-11-21 +20,80.0,4.0,22.476190476190492,246.3333333333335,2020-11-21 +21,87.4,4.0,23.476190476190492,318.3333333333336,2020-11-21 +22,94.6,4.0,24.380952380952397,311.761904761905,2020-11-21 +23,102.2,4.0,24.476190476190496,327.3333333333336,2020-11-21 +24,109.1,4.0,23.64285714285716,323.9523809523812,2020-11-21 +25,117.6,4.0,22.880952380952397,343.1904761904764,2020-11-21 +26,126.7,4.0,21.71428571428573,364.1428571428574,2020-11-21 +27,134.9,4.0,20.809523809523824,401.3333333333336,2020-11-21 +28,144.8,4.0,19.500000000000014,451.0952380952384,2020-11-21 +16,56.8,4.0,30.976190476190496,194.42857142857156,2020-11-21 +244,2292.4,4.0,17.880952380952394,493.61904761904793,2020-11-21 +62,482.0,4.0,17.214285714285722,457.1904761904765,2020-11-21 +64,502.8,4.0,16.92857142857144,478.80952380952414,2020-11-21 +96,737.7,4.0,17.047619047619058,470.4285714285718,2020-11-21 +97,748.7,4.0,17.523809523809533,483.14285714285745,2020-11-21 +98,759.5,4.0,18.11904761904763,483.2380952380956,2020-11-21 +99,769.7,4.0,18.500000000000014,485.66666666666697,2020-11-21 +100,781.0,4.0,18.85714285714287,484.95238095238125,2020-11-21 +101,792.2,4.0,19.16666666666668,476.2380952380955,2020-11-21 +102,802.4,4.0,19.23809523809525,473.8095238095241,2020-11-21 +103,813.0,4.0,19.35714285714287,479.5714285714289,2020-11-21 +104,823.1,4.0,19.261904761904773,484.61904761904793,2020-11-21 +105,834.0,4.0,19.000000000000014,487.7619047619051,2020-11-21 +106,845.0,4.0,18.73809523809525,481.09523809523836,2020-11-21 +107,856.0,4.0,18.690476190476204,477.33333333333366,2020-11-21 +95,726.7,4.0,17.047619047619058,453.38095238095264,2020-11-21 +108,866.8,4.0,18.73809523809525,471.14285714285745,2020-11-21 +110,887.8,4.0,18.809523809523824,463.66666666666697,2020-11-21 +111,898.5,4.0,18.71428571428573,454.33333333333366,2020-11-21 +112,909.7,4.0,18.571428571428584,452.5714285714289,2020-11-21 +113,920.7,4.0,18.428571428571438,461.66666666666697,2020-11-21 +114,931.5,4.0,18.333333333333346,467.4285714285718,2020-11-21 +115,941.8,4.0,18.16666666666668,474.52380952380986,2020-11-21 +116,954.3,4.0,18.023809523809536,473.0952380952384,2020-11-21 +117,965.0,4.0,17.90476190476192,475.90476190476227,2020-11-21 +118,976.1,4.0,18.023809523809536,484.38095238095275,2020-11-21 +119,987.6,4.0,18.261904761904773,486.1904761904765,2020-11-21 +120,998.7,4.0,18.047619047619058,457.38095238095264,2020-11-21 +121,1009.6,4.0,18.35714285714287,461.00000000000034,2020-11-21 +109,877.5,4.0,18.761904761904773,468.3333333333336,2020-11-21 +63,492.3,4.0,17.071428571428584,471.2380952380955,2020-11-21 +93,705.1,4.0,16.30952380952382,366.4285714285717,2020-11-21 +91,691.0,4.0,29.619047619047638,189.19047619047632,2020-11-21 +65,513.5,4.0,16.785714285714295,475.7619047619051,2020-11-21 +66,523.3,4.0,16.80952380952382,478.0952380952384,2020-11-21 +67,534.5,4.0,16.952380952380963,478.4761904761908,2020-11-21 +68,545.1,4.0,17.261904761904773,469.2380952380956,2020-11-21 +69,555.9,4.0,17.30952380952382,479.9523809523813,2020-11-21 +70,566.4,4.0,17.35714285714287,486.09523809523847,2020-11-21 +71,577.1,4.0,17.09523809523811,484.14285714285745,2020-11-21 +72,587.2,4.0,16.904761904761916,487.80952380952414,2020-11-21 +73,599.3,4.0,17.000000000000014,486.9523809523813,2020-11-21 +74,609.9,4.0,17.261904761904773,483.4761904761908,2020-11-21 +75,620.5,4.0,17.142857142857153,488.71428571428606,2020-11-21 +76,631.5,4.0,16.85714285714287,473.714285714286,2020-11-21 +92,696.3,4.0,21.04761904761906,274.76190476190493,2020-11-21 +77,642.1,4.0,16.66666666666668,461.42857142857173,2020-11-21 +79,662.0,4.0,16.142857142857153,447.14285714285745,2020-11-21 +80,672.5,4.0,17.50000000000001,373.2380952380955,2020-11-21 +81,672.5,4.0,17.92857142857144,295.3333333333335,2020-11-21 +82,687.5,4.0,20.04761904761906,214.6666666666668,2020-11-21 +83,687.9,4.0,20.16666666666668,209.61904761904776,2020-11-21 +84,688.4,4.0,21.2857142857143,235.00000000000017,2020-11-21 +85,688.7,4.0,21.142857142857157,219.2380952380954,2020-11-21 +86,688.9,4.0,20.166666666666682,181.6666666666668,2020-11-21 +87,689.4,4.0,22.59523809523811,137.95238095238105,2020-11-21 +88,689.4,4.0,27.8809523809524,125.76190476190484,2020-11-21 +89,690.1,4.0,33.33333333333336,104.3333333333334,2020-11-21 +90,691.0,4.0,34.14285714285717,121.14285714285722,2020-11-21 +78,652.6,4.0,16.61904761904763,483.0000000000003,2020-11-21 +485,4833.3,4.0,17.11904761904763,456.8095238095241,2020-11-21 +245,2302.8,4.0,17.761904761904773,492.1904761904765,2020-11-21 +247,2324.4,4.0,17.428571428571438,494.8095238095242,2020-11-21 +399,3875.2,4.0,17.80952380952382,457.0952380952384,2020-11-21 +400,3886.3,4.0,17.619047619047628,459.14285714285745,2020-11-21 +401,3897.2,4.0,17.61904761904763,466.2380952380955,2020-11-21 +402,3908.1,4.0,17.595238095238106,471.28571428571456,2020-11-21 +403,3919.0,4.0,17.547619047619058,470.2380952380955,2020-11-21 +404,3930.1,4.0,17.642857142857153,466.3809523809527,2020-11-21 +405,3940.6,4.0,18.047619047619058,444.52380952380986,2020-11-21 +406,3951.4,4.0,18.2857142857143,426.0000000000003,2020-11-21 +407,3962.2,4.0,18.35714285714287,401.5238095238098,2020-11-21 +408,3972.9,4.0,18.214285714285726,380.90476190476215,2020-11-21 +409,3983.9,4.0,18.071428571428584,384.38095238095264,2020-11-21 +410,3994.4,4.0,17.880952380952394,392.28571428571456,2020-11-21 +411,4005.4,4.0,17.904761904761916,413.714285714286,2020-11-21 +412,4016.2,4.0,17.80952380952382,447.0476190476194,2020-11-21 +413,4027.4,4.0,17.690476190476204,462.714285714286,2020-11-21 +414,4038.3,4.0,17.547619047619058,454.8095238095241,2020-11-21 +415,4049.9,4.0,17.642857142857153,441.0000000000003,2020-11-21 +416,4061.7,4.0,17.642857142857153,434.8571428571431,2020-11-21 +417,4072.3,4.0,17.59523809523811,436.61904761904793,2020-11-21 +418,4084.0,4.0,17.547619047619058,440.90476190476215,2020-11-21 +419,4096.0,4.0,17.333333333333343,452.8095238095241,2020-11-21 +420,4106.7,4.0,17.214285714285722,427.1904761904765,2020-11-21 +421,4118.6,4.0,17.238095238095248,401.61904761904793,2020-11-21 +422,4129.7,4.0,17.238095238095248,390.1904761904765,2020-11-21 +423,4141.1,4.0,17.09523809523811,389.8571428571431,2020-11-21 +398,3863.7,4.0,17.97619047619049,458.28571428571456,2020-11-21 +397,3853.2,4.0,18.071428571428584,442.1904761904765,2020-11-21 +396,3842.5,4.0,18.09523809523811,442.42857142857173,2020-11-21 +395,3831.5,4.0,17.833333333333346,441.66666666666697,2020-11-21 +369,3542.9,4.0,18.333333333333343,472.95238095238125,2020-11-21 +370,3554.1,4.0,18.190476190476204,479.0476190476194,2020-11-21 +371,3566.3,4.0,18.071428571428584,475.8571428571432,2020-11-21 +372,3577.5,4.0,18.35714285714287,474.0952380952384,2020-11-21 +373,3588.6,4.0,18.404761904761916,467.9047619047622,2020-11-21 +374,3599.4,4.0,18.42857142857144,460.9523809523813,2020-11-21 +375,3610.3,4.0,18.47619047619049,463.1904761904765,2020-11-21 +376,3621.0,4.0,18.214285714285726,471.57142857142884,2020-11-21 +377,3632.0,4.0,17.85714285714287,476.38095238095264,2020-11-21 +378,3642.9,4.0,17.833333333333346,482.66666666666697,2020-11-21 +379,3653.2,4.0,17.80952380952382,477.14285714285745,2020-11-21 +380,3663.8,4.0,17.714285714285726,466.2380952380955,2020-11-21 +424,4152.2,4.0,17.071428571428584,406.0000000000002,2020-11-21 +381,3675.5,4.0,17.714285714285726,451.14285714285745,2020-11-21 +383,3698.2,4.0,17.85714285714287,444.0476190476193,2020-11-21 +384,3709.3,4.0,18.21428571428573,447.47619047619077,2020-11-21 +385,3720.0,4.0,18.404761904761916,463.66666666666697,2020-11-21 +386,3730.6,4.0,18.21428571428573,476.76190476190504,2020-11-21 +387,3741.9,4.0,17.904761904761916,481.00000000000034,2020-11-21 +388,3753.0,4.0,17.642857142857153,495.8571428571432,2020-11-21 +389,3763.7,4.0,17.595238095238106,485.666666666667,2020-11-21 +390,3775.7,4.0,17.85714285714287,468.3809523809527,2020-11-21 +391,3786.4,4.0,17.833333333333343,456.6190476190479,2020-11-21 +392,3797.4,4.0,17.833333333333343,450.61904761904793,2020-11-21 +393,3808.5,4.0,17.80952380952382,440.95238095238125,2020-11-21 +394,3819.4,4.0,17.66666666666668,438.4285714285717,2020-11-21 +382,3687.1,4.0,17.761904761904773,450.0476190476193,2020-11-21 +425,4163.8,4.0,16.952380952380963,439.0476190476194,2020-11-21 +426,4175.2,4.0,17.047619047619058,436.61904761904793,2020-11-21 +427,4186.1,4.0,16.928571428571438,429.5714285714289,2020-11-21 +458,4530.8,4.0,18.190476190476204,454.0952380952384,2020-11-21 +459,4541.1,4.0,18.09523809523811,449.66666666666697,2020-11-21 +460,4552.5,4.0,18.000000000000014,458.61904761904793,2020-11-21 +461,4564.2,4.0,17.952380952380963,475.2380952380956,2020-11-21 +462,4575.3,4.0,17.785714285714295,497.0952380952384,2020-11-21 +463,4586.0,4.0,17.714285714285726,505.38095238095275,2020-11-21 +464,4597.8,4.0,17.7857142857143,494.2857142857146,2020-11-21 +465,4608.8,4.0,17.619047619047628,475.2380952380956,2020-11-21 +466,4619.5,4.0,17.690476190476204,453.28571428571456,2020-11-21 +467,4631.2,4.0,17.7857142857143,441.47619047619077,2020-11-21 +468,4641.5,4.0,17.7857142857143,452.2857142857146,2020-11-21 +469,4652.6,4.0,17.523809523809533,459.42857142857173,2020-11-21 +457,4519.8,4.0,18.023809523809536,463.14285714285745,2020-11-21 +470,4664.0,4.0,17.428571428571438,458.8571428571432,2020-11-21 +472,4686.6,4.0,17.30952380952382,467.33333333333366,2020-11-21 +473,4697.2,4.0,17.50000000000001,460.8571428571432,2020-11-21 +474,4708.5,4.0,17.6904761904762,460.1904761904765,2020-11-21 +475,4719.8,4.0,17.66666666666668,460.76190476190504,2020-11-21 +476,4731.2,4.0,17.595238095238106,456.8571428571432,2020-11-21 +477,4742.8,4.0,17.59523809523811,457.2857142857146,2020-11-21 +478,4754.2,4.0,17.714285714285722,458.2380952380955,2020-11-21 +479,4765.4,4.0,17.738095238095248,450.80952380952414,2020-11-21 +480,4776.1,4.0,17.714285714285726,447.5238095238098,2020-11-21 +481,4787.3,4.0,17.523809523809536,447.4761904761908,2020-11-21 +482,4798.6,4.0,17.214285714285722,446.66666666666697,2020-11-21 +483,4810.6,4.0,17.000000000000014,440.47619047619077,2020-11-21 +471,4675.4,4.0,17.2857142857143,464.90476190476215,2020-11-21 +368,3531.5,4.0,18.11904761904763,463.2380952380956,2020-11-21 +456,4508.0,4.0,18.071428571428584,458.9523809523813,2020-11-21 +454,4485.0,4.0,18.00000000000001,455.714285714286,2020-11-21 +428,4197.1,4.0,16.80952380952382,420.4761904761907,2020-11-21 +429,4208.7,4.0,16.85714285714287,425.1904761904765,2020-11-21 +430,4220.2,4.0,17.071428571428584,435.5714285714289,2020-11-21 +431,4231.0,4.0,17.238095238095248,444.9047619047622,2020-11-21 +432,4242.2,4.0,17.35714285714287,455.66666666666697,2020-11-21 +433,4253.9,4.0,17.16666666666668,462.85714285714323,2020-11-21 +434,4264.7,4.0,17.095238095238106,462.52380952380986,2020-11-21 +435,4276.4,4.0,17.047619047619058,470.66666666666697,2020-11-21 +436,4287.6,4.0,17.1904761904762,471.0000000000003,2020-11-21 +437,4299.2,4.0,17.30952380952382,471.2857142857146,2020-11-21 +438,4310.1,4.0,17.452380952380963,472.0476190476194,2020-11-21 +439,4321.4,4.0,17.404761904761916,476.0476190476194,2020-11-21 +455,4497.1,4.0,18.11904761904763,454.619047619048,2020-11-21 +440,4332.0,4.0,17.333333333333346,446.09523809523836,2020-11-21 +442,4355.1,4.0,17.30952380952382,393.61904761904793,2020-11-21 +443,4366.3,4.0,17.404761904761916,372.90476190476215,2020-11-21 +444,4377.2,4.0,17.47619047619049,385.28571428571456,2020-11-21 +445,4387.9,4.0,17.261904761904773,423.14285714285745,2020-11-21 +446,4399.1,4.0,17.142857142857153,442.28571428571456,2020-11-21 +447,4409.6,4.0,17.238095238095248,470.61904761904793,2020-11-21 +448,4420.7,4.0,17.714285714285726,468.0476190476194,2020-11-21 +449,4431.7,4.0,17.92857142857144,435.90476190476215,2020-11-21 +450,4442.8,4.0,17.928571428571438,424.00000000000034,2020-11-21 +451,4452.8,4.0,17.571428571428584,427.9047619047622,2020-11-21 +452,4462.2,4.0,17.61904761904763,422.3333333333336,2020-11-21 +453,4474.2,4.0,17.761904761904773,435.0952380952384,2020-11-21 +441,4343.5,4.0,17.142857142857153,425.61904761904793,2020-11-21 +367,3520.6,4.0,18.023809523809536,461.61904761904793,2020-11-21 +366,3509.5,4.0,18.047619047619058,462.28571428571456,2020-11-21 +365,3498.4,4.0,17.928571428571438,483.14285714285745,2020-11-21 +278,2652.8,4.0,18.523809523809536,469.5714285714289,2020-11-21 +279,2663.1,4.0,18.523809523809536,454.76190476190504,2020-11-21 +280,2673.6,4.0,18.380952380952394,452.52380952380986,2020-11-21 +281,2684.6,4.0,18.142857142857153,472.714285714286,2020-11-21 +282,2694.8,4.0,17.80952380952382,495.14285714285745,2020-11-21 +283,2704.8,4.0,17.595238095238106,494.85714285714323,2020-11-21 +284,2715.9,4.0,17.761904761904773,475.28571428571456,2020-11-21 +285,2726.9,4.0,17.97619047619049,470.90476190476227,2020-11-21 +286,2737.0,4.0,18.071428571428584,477.3809523809527,2020-11-21 +287,2747.9,4.0,18.09523809523811,487.9047619047622,2020-11-21 +288,2758.7,4.0,17.880952380952394,505.3809523809527,2020-11-21 +289,2768.8,4.0,17.595238095238106,500.2857142857147,2020-11-21 +277,2642.2,4.0,18.2857142857143,501.38095238095275,2020-11-21 +290,2779.8,4.0,17.619047619047628,481.47619047619077,2020-11-21 +292,2800.7,4.0,17.714285714285726,431.714285714286,2020-11-21 +293,2811.4,4.0,17.833333333333343,429.28571428571456,2020-11-21 +294,2821.7,4.0,17.833333333333346,444.00000000000034,2020-11-21 +295,2831.8,4.0,17.880952380952394,475.66666666666697,2020-11-21 +296,2842.4,4.0,17.714285714285726,447.0476190476194,2020-11-21 +297,2852.4,4.0,18.90476190476192,374.19047619047643,2020-11-21 +298,2852.4,4.0,19.261904761904773,306.4285714285717,2020-11-21 +299,2871.3,4.0,20.52380952380954,258.5238095238097,2020-11-21 +300,2871.7,4.0,20.97619047619049,258.2380952380954,2020-11-21 +301,2872.3,4.0,19.7857142857143,272.3809523809526,2020-11-21 +302,2872.7,4.0,22.95238095238097,241.90476190476207,2020-11-21 +303,2873.3,4.0,26.523809523809543,194.33333333333346,2020-11-21 +291,2790.4,4.0,17.7857142857143,449.28571428571456,2020-11-21 +304,2874.5,4.0,30.119047619047638,163.4761904761906,2020-11-21 +276,2631.8,4.0,18.190476190476204,512.1904761904766,2020-11-21 +274,2610.4,4.0,18.42857142857144,485.0952380952384,2020-11-21 +248,2335.2,4.0,17.547619047619058,485.52380952380986,2020-11-21 +249,2346.2,4.0,17.85714285714287,486.85714285714323,2020-11-21 +250,2356.5,4.0,17.97619047619049,486.0476190476194,2020-11-21 +251,2367.7,4.0,17.952380952380963,482.0476190476194,2020-11-21 +252,2378.8,4.0,17.833333333333343,487.42857142857173,2020-11-21 +253,2389.6,4.0,17.452380952380963,495.714285714286,2020-11-21 +254,2399.7,4.0,17.238095238095248,500.4761904761908,2020-11-21 +255,2410.6,4.0,17.190476190476204,508.2380952380956,2020-11-21 +256,2421.2,4.0,17.190476190476204,510.2380952380955,2020-11-21 +257,2431.5,4.0,17.2857142857143,495.8571428571432,2020-11-21 +258,2441.8,4.0,17.428571428571438,494.5714285714289,2020-11-21 +259,2452.5,4.0,17.61904761904763,493.0476190476194,2020-11-21 +275,2620.9,4.0,18.095238095238106,507.3333333333337,2020-11-21 +260,2463.4,4.0,17.595238095238106,500.71428571428606,2020-11-21 +262,2485.0,4.0,17.714285714285726,527.8095238095242,2020-11-21 +263,2495.4,4.0,18.00000000000001,511.42857142857173,2020-11-21 +264,2506.2,4.0,18.2857142857143,493.4285714285718,2020-11-21 +265,2516.5,4.0,18.47619047619049,481.38095238095264,2020-11-21 +266,2526.9,4.0,18.523809523809536,468.5714285714289,2020-11-21 +267,2537.4,4.0,18.380952380952394,468.47619047619077,2020-11-21 +268,2547.5,4.0,18.16666666666668,477.90476190476227,2020-11-21 +269,2557.7,4.0,18.16666666666668,474.2380952380955,2020-11-21 +270,2568.5,4.0,18.547619047619058,473.2380952380955,2020-11-21 +271,2578.5,4.0,18.714285714285726,473.3333333333336,2020-11-21 +272,2588.5,4.0,18.928571428571438,464.0000000000003,2020-11-21 +273,2599.4,4.0,18.761904761904773,469.8571428571432,2020-11-21 +261,2473.8,4.0,17.690476190476204,518.0000000000003,2020-11-21 +246,2313.7,4.0,17.714285714285722,494.42857142857173,2020-11-21 +306,2881.9,4.0,25.357142857142875,103.3333333333334,2020-11-21 +308,2885.2,4.0,17.071428571428584,327.33333333333354,2020-11-21 +339,3212.4,4.0,18.071428571428584,450.14285714285745,2020-11-21 +340,3223.9,4.0,17.97619047619049,459.95238095238125,2020-11-21 +341,3234.5,4.0,17.714285714285726,467.57142857142884,2020-11-21 +342,3245.4,4.0,17.714285714285726,459.66666666666697,2020-11-21 +343,3256.4,4.0,17.80952380952382,466.3809523809527,2020-11-21 +344,3267.1,4.0,17.738095238095248,468.09523809523836,2020-11-21 +345,3278.3,4.0,17.880952380952394,468.00000000000034,2020-11-21 +346,3289.4,4.0,18.2857142857143,453.28571428571456,2020-11-21 +347,3299.7,4.0,18.309523809523824,428.90476190476215,2020-11-21 +348,3309.7,4.0,18.16666666666668,405.714285714286,2020-11-21 +349,3321.6,4.0,17.97619047619049,407.5714285714289,2020-11-21 +350,3332.3,4.0,17.6904761904762,428.0952380952384,2020-11-21 +338,3201.9,4.0,18.11904761904763,431.61904761904793,2020-11-21 +351,3342.6,4.0,17.85714285714287,456.0000000000003,2020-11-21 +353,3364.2,4.0,18.66666666666668,470.4761904761908,2020-11-21 +354,3375.1,4.0,18.714285714285726,467.9047619047622,2020-11-21 +355,3386.2,4.0,18.690476190476204,467.3333333333336,2020-11-21 +356,3397.5,4.0,18.547619047619058,477.1904761904765,2020-11-21 +357,3408.6,4.0,18.2857142857143,489.0952380952384,2020-11-21 +358,3419.8,4.0,18.16666666666668,481.71428571428606,2020-11-21 +359,3430.9,4.0,17.97619047619049,466.42857142857173,2020-11-21 +360,3442.6,4.0,18.023809523809536,449.66666666666697,2020-11-21 +361,3454.5,4.0,18.142857142857153,451.95238095238125,2020-11-21 +362,3465.0,4.0,18.11904761904763,461.61904761904793,2020-11-21 +363,3476.5,4.0,18.261904761904773,484.5714285714289,2020-11-21 +364,3487.7,4.0,18.142857142857153,490.38095238095275,2020-11-21 +352,3353.5,4.0,18.380952380952394,473.7619047619051,2020-11-21 +307,2882.9,4.0,18.73809523809525,203.71428571428584,2020-11-21 +337,3191.8,4.0,18.238095238095248,439.0952380952384,2020-11-21 +335,3169.9,4.0,18.42857142857144,472.4761904761908,2020-11-21 +309,2892.2,4.0,15.928571428571441,444.9047619047622,2020-11-21 +310,2901.8,4.0,18.190476190476204,525.5714285714289,2020-11-21 +311,2912.5,4.0,18.047619047619058,482.9047619047622,2020-11-21 +312,2922.8,4.0,18.880952380952394,494.4285714285718,2020-11-21 +313,2933.2,4.0,19.47619047619049,512.714285714286,2020-11-21 +314,2943.1,4.0,20.000000000000014,516.5238095238099,2020-11-21 +315,2953.0,4.0,19.880952380952394,506.42857142857173,2020-11-21 +316,2963.3,4.0,19.500000000000014,489.71428571428606,2020-11-21 +317,2974.6,4.0,18.761904761904773,470.52380952380986,2020-11-21 +318,2985.2,4.0,18.523809523809533,478.8571428571432,2020-11-21 +319,2996.1,4.0,18.66666666666668,493.0476190476194,2020-11-21 +320,3007.3,4.0,18.73809523809525,473.8095238095241,2020-11-21 +336,3180.5,4.0,18.428571428571438,457.9523809523813,2020-11-21 +321,3017.6,4.0,18.66666666666668,458.2380952380955,2020-11-21 +323,3040.2,4.0,18.404761904761916,430.0476190476193,2020-11-21 +324,3051.2,4.0,18.500000000000014,435.28571428571456,2020-11-21 +325,3061.9,4.0,19.000000000000014,445.5714285714289,2020-11-21 +326,3072.3,4.0,19.09523809523811,435.76190476190504,2020-11-21 +327,3082.6,4.0,19.04761904761906,443.42857142857173,2020-11-21 +328,3094.1,4.0,18.809523809523824,448.09523809523836,2020-11-21 +329,3105.3,4.0,18.642857142857153,452.52380952380986,2020-11-21 +330,3116.2,4.0,18.380952380952394,459.14285714285745,2020-11-21 +331,3126.7,4.0,18.2857142857143,457.9047619047622,2020-11-21 +332,3137.9,4.0,18.142857142857153,459.1904761904765,2020-11-21 +333,3148.5,4.0,18.30952380952382,473.71428571428606,2020-11-21 +334,3158.9,4.0,18.404761904761916,480.8571428571432,2020-11-21 +322,3029.4,4.0,18.500000000000014,441.8571428571432,2020-11-21 +2,6.2,4.0,35.60714285714289,139.02380952380958,2020-11-21 +1865,19107.5,4.0,18.571428571428584,390.09523809523836,2020-11-21 +1863,19088.0,4.0,18.452380952380963,403.714285714286,2020-11-21 +1234,12694.2,4.0,18.023809523809536,427.14285714285745,2020-11-21 +1233,12683.2,4.0,18.333333333333343,435.52380952380986,2020-11-21 +1232,12672.1,4.0,18.47619047619049,444.28571428571456,2020-11-21 +1231,12661.2,4.0,18.23809523809525,449.76190476190504,2020-11-21 +1230,12650.9,4.0,17.92857142857144,443.3333333333336,2020-11-21 +1229,12640.3,4.0,17.42857142857144,435.714285714286,2020-11-21 +1228,12629.1,4.0,17.047619047619058,434.66666666666697,2020-11-21 +1227,12618.1,4.0,17.047619047619058,427.3333333333336,2020-11-21 +1226,12606.6,4.0,17.142857142857153,425.2380952380955,2020-11-21 +1225,12595.4,4.0,17.047619047619058,423.28571428571456,2020-11-21 +1224,12583.9,4.0,17.1904761904762,418.52380952380986,2020-11-21 +1223,12573.2,4.0,17.30952380952382,416.1904761904765,2020-11-21 +1222,12562.3,4.0,17.452380952380963,423.0952380952384,2020-11-21 +1221,12551.5,4.0,17.30952380952382,430.1904761904765,2020-11-21 +1220,12540.4,4.0,17.428571428571438,425.76190476190504,2020-11-21 +1219,12529.6,4.0,17.547619047619058,425.57142857142884,2020-11-21 +1218,12518.5,4.0,17.66666666666668,427.61904761904793,2020-11-21 +1217,12507.0,4.0,17.7857142857143,424.1904761904765,2020-11-21 +1216,12496.3,4.0,17.738095238095248,431.28571428571456,2020-11-21 +1215,12486.0,4.0,17.35714285714287,437.3333333333336,2020-11-21 +1214,12475.0,4.0,17.071428571428584,428.0476190476194,2020-11-21 +1213,12463.6,4.0,17.047619047619058,429.76190476190504,2020-11-21 +1212,12452.7,4.0,17.16666666666668,440.5714285714289,2020-11-21 +1211,12441.4,4.0,17.261904761904773,444.0952380952384,2020-11-21 +1210,12429.9,4.0,17.333333333333346,450.8571428571431,2020-11-21 +1235,12705.2,4.0,17.92857142857144,415.66666666666697,2020-11-21 +1236,12715.9,4.0,17.880952380952394,421.3809523809527,2020-11-21 +1237,12727.0,4.0,17.595238095238106,422.1428571428574,2020-11-21 +1238,12737.8,4.0,17.428571428571438,415.38095238095264,2020-11-21 +1264,13022.7,4.0,17.333333333333346,410.9047619047622,2020-11-21 +1263,13012.5,4.0,17.261904761904773,405.4761904761907,2020-11-21 +1262,13000.8,4.0,17.16666666666668,407.5238095238098,2020-11-21 +1261,12989.3,4.0,17.047619047619058,403.3333333333336,2020-11-21 +1260,12978.6,4.0,17.023809523809536,411.4285714285717,2020-11-21 +1259,12967.4,4.0,17.523809523809536,419.90476190476215,2020-11-21 +1258,12955.7,4.0,17.738095238095248,414.28571428571456,2020-11-21 +1257,12945.1,4.0,17.66666666666668,428.90476190476215,2020-11-21 +1256,12934.3,4.0,17.428571428571438,436.90476190476215,2020-11-21 +1255,12923.4,4.0,17.452380952380963,433.2380952380955,2020-11-21 +1254,12911.7,4.0,17.30952380952382,436.0952380952384,2020-11-21 +1253,12900.9,4.0,17.47619047619049,434.714285714286,2020-11-21 +1209,12418.5,4.0,17.333333333333343,446.47619047619077,2020-11-21 +1252,12890.5,4.0,17.30952380952382,405.04761904761926,2020-11-21 +1250,12868.7,4.0,17.023809523809536,399.09523809523836,2020-11-21 +1249,12857.5,4.0,17.35714285714287,398.5238095238098,2020-11-21 +1248,12845.5,4.0,17.642857142857153,411.0476190476193,2020-11-21 +1247,12834.6,4.0,17.928571428571438,412.8571428571431,2020-11-21 +1246,12824.1,4.0,17.952380952380963,407.42857142857173,2020-11-21 +1245,12813.6,4.0,17.880952380952394,387.38095238095264,2020-11-21 +1244,12803.0,4.0,17.714285714285722,381.3333333333336,2020-11-21 +1243,12792.1,4.0,17.452380952380963,372.04761904761926,2020-11-21 +1242,12781.3,4.0,17.35714285714287,378.38095238095264,2020-11-21 +1241,12770.5,4.0,17.261904761904773,381.4761904761907,2020-11-21 +1240,12759.7,4.0,17.214285714285722,402.0000000000003,2020-11-21 +1239,12748.3,4.0,17.214285714285726,405.9523809523812,2020-11-21 +1251,12879.5,4.0,17.119047619047628,399.04761904761926,2020-11-21 +1208,12407.5,4.0,17.428571428571438,431.14285714285745,2020-11-21 +1207,12396.4,4.0,17.61904761904763,428.2380952380955,2020-11-21 +1206,12385.4,4.0,17.642857142857153,432.3809523809527,2020-11-21 +1175,12040.1,4.0,17.619047619047628,484.00000000000034,2020-11-21 +1174,12028.9,4.0,17.595238095238106,499.14285714285745,2020-11-21 +1173,12018.0,4.0,17.92857142857144,498.9523809523813,2020-11-21 +1172,12006.6,4.0,17.92857142857144,479.714285714286,2020-11-21 +1171,11995.7,4.0,18.023809523809536,472.3809523809527,2020-11-21 +1170,11984.8,4.0,18.11904761904763,461.90476190476227,2020-11-21 +1169,11973.5,4.0,18.214285714285726,450.9047619047622,2020-11-21 +1168,11963.2,4.0,18.095238095238106,453.14285714285745,2020-11-21 +1167,11951.9,4.0,18.095238095238106,455.42857142857173,2020-11-21 +1166,11941.0,4.0,18.00000000000001,457.2380952380955,2020-11-21 +1165,11929.8,4.0,18.023809523809536,460.0952380952384,2020-11-21 +1164,11919.1,4.0,18.11904761904763,457.14285714285745,2020-11-21 +1176,12051.4,4.0,17.7857142857143,468.0476190476194,2020-11-21 +1163,11908.8,4.0,18.333333333333343,440.3333333333336,2020-11-21 +1161,11886.5,4.0,17.97619047619049,426.4285714285717,2020-11-21 +1160,11875.4,4.0,18.00000000000001,428.42857142857173,2020-11-21 +1159,11863.9,4.0,17.92857142857144,436.42857142857173,2020-11-21 +1158,11853.6,4.0,18.023809523809536,440.0000000000003,2020-11-21 +1157,11842.7,4.0,18.071428571428584,438.76190476190504,2020-11-21 +1156,11832.2,4.0,18.11904761904763,435.3333333333336,2020-11-21 +1155,11821.5,4.0,17.90476190476192,421.3333333333336,2020-11-21 +1154,11811.4,4.0,17.97619047619049,421.0000000000003,2020-11-21 +1153,11800.5,4.0,18.190476190476204,430.52380952380975,2020-11-21 +1152,11789.7,4.0,18.59523809523811,432.76190476190504,2020-11-21 +1151,11779.2,4.0,18.761904761904773,440.0952380952384,2020-11-21 +1150,11768.6,4.0,18.738095238095248,442.61904761904793,2020-11-21 +1162,11897.4,4.0,18.2857142857143,431.1904761904765,2020-11-21 +1265,13034.2,4.0,17.42857142857144,409.714285714286,2020-11-21 +1177,12062.5,4.0,17.714285714285726,450.8571428571432,2020-11-21 +1179,12084.8,4.0,17.880952380952394,422.28571428571456,2020-11-21 +1205,12374.2,4.0,17.50000000000001,432.14285714285745,2020-11-21 +1204,12363.2,4.0,17.404761904761916,439.1904761904765,2020-11-21 +1203,12352.1,4.0,17.30952380952382,434.0000000000003,2020-11-21 +1202,12340.6,4.0,17.428571428571438,427.2380952380955,2020-11-21 +1201,12329.8,4.0,17.547619047619058,427.1904761904765,2020-11-21 +1200,12318.1,4.0,17.50000000000001,430.8571428571431,2020-11-21 +1199,12306.3,4.0,17.404761904761916,434.52380952380986,2020-11-21 +1198,12294.8,4.0,17.642857142857153,437.4285714285717,2020-11-21 +1197,12283.4,4.0,17.7857142857143,435.52380952380986,2020-11-21 +1196,12272.0,4.0,17.833333333333343,439.80952380952414,2020-11-21 +1195,12261.0,4.0,17.7857142857143,449.95238095238125,2020-11-21 +1194,12250.2,4.0,17.642857142857153,455.61904761904793,2020-11-21 +1178,12072.9,4.0,17.833333333333343,425.4761904761907,2020-11-21 +1193,12239.3,4.0,17.404761904761916,456.0952380952384,2020-11-21 +1191,12217.2,4.0,17.571428571428584,454.5714285714289,2020-11-21 +1190,12206.1,4.0,17.595238095238106,462.2380952380955,2020-11-21 +1189,12194.9,4.0,17.690476190476204,469.5714285714289,2020-11-21 +1188,12183.8,4.0,17.85714285714287,465.71428571428606,2020-11-21 +1187,12172.1,4.0,17.880952380952394,455.47619047619077,2020-11-21 +1186,12161.1,4.0,17.761904761904773,440.714285714286,2020-11-21 +1185,12150.2,4.0,17.66666666666668,426.1428571428574,2020-11-21 +1184,12139.0,4.0,17.547619047619058,425.00000000000034,2020-11-21 +1183,12127.8,4.0,17.619047619047628,433.95238095238125,2020-11-21 +1182,12117.0,4.0,17.880952380952394,431.28571428571456,2020-11-21 +1181,12106.1,4.0,17.90476190476192,426.0476190476193,2020-11-21 +1180,12095.9,4.0,17.904761904761916,420.0000000000003,2020-11-21 +1192,12228.4,4.0,17.452380952380963,457.38095238095275,2020-11-21 +1266,13045.4,4.0,17.2857142857143,406.8571428571431,2020-11-21 +1267,13056.6,4.0,17.2857142857143,400.61904761904793,2020-11-21 +1268,13067.4,4.0,17.42857142857144,402.76190476190504,2020-11-21 +1354,14018.0,4.0,17.80952380952382,423.8571428571431,2020-11-21 +1353,14007.8,4.0,17.738095238095248,412.1904761904765,2020-11-21 +1352,13997.0,4.0,17.642857142857153,406.38095238095264,2020-11-21 +1351,13986.2,4.0,17.7857142857143,408.3809523809527,2020-11-21 +1350,13974.6,4.0,17.690476190476204,416.0000000000002,2020-11-21 +1349,13963.8,4.0,17.619047619047628,414.8571428571431,2020-11-21 +1348,13952.9,4.0,17.738095238095248,433.2380952380955,2020-11-21 +1347,13942.5,4.0,17.738095238095248,438.95238095238125,2020-11-21 +1346,13931.7,4.0,18.047619047619058,447.714285714286,2020-11-21 +1345,13920.6,4.0,18.190476190476204,461.0952380952384,2020-11-21 +1344,13909.9,4.0,18.16666666666668,469.33333333333366,2020-11-21 +1343,13899.0,4.0,18.142857142857153,470.42857142857173,2020-11-21 +1355,14029.3,4.0,17.761904761904773,439.28571428571456,2020-11-21 +1342,13887.6,4.0,18.071428571428584,474.9047619047622,2020-11-21 +1340,13865.0,4.0,17.97619047619049,447.9047619047622,2020-11-21 +1339,13853.8,4.0,17.833333333333343,445.5238095238098,2020-11-21 +1338,13843.1,4.0,17.66666666666668,444.4761904761908,2020-11-21 +1337,13831.9,4.0,17.523809523809533,441.28571428571456,2020-11-21 +1336,13820.5,4.0,17.452380952380963,433.47619047619077,2020-11-21 +1335,13809.2,4.0,17.452380952380963,416.38095238095264,2020-11-21 +1334,13798.2,4.0,17.523809523809533,403.8571428571431,2020-11-21 +1333,13786.9,4.0,17.66666666666668,413.0476190476193,2020-11-21 +1332,13775.2,4.0,17.785714285714295,432.61904761904793,2020-11-21 +1331,13764.5,4.0,18.000000000000014,459.33333333333366,2020-11-21 +1330,13753.8,4.0,18.261904761904773,475.19047619047655,2020-11-21 +1329,13742.3,4.0,18.30952380952382,484.52380952380986,2020-11-21 +1341,13876.8,4.0,18.000000000000014,459.0476190476193,2020-11-21 +1328,13731.4,4.0,18.30952380952382,488.0952380952384,2020-11-21 +1356,14040.2,4.0,18.023809523809536,452.714285714286,2020-11-21 +1358,14061.0,4.0,17.92857142857144,439.61904761904793,2020-11-21 +1384,14343.1,4.0,17.642857142857153,425.0952380952383,2020-11-21 +1383,14332.4,4.0,17.50000000000001,417.9047619047622,2020-11-21 +1382,14320.9,4.0,17.523809523809533,417.9047619047622,2020-11-21 +1381,14310.2,4.0,17.97619047619049,413.9523809523812,2020-11-21 +1380,14299.3,4.0,18.214285714285726,413.5714285714289,2020-11-21 +1379,14288.2,4.0,18.40476190476192,425.2380952380955,2020-11-21 +1378,14277.6,4.0,18.547619047619058,429.52380952380986,2020-11-21 +1377,14266.7,4.0,18.333333333333346,432.47619047619077,2020-11-21 +1376,14256.0,4.0,18.09523809523811,443.57142857142884,2020-11-21 +1375,14245.4,4.0,18.261904761904773,442.9047619047622,2020-11-21 +1374,14234.5,4.0,18.142857142857153,455.9047619047622,2020-11-21 +1373,14223.6,4.0,18.214285714285726,467.19047619047655,2020-11-21 +1357,14050.5,4.0,18.16666666666668,450.00000000000034,2020-11-21 +1372,14212.4,4.0,18.428571428571438,462.33333333333366,2020-11-21 +1370,14190.2,4.0,18.50000000000001,438.5238095238098,2020-11-21 +1369,14179.4,4.0,18.690476190476204,429.5714285714289,2020-11-21 +1368,14168.6,4.0,18.714285714285726,430.28571428571456,2020-11-21 +1367,14158.6,4.0,18.571428571428584,434.4285714285717,2020-11-21 +1366,14147.8,4.0,18.42857142857144,439.28571428571456,2020-11-21 +1365,14137.2,4.0,18.2857142857143,440.0000000000003,2020-11-21 +1364,14126.6,4.0,18.35714285714287,441.38095238095264,2020-11-21 +1363,14115.5,4.0,18.523809523809536,447.28571428571456,2020-11-21 +1362,14105.0,4.0,18.452380952380963,443.80952380952414,2020-11-21 +1361,14094.2,4.0,18.142857142857153,447.0476190476194,2020-11-21 +1360,14083.6,4.0,18.071428571428584,435.76190476190504,2020-11-21 +1359,14071.9,4.0,18.071428571428584,431.5238095238098,2020-11-21 +1371,14200.8,4.0,18.30952380952382,448.80952380952414,2020-11-21 +1149,11758.5,4.0,18.50000000000001,432.3333333333336,2020-11-21 +1327,13720.6,4.0,18.16666666666668,483.85714285714323,2020-11-21 +1325,13698.1,4.0,18.11904761904763,471.52380952380986,2020-11-21 +1294,13351.5,4.0,17.333333333333346,416.47619047619077,2020-11-21 +1293,13340.9,4.0,17.2857142857143,433.9047619047622,2020-11-21 +1292,13329.6,4.0,17.380952380952394,435.8571428571431,2020-11-21 +1291,13318.2,4.0,17.35714285714287,435.8571428571431,2020-11-21 +1290,13306.8,4.0,17.428571428571438,443.14285714285745,2020-11-21 +1289,13296.2,4.0,17.547619047619058,446.2380952380955,2020-11-21 +1288,13284.7,4.0,17.452380952380963,451.9047619047622,2020-11-21 +1287,13273.3,4.0,17.571428571428584,469.2380952380955,2020-11-21 +1286,13263.0,4.0,17.595238095238106,468.5238095238098,2020-11-21 +1285,13252.4,4.0,17.738095238095248,458.38095238095264,2020-11-21 +1284,13241.3,4.0,17.833333333333346,452.5714285714289,2020-11-21 +1283,13230.6,4.0,17.61904761904763,428.38095238095264,2020-11-21 +1295,13363.3,4.0,17.30952380952382,416.3333333333336,2020-11-21 +1282,13220.2,4.0,17.47619047619049,416.09523809523836,2020-11-21 +1280,13198.5,4.0,17.571428571428584,429.0952380952384,2020-11-21 +1279,13187.5,4.0,17.761904761904773,423.38095238095264,2020-11-21 +1278,13177.2,4.0,17.97619047619049,422.61904761904793,2020-11-21 +1277,13166.4,4.0,17.785714285714295,411.5714285714289,2020-11-21 +1276,13155.3,4.0,17.833333333333343,417.0000000000003,2020-11-21 +1275,13144.6,4.0,17.80952380952382,419.5714285714289,2020-11-21 +1274,13133.3,4.0,17.80952380952382,421.2380952380955,2020-11-21 +1273,13122.3,4.0,17.66666666666668,425.66666666666697,2020-11-21 +1272,13111.2,4.0,17.59523809523811,434.8095238095241,2020-11-21 +1271,13100.5,4.0,17.47619047619049,444.33333333333366,2020-11-21 +1270,13089.1,4.0,17.35714285714287,448.52380952380986,2020-11-21 +1269,13078.4,4.0,17.238095238095248,425.714285714286,2020-11-21 +1281,13210.1,4.0,17.61904761904763,426.61904761904793,2020-11-21 +1326,13709.1,4.0,18.047619047619058,475.66666666666697,2020-11-21 +1296,13374.2,4.0,17.261904761904773,430.0000000000003,2020-11-21 +1298,13396.3,4.0,17.238095238095248,452.47619047619077,2020-11-21 +1324,13687.2,4.0,18.42857142857144,469.3333333333336,2020-11-21 +1323,13675.5,4.0,18.380952380952394,457.0952380952384,2020-11-21 +1322,13664.1,4.0,18.2857142857143,434.4761904761907,2020-11-21 +1321,13653.1,4.0,17.97619047619049,414.4761904761907,2020-11-21 +1320,13642.0,4.0,17.66666666666668,413.95238095238125,2020-11-21 +1319,13631.1,4.0,17.619047619047628,428.14285714285745,2020-11-21 +1318,13620.1,4.0,17.66666666666668,454.80952380952414,2020-11-21 +1317,13608.9,4.0,17.690476190476204,475.33333333333366,2020-11-21 +1316,13598.1,4.0,17.738095238095248,475.8095238095241,2020-11-21 +1315,13586.1,4.0,17.80952380952382,471.38095238095275,2020-11-21 +1314,13575.1,4.0,17.690476190476204,461.2380952380955,2020-11-21 +1313,13563.3,4.0,17.714285714285726,449.1904761904765,2020-11-21 +1297,13385.3,4.0,17.238095238095248,445.38095238095264,2020-11-21 +1312,13552.2,4.0,17.880952380952394,438.14285714285745,2020-11-21 +1310,13530.4,4.0,17.952380952380963,439.66666666666697,2020-11-21 +1309,13519.9,4.0,18.071428571428584,450.8571428571432,2020-11-21 +1308,13508.5,4.0,17.952380952380963,449.5238095238098,2020-11-21 +1307,13497.1,4.0,17.690476190476204,446.95238095238125,2020-11-21 +1306,13486.2,4.0,17.547619047619058,442.714285714286,2020-11-21 +1305,13475.0,4.0,17.190476190476204,437.4761904761907,2020-11-21 +1304,13463.9,4.0,16.97619047619049,436.3333333333336,2020-11-21 +1303,13452.6,4.0,16.952380952380963,444.3809523809527,2020-11-21 +1302,13441.1,4.0,17.00000000000001,434.714285714286,2020-11-21 +1301,13430.1,4.0,16.952380952380963,430.5238095238098,2020-11-21 +1300,13419.2,4.0,17.071428571428584,434.8571428571431,2020-11-21 +1299,13407.7,4.0,17.09523809523811,450.8095238095241,2020-11-21 +1311,13541.4,4.0,17.97619047619049,437.57142857142884,2020-11-21 +1385,14354.2,4.0,18.047619047619058,436.28571428571456,2020-11-21 +1148,11748.1,4.0,18.333333333333343,441.66666666666697,2020-11-21 +1145,11723.3,4.0,22.35714285714287,272.2380952380954,2020-11-21 +992,10187.5,4.0,17.214285714285726,445.8095238095241,2020-11-21 +991,10176.3,4.0,17.023809523809533,458.14285714285745,2020-11-21 +990,10165.1,4.0,17.2857142857143,468.76190476190504,2020-11-21 +989,10154.7,4.0,17.30952380952382,465.0952380952384,2020-11-21 +988,10143.4,4.0,17.35714285714287,468.5714285714289,2020-11-21 +987,10132.7,4.0,17.428571428571438,471.52380952380986,2020-11-21 +986,10121.1,4.0,17.30952380952382,478.1904761904765,2020-11-21 +985,10110.0,4.0,17.047619047619058,484.4761904761908,2020-11-21 +984,10099.0,4.0,17.071428571428584,485.7619047619051,2020-11-21 +983,10086.9,4.0,16.904761904761916,484.9523809523813,2020-11-21 +982,10076.2,4.0,17.023809523809536,488.00000000000034,2020-11-21 +981,10064.5,4.0,17.214285714285726,495.2857142857146,2020-11-21 +980,10053.5,4.0,17.261904761904773,494.33333333333366,2020-11-21 +979,10042.1,4.0,17.333333333333346,494.714285714286,2020-11-21 +978,10031.1,4.0,17.380952380952394,498.71428571428606,2020-11-21 +977,10019.5,4.0,17.404761904761916,497.38095238095275,2020-11-21 +976,10009.0,4.0,17.35714285714287,493.666666666667,2020-11-21 +975,9997.4,4.0,17.404761904761916,495.7619047619051,2020-11-21 +974,9986.1,4.0,17.2857142857143,494.714285714286,2020-11-21 +973,9974.7,4.0,17.428571428571438,493.66666666666697,2020-11-21 +972,9963.6,4.0,17.523809523809533,488.9523809523813,2020-11-21 +971,9952.6,4.0,17.7857142857143,473.2857142857146,2020-11-21 +970,9941.1,4.0,17.7857142857143,457.9047619047622,2020-11-21 +969,9930.8,4.0,17.738095238095248,445.8571428571431,2020-11-21 +968,9920.1,4.0,17.547619047619058,447.0000000000003,2020-11-21 +993,10198.6,4.0,17.214285714285726,427.5714285714289,2020-11-21 +994,10209.6,4.0,17.16666666666668,428.76190476190504,2020-11-21 +995,10220.8,4.0,17.11904761904763,435.8095238095241,2020-11-21 +996,10230.8,4.0,16.85714285714287,441.714285714286,2020-11-21 +1022,10501.9,4.0,17.142857142857153,475.714285714286,2020-11-21 +1021,10491.8,4.0,17.071428571428584,470.38095238095275,2020-11-21 +1020,10481.2,4.0,17.35714285714287,471.71428571428606,2020-11-21 +1019,10470.5,4.0,17.404761904761916,463.8095238095241,2020-11-21 +1018,10460.5,4.0,17.47619047619049,470.0952380952384,2020-11-21 +1017,10450.2,4.0,17.40476190476192,472.0000000000003,2020-11-21 +1016,10439.7,4.0,17.071428571428584,479.2857142857146,2020-11-21 +1015,10429.3,4.0,16.738095238095248,484.0952380952384,2020-11-21 +1014,10418.5,4.0,16.61904761904763,485.28571428571456,2020-11-21 +1013,10407.9,4.0,16.59523809523811,483.33333333333366,2020-11-21 +1012,10398.4,4.0,16.547619047619058,479.7619047619051,2020-11-21 +1011,10387.9,4.0,16.642857142857153,472.8571428571432,2020-11-21 +967,9909.7,4.0,17.642857142857153,450.80952380952414,2020-11-21 +1010,10377.4,4.0,16.880952380952394,478.9523809523813,2020-11-21 +1008,10356.6,4.0,17.047619047619058,477.47619047619077,2020-11-21 +1007,10346.9,4.0,17.261904761904773,482.2380952380956,2020-11-21 +1006,10336.5,4.0,17.214285714285726,477.2380952380955,2020-11-21 +1005,10326.0,4.0,17.16666666666668,474.38095238095275,2020-11-21 +1004,10315.8,4.0,17.071428571428584,475.2857142857146,2020-11-21 +1003,10305.0,4.0,16.92857142857144,473.0000000000003,2020-11-21 +1002,10294.5,4.0,16.785714285714295,486.38095238095275,2020-11-21 +1001,10283.3,4.0,16.904761904761916,496.04761904761943,2020-11-21 +1000,10272.7,4.0,16.904761904761916,484.9047619047622,2020-11-21 +999,10262.8,4.0,16.833333333333343,465.66666666666697,2020-11-21 +998,10252.9,4.0,16.6904761904762,454.3333333333336,2020-11-21 +997,10242.2,4.0,16.642857142857153,439.28571428571456,2020-11-21 +1009,10367.0,4.0,17.047619047619058,482.0000000000003,2020-11-21 +966,9898.9,4.0,17.547619047619058,447.95238095238125,2020-11-21 +965,9888.3,4.0,17.690476190476204,449.95238095238125,2020-11-21 +964,9877.5,4.0,17.80952380952382,449.76190476190504,2020-11-21 +933,9547.3,4.0,17.16666666666668,448.66666666666697,2020-11-21 +932,9535.8,4.0,17.2857142857143,447.57142857142884,2020-11-21 +931,9525.5,4.0,17.547619047619058,446.28571428571456,2020-11-21 +930,9514.4,4.0,17.6904761904762,449.61904761904793,2020-11-21 +929,9503.5,4.0,17.66666666666668,456.2380952380955,2020-11-21 +928,9492.7,4.0,17.642857142857153,464.61904761904793,2020-11-21 +927,9481.9,4.0,17.571428571428584,469.4761904761908,2020-11-21 +926,9471.0,4.0,17.404761904761916,471.7619047619051,2020-11-21 +925,9460.3,4.0,17.61904761904763,469.33333333333366,2020-11-21 +924,9449.8,4.0,17.61904761904763,471.2380952380956,2020-11-21 +923,9439.3,4.0,17.500000000000014,469.61904761904793,2020-11-21 +922,9428.8,4.0,17.261904761904773,476.5238095238098,2020-11-21 +934,9558.3,4.0,17.023809523809536,460.0952380952384,2020-11-21 +921,9417.6,4.0,17.214285714285726,478.14285714285745,2020-11-21 +919,9396.2,4.0,17.071428571428584,464.42857142857173,2020-11-21 +918,9386.0,4.0,16.952380952380963,445.66666666666697,2020-11-21 +917,9375.6,4.0,16.80952380952382,425.90476190476215,2020-11-21 +916,9364.8,4.0,16.523809523809533,420.52380952380986,2020-11-21 +915,9353.5,4.0,16.35714285714287,427.57142857142884,2020-11-21 +914,9342.7,4.0,16.142857142857153,429.2380952380955,2020-11-21 +913,9331.3,4.0,16.142857142857153,442.76190476190504,2020-11-21 +912,9320.3,4.0,16.30952380952382,444.9047619047622,2020-11-21 +911,9308.9,4.0,16.642857142857153,444.2380952380955,2020-11-21 +910,9297.6,4.0,16.880952380952394,446.8571428571432,2020-11-21 +909,9286.5,4.0,16.97619047619049,450.28571428571456,2020-11-21 +908,9274.9,4.0,17.047619047619058,444.0000000000003,2020-11-21 +920,9407.0,4.0,16.97619047619049,472.2380952380955,2020-11-21 +1023,10511.9,4.0,17.30952380952382,469.9047619047622,2020-11-21 +935,9568.5,4.0,16.952380952380963,467.2380952380955,2020-11-21 +937,9589.0,4.0,16.97619047619049,460.61904761904793,2020-11-21 +963,9866.8,4.0,17.85714285714287,450.0476190476194,2020-11-21 +962,9855.9,4.0,17.952380952380963,457.8571428571432,2020-11-21 +961,9845.0,4.0,18.500000000000014,458.95238095238125,2020-11-21 +960,9835.1,4.0,17.952380952380963,454.90476190476227,2020-11-21 +959,9824.5,4.0,17.595238095238106,456.47619047619077,2020-11-21 +958,9814.4,4.0,17.47619047619049,457.66666666666697,2020-11-21 +957,9802.5,4.0,17.214285714285726,461.52380952380986,2020-11-21 +956,9791.7,4.0,17.333333333333343,468.2380952380956,2020-11-21 +955,9780.9,4.0,17.66666666666668,465.95238095238125,2020-11-21 +954,9769.9,4.0,17.285714285714295,451.5714285714289,2020-11-21 +953,9759.5,4.0,17.190476190476204,439.8095238095241,2020-11-21 +952,9748.6,4.0,17.1904761904762,434.1428571428574,2020-11-21 +936,9578.6,4.0,16.952380952380963,473.14285714285745,2020-11-21 +951,9737.5,4.0,17.071428571428584,435.42857142857173,2020-11-21 +949,9715.7,4.0,17.428571428571438,461.5714285714289,2020-11-21 +948,9704.7,4.0,17.59523809523811,469.5714285714289,2020-11-21 +947,9693.2,4.0,17.714285714285722,471.0476190476193,2020-11-21 +946,9682.9,4.0,17.738095238095248,465.28571428571456,2020-11-21 +945,9672.1,4.0,17.785714285714295,450.8095238095241,2020-11-21 +944,9661.9,4.0,17.92857142857144,450.5714285714289,2020-11-21 +943,9651.1,4.0,18.11904761904763,449.66666666666697,2020-11-21 +942,9640.6,4.0,18.190476190476204,456.9523809523813,2020-11-21 +941,9630.5,4.0,18.190476190476204,443.8571428571432,2020-11-21 +940,9620.1,4.0,17.952380952380963,434.61904761904793,2020-11-21 +939,9610.5,4.0,17.571428571428584,424.66666666666697,2020-11-21 +938,9599.2,4.0,17.142857142857153,441.28571428571456,2020-11-21 +950,9726.7,4.0,17.30952380952382,447.1904761904765,2020-11-21 +1024,10522.0,4.0,17.404761904761916,454.38095238095264,2020-11-21 +1025,10532.3,4.0,17.428571428571438,449.28571428571456,2020-11-21 +1026,10542.3,4.0,17.452380952380963,446.2380952380955,2020-11-21 +1112,11459.9,4.0,17.642857142857153,449.57142857142884,2020-11-21 +1111,11449.1,4.0,17.40476190476192,452.00000000000034,2020-11-21 +1110,11438.8,4.0,17.333333333333343,456.1904761904765,2020-11-21 +1109,11428.0,4.0,17.214285714285726,454.9523809523812,2020-11-21 +1108,11416.2,4.0,17.261904761904773,450.2380952380956,2020-11-21 +1107,11406.1,4.0,17.6904761904762,452.14285714285745,2020-11-21 +1106,11395.7,4.0,17.85714285714287,445.5238095238098,2020-11-21 +1105,11385.1,4.0,17.761904761904773,453.76190476190504,2020-11-21 +1104,11374.8,4.0,17.738095238095248,468.5238095238098,2020-11-21 +1103,11363.8,4.0,17.642857142857153,481.4761904761908,2020-11-21 +1102,11352.8,4.0,17.904761904761916,486.0476190476194,2020-11-21 +1101,11341.8,4.0,18.142857142857153,490.95238095238125,2020-11-21 +1113,11470.1,4.0,17.738095238095248,436.0000000000003,2020-11-21 +1100,11330.4,4.0,17.97619047619049,486.0952380952384,2020-11-21 +1098,11309.5,4.0,17.500000000000014,473.666666666667,2020-11-21 +1097,11298.6,4.0,17.404761904761916,454.1428571428574,2020-11-21 +1096,11287.6,4.0,17.547619047619058,438.9047619047622,2020-11-21 +1095,11277.5,4.0,17.761904761904773,441.90476190476215,2020-11-21 +1094,11266.7,4.0,17.714285714285722,455.666666666667,2020-11-21 +1093,11255.6,4.0,17.571428571428584,474.2857142857146,2020-11-21 +1092,11244.1,4.0,17.714285714285722,484.80952380952414,2020-11-21 +1091,11233.8,4.0,17.761904761904773,491.5714285714289,2020-11-21 +1090,11223.4,4.0,17.59523809523811,483.9523809523813,2020-11-21 +1089,11212.6,4.0,17.428571428571438,475.71428571428606,2020-11-21 +1088,11202.2,4.0,17.30952380952382,472.38095238095275,2020-11-21 +1087,11191.4,4.0,17.11904761904763,472.714285714286,2020-11-21 +1099,11320.4,4.0,17.619047619047628,479.2380952380956,2020-11-21 +1086,11180.1,4.0,17.119047619047628,457.0952380952384,2020-11-21 +1114,11480.5,4.0,17.904761904761916,422.95238095238125,2020-11-21 +1116,11500.6,4.0,18.047619047619058,442.61904761904793,2020-11-21 +1144,11710.1,4.0,33.33333333333336,127.85714285714292,2020-11-21 +1141,11709.6,4.0,25.3809523809524,117.14285714285722,2020-11-21 +1140,11709.0,4.0,21.71428571428573,159.04761904761915,2020-11-21 +1139,11708.6,4.0,17.904761904761916,177.33333333333346,2020-11-21 +1138,11708.3,4.0,19.642857142857153,146.38095238095246,2020-11-21 +1137,11707.8,4.0,16.761904761904773,182.42857142857153,2020-11-21 +1136,11688.2,4.0,17.142857142857153,252.7142857142859,2020-11-21 +1135,11688.2,4.0,17.42857142857144,342.66666666666686,2020-11-21 +1134,11688.2,4.0,19.571428571428584,430.714285714286,2020-11-21 +1133,11678.4,4.0,18.61904761904763,481.42857142857173,2020-11-21 +1132,11668.0,4.0,18.261904761904773,461.3809523809527,2020-11-21 +1131,11657.7,4.0,18.00000000000001,458.47619047619077,2020-11-21 +1115,11490.6,4.0,18.09523809523811,433.14285714285745,2020-11-21 +1130,11647.6,4.0,17.97619047619049,461.8571428571432,2020-11-21 +1128,11626.6,4.0,17.785714285714295,455.0476190476194,2020-11-21 +1127,11616.6,4.0,17.80952380952382,457.3333333333336,2020-11-21 +1126,11606.2,4.0,17.66666666666668,457.95238095238125,2020-11-21 +1125,11595.6,4.0,17.880952380952394,445.8095238095241,2020-11-21 +1124,11584.8,4.0,18.023809523809536,427.714285714286,2020-11-21 +1123,11574.8,4.0,17.928571428571438,414.1904761904765,2020-11-21 +1122,11565.1,4.0,17.85714285714287,402.2380952380955,2020-11-21 +1121,11554.5,4.0,17.59523809523811,414.3333333333336,2020-11-21 +1120,11543.9,4.0,17.404761904761916,429.8571428571431,2020-11-21 +1119,11533.3,4.0,17.404761904761916,452.61904761904793,2020-11-21 +1118,11522.6,4.0,17.59523809523811,461.5714285714289,2020-11-21 +1117,11511.4,4.0,17.80952380952382,454.38095238095264,2020-11-21 +1129,11637.1,4.0,17.85714285714287,459.1904761904765,2020-11-21 +1146,11729.4,4.0,16.119047619047628,407.38095238095264,2020-11-21 +1085,11169.2,4.0,17.142857142857153,460.61904761904793,2020-11-21 +1083,11147.9,4.0,17.071428571428584,429.47619047619077,2020-11-21 +1052,10818.0,4.0,17.023809523809536,463.00000000000034,2020-11-21 +1051,10807.2,4.0,17.119047619047628,469.4761904761908,2020-11-21 +1050,10796.0,4.0,17.214285714285726,462.8095238095241,2020-11-21 +1049,10784.9,4.0,17.61904761904763,463.14285714285745,2020-11-21 +1048,10774.0,4.0,17.690476190476204,460.0476190476194,2020-11-21 +1047,10763.0,4.0,17.642857142857153,459.66666666666697,2020-11-21 +1046,10752.1,4.0,17.333333333333343,467.2857142857146,2020-11-21 +1045,10741.1,4.0,17.47619047619049,468.2857142857146,2020-11-21 +1044,10729.9,4.0,17.80952380952382,461.0476190476194,2020-11-21 +1043,10718.4,4.0,18.11904761904763,460.9047619047622,2020-11-21 +1042,10708.8,4.0,18.190476190476204,463.14285714285745,2020-11-21 +1041,10698.6,4.0,18.023809523809536,475.4761904761908,2020-11-21 +1053,10828.6,4.0,17.35714285714287,455.8571428571432,2020-11-21 +1040,10688.0,4.0,17.738095238095248,494.19047619047655,2020-11-21 +1038,10666.4,4.0,17.880952380952394,500.0952380952384,2020-11-21 +1037,10656.1,4.0,17.761904761904773,490.0952380952384,2020-11-21 +1036,10646.0,4.0,17.66666666666668,483.4761904761908,2020-11-21 +1035,10635.2,4.0,17.547619047619058,480.71428571428606,2020-11-21 +1034,10624.7,4.0,17.619047619047628,491.2857142857146,2020-11-21 +1033,10614.5,4.0,17.880952380952394,483.714285714286,2020-11-21 +1032,10603.9,4.0,17.85714285714287,483.7142857142861,2020-11-21 +1031,10593.5,4.0,18.023809523809533,482.80952380952414,2020-11-21 +1030,10583.7,4.0,17.952380952380963,466.95238095238125,2020-11-21 +1029,10573.3,4.0,17.85714285714287,460.4761904761908,2020-11-21 +1028,10563.1,4.0,17.738095238095248,461.0952380952384,2020-11-21 +1027,10552.9,4.0,17.642857142857153,446.4285714285718,2020-11-21 +1039,10677.0,4.0,17.761904761904773,502.52380952380986,2020-11-21 +1084,11159.0,4.0,17.023809523809536,443.5714285714289,2020-11-21 +1054,10839.2,4.0,17.6904761904762,457.90476190476227,2020-11-21 +1056,10860.0,4.0,17.80952380952382,476.8095238095241,2020-11-21 +1082,11136.9,4.0,17.11904761904763,423.8571428571431,2020-11-21 +1081,11126.0,4.0,17.00000000000001,407.61904761904793,2020-11-21 +1080,11116.0,4.0,16.761904761904773,391.8571428571431,2020-11-21 +1079,11105.2,4.0,16.571428571428584,378.2380952380955,2020-11-21 +1078,11095.3,4.0,16.642857142857153,382.1904761904765,2020-11-21 +1077,11084.6,4.0,16.97619047619049,401.28571428571456,2020-11-21 +1076,11074.4,4.0,17.095238095238106,430.38095238095264,2020-11-21 +1075,11063.9,4.0,17.214285714285726,446.66666666666697,2020-11-21 +1074,11053.1,4.0,17.190476190476204,468.7619047619051,2020-11-21 +1073,11042.1,4.0,17.35714285714287,460.9047619047622,2020-11-21 +1072,11031.7,4.0,17.61904761904763,458.3333333333336,2020-11-21 +1071,11021.1,4.0,17.714285714285726,455.2857142857146,2020-11-21 +1055,10849.5,4.0,17.85714285714287,463.619047619048,2020-11-21 +1070,11010.8,4.0,17.6904761904762,460.14285714285745,2020-11-21 +1068,10989.6,4.0,17.30952380952382,464.8571428571431,2020-11-21 +1067,10978.8,4.0,17.238095238095248,463.42857142857173,2020-11-21 +1066,10967.7,4.0,17.452380952380963,458.2380952380955,2020-11-21 +1065,10957.4,4.0,17.7857142857143,454.8571428571432,2020-11-21 +1064,10946.5,4.0,18.023809523809536,456.0000000000003,2020-11-21 +1063,10935.5,4.0,17.952380952380963,461.3809523809527,2020-11-21 +1062,10925.1,4.0,17.7857142857143,470.38095238095275,2020-11-21 +1061,10914.0,4.0,17.47619047619049,472.66666666666697,2020-11-21 +1060,10903.2,4.0,17.452380952380963,473.7619047619051,2020-11-21 +1059,10892.2,4.0,17.452380952380963,471.2380952380955,2020-11-21 +1058,10881.0,4.0,17.523809523809533,469.4761904761908,2020-11-21 +1057,10870.7,4.0,17.714285714285722,481.33333333333366,2020-11-21 +1069,11000.2,4.0,17.50000000000001,458.3809523809527,2020-11-21 +1864,19097.8,4.0,18.61904761904763,406.1904761904765,2020-11-21 +1386,14364.7,4.0,18.2857142857143,446.66666666666697,2020-11-21 +1388,14386.5,4.0,18.16666666666668,467.61904761904793,2020-11-21 +1712,17575.1,4.0,18.833333333333343,440.5714285714289,2020-11-21 +1711,17564.8,4.0,18.97619047619049,447.8571428571431,2020-11-21 +1710,17555.0,4.0,19.309523809523824,447.66666666666697,2020-11-21 +1709,17545.1,4.0,19.66666666666668,429.0000000000003,2020-11-21 +1708,17534.9,4.0,19.523809523809536,429.28571428571456,2020-11-21 +1707,17526.0,4.0,19.571428571428584,437.3809523809527,2020-11-21 +1706,17516.0,4.0,19.2857142857143,441.2857142857146,2020-11-21 +1705,17506.1,4.0,19.261904761904773,451.0952380952384,2020-11-21 +1704,17496.6,4.0,19.500000000000014,449.4761904761907,2020-11-21 +1703,17486.8,4.0,19.40476190476192,444.1904761904765,2020-11-21 +1702,17476.4,4.0,19.238095238095248,453.4761904761908,2020-11-21 +1701,17466.7,4.0,19.333333333333346,464.3333333333336,2020-11-21 +1700,17456.3,4.0,19.380952380952394,456.47619047619077,2020-11-21 +1699,17446.8,4.0,19.59523809523811,458.3809523809527,2020-11-21 +1698,17437.3,4.0,19.833333333333346,448.61904761904793,2020-11-21 +1697,17427.2,4.0,20.04761904761906,449.1904761904765,2020-11-21 +1696,17417.9,4.0,20.23809523809525,431.33333333333366,2020-11-21 +1695,17407.8,4.0,20.190476190476204,417.38095238095264,2020-11-21 +1694,17398.6,4.0,19.90476190476192,407.5714285714289,2020-11-21 +1693,17388.7,4.0,19.59523809523811,404.66666666666697,2020-11-21 +1692,17378.6,4.0,19.261904761904773,409.09523809523836,2020-11-21 +1691,17368.2,4.0,19.2857142857143,425.47619047619077,2020-11-21 +1690,17358.1,4.0,19.71428571428573,419.47619047619077,2020-11-21 +1689,17348.2,4.0,20.000000000000014,411.28571428571456,2020-11-21 +1688,17337.7,4.0,19.92857142857144,412.8571428571431,2020-11-21 +1713,17585.4,4.0,19.09523809523811,425.61904761904793,2020-11-21 +1714,17595.3,4.0,19.261904761904773,417.8571428571431,2020-11-21 +1715,17604.9,4.0,19.16666666666668,408.5238095238098,2020-11-21 +1716,17614.7,4.0,19.023809523809536,407.1904761904765,2020-11-21 +1742,17870.9,4.0,19.16666666666668,469.666666666667,2020-11-21 +1741,17861.2,4.0,18.952380952380963,465.714285714286,2020-11-21 +1740,17851.2,4.0,18.761904761904773,454.2857142857146,2020-11-21 +1739,17841.3,4.0,18.952380952380963,450.5238095238098,2020-11-21 +1738,17831.2,4.0,18.92857142857144,452.61904761904793,2020-11-21 +1737,17821.2,4.0,18.952380952380967,446.95238095238125,2020-11-21 +1736,17811.6,4.0,19.023809523809536,437.14285714285745,2020-11-21 +1735,17800.9,4.0,18.97619047619049,425.8571428571431,2020-11-21 +1734,17790.5,4.0,18.80952380952382,410.9523809523812,2020-11-21 +1733,17780.7,4.0,18.952380952380963,408.8095238095241,2020-11-21 +1732,17771.0,4.0,18.66666666666668,418.8571428571431,2020-11-21 +1731,17760.1,4.0,18.809523809523824,431.6190476190479,2020-11-21 +1687,17328.2,4.0,19.880952380952394,421.66666666666697,2020-11-21 +1730,17750.5,4.0,19.11904761904763,423.8571428571431,2020-11-21 +1728,17730.9,4.0,19.380952380952394,422.42857142857173,2020-11-21 +1727,17720.5,4.0,19.380952380952394,433.66666666666697,2020-11-21 +1726,17710.7,4.0,18.90476190476192,447.28571428571456,2020-11-21 +1725,17700.7,4.0,18.71428571428573,455.28571428571456,2020-11-21 +1724,17691.2,4.0,18.92857142857144,438.2380952380955,2020-11-21 +1723,17681.4,4.0,19.214285714285726,429.8095238095241,2020-11-21 +1722,17671.9,4.0,19.404761904761916,419.4761904761907,2020-11-21 +1721,17662.1,4.0,19.452380952380963,409.90476190476215,2020-11-21 +1720,17653.3,4.0,19.40476190476192,400.3333333333336,2020-11-21 +1719,17644.2,4.0,19.047619047619058,389.1904761904765,2020-11-21 +1718,17634.3,4.0,18.92857142857144,389.1904761904765,2020-11-21 +1717,17624.6,4.0,19.047619047619058,397.28571428571456,2020-11-21 +1729,17740.5,4.0,19.380952380952394,418.6190476190479,2020-11-21 +1686,17317.8,4.0,19.761904761904773,441.28571428571456,2020-11-21 +1685,17307.1,4.0,19.738095238095248,452.95238095238125,2020-11-21 +1684,17297.0,4.0,19.880952380952394,461.666666666667,2020-11-21 +1653,16982.5,4.0,19.071428571428584,417.3333333333336,2020-11-21 +1652,16972.5,4.0,19.16666666666668,422.8095238095241,2020-11-21 +1651,16962.6,4.0,19.23809523809525,425.57142857142884,2020-11-21 +1650,16952.5,4.0,19.2857142857143,445.47619047619077,2020-11-21 +1649,16941.9,4.0,19.380952380952394,458.95238095238125,2020-11-21 +1648,16930.9,4.0,19.642857142857157,464.0952380952384,2020-11-21 +1647,16920.7,4.0,19.809523809523824,464.0476190476193,2020-11-21 +1646,16910.4,4.0,20.047619047619058,438.5714285714289,2020-11-21 +1645,16900.6,4.0,20.04761904761906,416.90476190476215,2020-11-21 +1644,16890.8,4.0,20.023809523809536,416.0476190476193,2020-11-21 +1643,16880.8,4.0,19.71428571428573,423.3333333333336,2020-11-21 +1642,16870.7,4.0,19.71428571428573,445.1428571428574,2020-11-21 +1654,16992.8,4.0,19.214285714285726,417.0476190476194,2020-11-21 +1641,16860.3,4.0,19.809523809523824,463.33333333333366,2020-11-21 +1639,16840.6,4.0,19.71428571428573,452.1904761904765,2020-11-21 +1638,16830.6,4.0,19.73809523809525,441.0952380952384,2020-11-21 +1637,16820.9,4.0,19.642857142857153,435.14285714285745,2020-11-21 +1636,16810.6,4.0,19.809523809523824,436.8095238095241,2020-11-21 +1635,16801.0,4.0,20.142857142857157,435.2380952380955,2020-11-21 +1634,16791.8,4.0,20.47619047619049,442.47619047619077,2020-11-21 +1633,16781.7,4.0,20.42857142857144,442.76190476190504,2020-11-21 +1632,16771.9,4.0,20.21428571428573,444.95238095238125,2020-11-21 +1631,16762.4,4.0,19.833333333333346,450.2380952380955,2020-11-21 +1630,16751.6,4.0,19.547619047619058,455.5714285714289,2020-11-21 +1629,16741.4,4.0,19.35714285714287,456.3809523809527,2020-11-21 +1628,16731.5,4.0,19.52380952380954,456.2380952380955,2020-11-21 +1640,16850.4,4.0,19.880952380952394,461.5714285714289,2020-11-21 +1743,17880.9,4.0,19.40476190476192,463.9047619047622,2020-11-21 +1655,17003.2,4.0,19.261904761904773,423.38095238095264,2020-11-21 +1657,17023.0,4.0,18.952380952380963,433.95238095238125,2020-11-21 +1683,17287.4,4.0,20.142857142857157,451.1428571428574,2020-11-21 +1682,17277.3,4.0,20.35714285714287,454.3809523809527,2020-11-21 +1681,17267.4,4.0,20.47619047619049,453.14285714285745,2020-11-21 +1680,17257.8,4.0,20.452380952380963,440.3333333333336,2020-11-21 +1679,17247.7,4.0,20.2857142857143,416.14285714285745,2020-11-21 +1678,17237.4,4.0,19.97619047619049,411.4761904761907,2020-11-21 +1677,17227.2,4.0,19.952380952380967,417.2380952380955,2020-11-21 +1676,17217.0,4.0,20.000000000000014,436.57142857142884,2020-11-21 +1675,17206.7,4.0,20.000000000000014,447.8095238095241,2020-11-21 +1674,17196.5,4.0,20.000000000000014,447.47619047619077,2020-11-21 +1673,17186.6,4.0,20.000000000000014,436.8095238095241,2020-11-21 +1672,17176.9,4.0,20.000000000000014,434.38095238095264,2020-11-21 +1656,17013.3,4.0,19.04761904761906,432.76190476190504,2020-11-21 +1671,17167.0,4.0,20.09523809523811,438.52380952380986,2020-11-21 +1669,17147.4,4.0,19.690476190476204,428.14285714285745,2020-11-21 +1668,17137.1,4.0,19.547619047619058,422.4285714285717,2020-11-21 +1667,17126.6,4.0,19.35714285714287,417.2380952380955,2020-11-21 +1666,17116.2,4.0,19.261904761904773,413.4285714285717,2020-11-21 +1665,17106.1,4.0,19.142857142857153,418.5714285714289,2020-11-21 +1664,17096.3,4.0,18.833333333333346,425.9523809523813,2020-11-21 +1663,17085.6,4.0,18.80952380952382,422.714285714286,2020-11-21 +1662,17075.2,4.0,19.071428571428584,424.8095238095241,2020-11-21 +1661,17064.7,4.0,19.2857142857143,421.38095238095264,2020-11-21 +1660,17054.7,4.0,19.2857142857143,420.4285714285717,2020-11-21 +1659,17044.2,4.0,19.023809523809536,424.714285714286,2020-11-21 +1658,17034.1,4.0,18.92857142857144,435.1904761904765,2020-11-21 +1670,17157.2,4.0,19.90476190476192,438.47619047619077,2020-11-21 +1744,17890.3,4.0,19.571428571428584,440.14285714285745,2020-11-21 +1745,17899.8,4.0,19.7857142857143,416.2380952380955,2020-11-21 +1746,17909.3,4.0,19.83333333333335,404.2380952380955,2020-11-21 +1832,18775.7,4.0,18.92857142857144,431.14285714285745,2020-11-21 +1831,18765.5,4.0,19.000000000000014,442.00000000000034,2020-11-21 +1830,18755.7,4.0,18.97619047619049,453.3333333333336,2020-11-21 +1829,18745.4,4.0,19.2857142857143,452.47619047619077,2020-11-21 +1828,18735.1,4.0,19.23809523809525,454.0952380952384,2020-11-21 +1827,18725.2,4.0,19.309523809523824,447.95238095238125,2020-11-21 +1826,18714.8,4.0,19.23809523809525,446.14285714285745,2020-11-21 +1825,18704.9,4.0,19.23809523809525,437.61904761904793,2020-11-21 +1824,18695.0,4.0,19.09523809523811,447.0476190476194,2020-11-21 +1823,18684.5,4.0,19.11904761904763,436.14285714285745,2020-11-21 +1822,18674.7,4.0,18.92857142857144,417.3333333333336,2020-11-21 +1821,18664.8,4.0,18.833333333333346,408.1904761904765,2020-11-21 +1833,18785.8,4.0,18.97619047619049,425.76190476190504,2020-11-21 +1820,18655.0,4.0,18.61904761904763,398.52380952380975,2020-11-21 +1818,18634.7,4.0,18.71428571428573,426.0952380952384,2020-11-21 +1817,18624.2,4.0,18.73809523809525,423.8571428571431,2020-11-21 +1816,18613.7,4.0,18.714285714285726,420.3333333333336,2020-11-21 +1815,18603.3,4.0,18.47619047619049,417.38095238095264,2020-11-21 +1814,18593.2,4.0,18.190476190476204,419.0000000000003,2020-11-21 +1813,18583.3,4.0,18.2857142857143,426.66666666666697,2020-11-21 +1812,18572.7,4.0,18.59523809523811,427.5714285714289,2020-11-21 +1811,18562.3,4.0,18.523809523809536,423.66666666666697,2020-11-21 +1810,18551.7,4.0,18.547619047619058,429.5238095238098,2020-11-21 +1809,18542.0,4.0,18.404761904761916,430.28571428571456,2020-11-21 +1808,18531.7,4.0,18.30952380952382,437.28571428571456,2020-11-21 +1807,18521.2,4.0,18.333333333333343,450.8571428571431,2020-11-21 +1819,18645.5,4.0,18.547619047619058,409.1904761904765,2020-11-21 +1806,18511.0,4.0,18.690476190476204,459.8095238095241,2020-11-21 +1834,18795.3,4.0,19.142857142857153,447.61904761904793,2020-11-21 +1836,18815.7,4.0,19.071428571428584,464.1904761904765,2020-11-21 +1862,19078.1,4.0,18.50000000000001,418.3333333333336,2020-11-21 +1861,19067.6,4.0,18.452380952380963,429.90476190476215,2020-11-21 +1860,19057.2,4.0,18.523809523809536,423.8571428571431,2020-11-21 +1859,19046.8,4.0,18.61904761904763,412.3333333333336,2020-11-21 +1858,19036.9,4.0,18.952380952380963,409.4285714285717,2020-11-21 +1857,19026.8,4.0,19.047619047619058,396.6190476190478,2020-11-21 +1856,19017.0,4.0,19.16666666666668,390.0000000000003,2020-11-21 +1855,19006.7,4.0,18.880952380952394,388.4761904761907,2020-11-21 +1854,18996.3,4.0,18.61904761904763,383.09523809523836,2020-11-21 +1853,18986.5,4.0,18.333333333333346,384.1904761904765,2020-11-21 +1852,18975.7,4.0,18.452380952380963,385.66666666666697,2020-11-21 +1851,18966.2,4.0,18.500000000000014,389.14285714285745,2020-11-21 +1835,18805.4,4.0,19.261904761904773,450.42857142857173,2020-11-21 +1850,18955.6,4.0,18.952380952380963,397.714285714286,2020-11-21 +1848,18936.0,4.0,19.23809523809525,432.9523809523812,2020-11-21 +1847,18926.0,4.0,19.261904761904773,450.2380952380955,2020-11-21 +1846,18916.1,4.0,19.47619047619049,447.2380952380955,2020-11-21 +1845,18906.3,4.0,19.571428571428584,439.1904761904765,2020-11-21 +1844,18896.5,4.0,19.71428571428573,425.47619047619077,2020-11-21 +1843,18886.3,4.0,19.642857142857157,429.0000000000002,2020-11-21 +1842,18876.4,4.0,19.571428571428584,435.6190476190479,2020-11-21 +1841,18866.5,4.0,19.500000000000014,449.76190476190504,2020-11-21 +1840,18856.5,4.0,19.47619047619049,461.8571428571432,2020-11-21 +1839,18846.2,4.0,19.2857142857143,458.76190476190504,2020-11-21 +1838,18836.3,4.0,19.23809523809525,450.0000000000003,2020-11-21 +1837,18826.0,4.0,19.16666666666668,464.0476190476194,2020-11-21 +1849,18946.3,4.0,19.071428571428584,411.76190476190504,2020-11-21 +1627,16720.9,4.0,19.66666666666668,438.14285714285745,2020-11-21 +1805,18500.5,4.0,18.738095238095248,458.52380952380986,2020-11-21 +1803,18479.6,4.0,19.071428571428584,444.4285714285717,2020-11-21 +1772,18171.2,4.0,19.40476190476192,453.5714285714289,2020-11-21 +1771,18161.0,4.0,19.142857142857153,450.8095238095241,2020-11-21 +1770,18151.3,4.0,18.880952380952394,455.42857142857173,2020-11-21 +1769,18141.1,4.0,18.7857142857143,451.80952380952414,2020-11-21 +1768,18130.8,4.0,18.809523809523824,457.8571428571432,2020-11-21 +1767,18120.4,4.0,19.000000000000014,468.4761904761908,2020-11-21 +1766,18110.1,4.0,19.190476190476204,471.38095238095264,2020-11-21 +1765,18099.9,4.0,19.11904761904763,457.0476190476193,2020-11-21 +1764,18089.8,4.0,19.16666666666668,443.5238095238098,2020-11-21 +1763,18079.5,4.0,19.23809523809525,428.14285714285745,2020-11-21 +1762,18069.4,4.0,19.333333333333346,428.66666666666697,2020-11-21 +1761,18059.5,4.0,19.500000000000014,441.9047619047622,2020-11-21 +1773,18180.6,4.0,19.23809523809525,448.8571428571432,2020-11-21 +1760,18049.8,4.0,19.261904761904773,455.33333333333366,2020-11-21 +1758,18029.5,4.0,18.952380952380963,451.3333333333336,2020-11-21 +1757,18019.2,4.0,19.04761904761906,447.47619047619077,2020-11-21 +1756,18009.0,4.0,19.16666666666668,451.2380952380955,2020-11-21 +1755,17998.4,4.0,19.309523809523824,460.1904761904765,2020-11-21 +1754,17988.5,4.0,19.261904761904773,458.5238095238098,2020-11-21 +1753,17978.2,4.0,19.452380952380963,452.28571428571456,2020-11-21 +1752,17968.3,4.0,19.40476190476192,440.3333333333336,2020-11-21 +1751,17958.3,4.0,19.333333333333346,430.0952380952384,2020-11-21 +1750,17948.8,4.0,19.142857142857153,428.28571428571456,2020-11-21 +1749,17938.4,4.0,19.261904761904773,433.52380952380986,2020-11-21 +1748,17928.6,4.0,19.380952380952394,422.8571428571432,2020-11-21 +1747,17918.7,4.0,19.71428571428573,410.90476190476215,2020-11-21 +1759,18039.9,4.0,19.09523809523811,453.3809523809527,2020-11-21 +1804,18489.9,4.0,18.809523809523824,458.28571428571456,2020-11-21 +1774,18190.7,4.0,19.071428571428584,440.5714285714289,2020-11-21 +1776,18210.9,4.0,18.73809523809525,444.95238095238125,2020-11-21 +1802,18469.6,4.0,19.09523809523811,424.95238095238125,2020-11-21 +1801,18459.5,4.0,18.833333333333346,412.0476190476194,2020-11-21 +1800,18450.3,4.0,18.92857142857144,395.38095238095264,2020-11-21 +1799,18440.6,4.0,18.690476190476204,398.4285714285717,2020-11-21 +1798,18431.2,4.0,18.59523809523811,415.0476190476193,2020-11-21 +1797,18421.5,4.0,18.85714285714287,430.8095238095241,2020-11-21 +1796,18411.0,4.0,18.833333333333346,443.61904761904793,2020-11-21 +1795,18400.9,4.0,18.7857142857143,445.8095238095241,2020-11-21 +1794,18391.4,4.0,18.880952380952394,443.90476190476215,2020-11-21 +1793,18381.2,4.0,18.809523809523824,448.3333333333336,2020-11-21 +1792,18370.9,4.0,18.952380952380963,450.47619047619077,2020-11-21 +1791,18361.5,4.0,19.30952380952382,453.52380952380986,2020-11-21 +1775,18200.8,4.0,18.904761904761916,439.76190476190504,2020-11-21 +1790,18351.4,4.0,19.380952380952394,459.1904761904765,2020-11-21 +1788,18331.4,4.0,18.50000000000001,463.61904761904793,2020-11-21 +1787,18321.5,4.0,17.85714285714287,458.714285714286,2020-11-21 +1786,18311.1,4.0,17.642857142857153,459.80952380952414,2020-11-21 +1785,18300.9,4.0,17.90476190476192,455.8095238095241,2020-11-21 +1784,18291.1,4.0,18.35714285714287,439.66666666666697,2020-11-21 +1783,18281.4,4.0,18.452380952380963,416.3333333333336,2020-11-21 +1782,18271.3,4.0,18.35714285714287,402.19047619047643,2020-11-21 +1781,18261.5,4.0,18.404761904761916,403.1904761904765,2020-11-21 +1780,18251.9,4.0,18.452380952380963,424.1904761904765,2020-11-21 +1779,18241.3,4.0,18.61904761904763,444.14285714285745,2020-11-21 +1778,18231.1,4.0,18.90476190476192,456.47619047619077,2020-11-21 +1777,18220.9,4.0,18.833333333333346,447.66666666666697,2020-11-21 +1789,18341.6,4.0,19.09523809523811,459.3809523809527,2020-11-21 +1387,14375.4,4.0,18.35714285714287,455.2380952380955,2020-11-21 +1626,16710.8,4.0,19.880952380952394,444.8095238095241,2020-11-21 +1624,16691.2,4.0,19.85714285714287,447.2380952380955,2020-11-21 +1473,15288.4,4.0,18.071428571428584,453.76190476190504,2020-11-21 +1472,15276.5,4.0,18.023809523809536,464.47619047619077,2020-11-21 +1471,15265.8,4.0,17.928571428571438,457.95238095238125,2020-11-21 +1470,15255.2,4.0,18.16666666666668,448.33333333333366,2020-11-21 +1469,15244.0,4.0,17.92857142857144,434.8571428571432,2020-11-21 +1468,15233.4,4.0,17.90476190476192,428.8095238095241,2020-11-21 +1467,15222.6,4.0,18.16666666666668,439.1904761904765,2020-11-21 +1466,15211.7,4.0,18.333333333333343,455.8095238095241,2020-11-21 +1465,15200.4,4.0,18.23809523809525,461.2380952380955,2020-11-21 +1464,15190.4,4.0,18.09523809523811,467.33333333333366,2020-11-21 +1463,15179.7,4.0,18.023809523809536,449.61904761904793,2020-11-21 +1462,15168.7,4.0,18.023809523809536,434.28571428571456,2020-11-21 +1461,15157.5,4.0,18.142857142857153,433.42857142857173,2020-11-21 +1460,15146.9,4.0,18.16666666666668,438.6190476190479,2020-11-21 +1459,15136.8,4.0,18.142857142857153,434.0000000000003,2020-11-21 +1458,15125.9,4.0,18.071428571428584,436.8571428571431,2020-11-21 +1457,15115.3,4.0,17.952380952380963,422.2380952380955,2020-11-21 +1456,15104.8,4.0,18.000000000000014,410.90476190476215,2020-11-21 +1455,15094.0,4.0,18.000000000000014,404.0000000000002,2020-11-21 +1454,15083.9,4.0,18.000000000000014,401.8571428571431,2020-11-21 +1453,15073.8,4.0,17.952380952380963,388.28571428571456,2020-11-21 +1452,15063.3,4.0,17.97619047619049,385.04761904761926,2020-11-21 +1451,15053.6,4.0,18.238095238095248,383.8095238095241,2020-11-21 +1450,15042.9,4.0,18.523809523809536,402.1904761904765,2020-11-21 +1449,15033.2,4.0,18.61904761904763,415.4285714285717,2020-11-21 +1474,15299.1,4.0,18.071428571428584,455.28571428571456,2020-11-21 +1475,15309.2,4.0,18.190476190476204,452.38095238095264,2020-11-21 +1476,15320.7,4.0,18.428571428571438,446.0000000000003,2020-11-21 +1477,15332.1,4.0,17.97619047619049,437.42857142857173,2020-11-21 +1503,15602.2,4.0,18.61904761904763,455.14285714285745,2020-11-21 +1502,15591.7,4.0,18.59523809523811,456.76190476190504,2020-11-21 +1501,15581.5,4.0,18.738095238095248,462.3809523809527,2020-11-21 +1500,15571.4,4.0,18.738095238095248,458.42857142857173,2020-11-21 +1499,15561.0,4.0,18.761904761904773,457.8095238095241,2020-11-21 +1498,15550.4,4.0,18.761904761904773,454.14285714285745,2020-11-21 +1497,15540.1,4.0,18.90476190476192,454.1904761904765,2020-11-21 +1496,15529.6,4.0,18.97619047619049,456.8095238095241,2020-11-21 +1495,15519.4,4.0,18.97619047619049,452.1904761904765,2020-11-21 +1494,15510.0,4.0,18.90476190476192,444.0476190476193,2020-11-21 +1493,15499.8,4.0,18.809523809523824,435.3809523809527,2020-11-21 +1492,15489.5,4.0,18.642857142857153,441.1904761904765,2020-11-21 +1448,15023.5,4.0,18.428571428571438,439.2380952380955,2020-11-21 +1491,15479.2,4.0,18.61904761904763,452.0000000000003,2020-11-21 +1489,15457.5,4.0,18.761904761904773,452.61904761904793,2020-11-21 +1488,15446.7,4.0,18.761904761904773,455.2857142857146,2020-11-21 +1487,15435.8,4.0,18.7857142857143,458.52380952380986,2020-11-21 +1486,15425.3,4.0,18.66666666666668,467.76190476190504,2020-11-21 +1485,15415.2,4.0,18.571428571428584,483.61904761904793,2020-11-21 +1484,15405.8,4.0,18.71428571428573,488.4761904761908,2020-11-21 +1483,15395.7,4.0,18.761904761904773,482.714285714286,2020-11-21 +1482,15385.4,4.0,18.59523809523811,470.38095238095275,2020-11-21 +1481,15374.9,4.0,18.47619047619049,454.42857142857173,2020-11-21 +1480,15364.0,4.0,18.238095238095248,432.8095238095241,2020-11-21 +1479,15353.5,4.0,17.97619047619049,420.47619047619077,2020-11-21 +1478,15342.9,4.0,17.90476190476192,424.9047619047622,2020-11-21 +1490,15468.3,4.0,18.7857142857143,460.0476190476194,2020-11-21 +1447,15013.5,4.0,18.333333333333343,455.3809523809527,2020-11-21 +1446,15003.1,4.0,18.2857142857143,459.47619047619077,2020-11-21 +1445,14992.5,4.0,18.452380952380963,459.0476190476193,2020-11-21 +1414,14663.2,4.0,18.833333333333343,424.0000000000003,2020-11-21 +1413,14652.7,4.0,18.35714285714287,424.8095238095241,2020-11-21 +1412,14641.7,4.0,18.09523809523811,422.8571428571432,2020-11-21 +1411,14631.7,4.0,18.00000000000001,409.95238095238125,2020-11-21 +1410,14620.7,4.0,18.333333333333346,409.0000000000002,2020-11-21 +1409,14609.7,4.0,18.452380952380963,409.76190476190504,2020-11-21 +1408,14600.9,4.0,18.7857142857143,409.28571428571456,2020-11-21 +1407,14590.6,4.0,18.85714285714287,414.9047619047622,2020-11-21 +1406,14579.8,4.0,18.880952380952394,436.714285714286,2020-11-21 +1405,14569.3,4.0,18.809523809523824,453.714285714286,2020-11-21 +1404,14558.9,4.0,18.690476190476204,458.95238095238125,2020-11-21 +1403,14548.5,4.0,18.404761904761916,454.1904761904765,2020-11-21 +1415,14673.8,4.0,18.880952380952394,416.76190476190504,2020-11-21 +1402,14538.1,4.0,18.047619047619058,462.76190476190504,2020-11-21 +1400,14515.4,4.0,17.714285714285726,442.714285714286,2020-11-21 +1399,14505.3,4.0,17.714285714285726,424.8571428571431,2020-11-21 +1398,14494.2,4.0,17.80952380952382,406.1904761904765,2020-11-21 +1397,14483.2,4.0,17.880952380952394,394.28571428571456,2020-11-21 +1396,14472.1,4.0,17.714285714285726,405.0952380952384,2020-11-21 +1395,14461.1,4.0,17.6904761904762,402.38095238095264,2020-11-21 +1394,14449.9,4.0,17.714285714285726,401.9523809523812,2020-11-21 +1393,14439.4,4.0,18.000000000000014,391.2380952380955,2020-11-21 +1392,14428.1,4.0,18.2857142857143,405.0000000000002,2020-11-21 +1391,14417.7,4.0,18.35714285714287,430.1428571428574,2020-11-21 +1390,14407.8,4.0,18.16666666666668,450.2380952380955,2020-11-21 +1389,14396.6,4.0,18.047619047619058,464.714285714286,2020-11-21 +1401,14526.9,4.0,17.928571428571438,449.90476190476215,2020-11-21 +1504,15613.1,4.0,18.428571428571438,451.5714285714289,2020-11-21 +1416,14684.5,4.0,18.92857142857144,413.76190476190504,2020-11-21 +1418,14706.0,4.0,18.571428571428584,457.3809523809527,2020-11-21 +1444,14982.3,4.0,18.66666666666668,463.0952380952384,2020-11-21 +1443,14972.2,4.0,18.59523809523811,451.61904761904793,2020-11-21 +1442,14961.8,4.0,18.2857142857143,454.0476190476194,2020-11-21 +1441,14951.4,4.0,18.071428571428584,440.714285714286,2020-11-21 +1440,14940.5,4.0,18.071428571428584,434.95238095238125,2020-11-21 +1439,14930.0,4.0,18.380952380952394,434.0000000000003,2020-11-21 +1438,14919.1,4.0,18.61904761904763,441.09523809523836,2020-11-21 +1437,14908.6,4.0,18.571428571428584,435.42857142857173,2020-11-21 +1436,14898.7,4.0,18.50000000000001,433.38095238095264,2020-11-21 +1435,14887.6,4.0,18.095238095238106,430.42857142857173,2020-11-21 +1434,14876.5,4.0,18.16666666666668,428.76190476190504,2020-11-21 +1433,14865.9,4.0,18.452380952380963,412.61904761904793,2020-11-21 +1417,14695.5,4.0,18.66666666666668,422.8095238095241,2020-11-21 +1432,14854.9,4.0,18.66666666666668,418.47619047619077,2020-11-21 +1430,14834.4,4.0,18.40476190476192,417.714285714286,2020-11-21 +1429,14823.9,4.0,17.85714285714287,430.61904761904793,2020-11-21 +1428,14812.9,4.0,17.61904761904763,430.57142857142884,2020-11-21 +1427,14802.2,4.0,17.30952380952382,406.5238095238098,2020-11-21 +1426,14791.3,4.0,17.285714285714295,401.4761904761907,2020-11-21 +1425,14780.4,4.0,17.214285714285726,384.9523809523812,2020-11-21 +1424,14769.5,4.0,17.35714285714287,387.1904761904765,2020-11-21 +1423,14758.9,4.0,17.404761904761916,395.66666666666697,2020-11-21 +1422,14748.3,4.0,17.738095238095248,420.5714285714289,2020-11-21 +1421,14737.5,4.0,18.000000000000014,443.714285714286,2020-11-21 +1420,14727.1,4.0,18.30952380952382,475.5238095238098,2020-11-21 +1419,14716.5,4.0,18.47619047619049,472.66666666666697,2020-11-21 +1431,14844.9,4.0,18.47619047619049,413.4285714285717,2020-11-21 +1505,15623.8,4.0,18.2857142857143,448.8095238095241,2020-11-21 +1506,15634.4,4.0,18.190476190476204,437.5714285714289,2020-11-21 +1507,15645.3,4.0,18.190476190476204,432.0476190476194,2020-11-21 +1593,16374.7,4.0,19.97619047619049,444.2380952380955,2020-11-21 +1592,16364.5,4.0,20.380952380952394,465.0476190476194,2020-11-21 +1591,16354.2,4.0,21.071428571428584,418.47619047619077,2020-11-21 +1590,16344.5,4.0,21.40476190476192,369.0952380952383,2020-11-21 +1589,16335.3,4.0,21.33333333333335,346.38095238095264,2020-11-21 +1588,16325.3,4.0,21.02380952380954,353.4285714285717,2020-11-21 +1587,16315.5,4.0,20.64285714285716,394.9523809523812,2020-11-21 +1586,16305.5,4.0,20.523809523809536,459.8095238095241,2020-11-21 +1585,16295.9,4.0,20.619047619047635,457.7619047619051,2020-11-21 +1584,16286.1,4.0,20.761904761904773,455.8571428571432,2020-11-21 +1583,16276.0,4.0,20.952380952380967,492.80952380952414,2020-11-21 +1582,16266.8,4.0,21.40476190476192,501.3333333333337,2020-11-21 +1594,16385.0,4.0,20.119047619047635,436.8571428571431,2020-11-21 +1581,16257.9,4.0,21.428571428571445,489.8571428571431,2020-11-21 +1579,16238.0,4.0,21.000000000000014,448.66666666666697,2020-11-21 +1578,16228.6,4.0,20.928571428571445,425.0476190476193,2020-11-21 +1577,16218.9,4.0,20.85714285714287,439.76190476190504,2020-11-21 +1576,16209.4,4.0,20.880952380952394,440.0000000000003,2020-11-21 +1575,16199.0,4.0,20.66666666666668,450.38095238095275,2020-11-21 +1574,16189.2,4.0,20.47619047619049,462.33333333333366,2020-11-21 +1573,16178.9,4.0,20.61904761904763,474.0000000000003,2020-11-21 +1572,16169.4,4.0,20.83333333333335,487.4761904761908,2020-11-21 +1571,16159.5,4.0,18.7857142857143,473.1904761904765,2020-11-21 +1570,16150.8,4.0,19.85714285714287,467.66666666666697,2020-11-21 +1569,16143.2,4.0,22.09523809523811,404.0476190476193,2020-11-21 +1568,16129.4,4.0,27.547619047619065,300.4761904761907,2020-11-21 +1580,16247.7,4.0,21.238095238095255,468.0000000000003,2020-11-21 +1567,16129.4,4.0,33.83333333333336,203.38095238095252,2020-11-21 +1595,16394.3,4.0,20.309523809523824,435.52380952380986,2020-11-21 +1597,16415.0,4.0,20.142857142857157,437.714285714286,2020-11-21 +1623,16681.3,4.0,19.452380952380967,450.8571428571432,2020-11-21 +1622,16671.2,4.0,19.16666666666668,448.5714285714289,2020-11-21 +1621,16660.8,4.0,19.214285714285726,442.3333333333336,2020-11-21 +1620,16650.7,4.0,19.42857142857144,445.0476190476194,2020-11-21 +1619,16639.9,4.0,19.642857142857153,438.1904761904765,2020-11-21 +1618,16629.9,4.0,19.642857142857157,441.714285714286,2020-11-21 +1617,16619.8,4.0,19.642857142857157,437.3809523809527,2020-11-21 +1616,16609.6,4.0,19.547619047619058,430.3333333333336,2020-11-21 +1615,16598.9,4.0,19.690476190476204,435.95238095238125,2020-11-21 +1614,16588.8,4.0,19.809523809523824,430.8571428571431,2020-11-21 +1613,16578.6,4.0,19.90476190476192,428.76190476190504,2020-11-21 +1612,16568.4,4.0,19.880952380952394,432.0476190476194,2020-11-21 +1596,16404.9,4.0,20.35714285714287,435.90476190476215,2020-11-21 +1611,16558.2,4.0,20.119047619047635,432.2380952380955,2020-11-21 +1609,16538.0,4.0,20.119047619047635,444.61904761904793,2020-11-21 +1608,16527.8,4.0,20.261904761904773,459.8571428571432,2020-11-21 +1607,16517.2,4.0,20.142857142857157,466.7619047619051,2020-11-21 +1606,16506.7,4.0,19.92857142857144,472.66666666666697,2020-11-21 +1605,16496.6,4.0,20.000000000000014,478.714285714286,2020-11-21 +1604,16487.1,4.0,20.190476190476204,473.14285714285745,2020-11-21 +1603,16476.4,4.0,20.119047619047635,457.0952380952384,2020-11-21 +1602,16467.0,4.0,20.261904761904773,452.2380952380955,2020-11-21 +1601,16456.5,4.0,19.97619047619049,444.9047619047622,2020-11-21 +1600,16446.0,4.0,19.73809523809525,443.4285714285718,2020-11-21 +1599,16435.7,4.0,19.666666666666682,448.66666666666697,2020-11-21 +1598,16425.4,4.0,19.92857142857144,440.714285714286,2020-11-21 +1610,16548.4,4.0,20.142857142857157,436.4285714285717,2020-11-21 +1625,16701.1,4.0,20.000000000000014,443.0476190476194,2020-11-21 +1566,16127.3,4.0,40.04761904761908,149.66666666666674,2020-11-21 +1564,16126.5,4.0,38.30952380952384,148.90476190476198,2020-11-21 +1533,15894.2,4.0,21.119047619047635,348.8095238095241,2020-11-21 +1532,15885.3,4.0,21.09523809523811,360.3333333333336,2020-11-21 +1531,15874.4,4.0,21.000000000000014,406.0476190476193,2020-11-21 +1530,15865.5,4.0,21.09523809523811,500.80952380952414,2020-11-21 +1529,15856.5,4.0,21.47619047619049,440.76190476190504,2020-11-21 +1528,15848.8,4.0,20.071428571428584,271.3809523809525,2020-11-21 +1527,15841.7,4.0,19.54761904761906,176.85714285714297,2020-11-21 +1526,15841.7,4.0,18.833333333333346,166.7142857142858,2020-11-21 +1525,15831.8,4.0,18.30952380952382,258.3809523809526,2020-11-21 +1524,15821.2,4.0,18.190476190476204,414.8571428571431,2020-11-21 +1523,15811.0,4.0,17.7857142857143,464.14285714285745,2020-11-21 +1522,15800.5,4.0,17.500000000000014,422.52380952380986,2020-11-21 +1534,15902.5,4.0,20.857142857142872,363.38095238095264,2020-11-21 +1521,15790.5,4.0,17.690476190476204,424.714285714286,2020-11-21 +1519,15768.7,4.0,17.547619047619058,438.5238095238098,2020-11-21 +1518,15758.6,4.0,17.92857142857144,423.8095238095241,2020-11-21 +1517,15747.8,4.0,18.42857142857144,408.8095238095241,2020-11-21 +1516,15737.2,4.0,18.61904761904763,399.2380952380955,2020-11-21 +1515,15726.6,4.0,18.833333333333346,398.714285714286,2020-11-21 +1514,15717.2,4.0,18.547619047619058,404.42857142857173,2020-11-21 +1513,15706.9,4.0,18.35714285714287,403.38095238095264,2020-11-21 +1512,15696.6,4.0,18.16666666666668,403.5714285714288,2020-11-21 +1511,15686.7,4.0,18.404761904761916,415.8571428571431,2020-11-21 +1510,15676.0,4.0,18.47619047619049,420.4761904761907,2020-11-21 +1509,15665.9,4.0,18.523809523809536,423.61904761904793,2020-11-21 +1508,15655.6,4.0,18.2857142857143,433.66666666666697,2020-11-21 +1520,15779.2,4.0,17.547619047619058,428.09523809523836,2020-11-21 +1565,16126.9,4.0,39.78571428571431,130.0952380952382,2020-11-21 +1535,15912.7,4.0,21.142857142857157,409.76190476190504,2020-11-21 +1537,15932.2,4.0,19.619047619047635,450.14285714285745,2020-11-21 +1563,16126.4,4.0,31.857142857142875,161.85714285714295,2020-11-21 +1562,16126.4,4.0,27.357142857142875,178.8095238095239,2020-11-21 +1561,16126.4,4.0,22.928571428571445,202.857142857143,2020-11-21 +1560,16126.4,4.0,22.428571428571445,219.52380952380966,2020-11-21 +1559,16126.4,4.0,21.428571428571445,204.33333333333348,2020-11-21 +1558,16126.3,4.0,21.000000000000014,221.80952380952394,2020-11-21 +1557,16110.6,4.0,19.142857142857153,288.28571428571445,2020-11-21 +1556,16110.6,4.0,18.97619047619049,362.8095238095241,2020-11-21 +1555,16110.6,4.0,18.500000000000014,433.47619047619077,2020-11-21 +1554,16100.7,4.0,19.09523809523811,467.00000000000034,2020-11-21 +1553,16090.6,4.0,19.35714285714287,444.66666666666697,2020-11-21 +1552,16081.1,4.0,19.35714285714287,433.1904761904765,2020-11-21 +1536,15922.4,4.0,19.761904761904777,451.90476190476227,2020-11-21 +1551,16071.3,4.0,19.16666666666668,428.2380952380955,2020-11-21 +1549,16051.2,4.0,19.52380952380954,429.9523809523812,2020-11-21 +1548,16041.5,4.0,19.333333333333343,438.2380952380955,2020-11-21 +1547,16031.5,4.0,19.452380952380963,448.9047619047622,2020-11-21 +1546,16021.0,4.0,19.40476190476192,441.0476190476194,2020-11-21 +1545,16010.9,4.0,19.452380952380963,438.14285714285745,2020-11-21 +1544,16001.0,4.0,19.547619047619058,435.5714285714289,2020-11-21 +1543,15991.5,4.0,19.523809523809536,415.8095238095241,2020-11-21 +1542,15981.7,4.0,19.16666666666668,408.4761904761907,2020-11-21 +1541,15971.8,4.0,19.2857142857143,416.0476190476193,2020-11-21 +1540,15962.2,4.0,19.35714285714287,424.95238095238125,2020-11-21 +1539,15951.8,4.0,19.642857142857153,441.8095238095241,2020-11-21 +1538,15941.8,4.0,19.66666666666668,455.66666666666697,2020-11-21 +1550,16062.1,4.0,19.380952380952394,427.76190476190504,2020-11-21 +907,9264.5,4.0,17.00000000000001,450.0476190476193,2020-11-21 +906,9253.5,4.0,17.00000000000001,457.9047619047622,2020-11-21 +1929,19697.4,4.0,20.380952380952394,480.52380952380986,2020-11-21 +1941,19813.7,4.0,21.119047619047635,431.9523809523812,2020-11-21 +1940,19803.9,4.0,21.071428571428587,439.3809523809527,2020-11-21 +1939,19794.4,4.0,20.90476190476192,446.8571428571431,2020-11-21 +1938,19784.7,4.0,20.73809523809525,446.61904761904793,2020-11-21 +1936,19765.3,4.0,21.09523809523811,455.9523809523813,2020-11-21 +1935,19755.8,4.0,21.071428571428584,453.66666666666697,2020-11-21 +1934,19746.6,4.0,20.97619047619049,455.80952380952414,2020-11-21 +1933,19736.5,4.0,20.761904761904773,457.714285714286,2020-11-21 +1942,19823.6,4.0,21.09523809523811,432.1904761904765,2020-11-21 +1932,19727.0,4.0,20.738095238095255,463.95238095238125,2020-11-21 +1930,19707.0,4.0,20.642857142857157,484.9523809523813,2020-11-21 +1928,19687.4,4.0,20.09523809523811,476.61904761904793,2020-11-21 +1927,19678.1,4.0,19.880952380952394,474.28571428571456,2020-11-21 +1926,19668.9,4.0,19.833333333333346,482.33333333333366,2020-11-21 +1925,19660.0,4.0,19.71428571428573,493.619047619048,2020-11-21 +1924,19650.8,4.0,19.452380952380967,523.2857142857147,2020-11-21 +1923,19641.6,4.0,19.40476190476192,535.2857142857147,2020-11-21 +1922,19631.8,4.0,19.2857142857143,519.6190476190479,2020-11-21 +1931,19716.7,4.0,20.738095238095255,471.95238095238125,2020-11-21 +1943,19832.7,4.0,20.7857142857143,434.2380952380955,2020-11-21 +1937,19774.8,4.0,20.7857142857143,447.5238095238098,2020-11-21 +1945,19851.8,4.0,20.523809523809536,444.95238095238125,2020-11-21 +1964,20020.6,4.0,22.428571428571445,435.28571428571456,2020-11-21 +1963,20020.6,4.0,22.357142857142875,476.0952380952384,2020-11-21 +1962,20011.0,4.0,22.33333333333335,446.00000000000034,2020-11-21 +1961,20001.5,4.0,22.309523809523824,447.42857142857173,2020-11-21 +1944,19842.0,4.0,20.66666666666668,444.0952380952384,2020-11-21 +1959,19984.1,4.0,22.928571428571445,466.66666666666697,2020-11-21 +1958,19974.3,4.0,23.000000000000014,494.4761904761908,2020-11-21 +1957,19965.0,4.0,22.547619047619065,509.9523809523813,2020-11-21 +1956,19955.5,4.0,21.833333333333346,506.666666666667,2020-11-21 +1955,19945.6,4.0,21.16666666666668,492.2857142857146,2020-11-21 +1960,19993.1,4.0,22.40476190476192,454.52380952380986,2020-11-21 +1953,19926.6,4.0,21.21428571428573,441.9523809523812,2020-11-21 +1952,19917.5,4.0,21.119047619047635,428.8095238095241,2020-11-21 +1951,19907.7,4.0,20.738095238095255,413.8095238095241,2020-11-21 +1950,19898.3,4.0,20.380952380952394,423.9523809523812,2020-11-21 +1949,19888.8,4.0,20.261904761904773,431.5714285714289,2020-11-21 +1948,19879.8,4.0,20.42857142857144,425.61904761904793,2020-11-21 +1947,19870.7,4.0,20.54761904761906,436.4285714285717,2020-11-21 +1946,19861.0,4.0,20.452380952380963,445.714285714286,2020-11-21 +1954,19935.8,4.0,20.952380952380963,462.4761904761908,2020-11-21 +695,7118.4,4.0,17.7857142857143,429.1904761904765,2020-11-23 +694,7108.2,4.0,17.85714285714287,429.3333333333336,2020-11-23 +693,7097.4,4.0,18.142857142857153,423.09523809523836,2020-11-23 +692,7086.6,4.0,18.16666666666668,418.0476190476193,2020-11-23 +691,7076.4,4.0,18.309523809523824,414.0952380952384,2020-11-23 +690,7066.1,4.0,18.261904761904773,426.47619047619077,2020-11-23 +686,7023.8,4.0,18.30952380952382,459.76190476190504,2020-11-23 +688,7044.1,4.0,18.35714285714287,453.61904761904793,2020-11-23 +687,7034.2,4.0,18.452380952380963,457.66666666666697,2020-11-23 +685,7013.1,4.0,18.142857142857153,452.9047619047622,2020-11-23 +696,7129.0,4.0,17.85714285714287,414.5238095238098,2020-11-23 +684,7002.8,4.0,18.071428571428584,454.3809523809527,2020-11-23 +689,7055.2,4.0,18.452380952380963,443.3809523809527,2020-11-23 +697,7139.6,4.0,17.642857142857153,405.28571428571456,2020-11-23 +1879,19242.4,4.0,18.16666666666668,418.0952380952384,2020-11-23 +699,7161.8,4.0,17.690476190476204,418.61904761904793,2020-11-23 +700,7172.0,4.0,17.73809523809525,422.8095238095241,2020-11-23 +701,7182.4,4.0,17.92857142857144,438.0952380952384,2020-11-23 +702,7193.3,4.0,18.214285714285726,445.714285714286,2020-11-23 +703,7203.4,4.0,17.952380952380963,444.714285714286,2020-11-23 +704,7214.4,4.0,18.000000000000014,440.7619047619051,2020-11-23 +705,7225.7,4.0,18.000000000000014,444.66666666666697,2020-11-23 +706,7236.0,4.0,18.000000000000014,429.714285714286,2020-11-23 +707,7246.4,4.0,18.000000000000014,434.0952380952384,2020-11-23 +708,7257.2,4.0,18.000000000000014,469.9047619047622,2020-11-23 +709,7268.1,4.0,18.000000000000014,428.2380952380955,2020-11-23 +710,7278.4,4.0,18.000000000000014,344.6190476190478,2020-11-23 +711,7289.3,4.0,18.000000000000014,248.19047619047637,2020-11-23 +683,6992.4,4.0,18.30952380952382,450.8095238095241,2020-11-23 +698,7149.6,4.0,17.571428571428584,407.66666666666697,2020-11-23 +682,6981.4,4.0,18.523809523809536,434.95238095238125,2020-11-23 +660,6750.0,4.0,18.547619047619058,491.9523809523813,2020-11-23 +680,6960.9,4.0,18.523809523809536,415.8571428571431,2020-11-23 +652,6662.0,4.0,19.023809523809536,471.66666666666697,2020-11-23 +653,6672.4,4.0,18.90476190476192,477.0952380952384,2020-11-23 +654,6684.3,4.0,18.523809523809536,499.3333333333337,2020-11-23 +655,6695.2,4.0,18.30952380952382,494.19047619047655,2020-11-23 +656,6706.0,4.0,18.261904761904773,490.9523809523813,2020-11-23 +657,6717.1,4.0,18.261904761904773,488.0952380952384,2020-11-23 +658,6727.9,4.0,18.142857142857153,489.1904761904765,2020-11-23 +659,6738.7,4.0,18.23809523809525,490.0476190476194,2020-11-23 +712,7289.3,4.0,18.761904761904773,157.90476190476198,2020-11-23 +661,6760.0,4.0,18.85714285714287,478.2857142857146,2020-11-23 +662,6770.1,4.0,18.952380952380967,464.0476190476194,2020-11-23 +663,6780.4,4.0,18.833333333333346,447.6190476190479,2020-11-23 +664,6791.0,4.0,18.452380952380963,447.52380952380986,2020-11-23 +681,6971.1,4.0,18.452380952380963,407.38095238095264,2020-11-23 +665,6801.4,4.0,18.238095238095248,449.76190476190504,2020-11-23 +667,6823.2,4.0,18.404761904761916,454.28571428571456,2020-11-23 +668,6833.8,4.0,18.380952380952394,448.714285714286,2020-11-23 +669,6844.3,4.0,18.16666666666668,443.9047619047622,2020-11-23 +670,6855.5,4.0,18.023809523809536,446.14285714285745,2020-11-23 +671,6866.5,4.0,17.90476190476192,441.0476190476193,2020-11-23 +672,6877.3,4.0,18.071428571428584,429.14285714285745,2020-11-23 +673,6887.6,4.0,18.09523809523811,427.8095238095241,2020-11-23 +674,6898.0,4.0,18.23809523809525,431.1904761904765,2020-11-23 +675,6908.9,4.0,18.190476190476204,433.28571428571456,2020-11-23 +676,6918.8,4.0,18.42857142857144,470.42857142857173,2020-11-23 +677,6929.4,4.0,18.261904761904773,475.80952380952414,2020-11-23 +678,6939.7,4.0,18.238095238095248,453.5714285714289,2020-11-23 +679,6950.6,4.0,18.30952380952382,428.90476190476215,2020-11-23 +666,6812.1,4.0,18.404761904761916,452.57142857142884,2020-11-23 +713,7289.3,4.0,16.238095238095248,125.38095238095245,2020-11-23 +735,7446.7,4.0,18.642857142857153,438.09523809523836,2020-11-23 +715,7304.7,4.0,16.833333333333343,169.4761904761906,2020-11-23 +748,7588.0,4.0,18.16666666666668,470.3333333333336,2020-11-23 +749,7599.6,4.0,17.92857142857144,467.61904761904793,2020-11-23 +750,7611.1,4.0,17.80952380952382,471.2857142857146,2020-11-23 +751,7621.9,4.0,17.90476190476192,473.714285714286,2020-11-23 +752,7633.0,4.0,17.880952380952394,477.61904761904793,2020-11-23 +753,7644.3,4.0,17.66666666666668,475.8571428571432,2020-11-23 +754,7655.8,4.0,17.47619047619049,478.7619047619051,2020-11-23 +755,7666.9,4.0,17.523809523809533,473.3809523809527,2020-11-23 +756,7678.1,4.0,17.642857142857153,470.4761904761908,2020-11-23 +757,7689.4,4.0,17.61904761904763,471.80952380952414,2020-11-23 +758,7700.5,4.0,17.761904761904773,471.7619047619051,2020-11-23 +759,7711.8,4.0,17.547619047619058,435.714285714286,2020-11-23 +760,7723.0,4.0,17.523809523809536,422.1904761904765,2020-11-23 +747,7576.3,4.0,18.42857142857144,465.47619047619077,2020-11-23 +761,7734.0,4.0,17.90476190476192,423.714285714286,2020-11-23 +763,7755.3,4.0,18.071428571428584,438.0476190476194,2020-11-23 +764,7765.4,4.0,18.023809523809536,456.09523809523836,2020-11-23 +765,7776.8,4.0,17.80952380952382,446.0952380952384,2020-11-23 +766,7787.8,4.0,17.85714285714287,442.52380952380986,2020-11-23 +767,7798.1,4.0,18.071428571428584,444.47619047619077,2020-11-23 +768,7808.1,4.0,18.023809523809536,428.42857142857173,2020-11-23 +769,7818.8,4.0,18.190476190476204,423.3333333333336,2020-11-23 +770,7828.9,4.0,18.142857142857153,431.0952380952384,2020-11-23 +771,7839.4,4.0,18.09523809523811,442.0476190476194,2020-11-23 +772,7849.7,4.0,18.047619047619058,444.714285714286,2020-11-23 +773,7860.5,4.0,17.880952380952394,440.5714285714289,2020-11-23 +774,7871.0,4.0,17.642857142857153,419.6190476190479,2020-11-23 +775,7882.1,4.0,17.547619047619058,407.66666666666697,2020-11-23 +762,7744.4,4.0,18.00000000000001,422.14285714285745,2020-11-23 +714,7289.3,4.0,16.404761904761912,157.57142857142867,2020-11-23 +746,7566.1,4.0,18.71428571428573,464.9523809523813,2020-11-23 +744,7545.1,4.0,18.2857142857143,486.0952380952384,2020-11-23 +716,7305.1,4.0,19.33333333333335,182.23809523809535,2020-11-23 +717,7305.3,4.0,21.857142857142872,198.14285714285728,2020-11-23 +718,7306.5,4.0,22.7857142857143,208.57142857142873,2020-11-23 +719,7307.2,4.0,23.47619047619049,193.76190476190487,2020-11-23 +720,7308.1,4.0,27.928571428571445,132.57142857142867,2020-11-23 +721,7310.0,4.0,26.738095238095255,137.00000000000009,2020-11-23 +722,7313.4,4.0,24.595238095238113,191.09523809523822,2020-11-23 +723,7326.8,4.0,20.71428571428573,289.85714285714306,2020-11-23 +724,7333.4,4.0,15.547619047619058,386.8571428571431,2020-11-23 +725,7342.8,4.0,15.595238095238106,436.714285714286,2020-11-23 +726,7353.2,4.0,18.35714285714287,426.8095238095241,2020-11-23 +727,7363.5,4.0,18.333333333333346,439.9047619047622,2020-11-23 +728,7373.8,4.0,18.404761904761916,453.47619047619077,2020-11-23 +745,7556.3,4.0,18.59523809523811,471.71428571428606,2020-11-23 +729,7384.4,4.0,18.59523809523811,459.95238095238125,2020-11-23 +731,7405.1,4.0,18.452380952380963,452.52380952380986,2020-11-23 +732,7415.8,4.0,18.571428571428584,447.2380952380955,2020-11-23 +733,7426.2,4.0,18.642857142857153,432.95238095238125,2020-11-23 +734,7435.9,4.0,18.66666666666668,431.00000000000034,2020-11-23 +651,6652.0,4.0,18.880952380952394,472.33333333333366,2020-11-23 +736,7457.4,4.0,18.571428571428584,454.0952380952384,2020-11-23 +737,7468.2,4.0,18.50000000000001,473.666666666667,2020-11-23 +738,7478.8,4.0,18.47619047619049,494.38095238095275,2020-11-23 +739,7490.0,4.0,18.333333333333346,501.1904761904765,2020-11-23 +740,7501.6,4.0,18.16666666666668,512.4761904761908,2020-11-23 +741,7512.4,4.0,17.97619047619049,520.6190476190479,2020-11-23 +742,7523.6,4.0,17.97619047619049,514.0000000000003,2020-11-23 +743,7534.3,4.0,18.16666666666668,502.4285714285718,2020-11-23 +730,7394.8,4.0,18.50000000000001,462.4285714285718,2020-11-23 +650,6641.4,4.0,18.690476190476204,464.47619047619077,2020-11-23 +628,6404.3,4.0,18.90476190476192,449.3809523809527,2020-11-23 +648,6619.9,4.0,18.23809523809525,476.61904761904793,2020-11-23 +555,5617.3,4.0,18.047619047619058,432.90476190476215,2020-11-23 +556,5627.9,4.0,18.023809523809533,427.28571428571456,2020-11-23 +557,5638.6,4.0,17.761904761904773,432.9047619047622,2020-11-23 +558,5649.1,4.0,17.690476190476204,445.714285714286,2020-11-23 +559,5660.5,4.0,17.547619047619058,453.5714285714289,2020-11-23 +560,5671.5,4.0,17.547619047619058,457.714285714286,2020-11-23 +561,5682.7,4.0,17.6904761904762,451.95238095238125,2020-11-23 +562,5693.6,4.0,17.97619047619049,464.95238095238125,2020-11-23 +563,5704.3,4.0,18.142857142857153,466.8095238095241,2020-11-23 +564,5715.0,4.0,18.190476190476204,460.0952380952384,2020-11-23 +565,5725.8,4.0,18.023809523809536,455.8095238095241,2020-11-23 +566,5736.5,4.0,18.023809523809536,450.66666666666697,2020-11-23 +567,5747.3,4.0,18.09523809523811,444.3809523809527,2020-11-23 +554,5606.7,4.0,18.047619047619058,448.66666666666697,2020-11-23 +568,5758.3,4.0,18.190476190476204,468.8095238095241,2020-11-23 +570,5780.0,4.0,18.500000000000014,465.66666666666697,2020-11-23 +571,5789.0,4.0,18.333333333333343,467.90476190476227,2020-11-23 +572,5800.1,4.0,18.2857142857143,452.80952380952414,2020-11-23 +573,5811.9,4.0,17.92857142857144,442.1904761904765,2020-11-23 +574,5823.6,4.0,17.738095238095248,451.3809523809527,2020-11-23 +575,5834.5,4.0,17.714285714285726,443.61904761904793,2020-11-23 +576,5845.8,4.0,17.952380952380963,440.0952380952384,2020-11-23 +577,5856.1,4.0,17.85714285714287,442.90476190476215,2020-11-23 +578,5867.7,4.0,17.904761904761916,451.66666666666697,2020-11-23 +579,5878.9,4.0,17.7857142857143,458.76190476190504,2020-11-23 +580,5889.9,4.0,17.928571428571438,464.3333333333336,2020-11-23 +581,5900.3,4.0,18.11904761904763,459.47619047619077,2020-11-23 +582,5911.7,4.0,18.142857142857153,450.0000000000003,2020-11-23 +569,5770.0,4.0,18.30952380952382,473.33333333333366,2020-11-23 +583,5922.4,4.0,17.952380952380963,473.9523809523813,2020-11-23 +553,5595.6,4.0,17.761904761904773,459.95238095238125,2020-11-23 +551,5573.9,4.0,17.50000000000001,457.4761904761908,2020-11-23 +523,5261.7,4.0,17.80952380952382,456.8095238095241,2020-11-23 +524,5273.4,4.0,17.714285714285722,447.8095238095241,2020-11-23 +525,5284.6,4.0,17.523809523809533,433.14285714285745,2020-11-23 +526,5295.3,4.0,17.452380952380963,434.3333333333336,2020-11-23 +527,5306.5,4.0,17.50000000000001,449.2380952380956,2020-11-23 +528,5317.5,4.0,17.547619047619058,468.0952380952384,2020-11-23 +529,5328.5,4.0,17.47619047619049,477.714285714286,2020-11-23 +530,5340.0,4.0,17.333333333333346,468.19047619047655,2020-11-23 +531,5352.4,4.0,17.071428571428584,442.09523809523836,2020-11-23 +532,5364.1,4.0,17.023809523809533,436.8095238095241,2020-11-23 +533,5375.3,4.0,17.35714285714287,429.66666666666697,2020-11-23 +534,5386.6,4.0,17.85714285714287,430.0476190476194,2020-11-23 +535,5397.1,4.0,18.09523809523811,436.76190476190504,2020-11-23 +552,5584.8,4.0,17.66666666666668,462.0000000000003,2020-11-23 +536,5408.6,4.0,18.071428571428584,438.28571428571456,2020-11-23 +538,5430.9,4.0,17.47619047619049,449.9523809523812,2020-11-23 +539,5441.9,4.0,17.404761904761916,453.714285714286,2020-11-23 +540,5453.2,4.0,17.571428571428584,456.8571428571432,2020-11-23 +541,5463.2,4.0,17.642857142857153,457.00000000000034,2020-11-23 +542,5475.1,4.0,17.571428571428584,470.61904761904793,2020-11-23 +543,5486.3,4.0,17.738095238095248,471.76190476190504,2020-11-23 +544,5497.5,4.0,17.880952380952394,469.71428571428606,2020-11-23 +545,5508.0,4.0,17.952380952380963,464.0952380952384,2020-11-23 +546,5518.8,4.0,18.16666666666668,451.8095238095241,2020-11-23 +547,5530.0,4.0,18.047619047619058,437.714285714286,2020-11-23 +548,5541.1,4.0,17.85714285714287,441.4761904761907,2020-11-23 +549,5551.9,4.0,17.80952380952382,445.28571428571456,2020-11-23 +550,5562.8,4.0,17.690476190476204,446.9047619047622,2020-11-23 +537,5419.5,4.0,17.738095238095248,433.95238095238125,2020-11-23 +584,5933.6,4.0,17.97619047619049,499.8571428571432,2020-11-23 +585,5944.8,4.0,17.90476190476192,503.80952380952414,2020-11-23 +586,5955.1,4.0,18.11904761904763,490.80952380952414,2020-11-23 +620,6319.2,4.0,18.404761904761916,432.714285714286,2020-11-23 +621,6329.7,4.0,18.642857142857153,430.42857142857173,2020-11-23 +622,6340.2,4.0,18.47619047619049,440.0476190476194,2020-11-23 +623,6350.8,4.0,18.2857142857143,450.0476190476193,2020-11-23 +624,6362.1,4.0,18.142857142857153,460.14285714285745,2020-11-23 +625,6372.8,4.0,18.214285714285726,474.4761904761908,2020-11-23 +626,6383.5,4.0,18.50000000000001,474.7619047619051,2020-11-23 +627,6393.8,4.0,18.7857142857143,469.8095238095241,2020-11-23 +776,7892.9,4.0,17.59523809523811,405.2380952380955,2020-11-23 +629,6415.5,4.0,18.690476190476204,433.4761904761907,2020-11-23 +630,6425.8,4.0,18.30952380952382,422.0952380952384,2020-11-23 +631,6437.1,4.0,18.142857142857153,426.76190476190504,2020-11-23 +632,6447.6,4.0,18.238095238095248,435.14285714285745,2020-11-23 +619,6308.8,4.0,18.190476190476204,444.61904761904793,2020-11-23 +633,6458.2,4.0,18.261904761904773,453.14285714285745,2020-11-23 +635,6479.7,4.0,18.214285714285726,468.33333333333366,2020-11-23 +636,6490.3,4.0,18.023809523809536,472.8095238095241,2020-11-23 +637,6501.3,4.0,17.952380952380963,472.4285714285718,2020-11-23 +638,6512.1,4.0,17.952380952380963,473.2857142857146,2020-11-23 +639,6523.1,4.0,17.97619047619049,471.9523809523813,2020-11-23 +640,6534.2,4.0,18.190476190476204,464.714285714286,2020-11-23 +641,6544.9,4.0,18.50000000000001,461.33333333333366,2020-11-23 +642,6555.6,4.0,18.85714285714287,451.9047619047622,2020-11-23 +643,6566.0,4.0,18.952380952380963,448.5714285714289,2020-11-23 +644,6576.5,4.0,19.000000000000014,449.8571428571431,2020-11-23 +645,6587.2,4.0,18.738095238095248,461.9047619047622,2020-11-23 +646,6598.1,4.0,18.59523809523811,464.47619047619077,2020-11-23 +647,6608.8,4.0,18.35714285714287,466.714285714286,2020-11-23 +634,6469.2,4.0,18.30952380952382,456.8571428571431,2020-11-23 +618,6297.7,4.0,18.047619047619058,458.90476190476227,2020-11-23 +617,6287.2,4.0,17.85714285714287,461.3809523809527,2020-11-23 +616,6275.9,4.0,17.66666666666668,470.66666666666697,2020-11-23 +587,5965.5,4.0,18.404761904761916,460.0952380952384,2020-11-23 +588,5976.1,4.0,18.42857142857144,429.2380952380955,2020-11-23 +589,5986.6,4.0,18.190476190476204,442.14285714285745,2020-11-23 +590,5997.3,4.0,18.11904761904763,440.714285714286,2020-11-23 +591,6008.3,4.0,17.833333333333346,439.66666666666697,2020-11-23 +592,6019.0,4.0,17.595238095238106,438.47619047619077,2020-11-23 +593,6030.2,4.0,17.619047619047628,431.42857142857173,2020-11-23 +594,6041.4,4.0,17.7857142857143,427.66666666666697,2020-11-23 +595,6051.8,4.0,17.714285714285726,433.714285714286,2020-11-23 +596,6062.2,4.0,17.738095238095248,447.61904761904793,2020-11-23 +597,6073.5,4.0,17.97619047619049,474.2380952380956,2020-11-23 +598,6084.5,4.0,18.16666666666668,483.80952380952414,2020-11-23 +599,6094.4,4.0,18.47619047619049,473.3809523809527,2020-11-23 +600,6105.2,4.0,18.642857142857157,448.42857142857173,2020-11-23 +601,6115.5,4.0,18.452380952380963,414.4761904761907,2020-11-23 +602,6126.8,4.0,18.071428571428584,400.6666666666669,2020-11-23 +603,6137.5,4.0,18.047619047619058,413.714285714286,2020-11-23 +604,6148.7,4.0,18.16666666666668,426.3333333333336,2020-11-23 +605,6159.1,4.0,18.214285714285726,448.52380952380986,2020-11-23 +606,6169.7,4.0,18.452380952380963,460.0952380952384,2020-11-23 +607,6180.5,4.0,18.547619047619058,449.5714285714289,2020-11-23 +608,6191.0,4.0,18.2857142857143,431.3333333333336,2020-11-23 +609,6201.9,4.0,18.142857142857153,427.0476190476194,2020-11-23 +610,6212.6,4.0,17.904761904761916,419.57142857142884,2020-11-23 +611,6223.3,4.0,17.66666666666668,424.9047619047622,2020-11-23 +612,6234.0,4.0,17.738095238095248,438.0476190476193,2020-11-23 +613,6244.2,4.0,17.690476190476204,448.714285714286,2020-11-23 +614,6255.1,4.0,17.619047619047628,455.1904761904765,2020-11-23 +615,6265.8,4.0,17.7857142857143,468.0476190476194,2020-11-23 +649,6630.7,4.0,18.1904761904762,470.38095238095275,2020-11-23 +777,7903.6,4.0,17.619047619047628,419.0476190476193,2020-11-23 +799,8119.6,4.0,18.190476190476204,473.66666666666697,2020-11-23 +779,7924.7,4.0,17.97619047619049,501.8095238095242,2020-11-23 +941,9630.5,4.0,18.190476190476204,443.8571428571432,2020-11-23 +942,9640.6,4.0,18.190476190476204,456.9523809523813,2020-11-23 +943,9651.1,4.0,18.11904761904763,449.66666666666697,2020-11-23 +944,9661.9,4.0,17.92857142857144,450.5714285714289,2020-11-23 +945,9672.1,4.0,17.785714285714295,450.8095238095241,2020-11-23 +946,9682.9,4.0,17.738095238095248,465.28571428571456,2020-11-23 +947,9693.2,4.0,17.714285714285722,471.0476190476193,2020-11-23 +948,9704.7,4.0,17.59523809523811,469.5714285714289,2020-11-23 +949,9715.7,4.0,17.428571428571438,461.5714285714289,2020-11-23 +950,9726.7,4.0,17.30952380952382,447.1904761904765,2020-11-23 +951,9737.5,4.0,17.071428571428584,435.42857142857173,2020-11-23 +952,9748.6,4.0,17.1904761904762,434.1428571428574,2020-11-23 +953,9759.5,4.0,17.190476190476204,439.8095238095241,2020-11-23 +940,9620.1,4.0,17.952380952380963,434.61904761904793,2020-11-23 +954,9769.9,4.0,17.285714285714295,451.5714285714289,2020-11-23 +956,9791.7,4.0,17.333333333333343,468.2380952380956,2020-11-23 +957,9802.5,4.0,17.214285714285726,461.52380952380986,2020-11-23 +958,9814.4,4.0,17.47619047619049,457.66666666666697,2020-11-23 +959,9824.5,4.0,17.595238095238106,456.47619047619077,2020-11-23 +960,9835.1,4.0,17.952380952380963,454.90476190476227,2020-11-23 +961,9845.0,4.0,18.500000000000014,458.95238095238125,2020-11-23 +962,9855.9,4.0,17.952380952380963,457.8571428571432,2020-11-23 +963,9866.8,4.0,17.85714285714287,450.0476190476194,2020-11-23 +964,9877.5,4.0,17.80952380952382,449.76190476190504,2020-11-23 +965,9888.3,4.0,17.690476190476204,449.95238095238125,2020-11-23 +966,9898.9,4.0,17.547619047619058,447.95238095238125,2020-11-23 +967,9909.7,4.0,17.642857142857153,450.80952380952414,2020-11-23 +968,9920.1,4.0,17.547619047619058,447.0000000000003,2020-11-23 +955,9780.9,4.0,17.66666666666668,465.95238095238125,2020-11-23 +969,9930.8,4.0,17.738095238095248,445.8571428571431,2020-11-23 +939,9610.5,4.0,17.571428571428584,424.66666666666697,2020-11-23 +937,9589.0,4.0,16.97619047619049,460.61904761904793,2020-11-23 +909,9286.5,4.0,16.97619047619049,450.28571428571456,2020-11-23 +910,9297.6,4.0,16.880952380952394,446.8571428571432,2020-11-23 +911,9308.9,4.0,16.642857142857153,444.2380952380955,2020-11-23 +912,9320.3,4.0,16.30952380952382,444.9047619047622,2020-11-23 +913,9331.3,4.0,16.142857142857153,442.76190476190504,2020-11-23 +914,9342.7,4.0,16.142857142857153,429.2380952380955,2020-11-23 +915,9353.5,4.0,16.35714285714287,427.57142857142884,2020-11-23 +916,9364.8,4.0,16.523809523809533,420.52380952380986,2020-11-23 +917,9375.6,4.0,16.80952380952382,425.90476190476215,2020-11-23 +918,9386.0,4.0,16.952380952380963,445.66666666666697,2020-11-23 +919,9396.2,4.0,17.071428571428584,464.42857142857173,2020-11-23 +920,9407.0,4.0,16.97619047619049,472.2380952380955,2020-11-23 +921,9417.6,4.0,17.214285714285726,478.14285714285745,2020-11-23 +938,9599.2,4.0,17.142857142857153,441.28571428571456,2020-11-23 +922,9428.8,4.0,17.261904761904773,476.5238095238098,2020-11-23 +924,9449.8,4.0,17.61904761904763,471.2380952380956,2020-11-23 +925,9460.3,4.0,17.61904761904763,469.33333333333366,2020-11-23 +926,9471.0,4.0,17.404761904761916,471.7619047619051,2020-11-23 +927,9481.9,4.0,17.571428571428584,469.4761904761908,2020-11-23 +928,9492.7,4.0,17.642857142857153,464.61904761904793,2020-11-23 +929,9503.5,4.0,17.66666666666668,456.2380952380955,2020-11-23 +930,9514.4,4.0,17.6904761904762,449.61904761904793,2020-11-23 +931,9525.5,4.0,17.547619047619058,446.28571428571456,2020-11-23 +932,9535.8,4.0,17.2857142857143,447.57142857142884,2020-11-23 +933,9547.3,4.0,17.16666666666668,448.66666666666697,2020-11-23 +934,9558.3,4.0,17.023809523809536,460.0952380952384,2020-11-23 +935,9568.5,4.0,16.952380952380963,467.2380952380955,2020-11-23 +936,9578.6,4.0,16.952380952380963,473.14285714285745,2020-11-23 +923,9439.3,4.0,17.500000000000014,469.61904761904793,2020-11-23 +970,9941.1,4.0,17.7857142857143,457.9047619047622,2020-11-23 +971,9952.6,4.0,17.7857142857143,473.2857142857146,2020-11-23 +972,9963.6,4.0,17.523809523809533,488.9523809523813,2020-11-23 +1006,10336.5,4.0,17.214285714285726,477.2380952380955,2020-11-23 +1007,10346.9,4.0,17.261904761904773,482.2380952380956,2020-11-23 +1008,10356.6,4.0,17.047619047619058,477.47619047619077,2020-11-23 +1009,10367.0,4.0,17.047619047619058,482.0000000000003,2020-11-23 +1010,10377.4,4.0,16.880952380952394,478.9523809523813,2020-11-23 +1011,10387.9,4.0,16.642857142857153,472.8571428571432,2020-11-23 +1012,10398.4,4.0,16.547619047619058,479.7619047619051,2020-11-23 +1013,10407.9,4.0,16.59523809523811,483.33333333333366,2020-11-23 +1014,10418.5,4.0,16.61904761904763,485.28571428571456,2020-11-23 +1015,10429.3,4.0,16.738095238095248,484.0952380952384,2020-11-23 +1016,10439.7,4.0,17.071428571428584,479.2857142857146,2020-11-23 +1017,10450.2,4.0,17.40476190476192,472.0000000000003,2020-11-23 +1018,10460.5,4.0,17.47619047619049,470.0952380952384,2020-11-23 +1005,10326.0,4.0,17.16666666666668,474.38095238095275,2020-11-23 +1019,10470.5,4.0,17.404761904761916,463.8095238095241,2020-11-23 +1021,10491.8,4.0,17.071428571428584,470.38095238095275,2020-11-23 +1022,10501.9,4.0,17.142857142857153,475.714285714286,2020-11-23 +1023,10511.9,4.0,17.30952380952382,469.9047619047622,2020-11-23 +1024,10522.0,4.0,17.404761904761916,454.38095238095264,2020-11-23 +1025,10532.3,4.0,17.428571428571438,449.28571428571456,2020-11-23 +1026,10542.3,4.0,17.452380952380963,446.2380952380955,2020-11-23 +1027,10552.9,4.0,17.642857142857153,446.4285714285718,2020-11-23 +1028,10563.1,4.0,17.738095238095248,461.0952380952384,2020-11-23 +1029,10573.3,4.0,17.85714285714287,460.4761904761908,2020-11-23 +1030,10583.7,4.0,17.952380952380963,466.95238095238125,2020-11-23 +1031,10593.5,4.0,18.023809523809533,482.80952380952414,2020-11-23 +1032,10603.9,4.0,17.85714285714287,483.7142857142861,2020-11-23 +1033,10614.5,4.0,17.880952380952394,483.714285714286,2020-11-23 +1020,10481.2,4.0,17.35714285714287,471.71428571428606,2020-11-23 +1004,10315.8,4.0,17.071428571428584,475.2857142857146,2020-11-23 +1003,10305.0,4.0,16.92857142857144,473.0000000000003,2020-11-23 +1002,10294.5,4.0,16.785714285714295,486.38095238095275,2020-11-23 +973,9974.7,4.0,17.428571428571438,493.66666666666697,2020-11-23 +974,9986.1,4.0,17.2857142857143,494.714285714286,2020-11-23 +975,9997.4,4.0,17.404761904761916,495.7619047619051,2020-11-23 +976,10009.0,4.0,17.35714285714287,493.666666666667,2020-11-23 +977,10019.5,4.0,17.404761904761916,497.38095238095275,2020-11-23 +978,10031.1,4.0,17.380952380952394,498.71428571428606,2020-11-23 +979,10042.1,4.0,17.333333333333346,494.714285714286,2020-11-23 +980,10053.5,4.0,17.261904761904773,494.33333333333366,2020-11-23 +981,10064.5,4.0,17.214285714285726,495.2857142857146,2020-11-23 +982,10076.2,4.0,17.023809523809536,488.00000000000034,2020-11-23 +983,10086.9,4.0,16.904761904761916,484.9523809523813,2020-11-23 +984,10099.0,4.0,17.071428571428584,485.7619047619051,2020-11-23 +985,10110.0,4.0,17.047619047619058,484.4761904761908,2020-11-23 +986,10121.1,4.0,17.30952380952382,478.1904761904765,2020-11-23 +987,10132.7,4.0,17.428571428571438,471.52380952380986,2020-11-23 +988,10143.4,4.0,17.35714285714287,468.5714285714289,2020-11-23 +989,10154.7,4.0,17.30952380952382,465.0952380952384,2020-11-23 +990,10165.1,4.0,17.2857142857143,468.76190476190504,2020-11-23 +991,10176.3,4.0,17.023809523809533,458.14285714285745,2020-11-23 +992,10187.5,4.0,17.214285714285726,445.8095238095241,2020-11-23 +993,10198.6,4.0,17.214285714285726,427.5714285714289,2020-11-23 +994,10209.6,4.0,17.16666666666668,428.76190476190504,2020-11-23 +995,10220.8,4.0,17.11904761904763,435.8095238095241,2020-11-23 +996,10230.8,4.0,16.85714285714287,441.714285714286,2020-11-23 +997,10242.2,4.0,16.642857142857153,439.28571428571456,2020-11-23 +998,10252.9,4.0,16.6904761904762,454.3333333333336,2020-11-23 +999,10262.8,4.0,16.833333333333343,465.66666666666697,2020-11-23 +1000,10272.7,4.0,16.904761904761916,484.9047619047622,2020-11-23 +1001,10283.3,4.0,16.904761904761916,496.04761904761943,2020-11-23 +908,9274.9,4.0,17.047619047619058,444.0000000000003,2020-11-23 +778,7914.1,4.0,17.833333333333343,439.52380952380986,2020-11-23 +907,9264.5,4.0,17.00000000000001,450.0476190476193,2020-11-23 +905,9242.9,4.0,17.00000000000001,460.0476190476194,2020-11-23 +812,8259.4,4.0,17.61904761904763,389.38095238095264,2020-11-23 +813,8270.7,4.0,17.30952380952382,367.38095238095264,2020-11-23 +814,8281.9,4.0,17.238095238095248,383.66666666666697,2020-11-23 +815,8292.4,4.0,17.333333333333346,425.1428571428574,2020-11-23 +816,8303.0,4.0,17.30952380952382,471.14285714285745,2020-11-23 +817,8313.8,4.0,17.214285714285722,459.8571428571431,2020-11-23 +818,8324.7,4.0,17.261904761904773,436.9047619047622,2020-11-23 +819,8335.1,4.0,17.404761904761916,417.4285714285717,2020-11-23 +820,8345.8,4.0,17.428571428571438,429.28571428571456,2020-11-23 +821,8356.8,4.0,17.595238095238106,448.5238095238098,2020-11-23 +822,8367.3,4.0,17.47619047619049,473.2857142857146,2020-11-23 +823,8378.0,4.0,17.2857142857143,472.42857142857173,2020-11-23 +824,8388.8,4.0,17.190476190476204,475.2380952380956,2020-11-23 +811,8248.3,4.0,18.11904761904763,415.0000000000002,2020-11-23 +825,8399.6,4.0,17.09523809523811,472.61904761904793,2020-11-23 +827,8421.6,4.0,17.7857142857143,437.28571428571456,2020-11-23 +828,8431.8,4.0,18.095238095238106,429.28571428571456,2020-11-23 +829,8442.6,4.0,18.00000000000001,461.00000000000034,2020-11-23 +830,8452.8,4.0,18.095238095238106,493.2380952380956,2020-11-23 +831,8463.5,4.0,17.904761904761916,496.4285714285718,2020-11-23 +832,8474.3,4.0,17.80952380952382,485.0000000000003,2020-11-23 +833,8484.9,4.0,17.761904761904773,453.52380952380986,2020-11-23 +834,8495.2,4.0,17.85714285714287,428.9523809523812,2020-11-23 +835,8506.1,4.0,17.714285714285726,413.95238095238125,2020-11-23 +836,8516.8,4.0,17.761904761904773,416.9523809523812,2020-11-23 +837,8527.4,4.0,17.738095238095248,422.3333333333336,2020-11-23 +838,8537.7,4.0,17.642857142857153,436.5714285714289,2020-11-23 +839,8548.5,4.0,17.85714285714287,459.61904761904793,2020-11-23 +826,8410.9,4.0,17.380952380952394,466.0476190476194,2020-11-23 +840,8559.3,4.0,18.16666666666668,477.1428571428575,2020-11-23 +810,8237.8,4.0,18.500000000000014,431.8571428571432,2020-11-23 +808,8216.6,4.0,18.190476190476204,465.14285714285745,2020-11-23 +780,7924.7,4.0,18.047619047619058,420.80952380952414,2020-11-23 +781,7924.7,4.0,17.90476190476192,314.6190476190478,2020-11-23 +782,7924.7,4.0,18.142857142857153,225.52380952380963,2020-11-23 +783,7924.7,4.0,18.47619047619049,189.90476190476204,2020-11-23 +784,7962.5,4.0,18.142857142857153,258.14285714285734,2020-11-23 +785,7970.8,4.0,17.66666666666668,376.04761904761926,2020-11-23 +786,7980.8,4.0,17.047619047619058,358.71428571428595,2020-11-23 +787,7991.7,4.0,16.714285714285726,374.19047619047643,2020-11-23 +788,8002.4,4.0,17.142857142857153,397.90476190476215,2020-11-23 +789,8012.6,4.0,17.738095238095248,441.66666666666697,2020-11-23 +790,8023.0,4.0,17.738095238095248,505.85714285714323,2020-11-23 +791,8033.8,4.0,17.7857142857143,493.38095238095275,2020-11-23 +792,8044.8,4.0,17.738095238095248,451.00000000000034,2020-11-23 +809,8227.5,4.0,18.59523809523811,442.00000000000034,2020-11-23 +793,8055.4,4.0,17.761904761904773,440.28571428571456,2020-11-23 +795,8076.8,4.0,17.619047619047628,436.66666666666697,2020-11-23 +796,8087.4,4.0,17.61904761904763,451.66666666666697,2020-11-23 +797,8098.3,4.0,17.761904761904773,435.8571428571431,2020-11-23 +798,8108.9,4.0,17.952380952380963,446.6190476190479,2020-11-23 +522,5251.1,4.0,17.761904761904773,462.38095238095275,2020-11-23 +800,8130.1,4.0,18.30952380952382,486.0476190476194,2020-11-23 +801,8140.3,4.0,18.047619047619058,478.9047619047622,2020-11-23 +802,8151.4,4.0,18.047619047619058,459.38095238095264,2020-11-23 +803,8161.9,4.0,17.92857142857144,426.1904761904765,2020-11-23 +804,8172.5,4.0,17.523809523809536,435.3333333333336,2020-11-23 +805,8184.0,4.0,17.47619047619049,465.80952380952414,2020-11-23 +806,8194.9,4.0,17.523809523809536,488.47619047619077,2020-11-23 +807,8206.2,4.0,17.61904761904763,489.0476190476194,2020-11-23 +794,8065.4,4.0,17.80952380952382,429.8571428571431,2020-11-23 +841,8569.4,4.0,18.09523809523811,447.714285714286,2020-11-23 +842,8579.7,4.0,18.071428571428584,428.0000000000003,2020-11-23 +843,8589.9,4.0,18.09523809523811,424.6190476190479,2020-11-23 +877,8947.8,4.0,18.214285714285726,423.9523809523812,2020-11-23 +878,8957.5,4.0,18.380952380952394,427.38095238095264,2020-11-23 +879,8968.6,4.0,18.333333333333343,443.9047619047622,2020-11-23 +880,8979.6,4.0,18.11904761904763,466.76190476190504,2020-11-23 +881,8990.7,4.0,17.738095238095248,481.1904761904765,2020-11-23 +882,9001.8,4.0,17.571428571428584,465.38095238095275,2020-11-23 +883,9012.8,4.0,17.66666666666668,413.714285714286,2020-11-23 +884,9023.5,4.0,17.738095238095248,389.04761904761926,2020-11-23 +885,9033.4,4.0,17.833333333333343,377.8571428571431,2020-11-23 +886,9043.7,4.0,17.833333333333346,402.38095238095264,2020-11-23 +887,9054.0,4.0,17.61904761904763,424.47619047619077,2020-11-23 +888,9065.0,4.0,17.190476190476204,435.14285714285745,2020-11-23 +889,9075.9,4.0,17.09523809523811,442.2380952380955,2020-11-23 +876,8937.5,4.0,18.00000000000001,439.0952380952384,2020-11-23 +890,9086.9,4.0,17.333333333333346,453.4761904761908,2020-11-23 +892,9106.6,4.0,17.761904761904773,473.0000000000003,2020-11-23 +893,9117.1,4.0,17.85714285714287,468.0000000000003,2020-11-23 +894,9126.9,4.0,17.761904761904773,468.0000000000003,2020-11-23 +895,9138.0,4.0,17.761904761904773,472.71428571428606,2020-11-23 +896,9148.7,4.0,18.238095238095248,464.2857142857146,2020-11-23 +897,9159.2,4.0,18.333333333333343,457.0476190476194,2020-11-23 +898,9169.2,4.0,18.190476190476204,430.4285714285717,2020-11-23 +899,9179.9,4.0,17.85714285714287,412.57142857142884,2020-11-23 +900,9190.4,4.0,17.380952380952394,408.5714285714289,2020-11-23 +901,9200.8,4.0,17.071428571428584,407.66666666666697,2020-11-23 +902,9211.0,4.0,17.023809523809536,427.52380952380986,2020-11-23 +903,9221.7,4.0,16.952380952380963,450.38095238095275,2020-11-23 +904,9232.0,4.0,17.00000000000001,455.66666666666697,2020-11-23 +891,9096.5,4.0,17.571428571428584,457.14285714285745,2020-11-23 +875,8926.5,4.0,17.738095238095248,452.42857142857173,2020-11-23 +874,8915.7,4.0,17.85714285714287,464.0476190476194,2020-11-23 +873,8905.0,4.0,17.97619047619049,465.2857142857146,2020-11-23 +844,8599.8,4.0,18.00000000000001,434.714285714286,2020-11-23 +845,8610.5,4.0,17.7857142857143,460.66666666666697,2020-11-23 +846,8621.0,4.0,17.66666666666668,490.8571428571431,2020-11-23 +847,8631.5,4.0,17.523809523809536,477.9047619047622,2020-11-23 +848,8642.1,4.0,17.66666666666668,453.0476190476194,2020-11-23 +849,8652.8,4.0,17.66666666666668,424.8095238095241,2020-11-23 +850,8662.9,4.0,17.571428571428584,411.47619047619077,2020-11-23 +851,8673.3,4.0,17.42857142857144,418.3333333333336,2020-11-23 +852,8684.2,4.0,17.452380952380963,424.47619047619077,2020-11-23 +853,8694.0,4.0,17.547619047619058,433.47619047619077,2020-11-23 +854,8704.6,4.0,17.714285714285722,433.8095238095241,2020-11-23 +855,8715.1,4.0,17.738095238095248,439.14285714285745,2020-11-23 +856,8725.8,4.0,17.785714285714295,442.95238095238125,2020-11-23 +857,8736.4,4.0,17.97619047619049,449.5714285714289,2020-11-23 +858,8747.2,4.0,18.047619047619058,433.90476190476215,2020-11-23 +859,8757.3,4.0,18.000000000000014,432.0476190476193,2020-11-23 +860,8767.4,4.0,18.000000000000014,428.0476190476193,2020-11-23 +861,8778.1,4.0,17.952380952380963,442.2380952380955,2020-11-23 +862,8788.8,4.0,18.023809523809536,451.714285714286,2020-11-23 +863,8799.6,4.0,18.214285714285726,460.0000000000003,2020-11-23 +864,8809.8,4.0,18.30952380952382,436.0952380952384,2020-11-23 +865,8820.4,4.0,18.35714285714287,419.00000000000034,2020-11-23 +866,8830.7,4.0,18.238095238095248,408.8095238095241,2020-11-23 +867,8841.3,4.0,17.785714285714295,420.0000000000003,2020-11-23 +868,8852.2,4.0,17.428571428571438,420.8095238095241,2020-11-23 +869,8862.7,4.0,17.380952380952394,421.38095238095264,2020-11-23 +870,8873.8,4.0,17.47619047619049,414.714285714286,2020-11-23 +871,8884.0,4.0,17.761904761904773,421.09523809523836,2020-11-23 +872,8894.6,4.0,18.071428571428584,445.66666666666697,2020-11-23 +906,9253.5,4.0,17.00000000000001,457.9047619047622,2020-11-23 +521,5239.8,4.0,17.7857142857143,467.33333333333366,2020-11-23 +499,4991.2,4.0,17.738095238095248,459.8095238095241,2020-11-23 +519,5217.5,4.0,17.61904761904763,474.00000000000034,2020-11-23 +165,1480.6,4.0,18.50000000000001,310.1904761904764,2020-11-23 +166,1490.6,4.0,18.809523809523824,252.38095238095252,2020-11-23 +167,1501.0,4.0,19.071428571428584,230.38095238095255,2020-11-23 +168,1511.5,4.0,18.97619047619049,247.19047619047635,2020-11-23 +169,1521.8,4.0,18.952380952380963,253.0476190476192,2020-11-23 +170,1532.5,4.0,18.738095238095248,266.0476190476192,2020-11-23 +171,1542.4,4.0,18.547619047619058,261.66666666666686,2020-11-23 +172,1553.8,4.0,18.47619047619049,255.00000000000017,2020-11-23 +173,1564.8,4.0,18.404761904761916,286.2380952380954,2020-11-23 +174,1575.8,4.0,18.16666666666668,329.1904761904764,2020-11-23 +175,1587.6,4.0,18.2857142857143,389.0000000000003,2020-11-23 +176,1598.6,4.0,18.214285714285726,452.0476190476194,2020-11-23 +177,1610.2,4.0,17.952380952380963,472.714285714286,2020-11-23 +164,1470.0,4.0,18.190476190476204,370.71428571428595,2020-11-23 +178,1621.9,4.0,18.142857142857153,465.1904761904765,2020-11-23 +180,1645.3,4.0,18.071428571428584,430.57142857142884,2020-11-23 +181,1657.0,4.0,18.47619047619049,381.28571428571456,2020-11-23 +182,1668.2,4.0,18.880952380952394,315.4285714285717,2020-11-23 +183,1678.5,4.0,18.761904761904773,253.42857142857162,2020-11-23 +184,1689.4,4.0,19.047619047619058,216.33333333333348,2020-11-23 +185,1700.0,4.0,19.11904761904763,227.38095238095252,2020-11-23 +186,1709.8,4.0,19.142857142857153,239.57142857142875,2020-11-23 +187,1720.3,4.0,19.452380952380963,256.42857142857156,2020-11-23 +188,1730.3,4.0,19.571428571428584,250.7142857142859,2020-11-23 +189,1740.1,4.0,19.238095238095248,241.0476190476192,2020-11-23 +190,1750.7,4.0,19.30952380952382,230.95238095238113,2020-11-23 +191,1761.1,4.0,19.309523809523824,241.57142857142873,2020-11-23 +192,1771.0,4.0,19.2857142857143,203.857142857143,2020-11-23 +179,1634.2,4.0,18.142857142857153,467.90476190476227,2020-11-23 +193,1780.8,4.0,19.2857142857143,140.04761904761912,2020-11-23 +163,1459.2,4.0,17.92857142857144,422.28571428571456,2020-11-23 +161,1437.1,4.0,18.142857142857153,450.0476190476194,2020-11-23 +133,1137.6,4.0,18.73809523809525,477.5714285714289,2020-11-23 +134,1147.6,4.0,18.880952380952394,482.14285714285745,2020-11-23 +135,1158.4,4.0,18.880952380952394,491.2857142857146,2020-11-23 +136,1168.9,4.0,18.738095238095248,494.71428571428606,2020-11-23 +137,1179.7,4.0,18.452380952380963,501.0476190476194,2020-11-23 +138,1190.7,4.0,18.452380952380963,487.14285714285745,2020-11-23 +139,1201.3,4.0,18.523809523809536,466.80952380952414,2020-11-23 +140,1211.6,4.0,18.714285714285726,460.61904761904793,2020-11-23 +141,1222.4,4.0,18.642857142857153,455.5714285714289,2020-11-23 +142,1233.7,4.0,18.571428571428584,462.0476190476194,2020-11-23 +143,1244.3,4.0,18.452380952380963,474.38095238095275,2020-11-23 +144,1254.7,4.0,18.452380952380963,474.0952380952384,2020-11-23 +145,1265.1,4.0,18.523809523809536,483.0000000000003,2020-11-23 +162,1448.1,4.0,18.023809523809536,458.28571428571456,2020-11-23 +146,1275.7,4.0,18.71428571428573,461.9047619047622,2020-11-23 +148,1297.3,4.0,18.7857142857143,445.57142857142884,2020-11-23 +149,1308.0,4.0,18.50000000000001,449.0952380952384,2020-11-23 +150,1318.8,4.0,18.214285714285726,455.76190476190504,2020-11-23 +151,1330.3,4.0,18.047619047619058,468.3333333333336,2020-11-23 +152,1341.1,4.0,18.380952380952394,452.38095238095264,2020-11-23 +153,1352.1,4.0,18.7857142857143,466.1904761904765,2020-11-23 +154,1362.2,4.0,19.09523809523811,472.8095238095241,2020-11-23 +155,1372.5,4.0,19.142857142857153,461.9047619047622,2020-11-23 +156,1383.3,4.0,18.92857142857144,460.7619047619051,2020-11-23 +157,1394.2,4.0,18.404761904761916,451.66666666666697,2020-11-23 +158,1405.2,4.0,18.261904761904773,448.4761904761907,2020-11-23 +159,1416.1,4.0,18.11904761904763,457.66666666666697,2020-11-23 +160,1426.8,4.0,18.11904761904763,459.80952380952414,2020-11-23 +147,1286.6,4.0,18.85714285714287,449.38095238095264,2020-11-23 +132,1126.6,4.0,18.66666666666668,477.80952380952414,2020-11-23 +197,1803.3,4.0,22.500000000000014,149.66666666666674,2020-11-23 +199,1819.1,4.0,19.333333333333343,461.14285714285745,2020-11-23 +232,2163.4,4.0,17.428571428571438,498.3333333333337,2020-11-23 +233,2174.3,4.0,17.428571428571438,504.14285714285745,2020-11-23 +234,2185.2,4.0,17.547619047619058,503.3809523809527,2020-11-23 +235,2196.0,4.0,17.833333333333346,500.9047619047622,2020-11-23 +236,2206.3,4.0,17.80952380952382,499.90476190476227,2020-11-23 +237,2216.9,4.0,17.642857142857153,495.8571428571432,2020-11-23 +238,2228.4,4.0,17.761904761904773,491.47619047619077,2020-11-23 +239,2238.9,4.0,17.642857142857153,488.7619047619051,2020-11-23 +240,2249.7,4.0,17.761904761904773,487.33333333333366,2020-11-23 +241,2260.7,4.0,17.85714285714287,490.5714285714289,2020-11-23 +242,2270.9,4.0,17.714285714285726,486.71428571428606,2020-11-23 +243,2281.7,4.0,17.80952380952382,491.38095238095264,2020-11-23 +244,2292.4,4.0,17.880952380952394,493.61904761904793,2020-11-23 +231,2152.8,4.0,17.333333333333343,491.0952380952384,2020-11-23 +245,2302.8,4.0,17.761904761904773,492.1904761904765,2020-11-23 +247,2324.4,4.0,17.428571428571438,494.8095238095242,2020-11-23 +248,2335.2,4.0,17.547619047619058,485.52380952380986,2020-11-23 +249,2346.2,4.0,17.85714285714287,486.85714285714323,2020-11-23 +250,2356.5,4.0,17.97619047619049,486.0476190476194,2020-11-23 +251,2367.7,4.0,17.952380952380963,482.0476190476194,2020-11-23 +252,2378.8,4.0,17.833333333333343,487.42857142857173,2020-11-23 +253,2389.6,4.0,17.452380952380963,495.714285714286,2020-11-23 +254,2399.7,4.0,17.238095238095248,500.4761904761908,2020-11-23 +255,2410.6,4.0,17.190476190476204,508.2380952380956,2020-11-23 +256,2421.2,4.0,17.190476190476204,510.2380952380955,2020-11-23 +257,2431.5,4.0,17.2857142857143,495.8571428571432,2020-11-23 +258,2441.8,4.0,17.428571428571438,494.5714285714289,2020-11-23 +259,2452.5,4.0,17.61904761904763,493.0476190476194,2020-11-23 +246,2313.7,4.0,17.714285714285722,494.42857142857173,2020-11-23 +198,1810.6,4.0,21.40476190476192,319.14285714285734,2020-11-23 +230,2141.8,4.0,17.571428571428584,490.09523809523847,2020-11-23 +228,2120.2,4.0,17.85714285714287,470.8571428571432,2020-11-23 +200,1828.8,4.0,16.2857142857143,535.1904761904766,2020-11-23 +201,1839.2,4.0,18.90476190476192,489.42857142857173,2020-11-23 +202,1849.5,4.0,18.833333333333346,472.666666666667,2020-11-23 +203,1859.9,4.0,18.7857142857143,480.2857142857146,2020-11-23 +204,1870.3,4.0,18.92857142857144,496.0476190476194,2020-11-23 +205,1880.2,4.0,19.16666666666668,503.38095238095275,2020-11-23 +206,1890.6,4.0,19.071428571428584,505.19047619047655,2020-11-23 +207,1901.0,4.0,19.023809523809536,497.5238095238098,2020-11-23 +208,1911.4,4.0,18.97619047619049,488.66666666666697,2020-11-23 +209,1921.3,4.0,18.92857142857144,489.1904761904765,2020-11-23 +210,1931.6,4.0,18.880952380952394,484.0476190476194,2020-11-23 +211,1942.2,4.0,19.047619047619058,476.1904761904765,2020-11-23 +212,1952.6,4.0,19.000000000000014,472.1904761904765,2020-11-23 +229,2131.1,4.0,17.619047619047628,477.33333333333366,2020-11-23 +213,1962.3,4.0,18.952380952380963,478.38095238095275,2020-11-23 +215,1983.8,4.0,19.11904761904763,485.3809523809527,2020-11-23 +216,1993.4,4.0,19.000000000000014,476.90476190476227,2020-11-23 +217,2003.5,4.0,18.809523809523824,474.4761904761908,2020-11-23 +218,2014.4,4.0,18.547619047619058,474.5238095238098,2020-11-23 +219,2025.3,4.0,18.380952380952394,483.0952380952384,2020-11-23 +220,2035.9,4.0,18.73809523809525,494.14285714285745,2020-11-23 +221,2045.9,4.0,19.023809523809536,504.4285714285718,2020-11-23 +222,2056.7,4.0,19.11904761904763,508.4761904761908,2020-11-23 +223,2067.1,4.0,19.023809523809536,516.714285714286,2020-11-23 +224,2077.8,4.0,18.7857142857143,513.1904761904766,2020-11-23 +225,2088.4,4.0,18.452380952380963,491.714285714286,2020-11-23 +226,2098.9,4.0,18.333333333333346,483.95238095238125,2020-11-23 +227,2109.9,4.0,18.142857142857153,475.0476190476193,2020-11-23 +214,1973.0,4.0,19.11904761904763,478.9047619047622,2020-11-23 +131,1115.9,4.0,18.61904761904763,463.42857142857173,2020-11-23 +130,1105.4,4.0,18.642857142857153,445.2857142857146,2020-11-23 +129,1094.7,4.0,18.571428571428584,448.9047619047622,2020-11-23 +33,176.1,4.0,15.023809523809533,177.6190476190477,2020-11-23 +36,211.2,4.0,16.047619047619058,500.7142857142861,2020-11-23 +37,221.1,4.0,18.214285714285726,435.8571428571432,2020-11-23 +38,232.0,4.0,17.428571428571438,425.3809523809527,2020-11-23 +39,242.1,4.0,17.547619047619058,436.8095238095241,2020-11-23 +40,252.2,4.0,17.35714285714287,440.4285714285717,2020-11-23 +41,262.5,4.0,17.61904761904763,424.76190476190504,2020-11-23 +42,273.0,4.0,17.97619047619049,427.4285714285717,2020-11-23 +43,282.4,4.0,18.42857142857144,425.47619047619077,2020-11-23 +44,292.3,4.0,18.500000000000014,437.4285714285717,2020-11-23 +45,301.8,4.0,18.35714285714287,464.66666666666697,2020-11-23 +46,312.5,4.0,17.952380952380963,477.0476190476194,2020-11-23 +47,323.1,4.0,17.928571428571438,462.3809523809527,2020-11-23 +32,176.1,4.0,16.047619047619058,175.71428571428584,2020-11-23 +48,333.8,4.0,17.85714285714287,470.4285714285718,2020-11-23 +50,355.5,4.0,17.6904761904762,467.0952380952384,2020-11-23 +51,366.3,4.0,17.6904761904762,456.5238095238098,2020-11-23 +52,376.7,4.0,17.833333333333343,455.19047619047655,2020-11-23 +53,386.9,4.0,17.952380952380963,461.8571428571432,2020-11-23 +54,396.6,4.0,17.880952380952394,485.71428571428606,2020-11-23 +55,408.0,4.0,17.714285714285722,491.8571428571432,2020-11-23 +56,418.7,4.0,17.50000000000001,474.14285714285745,2020-11-23 +57,429.6,4.0,17.2857142857143,459.0476190476193,2020-11-23 +58,440.0,4.0,17.16666666666668,449.2380952380955,2020-11-23 +59,450.7,4.0,16.97619047619049,442.28571428571456,2020-11-23 +60,461.2,4.0,17.023809523809536,453.0952380952384,2020-11-23 +61,472.2,4.0,17.142857142857153,459.00000000000034,2020-11-23 +62,482.0,4.0,17.214285714285722,457.1904761904765,2020-11-23 +49,344.8,4.0,17.833333333333343,477.6190476190479,2020-11-23 +63,492.3,4.0,17.071428571428584,471.2380952380955,2020-11-23 +31,176.1,4.0,18.16666666666668,273.52380952380975,2020-11-23 +29,154.7,4.0,18.500000000000014,524.4761904761908,2020-11-23 +1,3.9,4.0,27.750000000000036,106.30952380952395,2020-11-23 +2,6.2,4.0,35.60714285714289,139.02380952380958,2020-11-23 +3,9.4,4.0,40.88095238095241,131.57142857142867,2020-11-23 +4,12.1,4.0,44.023809523809554,115.6190476190477,2020-11-23 +5,15.7,4.0,42.4761904761905,107.71428571428578,2020-11-23 +6,19.1,4.0,42.4761904761905,111.5238095238096,2020-11-23 +7,22.5,4.0,42.47619047619051,101.85714285714293,2020-11-23 +8,25.9,4.0,41.50000000000003,106.14285714285721,2020-11-23 +9,29.9,4.0,40.21428571428574,110.52380952380959,2020-11-23 +10,33.3,4.0,39.30952380952384,122.23809523809533,2020-11-23 +11,37.2,4.0,39.88095238095241,128.85714285714295,2020-11-23 +12,40.7,4.0,40.14285714285717,137.33333333333343,2020-11-23 +13,44.7,4.0,41.59523809523812,112.14285714285722,2020-11-23 +30,165.3,4.0,17.523809523809536,452.76190476190504,2020-11-23 +14,48.3,4.0,40.69047619047622,135.38095238095246,2020-11-23 +16,56.8,4.0,30.976190476190496,194.42857142857156,2020-11-23 +17,64.8,4.0,25.500000000000014,198.23809523809538,2020-11-23 +18,64.8,4.0,21.23809523809525,205.14285714285728,2020-11-23 +19,72.6,4.0,21.357142857142872,206.0000000000001,2020-11-23 +20,80.0,4.0,22.476190476190492,246.3333333333335,2020-11-23 +21,87.4,4.0,23.476190476190492,318.3333333333336,2020-11-23 +22,94.6,4.0,24.380952380952397,311.761904761905,2020-11-23 +23,102.2,4.0,24.476190476190496,327.3333333333336,2020-11-23 +24,109.1,4.0,23.64285714285716,323.9523809523812,2020-11-23 +25,117.6,4.0,22.880952380952397,343.1904761904764,2020-11-23 +26,126.7,4.0,21.71428571428573,364.1428571428574,2020-11-23 +27,134.9,4.0,20.809523809523824,401.3333333333336,2020-11-23 +28,144.8,4.0,19.500000000000014,451.0952380952384,2020-11-23 +15,52.5,4.0,36.52380952380955,206.80952380952394,2020-11-23 +64,502.8,4.0,16.92857142857144,478.80952380952414,2020-11-23 +65,513.5,4.0,16.785714285714295,475.7619047619051,2020-11-23 +66,523.3,4.0,16.80952380952382,478.0952380952384,2020-11-23 +101,792.2,4.0,19.16666666666668,476.2380952380955,2020-11-23 +102,802.4,4.0,19.23809523809525,473.8095238095241,2020-11-23 +103,813.0,4.0,19.35714285714287,479.5714285714289,2020-11-23 +104,823.1,4.0,19.261904761904773,484.61904761904793,2020-11-23 +105,834.0,4.0,19.000000000000014,487.7619047619051,2020-11-23 +106,845.0,4.0,18.73809523809525,481.09523809523836,2020-11-23 +107,856.0,4.0,18.690476190476204,477.33333333333366,2020-11-23 +108,866.8,4.0,18.73809523809525,471.14285714285745,2020-11-23 +109,877.5,4.0,18.761904761904773,468.3333333333336,2020-11-23 +110,887.8,4.0,18.809523809523824,463.66666666666697,2020-11-23 +111,898.5,4.0,18.71428571428573,454.33333333333366,2020-11-23 +112,909.7,4.0,18.571428571428584,452.5714285714289,2020-11-23 +113,920.7,4.0,18.428571428571438,461.66666666666697,2020-11-23 +100,781.0,4.0,18.85714285714287,484.95238095238125,2020-11-23 +114,931.5,4.0,18.333333333333346,467.4285714285718,2020-11-23 +116,954.3,4.0,18.023809523809536,473.0952380952384,2020-11-23 +117,965.0,4.0,17.90476190476192,475.90476190476227,2020-11-23 +118,976.1,4.0,18.023809523809536,484.38095238095275,2020-11-23 +119,987.6,4.0,18.261904761904773,486.1904761904765,2020-11-23 +120,998.7,4.0,18.047619047619058,457.38095238095264,2020-11-23 +121,1009.6,4.0,18.35714285714287,461.00000000000034,2020-11-23 +122,1021.5,4.0,18.761904761904773,460.28571428571456,2020-11-23 +123,1030.5,4.0,18.7857142857143,468.52380952380986,2020-11-23 +124,1040.8,4.0,18.809523809523824,468.19047619047655,2020-11-23 +125,1052.2,4.0,18.7857142857143,467.8095238095241,2020-11-23 +126,1062.5,4.0,18.2857142857143,444.5714285714289,2020-11-23 +127,1073.0,4.0,18.380952380952394,453.3333333333336,2020-11-23 +128,1084.2,4.0,18.50000000000001,445.8095238095241,2020-11-23 +115,941.8,4.0,18.16666666666668,474.52380952380986,2020-11-23 +99,769.7,4.0,18.500000000000014,485.66666666666697,2020-11-23 +98,759.5,4.0,18.11904761904763,483.2380952380956,2020-11-23 +97,748.7,4.0,17.523809523809533,483.14285714285745,2020-11-23 +67,534.5,4.0,16.952380952380963,478.4761904761908,2020-11-23 +68,545.1,4.0,17.261904761904773,469.2380952380956,2020-11-23 +69,555.9,4.0,17.30952380952382,479.9523809523813,2020-11-23 +70,566.4,4.0,17.35714285714287,486.09523809523847,2020-11-23 +71,577.1,4.0,17.09523809523811,484.14285714285745,2020-11-23 +72,587.2,4.0,16.904761904761916,487.80952380952414,2020-11-23 +73,599.3,4.0,17.000000000000014,486.9523809523813,2020-11-23 +74,609.9,4.0,17.261904761904773,483.4761904761908,2020-11-23 +75,620.5,4.0,17.142857142857153,488.71428571428606,2020-11-23 +76,631.5,4.0,16.85714285714287,473.714285714286,2020-11-23 +77,642.1,4.0,16.66666666666668,461.42857142857173,2020-11-23 +78,652.6,4.0,16.61904761904763,483.0000000000003,2020-11-23 +79,662.0,4.0,16.142857142857153,447.14285714285745,2020-11-23 +80,672.5,4.0,17.50000000000001,373.2380952380955,2020-11-23 +81,672.5,4.0,17.92857142857144,295.3333333333335,2020-11-23 +82,687.5,4.0,20.04761904761906,214.6666666666668,2020-11-23 +83,687.9,4.0,20.16666666666668,209.61904761904776,2020-11-23 +84,688.4,4.0,21.2857142857143,235.00000000000017,2020-11-23 +85,688.7,4.0,21.142857142857157,219.2380952380954,2020-11-23 +86,688.9,4.0,20.166666666666682,181.6666666666668,2020-11-23 +87,689.4,4.0,22.59523809523811,137.95238095238105,2020-11-23 +88,689.4,4.0,27.8809523809524,125.76190476190484,2020-11-23 +89,690.1,4.0,33.33333333333336,104.3333333333334,2020-11-23 +90,691.0,4.0,34.14285714285717,121.14285714285722,2020-11-23 +91,691.0,4.0,29.619047619047638,189.19047619047632,2020-11-23 +92,696.3,4.0,21.04761904761906,274.76190476190493,2020-11-23 +93,705.1,4.0,16.30952380952382,366.4285714285717,2020-11-23 +95,726.7,4.0,17.047619047619058,453.38095238095264,2020-11-23 +96,737.7,4.0,17.047619047619058,470.4285714285718,2020-11-23 +260,2463.4,4.0,17.595238095238106,500.71428571428606,2020-11-23 +261,2473.8,4.0,17.690476190476204,518.0000000000003,2020-11-23 +262,2485.0,4.0,17.714285714285726,527.8095238095242,2020-11-23 +263,2495.4,4.0,18.00000000000001,511.42857142857173,2020-11-23 +426,4175.2,4.0,17.047619047619058,436.61904761904793,2020-11-23 +427,4186.1,4.0,16.928571428571438,429.5714285714289,2020-11-23 +428,4197.1,4.0,16.80952380952382,420.4761904761907,2020-11-23 +429,4208.7,4.0,16.85714285714287,425.1904761904765,2020-11-23 +430,4220.2,4.0,17.071428571428584,435.5714285714289,2020-11-23 +431,4231.0,4.0,17.238095238095248,444.9047619047622,2020-11-23 +432,4242.2,4.0,17.35714285714287,455.66666666666697,2020-11-23 +433,4253.9,4.0,17.16666666666668,462.85714285714323,2020-11-23 +434,4264.7,4.0,17.095238095238106,462.52380952380986,2020-11-23 +435,4276.4,4.0,17.047619047619058,470.66666666666697,2020-11-23 +436,4287.6,4.0,17.1904761904762,471.0000000000003,2020-11-23 +437,4299.2,4.0,17.30952380952382,471.2857142857146,2020-11-23 +438,4310.1,4.0,17.452380952380963,472.0476190476194,2020-11-23 +425,4163.8,4.0,16.952380952380963,439.0476190476194,2020-11-23 +439,4321.4,4.0,17.404761904761916,476.0476190476194,2020-11-23 +441,4343.5,4.0,17.142857142857153,425.61904761904793,2020-11-23 +442,4355.1,4.0,17.30952380952382,393.61904761904793,2020-11-23 +443,4366.3,4.0,17.404761904761916,372.90476190476215,2020-11-23 +444,4377.2,4.0,17.47619047619049,385.28571428571456,2020-11-23 +445,4387.9,4.0,17.261904761904773,423.14285714285745,2020-11-23 +446,4399.1,4.0,17.142857142857153,442.28571428571456,2020-11-23 +447,4409.6,4.0,17.238095238095248,470.61904761904793,2020-11-23 +448,4420.7,4.0,17.714285714285726,468.0476190476194,2020-11-23 +449,4431.7,4.0,17.92857142857144,435.90476190476215,2020-11-23 +450,4442.8,4.0,17.928571428571438,424.00000000000034,2020-11-23 +451,4452.8,4.0,17.571428571428584,427.9047619047622,2020-11-23 +452,4462.2,4.0,17.61904761904763,422.3333333333336,2020-11-23 +453,4474.2,4.0,17.761904761904773,435.0952380952384,2020-11-23 +440,4332.0,4.0,17.333333333333346,446.09523809523836,2020-11-23 +454,4485.0,4.0,18.00000000000001,455.714285714286,2020-11-23 +424,4152.2,4.0,17.071428571428584,406.0000000000002,2020-11-23 +422,4129.7,4.0,17.238095238095248,390.1904761904765,2020-11-23 +394,3819.4,4.0,17.66666666666668,438.4285714285717,2020-11-23 +395,3831.5,4.0,17.833333333333346,441.66666666666697,2020-11-23 +396,3842.5,4.0,18.09523809523811,442.42857142857173,2020-11-23 +397,3853.2,4.0,18.071428571428584,442.1904761904765,2020-11-23 +398,3863.7,4.0,17.97619047619049,458.28571428571456,2020-11-23 +399,3875.2,4.0,17.80952380952382,457.0952380952384,2020-11-23 +400,3886.3,4.0,17.619047619047628,459.14285714285745,2020-11-23 +401,3897.2,4.0,17.61904761904763,466.2380952380955,2020-11-23 +402,3908.1,4.0,17.595238095238106,471.28571428571456,2020-11-23 +403,3919.0,4.0,17.547619047619058,470.2380952380955,2020-11-23 +404,3930.1,4.0,17.642857142857153,466.3809523809527,2020-11-23 +405,3940.6,4.0,18.047619047619058,444.52380952380986,2020-11-23 +406,3951.4,4.0,18.2857142857143,426.0000000000003,2020-11-23 +423,4141.1,4.0,17.09523809523811,389.8571428571431,2020-11-23 +407,3962.2,4.0,18.35714285714287,401.5238095238098,2020-11-23 +409,3983.9,4.0,18.071428571428584,384.38095238095264,2020-11-23 +410,3994.4,4.0,17.880952380952394,392.28571428571456,2020-11-23 +411,4005.4,4.0,17.904761904761916,413.714285714286,2020-11-23 +412,4016.2,4.0,17.80952380952382,447.0476190476194,2020-11-23 +413,4027.4,4.0,17.690476190476204,462.714285714286,2020-11-23 +414,4038.3,4.0,17.547619047619058,454.8095238095241,2020-11-23 +415,4049.9,4.0,17.642857142857153,441.0000000000003,2020-11-23 +416,4061.7,4.0,17.642857142857153,434.8571428571431,2020-11-23 +417,4072.3,4.0,17.59523809523811,436.61904761904793,2020-11-23 +418,4084.0,4.0,17.547619047619058,440.90476190476215,2020-11-23 +419,4096.0,4.0,17.333333333333343,452.8095238095241,2020-11-23 +420,4106.7,4.0,17.214285714285722,427.1904761904765,2020-11-23 +421,4118.6,4.0,17.238095238095248,401.61904761904793,2020-11-23 +408,3972.9,4.0,18.214285714285726,380.90476190476215,2020-11-23 +455,4497.1,4.0,18.11904761904763,454.619047619048,2020-11-23 +456,4508.0,4.0,18.071428571428584,458.9523809523813,2020-11-23 +457,4519.8,4.0,18.023809523809536,463.14285714285745,2020-11-23 +491,4901.5,4.0,17.142857142857153,453.9047619047622,2020-11-23 +492,4912.2,4.0,17.38095238095239,458.14285714285745,2020-11-23 +493,4924.3,4.0,17.333333333333343,458.9047619047622,2020-11-23 +494,4934.8,4.0,17.380952380952394,463.76190476190504,2020-11-23 +495,4946.2,4.0,17.47619047619049,465.38095238095275,2020-11-23 +496,4958.4,4.0,17.571428571428584,479.0952380952384,2020-11-23 +497,4968.9,4.0,17.61904761904763,478.28571428571456,2020-11-23 +498,4980.8,4.0,17.833333333333346,474.9523809523813,2020-11-23 +1034,10624.7,4.0,17.619047619047628,491.2857142857146,2020-11-23 +500,5002.5,4.0,17.595238095238106,453.5714285714289,2020-11-23 +501,5013.9,4.0,17.571428571428584,451.8571428571431,2020-11-23 +502,5024.9,4.0,17.404761904761916,457.4285714285718,2020-11-23 +503,5036.8,4.0,17.571428571428584,457.2380952380956,2020-11-23 +490,4889.9,4.0,17.261904761904773,439.9523809523813,2020-11-23 +504,5048.3,4.0,17.642857142857153,461.76190476190504,2020-11-23 +506,5071.2,4.0,17.642857142857153,464.47619047619077,2020-11-23 +507,5082.7,4.0,17.523809523809533,474.4761904761908,2020-11-23 +508,5094.4,4.0,17.523809523809533,466.33333333333366,2020-11-23 +509,5105.9,4.0,17.6904761904762,455.8571428571432,2020-11-23 +510,5115.9,4.0,17.547619047619058,452.714285714286,2020-11-23 +511,5127.1,4.0,17.571428571428584,457.0952380952384,2020-11-23 +512,5138.8,4.0,17.547619047619058,463.3809523809527,2020-11-23 +513,5149.9,4.0,17.47619047619049,475.7619047619051,2020-11-23 +514,5161.5,4.0,17.571428571428584,473.2857142857146,2020-11-23 +515,5173.0,4.0,17.61904761904763,464.14285714285745,2020-11-23 +516,5184.2,4.0,17.404761904761916,459.3809523809527,2020-11-23 +517,5194.9,4.0,17.571428571428584,467.76190476190504,2020-11-23 +518,5206.2,4.0,17.642857142857153,473.52380952380986,2020-11-23 +505,5059.6,4.0,17.66666666666668,462.42857142857173,2020-11-23 +489,4878.8,4.0,17.261904761904773,428.8571428571431,2020-11-23 +488,4867.2,4.0,17.452380952380963,440.14285714285745,2020-11-23 +487,4855.8,4.0,17.404761904761916,449.0952380952384,2020-11-23 +458,4530.8,4.0,18.190476190476204,454.0952380952384,2020-11-23 +459,4541.1,4.0,18.09523809523811,449.66666666666697,2020-11-23 +460,4552.5,4.0,18.000000000000014,458.61904761904793,2020-11-23 +461,4564.2,4.0,17.952380952380963,475.2380952380956,2020-11-23 +462,4575.3,4.0,17.785714285714295,497.0952380952384,2020-11-23 +463,4586.0,4.0,17.714285714285726,505.38095238095275,2020-11-23 +464,4597.8,4.0,17.7857142857143,494.2857142857146,2020-11-23 +465,4608.8,4.0,17.619047619047628,475.2380952380956,2020-11-23 +466,4619.5,4.0,17.690476190476204,453.28571428571456,2020-11-23 +467,4631.2,4.0,17.7857142857143,441.47619047619077,2020-11-23 +468,4641.5,4.0,17.7857142857143,452.2857142857146,2020-11-23 +469,4652.6,4.0,17.523809523809533,459.42857142857173,2020-11-23 +470,4664.0,4.0,17.428571428571438,458.8571428571432,2020-11-23 +471,4675.4,4.0,17.2857142857143,464.90476190476215,2020-11-23 +472,4686.6,4.0,17.30952380952382,467.33333333333366,2020-11-23 +473,4697.2,4.0,17.50000000000001,460.8571428571432,2020-11-23 +474,4708.5,4.0,17.6904761904762,460.1904761904765,2020-11-23 +475,4719.8,4.0,17.66666666666668,460.76190476190504,2020-11-23 +476,4731.2,4.0,17.595238095238106,456.8571428571432,2020-11-23 +477,4742.8,4.0,17.59523809523811,457.2857142857146,2020-11-23 +478,4754.2,4.0,17.714285714285722,458.2380952380955,2020-11-23 +479,4765.4,4.0,17.738095238095248,450.80952380952414,2020-11-23 +480,4776.1,4.0,17.714285714285726,447.5238095238098,2020-11-23 +481,4787.3,4.0,17.523809523809536,447.4761904761908,2020-11-23 +482,4798.6,4.0,17.214285714285722,446.66666666666697,2020-11-23 +483,4810.6,4.0,17.000000000000014,440.47619047619077,2020-11-23 +484,4821.9,4.0,17.095238095238106,445.28571428571456,2020-11-23 +485,4833.3,4.0,17.11904761904763,456.8095238095241,2020-11-23 +486,4844.6,4.0,17.380952380952394,455.33333333333366,2020-11-23 +393,3808.5,4.0,17.80952380952382,440.95238095238125,2020-11-23 +520,5228.6,4.0,17.66666666666668,473.2380952380956,2020-11-23 +392,3797.4,4.0,17.833333333333343,450.61904761904793,2020-11-23 +390,3775.7,4.0,17.85714285714287,468.3809523809527,2020-11-23 +296,2842.4,4.0,17.714285714285726,447.0476190476194,2020-11-23 +297,2852.4,4.0,18.90476190476192,374.19047619047643,2020-11-23 +298,2852.4,4.0,19.261904761904773,306.4285714285717,2020-11-23 +299,2871.3,4.0,20.52380952380954,258.5238095238097,2020-11-23 +300,2871.7,4.0,20.97619047619049,258.2380952380954,2020-11-23 +301,2872.3,4.0,19.7857142857143,272.3809523809526,2020-11-23 +302,2872.7,4.0,22.95238095238097,241.90476190476207,2020-11-23 +303,2873.3,4.0,26.523809523809543,194.33333333333346,2020-11-23 +304,2874.5,4.0,30.119047619047638,163.4761904761906,2020-11-23 +306,2881.9,4.0,25.357142857142875,103.3333333333334,2020-11-23 +307,2882.9,4.0,18.73809523809525,203.71428571428584,2020-11-23 +308,2885.2,4.0,17.071428571428584,327.33333333333354,2020-11-23 +309,2892.2,4.0,15.928571428571441,444.9047619047622,2020-11-23 +295,2831.8,4.0,17.880952380952394,475.66666666666697,2020-11-23 +310,2901.8,4.0,18.190476190476204,525.5714285714289,2020-11-23 +312,2922.8,4.0,18.880952380952394,494.4285714285718,2020-11-23 +313,2933.2,4.0,19.47619047619049,512.714285714286,2020-11-23 +314,2943.1,4.0,20.000000000000014,516.5238095238099,2020-11-23 +315,2953.0,4.0,19.880952380952394,506.42857142857173,2020-11-23 +316,2963.3,4.0,19.500000000000014,489.71428571428606,2020-11-23 +317,2974.6,4.0,18.761904761904773,470.52380952380986,2020-11-23 +318,2985.2,4.0,18.523809523809533,478.8571428571432,2020-11-23 +319,2996.1,4.0,18.66666666666668,493.0476190476194,2020-11-23 +320,3007.3,4.0,18.73809523809525,473.8095238095241,2020-11-23 +321,3017.6,4.0,18.66666666666668,458.2380952380955,2020-11-23 +322,3029.4,4.0,18.500000000000014,441.8571428571432,2020-11-23 +323,3040.2,4.0,18.404761904761916,430.0476190476193,2020-11-23 +324,3051.2,4.0,18.500000000000014,435.28571428571456,2020-11-23 +311,2912.5,4.0,18.047619047619058,482.9047619047622,2020-11-23 +325,3061.9,4.0,19.000000000000014,445.5714285714289,2020-11-23 +294,2821.7,4.0,17.833333333333346,444.00000000000034,2020-11-23 +292,2800.7,4.0,17.714285714285726,431.714285714286,2020-11-23 +264,2506.2,4.0,18.2857142857143,493.4285714285718,2020-11-23 +265,2516.5,4.0,18.47619047619049,481.38095238095264,2020-11-23 +266,2526.9,4.0,18.523809523809536,468.5714285714289,2020-11-23 +267,2537.4,4.0,18.380952380952394,468.47619047619077,2020-11-23 +268,2547.5,4.0,18.16666666666668,477.90476190476227,2020-11-23 +269,2557.7,4.0,18.16666666666668,474.2380952380955,2020-11-23 +270,2568.5,4.0,18.547619047619058,473.2380952380955,2020-11-23 +271,2578.5,4.0,18.714285714285726,473.3333333333336,2020-11-23 +272,2588.5,4.0,18.928571428571438,464.0000000000003,2020-11-23 +273,2599.4,4.0,18.761904761904773,469.8571428571432,2020-11-23 +274,2610.4,4.0,18.42857142857144,485.0952380952384,2020-11-23 +275,2620.9,4.0,18.095238095238106,507.3333333333337,2020-11-23 +276,2631.8,4.0,18.190476190476204,512.1904761904766,2020-11-23 +293,2811.4,4.0,17.833333333333343,429.28571428571456,2020-11-23 +277,2642.2,4.0,18.2857142857143,501.38095238095275,2020-11-23 +279,2663.1,4.0,18.523809523809536,454.76190476190504,2020-11-23 +280,2673.6,4.0,18.380952380952394,452.52380952380986,2020-11-23 +281,2684.6,4.0,18.142857142857153,472.714285714286,2020-11-23 +282,2694.8,4.0,17.80952380952382,495.14285714285745,2020-11-23 +283,2704.8,4.0,17.595238095238106,494.85714285714323,2020-11-23 +284,2715.9,4.0,17.761904761904773,475.28571428571456,2020-11-23 +285,2726.9,4.0,17.97619047619049,470.90476190476227,2020-11-23 +286,2737.0,4.0,18.071428571428584,477.3809523809527,2020-11-23 +287,2747.9,4.0,18.09523809523811,487.9047619047622,2020-11-23 +288,2758.7,4.0,17.880952380952394,505.3809523809527,2020-11-23 +289,2768.8,4.0,17.595238095238106,500.2857142857147,2020-11-23 +290,2779.8,4.0,17.619047619047628,481.47619047619077,2020-11-23 +291,2790.4,4.0,17.7857142857143,449.28571428571456,2020-11-23 +278,2652.8,4.0,18.523809523809536,469.5714285714289,2020-11-23 +326,3072.3,4.0,19.09523809523811,435.76190476190504,2020-11-23 +327,3082.6,4.0,19.04761904761906,443.42857142857173,2020-11-23 +328,3094.1,4.0,18.809523809523824,448.09523809523836,2020-11-23 +362,3465.0,4.0,18.11904761904763,461.61904761904793,2020-11-23 +363,3476.5,4.0,18.261904761904773,484.5714285714289,2020-11-23 +364,3487.7,4.0,18.142857142857153,490.38095238095275,2020-11-23 +365,3498.4,4.0,17.928571428571438,483.14285714285745,2020-11-23 +366,3509.5,4.0,18.047619047619058,462.28571428571456,2020-11-23 +367,3520.6,4.0,18.023809523809536,461.61904761904793,2020-11-23 +368,3531.5,4.0,18.11904761904763,463.2380952380956,2020-11-23 +369,3542.9,4.0,18.333333333333343,472.95238095238125,2020-11-23 +370,3554.1,4.0,18.190476190476204,479.0476190476194,2020-11-23 +371,3566.3,4.0,18.071428571428584,475.8571428571432,2020-11-23 +372,3577.5,4.0,18.35714285714287,474.0952380952384,2020-11-23 +373,3588.6,4.0,18.404761904761916,467.9047619047622,2020-11-23 +374,3599.4,4.0,18.42857142857144,460.9523809523813,2020-11-23 +361,3454.5,4.0,18.142857142857153,451.95238095238125,2020-11-23 +375,3610.3,4.0,18.47619047619049,463.1904761904765,2020-11-23 +377,3632.0,4.0,17.85714285714287,476.38095238095264,2020-11-23 +378,3642.9,4.0,17.833333333333346,482.66666666666697,2020-11-23 +379,3653.2,4.0,17.80952380952382,477.14285714285745,2020-11-23 +380,3663.8,4.0,17.714285714285726,466.2380952380955,2020-11-23 +381,3675.5,4.0,17.714285714285726,451.14285714285745,2020-11-23 +382,3687.1,4.0,17.761904761904773,450.0476190476193,2020-11-23 +383,3698.2,4.0,17.85714285714287,444.0476190476193,2020-11-23 +384,3709.3,4.0,18.21428571428573,447.47619047619077,2020-11-23 +385,3720.0,4.0,18.404761904761916,463.66666666666697,2020-11-23 +386,3730.6,4.0,18.21428571428573,476.76190476190504,2020-11-23 +387,3741.9,4.0,17.904761904761916,481.00000000000034,2020-11-23 +388,3753.0,4.0,17.642857142857153,495.8571428571432,2020-11-23 +389,3763.7,4.0,17.595238095238106,485.666666666667,2020-11-23 +376,3621.0,4.0,18.214285714285726,471.57142857142884,2020-11-23 +360,3442.6,4.0,18.023809523809536,449.66666666666697,2020-11-23 +359,3430.9,4.0,17.97619047619049,466.42857142857173,2020-11-23 +358,3419.8,4.0,18.16666666666668,481.71428571428606,2020-11-23 +329,3105.3,4.0,18.642857142857153,452.52380952380986,2020-11-23 +330,3116.2,4.0,18.380952380952394,459.14285714285745,2020-11-23 +331,3126.7,4.0,18.2857142857143,457.9047619047622,2020-11-23 +332,3137.9,4.0,18.142857142857153,459.1904761904765,2020-11-23 +333,3148.5,4.0,18.30952380952382,473.71428571428606,2020-11-23 +334,3158.9,4.0,18.404761904761916,480.8571428571432,2020-11-23 +335,3169.9,4.0,18.42857142857144,472.4761904761908,2020-11-23 +336,3180.5,4.0,18.428571428571438,457.9523809523813,2020-11-23 +337,3191.8,4.0,18.238095238095248,439.0952380952384,2020-11-23 +338,3201.9,4.0,18.11904761904763,431.61904761904793,2020-11-23 +339,3212.4,4.0,18.071428571428584,450.14285714285745,2020-11-23 +340,3223.9,4.0,17.97619047619049,459.95238095238125,2020-11-23 +341,3234.5,4.0,17.714285714285726,467.57142857142884,2020-11-23 +342,3245.4,4.0,17.714285714285726,459.66666666666697,2020-11-23 +343,3256.4,4.0,17.80952380952382,466.3809523809527,2020-11-23 +344,3267.1,4.0,17.738095238095248,468.09523809523836,2020-11-23 +345,3278.3,4.0,17.880952380952394,468.00000000000034,2020-11-23 +346,3289.4,4.0,18.2857142857143,453.28571428571456,2020-11-23 +347,3299.7,4.0,18.309523809523824,428.90476190476215,2020-11-23 +348,3309.7,4.0,18.16666666666668,405.714285714286,2020-11-23 +349,3321.6,4.0,17.97619047619049,407.5714285714289,2020-11-23 +350,3332.3,4.0,17.6904761904762,428.0952380952384,2020-11-23 +351,3342.6,4.0,17.85714285714287,456.0000000000003,2020-11-23 +352,3353.5,4.0,18.380952380952394,473.7619047619051,2020-11-23 +353,3364.2,4.0,18.66666666666668,470.4761904761908,2020-11-23 +354,3375.1,4.0,18.714285714285726,467.9047619047622,2020-11-23 +355,3386.2,4.0,18.690476190476204,467.3333333333336,2020-11-23 +356,3397.5,4.0,18.547619047619058,477.1904761904765,2020-11-23 +357,3408.6,4.0,18.2857142857143,489.0952380952384,2020-11-23 +391,3786.4,4.0,17.833333333333343,456.6190476190479,2020-11-23 +1878,19232.6,4.0,18.071428571428584,408.5238095238098,2020-11-23 +1035,10635.2,4.0,17.547619047619058,480.71428571428606,2020-11-23 +1037,10656.1,4.0,17.761904761904773,490.0952380952384,2020-11-23 +1679,17247.7,4.0,20.2857142857143,416.14285714285745,2020-11-23 +1680,17257.8,4.0,20.452380952380963,440.3333333333336,2020-11-23 +1681,17267.4,4.0,20.47619047619049,453.14285714285745,2020-11-23 +1682,17277.3,4.0,20.35714285714287,454.3809523809527,2020-11-23 +1683,17287.4,4.0,20.142857142857157,451.1428571428574,2020-11-23 +1684,17297.0,4.0,19.880952380952394,461.666666666667,2020-11-23 +1685,17307.1,4.0,19.738095238095248,452.95238095238125,2020-11-23 +1686,17317.8,4.0,19.761904761904773,441.28571428571456,2020-11-23 +1687,17328.2,4.0,19.880952380952394,421.66666666666697,2020-11-23 +1688,17337.7,4.0,19.92857142857144,412.8571428571431,2020-11-23 +1689,17348.2,4.0,20.000000000000014,411.28571428571456,2020-11-23 +1690,17358.1,4.0,19.71428571428573,419.47619047619077,2020-11-23 +1678,17237.4,4.0,19.97619047619049,411.4761904761907,2020-11-23 +1691,17368.2,4.0,19.2857142857143,425.47619047619077,2020-11-23 +1693,17388.7,4.0,19.59523809523811,404.66666666666697,2020-11-23 +1694,17398.6,4.0,19.90476190476192,407.5714285714289,2020-11-23 +1695,17407.8,4.0,20.190476190476204,417.38095238095264,2020-11-23 +1696,17417.9,4.0,20.23809523809525,431.33333333333366,2020-11-23 +1697,17427.2,4.0,20.04761904761906,449.1904761904765,2020-11-23 +1698,17437.3,4.0,19.833333333333346,448.61904761904793,2020-11-23 +1699,17446.8,4.0,19.59523809523811,458.3809523809527,2020-11-23 +1700,17456.3,4.0,19.380952380952394,456.47619047619077,2020-11-23 +1701,17466.7,4.0,19.333333333333346,464.3333333333336,2020-11-23 +1702,17476.4,4.0,19.238095238095248,453.4761904761908,2020-11-23 +1703,17486.8,4.0,19.40476190476192,444.1904761904765,2020-11-23 +1704,17496.6,4.0,19.500000000000014,449.4761904761907,2020-11-23 +1692,17378.6,4.0,19.261904761904773,409.09523809523836,2020-11-23 +1705,17506.1,4.0,19.261904761904773,451.0952380952384,2020-11-23 +1677,17227.2,4.0,19.952380952380967,417.2380952380955,2020-11-23 +1675,17206.7,4.0,20.000000000000014,447.8095238095241,2020-11-23 +1649,16941.9,4.0,19.380952380952394,458.95238095238125,2020-11-23 +1650,16952.5,4.0,19.2857142857143,445.47619047619077,2020-11-23 +1651,16962.6,4.0,19.23809523809525,425.57142857142884,2020-11-23 +1652,16972.5,4.0,19.16666666666668,422.8095238095241,2020-11-23 +1653,16982.5,4.0,19.071428571428584,417.3333333333336,2020-11-23 +1654,16992.8,4.0,19.214285714285726,417.0476190476194,2020-11-23 +1655,17003.2,4.0,19.261904761904773,423.38095238095264,2020-11-23 +1656,17013.3,4.0,19.04761904761906,432.76190476190504,2020-11-23 +1657,17023.0,4.0,18.952380952380963,433.95238095238125,2020-11-23 +1658,17034.1,4.0,18.92857142857144,435.1904761904765,2020-11-23 +1659,17044.2,4.0,19.023809523809536,424.714285714286,2020-11-23 +1660,17054.7,4.0,19.2857142857143,420.4285714285717,2020-11-23 +1676,17217.0,4.0,20.000000000000014,436.57142857142884,2020-11-23 +1661,17064.7,4.0,19.2857142857143,421.38095238095264,2020-11-23 +1663,17085.6,4.0,18.80952380952382,422.714285714286,2020-11-23 +1664,17096.3,4.0,18.833333333333346,425.9523809523813,2020-11-23 +1665,17106.1,4.0,19.142857142857153,418.5714285714289,2020-11-23 +1666,17116.2,4.0,19.261904761904773,413.4285714285717,2020-11-23 +1667,17126.6,4.0,19.35714285714287,417.2380952380955,2020-11-23 +1668,17137.1,4.0,19.547619047619058,422.4285714285717,2020-11-23 +1669,17147.4,4.0,19.690476190476204,428.14285714285745,2020-11-23 +1670,17157.2,4.0,19.90476190476192,438.47619047619077,2020-11-23 +1671,17167.0,4.0,20.09523809523811,438.52380952380986,2020-11-23 +1672,17176.9,4.0,20.000000000000014,434.38095238095264,2020-11-23 +1673,17186.6,4.0,20.000000000000014,436.8095238095241,2020-11-23 +1674,17196.5,4.0,20.000000000000014,447.47619047619077,2020-11-23 +1662,17075.2,4.0,19.071428571428584,424.8095238095241,2020-11-23 +1706,17516.0,4.0,19.2857142857143,441.2857142857146,2020-11-23 +1707,17526.0,4.0,19.571428571428584,437.3809523809527,2020-11-23 +1708,17534.9,4.0,19.523809523809536,429.28571428571456,2020-11-23 +1740,17851.2,4.0,18.761904761904773,454.2857142857146,2020-11-23 +1741,17861.2,4.0,18.952380952380963,465.714285714286,2020-11-23 +1742,17870.9,4.0,19.16666666666668,469.666666666667,2020-11-23 +1743,17880.9,4.0,19.40476190476192,463.9047619047622,2020-11-23 +1744,17890.3,4.0,19.571428571428584,440.14285714285745,2020-11-23 +1745,17899.8,4.0,19.7857142857143,416.2380952380955,2020-11-23 +1746,17909.3,4.0,19.83333333333335,404.2380952380955,2020-11-23 +1747,17918.7,4.0,19.71428571428573,410.90476190476215,2020-11-23 +1748,17928.6,4.0,19.380952380952394,422.8571428571432,2020-11-23 +1749,17938.4,4.0,19.261904761904773,433.52380952380986,2020-11-23 +1750,17948.8,4.0,19.142857142857153,428.28571428571456,2020-11-23 +1751,17958.3,4.0,19.333333333333346,430.0952380952384,2020-11-23 +1739,17841.3,4.0,18.952380952380963,450.5238095238098,2020-11-23 +1752,17968.3,4.0,19.40476190476192,440.3333333333336,2020-11-23 +1754,17988.5,4.0,19.261904761904773,458.5238095238098,2020-11-23 +1755,17998.4,4.0,19.309523809523824,460.1904761904765,2020-11-23 +1756,18009.0,4.0,19.16666666666668,451.2380952380955,2020-11-23 +1757,18019.2,4.0,19.04761904761906,447.47619047619077,2020-11-23 +1758,18029.5,4.0,18.952380952380963,451.3333333333336,2020-11-23 +1759,18039.9,4.0,19.09523809523811,453.3809523809527,2020-11-23 +1760,18049.8,4.0,19.261904761904773,455.33333333333366,2020-11-23 +1761,18059.5,4.0,19.500000000000014,441.9047619047622,2020-11-23 +1762,18069.4,4.0,19.333333333333346,428.66666666666697,2020-11-23 +1763,18079.5,4.0,19.23809523809525,428.14285714285745,2020-11-23 +1764,18089.8,4.0,19.16666666666668,443.5238095238098,2020-11-23 +1765,18099.9,4.0,19.11904761904763,457.0476190476193,2020-11-23 +1753,17978.2,4.0,19.452380952380963,452.28571428571456,2020-11-23 +1738,17831.2,4.0,18.92857142857144,452.61904761904793,2020-11-23 +1737,17821.2,4.0,18.952380952380967,446.95238095238125,2020-11-23 +1736,17811.6,4.0,19.023809523809536,437.14285714285745,2020-11-23 +1709,17545.1,4.0,19.66666666666668,429.0000000000003,2020-11-23 +1710,17555.0,4.0,19.309523809523824,447.66666666666697,2020-11-23 +1711,17564.8,4.0,18.97619047619049,447.8571428571431,2020-11-23 +1712,17575.1,4.0,18.833333333333343,440.5714285714289,2020-11-23 +1713,17585.4,4.0,19.09523809523811,425.61904761904793,2020-11-23 +1714,17595.3,4.0,19.261904761904773,417.8571428571431,2020-11-23 +1715,17604.9,4.0,19.16666666666668,408.5238095238098,2020-11-23 +1716,17614.7,4.0,19.023809523809536,407.1904761904765,2020-11-23 +1717,17624.6,4.0,19.047619047619058,397.28571428571456,2020-11-23 +1718,17634.3,4.0,18.92857142857144,389.1904761904765,2020-11-23 +1719,17644.2,4.0,19.047619047619058,389.1904761904765,2020-11-23 +1720,17653.3,4.0,19.40476190476192,400.3333333333336,2020-11-23 +1721,17662.1,4.0,19.452380952380963,409.90476190476215,2020-11-23 +1722,17671.9,4.0,19.404761904761916,419.4761904761907,2020-11-23 +1723,17681.4,4.0,19.214285714285726,429.8095238095241,2020-11-23 +1724,17691.2,4.0,18.92857142857144,438.2380952380955,2020-11-23 +1725,17700.7,4.0,18.71428571428573,455.28571428571456,2020-11-23 +1726,17710.7,4.0,18.90476190476192,447.28571428571456,2020-11-23 +1727,17720.5,4.0,19.380952380952394,433.66666666666697,2020-11-23 +1728,17730.9,4.0,19.380952380952394,422.42857142857173,2020-11-23 +1729,17740.5,4.0,19.380952380952394,418.6190476190479,2020-11-23 +1730,17750.5,4.0,19.11904761904763,423.8571428571431,2020-11-23 +1731,17760.1,4.0,18.809523809523824,431.6190476190479,2020-11-23 +1732,17771.0,4.0,18.66666666666668,418.8571428571431,2020-11-23 +1733,17780.7,4.0,18.952380952380963,408.8095238095241,2020-11-23 +1734,17790.5,4.0,18.80952380952382,410.9523809523812,2020-11-23 +1735,17800.9,4.0,18.97619047619049,425.8571428571431,2020-11-23 +1648,16930.9,4.0,19.642857142857157,464.0952380952384,2020-11-23 +1647,16920.7,4.0,19.809523809523824,464.0476190476193,2020-11-23 +1646,16910.4,4.0,20.047619047619058,438.5714285714289,2020-11-23 +1645,16900.6,4.0,20.04761904761906,416.90476190476215,2020-11-23 +1558,16126.3,4.0,21.000000000000014,221.80952380952394,2020-11-23 +1559,16126.4,4.0,21.428571428571445,204.33333333333348,2020-11-23 +1560,16126.4,4.0,22.428571428571445,219.52380952380966,2020-11-23 +1561,16126.4,4.0,22.928571428571445,202.857142857143,2020-11-23 +1562,16126.4,4.0,27.357142857142875,178.8095238095239,2020-11-23 +1563,16126.4,4.0,31.857142857142875,161.85714285714295,2020-11-23 +1564,16126.5,4.0,38.30952380952384,148.90476190476198,2020-11-23 +1565,16126.9,4.0,39.78571428571431,130.0952380952382,2020-11-23 +1566,16127.3,4.0,40.04761904761908,149.66666666666674,2020-11-23 +1567,16129.4,4.0,33.83333333333336,203.38095238095252,2020-11-23 +1568,16129.4,4.0,27.547619047619065,300.4761904761907,2020-11-23 +1569,16143.2,4.0,22.09523809523811,404.0476190476193,2020-11-23 +1557,16110.6,4.0,19.142857142857153,288.28571428571445,2020-11-23 +1570,16150.8,4.0,19.85714285714287,467.66666666666697,2020-11-23 +1572,16169.4,4.0,20.83333333333335,487.4761904761908,2020-11-23 +1573,16178.9,4.0,20.61904761904763,474.0000000000003,2020-11-23 +1036,10646.0,4.0,17.66666666666668,483.4761904761908,2020-11-23 +1575,16199.0,4.0,20.66666666666668,450.38095238095275,2020-11-23 +1576,16209.4,4.0,20.880952380952394,440.0000000000003,2020-11-23 +1577,16218.9,4.0,20.85714285714287,439.76190476190504,2020-11-23 +1578,16228.6,4.0,20.928571428571445,425.0476190476193,2020-11-23 +1579,16238.0,4.0,21.000000000000014,448.66666666666697,2020-11-23 +1580,16247.7,4.0,21.238095238095255,468.0000000000003,2020-11-23 +1581,16257.9,4.0,21.428571428571445,489.8571428571431,2020-11-23 +1582,16266.8,4.0,21.40476190476192,501.3333333333337,2020-11-23 +1583,16276.0,4.0,20.952380952380967,492.80952380952414,2020-11-23 +1571,16159.5,4.0,18.7857142857143,473.1904761904765,2020-11-23 +1556,16110.6,4.0,18.97619047619049,362.8095238095241,2020-11-23 +1555,16110.6,4.0,18.500000000000014,433.47619047619077,2020-11-23 +1554,16100.7,4.0,19.09523809523811,467.00000000000034,2020-11-23 +1527,15841.7,4.0,19.54761904761906,176.85714285714297,2020-11-23 +1528,15848.8,4.0,20.071428571428584,271.3809523809525,2020-11-23 +1529,15856.5,4.0,21.47619047619049,440.76190476190504,2020-11-23 +1530,15865.5,4.0,21.09523809523811,500.80952380952414,2020-11-23 +1531,15874.4,4.0,21.000000000000014,406.0476190476193,2020-11-23 +1532,15885.3,4.0,21.09523809523811,360.3333333333336,2020-11-23 +1533,15894.2,4.0,21.119047619047635,348.8095238095241,2020-11-23 +1534,15902.5,4.0,20.857142857142872,363.38095238095264,2020-11-23 +1535,15912.7,4.0,21.142857142857157,409.76190476190504,2020-11-23 +1536,15922.4,4.0,19.761904761904777,451.90476190476227,2020-11-23 +1537,15932.2,4.0,19.619047619047635,450.14285714285745,2020-11-23 +1538,15941.8,4.0,19.66666666666668,455.66666666666697,2020-11-23 +1539,15951.8,4.0,19.642857142857153,441.8095238095241,2020-11-23 +1540,15962.2,4.0,19.35714285714287,424.95238095238125,2020-11-23 +1541,15971.8,4.0,19.2857142857143,416.0476190476193,2020-11-23 +1542,15981.7,4.0,19.16666666666668,408.4761904761907,2020-11-23 +1543,15991.5,4.0,19.523809523809536,415.8095238095241,2020-11-23 +1544,16001.0,4.0,19.547619047619058,435.5714285714289,2020-11-23 +1545,16010.9,4.0,19.452380952380963,438.14285714285745,2020-11-23 +1546,16021.0,4.0,19.40476190476192,441.0476190476194,2020-11-23 +1547,16031.5,4.0,19.452380952380963,448.9047619047622,2020-11-23 +1548,16041.5,4.0,19.333333333333343,438.2380952380955,2020-11-23 +1549,16051.2,4.0,19.52380952380954,429.9523809523812,2020-11-23 +1550,16062.1,4.0,19.380952380952394,427.76190476190504,2020-11-23 +1551,16071.3,4.0,19.16666666666668,428.2380952380955,2020-11-23 +1552,16081.1,4.0,19.35714285714287,433.1904761904765,2020-11-23 +1553,16090.6,4.0,19.35714285714287,444.66666666666697,2020-11-23 +1584,16286.1,4.0,20.761904761904773,455.8571428571432,2020-11-23 +1766,18110.1,4.0,19.190476190476204,471.38095238095264,2020-11-23 +1585,16295.9,4.0,20.619047619047635,457.7619047619051,2020-11-23 +1587,16315.5,4.0,20.64285714285716,394.9523809523812,2020-11-23 +1619,16639.9,4.0,19.642857142857153,438.1904761904765,2020-11-23 +1620,16650.7,4.0,19.42857142857144,445.0476190476194,2020-11-23 +1621,16660.8,4.0,19.214285714285726,442.3333333333336,2020-11-23 +1622,16671.2,4.0,19.16666666666668,448.5714285714289,2020-11-23 +1623,16681.3,4.0,19.452380952380967,450.8571428571432,2020-11-23 +1624,16691.2,4.0,19.85714285714287,447.2380952380955,2020-11-23 +1625,16701.1,4.0,20.000000000000014,443.0476190476194,2020-11-23 +1626,16710.8,4.0,19.880952380952394,444.8095238095241,2020-11-23 +1627,16720.9,4.0,19.66666666666668,438.14285714285745,2020-11-23 +1628,16731.5,4.0,19.52380952380954,456.2380952380955,2020-11-23 +1629,16741.4,4.0,19.35714285714287,456.3809523809527,2020-11-23 +1630,16751.6,4.0,19.547619047619058,455.5714285714289,2020-11-23 +1618,16629.9,4.0,19.642857142857157,441.714285714286,2020-11-23 +1631,16762.4,4.0,19.833333333333346,450.2380952380955,2020-11-23 +1633,16781.7,4.0,20.42857142857144,442.76190476190504,2020-11-23 +1634,16791.8,4.0,20.47619047619049,442.47619047619077,2020-11-23 +1635,16801.0,4.0,20.142857142857157,435.2380952380955,2020-11-23 +1636,16810.6,4.0,19.809523809523824,436.8095238095241,2020-11-23 +1637,16820.9,4.0,19.642857142857153,435.14285714285745,2020-11-23 +1638,16830.6,4.0,19.73809523809525,441.0952380952384,2020-11-23 +1639,16840.6,4.0,19.71428571428573,452.1904761904765,2020-11-23 +1640,16850.4,4.0,19.880952380952394,461.5714285714289,2020-11-23 +1641,16860.3,4.0,19.809523809523824,463.33333333333366,2020-11-23 +1642,16870.7,4.0,19.71428571428573,445.1428571428574,2020-11-23 +1643,16880.8,4.0,19.71428571428573,423.3333333333336,2020-11-23 +1644,16890.8,4.0,20.023809523809536,416.0476190476193,2020-11-23 +1632,16771.9,4.0,20.21428571428573,444.95238095238125,2020-11-23 +1617,16619.8,4.0,19.642857142857157,437.3809523809527,2020-11-23 +1616,16609.6,4.0,19.547619047619058,430.3333333333336,2020-11-23 +1615,16598.9,4.0,19.690476190476204,435.95238095238125,2020-11-23 +1588,16325.3,4.0,21.02380952380954,353.4285714285717,2020-11-23 +1589,16335.3,4.0,21.33333333333335,346.38095238095264,2020-11-23 +1590,16344.5,4.0,21.40476190476192,369.0952380952383,2020-11-23 +1591,16354.2,4.0,21.071428571428584,418.47619047619077,2020-11-23 +1592,16364.5,4.0,20.380952380952394,465.0476190476194,2020-11-23 +1593,16374.7,4.0,19.97619047619049,444.2380952380955,2020-11-23 +1594,16385.0,4.0,20.119047619047635,436.8571428571431,2020-11-23 +1595,16394.3,4.0,20.309523809523824,435.52380952380986,2020-11-23 +1596,16404.9,4.0,20.35714285714287,435.90476190476215,2020-11-23 +1597,16415.0,4.0,20.142857142857157,437.714285714286,2020-11-23 +1598,16425.4,4.0,19.92857142857144,440.714285714286,2020-11-23 +1599,16435.7,4.0,19.666666666666682,448.66666666666697,2020-11-23 +1600,16446.0,4.0,19.73809523809525,443.4285714285718,2020-11-23 +1601,16456.5,4.0,19.97619047619049,444.9047619047622,2020-11-23 +1602,16467.0,4.0,20.261904761904773,452.2380952380955,2020-11-23 +1603,16476.4,4.0,20.119047619047635,457.0952380952384,2020-11-23 +1604,16487.1,4.0,20.190476190476204,473.14285714285745,2020-11-23 +1605,16496.6,4.0,20.000000000000014,478.714285714286,2020-11-23 +1606,16506.7,4.0,19.92857142857144,472.66666666666697,2020-11-23 +1607,16517.2,4.0,20.142857142857157,466.7619047619051,2020-11-23 +1608,16527.8,4.0,20.261904761904773,459.8571428571432,2020-11-23 +1609,16538.0,4.0,20.119047619047635,444.61904761904793,2020-11-23 +1610,16548.4,4.0,20.142857142857157,436.4285714285717,2020-11-23 +1611,16558.2,4.0,20.119047619047635,432.2380952380955,2020-11-23 +1612,16568.4,4.0,19.880952380952394,432.0476190476194,2020-11-23 +1613,16578.6,4.0,19.90476190476192,428.76190476190504,2020-11-23 +1614,16588.8,4.0,19.809523809523824,430.8571428571431,2020-11-23 +1586,16305.5,4.0,20.523809523809536,459.8095238095241,2020-11-23 +1526,15841.7,4.0,18.833333333333346,166.7142857142858,2020-11-23 +1767,18120.4,4.0,19.000000000000014,468.4761904761908,2020-11-23 +1769,18141.1,4.0,18.7857142857143,451.80952380952414,2020-11-23 +1966,20020.6,4.0,22.21428571428573,279.2380952380954,2020-11-23 +1965,20020.6,4.0,22.83333333333335,358.0000000000002,2020-11-23 +1964,20020.6,4.0,22.428571428571445,435.28571428571456,2020-11-23 +1963,20020.6,4.0,22.357142857142875,476.0952380952384,2020-11-23 +1962,20011.0,4.0,22.33333333333335,446.00000000000034,2020-11-23 +1961,20001.5,4.0,22.309523809523824,447.42857142857173,2020-11-23 +1960,19993.1,4.0,22.40476190476192,454.52380952380986,2020-11-23 +1959,19984.1,4.0,22.928571428571445,466.66666666666697,2020-11-23 +1958,19974.3,4.0,23.000000000000014,494.4761904761908,2020-11-23 +1957,19965.0,4.0,22.547619047619065,509.9523809523813,2020-11-23 +1956,19955.5,4.0,21.833333333333346,506.666666666667,2020-11-23 +1955,19945.6,4.0,21.16666666666668,492.2857142857146,2020-11-23 +1967,20036.8,4.0,21.47619047619049,205.61904761904776,2020-11-23 +1954,19935.8,4.0,20.952380952380963,462.4761904761908,2020-11-23 +1952,19917.5,4.0,21.119047619047635,428.8095238095241,2020-11-23 +1951,19907.7,4.0,20.738095238095255,413.8095238095241,2020-11-23 +1950,19898.3,4.0,20.380952380952394,423.9523809523812,2020-11-23 +1949,19888.8,4.0,20.261904761904773,431.5714285714289,2020-11-23 +1948,19879.8,4.0,20.42857142857144,425.61904761904793,2020-11-23 +1947,19870.7,4.0,20.54761904761906,436.4285714285717,2020-11-23 +1946,19861.0,4.0,20.452380952380963,445.714285714286,2020-11-23 +1945,19851.8,4.0,20.523809523809536,444.95238095238125,2020-11-23 +1944,19842.0,4.0,20.66666666666668,444.0952380952384,2020-11-23 +1943,19832.7,4.0,20.7857142857143,434.2380952380955,2020-11-23 +1942,19823.6,4.0,21.09523809523811,432.1904761904765,2020-11-23 +1941,19813.7,4.0,21.119047619047635,431.9523809523812,2020-11-23 +1953,19926.6,4.0,21.21428571428573,441.9523809523812,2020-11-23 +1940,19803.9,4.0,21.071428571428587,439.3809523809527,2020-11-23 +1968,20036.9,4.0,21.04761904761906,183.4761904761906,2020-11-23 +1970,20037.0,4.0,19.642857142857157,255.9047619047621,2020-11-23 +1997,20236.9,4.0,18.00000000000001,403.6190476190479,2020-11-23 +1877,19222.5,4.0,18.023809523809536,406.2380952380955,2020-11-23 +1995,20217.0,4.0,17.571428571428584,396.5238095238098,2020-11-23 +1994,20207.2,4.0,17.6904761904762,382.5714285714288,2020-11-23 +1993,20196.2,4.0,17.90476190476192,381.1428571428574,2020-11-23 +1992,20186.0,4.0,18.00000000000001,387.52380952380975,2020-11-23 +1991,20176.1,4.0,18.023809523809536,385.38095238095264,2020-11-23 +1990,20165.6,4.0,17.928571428571438,377.8095238095241,2020-11-23 +1989,20155.1,4.0,17.880952380952394,373.7142857142859,2020-11-23 +1988,20144.8,4.0,18.09523809523811,374.19047619047643,2020-11-23 +1987,20134.3,4.0,17.97619047619049,375.5714285714288,2020-11-23 +1986,20124.2,4.0,17.833333333333343,378.90476190476215,2020-11-23 +1969,20036.9,4.0,20.880952380952394,229.09523809523824,2020-11-23 +1985,20114.3,4.0,17.619047619047628,371.1904761904764,2020-11-23 +1983,20092.3,4.0,17.595238095238106,363.52380952380975,2020-11-23 +1982,20082.4,4.0,17.66666666666668,368.5714285714288,2020-11-23 +1981,20071.8,4.0,17.642857142857153,377.57142857142884,2020-11-23 +1980,20061.5,4.0,17.61904761904763,393.28571428571456,2020-11-23 +1979,20050.8,4.0,16.095238095238106,402.38095238095264,2020-11-23 +1978,20041.3,4.0,17.571428571428584,428.14285714285745,2020-11-23 +1977,20037.0,4.0,21.52380952380954,364.714285714286,2020-11-23 +1976,20037.0,4.0,28.119047619047638,220.95238095238108,2020-11-23 +1975,20037.0,4.0,36.83333333333336,120.42857142857149,2020-11-23 +1973,20037.0,4.0,35.11904761904764,137.90476190476198,2020-11-23 +1972,20037.0,4.0,29.285714285714306,255.90476190476207,2020-11-23 +1971,20037.0,4.0,23.2857142857143,290.76190476190493,2020-11-23 +1984,20103.2,4.0,17.59523809523811,364.2380952380955,2020-11-23 +1939,19794.4,4.0,20.90476190476192,446.8571428571431,2020-11-23 +1938,19784.7,4.0,20.73809523809525,446.61904761904793,2020-11-23 +1937,19774.8,4.0,20.7857142857143,447.5238095238098,2020-11-23 +1905,19475.7,4.0,17.833333333333343,433.14285714285745,2020-11-23 +1904,19466.5,4.0,17.85714285714287,456.0952380952384,2020-11-23 +1903,19457.5,4.0,18.142857142857153,460.5238095238098,2020-11-23 +1902,19449.6,4.0,18.214285714285726,465.52380952380986,2020-11-23 +1901,19440.1,4.0,18.2857142857143,446.66666666666697,2020-11-23 +1900,19430.8,4.0,18.142857142857153,434.57142857142884,2020-11-23 +1899,19421.6,4.0,18.047619047619058,453.14285714285745,2020-11-23 +1898,19412.6,4.0,17.6904761904762,457.61904761904793,2020-11-23 +1897,19404.2,4.0,17.80952380952382,454.8571428571432,2020-11-23 +1896,19395.7,4.0,17.761904761904773,451.57142857142884,2020-11-23 +1895,19386.8,4.0,17.85714285714287,440.47619047619077,2020-11-23 +1894,19377.6,4.0,17.880952380952394,437.714285714286,2020-11-23 +1906,19484.2,4.0,17.690476190476204,395.1904761904765,2020-11-23 +1893,19368.5,4.0,17.880952380952394,444.00000000000034,2020-11-23 +1891,19350.9,4.0,17.690476190476204,443.2380952380955,2020-11-23 +1890,19342.5,4.0,17.66666666666668,447.5714285714289,2020-11-23 +1889,19333.3,4.0,17.619047619047628,442.76190476190504,2020-11-23 +1888,19324.1,4.0,17.714285714285726,454.1904761904765,2020-11-23 +1887,19315.2,4.0,17.904761904761916,449.61904761904793,2020-11-23 +1886,19305.4,4.0,18.238095238095248,449.28571428571456,2020-11-23 +1885,19296.5,4.0,18.11904761904763,412.61904761904793,2020-11-23 +1884,19287.5,4.0,17.92857142857144,371.33333333333354,2020-11-23 +1883,19279.4,4.0,17.61904761904763,341.52380952380975,2020-11-23 +1882,19271.3,4.0,17.61904761904763,343.1904761904764,2020-11-23 +1881,19262.1,4.0,17.66666666666668,359.9523809523812,2020-11-23 +1880,19252.7,4.0,17.97619047619049,405.0000000000003,2020-11-23 +1892,19359.6,4.0,17.690476190476204,446.80952380952414,2020-11-23 +1907,19492.6,4.0,17.690476190476204,396.1904761904765,2020-11-23 +1908,19501.3,4.0,17.571428571428584,409.8571428571431,2020-11-23 +1909,19510.2,4.0,17.85714285714287,411.90476190476215,2020-11-23 +1936,19765.3,4.0,21.09523809523811,455.9523809523813,2020-11-23 +1935,19755.8,4.0,21.071428571428584,453.66666666666697,2020-11-23 +1934,19746.6,4.0,20.97619047619049,455.80952380952414,2020-11-23 +1933,19736.5,4.0,20.761904761904773,457.714285714286,2020-11-23 +1932,19727.0,4.0,20.738095238095255,463.95238095238125,2020-11-23 +1931,19716.7,4.0,20.738095238095255,471.95238095238125,2020-11-23 +1930,19707.0,4.0,20.642857142857157,484.9523809523813,2020-11-23 +1929,19697.4,4.0,20.380952380952394,480.52380952380986,2020-11-23 +1928,19687.4,4.0,20.09523809523811,476.61904761904793,2020-11-23 +1927,19678.1,4.0,19.880952380952394,474.28571428571456,2020-11-23 +1926,19668.9,4.0,19.833333333333346,482.33333333333366,2020-11-23 +1925,19660.0,4.0,19.71428571428573,493.619047619048,2020-11-23 +1924,19650.8,4.0,19.452380952380967,523.2857142857147,2020-11-23 +1923,19641.6,4.0,19.40476190476192,535.2857142857147,2020-11-23 +1922,19631.8,4.0,19.2857142857143,519.6190476190479,2020-11-23 +1921,19622.5,4.0,19.023809523809536,503.4285714285718,2020-11-23 +1920,19613.5,4.0,18.714285714285726,487.61904761904793,2020-11-23 +1919,19603.4,4.0,18.66666666666668,469.4285714285718,2020-11-23 +1918,19593.5,4.0,18.500000000000014,477.66666666666697,2020-11-23 +1917,19584.2,4.0,18.738095238095248,484.80952380952414,2020-11-23 +1916,19574.8,4.0,18.7857142857143,467.666666666667,2020-11-23 +1915,19565.3,4.0,18.833333333333343,458.0476190476194,2020-11-23 +1914,19556.4,4.0,18.452380952380963,452.0476190476193,2020-11-23 +1913,19546.6,4.0,18.333333333333346,441.0476190476194,2020-11-23 +1912,19537.3,4.0,18.142857142857153,436.76190476190504,2020-11-23 +1911,19528.0,4.0,18.023809523809536,431.42857142857173,2020-11-23 +1910,19519.3,4.0,17.80952380952382,425.90476190476215,2020-11-23 +1998,20246.8,4.0,18.11904761904763,395.6190476190479,2020-11-23 +1999,20256.4,4.0,18.11904761904763,377.71428571428595,2020-11-23 +2000,20266.9,4.0,17.952380952380963,376.6190476190478,2020-11-23 +2001,20266.9,4.0,17.61904761904763,366.76190476190504,2020-11-23 +1801,18459.5,4.0,18.833333333333346,412.0476190476194,2020-11-23 +1802,18469.6,4.0,19.09523809523811,424.95238095238125,2020-11-23 +1803,18479.6,4.0,19.071428571428584,444.4285714285717,2020-11-23 +1804,18489.9,4.0,18.809523809523824,458.28571428571456,2020-11-23 +1805,18500.5,4.0,18.738095238095248,458.52380952380986,2020-11-23 +1806,18511.0,4.0,18.690476190476204,459.8095238095241,2020-11-23 +1807,18521.2,4.0,18.333333333333343,450.8571428571431,2020-11-23 +1808,18531.7,4.0,18.30952380952382,437.28571428571456,2020-11-23 +1809,18542.0,4.0,18.404761904761916,430.28571428571456,2020-11-23 +1810,18551.7,4.0,18.547619047619058,429.5238095238098,2020-11-23 +1811,18562.3,4.0,18.523809523809536,423.66666666666697,2020-11-23 +1812,18572.7,4.0,18.59523809523811,427.5714285714289,2020-11-23 +1800,18450.3,4.0,18.92857142857144,395.38095238095264,2020-11-23 +1813,18583.3,4.0,18.2857142857143,426.66666666666697,2020-11-23 +1815,18603.3,4.0,18.47619047619049,417.38095238095264,2020-11-23 +1816,18613.7,4.0,18.714285714285726,420.3333333333336,2020-11-23 +1817,18624.2,4.0,18.73809523809525,423.8571428571431,2020-11-23 +1818,18634.7,4.0,18.71428571428573,426.0952380952384,2020-11-23 +1819,18645.5,4.0,18.547619047619058,409.1904761904765,2020-11-23 +1820,18655.0,4.0,18.61904761904763,398.52380952380975,2020-11-23 +1821,18664.8,4.0,18.833333333333346,408.1904761904765,2020-11-23 +1822,18674.7,4.0,18.92857142857144,417.3333333333336,2020-11-23 +1823,18684.5,4.0,19.11904761904763,436.14285714285745,2020-11-23 +1824,18695.0,4.0,19.09523809523811,447.0476190476194,2020-11-23 +1825,18704.9,4.0,19.23809523809525,437.61904761904793,2020-11-23 +1826,18714.8,4.0,19.23809523809525,446.14285714285745,2020-11-23 +1814,18593.2,4.0,18.190476190476204,419.0000000000003,2020-11-23 +1799,18440.6,4.0,18.690476190476204,398.4285714285717,2020-11-23 +1798,18431.2,4.0,18.59523809523811,415.0476190476193,2020-11-23 +1797,18421.5,4.0,18.85714285714287,430.8095238095241,2020-11-23 +1770,18151.3,4.0,18.880952380952394,455.42857142857173,2020-11-23 +1771,18161.0,4.0,19.142857142857153,450.8095238095241,2020-11-23 +1772,18171.2,4.0,19.40476190476192,453.5714285714289,2020-11-23 +1773,18180.6,4.0,19.23809523809525,448.8571428571432,2020-11-23 +1774,18190.7,4.0,19.071428571428584,440.5714285714289,2020-11-23 +1775,18200.8,4.0,18.904761904761916,439.76190476190504,2020-11-23 +1776,18210.9,4.0,18.73809523809525,444.95238095238125,2020-11-23 +1777,18220.9,4.0,18.833333333333346,447.66666666666697,2020-11-23 +1778,18231.1,4.0,18.90476190476192,456.47619047619077,2020-11-23 +1779,18241.3,4.0,18.61904761904763,444.14285714285745,2020-11-23 +1780,18251.9,4.0,18.452380952380963,424.1904761904765,2020-11-23 +1781,18261.5,4.0,18.404761904761916,403.1904761904765,2020-11-23 +1782,18271.3,4.0,18.35714285714287,402.19047619047643,2020-11-23 +1783,18281.4,4.0,18.452380952380963,416.3333333333336,2020-11-23 +1784,18291.1,4.0,18.35714285714287,439.66666666666697,2020-11-23 +1785,18300.9,4.0,17.90476190476192,455.8095238095241,2020-11-23 +1786,18311.1,4.0,17.642857142857153,459.80952380952414,2020-11-23 +1787,18321.5,4.0,17.85714285714287,458.714285714286,2020-11-23 +1788,18331.4,4.0,18.50000000000001,463.61904761904793,2020-11-23 +1789,18341.6,4.0,19.09523809523811,459.3809523809527,2020-11-23 +1790,18351.4,4.0,19.380952380952394,459.1904761904765,2020-11-23 +1791,18361.5,4.0,19.30952380952382,453.52380952380986,2020-11-23 +1792,18370.9,4.0,18.952380952380963,450.47619047619077,2020-11-23 +1793,18381.2,4.0,18.809523809523824,448.3333333333336,2020-11-23 +1794,18391.4,4.0,18.880952380952394,443.90476190476215,2020-11-23 +1795,18400.9,4.0,18.7857142857143,445.8095238095241,2020-11-23 +1796,18411.0,4.0,18.833333333333346,443.61904761904793,2020-11-23 +1827,18725.2,4.0,19.309523809523824,447.95238095238125,2020-11-23 +1768,18130.8,4.0,18.809523809523824,457.8571428571432,2020-11-23 +1828,18735.1,4.0,19.23809523809525,454.0952380952384,2020-11-23 +1830,18755.7,4.0,18.97619047619049,453.3333333333336,2020-11-23 +1862,19078.1,4.0,18.50000000000001,418.3333333333336,2020-11-23 +1863,19088.0,4.0,18.452380952380963,403.714285714286,2020-11-23 +1864,19097.8,4.0,18.61904761904763,406.1904761904765,2020-11-23 +1865,19107.5,4.0,18.571428571428584,390.09523809523836,2020-11-23 +1866,19117.1,4.0,18.571428571428584,373.28571428571456,2020-11-23 +1867,19126.2,4.0,18.500000000000014,369.52380952380975,2020-11-23 +1868,19135.9,4.0,18.190476190476204,374.90476190476215,2020-11-23 +1869,19145.5,4.0,17.952380952380963,385.0952380952383,2020-11-23 +1870,19155.6,4.0,17.833333333333346,390.90476190476215,2020-11-23 +1871,19165.6,4.0,17.66666666666668,364.1904761904765,2020-11-23 +1872,19175.5,4.0,17.761904761904773,342.0952380952383,2020-11-23 +1873,19184.8,4.0,17.952380952380963,349.8095238095241,2020-11-23 +1861,19067.6,4.0,18.452380952380963,429.90476190476215,2020-11-23 +1874,19193.9,4.0,17.80952380952382,361.52380952380975,2020-11-23 +1876,19213.4,4.0,17.97619047619049,404.6666666666669,2020-11-23 +2012,20314.7,4.0,15.809523809523874,124.42857142857162,2020-11-23 +2011,20308.1,4.0,23.95238095238097,154.8095238095239,2020-11-23 +2010,20301.4,4.0,24.214285714285733,169.76190476190487,2020-11-23 +2009,20298.8,4.0,26.76190476190478,155.0000000000001,2020-11-23 +2008,20296.8,4.0,34.88095238095241,138.2857142857144,2020-11-23 +2007,20295.5,4.0,32.80952380952383,134.57142857142867,2020-11-23 +2006,20292.4,4.0,28.523809523809547,139.4285714285715,2020-11-23 +2005,20291.1,4.0,28.357142857142875,125.19047619047628,2020-11-23 +2004,20289.1,4.0,19.214285714285726,169.66666666666677,2020-11-23 +2003,20266.9,4.0,15.523809523809533,244.61904761904776,2020-11-23 +2002,20266.9,4.0,19.23809523809525,306.6190476190478,2020-11-23 +1875,19203.8,4.0,17.97619047619049,387.0000000000002,2020-11-23 +1860,19057.2,4.0,18.523809523809536,423.8571428571431,2020-11-23 +1859,19046.8,4.0,18.61904761904763,412.3333333333336,2020-11-23 +1858,19036.9,4.0,18.952380952380963,409.4285714285717,2020-11-23 +1831,18765.5,4.0,19.000000000000014,442.00000000000034,2020-11-23 +1832,18775.7,4.0,18.92857142857144,431.14285714285745,2020-11-23 +1833,18785.8,4.0,18.97619047619049,425.76190476190504,2020-11-23 +1834,18795.3,4.0,19.142857142857153,447.61904761904793,2020-11-23 +1835,18805.4,4.0,19.261904761904773,450.42857142857173,2020-11-23 +1836,18815.7,4.0,19.071428571428584,464.1904761904765,2020-11-23 +1837,18826.0,4.0,19.16666666666668,464.0476190476194,2020-11-23 +1838,18836.3,4.0,19.23809523809525,450.0000000000003,2020-11-23 +1839,18846.2,4.0,19.2857142857143,458.76190476190504,2020-11-23 +1840,18856.5,4.0,19.47619047619049,461.8571428571432,2020-11-23 +1841,18866.5,4.0,19.500000000000014,449.76190476190504,2020-11-23 +1842,18876.4,4.0,19.571428571428584,435.6190476190479,2020-11-23 +1843,18886.3,4.0,19.642857142857157,429.0000000000002,2020-11-23 +1844,18896.5,4.0,19.71428571428573,425.47619047619077,2020-11-23 +1845,18906.3,4.0,19.571428571428584,439.1904761904765,2020-11-23 +1846,18916.1,4.0,19.47619047619049,447.2380952380955,2020-11-23 +1847,18926.0,4.0,19.261904761904773,450.2380952380955,2020-11-23 +1848,18936.0,4.0,19.23809523809525,432.9523809523812,2020-11-23 +1849,18946.3,4.0,19.071428571428584,411.76190476190504,2020-11-23 +1850,18955.6,4.0,18.952380952380963,397.714285714286,2020-11-23 +1851,18966.2,4.0,18.500000000000014,389.14285714285745,2020-11-23 +1852,18975.7,4.0,18.452380952380963,385.66666666666697,2020-11-23 +1853,18986.5,4.0,18.333333333333346,384.1904761904765,2020-11-23 +1854,18996.3,4.0,18.61904761904763,383.09523809523836,2020-11-23 +1855,19006.7,4.0,18.880952380952394,388.4761904761907,2020-11-23 +1856,19017.0,4.0,19.16666666666668,390.0000000000003,2020-11-23 +1857,19026.8,4.0,19.047619047619058,396.6190476190478,2020-11-23 +1829,18745.4,4.0,19.2857142857143,452.47619047619077,2020-11-23 +1525,15831.8,4.0,18.30952380952382,258.3809523809526,2020-11-23 +1574,16189.2,4.0,20.47619047619049,462.33333333333366,2020-11-23 +1523,15811.0,4.0,17.7857142857143,464.14285714285745,2020-11-23 +1193,12239.3,4.0,17.404761904761916,456.0952380952384,2020-11-23 +1194,12250.2,4.0,17.642857142857153,455.61904761904793,2020-11-23 +1195,12261.0,4.0,17.7857142857143,449.95238095238125,2020-11-23 +1196,12272.0,4.0,17.833333333333343,439.80952380952414,2020-11-23 +1197,12283.4,4.0,17.7857142857143,435.52380952380986,2020-11-23 +1198,12294.8,4.0,17.642857142857153,437.4285714285717,2020-11-23 +1199,12306.3,4.0,17.404761904761916,434.52380952380986,2020-11-23 +1200,12318.1,4.0,17.50000000000001,430.8571428571431,2020-11-23 +1201,12329.8,4.0,17.547619047619058,427.1904761904765,2020-11-23 +1202,12340.6,4.0,17.428571428571438,427.2380952380955,2020-11-23 +1203,12352.1,4.0,17.30952380952382,434.0000000000003,2020-11-23 +1204,12363.2,4.0,17.404761904761916,439.1904761904765,2020-11-23 +1192,12228.4,4.0,17.452380952380963,457.38095238095275,2020-11-23 +1205,12374.2,4.0,17.50000000000001,432.14285714285745,2020-11-23 +1207,12396.4,4.0,17.61904761904763,428.2380952380955,2020-11-23 +1208,12407.5,4.0,17.428571428571438,431.14285714285745,2020-11-23 +1209,12418.5,4.0,17.333333333333343,446.47619047619077,2020-11-23 +1210,12429.9,4.0,17.333333333333346,450.8571428571431,2020-11-23 +1211,12441.4,4.0,17.261904761904773,444.0952380952384,2020-11-23 +1212,12452.7,4.0,17.16666666666668,440.5714285714289,2020-11-23 +1213,12463.6,4.0,17.047619047619058,429.76190476190504,2020-11-23 +1214,12475.0,4.0,17.071428571428584,428.0476190476194,2020-11-23 +1215,12486.0,4.0,17.35714285714287,437.3333333333336,2020-11-23 +1216,12496.3,4.0,17.738095238095248,431.28571428571456,2020-11-23 +1217,12507.0,4.0,17.7857142857143,424.1904761904765,2020-11-23 +1218,12518.5,4.0,17.66666666666668,427.61904761904793,2020-11-23 +1206,12385.4,4.0,17.642857142857153,432.3809523809527,2020-11-23 +1219,12529.6,4.0,17.547619047619058,425.57142857142884,2020-11-23 +1191,12217.2,4.0,17.571428571428584,454.5714285714289,2020-11-23 +1189,12194.9,4.0,17.690476190476204,469.5714285714289,2020-11-23 +1163,11908.8,4.0,18.333333333333343,440.3333333333336,2020-11-23 +1164,11919.1,4.0,18.11904761904763,457.14285714285745,2020-11-23 +1165,11929.8,4.0,18.023809523809536,460.0952380952384,2020-11-23 +1166,11941.0,4.0,18.00000000000001,457.2380952380955,2020-11-23 +1167,11951.9,4.0,18.095238095238106,455.42857142857173,2020-11-23 +1168,11963.2,4.0,18.095238095238106,453.14285714285745,2020-11-23 +1169,11973.5,4.0,18.214285714285726,450.9047619047622,2020-11-23 +1170,11984.8,4.0,18.11904761904763,461.90476190476227,2020-11-23 +1171,11995.7,4.0,18.023809523809536,472.3809523809527,2020-11-23 +1172,12006.6,4.0,17.92857142857144,479.714285714286,2020-11-23 +1173,12018.0,4.0,17.92857142857144,498.9523809523813,2020-11-23 +1174,12028.9,4.0,17.595238095238106,499.14285714285745,2020-11-23 +1190,12206.1,4.0,17.595238095238106,462.2380952380955,2020-11-23 +1175,12040.1,4.0,17.619047619047628,484.00000000000034,2020-11-23 +1177,12062.5,4.0,17.714285714285726,450.8571428571432,2020-11-23 +1178,12072.9,4.0,17.833333333333343,425.4761904761907,2020-11-23 +1179,12084.8,4.0,17.880952380952394,422.28571428571456,2020-11-23 +1180,12095.9,4.0,17.904761904761916,420.0000000000003,2020-11-23 +1181,12106.1,4.0,17.90476190476192,426.0476190476193,2020-11-23 +1182,12117.0,4.0,17.880952380952394,431.28571428571456,2020-11-23 +1183,12127.8,4.0,17.619047619047628,433.95238095238125,2020-11-23 +1184,12139.0,4.0,17.547619047619058,425.00000000000034,2020-11-23 +1185,12150.2,4.0,17.66666666666668,426.1428571428574,2020-11-23 +1186,12161.1,4.0,17.761904761904773,440.714285714286,2020-11-23 +1187,12172.1,4.0,17.880952380952394,455.47619047619077,2020-11-23 +1188,12183.8,4.0,17.85714285714287,465.71428571428606,2020-11-23 +1176,12051.4,4.0,17.7857142857143,468.0476190476194,2020-11-23 +1220,12540.4,4.0,17.428571428571438,425.76190476190504,2020-11-23 +1221,12551.5,4.0,17.30952380952382,430.1904761904765,2020-11-23 +1222,12562.3,4.0,17.452380952380963,423.0952380952384,2020-11-23 +1254,12911.7,4.0,17.30952380952382,436.0952380952384,2020-11-23 +1255,12923.4,4.0,17.452380952380963,433.2380952380955,2020-11-23 +1256,12934.3,4.0,17.428571428571438,436.90476190476215,2020-11-23 +1257,12945.1,4.0,17.66666666666668,428.90476190476215,2020-11-23 +1258,12955.7,4.0,17.738095238095248,414.28571428571456,2020-11-23 +1259,12967.4,4.0,17.523809523809536,419.90476190476215,2020-11-23 +1260,12978.6,4.0,17.023809523809536,411.4285714285717,2020-11-23 +1261,12989.3,4.0,17.047619047619058,403.3333333333336,2020-11-23 +1262,13000.8,4.0,17.16666666666668,407.5238095238098,2020-11-23 +1263,13012.5,4.0,17.261904761904773,405.4761904761907,2020-11-23 +1264,13022.7,4.0,17.333333333333346,410.9047619047622,2020-11-23 +1265,13034.2,4.0,17.42857142857144,409.714285714286,2020-11-23 +1253,12900.9,4.0,17.47619047619049,434.714285714286,2020-11-23 +1266,13045.4,4.0,17.2857142857143,406.8571428571431,2020-11-23 +1268,13067.4,4.0,17.42857142857144,402.76190476190504,2020-11-23 +1269,13078.4,4.0,17.238095238095248,425.714285714286,2020-11-23 +1270,13089.1,4.0,17.35714285714287,448.52380952380986,2020-11-23 +1271,13100.5,4.0,17.47619047619049,444.33333333333366,2020-11-23 +1272,13111.2,4.0,17.59523809523811,434.8095238095241,2020-11-23 +1273,13122.3,4.0,17.66666666666668,425.66666666666697,2020-11-23 +1274,13133.3,4.0,17.80952380952382,421.2380952380955,2020-11-23 +1275,13144.6,4.0,17.80952380952382,419.5714285714289,2020-11-23 +1276,13155.3,4.0,17.833333333333343,417.0000000000003,2020-11-23 +1277,13166.4,4.0,17.785714285714295,411.5714285714289,2020-11-23 +1278,13177.2,4.0,17.97619047619049,422.61904761904793,2020-11-23 +1279,13187.5,4.0,17.761904761904773,423.38095238095264,2020-11-23 +1267,13056.6,4.0,17.2857142857143,400.61904761904793,2020-11-23 +1252,12890.5,4.0,17.30952380952382,405.04761904761926,2020-11-23 +1251,12879.5,4.0,17.119047619047628,399.04761904761926,2020-11-23 +1250,12868.7,4.0,17.023809523809536,399.09523809523836,2020-11-23 +1223,12573.2,4.0,17.30952380952382,416.1904761904765,2020-11-23 +1224,12583.9,4.0,17.1904761904762,418.52380952380986,2020-11-23 +1225,12595.4,4.0,17.047619047619058,423.28571428571456,2020-11-23 +1226,12606.6,4.0,17.142857142857153,425.2380952380955,2020-11-23 +1227,12618.1,4.0,17.047619047619058,427.3333333333336,2020-11-23 +1228,12629.1,4.0,17.047619047619058,434.66666666666697,2020-11-23 +1229,12640.3,4.0,17.42857142857144,435.714285714286,2020-11-23 +1230,12650.9,4.0,17.92857142857144,443.3333333333336,2020-11-23 +1524,15821.2,4.0,18.190476190476204,414.8571428571431,2020-11-23 +1232,12672.1,4.0,18.47619047619049,444.28571428571456,2020-11-23 +1233,12683.2,4.0,18.333333333333343,435.52380952380986,2020-11-23 +1234,12694.2,4.0,18.023809523809536,427.14285714285745,2020-11-23 +1235,12705.2,4.0,17.92857142857144,415.66666666666697,2020-11-23 +1236,12715.9,4.0,17.880952380952394,421.3809523809527,2020-11-23 +1237,12727.0,4.0,17.595238095238106,422.1428571428574,2020-11-23 +1238,12737.8,4.0,17.428571428571438,415.38095238095264,2020-11-23 +1239,12748.3,4.0,17.214285714285726,405.9523809523812,2020-11-23 +1240,12759.7,4.0,17.214285714285722,402.0000000000003,2020-11-23 +1241,12770.5,4.0,17.261904761904773,381.4761904761907,2020-11-23 +1242,12781.3,4.0,17.35714285714287,378.38095238095264,2020-11-23 +1243,12792.1,4.0,17.452380952380963,372.04761904761926,2020-11-23 +1244,12803.0,4.0,17.714285714285722,381.3333333333336,2020-11-23 +1245,12813.6,4.0,17.880952380952394,387.38095238095264,2020-11-23 +1246,12824.1,4.0,17.952380952380963,407.42857142857173,2020-11-23 +1247,12834.6,4.0,17.928571428571438,412.8571428571431,2020-11-23 +1248,12845.5,4.0,17.642857142857153,411.0476190476193,2020-11-23 +1249,12857.5,4.0,17.35714285714287,398.5238095238098,2020-11-23 +1162,11897.4,4.0,18.2857142857143,431.1904761904765,2020-11-23 +1161,11886.5,4.0,17.97619047619049,426.4285714285717,2020-11-23 +1160,11875.4,4.0,18.00000000000001,428.42857142857173,2020-11-23 +1159,11863.9,4.0,17.92857142857144,436.42857142857173,2020-11-23 +1069,11000.2,4.0,17.50000000000001,458.3809523809527,2020-11-23 +1070,11010.8,4.0,17.6904761904762,460.14285714285745,2020-11-23 +1071,11021.1,4.0,17.714285714285726,455.2857142857146,2020-11-23 +1072,11031.7,4.0,17.61904761904763,458.3333333333336,2020-11-23 +1073,11042.1,4.0,17.35714285714287,460.9047619047622,2020-11-23 +1074,11053.1,4.0,17.190476190476204,468.7619047619051,2020-11-23 +1075,11063.9,4.0,17.214285714285726,446.66666666666697,2020-11-23 +1076,11074.4,4.0,17.095238095238106,430.38095238095264,2020-11-23 +1077,11084.6,4.0,16.97619047619049,401.28571428571456,2020-11-23 +1078,11095.3,4.0,16.642857142857153,382.1904761904765,2020-11-23 +1079,11105.2,4.0,16.571428571428584,378.2380952380955,2020-11-23 +1080,11116.0,4.0,16.761904761904773,391.8571428571431,2020-11-23 +1068,10989.6,4.0,17.30952380952382,464.8571428571431,2020-11-23 +1081,11126.0,4.0,17.00000000000001,407.61904761904793,2020-11-23 +1083,11147.9,4.0,17.071428571428584,429.47619047619077,2020-11-23 +1084,11159.0,4.0,17.023809523809536,443.5714285714289,2020-11-23 +1085,11169.2,4.0,17.142857142857153,460.61904761904793,2020-11-23 +1086,11180.1,4.0,17.119047619047628,457.0952380952384,2020-11-23 +1087,11191.4,4.0,17.11904761904763,472.714285714286,2020-11-23 +1088,11202.2,4.0,17.30952380952382,472.38095238095275,2020-11-23 +1089,11212.6,4.0,17.428571428571438,475.71428571428606,2020-11-23 +1090,11223.4,4.0,17.59523809523811,483.9523809523813,2020-11-23 +1091,11233.8,4.0,17.761904761904773,491.5714285714289,2020-11-23 +1092,11244.1,4.0,17.714285714285722,484.80952380952414,2020-11-23 +1093,11255.6,4.0,17.571428571428584,474.2857142857146,2020-11-23 +1094,11266.7,4.0,17.714285714285722,455.666666666667,2020-11-23 +1082,11136.9,4.0,17.11904761904763,423.8571428571431,2020-11-23 +1067,10978.8,4.0,17.238095238095248,463.42857142857173,2020-11-23 +1066,10967.7,4.0,17.452380952380963,458.2380952380955,2020-11-23 +1065,10957.4,4.0,17.7857142857143,454.8571428571432,2020-11-23 +1038,10666.4,4.0,17.880952380952394,500.0952380952384,2020-11-23 +1039,10677.0,4.0,17.761904761904773,502.52380952380986,2020-11-23 +1040,10688.0,4.0,17.738095238095248,494.19047619047655,2020-11-23 +1041,10698.6,4.0,18.023809523809536,475.4761904761908,2020-11-23 +1042,10708.8,4.0,18.190476190476204,463.14285714285745,2020-11-23 +1043,10718.4,4.0,18.11904761904763,460.9047619047622,2020-11-23 +1044,10729.9,4.0,17.80952380952382,461.0476190476194,2020-11-23 +1045,10741.1,4.0,17.47619047619049,468.2857142857146,2020-11-23 +1046,10752.1,4.0,17.333333333333343,467.2857142857146,2020-11-23 +1047,10763.0,4.0,17.642857142857153,459.66666666666697,2020-11-23 +1048,10774.0,4.0,17.690476190476204,460.0476190476194,2020-11-23 +1049,10784.9,4.0,17.61904761904763,463.14285714285745,2020-11-23 +1050,10796.0,4.0,17.214285714285726,462.8095238095241,2020-11-23 +1051,10807.2,4.0,17.119047619047628,469.4761904761908,2020-11-23 +1052,10818.0,4.0,17.023809523809536,463.00000000000034,2020-11-23 +1053,10828.6,4.0,17.35714285714287,455.8571428571432,2020-11-23 +1054,10839.2,4.0,17.6904761904762,457.90476190476227,2020-11-23 +1055,10849.5,4.0,17.85714285714287,463.619047619048,2020-11-23 +1056,10860.0,4.0,17.80952380952382,476.8095238095241,2020-11-23 +1057,10870.7,4.0,17.714285714285722,481.33333333333366,2020-11-23 +1058,10881.0,4.0,17.523809523809533,469.4761904761908,2020-11-23 +1059,10892.2,4.0,17.452380952380963,471.2380952380955,2020-11-23 +1060,10903.2,4.0,17.452380952380963,473.7619047619051,2020-11-23 +1061,10914.0,4.0,17.47619047619049,472.66666666666697,2020-11-23 +1062,10925.1,4.0,17.7857142857143,470.38095238095275,2020-11-23 +1063,10935.5,4.0,17.952380952380963,461.3809523809527,2020-11-23 +1064,10946.5,4.0,18.023809523809536,456.0000000000003,2020-11-23 +1095,11277.5,4.0,17.761904761904773,441.90476190476215,2020-11-23 +1280,13198.5,4.0,17.571428571428584,429.0952380952384,2020-11-23 +1096,11287.6,4.0,17.547619047619058,438.9047619047622,2020-11-23 +1098,11309.5,4.0,17.500000000000014,473.666666666667,2020-11-23 +1130,11647.6,4.0,17.97619047619049,461.8571428571432,2020-11-23 +1131,11657.7,4.0,18.00000000000001,458.47619047619077,2020-11-23 +1132,11668.0,4.0,18.261904761904773,461.3809523809527,2020-11-23 +1133,11678.4,4.0,18.61904761904763,481.42857142857173,2020-11-23 +1134,11688.2,4.0,19.571428571428584,430.714285714286,2020-11-23 +1135,11688.2,4.0,17.42857142857144,342.66666666666686,2020-11-23 +1136,11688.2,4.0,17.142857142857153,252.7142857142859,2020-11-23 +1137,11707.8,4.0,16.761904761904773,182.42857142857153,2020-11-23 +1138,11708.3,4.0,19.642857142857153,146.38095238095246,2020-11-23 +1139,11708.6,4.0,17.904761904761916,177.33333333333346,2020-11-23 +1140,11709.0,4.0,21.71428571428573,159.04761904761915,2020-11-23 +1141,11709.6,4.0,25.3809523809524,117.14285714285722,2020-11-23 +1129,11637.1,4.0,17.85714285714287,459.1904761904765,2020-11-23 +1144,11710.1,4.0,33.33333333333336,127.85714285714292,2020-11-23 +1146,11729.4,4.0,16.119047619047628,407.38095238095264,2020-11-23 +1148,11748.1,4.0,18.333333333333343,441.66666666666697,2020-11-23 +1149,11758.5,4.0,18.50000000000001,432.3333333333336,2020-11-23 +1150,11768.6,4.0,18.738095238095248,442.61904761904793,2020-11-23 +1151,11779.2,4.0,18.761904761904773,440.0952380952384,2020-11-23 +1152,11789.7,4.0,18.59523809523811,432.76190476190504,2020-11-23 +1153,11800.5,4.0,18.190476190476204,430.52380952380975,2020-11-23 +1154,11811.4,4.0,17.97619047619049,421.0000000000003,2020-11-23 +1155,11821.5,4.0,17.90476190476192,421.3333333333336,2020-11-23 +1156,11832.2,4.0,18.11904761904763,435.3333333333336,2020-11-23 +1157,11842.7,4.0,18.071428571428584,438.76190476190504,2020-11-23 +1158,11853.6,4.0,18.023809523809536,440.0000000000003,2020-11-23 +1145,11723.3,4.0,22.35714285714287,272.2380952380954,2020-11-23 +1128,11626.6,4.0,17.785714285714295,455.0476190476194,2020-11-23 +1127,11616.6,4.0,17.80952380952382,457.3333333333336,2020-11-23 +1126,11606.2,4.0,17.66666666666668,457.95238095238125,2020-11-23 +1099,11320.4,4.0,17.619047619047628,479.2380952380956,2020-11-23 +1100,11330.4,4.0,17.97619047619049,486.0952380952384,2020-11-23 +1101,11341.8,4.0,18.142857142857153,490.95238095238125,2020-11-23 +1102,11352.8,4.0,17.904761904761916,486.0476190476194,2020-11-23 +1103,11363.8,4.0,17.642857142857153,481.4761904761908,2020-11-23 +1104,11374.8,4.0,17.738095238095248,468.5238095238098,2020-11-23 +1105,11385.1,4.0,17.761904761904773,453.76190476190504,2020-11-23 +1106,11395.7,4.0,17.85714285714287,445.5238095238098,2020-11-23 +1107,11406.1,4.0,17.6904761904762,452.14285714285745,2020-11-23 +1108,11416.2,4.0,17.261904761904773,450.2380952380956,2020-11-23 +1109,11428.0,4.0,17.214285714285726,454.9523809523812,2020-11-23 +1110,11438.8,4.0,17.333333333333343,456.1904761904765,2020-11-23 +1111,11449.1,4.0,17.40476190476192,452.00000000000034,2020-11-23 +1112,11459.9,4.0,17.642857142857153,449.57142857142884,2020-11-23 +1113,11470.1,4.0,17.738095238095248,436.0000000000003,2020-11-23 +1114,11480.5,4.0,17.904761904761916,422.95238095238125,2020-11-23 +1115,11490.6,4.0,18.09523809523811,433.14285714285745,2020-11-23 +1116,11500.6,4.0,18.047619047619058,442.61904761904793,2020-11-23 +1117,11511.4,4.0,17.80952380952382,454.38095238095264,2020-11-23 +1118,11522.6,4.0,17.59523809523811,461.5714285714289,2020-11-23 +1119,11533.3,4.0,17.404761904761916,452.61904761904793,2020-11-23 +1120,11543.9,4.0,17.404761904761916,429.8571428571431,2020-11-23 +1121,11554.5,4.0,17.59523809523811,414.3333333333336,2020-11-23 +1122,11565.1,4.0,17.85714285714287,402.2380952380955,2020-11-23 +1123,11574.8,4.0,17.928571428571438,414.1904761904765,2020-11-23 +1124,11584.8,4.0,18.023809523809536,427.714285714286,2020-11-23 +1125,11595.6,4.0,17.880952380952394,445.8095238095241,2020-11-23 +1097,11298.6,4.0,17.404761904761916,454.1428571428574,2020-11-23 +1281,13210.1,4.0,17.61904761904763,426.61904761904793,2020-11-23 +1231,12661.2,4.0,18.23809523809525,449.76190476190504,2020-11-23 +1283,13230.6,4.0,17.61904761904763,428.38095238095264,2020-11-23 +1427,14802.2,4.0,17.30952380952382,406.5238095238098,2020-11-23 +1428,14812.9,4.0,17.61904761904763,430.57142857142884,2020-11-23 +1429,14823.9,4.0,17.85714285714287,430.61904761904793,2020-11-23 +1430,14834.4,4.0,18.40476190476192,417.714285714286,2020-11-23 +1431,14844.9,4.0,18.47619047619049,413.4285714285717,2020-11-23 +1432,14854.9,4.0,18.66666666666668,418.47619047619077,2020-11-23 +1433,14865.9,4.0,18.452380952380963,412.61904761904793,2020-11-23 +1434,14876.5,4.0,18.16666666666668,428.76190476190504,2020-11-23 +1435,14887.6,4.0,18.095238095238106,430.42857142857173,2020-11-23 +1436,14898.7,4.0,18.50000000000001,433.38095238095264,2020-11-23 +1437,14908.6,4.0,18.571428571428584,435.42857142857173,2020-11-23 +1438,14919.1,4.0,18.61904761904763,441.09523809523836,2020-11-23 +1439,14930.0,4.0,18.380952380952394,434.0000000000003,2020-11-23 +1440,14940.5,4.0,18.071428571428584,434.95238095238125,2020-11-23 +1441,14951.4,4.0,18.071428571428584,440.714285714286,2020-11-23 +1442,14961.8,4.0,18.2857142857143,454.0476190476194,2020-11-23 +1443,14972.2,4.0,18.59523809523811,451.61904761904793,2020-11-23 +1444,14982.3,4.0,18.66666666666668,463.0952380952384,2020-11-23 +1445,14992.5,4.0,18.452380952380963,459.0476190476193,2020-11-23 +1446,15003.1,4.0,18.2857142857143,459.47619047619077,2020-11-23 +1447,15013.5,4.0,18.333333333333343,455.3809523809527,2020-11-23 +1448,15023.5,4.0,18.428571428571438,439.2380952380955,2020-11-23 +1449,15033.2,4.0,18.61904761904763,415.4285714285717,2020-11-23 +1450,15042.9,4.0,18.523809523809536,402.1904761904765,2020-11-23 +1451,15053.6,4.0,18.238095238095248,383.8095238095241,2020-11-23 +1452,15063.3,4.0,17.97619047619049,385.04761904761926,2020-11-23 +1453,15073.8,4.0,17.952380952380963,388.28571428571456,2020-11-23 +1454,15083.9,4.0,18.000000000000014,401.8571428571431,2020-11-23 +1455,15094.0,4.0,18.000000000000014,404.0000000000002,2020-11-23 +1426,14791.3,4.0,17.285714285714295,401.4761904761907,2020-11-23 +1425,14780.4,4.0,17.214285714285726,384.9523809523812,2020-11-23 +1424,14769.5,4.0,17.35714285714287,387.1904761904765,2020-11-23 +1423,14758.9,4.0,17.404761904761916,395.66666666666697,2020-11-23 +1393,14439.4,4.0,18.000000000000014,391.2380952380955,2020-11-23 +1394,14449.9,4.0,17.714285714285726,401.9523809523812,2020-11-23 +1395,14461.1,4.0,17.6904761904762,402.38095238095264,2020-11-23 +1396,14472.1,4.0,17.714285714285726,405.0952380952384,2020-11-23 +1397,14483.2,4.0,17.880952380952394,394.28571428571456,2020-11-23 +1398,14494.2,4.0,17.80952380952382,406.1904761904765,2020-11-23 +1399,14505.3,4.0,17.714285714285726,424.8571428571431,2020-11-23 +1400,14515.4,4.0,17.714285714285726,442.714285714286,2020-11-23 +1401,14526.9,4.0,17.928571428571438,449.90476190476215,2020-11-23 +1402,14538.1,4.0,18.047619047619058,462.76190476190504,2020-11-23 +1403,14548.5,4.0,18.404761904761916,454.1904761904765,2020-11-23 +1404,14558.9,4.0,18.690476190476204,458.95238095238125,2020-11-23 +1405,14569.3,4.0,18.809523809523824,453.714285714286,2020-11-23 +1406,14579.8,4.0,18.880952380952394,436.714285714286,2020-11-23 +1456,15104.8,4.0,18.000000000000014,410.90476190476215,2020-11-23 +1407,14590.6,4.0,18.85714285714287,414.9047619047622,2020-11-23 +1409,14609.7,4.0,18.452380952380963,409.76190476190504,2020-11-23 +1410,14620.7,4.0,18.333333333333346,409.0000000000002,2020-11-23 +1411,14631.7,4.0,18.00000000000001,409.95238095238125,2020-11-23 +1412,14641.7,4.0,18.09523809523811,422.8571428571432,2020-11-23 +1413,14652.7,4.0,18.35714285714287,424.8095238095241,2020-11-23 +1414,14663.2,4.0,18.833333333333343,424.0000000000003,2020-11-23 +1415,14673.8,4.0,18.880952380952394,416.76190476190504,2020-11-23 +1416,14684.5,4.0,18.92857142857144,413.76190476190504,2020-11-23 +1417,14695.5,4.0,18.66666666666668,422.8095238095241,2020-11-23 +1418,14706.0,4.0,18.571428571428584,457.3809523809527,2020-11-23 +1419,14716.5,4.0,18.47619047619049,472.66666666666697,2020-11-23 +1420,14727.1,4.0,18.30952380952382,475.5238095238098,2020-11-23 +1421,14737.5,4.0,18.000000000000014,443.714285714286,2020-11-23 +1422,14748.3,4.0,17.738095238095248,420.5714285714289,2020-11-23 +1408,14600.9,4.0,18.7857142857143,409.28571428571456,2020-11-23 +1392,14428.1,4.0,18.2857142857143,405.0000000000002,2020-11-23 +1457,15115.3,4.0,17.952380952380963,422.2380952380955,2020-11-23 +1459,15136.8,4.0,18.142857142857153,434.0000000000003,2020-11-23 +1494,15510.0,4.0,18.90476190476192,444.0476190476193,2020-11-23 +1495,15519.4,4.0,18.97619047619049,452.1904761904765,2020-11-23 +1496,15529.6,4.0,18.97619047619049,456.8095238095241,2020-11-23 +1497,15540.1,4.0,18.90476190476192,454.1904761904765,2020-11-23 +1498,15550.4,4.0,18.761904761904773,454.14285714285745,2020-11-23 +1499,15561.0,4.0,18.761904761904773,457.8095238095241,2020-11-23 +1500,15571.4,4.0,18.738095238095248,458.42857142857173,2020-11-23 +1501,15581.5,4.0,18.738095238095248,462.3809523809527,2020-11-23 +1502,15591.7,4.0,18.59523809523811,456.76190476190504,2020-11-23 +1503,15602.2,4.0,18.61904761904763,455.14285714285745,2020-11-23 +1504,15613.1,4.0,18.428571428571438,451.5714285714289,2020-11-23 +1505,15623.8,4.0,18.2857142857143,448.8095238095241,2020-11-23 +1506,15634.4,4.0,18.190476190476204,437.5714285714289,2020-11-23 +1507,15645.3,4.0,18.190476190476204,432.0476190476194,2020-11-23 +1508,15655.6,4.0,18.2857142857143,433.66666666666697,2020-11-23 +1509,15665.9,4.0,18.523809523809536,423.61904761904793,2020-11-23 +1510,15676.0,4.0,18.47619047619049,420.4761904761907,2020-11-23 +1511,15686.7,4.0,18.404761904761916,415.8571428571431,2020-11-23 +1512,15696.6,4.0,18.16666666666668,403.5714285714288,2020-11-23 +1513,15706.9,4.0,18.35714285714287,403.38095238095264,2020-11-23 +1514,15717.2,4.0,18.547619047619058,404.42857142857173,2020-11-23 +1515,15726.6,4.0,18.833333333333346,398.714285714286,2020-11-23 +1516,15737.2,4.0,18.61904761904763,399.2380952380955,2020-11-23 +1517,15747.8,4.0,18.42857142857144,408.8095238095241,2020-11-23 +1518,15758.6,4.0,17.92857142857144,423.8095238095241,2020-11-23 +1519,15768.7,4.0,17.547619047619058,438.5238095238098,2020-11-23 +1520,15779.2,4.0,17.547619047619058,428.09523809523836,2020-11-23 +1521,15790.5,4.0,17.690476190476204,424.714285714286,2020-11-23 +1522,15800.5,4.0,17.500000000000014,422.52380952380986,2020-11-23 +1493,15499.8,4.0,18.809523809523824,435.3809523809527,2020-11-23 +1492,15489.5,4.0,18.642857142857153,441.1904761904765,2020-11-23 +1491,15479.2,4.0,18.61904761904763,452.0000000000003,2020-11-23 +1490,15468.3,4.0,18.7857142857143,460.0476190476194,2020-11-23 +1460,15146.9,4.0,18.16666666666668,438.6190476190479,2020-11-23 +1461,15157.5,4.0,18.142857142857153,433.42857142857173,2020-11-23 +1462,15168.7,4.0,18.023809523809536,434.28571428571456,2020-11-23 +1463,15179.7,4.0,18.023809523809536,449.61904761904793,2020-11-23 +1464,15190.4,4.0,18.09523809523811,467.33333333333366,2020-11-23 +1465,15200.4,4.0,18.23809523809525,461.2380952380955,2020-11-23 +1466,15211.7,4.0,18.333333333333343,455.8095238095241,2020-11-23 +1467,15222.6,4.0,18.16666666666668,439.1904761904765,2020-11-23 +1468,15233.4,4.0,17.90476190476192,428.8095238095241,2020-11-23 +1469,15244.0,4.0,17.92857142857144,434.8571428571432,2020-11-23 +1470,15255.2,4.0,18.16666666666668,448.33333333333366,2020-11-23 +1471,15265.8,4.0,17.928571428571438,457.95238095238125,2020-11-23 +1472,15276.5,4.0,18.023809523809536,464.47619047619077,2020-11-23 +1473,15288.4,4.0,18.071428571428584,453.76190476190504,2020-11-23 +1458,15125.9,4.0,18.071428571428584,436.8571428571431,2020-11-23 +1474,15299.1,4.0,18.071428571428584,455.28571428571456,2020-11-23 +1476,15320.7,4.0,18.428571428571438,446.0000000000003,2020-11-23 +1477,15332.1,4.0,17.97619047619049,437.42857142857173,2020-11-23 +1478,15342.9,4.0,17.90476190476192,424.9047619047622,2020-11-23 +1479,15353.5,4.0,17.97619047619049,420.47619047619077,2020-11-23 +1480,15364.0,4.0,18.238095238095248,432.8095238095241,2020-11-23 +1481,15374.9,4.0,18.47619047619049,454.42857142857173,2020-11-23 +1482,15385.4,4.0,18.59523809523811,470.38095238095275,2020-11-23 +1483,15395.7,4.0,18.761904761904773,482.714285714286,2020-11-23 +1484,15405.8,4.0,18.71428571428573,488.4761904761908,2020-11-23 +1485,15415.2,4.0,18.571428571428584,483.61904761904793,2020-11-23 +1486,15425.3,4.0,18.66666666666668,467.76190476190504,2020-11-23 +1487,15435.8,4.0,18.7857142857143,458.52380952380986,2020-11-23 +1488,15446.7,4.0,18.761904761904773,455.2857142857146,2020-11-23 +1489,15457.5,4.0,18.761904761904773,452.61904761904793,2020-11-23 +1475,15309.2,4.0,18.190476190476204,452.38095238095264,2020-11-23 +1282,13220.2,4.0,17.47619047619049,416.09523809523836,2020-11-23 +1996,20226.7,4.0,17.761904761904773,396.0476190476193,2020-11-23 +1386,14364.7,4.0,18.2857142857143,446.66666666666697,2020-11-23 +1361,14094.2,4.0,18.142857142857153,447.0476190476194,2020-11-23 +1360,14083.6,4.0,18.071428571428584,435.76190476190504,2020-11-23 +1359,14071.9,4.0,18.071428571428584,431.5238095238098,2020-11-23 +1358,14061.0,4.0,17.92857142857144,439.61904761904793,2020-11-23 +1357,14050.5,4.0,18.16666666666668,450.00000000000034,2020-11-23 +1356,14040.2,4.0,18.023809523809536,452.714285714286,2020-11-23 +1355,14029.3,4.0,17.761904761904773,439.28571428571456,2020-11-23 +1354,14018.0,4.0,17.80952380952382,423.8571428571431,2020-11-23 +1353,14007.8,4.0,17.738095238095248,412.1904761904765,2020-11-23 +1352,13997.0,4.0,17.642857142857153,406.38095238095264,2020-11-23 +1351,13986.2,4.0,17.7857142857143,408.3809523809527,2020-11-23 +1350,13974.6,4.0,17.690476190476204,416.0000000000002,2020-11-23 +1349,13963.8,4.0,17.619047619047628,414.8571428571431,2020-11-23 +1348,13952.9,4.0,17.738095238095248,433.2380952380955,2020-11-23 +1347,13942.5,4.0,17.738095238095248,438.95238095238125,2020-11-23 +1346,13931.7,4.0,18.047619047619058,447.714285714286,2020-11-23 +1345,13920.6,4.0,18.190476190476204,461.0952380952384,2020-11-23 +1344,13909.9,4.0,18.16666666666668,469.33333333333366,2020-11-23 +1343,13899.0,4.0,18.142857142857153,470.42857142857173,2020-11-23 +1342,13887.6,4.0,18.071428571428584,474.9047619047622,2020-11-23 +1341,13876.8,4.0,18.000000000000014,459.0476190476193,2020-11-23 +1340,13865.0,4.0,17.97619047619049,447.9047619047622,2020-11-23 +1339,13853.8,4.0,17.833333333333343,445.5238095238098,2020-11-23 +1362,14105.0,4.0,18.452380952380963,443.80952380952414,2020-11-23 +1338,13843.1,4.0,17.66666666666668,444.4761904761908,2020-11-23 +1363,14115.5,4.0,18.523809523809536,447.28571428571456,2020-11-23 +1365,14137.2,4.0,18.2857142857143,440.0000000000003,2020-11-23 +1385,14354.2,4.0,18.047619047619058,436.28571428571456,2020-11-23 +1382,14320.9,4.0,17.523809523809533,417.9047619047622,2020-11-23 +1387,14375.4,4.0,18.35714285714287,455.2380952380955,2020-11-23 +1388,14386.5,4.0,18.16666666666668,467.61904761904793,2020-11-23 +1389,14396.6,4.0,18.047619047619058,464.714285714286,2020-11-23 +1390,14407.8,4.0,18.16666666666668,450.2380952380955,2020-11-23 +1391,14417.7,4.0,18.35714285714287,430.1428571428574,2020-11-23 +1381,14310.2,4.0,17.97619047619049,413.9523809523812,2020-11-23 +1380,14299.3,4.0,18.214285714285726,413.5714285714289,2020-11-23 +1379,14288.2,4.0,18.40476190476192,425.2380952380955,2020-11-23 +1378,14277.6,4.0,18.547619047619058,429.52380952380986,2020-11-23 +1377,14266.7,4.0,18.333333333333346,432.47619047619077,2020-11-23 +1376,14256.0,4.0,18.09523809523811,443.57142857142884,2020-11-23 +1375,14245.4,4.0,18.261904761904773,442.9047619047622,2020-11-23 +1374,14234.5,4.0,18.142857142857153,455.9047619047622,2020-11-23 +1373,14223.6,4.0,18.214285714285726,467.19047619047655,2020-11-23 +1372,14212.4,4.0,18.428571428571438,462.33333333333366,2020-11-23 +1371,14200.8,4.0,18.30952380952382,448.80952380952414,2020-11-23 +1370,14190.2,4.0,18.50000000000001,438.5238095238098,2020-11-23 +1369,14179.4,4.0,18.690476190476204,429.5714285714289,2020-11-23 +1368,14168.6,4.0,18.714285714285726,430.28571428571456,2020-11-23 +1367,14158.6,4.0,18.571428571428584,434.4285714285717,2020-11-23 +1366,14147.8,4.0,18.42857142857144,439.28571428571456,2020-11-23 +1364,14126.6,4.0,18.35714285714287,441.38095238095264,2020-11-23 +1337,13831.9,4.0,17.523809523809533,441.28571428571456,2020-11-23 +1336,13820.5,4.0,17.452380952380963,433.47619047619077,2020-11-23 +1335,13809.2,4.0,17.452380952380963,416.38095238095264,2020-11-23 +1306,13486.2,4.0,17.547619047619058,442.714285714286,2020-11-23 +1305,13475.0,4.0,17.190476190476204,437.4761904761907,2020-11-23 +1304,13463.9,4.0,16.97619047619049,436.3333333333336,2020-11-23 +1303,13452.6,4.0,16.952380952380963,444.3809523809527,2020-11-23 +1302,13441.1,4.0,17.00000000000001,434.714285714286,2020-11-23 +1301,13430.1,4.0,16.952380952380963,430.5238095238098,2020-11-23 +1300,13419.2,4.0,17.071428571428584,434.8571428571431,2020-11-23 +1299,13407.7,4.0,17.09523809523811,450.8095238095241,2020-11-23 +1298,13396.3,4.0,17.238095238095248,452.47619047619077,2020-11-23 +1297,13385.3,4.0,17.238095238095248,445.38095238095264,2020-11-23 +1296,13374.2,4.0,17.261904761904773,430.0000000000003,2020-11-23 +1295,13363.3,4.0,17.30952380952382,416.3333333333336,2020-11-23 +1294,13351.5,4.0,17.333333333333346,416.47619047619077,2020-11-23 +1293,13340.9,4.0,17.2857142857143,433.9047619047622,2020-11-23 +1292,13329.6,4.0,17.380952380952394,435.8571428571431,2020-11-23 +1291,13318.2,4.0,17.35714285714287,435.8571428571431,2020-11-23 +1290,13306.8,4.0,17.428571428571438,443.14285714285745,2020-11-23 +1289,13296.2,4.0,17.547619047619058,446.2380952380955,2020-11-23 +1288,13284.7,4.0,17.452380952380963,451.9047619047622,2020-11-23 +1287,13273.3,4.0,17.571428571428584,469.2380952380955,2020-11-23 +1286,13263.0,4.0,17.595238095238106,468.5238095238098,2020-11-23 +1285,13252.4,4.0,17.738095238095248,458.38095238095264,2020-11-23 +1284,13241.3,4.0,17.833333333333346,452.5714285714289,2020-11-23 +1307,13497.1,4.0,17.690476190476204,446.95238095238125,2020-11-23 +1308,13508.5,4.0,17.952380952380963,449.5238095238098,2020-11-23 +1309,13519.9,4.0,18.071428571428584,450.8571428571432,2020-11-23 +1310,13530.4,4.0,17.952380952380963,439.66666666666697,2020-11-23 +1334,13798.2,4.0,17.523809523809533,403.8571428571431,2020-11-23 +1333,13786.9,4.0,17.66666666666668,413.0476190476193,2020-11-23 +1332,13775.2,4.0,17.785714285714295,432.61904761904793,2020-11-23 +1331,13764.5,4.0,18.000000000000014,459.33333333333366,2020-11-23 +1330,13753.8,4.0,18.261904761904773,475.19047619047655,2020-11-23 +1329,13742.3,4.0,18.30952380952382,484.52380952380986,2020-11-23 +1328,13731.4,4.0,18.30952380952382,488.0952380952384,2020-11-23 +1327,13720.6,4.0,18.16666666666668,483.85714285714323,2020-11-23 +1326,13709.1,4.0,18.047619047619058,475.66666666666697,2020-11-23 +1325,13698.1,4.0,18.11904761904763,471.52380952380986,2020-11-23 +1324,13687.2,4.0,18.42857142857144,469.3333333333336,2020-11-23 +1384,14343.1,4.0,17.642857142857153,425.0952380952383,2020-11-23 +1323,13675.5,4.0,18.380952380952394,457.0952380952384,2020-11-23 +1321,13653.1,4.0,17.97619047619049,414.4761904761907,2020-11-23 +1320,13642.0,4.0,17.66666666666668,413.95238095238125,2020-11-23 +1319,13631.1,4.0,17.619047619047628,428.14285714285745,2020-11-23 +1318,13620.1,4.0,17.66666666666668,454.80952380952414,2020-11-23 +1317,13608.9,4.0,17.690476190476204,475.33333333333366,2020-11-23 +1316,13598.1,4.0,17.738095238095248,475.8095238095241,2020-11-23 +1315,13586.1,4.0,17.80952380952382,471.38095238095275,2020-11-23 +1314,13575.1,4.0,17.690476190476204,461.2380952380955,2020-11-23 +1313,13563.3,4.0,17.714285714285726,449.1904761904765,2020-11-23 +1312,13552.2,4.0,17.880952380952394,438.14285714285745,2020-11-23 +1311,13541.4,4.0,17.97619047619049,437.57142857142884,2020-11-23 +1322,13664.1,4.0,18.2857142857143,434.4761904761907,2020-11-23 +1383,14332.4,4.0,17.50000000000001,417.9047619047622,2020-11-23 +1108,9982.7,4.0,15.80952380952382,227.13314772117457,2020-11-26 +1077,9695.300000000001,4.0,16.523809523809536,146.11795731839197,2020-11-26 +1136,10266.1,4.0,18.09523809523811,269.3609045891522,2020-11-26 +1137,10275.900000000001,4.0,17.85714285714287,268.25932201497267,2020-11-26 +1138,10286.1,4.0,17.714285714285726,270.9169202990287,2020-11-26 +1139,10296.300000000001,4.0,17.66666666666668,272.27075615851425,2020-11-26 +1140,10306.6,4.0,17.714285714285726,268.7799807254548,2020-11-26 +1141,10316.5,4.0,17.952380952380963,262.52786241129,2020-11-26 +1142,10326.400000000001,4.0,18.047619047619058,254.81345808639878,2020-11-26 +1143,10336.400000000001,4.0,17.66666666666668,248.2390883304032,2020-11-26 +1144,10346.400000000001,4.0,17.333333333333343,245.7600027397885,2020-11-26 +1145,10356.0,4.0,17.047619047619058,246.22441819659875,2020-11-26 +1146,10365.900000000001,4.0,16.904761904761916,248.8448933220883,2020-11-26 +1106,9961.400000000001,4.0,16.238095238095248,183.2766357316852,2020-11-26 +1148,10386.300000000001,4.0,16.904761904761916,247.23674067863269,2020-11-26 +1149,10396.2,4.0,17.047619047619058,236.74609404074943,2020-11-26 +1150,10406.300000000001,4.0,17.42857142857144,223.9246188997609,2020-11-26 +1151,10415.300000000001,4.0,17.714285714285726,213.4346223308354,2020-11-26 +1152,10425.0,4.0,17.47619047619049,206.69341434274884,2020-11-26 +1153,10434.6,4.0,17.142857142857153,211.41968967681908,2020-11-26 +1154,10444.6,4.0,17.2857142857143,223.74511304252434,2020-11-26 +1155,10454.5,4.0,15.666666666666679,233.98345567853193,2020-11-26 +1156,10464.5,4.0,15.1904761904762,239.22834884306803,2020-11-26 +1135,10256.1,4.0,18.000000000000014,271.59255320414644,2020-11-26 +1157,10479.2,4.0,15.523809523809533,235.90785093461426,2020-11-26 +1134,10245.7,4.0,17.80952380952382,272.4182798899016,2020-11-26 +1132,10225.900000000001,4.0,18.571428571428584,262.20038638828527,2020-11-26 +1109,9992.7,4.0,15.047619047619058,239.95135319425572,2020-11-26 +1112,10026.6,4.0,15.095238095238106,221.2024805430084,2020-11-26 +1113,10036.900000000001,4.0,16.66666666666668,222.5273046244977,2020-11-26 +1114,10047.300000000001,4.0,16.714285714285726,228.13592831954247,2020-11-26 +1115,10057.300000000001,4.0,16.523809523809536,237.52651338263698,2020-11-26 +1116,10067.300000000001,4.0,16.47619047619049,247.1049805161884,2020-11-26 +1117,10078.5,4.0,16.2857142857143,250.5321578006144,2020-11-26 +1118,10088.7,4.0,16.714285714285726,251.7479554409705,2020-11-26 +1119,10099.300000000001,4.0,17.238095238095248,253.37887195797487,2020-11-26 +1120,10108.900000000001,4.0,17.428571428571438,255.3984781569602,2020-11-26 +1121,10119.800000000001,4.0,17.190476190476204,260.289750693884,2020-11-26 +1122,10129.6,4.0,17.095238095238106,264.6491644040625,2020-11-26 +1123,10139.800000000001,4.0,17.2857142857143,265.50266608292344,2020-11-26 +1124,10150.0,4.0,18.000000000000014,259.82755653041744,2020-11-26 +1125,10159.7,4.0,18.61904761904763,249.92341906362097,2020-11-26 +1126,10168.800000000001,4.0,19.142857142857153,242.26907393248746,2020-11-26 +1127,10178.2,4.0,19.047619047619058,238.67826050849658,2020-11-26 +1128,10187.2,4.0,18.47619047619049,238.47417392884435,2020-11-26 +1129,10197.2,4.0,18.61904761904763,242.16759976974583,2020-11-26 +1130,10207.0,4.0,18.61904761904763,246.8756099255616,2020-11-26 +1131,10215.900000000001,4.0,18.571428571428584,252.39656809636818,2020-11-26 +1133,10235.800000000001,4.0,18.2857142857143,270.09251354499133,2020-11-26 +1158,10488.1,4.0,15.809523809523817,220.75957335357808,2020-11-26 +1159,10497.0,4.0,16.904761904761916,212.43313099981088,2020-11-26 +1160,10506.7,4.0,18.190476190476204,211.7637289982088,2020-11-26 +1097,9862.2,4.0,18.00000000000001,183.27334576848494,2020-11-26 +1096,9862.2,4.0,17.142857142857153,217.85866917703186,2020-11-26 +1095,9862.2,4.0,17.85714285714287,226.0052627069862,2020-11-26 +1094,9853.1,4.0,17.714285714285726,213.00684850268325,2020-11-26 +1093,9843.800000000001,4.0,17.761904761904773,206.45684064518923,2020-11-26 +1092,9833.900000000001,4.0,17.571428571428584,206.82222113638187,2020-11-26 +1091,9824.4,4.0,17.66666666666668,203.34345846941187,2020-11-26 +1090,9815.1,4.0,17.714285714285726,199.83698479489192,2020-11-26 +1089,9805.6,4.0,17.47619047619049,193.8706638323149,2020-11-26 +1088,9796.2,4.0,17.142857142857153,187.4813911450659,2020-11-26 +1087,9786.4,4.0,16.80952380952382,181.18953807632556,2020-11-26 +1086,9777.2,4.0,16.142857142857153,175.76205423927215,2020-11-26 +1085,9766.7,4.0,16.1904761904762,171.08053739090852,2020-11-26 +1084,9757.1,4.0,16.095238095238106,168.06391105618553,2020-11-26 +1083,9747.9,4.0,16.47619047619049,163.55985696704585,2020-11-26 +1082,9739.6,4.0,16.47619047619049,158.25045684854456,2020-11-26 +1081,9730.6,4.0,16.523809523809533,152.68491111856224,2020-11-26 +1080,9721.5,4.0,16.619047619047628,149.58347759834487,2020-11-26 +1079,9712.800000000001,4.0,16.761904761904773,147.63933851804646,2020-11-26 +1078,9704.6,4.0,16.523809523809536,147.59358348783888,2020-11-26 +1076,9686.300000000001,4.0,15.904761904761916,140.25815084163244,2020-11-26 +1098,9862.2,4.0,23.09523809523811,130.25365957439703,2020-11-26 +1102,9920.0,4.0,16.333333333333343,113.59727058180151,2020-11-26 +26,131.9,4.0,22.71428571428573,220.0465786281083,2020-11-26 +25,124.0,4.0,23.190476190476204,225.21086063856106,2020-11-26 +1161,10516.5,4.0,17.523809523809533,212.62917511948888,2020-11-26 +1162,10526.1,4.0,17.47619047619049,214.15727542038425,2020-11-26 +1163,10534.800000000001,4.0,17.380952380952394,213.0100326972982,2020-11-26 +1164,10544.7,4.0,17.238095238095248,210.2194110859566,2020-11-26 +1165,10554.300000000001,4.0,17.47619047619049,213.8986268394346,2020-11-26 +1166,10563.300000000001,4.0,17.64285714285716,219.71313791040194,2020-11-26 +1167,10563.300000000001,4.0,17.85714285714288,221.2301317694165,2020-11-26 +1168,10563.300000000001,4.0,18.11904761904765,213.73041474694168,2020-11-26 +11,31.6,4.0,36.71428571428574,100.71197975896872,2020-11-26 +12,36.1,4.0,37.14285714285717,100.95683837113592,2020-11-26 +1107,9972.1,4.0,16.61904761904763,206.1161373638856,2020-11-26 +13,40.6,4.0,36.95238095238098,100.69908522746968,2020-11-26 +15,50.2,4.0,32.42857142857145,119.7191251152119,2020-11-26 +16,56.2,4.0,29.095238095238116,139.6068200100839,2020-11-26 +17,62.900000000000006,4.0,26.809523809523824,160.05202459309672,2020-11-26 +18,69.7,4.0,26.285714285714302,175.74735436928813,2020-11-26 +19,77.2,4.0,26.190476190476208,189.54668585162517,2020-11-26 +20,84.10000000000001,4.0,25.904761904761923,203.79041487793899,2020-11-26 +21,91.80000000000001,4.0,24.476190476190492,219.0890713718419,2020-11-26 +22,99.7,4.0,23.666666666666682,231.9103072144474,2020-11-26 +23,107.9,4.0,23.33333333333335,236.07378202108734,2020-11-26 +24,116.0,4.0,23.09523809523811,230.84201453022223,2020-11-26 +14,45.1,4.0,35.85714285714288,105.83458624081396,2020-11-26 +1147,10376.5,4.0,17.00000000000001,250.97983581256238,2020-11-26 +512,4904.1,4.0,25.047619047619065,342.96336560028044,2020-11-26 +1074,9668.7,4.0,15.761904761904773,110.62025775712152,2020-11-26 +368,3584.2000000000003,4.0,24.000000000000018,366.4215711022416,2020-11-26 +367,3575.2000000000003,4.0,24.000000000000018,371.5726537510218,2020-11-26 +366,3566.3,4.0,24.000000000000018,374.7041556915935,2020-11-26 +365,3557.0,4.0,24.000000000000018,376.69984436204095,2020-11-26 +364,3547.5,4.0,24.000000000000018,378.28070746301984,2020-11-26 +363,3537.7000000000003,4.0,24.095238095238113,376.8954837294154,2020-11-26 +362,3528.7000000000003,4.0,23.857142857142875,373.3248489592098,2020-11-26 +361,3519.7000000000003,4.0,23.71428571428573,370.02822542630713,2020-11-26 +360,3509.9,4.0,23.666666666666686,369.07350637543937,2020-11-26 +359,3500.3,4.0,23.71428571428573,371.1046078303051,2020-11-26 +358,3491.1000000000004,4.0,23.857142857142875,375.89613807255046,2020-11-26 +357,3481.6000000000004,4.0,24.095238095238113,378.35124587008136,2020-11-26 +356,3472.6000000000004,4.0,24.000000000000018,379.5922285847108,2020-11-26 +355,3463.4,4.0,24.000000000000018,381.1120910970045,2020-11-26 +354,3454.6000000000004,4.0,24.000000000000018,384.61527795712,2020-11-26 +353,3444.7000000000003,4.0,24.000000000000018,391.09245549797237,2020-11-26 +352,3435.4,4.0,24.000000000000018,394.43508929630445,2020-11-26 +351,3425.1000000000004,4.0,24.000000000000018,388.07924195382407,2020-11-26 +350,3416.3,4.0,24.095238095238113,375.2964739511499,2020-11-26 +349,3406.6000000000004,4.0,23.857142857142875,362.02691393441944,2020-11-26 +348,3397.5,4.0,23.71428571428573,356.53486288521776,2020-11-26 +347,3387.9,4.0,23.666666666666686,360.25127144079477,2020-11-26 +346,3378.9,4.0,23.619047619047635,361.7306942990997,2020-11-26 +345,3368.9,4.0,24.000000000000018,356.80641199592003,2020-11-26 +344,3360.5,4.0,24.476190476190496,346.01235785151255,2020-11-26 +343,3351.0,4.0,24.09523809523811,336.0101029803691,2020-11-26 +342,3342.0,4.0,24.238095238095255,335.14903773504113,2020-11-26 +369,3593.7000000000003,4.0,24.000000000000018,360.3128767080052,2020-11-26 +341,3333.0,4.0,23.95238095238097,341.8617497791446,2020-11-26 +370,3602.6000000000004,4.0,24.000000000000018,354.5076169866363,2020-11-26 +372,3621.2000000000003,4.0,24.000000000000018,357.46806599444164,2020-11-26 +399,3866.6000000000004,4.0,25.000000000000014,388.65097964122606,2020-11-26 +398,3857.4,4.0,25.000000000000014,391.88106511463764,2020-11-26 +397,3848.1000000000004,4.0,24.90476190476192,391.8886390374695,2020-11-26 +396,3838.9,4.0,25.04761904761906,390.4632540327083,2020-11-26 +395,3830.1000000000004,4.0,25.428571428571445,387.8706081087728,2020-11-26 +394,3820.4,4.0,25.619047619047635,382.26595057744146,2020-11-26 +393,3812.0,4.0,25.619047619047635,376.7590428795223,2020-11-26 +392,3803.3,4.0,25.428571428571445,372.2292775268611,2020-11-26 +391,3794.1000000000004,4.0,25.04761904761906,369.5111306339228,2020-11-26 +390,3784.8,4.0,24.90476190476192,371.92755348942023,2020-11-26 +389,3775.7000000000003,4.0,25.000000000000014,378.1321080298486,2020-11-26 +388,3766.6000000000004,4.0,25.000000000000014,385.4870971397412,2020-11-26 +387,3757.6000000000004,4.0,25.000000000000014,390.95498815403323,2020-11-26 +386,3748.7000000000003,4.0,25.000000000000014,388.90815159852093,2020-11-26 +385,3739.5,4.0,25.000000000000014,380.6632685808846,2020-11-26 +384,3730.4,4.0,25.09523809523811,370.78932706843295,2020-11-26 +383,3721.1000000000004,4.0,24.952380952380967,364.4439120955456,2020-11-26 +382,3712.0,4.0,24.666666666666682,366.1902388899144,2020-11-26 +381,3703.0,4.0,24.33333333333335,369.8585121802891,2020-11-26 +380,3694.1000000000004,4.0,23.95238095238097,366.0164269778016,2020-11-26 +379,3685.1000000000004,4.0,23.95238095238097,355.76747270981946,2020-11-26 +378,3676.0,4.0,24.428571428571445,343.880847930984,2020-11-26 +377,3666.4,4.0,24.619047619047635,339.22731532898126,2020-11-26 +376,3657.5,4.0,24.619047619047635,347.4894441017759,2020-11-26 +375,3648.5,4.0,24.428571428571445,359.7961565498355,2020-11-26 +374,3639.0,4.0,24.047619047619065,365.97617696190264,2020-11-26 +373,3630.8,4.0,23.90476190476192,364.6417277779494,2020-11-26 +371,3612.1000000000004,4.0,24.000000000000018,352.44673138537485,2020-11-26 +340,3323.5,4.0,23.666666666666682,348.11434000923254,2020-11-26 +339,3314.3,4.0,23.809523809523824,355.5501053309339,2020-11-26 +338,3305.5,4.0,23.95238095238097,361.27257430398856,2020-11-26 +303,2962.7000000000003,4.0,15.761904761904773,267.7592501339813,2020-11-26 +302,2951.6000000000004,4.0,16.2857142857143,256.20371033318105,2020-11-26 +301,2940.6000000000004,4.0,16.80952380952382,218.95277799470682,2020-11-26 +300,2930.7000000000003,4.0,16.380952380952394,161.9469155980732,2020-11-26 +299,2921.3,4.0,16.571428571428584,100.53195293459638,2020-11-26 +286,2865.6000000000004,4.0,15.761904761904773,165.76849950630177,2020-11-26 +285,2865.6000000000004,4.0,15.666666666666679,241.91915732220167,2020-11-26 +284,2855.8,4.0,17.42857142857144,288.4147251339841,2020-11-26 +283,2845.0,4.0,16.714285714285726,288.5617620750468,2020-11-26 +282,2834.7000000000003,4.0,16.761904761904773,266.75923833015275,2020-11-26 +281,2823.2000000000003,4.0,16.571428571428584,263.00476769301696,2020-11-26 +280,2813.4,4.0,16.66666666666668,267.2064607050357,2020-11-26 +279,2803.1000000000004,4.0,16.619047619047628,271.76340028826263,2020-11-26 +278,2792.2000000000003,4.0,16.428571428571438,274.0824688845208,2020-11-26 +277,2782.0,4.0,16.523809523809533,271.4134286906831,2020-11-26 +276,2770.2000000000003,4.0,16.714285714285726,262.15940663341956,2020-11-26 +275,2759.6000000000004,4.0,17.00000000000001,252.66131688979908,2020-11-26 +274,2749.1000000000004,4.0,17.47619047619049,250.41889703608132,2020-11-26 +273,2738.4,4.0,17.2857142857143,255.92657544605137,2020-11-26 +272,2728.5,4.0,16.952380952380963,266.4642110241605,2020-11-26 +271,2718.3,4.0,16.47619047619049,276.24144217784044,2020-11-26 +270,2707.0,4.0,15.952380952380963,279.39979603295274,2020-11-26 +269,2696.1000000000004,4.0,15.904761904761916,277.23084551019747,2020-11-26 +268,2685.0,4.0,16.00000000000001,271.24969289412013,2020-11-26 +267,2673.8,4.0,16.00000000000001,262.39557318617165,2020-11-26 +266,2663.1000000000004,4.0,16.00000000000001,250.0689850455181,2020-11-26 +265,2652.3,4.0,16.00000000000001,232.60797078400378,2020-11-26 +304,2974.2000000000003,4.0,15.476190476190485,266.0471249658028,2020-11-26 +305,2985.1000000000004,4.0,15.857142857142868,258.59796799227547,2020-11-26 +306,2995.6000000000004,4.0,16.142857142857153,250.1722826295631,2020-11-26 +307,3005.2000000000003,4.0,16.428571428571438,243.47123485613355,2020-11-26 +337,3296.6000000000004,4.0,23.76190476190478,367.4182822453673,2020-11-26 +336,3286.9,4.0,24.095238095238113,375.522978841577,2020-11-26 +335,3278.0,4.0,24.000000000000018,381.6075099844405,2020-11-26 +334,3268.8,4.0,24.000000000000018,381.0862544744301,2020-11-26 +333,3259.1000000000004,4.0,24.000000000000018,376.6515126681986,2020-11-26 +332,3250.1000000000004,4.0,24.000000000000018,368.76166397992023,2020-11-26 +331,3240.6000000000004,4.0,24.000000000000018,364.90619298307564,2020-11-26 +330,3231.5,4.0,24.095238095238113,372.77631417866843,2020-11-26 +329,3221.8,4.0,23.76190476190478,386.4265007766348,2020-11-26 +328,3212.6000000000004,4.0,23.761904761904777,387.0791471369363,2020-11-26 +327,3203.6000000000004,4.0,24.095238095238113,363.89080630394875,2020-11-26 +326,3193.7000000000003,4.0,24.33333333333335,310.40436821951516,2020-11-26 +325,3184.5,4.0,24.095238095238113,244.80499871526914,2020-11-26 +400,3875.7000000000003,4.0,25.000000000000014,384.79928687792653,2020-11-26 +324,3175.8,4.0,25.857142857142875,193.647816546511,2020-11-26 +322,3164.4,4.0,22.666666666666682,176.86552160860924,2020-11-26 +321,3155.2000000000003,4.0,19.761904761904773,207.48521275200216,2020-11-26 +320,3144.3,4.0,16.619047619047628,236.07753240298172,2020-11-26 +318,3122.6000000000004,4.0,15.047619047619058,268.5339755985833,2020-11-26 +316,3100.0,4.0,15.142857142857153,263.0332639444405,2020-11-26 +315,3089.4,4.0,15.1904761904762,258.842050379449,2020-11-26 +314,3078.1000000000004,4.0,15.285714285714295,248.53348220986157,2020-11-26 +313,3067.3,4.0,15.761904761904773,240.21527951028494,2020-11-26 +312,3056.5,4.0,16.095238095238106,235.97548023303932,2020-11-26 +311,3046.6000000000004,4.0,16.1904761904762,236.1450315067604,2020-11-26 +310,3036.6000000000004,4.0,16.2857142857143,239.61475979378815,2020-11-26 +309,3026.5,4.0,16.285714285714295,241.55802773066563,2020-11-26 +308,3015.7000000000003,4.0,16.190476190476204,241.84894427631323,2020-11-26 +323,3168.1000000000004,4.0,24.809523809523828,171.77175168860174,2020-11-26 +264,2641.8,4.0,16.095238095238106,210.50963400707136,2020-11-26 +401,3885.0,4.0,24.90476190476192,381.90538933079796,2020-11-26 +403,3902.9,4.0,25.33333333333335,380.6968527402439,2020-11-26 +493,4731.7,4.0,24.666666666666682,362.359934750446,2020-11-26 +492,4723.400000000001,4.0,24.666666666666682,359.3560241261055,2020-11-26 +491,4714.1,4.0,24.71428571428573,362.8080458858131,2020-11-26 +490,4704.5,4.0,24.380952380952394,365.46479313063935,2020-11-26 +489,4695.0,4.0,24.190476190476208,364.92438166902167,2020-11-26 +488,4686.5,4.0,24.14285714285716,362.62851966514063,2020-11-26 +487,4677.0,4.0,23.90476190476192,360.51614308994556,2020-11-26 +486,4667.900000000001,4.0,23.90476190476192,362.229798080615,2020-11-26 +485,4658.900000000001,4.0,24.047619047619065,366.68512390847,2020-11-26 +484,4649.2,4.0,24.33333333333335,368.03452725739504,2020-11-26 +483,4639.5,4.0,24.76190476190478,367.03878253975853,2020-11-26 +482,4631.2,4.0,24.90476190476192,367.94179457038774,2020-11-26 +481,4622.400000000001,4.0,24.76190476190478,372.8770167980438,2020-11-26 +480,4613.2,4.0,24.33333333333335,383.6180319733759,2020-11-26 +479,4603.3,4.0,24.047619047619065,393.3798858966187,2020-11-26 +478,4593.5,4.0,23.90476190476192,394.8077829071851,2020-11-26 +477,4584.7,4.0,23.90476190476192,388.81174714621,2020-11-26 +476,4575.0,4.0,24.047619047619065,379.2532144308904,2020-11-26 +475,4566.0,4.0,24.33333333333335,370.4917197990162,2020-11-26 +474,4556.2,4.0,24.666666666666682,366.4169238834492,2020-11-26 +473,4547.2,4.0,25.047619047619065,364.50777842885975,2020-11-26 +472,4538.2,4.0,25.047619047619065,363.0468606439193,2020-11-26 +471,4529.900000000001,4.0,24.666666666666682,363.9648433950025,2020-11-26 +470,4520.8,4.0,24.33333333333335,368.5091234255916,2020-11-26 +469,4511.7,4.0,24.047619047619065,375.7477621270731,2020-11-26 +468,4502.0,4.0,23.90476190476192,380.772948863375,2020-11-26 +467,4492.3,4.0,23.90476190476192,382.3712942463205,2020-11-26 +494,4740.3,4.0,24.71428571428573,369.68880724750704,2020-11-26 +466,4483.8,4.0,24.14285714285716,381.3649154089401,2020-11-26 +495,4749.900000000001,4.0,24.380952380952394,376.13947303265104,2020-11-26 +497,4769.0,4.0,24.047619047619065,375.8736357590245,2020-11-26 +524,5012.200000000001,4.0,16.523809523809536,212.12491904479202,2020-11-26 +523,5004.400000000001,4.0,18.952380952380963,289.6287301102227,2020-11-26 +522,4995.5,4.0,21.428571428571445,346.35917241677095,2020-11-26 +521,4984.900000000001,4.0,23.761904761904777,368.03329088333,2020-11-26 +520,4975.5,4.0,25.33333333333335,363.9194251389416,2020-11-26 +519,4967.1,4.0,25.285714285714302,353.16253964379496,2020-11-26 +518,4958.200000000001,4.0,25.09523809523811,351.22363711006096,2020-11-26 +517,4949.200000000001,4.0,24.857142857142872,358.822770378006,2020-11-26 +516,4940.1,4.0,24.71428571428573,363.51335407059696,2020-11-26 +515,4930.5,4.0,24.666666666666686,359.67856566826674,2020-11-26 +514,4922.0,4.0,24.71428571428573,350.71170589702433,2020-11-26 +513,4913.0,4.0,24.952380952380967,344.4567772799497,2020-11-26 +27,140.9,4.0,21.71428571428573,239.5102666137484,2020-11-26 +511,4896.0,4.0,24.666666666666682,344.47389230169335,2020-11-26 +510,4886.400000000001,4.0,24.33333333333335,344.73994309050624,2020-11-26 +509,4878.0,4.0,23.95238095238097,342.17266436662834,2020-11-26 +508,4868.400000000001,4.0,24.047619047619065,340.56623869338796,2020-11-26 +507,4859.6,4.0,24.285714285714306,344.70512874550843,2020-11-26 +506,4850.3,4.0,24.238095238095255,352.1027549481963,2020-11-26 +505,4841.400000000001,4.0,24.33333333333335,359.6907147776394,2020-11-26 +504,4832.6,4.0,24.476190476190496,362.6426912801942,2020-11-26 +503,4823.5,4.0,24.571428571428587,360.66255278574647,2020-11-26 +502,4814.5,4.0,25.047619047619065,359.0552938137407,2020-11-26 +501,4805.7,4.0,25.047619047619065,359.7477781183569,2020-11-26 +500,4796.6,4.0,24.666666666666682,361.96641979723006,2020-11-26 +499,4787.6,4.0,24.33333333333335,366.0535534801629,2020-11-26 +498,4778.6,4.0,23.95238095238097,370.69890283757127,2020-11-26 +496,4759.7,4.0,24.190476190476208,378.5442123531252,2020-11-26 +465,4474.1,4.0,24.190476190476208,378.4090930471175,2020-11-26 +464,4464.900000000001,4.0,24.380952380952394,375.674375174377,2020-11-26 +463,4455.8,4.0,24.71428571428573,372.04839073458027,2020-11-26 +430,4152.0,4.0,24.619047619047635,397.30484564586845,2020-11-26 +429,4143.3,4.0,24.857142857142872,397.1656081432807,2020-11-26 +428,4134.1,4.0,25.09523809523811,398.01592178774155,2020-11-26 +427,4124.900000000001,4.0,25.000000000000014,398.03025337729366,2020-11-26 +426,4115.6,4.0,25.000000000000014,399.7866176152889,2020-11-26 +425,4106.8,4.0,25.09523809523811,402.1649981625564,2020-11-26 +424,4097.5,4.0,24.857142857142872,406.81380923512165,2020-11-26 +423,4088.2000000000003,4.0,24.809523809523824,412.04617102215946,2020-11-26 +422,4078.3,4.0,24.52380952380954,415.70188166604987,2020-11-26 +421,4069.4,4.0,24.428571428571445,415.5540426402338,2020-11-26 +420,4060.0,4.0,24.428571428571445,413.5745872422253,2020-11-26 +419,4050.6000000000004,4.0,24.95238095238097,407.9955654805202,2020-11-26 +418,4041.2000000000003,4.0,25.047619047619065,401.43136352690294,2020-11-26 +417,4031.8,4.0,25.571428571428587,394.19525336718436,2020-11-26 +416,4023.0,4.0,25.57142857142859,390.4096250533487,2020-11-26 +415,4014.5,4.0,25.476190476190492,391.0082727197019,2020-11-26 +414,4005.1000000000004,4.0,25.285714285714302,396.2420358666185,2020-11-26 +413,3995.7000000000003,4.0,25.000000000000014,401.75375301632926,2020-11-26 +412,3986.9,4.0,24.619047619047635,407.8139608316525,2020-11-26 +411,3977.6000000000004,4.0,24.666666666666686,413.282436278098,2020-11-26 +410,3968.2000000000003,4.0,24.71428571428573,416.8279511449635,2020-11-26 +409,3958.7000000000003,4.0,24.761904761904777,417.4393843577774,2020-11-26 +408,3948.7000000000003,4.0,25.14285714285716,413.0754865634102,2020-11-26 +407,3939.8,4.0,25.33333333333335,404.07264566324005,2020-11-26 +406,3930.3,4.0,25.76190476190478,394.5148982954112,2020-11-26 +405,3921.5,4.0,25.904761904761923,387.5959266827113,2020-11-26 +404,3912.3,4.0,25.76190476190478,382.951333337558,2020-11-26 +431,4161.400000000001,4.0,24.90476190476192,398.58588259769374,2020-11-26 +432,4170.900000000001,4.0,24.857142857142872,399.0670217493009,2020-11-26 +433,4180.1,4.0,25.000000000000018,398.36550673771603,2020-11-26 +434,4188.7,4.0,24.90476190476192,398.9144515328109,2020-11-26 +462,4446.3,4.0,24.666666666666682,366.7874036287346,2020-11-26 +461,4438.5,4.0,24.666666666666682,364.3180840977973,2020-11-26 +460,4428.8,4.0,24.619047619047635,366.91421050004374,2020-11-26 +459,4419.6,4.0,24.52380952380954,371.43218098558253,2020-11-26 +458,4410.400000000001,4.0,24.476190476190492,376.9659506876348,2020-11-26 +457,4400.8,4.0,24.476190476190492,379.5140105467414,2020-11-26 +456,4392.2,4.0,24.095238095238113,380.0682789803004,2020-11-26 +455,4382.6,4.0,24.190476190476208,380.2731782905515,2020-11-26 +454,4373.5,4.0,24.33333333333335,381.4551603061888,2020-11-26 +453,4364.400000000001,4.0,24.52380952380954,380.0033645627194,2020-11-26 +452,4355.2,4.0,24.666666666666682,376.60684205233713,2020-11-26 +451,4346.2,4.0,24.857142857142875,374.0643909804039,2020-11-26 +450,4337.1,4.0,24.666666666666682,373.58855846180904,2020-11-26 +402,3894.2000000000003,4.0,25.04761904761906,380.0861324364909,2020-11-26 +449,4328.2,4.0,24.428571428571445,379.00501739504534,2020-11-26 +447,4309.8,4.0,24.238095238095255,395.3091111265053,2020-11-26 +446,4300.0,4.0,24.2857142857143,393.31437787996936,2020-11-26 +445,4290.7,4.0,24.619047619047635,386.4462623616814,2020-11-26 +444,4281.400000000001,4.0,24.904761904761923,376.51092795085503,2020-11-26 +443,4272.1,4.0,24.809523809523824,372.84776353499035,2020-11-26 +442,4262.900000000001,4.0,24.76190476190478,376.2044277924281,2020-11-26 +441,4253.8,4.0,24.238095238095255,381.78417575166884,2020-11-26 +440,4244.7,4.0,24.095238095238113,386.5954128596851,2020-11-26 +439,4235.400000000001,4.0,24.33333333333335,389.42691474543335,2020-11-26 +438,4226.3,4.0,24.52380952380954,391.78608962372255,2020-11-26 +437,4217.2,4.0,24.76190476190478,394.85752383827685,2020-11-26 +436,4206.7,4.0,24.52380952380954,397.0036810824091,2020-11-26 +435,4198.7,4.0,24.571428571428587,397.87274078835037,2020-11-26 +448,4318.900000000001,4.0,24.57142857142859,389.07848602738966,2020-11-26 +525,5020.6,4.0,15.1904761904762,143.14789243682532,2020-11-26 +263,2631.0,4.0,15.857142857142868,186.56847770324924,2020-11-26 +261,2611.2000000000003,4.0,15.619047619047628,169.61282315838957,2020-11-26 +104,1083.9,4.0,22.33333333333335,440.90625438177256,2020-11-26 +103,1072.7,4.0,21.761904761904777,449.18870915924975,2020-11-26 +102,1063.2,4.0,22.14285714285716,450.1646289871514,2020-11-26 +101,1053.0,4.0,23.047619047619065,445.684728908545,2020-11-26 +100,1043.0,4.0,23.380952380952397,436.65647719681533,2020-11-26 +99,1033.7,4.0,23.142857142857157,432.0768353981852,2020-11-26 +98,1023.5,4.0,23.000000000000014,431.807850602704,2020-11-26 +97,1013.4000000000001,4.0,22.761904761904777,429.31305265715866,2020-11-26 +96,1002.6,4.0,23.190476190476204,422.2403354852155,2020-11-26 +95,993.2,4.0,23.428571428571445,415.7056220706378,2020-11-26 +94,983.2,4.0,23.57142857142859,409.8006824725941,2020-11-26 +93,973.8000000000001,4.0,23.2857142857143,409.8806448432855,2020-11-26 +92,963.6,4.0,23.000000000000014,416.17303984882597,2020-11-26 +91,953.8000000000001,4.0,22.71428571428573,427.63286585015885,2020-11-26 +90,943.6,4.0,22.619047619047635,440.46500876331413,2020-11-26 +89,932.9000000000001,4.0,22.2857142857143,451.43983451700757,2020-11-26 +88,923.5,4.0,22.238095238095255,457.7469235468293,2020-11-26 +87,913.0,4.0,22.571428571428584,456.6921928045314,2020-11-26 +86,902.8000000000001,4.0,22.428571428571445,453.6129181781139,2020-11-26 +85,892.6,4.0,22.761904761904777,455.0006906576573,2020-11-26 +84,882.4000000000001,4.0,22.619047619047635,461.0667018636981,2020-11-26 +83,872.3000000000001,4.0,22.42857142857144,464.32432924736884,2020-11-26 +82,862.3000000000001,4.0,22.52380952380954,460.1338809376532,2020-11-26 +81,851.2,4.0,22.809523809523824,441.2876510110631,2020-11-26 +80,841.4000000000001,4.0,22.857142857142872,417.8117691998192,2020-11-26 +79,831.3000000000001,4.0,23.190476190476204,400.9738578434061,2020-11-26 +78,821.1,4.0,22.95238095238097,397.7700627688905,2020-11-26 +105,1093.9,4.0,22.90476190476192,430.551735012511,2020-11-26 +77,811.6,4.0,22.666666666666682,407.29658745475905,2020-11-26 +106,1104.0,4.0,23.476190476190492,428.29271456311994,2020-11-26 +108,1124.2,4.0,23.71428571428573,431.1387136660216,2020-11-26 +135,1394.4,4.0,22.52380952380954,431.6975026686101,2020-11-26 +134,1384.6000000000001,4.0,22.2857142857143,436.5028720286181,2020-11-26 +133,1374.5,4.0,22.33333333333335,440.97100167566555,2020-11-26 +132,1363.7,4.0,22.33333333333335,444.0175799473244,2020-11-26 +131,1353.5,4.0,22.2857142857143,445.36269354402106,2020-11-26 +130,1342.7,4.0,22.619047619047635,443.866363467269,2020-11-26 +129,1333.2,4.0,22.809523809523824,437.95753651290704,2020-11-26 +128,1323.0,4.0,22.857142857142872,431.60531026798355,2020-11-26 +127,1313.1000000000001,4.0,23.09523809523811,427.2996337988267,2020-11-26 +126,1303.0,4.0,23.000000000000014,428.693119012999,2020-11-26 +125,1292.8000000000002,4.0,23.09523809523811,435.6078210245741,2020-11-26 +124,1282.5,4.0,22.761904761904777,444.5764872662451,2020-11-26 +123,1272.3000000000002,4.0,22.857142857142872,452.1876001023275,2020-11-26 +122,1261.5,4.0,22.952380952380967,455.1186592008733,2020-11-26 +121,1252.0,4.0,22.95238095238097,446.4970362453588,2020-11-26 +120,1242.0,4.0,23.190476190476204,433.8968767347414,2020-11-26 +119,1231.7,4.0,23.571428571428587,420.70152908677187,2020-11-26 +118,1222.3,4.0,23.571428571428587,412.54364679840364,2020-11-26 +117,1211.8,4.0,23.95238095238097,415.0740429612655,2020-11-26 +116,1202.0,4.0,24.095238095238113,423.72680647766776,2020-11-26 +115,1192.2,4.0,24.000000000000018,430.1903772975412,2020-11-26 +114,1182.8,4.0,24.000000000000018,431.2621467587428,2020-11-26 +113,1172.6000000000001,4.0,24.000000000000018,423.9348291977082,2020-11-26 +112,1163.0,4.0,24.000000000000018,413.9713634677747,2020-11-26 +111,1152.8,4.0,24.000000000000018,410.04807347928846,2020-11-26 +110,1142.7,4.0,24.095238095238113,415.51988372632457,2020-11-26 +109,1133.5,4.0,23.857142857142875,424.9986136646129,2020-11-26 +107,1113.8,4.0,23.95238095238097,431.449865866079,2020-11-26 +76,801.7,4.0,22.238095238095255,423.3611229910863,2020-11-26 +75,791.6,4.0,22.09523809523811,433.1122679375661,2020-11-26 +74,780.8000000000001,4.0,22.238095238095255,436.856127339786,2020-11-26 +32,353.20000000000005,4.0,15.952380952380963,264.055258130767,2020-11-26 +31,342.8,4.0,15.761904761904773,285.3827408209206,2020-11-26 +30,332.6,4.0,15.1904761904762,309.24894505094073,2020-11-26 +26,283.8,4.0,15.1904761904762,348.9507243861761,2020-11-26 +25,270.7,4.0,15.857142857142868,338.1472388255221,2020-11-26 +24,259.0,4.0,15.80952380952382,330.5071800043852,2020-11-26 +23,247.60000000000002,4.0,15.904761904761916,329.81041377971496,2020-11-26 +22,236.4,4.0,15.523809523809533,337.5919478847926,2020-11-26 +21,223.70000000000002,4.0,15.428571428571438,346.4074027698257,2020-11-26 +20,212.8,4.0,15.523809523809533,352.1173710887465,2020-11-26 +19,200.3,4.0,15.809523809523817,344.8039894001066,2020-11-26 +18,188.5,4.0,15.857142857142868,328.975615158457,2020-11-26 +17,176.20000000000002,4.0,16.1904761904762,312.97825124220844,2020-11-26 +16,165.20000000000002,4.0,15.952380952380963,305.3904281653479,2020-11-26 +15,153.4,4.0,15.57142857142858,308.284271531229,2020-11-26 +14,142.1,4.0,15.285714285714295,322.1907425046371,2020-11-26 +13,129.8,4.0,15.523809523809533,339.8424335017729,2020-11-26 +12,117.80000000000001,4.0,15.761904761904773,350.1441864058529,2020-11-26 +11,105.9,4.0,16.238095238095248,342.8999085945328,2020-11-26 +10,94.5,4.0,16.66666666666668,316.65662077959473,2020-11-26 +9,82.5,4.0,17.47619047619049,274.7355214984467,2020-11-26 +8,72.10000000000001,4.0,17.714285714285726,236.59505837461535,2020-11-26 +7,61.6,4.0,17.714285714285726,230.53025116099843,2020-11-26 +6,30.5,4.0,17.142857142857153,227.5093059173319,2020-11-26 +5,30.5,4.0,16.00000000000001,209.80768163607434,2020-11-26 +4,30.5,4.0,15.761904761904773,166.82296767022802,2020-11-26 +3,19.6,4.0,15.857142857142868,101.17820057022058,2020-11-26 +33,353.20000000000005,4.0,16.095238095238106,266.98314642559967,2020-11-26 +34,353.20000000000005,4.0,16.00000000000001,276.2180972585314,2020-11-26 +36,353.20000000000005,4.0,17.285714285714295,226.38289185143063,2020-11-26 +37,353.20000000000005,4.0,23.476190476190492,171.6988504970208,2020-11-26 +73,770.6,4.0,22.761904761904777,432.92448436313026,2020-11-26 +72,760.5,4.0,22.90476190476192,416.90017670152116,2020-11-26 +71,750.5,4.0,22.95238095238097,388.5892586958385,2020-11-26 +70,740.2,4.0,22.619047619047635,351.70177932732446,2020-11-26 +69,730.0,4.0,21.2857142857143,313.3797324242123,2020-11-26 +68,719.7,4.0,19.190476190476204,293.62949525379605,2020-11-26 +67,710.3000000000001,4.0,17.095238095238106,299.47448564960087,2020-11-26 +66,698.4000000000001,4.0,15.333333333333343,315.50547862829774,2020-11-26 +63,659.6,4.0,15.428571428571438,273.6216811002229,2020-11-26 +62,647.6,4.0,16.285714285714295,239.51133747716966,2020-11-26 +56,585.1,4.0,15.666666666666679,317.9673706536543,2020-11-26 +55,573.4,4.0,15.00000000000001,314.11416081252696,2020-11-26 +53,550.5,4.0,15.047619047619058,331.9077081665019,2020-11-26 +136,1404.5,4.0,22.95238095238097,425.34819766238445,2020-11-26 +52,538.6,4.0,15.428571428571438,338.90061038242885,2020-11-26 +50,514.4,4.0,15.666666666666679,349.2564735321773,2020-11-26 +49,503.8,4.0,15.761904761904773,355.13166975921035,2020-11-26 +48,491.5,4.0,15.714285714285722,355.9258187830992,2020-11-26 +47,479.3,4.0,15.857142857142868,354.39998541956754,2020-11-26 +46,466.70000000000005,4.0,16.095238095238106,354.1226003277711,2020-11-26 +45,455.8,4.0,16.00000000000001,350.9953327759853,2020-11-26 +44,443.5,4.0,15.904761904761916,358.4841394932871,2020-11-26 +43,431.70000000000005,4.0,16.047619047619058,356.623429061111,2020-11-26 +42,419.6,4.0,15.00000000000001,317.091536293383,2020-11-26 +41,408.90000000000003,4.0,16.952380952380963,249.69512130193138,2020-11-26 +40,397.40000000000003,4.0,23.619047619047635,175.66992189192712,2020-11-26 +39,386.70000000000005,4.0,26.857142857142875,115.18905201370714,2020-11-26 +38,382.1,4.0,26.666666666666686,115.10777497773503,2020-11-26 +51,526.7,4.0,15.523809523809533,343.83020507712763,2020-11-26 +262,2621.1000000000004,4.0,15.619047619047628,167.03625437010135,2020-11-26 +137,1413.7,4.0,23.142857142857157,418.368440803417,2020-11-26 +139,1433.6000000000001,4.0,23.52380952380954,410.54383118685394,2020-11-26 +229,2307.7000000000003,4.0,23.71428571428573,392.36654490868955,2020-11-26 +228,2297.8,4.0,23.857142857142875,391.14025403814753,2020-11-26 +227,2288.5,4.0,24.095238095238113,387.89500609184,2020-11-26 +226,2279.5,4.0,23.90476190476192,383.7303951159326,2020-11-26 +225,2269.8,4.0,24.14285714285716,378.0380352844264,2020-11-26 +224,2260.2000000000003,4.0,24.285714285714306,370.7161190359933,2020-11-26 +223,2250.3,4.0,24.428571428571445,364.3200812420348,2020-11-26 +222,2241.8,4.0,24.14285714285716,367.2160363612702,2020-11-26 +221,2232.8,4.0,23.857142857142875,376.36291867339264,2020-11-26 +220,2222.9,4.0,23.666666666666686,384.93005045947007,2020-11-26 +219,2214.0,4.0,23.571428571428587,386.92716462074094,2020-11-26 +218,2203.5,4.0,23.571428571428587,381.0407122106202,2020-11-26 +217,2193.9,4.0,23.76190476190478,372.5579638179664,2020-11-26 +216,2184.7000000000003,4.0,23.809523809523824,366.4447502857337,2020-11-26 +215,2175.1,4.0,23.71428571428573,363.8265119347638,2020-11-26 +214,2165.8,4.0,23.90476190476192,367.9807646479267,2020-11-26 +213,2155.9,4.0,23.52380952380954,379.11228779723456,2020-11-26 +212,2146.9,4.0,23.33333333333335,390.24754170567155,2020-11-26 +211,2136.3,4.0,23.666666666666686,399.07347107607075,2020-11-26 +210,2126.7000000000003,4.0,24.095238095238113,401.6946461195058,2020-11-26 +209,2117.7000000000003,4.0,24.190476190476204,396.82863199844354,2020-11-26 +208,2108.3,4.0,24.3809523809524,389.3012000548723,2020-11-26 +207,2097.9,4.0,24.14285714285716,384.2569139415647,2020-11-26 +206,2088.7000000000003,4.0,23.90476190476192,376.34232447411375,2020-11-26 +205,2078.5,4.0,23.90476190476192,364.40874520404753,2020-11-26 +204,2069.7000000000003,4.0,24.14285714285716,350.2201623518089,2020-11-26 +203,2060.0,4.0,24.285714285714306,335.5978223417502,2020-11-26 +230,2317.6,4.0,23.666666666666686,391.8396971320842,2020-11-26 +202,2050.8,4.0,24.428571428571445,325.2164104945607,2020-11-26 +231,2326.7000000000003,4.0,23.71428571428573,386.0316339650858,2020-11-26 +233,2346.0,4.0,24.238095238095255,385.783197315954,2020-11-26 +260,2601.4,4.0,15.904761904761916,200.64467016958673,2020-11-26 +259,2592.1000000000004,4.0,16.38095238095239,258.6258594753656,2020-11-26 +258,2583.0,4.0,18.85714285714287,327.622947820777,2020-11-26 +257,2575.0,4.0,21.190476190476204,376.2260435066621,2020-11-26 +256,2561.4,4.0,23.380952380952394,386.50205690172993,2020-11-26 +255,2552.8,4.0,25.000000000000018,375.54617500574636,2020-11-26 +254,2543.6000000000004,4.0,25.285714285714302,357.57461899637127,2020-11-26 +253,2534.5,4.0,24.428571428571445,349.5494255693543,2020-11-26 +252,2524.6000000000004,4.0,24.428571428571445,358.14143250598977,2020-11-26 +251,2516.9,4.0,24.14285714285716,371.8383142931939,2020-11-26 +250,2507.4,4.0,23.857142857142875,381.01323106540957,2020-11-26 +249,2497.9,4.0,23.666666666666682,388.42486633082933,2020-11-26 +248,2488.1000000000004,4.0,23.33333333333335,390.0925711544905,2020-11-26 +247,2477.9,4.0,22.95238095238097,384.6296279440278,2020-11-26 +246,2467.9,4.0,22.95238095238097,373.2835280685308,2020-11-26 +245,2458.1000000000004,4.0,23.238095238095255,361.28896025876566,2020-11-26 +244,2448.5,4.0,23.809523809523824,354.89018463878597,2020-11-26 +243,2439.6,4.0,24.238095238095255,357.2251596830606,2020-11-26 +242,2430.1,4.0,24.33333333333335,365.36060258051543,2020-11-26 +241,2420.9,4.0,24.33333333333335,371.27789661630936,2020-11-26 +240,2411.4,4.0,24.476190476190496,370.0794708467182,2020-11-26 +239,2401.6,4.0,24.666666666666682,365.7819944534795,2020-11-26 +238,2392.3,4.0,24.809523809523824,366.55891734797433,2020-11-26 +237,2383.7000000000003,4.0,24.904761904761923,374.81474555920727,2020-11-26 +236,2374.4,4.0,24.619047619047635,387.0045811445298,2020-11-26 +235,2364.5,4.0,24.380952380952394,393.0544302939261,2020-11-26 +234,2355.1,4.0,24.190476190476208,391.89935033218796,2020-11-26 +232,2335.9,4.0,23.76190476190478,382.7746002836167,2020-11-26 +201,2041.9,4.0,24.14285714285716,329.6973633081725,2020-11-26 +200,2032.1000000000001,4.0,23.95238095238097,343.5202773232065,2020-11-26 +199,2022.7,4.0,23.428571428571445,359.9942727337684,2020-11-26 +166,1704.1000000000001,4.0,23.761904761904777,412.94096850207677,2020-11-26 +165,1694.7,4.0,23.2857142857143,408.53374884307823,2020-11-26 +164,1684.5,4.0,22.619047619047635,404.2533127603788,2020-11-26 +163,1674.5,4.0,22.380952380952394,402.0642036036191,2020-11-26 +162,1664.3000000000002,4.0,22.33333333333335,396.8201427104302,2020-11-26 +161,1653.9,4.0,22.23809523809525,391.0993862502216,2020-11-26 +160,1643.9,4.0,22.2857142857143,391.72402205766775,2020-11-26 +159,1634.3000000000002,4.0,22.142857142857157,395.57674122146705,2020-11-26 +158,1624.5,4.0,21.90476190476192,402.3838824732474,2020-11-26 +157,1614.3000000000002,4.0,22.000000000000014,411.47216168280806,2020-11-26 +156,1604.3000000000002,4.0,22.000000000000014,418.38661296644085,2020-11-26 +155,1593.7,4.0,21.90476190476192,427.31634268111304,2020-11-26 +154,1583.8000000000002,4.0,22.04761904761906,441.5806675561745,2020-11-26 +153,1574.0,4.0,22.33333333333335,454.7098971875419,2020-11-26 +152,1563.2,4.0,22.666666666666682,462.20080439568636,2020-11-26 +151,1553.2,4.0,22.95238095238097,462.7359278502758,2020-11-26 +150,1542.9,4.0,23.09523809523811,457.739829776129,2020-11-26 +149,1533.5,4.0,23.000000000000014,448.4834565217146,2020-11-26 +148,1523.1000000000001,4.0,22.90476190476192,436.217216669461,2020-11-26 +147,1512.8000000000002,4.0,23.14285714285716,422.95985839971866,2020-11-26 +146,1503.3000000000002,4.0,23.380952380952394,412.65692185792375,2020-11-26 +145,1492.5,4.0,23.285714285714302,407.8436292932234,2020-11-26 +144,1483.3000000000002,4.0,22.761904761904777,411.69368459159637,2020-11-26 +143,1473.6000000000001,4.0,22.666666666666682,417.55782973036014,2020-11-26 +142,1463.7,4.0,22.571428571428587,418.89488521798296,2020-11-26 +141,1453.6000000000001,4.0,22.809523809523824,416.2402707825122,2020-11-26 +140,1443.7,4.0,23.380952380952394,412.86730339910093,2020-11-26 +167,1714.0,4.0,23.95238095238097,415.53731521488,2020-11-26 +168,1723.4,4.0,24.095238095238113,415.9182425392249,2020-11-26 +169,1733.0,4.0,24.000000000000018,411.2497105924507,2020-11-26 +170,1742.9,4.0,24.000000000000018,403.5374987699276,2020-11-26 +198,2013.5,4.0,23.52380952380954,372.5559464820726,2020-11-26 +197,2003.9,4.0,23.47619047619049,373.93405118335966,2020-11-26 +196,1994.7,4.0,23.380952380952397,364.71234924164196,2020-11-26 +195,1984.7,4.0,23.238095238095255,358.72093800532195,2020-11-26 +194,1975.3000000000002,4.0,23.476190476190492,357.5987834416359,2020-11-26 +193,1965.6000000000001,4.0,23.571428571428587,360.5981320930998,2020-11-26 +192,1956.6000000000001,4.0,23.95238095238097,360.3837075719566,2020-11-26 +191,1946.6000000000001,4.0,24.095238095238113,351.7606001267153,2020-11-26 +190,1937.4,4.0,24.095238095238113,338.91703822670866,2020-11-26 +189,1927.2,4.0,23.857142857142875,335.8848399644595,2020-11-26 +188,1918.7,4.0,23.71428571428573,348.1635826959017,2020-11-26 +187,1909.5,4.0,23.666666666666686,369.7612487362933,2020-11-26 +186,1900.2,4.0,23.809523809523824,388.6682688646538,2020-11-26 +138,1423.5,4.0,23.33333333333335,412.51720295007954,2020-11-26 +185,1891.0,4.0,23.809523809523824,400.9491909498014,2020-11-26 +183,1871.8000000000002,4.0,23.33333333333335,413.5703429502681,2020-11-26 +182,1861.8000000000002,4.0,23.047619047619065,422.43149136038164,2020-11-26 +181,1851.8000000000002,4.0,22.90476190476192,428.7869861358482,2020-11-26 +180,1841.0,4.0,23.000000000000014,429.1913285082362,2020-11-26 +179,1832.1000000000001,4.0,22.90476190476192,426.121096714552,2020-11-26 +178,1822.1000000000001,4.0,23.047619047619065,421.6224545862078,2020-11-26 +177,1811.8000000000002,4.0,23.33333333333335,419.6964804529017,2020-11-26 +176,1801.6000000000001,4.0,23.666666666666682,420.2645117060824,2020-11-26 +175,1791.4,4.0,23.95238095238097,419.9547235502706,2020-11-26 +174,1781.9,4.0,24.095238095238113,415.4438251873322,2020-11-26 +173,1771.8000000000002,4.0,24.000000000000018,408.21261649862095,2020-11-26 +172,1762.3000000000002,4.0,24.000000000000018,401.4777995142819,2020-11-26 +171,1752.2,4.0,24.000000000000018,399.5379262167599,2020-11-26 +184,1881.1000000000001,4.0,23.761904761904777,406.9982389696486,2020-11-26 +1075,9677.5,4.0,15.619047619047628,128.91093707313092,2020-11-26 +533,5092.700000000001,4.0,15.095238095238106,174.95486446306927,2020-11-26 +536,5123.700000000001,4.0,15.333333333333343,215.88542215353505,2020-11-26 +911,8311.7,4.0,25.285714285714302,320.50765121530696,2020-11-26 +910,8302.9,4.0,24.761904761904777,326.41912585189186,2020-11-26 +909,8294.2,4.0,24.571428571428587,331.8676962323473,2020-11-26 +908,8285.4,4.0,24.809523809523824,334.56947459957127,2020-11-26 +907,8276.6,4.0,24.71428571428573,336.59215849846703,2020-11-26 +906,8267.800000000001,4.0,24.809523809523824,340.6209301673582,2020-11-26 +905,8258.9,4.0,24.666666666666686,343.1084903035621,2020-11-26 +904,8250.0,4.0,24.71428571428573,339.8684873423483,2020-11-26 +903,8241.0,4.0,24.952380952380967,334.31596781924713,2020-11-26 +902,8232.0,4.0,24.952380952380967,328.4713234866638,2020-11-26 +901,8223.2,4.0,24.71428571428573,325.4872953855357,2020-11-26 +900,8214.4,4.0,24.666666666666686,324.89568481362176,2020-11-26 +899,8205.7,4.0,24.809523809523824,322.79845325354336,2020-11-26 +898,8196.300000000001,4.0,24.809523809523824,320.268123517239,2020-11-26 +897,8188.1,4.0,24.666666666666682,321.9576915664542,2020-11-26 +896,8179.200000000001,4.0,24.476190476190496,328.64438842917923,2020-11-26 +895,8169.8,4.0,24.238095238095255,338.35650341121493,2020-11-26 +894,8160.900000000001,4.0,24.380952380952394,345.4497016539623,2020-11-26 +893,8151.6,4.0,24.476190476190492,347.8889838166577,2020-11-26 +892,8143.0,4.0,24.52380952380954,345.69839229447246,2020-11-26 +891,8134.200000000001,4.0,24.52380952380954,342.2252635856339,2020-11-26 +890,8124.700000000001,4.0,24.809523809523824,338.36463221960247,2020-11-26 +889,8115.700000000001,4.0,24.857142857142872,333.8565876956327,2020-11-26 +888,8106.200000000001,4.0,25.09523809523811,327.23795869482115,2020-11-26 +887,8097.8,4.0,25.000000000000014,323.81699581899636,2020-11-26 +886,8089.6,4.0,25.09523809523811,324.4350749692437,2020-11-26 +885,8081.0,4.0,24.857142857142872,329.15995618189186,2020-11-26 +912,8319.9,4.0,25.71428571428573,316.19321052174337,2020-11-26 +884,8072.1,4.0,24.71428571428573,333.39586135602315,2020-11-26 +913,8328.7,4.0,25.619047619047635,319.3814716389619,2020-11-26 +915,8345.9,4.0,25.04761904761906,335.5787898881947,2020-11-26 +942,8580.4,4.0,25.95238095238097,360.02819421944145,2020-11-26 +941,8571.800000000001,4.0,25.71428571428573,353.68756633454313,2020-11-26 +940,8562.800000000001,4.0,25.76190476190478,347.1983549678927,2020-11-26 +939,8554.300000000001,4.0,25.57142857142859,341.9533092836314,2020-11-26 +938,8545.800000000001,4.0,25.666666666666686,340.4919031985547,2020-11-26 +937,8536.9,4.0,25.71428571428573,340.98743653644755,2020-11-26 +936,8528.0,4.0,25.380952380952397,340.0177461299555,2020-11-26 +935,8519.6,4.0,25.190476190476204,339.533476322733,2020-11-26 +934,8510.800000000001,4.0,25.14285714285716,336.4594300452974,2020-11-26 +933,8502.5,4.0,24.90476190476192,333.94010929144974,2020-11-26 +932,8493.6,4.0,25.09523809523811,335.348332274707,2020-11-26 +931,8484.9,4.0,24.761904761904777,336.9547359094807,2020-11-26 +930,8476.6,4.0,24.666666666666682,337.1403964736621,2020-11-26 +929,8467.6,4.0,25.14285714285716,337.4003156953438,2020-11-26 +928,8458.7,4.0,25.76190476190478,334.43697177478623,2020-11-26 +927,8449.9,4.0,26.095238095238113,332.79085414027156,2020-11-26 +926,8441.6,4.0,26.14285714285716,335.09527255869807,2020-11-26 +925,8433.6,4.0,25.476190476190492,337.4963830580531,2020-11-26 +924,8424.7,4.0,24.952380952380967,337.0617355421971,2020-11-26 +923,8415.7,4.0,24.809523809523824,334.6083162359182,2020-11-26 +922,8407.4,4.0,25.14285714285716,330.32139749791986,2020-11-26 +921,8398.6,4.0,25.285714285714302,329.11253166054314,2020-11-26 +920,8389.800000000001,4.0,25.33333333333335,333.14009121514874,2020-11-26 +919,8381.5,4.0,25.285714285714302,338.9141098734017,2020-11-26 +918,8372.1,4.0,25.14285714285716,342.2742720209719,2020-11-26 +917,8363.6,4.0,24.90476190476192,343.84500284938287,2020-11-26 +916,8355.300000000001,4.0,24.90476190476192,341.3369495085451,2020-11-26 +914,8337.6,4.0,25.428571428571445,327.471861940493,2020-11-26 +883,8062.700000000001,4.0,24.571428571428587,333.4256629901105,2020-11-26 +882,8054.3,4.0,24.857142857142875,328.1333605192335,2020-11-26 +881,8045.400000000001,4.0,25.14285714285716,324.02548509773607,2020-11-26 +848,7752.1,4.0,17.47619047619049,267.1343841520265,2020-11-26 +847,7741.8,4.0,17.190476190476204,268.3846350365757,2020-11-26 +846,7731.3,4.0,17.047619047619058,268.2734393071337,2020-11-26 +845,7720.6,4.0,17.047619047619058,260.31647432382584,2020-11-26 +844,7710.1,4.0,17.2857142857143,246.87080711285466,2020-11-26 +843,7700.6,4.0,17.333333333333343,233.3188667728968,2020-11-26 +842,7690.6,4.0,17.380952380952394,223.44642152078475,2020-11-26 +841,7680.8,4.0,17.095238095238106,218.85938555525235,2020-11-26 +840,7670.400000000001,4.0,16.66666666666668,220.40914456914854,2020-11-26 +839,7660.400000000001,4.0,16.190476190476204,225.11665005502996,2020-11-26 +838,7649.400000000001,4.0,15.666666666666679,228.04927093851623,2020-11-26 +837,7639.900000000001,4.0,15.714285714285722,229.50537351738623,2020-11-26 +836,7629.200000000001,4.0,16.00000000000001,227.482711695475,2020-11-26 +835,7618.700000000001,4.0,16.095238095238106,223.1462517128669,2020-11-26 +834,7609.1,4.0,16.61904761904763,208.29094257017042,2020-11-26 +833,7598.700000000001,4.0,16.380952380952394,171.52217929218506,2020-11-26 +832,7588.8,4.0,16.095238095238106,120.30164896939769,2020-11-26 +823,7534.3,4.0,15.619047619047628,179.99054943753714,2020-11-26 +822,7534.3,4.0,16.61904761904763,204.24676664941742,2020-11-26 +821,7534.3,4.0,16.523809523809536,195.27595328011552,2020-11-26 +820,7524.400000000001,4.0,16.47619047619049,183.07728964214158,2020-11-26 +819,7514.6,4.0,16.238095238095248,186.0623741661035,2020-11-26 +818,7506.3,4.0,16.142857142857153,196.29046513630533,2020-11-26 +817,7495.8,4.0,16.1904761904762,199.57287658005188,2020-11-26 +816,7485.6,4.0,16.380952380952394,195.88857840590302,2020-11-26 +815,7476.0,4.0,16.714285714285726,188.1450158527993,2020-11-26 +814,7466.200000000001,4.0,16.42857142857144,180.02453067029205,2020-11-26 +849,7762.5,4.0,17.571428571428584,266.54512425963696,2020-11-26 +850,7772.5,4.0,16.80952380952382,260.80103922992566,2020-11-26 +851,7782.400000000001,4.0,17.142857142857153,250.061619459344,2020-11-26 +852,7793.1,4.0,19.571428571428584,237.34420651444452,2020-11-26 +880,8037.400000000001,4.0,25.52380952380954,323.1914592360674,2020-11-26 +879,8028.400000000001,4.0,25.238095238095255,326.8465415777241,2020-11-26 +878,8019.5,4.0,24.71428571428573,332.59381697994456,2020-11-26 +877,8010.6,4.0,24.285714285714302,338.82825682981843,2020-11-26 +876,8001.6,4.0,24.3809523809524,343.6412354190835,2020-11-26 +875,7992.400000000001,4.0,24.571428571428587,347.120588646542,2020-11-26 +874,7983.1,4.0,24.952380952380967,347.6058129078516,2020-11-26 +873,7974.0,4.0,25.09523809523811,345.6053740939261,2020-11-26 +872,7965.5,4.0,24.90476190476192,342.0229444914611,2020-11-26 +871,7956.5,4.0,25.04761904761906,337.9008821280952,2020-11-26 +870,7947.5,4.0,25.428571428571445,332.5048813775984,2020-11-26 +869,7938.6,4.0,25.619047619047635,326.8415326191996,2020-11-26 +868,7930.400000000001,4.0,25.619047619047635,323.8291906695381,2020-11-26 +943,8589.6,4.0,25.95238095238097,363.9638007547711,2020-11-26 +867,7921.6,4.0,25.428571428571445,327.6420141850541,2020-11-26 +865,7904.3,4.0,24.809523809523824,360.1926300886226,2020-11-26 +864,7894.900000000001,4.0,24.952380952380967,379.4888332633934,2020-11-26 +863,7886.400000000001,4.0,25.476190476190492,393.7546957107104,2020-11-26 +862,7877.0,4.0,25.857142857142875,400.6270599706578,2020-11-26 +861,7867.700000000001,4.0,26.238095238095255,402.0901832389651,2020-11-26 +860,7858.700000000001,4.0,26.666666666666686,401.609117654188,2020-11-26 +859,7849.900000000001,4.0,27.190476190476208,399.1596815058575,2020-11-26 +858,7841.1,4.0,27.857142857142875,391.17263040993384,2020-11-26 +857,7833.1,4.0,28.80952380952383,367.80151629569673,2020-11-26 +856,7824.3,4.0,29.3809523809524,328.9016225867425,2020-11-26 +855,7816.400000000001,4.0,29.238095238095262,283.5656203418415,2020-11-26 +854,7808.6,4.0,26.666666666666686,245.02556316291992,2020-11-26 +853,7800.3,4.0,22.95238095238097,229.54056831344855,2020-11-26 +866,7912.700000000001,4.0,25.04761904761906,340.9697207337082,2020-11-26 +813,7456.3,4.0,15.952380952380963,176.089992095397,2020-11-26 +944,8598.1,4.0,25.619047619047635,360.4481606461194,2020-11-26 +946,8615.4,4.0,26.14285714285716,339.8292417261977,2020-11-26 +1037,9389.800000000001,4.0,26.238095238095255,312.285650236037,2020-11-26 +1036,9381.300000000001,4.0,26.285714285714302,315.10073680671803,2020-11-26 +1035,9373.2,4.0,26.14285714285716,315.21703355694615,2020-11-26 +1034,9365.0,4.0,25.904761904761923,313.5525005684248,2020-11-26 +1033,9356.800000000001,4.0,26.000000000000018,313.2105450497076,2020-11-26 +1032,9348.1,4.0,26.000000000000018,313.92471060786676,2020-11-26 +1031,9340.0,4.0,25.904761904761923,314.0149013987339,2020-11-26 +1030,9331.2,4.0,26.047619047619065,312.0628139370325,2020-11-26 +1029,9323.0,4.0,26.33333333333335,306.8438638052362,2020-11-26 +1028,9314.9,4.0,26.857142857142875,300.86118081398274,2020-11-26 +1027,9306.7,4.0,26.857142857142875,300.15265197635716,2020-11-26 +1026,9298.6,4.0,26.33333333333335,305.134660587898,2020-11-26 +1024,9281.6,4.0,25.52380952380954,318.7862658779401,2020-11-26 +1023,9273.2,4.0,25.33333333333335,319.80842188980023,2020-11-26 +1022,9264.4,4.0,25.76190476190478,320.209738194906,2020-11-26 +1021,9256.1,4.0,25.619047619047635,322.90122966891334,2020-11-26 +1020,9247.9,4.0,25.428571428571445,327.2019666403513,2020-11-26 +1019,9239.1,4.0,25.619047619047635,331.0962423060098,2020-11-26 +1018,9229.800000000001,4.0,25.666666666666686,329.1208307471504,2020-11-26 +1017,9221.9,4.0,25.57142857142859,325.8789476463452,2020-11-26 +1016,9213.1,4.0,25.76190476190478,324.67332114630653,2020-11-26 +1015,9204.9,4.0,25.619047619047635,324.56955253686937,2020-11-26 +1014,9196.1,4.0,26.000000000000018,325.4985540428962,2020-11-26 +1013,9188.0,4.0,26.476190476190492,328.4253544260047,2020-11-26 +1012,9179.4,4.0,26.285714285714302,331.0679884450524,2020-11-26 +1011,9171.2,4.0,25.857142857142875,335.57212721988515,2020-11-26 +1010,9162.9,4.0,25.619047619047635,339.492370803562,2020-11-26 +1038,9397.300000000001,4.0,26.33333333333335,308.30961146601567,2020-11-26 +1009,9154.1,4.0,25.238095238095255,340.8190608529065,2020-11-26 +1039,9405.800000000001,4.0,26.571428571428587,304.0135601005615,2020-11-26 +1041,9422.300000000001,4.0,26.52380952380954,304.2834101137911,2020-11-26 +1068,9628.4,4.0,15.428571428571438,158.8641924399707,2020-11-26 +1067,9594.300000000001,4.0,17.380952380952394,262.6705156797658,2020-11-26 +1066,9594.300000000001,4.0,17.85714285714287,349.8183597675104,2020-11-26 +1065,9594.300000000001,4.0,18.2857142857143,398.6696185581536,2020-11-26 +1064,9594.300000000001,4.0,17.047619047619058,403.95935078296833,2020-11-26 +1063,9594.300000000001,4.0,18.380952380952394,380.9059846513161,2020-11-26 +1062,9594.300000000001,4.0,21.380952380952394,350.09345154952314,2020-11-26 +1061,9582.4,4.0,25.000000000000018,330.9378736611087,2020-11-26 +1060,9574.800000000001,4.0,28.19047619047621,314.92135222484853,2020-11-26 +1059,9567.1,4.0,30.00000000000002,307.25923032846856,2020-11-26 +1058,9559.5,4.0,29.142857142857164,307.7157359829042,2020-11-26 +1057,9551.9,4.0,28.523809523809543,313.58281750362744,2020-11-26 +1056,9543.7,4.0,28.047619047619065,320.1883504529876,2020-11-26 +1055,9535.9,4.0,27.809523809523828,325.6498261967615,2020-11-26 +1054,9527.7,4.0,27.57142857142859,328.3459031658773,2020-11-26 +1053,9518.9,4.0,27.42857142857145,324.9982952455274,2020-11-26 +1052,9511.7,4.0,27.3809523809524,317.02896631457986,2020-11-26 +1051,9503.4,4.0,27.619047619047638,307.2414075986023,2020-11-26 +1050,9495.6,4.0,27.904761904761923,299.01116408799123,2020-11-26 +1049,9487.300000000001,4.0,27.904761904761926,295.991760734918,2020-11-26 +1048,9479.7,4.0,27.285714285714306,299.01584606056383,2020-11-26 +1047,9471.6,4.0,26.571428571428587,302.90773034322433,2020-11-26 +1046,9462.9,4.0,26.285714285714302,305.72198789682756,2020-11-26 +1045,9455.300000000001,4.0,26.52380952380954,308.0372389244601,2020-11-26 +1044,9446.7,4.0,26.52380952380954,309.49921581222725,2020-11-26 +1043,9439.4,4.0,26.476190476190492,309.31206926488994,2020-11-26 +1042,9430.5,4.0,26.476190476190492,307.72417294149034,2020-11-26 +1040,9413.9,4.0,26.52380952380954,302.1150241140066,2020-11-26 +1008,9145.1,4.0,25.238095238095255,340.477533455973,2020-11-26 +1007,9137.0,4.0,25.190476190476204,340.6511787113051,2020-11-26 +1006,9128.1,4.0,25.190476190476204,339.9078179478065,2020-11-26 +973,8848.2,4.0,26.809523809523824,363.1528649316984,2020-11-26 +972,8839.7,4.0,26.619047619047635,361.6013649493308,2020-11-26 +971,8831.0,4.0,26.3809523809524,358.2394605974356,2020-11-26 +970,8822.5,4.0,26.190476190476208,356.1599848792314,2020-11-26 +969,8813.5,4.0,26.14285714285716,355.5063123351795,2020-11-26 +968,8805.1,4.0,25.904761904761923,355.93086576991954,2020-11-26 +967,8796.6,4.0,26.000000000000018,356.8166241143682,2020-11-26 +966,8788.1,4.0,26.000000000000018,357.1552580890472,2020-11-26 +965,8779.0,4.0,26.000000000000018,356.5004956909907,2020-11-26 +964,8770.5,4.0,26.000000000000018,355.76768485727604,2020-11-26 +963,8762.0,4.0,26.000000000000018,353.8817380114948,2020-11-26 +962,8753.5,4.0,26.000000000000018,350.47221839052804,2020-11-26 +961,8744.5,4.0,26.000000000000018,346.2414810287303,2020-11-26 +960,8736.0,4.0,26.000000000000018,342.6196116570611,2020-11-26 +959,8727.0,4.0,26.000000000000018,341.3955774608785,2020-11-26 +958,8718.7,4.0,26.000000000000018,342.1765845794096,2020-11-26 +957,8709.6,4.0,26.000000000000018,343.68668321623693,2020-11-26 +956,8701.2,4.0,26.000000000000018,345.4207225531695,2020-11-26 +955,8692.9,4.0,26.000000000000018,345.6439853124147,2020-11-26 +954,8683.9,4.0,26.000000000000018,344.0150688130985,2020-11-26 +953,8675.4,4.0,26.000000000000018,343.19553098259746,2020-11-26 +952,8666.4,4.0,26.000000000000018,343.68598514246503,2020-11-26 +951,8658.1,4.0,25.904761904761923,343.9988962054017,2020-11-26 +950,8649.6,4.0,26.047619047619065,342.76618139321215,2020-11-26 +949,8640.7,4.0,26.428571428571445,338.44501601286186,2020-11-26 +948,8631.6,4.0,26.71428571428573,332.4672184323131,2020-11-26 +947,8623.800000000001,4.0,26.476190476190492,332.1220348737546,2020-11-26 +974,8856.7,4.0,26.857142857142875,363.67645757171147,2020-11-26 +975,8865.2,4.0,27.19047619047621,362.93265731297595,2020-11-26 +976,8873.7,4.0,26.95238095238097,361.294162611478,2020-11-26 +977,8882.2,4.0,26.666666666666686,359.96700373253077,2020-11-26 +1005,9118.9,4.0,25.33333333333335,338.31680127999357,2020-11-26 +1004,9111.300000000001,4.0,25.52380952380954,335.577541318359,2020-11-26 +1003,9102.4,4.0,25.666666666666686,335.3097794054454,2020-11-26 +1002,9094.1,4.0,25.76190476190478,336.56922516966665,2020-11-26 +1001,9085.300000000001,4.0,25.619047619047635,336.2685231894351,2020-11-26 +1000,9077.2,4.0,26.000000000000018,333.47366881886046,2020-11-26 +999,9068.4,4.0,26.380952380952397,329.73951740410666,2020-11-26 +998,9060.2,4.0,26.428571428571445,326.78805232267905,2020-11-26 +997,9052.1,4.0,26.14285714285716,329.3906781212261,2020-11-26 +996,9043.9,4.0,25.857142857142875,335.2726254542024,2020-11-26 +995,9035.1,4.0,25.571428571428587,339.73483311169565,2020-11-26 +994,9026.7,4.0,25.71428571428573,340.2148746777942,2020-11-26 +993,9018.4,4.0,25.857142857142875,337.874895152289,2020-11-26 +945,8607.1,4.0,25.71428571428573,351.17670536405853,2020-11-26 +992,9009.5,4.0,26.095238095238113,335.44785442412126,2020-11-26 +990,8992.800000000001,4.0,25.857142857142875,343.3801910331897,2020-11-26 +989,8984.0,4.0,25.619047619047635,348.0988665301752,2020-11-26 +988,8975.7,4.0,25.809523809523828,346.79401359744213,2020-11-26 +987,8967.2,4.0,25.904761904761923,338.7042577941219,2020-11-26 +986,8958.300000000001,4.0,26.33333333333335,329.5476099905094,2020-11-26 +985,8950.0,4.0,26.666666666666686,326.0133707133858,2020-11-26 +984,8941.7,4.0,26.476190476190496,328.122766466055,2020-11-26 +983,8933.6,4.0,26.190476190476208,335.6773547481057,2020-11-26 +982,8925.4,4.0,26.14285714285716,344.49669783856575,2020-11-26 +981,8917.1,4.0,25.904761904761923,351.08069863575645,2020-11-26 +980,8908.0,4.0,25.904761904761923,355.05706059840713,2020-11-26 +979,8899.6,4.0,26.047619047619065,357.63472575902586,2020-11-26 +978,8891.2,4.0,26.33333333333335,359.0761780849127,2020-11-26 +991,9001.1,4.0,26.095238095238113,337.9083125434977,2020-11-26 +535,5113.200000000001,4.0,15.047619047619058,208.0579062072484,2020-11-26 +812,7447.1,4.0,16.047619047619058,176.03687502141835,2020-11-26 +810,7428.1,4.0,16.333333333333343,171.89246744148818,2020-11-26 +646,6012.8,4.0,23.809523809523824,320.56082089499773,2020-11-26 +645,6003.6,4.0,24.14285714285716,319.4976435023661,2020-11-26 +644,5994.3,4.0,24.190476190476208,315.9032158570867,2020-11-26 +643,5986.0,4.0,24.476190476190492,313.8143052959677,2020-11-26 +642,5977.5,4.0,24.57142857142859,315.90285874538415,2020-11-26 +641,5968.6,4.0,24.476190476190492,322.478476338927,2020-11-26 +640,5959.400000000001,4.0,24.190476190476208,330.8707434353828,2020-11-26 +639,5949.8,4.0,24.14285714285716,331.54643788740304,2020-11-26 +638,5941.6,4.0,23.90476190476192,324.9594280422154,2020-11-26 +637,5932.3,4.0,24.000000000000018,318.0975153838281,2020-11-26 +636,5923.400000000001,4.0,24.000000000000018,316.5615145514254,2020-11-26 +635,5914.8,4.0,23.90476190476192,320.7697435200588,2020-11-26 +634,5905.3,4.0,24.047619047619065,327.643474664518,2020-11-26 +633,5896.6,4.0,24.33333333333335,331.5406511738297,2020-11-26 +632,5887.900000000001,4.0,24.76190476190478,330.8014065979106,2020-11-26 +631,5879.0,4.0,24.90476190476192,328.82308667933114,2020-11-26 +630,5870.1,4.0,24.76190476190478,327.8667133488242,2020-11-26 +629,5861.0,4.0,24.33333333333335,326.842666498217,2020-11-26 +628,5851.400000000001,4.0,24.047619047619065,326.40470190467977,2020-11-26 +627,5843.3,4.0,23.90476190476192,325.2351969579063,2020-11-26 +626,5834.1,4.0,24.000000000000018,319.66773592993843,2020-11-26 +625,5825.3,4.0,24.000000000000018,312.1000051283651,2020-11-26 +624,5815.900000000001,4.0,24.000000000000018,303.6558847237384,2020-11-26 +623,5807.0,4.0,24.000000000000018,295.47146281775,2020-11-26 +622,5798.5,4.0,24.000000000000018,294.15561135906984,2020-11-26 +621,5789.5,4.0,23.90476190476192,299.74246743900125,2020-11-26 +620,5781.1,4.0,24.14285714285716,306.0353843465317,2020-11-26 +647,6021.700000000001,4.0,24.047619047619065,319.2414394674621,2020-11-26 +619,5771.400000000001,4.0,24.190476190476208,314.13984828805167,2020-11-26 +648,6030.8,4.0,24.33333333333335,322.19225109010165,2020-11-26 +650,6048.6,4.0,24.952380952380967,328.94773067388746,2020-11-26 +677,6285.400000000001,4.0,25.000000000000014,333.25062431535366,2020-11-26 +676,6276.400000000001,4.0,25.000000000000014,339.49805130326604,2020-11-26 +675,6267.6,4.0,25.000000000000014,343.37829681665903,2020-11-26 +674,6259.200000000001,4.0,25.000000000000014,340.6718979866574,2020-11-26 +673,6249.700000000001,4.0,25.000000000000014,330.63510156683117,2020-11-26 +672,6241.1,4.0,25.000000000000014,317.73347564399296,2020-11-26 +671,6232.1,4.0,25.000000000000014,310.68377631096365,2020-11-26 +670,6223.3,4.0,25.000000000000014,312.9764485510616,2020-11-26 +669,6214.5,4.0,25.000000000000014,320.19093449742945,2020-11-26 +668,6206.5,4.0,25.000000000000014,326.1765774855295,2020-11-26 +667,6197.5,4.0,25.000000000000014,330.5041153709499,2020-11-26 +666,6188.900000000001,4.0,25.09523809523811,335.0315182624347,2020-11-26 +665,6180.200000000001,4.0,24.857142857142872,338.77085036663277,2020-11-26 +664,6171.0,4.0,24.71428571428573,341.6359191320359,2020-11-26 +663,6162.700000000001,4.0,24.76190476190478,344.8281145164792,2020-11-26 +662,6153.8,4.0,24.571428571428587,343.3363381561885,2020-11-26 +661,6144.900000000001,4.0,24.476190476190492,339.5283423356275,2020-11-26 +660,6136.0,4.0,24.90476190476192,333.2130128910684,2020-11-26 +659,6126.6,4.0,24.90476190476192,323.4620603766417,2020-11-26 +658,6118.3,4.0,25.33333333333335,316.42326721583254,2020-11-26 +657,6110.400000000001,4.0,25.666666666666686,316.9607009120763,2020-11-26 +656,6102.3,4.0,25.476190476190492,321.30321407480506,2020-11-26 +655,6093.3,4.0,25.190476190476204,328.9301748572028,2020-11-26 +654,6084.400000000001,4.0,25.14285714285716,332.78716178003987,2020-11-26 +653,6075.5,4.0,24.90476190476192,332.1726349292617,2020-11-26 +652,6066.5,4.0,25.000000000000014,332.1060425302644,2020-11-26 +651,6057.700000000001,4.0,25.09523809523811,331.38297379242175,2020-11-26 +649,6039.700000000001,4.0,24.666666666666682,326.4573654087801,2020-11-26 +618,5762.8,4.0,24.476190476190492,319.8073215308771,2020-11-26 +617,5753.8,4.0,24.57142857142859,321.6331869057593,2020-11-26 +616,5744.8,4.0,24.476190476190492,323.4020194136226,2020-11-26 +583,5446.3,4.0,15.333333333333343,201.11584645521543,2020-11-26 +580,5421.8,4.0,15.095238095238106,216.28122625318696,2020-11-26 +579,5411.400000000001,4.0,16.85714285714287,197.68045390311852,2020-11-26 +578,5400.3,4.0,16.238095238095248,171.8898705579795,2020-11-26 +577,5391.1,4.0,16.42857142857144,150.85424835129638,2020-11-26 +576,5380.700000000001,4.0,16.42857142857144,144.98820399163412,2020-11-26 +575,5371.1,4.0,16.238095238095248,145.3324269273275,2020-11-26 +574,5361.8,4.0,16.2857142857143,160.6577139322535,2020-11-26 +573,5354.200000000001,4.0,16.142857142857153,180.09457153841885,2020-11-26 +571,5335.8,4.0,16.333333333333343,154.21110686564325,2020-11-26 +570,5326.400000000001,4.0,22.76190476190478,119.59080908925998,2020-11-26 +567,5308.6,4.0,19.761904761904773,115.73268339889285,2020-11-26 +551,5255.700000000001,4.0,15.857142857142868,129.73591185303528,2020-11-26 +550,5255.700000000001,4.0,15.38095238095239,183.6474274513069,2020-11-26 +549,5255.700000000001,4.0,17.333333333333346,215.35902424856522,2020-11-26 +548,5245.200000000001,4.0,16.333333333333343,214.84285111731282,2020-11-26 +547,5236.0,4.0,16.047619047619058,201.88193792251025,2020-11-26 +546,5225.700000000001,4.0,15.904761904761916,205.53196582955383,2020-11-26 +545,5215.3,4.0,16.00000000000001,208.51071979358517,2020-11-26 +544,5205.3,4.0,16.00000000000001,207.7137792622476,2020-11-26 +543,5195.400000000001,4.0,16.095238095238106,205.973658320752,2020-11-26 +542,5185.1,4.0,15.857142857142868,205.28925892805844,2020-11-26 +541,5174.8,4.0,15.714285714285722,205.78612717104022,2020-11-26 +540,5164.900000000001,4.0,15.666666666666679,208.1677691329186,2020-11-26 +539,5154.400000000001,4.0,15.809523809523817,211.7099082457608,2020-11-26 +538,5144.700000000001,4.0,15.80952380952382,215.3516359763246,2020-11-26 +537,5134.200000000001,4.0,15.761904761904773,217.1066147554066,2020-11-26 +584,5456.3,4.0,16.714285714285726,198.87163085620034,2020-11-26 +585,5466.400000000001,4.0,17.904761904761916,203.71583349441602,2020-11-26 +586,5475.900000000001,4.0,18.047619047619058,210.21926457129518,2020-11-26 +587,5485.700000000001,4.0,20.142857142857153,218.80710156200956,2020-11-26 +615,5735.900000000001,4.0,24.190476190476208,326.751937944244,2020-11-26 +614,5727.0,4.0,24.14285714285716,330.26755540408533,2020-11-26 +613,5718.400000000001,4.0,23.90476190476192,335.7251186533375,2020-11-26 +612,5708.8,4.0,24.000000000000018,339.12121493847974,2020-11-26 +611,5699.700000000001,4.0,24.000000000000018,339.1635922515084,2020-11-26 +610,5690.700000000001,4.0,23.90476190476192,336.0020375256805,2020-11-26 +609,5681.8,4.0,24.047619047619065,334.2716015247502,2020-11-26 +608,5672.400000000001,4.0,24.428571428571445,336.86742100820186,2020-11-26 +607,5663.6,4.0,24.52380952380954,343.05819837804677,2020-11-26 +606,5654.700000000001,4.0,24.666666666666682,348.2576451222164,2020-11-26 +605,5645.700000000001,4.0,24.76190476190478,350.9723616728319,2020-11-26 +604,5636.900000000001,4.0,24.809523809523824,351.2018462187406,2020-11-26 +603,5628.1,4.0,24.71428571428573,353.32216475852135,2020-11-26 +678,6293.8,4.0,25.000000000000014,329.9264081582073,2020-11-26 +602,5619.200000000001,4.0,24.809523809523824,356.8092992943183,2020-11-26 +600,5601.200000000001,4.0,24.71428571428573,349.42209976648803,2020-11-26 +599,5592.1,4.0,24.952380952380967,336.23279245832083,2020-11-26 +598,5583.0,4.0,25.047619047619065,324.27234816830986,2020-11-26 +597,5574.700000000001,4.0,24.571428571428587,318.9644304560251,2020-11-26 +596,5565.5,4.0,24.476190476190496,320.3967472412585,2020-11-26 +595,5556.6,4.0,24.238095238095255,324.666425076709,2020-11-26 +594,5547.700000000001,4.0,24.2857142857143,328.6768761692034,2020-11-26 +593,5538.700000000001,4.0,24.619047619047635,334.18040088872186,2020-11-26 +592,5529.8,4.0,24.809523809523824,333.1458932775343,2020-11-26 +591,5521.0,4.0,24.952380952380967,319.49498160087444,2020-11-26 +590,5512.0,4.0,25.619047619047635,292.42925583997084,2020-11-26 +589,5502.8,4.0,24.380952380952397,258.4335890062321,2020-11-26 +588,5494.0,4.0,22.33333333333335,233.04972935310604,2020-11-26 +601,5610.200000000001,4.0,24.666666666666686,357.431890258081,2020-11-26 +811,7437.5,4.0,16.2857142857143,175.06058254097627,2020-11-26 +679,6302.900000000001,4.0,25.000000000000014,328.0833136505337,2020-11-26 +681,6320.1,4.0,25.000000000000014,325.52980520410085,2020-11-26 +771,7093.3,4.0,25.619047619047635,298.23425109448044,2020-11-26 +770,7084.5,4.0,25.428571428571445,299.15251905888067,2020-11-26 +769,7076.400000000001,4.0,25.04761904761906,304.3373525994441,2020-11-26 +768,7068.1,4.0,24.90476190476192,308.7249868149811,2020-11-26 +767,7059.5,4.0,25.000000000000014,311.0320441203992,2020-11-26 +766,7051.3,4.0,24.90476190476192,310.524263598348,2020-11-26 +765,7042.8,4.0,25.04761904761906,312.1769439163336,2020-11-26 +764,7034.1,4.0,25.428571428571445,315.93544271858207,2020-11-26 +763,7025.700000000001,4.0,25.428571428571445,318.9483513096768,2020-11-26 +762,7017.5,4.0,25.809523809523824,321.7992284837985,2020-11-26 +761,7009.3,4.0,26.047619047619065,322.8053243013146,2020-11-26 +760,7000.400000000001,4.0,26.047619047619065,320.0767014070399,2020-11-26 +759,6992.3,4.0,26.238095238095255,317.8097615096134,2020-11-26 +758,6983.900000000001,4.0,26.095238095238113,318.29374976774886,2020-11-26 +757,6975.200000000001,4.0,25.71428571428573,322.8172119280791,2020-11-26 +756,6966.700000000001,4.0,25.52380952380954,331.56325715008893,2020-11-26 +755,6958.200000000001,4.0,25.428571428571445,338.362936342058,2020-11-26 +754,6949.6,4.0,25.619047619047635,339.1204665962281,2020-11-26 +753,6941.1,4.0,25.76190476190478,335.37042946068607,2020-11-26 +752,6932.200000000001,4.0,25.52380952380954,332.5834618965093,2020-11-26 +751,6924.1,4.0,25.428571428571445,331.1382720654808,2020-11-26 +750,6915.1,4.0,25.04761904761906,330.2460458471817,2020-11-26 +749,6906.8,4.0,24.90476190476192,331.25466001862685,2020-11-26 +748,6897.900000000001,4.0,25.000000000000014,332.47077757245614,2020-11-26 +747,6888.900000000001,4.0,25.000000000000014,334.28945730672353,2020-11-26 +746,6880.700000000001,4.0,25.000000000000014,338.10101733677675,2020-11-26 +745,6871.400000000001,4.0,25.000000000000014,339.5517997880446,2020-11-26 +772,7101.200000000001,4.0,25.619047619047635,301.6615215041082,2020-11-26 +744,6863.0,4.0,25.000000000000014,338.0610139406024,2020-11-26 +773,7110.1,4.0,25.33333333333335,305.8461987714823,2020-11-26 +775,7126.400000000001,4.0,25.09523809523811,305.62315223853875,2020-11-26 +809,7418.900000000001,4.0,16.2857142857143,168.9108010732647,2020-11-26 +808,7409.0,4.0,16.142857142857153,167.0805755740382,2020-11-26 +807,7399.700000000001,4.0,15.904761904761916,166.92344462234496,2020-11-26 +806,7390.5,4.0,16.00000000000001,166.29418516822335,2020-11-26 +805,7380.700000000001,4.0,16.00000000000001,162.05646853709328,2020-11-26 +804,7370.900000000001,4.0,16.095238095238106,152.64954020536726,2020-11-26 +803,7361.400000000001,4.0,15.952380952380963,140.65838431851233,2020-11-26 +802,7352.700000000001,4.0,15.761904761904773,127.19570314331527,2020-11-26 +801,7343.3,4.0,15.1904761904762,112.64968518143495,2020-11-26 +793,7278.700000000001,4.0,16.523809523809536,213.8670152177532,2020-11-26 +792,7270.8,4.0,19.2857142857143,279.05785903454785,2020-11-26 +791,7262.3,4.0,22.71428571428573,315.3987134494383,2020-11-26 +790,7251.700000000001,4.0,25.666666666666686,320.8150301087866,2020-11-26 +789,7243.3,4.0,27.000000000000018,308.7933092364184,2020-11-26 +788,7235.1,4.0,26.95238095238097,295.7936134392135,2020-11-26 +787,7226.6,4.0,26.71428571428573,295.2373892902539,2020-11-26 +786,7218.6,4.0,26.3809523809524,304.0317070725168,2020-11-26 +785,7210.6,4.0,26.190476190476208,312.79339902535617,2020-11-26 +784,7202.700000000001,4.0,26.238095238095255,319.6985695030779,2020-11-26 +783,7193.900000000001,4.0,25.76190476190478,323.1187957258776,2020-11-26 +782,7185.700000000001,4.0,25.71428571428573,322.89220180550626,2020-11-26 +781,7177.400000000001,4.0,25.666666666666686,324.01013889677705,2020-11-26 +780,7168.900000000001,4.0,25.809523809523824,323.46203444119055,2020-11-26 +779,7160.700000000001,4.0,25.714285714285733,320.8044345840036,2020-11-26 +778,7152.3,4.0,25.90476190476192,315.6891546940183,2020-11-26 +777,7143.5,4.0,25.619047619047635,309.02409528481496,2020-11-26 +776,7134.6,4.0,25.380952380952397,304.2079176478872,2020-11-26 +774,7118.700000000001,4.0,25.190476190476204,306.9400774506493,2020-11-26 +743,6853.900000000001,4.0,25.000000000000014,335.89811345426205,2020-11-26 +742,6846.0,4.0,25.000000000000014,330.6753478594691,2020-11-26 +741,6836.6,4.0,25.000000000000014,322.85937059266786,2020-11-26 +708,6554.6,4.0,25.428571428571445,343.3805739714774,2020-11-26 +707,6545.8,4.0,25.666666666666686,339.1655244653026,2020-11-26 +706,6537.400000000001,4.0,25.76190476190478,330.42289998137693,2020-11-26 +705,6528.400000000001,4.0,25.71428571428573,318.81169347959883,2020-11-26 +704,6520.200000000001,4.0,25.857142857142875,311.58112017512343,2020-11-26 +703,6511.400000000001,4.0,26.095238095238113,313.2724941323232,2020-11-26 +702,6503.400000000001,4.0,26.095238095238113,323.3429210597828,2020-11-26 +701,6494.200000000001,4.0,25.95238095238097,336.67675655918345,2020-11-26 +700,6486.5,4.0,25.57142857142859,347.6178709181881,2020-11-26 +699,6477.5,4.0,25.476190476190492,351.5533676304225,2020-11-26 +698,6469.1,4.0,25.33333333333335,345.9625949893142,2020-11-26 +697,6460.1,4.0,25.14285714285716,335.9757225642873,2020-11-26 +696,6451.900000000001,4.0,25.428571428571445,329.68787644053475,2020-11-26 +695,6443.1,4.0,25.428571428571445,329.89746810836044,2020-11-26 +694,6434.1,4.0,25.238095238095255,337.28138790399896,2020-11-26 +693,6425.5,4.0,25.285714285714302,344.4812103063605,2020-11-26 +692,6416.400000000001,4.0,25.04761904761906,342.98841916339404,2020-11-26 +691,6407.900000000001,4.0,24.952380952380967,336.321331313829,2020-11-26 +690,6399.0,4.0,25.428571428571445,328.8854252684363,2020-11-26 +689,6389.900000000001,4.0,25.619047619047635,325.0307892097803,2020-11-26 +688,6382.0,4.0,25.619047619047635,328.21355432908115,2020-11-26 +687,6373.3,4.0,25.428571428571445,333.17655632398106,2020-11-26 +686,6364.1,4.0,25.04761904761906,335.28493614906336,2020-11-26 +685,6355.1,4.0,24.90476190476192,336.84200951341063,2020-11-26 +684,6346.8,4.0,25.000000000000014,335.06596320323297,2020-11-26 +683,6337.400000000001,4.0,25.000000000000014,330.7292159682287,2020-11-26 +682,6328.900000000001,4.0,25.000000000000014,327.44595870352464,2020-11-26 +709,6562.6,4.0,25.57142857142859,341.4083592961064,2020-11-26 +710,6571.6,4.0,25.33333333333335,333.8436203134046,2020-11-26 +711,6580.200000000001,4.0,25.238095238095255,327.20410139291744,2020-11-26 +712,6588.200000000001,4.0,25.285714285714302,325.7846635870979,2020-11-26 +740,6828.3,4.0,24.90476190476192,318.1251193114473,2020-11-26 +739,6819.5,4.0,25.14285714285716,317.8253966575562,2020-11-26 +738,6810.700000000001,4.0,25.285714285714302,319.95368222484234,2020-11-26 +737,6802.6,4.0,25.33333333333335,321.3376851074055,2020-11-26 +736,6793.900000000001,4.0,25.285714285714302,319.33944041763397,2020-11-26 +735,6785.6,4.0,25.14285714285716,313.1343889377219,2020-11-26 +734,6776.700000000001,4.0,24.90476190476192,310.2178330460821,2020-11-26 +733,6768.3,4.0,25.000000000000014,312.2652589258741,2020-11-26 +732,6759.1,4.0,24.90476190476192,315.5014671773346,2020-11-26 +731,6750.6,4.0,25.04761904761906,320.61994753132643,2020-11-26 +730,6741.400000000001,4.0,25.33333333333335,327.72026436820886,2020-11-26 +729,6733.3,4.0,25.76190476190478,327.18903857353234,2020-11-26 +728,6724.900000000001,4.0,25.904761904761923,316.0357148267209,2020-11-26 +680,6311.900000000001,4.0,25.000000000000014,325.6209604369492,2020-11-26 +727,6716.5,4.0,25.76190476190478,296.66237273973456,2020-11-26 +725,6699.200000000001,4.0,25.04761904761906,263.9269581127778,2020-11-26 +724,6690.400000000001,4.0,24.90476190476192,275.21263767426353,2020-11-26 +723,6682.8,4.0,25.000000000000014,296.36068339870394,2020-11-26 +722,6674.5,4.0,24.809523809523824,317.6092824889979,2020-11-26 +721,6666.400000000001,4.0,25.190476190476204,332.657597780907,2020-11-26 +720,6657.8,4.0,25.619047619047635,336.4702685793867,2020-11-26 +719,6649.0,4.0,26.095238095238113,334.1294725361522,2020-11-26 +718,6640.8,4.0,26.190476190476208,336.0283729404369,2020-11-26 +717,6632.3,4.0,25.90476190476192,339.32699274708557,2020-11-26 +716,6623.400000000001,4.0,25.238095238095255,343.41100560776096,2020-11-26 +715,6614.6,4.0,25.04761904761906,344.148437783668,2020-11-26 +714,6605.200000000001,4.0,24.809523809523824,337.6047651704451,2020-11-26 +713,6597.3,4.0,25.14285714285716,328.9063289132505,2020-11-26 +726,6707.900000000001,4.0,25.33333333333335,274.65132261397855,2020-11-26 +28,149.70000000000002,4.0,21.000000000000014,264.9845372809166,2020-11-26 +1025,9290.4,4.0,25.71428571428573,313.6586566771539,2020-11-26 +30,168.0,4.0,21.90476190476192,219.99630304186542,2020-11-26 +130,1062.3,4.0,20.52380952380954,340.5859805563997,2020-11-26 +129,1051.6000000000001,4.0,19.2857142857143,290.0924297368862,2020-11-26 +128,1040.6000000000001,4.0,20.619047619047635,201.29609858214326,2020-11-26 +127,1030.5,4.0,15.142857142857153,105.22212529302716,2020-11-26 +103,917.8000000000001,4.0,19.142857142857157,193.7610160215059,2020-11-26 +102,917.8000000000001,4.0,18.61904761904763,289.3245378127551,2020-11-26 +101,917.8000000000001,4.0,16.333333333333343,349.9536947192777,2020-11-26 +100,917.8000000000001,4.0,16.952380952380963,365.8740423362924,2020-11-26 +99,917.8000000000001,4.0,16.66666666666668,351.8393174427404,2020-11-26 +98,906.7,4.0,16.238095238095248,345.7050115900267,2020-11-26 +131,1072.0,4.0,21.14285714285716,357.5804101155711,2020-11-26 +97,894.4000000000001,4.0,16.095238095238106,357.3640789228089,2020-11-26 +95,870.4000000000001,4.0,16.66666666666668,352.9698870656306,2020-11-26 +94,858.2,4.0,16.952380952380963,346.9258486420244,2020-11-26 +93,847.3000000000001,4.0,17.095238095238106,343.3686573905086,2020-11-26 +92,835.5,4.0,17.00000000000001,340.5777843821165,2020-11-26 +91,824.2,4.0,17.00000000000001,337.02397448139993,2020-11-26 +90,812.6,4.0,17.00000000000001,333.68825108010617,2020-11-26 +89,801.1,4.0,17.00000000000001,331.95270096273634,2020-11-26 +88,789.6,4.0,17.00000000000001,333.712011433156,2020-11-26 +87,778.4000000000001,4.0,16.904761904761916,337.93762455811526,2020-11-26 +86,766.8000000000001,4.0,17.047619047619058,340.16091224405056,2020-11-26 +96,882.6,4.0,16.238095238095248,358.2150346834435,2020-11-26 +85,755.8000000000001,4.0,17.333333333333343,339.02172334706694,2020-11-26 +132,1081.5,4.0,21.333333333333346,355.20232609289246,2020-11-26 +134,1102.9,4.0,19.66666666666668,383.52233524588894,2020-11-26 +29,158.70000000000002,4.0,19.190476190476204,261.3561524813547,2020-11-26 +156,1325.5,4.0,18.333333333333346,393.03653974925965,2020-11-26 +155,1325.5,4.0,20.833333333333357,340.26264887033636,2020-11-26 +154,1314.4,4.0,21.190476190476218,314.51788323346034,2020-11-26 +153,1305.3000000000002,4.0,20.23809523809525,309.57460369415685,2020-11-26 +152,1295.8000000000002,4.0,19.2857142857143,321.43966005347113,2020-11-26 +151,1285.5,4.0,17.904761904761916,336.73591100095484,2020-11-26 +150,1274.3000000000002,4.0,17.47619047619049,348.58557384312314,2020-11-26 +149,1262.9,4.0,18.000000000000014,353.29512765032797,2020-11-26 +148,1252.2,4.0,18.142857142857153,350.23696932610017,2020-11-26 +133,1092.3,4.0,20.66666666666668,369.133849600029,2020-11-26 +147,1241.0,4.0,18.2857142857143,345.89320271855587,2020-11-26 +145,1219.6000000000001,4.0,18.190476190476204,344.8414222401592,2020-11-26 +144,1209.3,4.0,18.190476190476204,341.4587160255852,2020-11-26 +143,1198.5,4.0,18.238095238095248,336.00900366224624,2020-11-26 +142,1187.9,4.0,18.761904761904773,330.7364103273825,2020-11-26 +141,1177.1000000000001,4.0,18.809523809523824,329.5743388255862,2020-11-26 +139,1156.6000000000001,4.0,18.66666666666668,346.13802146123044,2020-11-26 +138,1145.8,4.0,18.714285714285726,356.25056699566255,2020-11-26 +137,1135.3,4.0,18.85714285714287,370.15141307249985,2020-11-26 +136,1124.7,4.0,19.000000000000014,383.02726083215055,2020-11-26 +135,1113.5,4.0,18.761904761904773,388.8818575258556,2020-11-26 +146,1229.8000000000002,4.0,18.333333333333346,344.9084886897955,2020-11-26 +84,744.8000000000001,4.0,17.761904761904773,336.69949532939324,2020-11-26 +140,1166.8,4.0,18.80952380952382,334.94141325809835,2020-11-26 +82,723.4000000000001,4.0,17.66666666666668,338.49143268233894,2020-11-26 +54,419.1,4.0,21.52380952380954,198.379915598615,2020-11-26 +53,419.1,4.0,21.952380952380967,254.26105752329096,2020-11-26 +52,419.1,4.0,21.190476190476204,294.0331550879844,2020-11-26 +51,410.3,4.0,20.09523809523811,311.5924370581756,2020-11-26 +50,400.3,4.0,19.09523809523811,312.08129034678524,2020-11-26 +49,389.90000000000003,4.0,18.380952380952394,314.7558109368456,2020-11-26 +48,379.1,4.0,18.333333333333343,320.4321081289403,2020-11-26 +47,368.6,4.0,18.142857142857153,322.94844421536715,2020-11-26 +46,358.5,4.0,17.761904761904773,328.9278544955872,2020-11-26 +45,347.3,4.0,17.714285714285726,337.78070492471517,2020-11-26 +55,439.40000000000003,4.0,20.000000000000014,139.64946703090183,2020-11-26 +44,336.1,4.0,17.66666666666668,347.3455600563481,2020-11-26 +41,303.2,4.0,17.66666666666668,375.3207770984036,2020-11-26 +40,291.8,4.0,17.47619047619049,383.70396283288494,2020-11-26 +39,280.2,4.0,17.333333333333343,388.8307358225067,2020-11-26 +38,268.1,4.0,17.047619047619058,388.4690777467903,2020-11-26 +37,256.90000000000003,4.0,17.380952380952394,364.9648009447713,2020-11-26 +36,245.20000000000002,4.0,17.80952380952382,296.5676800152851,2020-11-26 +35,234.3,4.0,17.000000000000014,201.11530269106981,2020-11-26 +34,223.9,4.0,20.66666666666668,111.27133845034265,2020-11-26 +31,168.0,4.0,23.52380952380954,152.125570265342,2020-11-26 +83,733.8000000000001,4.0,17.904761904761916,336.2906903228668,2020-11-26 +43,325.3,4.0,17.80952380952382,357.6712047659329,2020-11-26 +56,447.20000000000005,4.0,18.761904761904773,120.17192592728412,2020-11-26 +42,314.1,4.0,17.80952380952382,367.7390076260099,2020-11-26 +58,468.1,4.0,17.761904761904773,247.88730160724256,2020-11-26 +81,712.0,4.0,17.47619047619049,343.14373424101734,2020-11-26 +57,456.90000000000003,4.0,18.000000000000014,167.510187761663,2020-11-26 +79,689.9000000000001,4.0,17.142857142857153,356.8206985085291,2020-11-26 +78,679.2,4.0,17.238095238095248,374.58895210621665,2020-11-26 +77,667.8000000000001,4.0,17.142857142857153,395.18140449896913,2020-11-26 +76,656.4000000000001,4.0,18.00000000000001,410.8719967302749,2020-11-26 +75,645.5,4.0,20.09523809523811,414.9280071451437,2020-11-26 +74,634.0,4.0,22.000000000000014,407.3442285628497,2020-11-26 +73,624.9000000000001,4.0,23.14285714285716,401.24803457369455,2020-11-26 +72,615.0,4.0,23.619047619047635,397.43931734463825,2020-11-26 +71,605.2,4.0,23.52380952380954,388.4847633710993,2020-11-26 +70,595.3000000000001,4.0,24.3809523809524,369.32389877879234,2020-11-26 +80,701.1,4.0,17.333333333333343,347.55156674774736,2020-11-26 +68,577.0,4.0,23.380952380952394,320.5765289108321,2020-11-26 +67,568.3000000000001,4.0,21.04761904761906,321.13211251367443,2020-11-26 +66,558.8000000000001,4.0,18.571428571428584,333.89426634053245,2020-11-26 +65,547.2,4.0,16.952380952380963,346.99792790057006,2020-11-26 +64,535.8000000000001,4.0,16.85714285714287,354.1158063485179,2020-11-26 +63,524.1,4.0,16.904761904761916,355.29816781893203,2020-11-26 +62,513.1,4.0,16.904761904761916,360.5688772038178,2020-11-26 +61,501.90000000000003,4.0,17.047619047619058,376.697008144866,2020-11-26 +69,585.6,4.0,24.571428571428587,341.8311633173322,2020-11-26 +59,478.90000000000003,4.0,17.66666666666668,324.921219587248,2020-11-26 +60,490.5,4.0,17.333333333333343,372.02010848019944,2020-11-26 +809,8481.800000000001,4.0,18.571428571428584,332.2722377762851,2020-11-28 +808,8470.6,4.0,18.85714285714287,325.6300327079542,2020-11-28 +807,8459.7,4.0,19.142857142857153,317.46962554344725,2020-11-28 +806,8449.5,4.0,19.42857142857144,314.10777848199916,2020-11-28 +805,8439.4,4.0,19.380952380952394,319.96244487073045,2020-11-28 +801,8397.4,4.0,18.047619047619058,354.0853086444563,2020-11-28 +803,8419.1,4.0,18.571428571428584,342.2839361477733,2020-11-28 +802,8408.1,4.0,18.333333333333343,350.15590273740344,2020-11-28 +810,8492.7,4.0,18.61904761904763,333.865569984109,2020-11-28 +800,8386.300000000001,4.0,17.90476190476192,356.7138595747096,2020-11-28 +799,8375.300000000001,4.0,18.000000000000014,358.65025092958575,2020-11-28 +798,8364.6,4.0,18.000000000000014,357.39260064929,2020-11-28 +797,8353.800000000001,4.0,18.000000000000014,351.01575888836766,2020-11-28 +804,8429.0,4.0,19.09523809523811,330.91795884823784,2020-11-28 +811,8503.6,4.0,19.09523809523811,331.0316225570282,2020-11-28 +817,8568.300000000001,4.0,18.142857142857153,369.6178732245151,2020-11-28 +813,8524.4,4.0,19.142857142857153,328.22048419126577,2020-11-28 +796,8341.9,4.0,17.90476190476192,339.21322306396735,2020-11-28 +827,8677.4,4.0,18.47619047619049,363.20728582385084,2020-11-28 +826,8666.1,4.0,18.523809523809536,365.4073015187131,2020-11-28 +825,8655.1,4.0,18.523809523809536,360.9460750667047,2020-11-28 +824,8644.0,4.0,18.80952380952382,346.8831989730311,2020-11-28 +823,8632.800000000001,4.0,18.952380952380963,331.457216345998,2020-11-28 +812,8514.2,4.0,19.23809523809525,327.2145444737997,2020-11-28 +822,8622.5,4.0,19.047619047619058,323.6390436422203,2020-11-28 +820,8602.1,4.0,18.333333333333343,343.23576050810607,2020-11-28 +819,8591.0,4.0,18.047619047619058,358.75234762913817,2020-11-28 +818,8579.4,4.0,17.80952380952382,368.8780517790635,2020-11-28 +816,8557.2,4.0,18.095238095238106,361.1551041421439,2020-11-28 +815,8545.9,4.0,18.523809523809536,348.1159864603075,2020-11-28 +814,8535.300000000001,4.0,18.90476190476192,337.0008568523738,2020-11-28 +821,8612.7,4.0,18.66666666666668,328.27219036759146,2020-11-28 +795,8331.2,4.0,18.047619047619058,326.97292061172755,2020-11-28 +770,8068.8,4.0,21.380952380952397,378.8950207890697,2020-11-28 +793,8310.0,4.0,18.66666666666668,316.08629036415687,2020-11-28 +828,8688.2,4.0,18.47619047619049,355.799229763344,2020-11-28 +762,7984.6,4.0,18.428571428571438,362.9289680034256,2020-11-28 +763,7995.400000000001,4.0,18.571428571428584,349.2921356998677,2020-11-28 +764,8006.400000000001,4.0,18.714285714285726,340.6444090151133,2020-11-28 +765,8016.6,4.0,19.09523809523811,338.0366441721479,2020-11-28 +766,8026.900000000001,4.0,19.52380952380954,344.7033462291265,2020-11-28 +767,8037.6,4.0,20.23809523809525,353.74990923435655,2020-11-28 +768,8047.900000000001,4.0,20.42857142857144,364.04447796351934,2020-11-28 +769,8058.5,4.0,21.190476190476204,372.86676734392125,2020-11-28 +771,8079.3,4.0,21.33333333333335,381.2901666686487,2020-11-28 +772,8089.700000000001,4.0,21.2857142857143,382.3228432164775,2020-11-28 +773,8099.0,4.0,21.142857142857157,379.40000582179687,2020-11-28 +774,8109.1,4.0,20.90476190476192,377.3366834852961,2020-11-28 +775,8119.700000000001,4.0,21.000000000000014,377.4096554081211,2020-11-28 +776,8130.0,4.0,21.000000000000014,377.2276738876491,2020-11-28 +777,8140.3,4.0,21.000000000000014,376.07848990066896,2020-11-28 +778,8150.200000000001,4.0,21.09523809523811,372.6153944407953,2020-11-28 +792,8299.0,4.0,19.047619047619058,318.15671546163105,2020-11-28 +791,8289.2,4.0,19.047619047619058,324.24276689581933,2020-11-28 +790,8278.2,4.0,18.571428571428584,330.15026827661916,2020-11-28 +789,8267.5,4.0,18.380952380952394,335.9793007011024,2020-11-28 +788,8256.800000000001,4.0,18.47619047619049,338.9928928604759,2020-11-28 +787,8246.2,4.0,18.523809523809536,338.3740485442436,2020-11-28 +794,8320.5,4.0,18.333333333333343,319.57106307791713,2020-11-28 +786,8235.4,4.0,18.61904761904763,340.16093718253023,2020-11-28 +784,8214.4,4.0,18.000000000000014,362.4496075717034,2020-11-28 +783,8202.9,4.0,18.1904761904762,373.99824332304377,2020-11-28 +782,8191.700000000001,4.0,19.047619047619058,377.616295043622,2020-11-28 +781,8180.8,4.0,19.952380952380967,373.936909931626,2020-11-28 +780,8170.400000000001,4.0,20.71428571428573,368.4953976169448,2020-11-28 +779,8160.200000000001,4.0,21.04761904761906,368.325995651049,2020-11-28 +785,8225.300000000001,4.0,18.333333333333343,349.34832088532244,2020-11-28 +829,8699.300000000001,4.0,18.095238095238106,352.59291394682657,2020-11-28 +904,9315.4,4.0,18.90476190476192,274.5518343965346,2020-11-28 +831,8720.9,4.0,18.095238095238106,363.15142846496565,2020-11-28 +905,9324.7,4.0,18.61904761904763,290.60198354091824,2020-11-28 +761,7973.5,4.0,18.80952380952382,373.3056981048694,2020-11-28 +903,9305.800000000001,4.0,18.714285714285726,227.12997801515564,2020-11-28 +902,9296.0,4.0,18.42857142857144,155.8870145815547,2020-11-28 +879,9233.4,4.0,19.952380952380963,104.3569901976336,2020-11-28 +878,9215.4,4.0,17.00000000000001,249.96511432575585,2020-11-28 +906,9335.2,4.0,18.047619047619058,286.58235787237754,2020-11-28 +875,9200.4,4.0,16.00000000000001,442.7984661615387,2020-11-28 +873,9178.2,4.0,18.71428571428573,364.0812616312578,2020-11-28 +872,9167.5,4.0,18.2857142857143,370.3486857580791,2020-11-28 +871,9156.0,4.0,18.333333333333346,364.20725011653076,2020-11-28 +870,9145.5,4.0,18.2857142857143,357.71793389897505,2020-11-28 +869,9134.6,4.0,18.047619047619058,350.12497799089977,2020-11-28 +868,9123.7,4.0,18.047619047619058,343.81057265670205,2020-11-28 +874,9189.6,4.0,17.61904761904763,399.4344300381304,2020-11-28 +867,9112.7,4.0,18.2857142857143,336.44110648692083,2020-11-28 +907,9345.4,4.0,17.714285714285726,276.148438815234,2020-11-28 +909,9366.0,4.0,17.80952380952382,261.0772765922751,2020-11-28 +923,9509.9,4.0,17.380952380952394,229.4742070550644,2020-11-28 +922,9500.7,4.0,17.380952380952394,239.33734088159076,2020-11-28 +921,9490.4,4.0,17.523809523809536,250.79858021832428,2020-11-28 +920,9480.7,4.0,17.047619047619058,259.5967759218788,2020-11-28 +919,9470.2,4.0,16.904761904761916,267.31318609967343,2020-11-28 +918,9459.6,4.0,16.904761904761916,273.67598827755046,2020-11-28 +908,9355.4,4.0,17.714285714285726,266.0081147514956,2020-11-28 +917,9449.2,4.0,17.047619047619058,275.62295690775795,2020-11-28 +915,9428.300000000001,4.0,17.61904761904763,269.91254688456854,2020-11-28 +914,9417.9,4.0,17.61904761904763,267.5494735706054,2020-11-28 +913,9407.800000000001,4.0,17.333333333333343,268.5592531488208,2020-11-28 +912,9396.9,4.0,17.095238095238106,269.0166123890877,2020-11-28 +911,9386.300000000001,4.0,17.238095238095248,267.1776737590146,2020-11-28 +910,9375.6,4.0,17.761904761904773,262.9190213753808,2020-11-28 +916,9439.0,4.0,17.42857142857144,274.0034554647955,2020-11-28 +830,8710.300000000001,4.0,18.2857142857143,355.32881554781983,2020-11-28 +866,9101.9,4.0,18.42857142857144,330.66036698108803,2020-11-28 +864,9080.800000000001,4.0,17.80952380952382,340.49225152495563,2020-11-28 +845,8873.4,4.0,18.142857142857153,339.8166895892187,2020-11-28 +844,8862.5,4.0,18.190476190476204,339.1591052079198,2020-11-28 +843,8851.5,4.0,18.47619047619049,342.6100127327188,2020-11-28 +842,8841.0,4.0,18.47619047619049,350.0673221285093,2020-11-28 +841,8830.300000000001,4.0,18.523809523809536,357.01599718570174,2020-11-28 +840,8819.4,4.0,18.523809523809536,362.38136943238584,2020-11-28 +846,8884.2,4.0,17.90476190476192,344.6010925644938,2020-11-28 +839,8808.5,4.0,18.80952380952382,361.8777133020021,2020-11-28 +837,8786.5,4.0,19.09523809523811,353.6891054326844,2020-11-28 +836,8775.6,4.0,19.09523809523811,355.6427821064684,2020-11-28 +835,8765.5,4.0,18.85714285714287,362.7552352500853,2020-11-28 +834,8754.4,4.0,18.80952380952382,370.6448367386496,2020-11-28 +833,8743.300000000001,4.0,18.61904761904763,374.50193170663357,2020-11-28 +832,8731.800000000001,4.0,18.380952380952394,370.24731912455286,2020-11-28 +838,8797.5,4.0,18.85714285714287,357.3531420353721,2020-11-28 +865,9091.5,4.0,18.238095238095248,332.9989017517386,2020-11-28 +847,8894.9,4.0,17.90476190476192,350.97240340974645,2020-11-28 +849,8916.9,4.0,18.428571428571438,359.68236629125704,2020-11-28 +863,9069.6,4.0,17.142857142857153,349.6680688750333,2020-11-28 +862,9058.4,4.0,17.190476190476204,354.39442078453646,2020-11-28 +861,9046.6,4.0,17.095238095238106,352.95895409772,2020-11-28 +860,9035.6,4.0,17.380952380952394,348.30422918922363,2020-11-28 +859,9024.9,4.0,17.523809523809536,347.013877448716,2020-11-28 +858,9013.7,4.0,17.952380952380963,344.291924575008,2020-11-28 +848,8905.6,4.0,18.047619047619058,357.5597729573766,2020-11-28 +857,9002.9,4.0,18.142857142857153,341.222570800599,2020-11-28 +855,8981.5,4.0,18.2857142857143,340.10666675603534,2020-11-28 +854,8970.6,4.0,18.047619047619058,342.22518468733546,2020-11-28 +853,8960.1,4.0,17.952380952380963,346.54289629405474,2020-11-28 +852,8949.2,4.0,18.428571428571438,350.30946380856363,2020-11-28 +851,8938.6,4.0,18.61904761904763,353.41223207058977,2020-11-28 +850,8927.7,4.0,18.61904761904763,356.9145393645009,2020-11-28 +856,8992.0,4.0,18.42857142857144,339.01034008174713,2020-11-28 +760,7962.3,4.0,18.85714285714287,375.29557527043903,2020-11-28 +710,7417.0,4.0,18.047619047619058,342.3080640546048,2020-11-28 +758,7939.700000000001,4.0,19.142857142857157,355.01841771244455,2020-11-28 +656,6830.700000000001,4.0,18.333333333333346,350.6636080902441,2020-11-28 +657,6841.900000000001,4.0,18.2857142857143,350.71681186139705,2020-11-28 +658,6852.400000000001,4.0,18.142857142857153,354.0510663584121,2020-11-28 +659,6863.700000000001,4.0,17.90476190476192,358.4709525464438,2020-11-28 +660,6874.900000000001,4.0,18.000000000000014,356.9380868164608,2020-11-28 +661,6885.5,4.0,17.714285714285726,348.39693140986816,2020-11-28 +662,6896.5,4.0,18.23809523809525,336.1907925901595,2020-11-28 +663,6908.0,4.0,19.047619047619058,325.3007192636869,2020-11-28 +664,6917.5,4.0,19.61904761904763,318.84739845117076,2020-11-28 +665,6927.400000000001,4.0,19.85714285714287,325.20435484855625,2020-11-28 +666,6938.200000000001,4.0,19.66666666666668,340.03158618705066,2020-11-28 +667,6949.3,4.0,18.952380952380963,355.82238320052767,2020-11-28 +668,6959.6,4.0,18.90476190476192,363.4308385849864,2020-11-28 +669,6970.200000000001,4.0,19.000000000000014,359.35586750864263,2020-11-28 +670,6980.900000000001,4.0,19.000000000000014,349.338680810726,2020-11-28 +671,6991.900000000001,4.0,19.000000000000014,343.0529761788915,2020-11-28 +672,7002.6,4.0,19.000000000000014,343.4466006399015,2020-11-28 +686,7155.400000000001,4.0,18.761904761904773,349.37714308905186,2020-11-28 +685,7144.700000000001,4.0,18.66666666666668,353.279814505892,2020-11-28 +684,7133.900000000001,4.0,18.523809523809536,359.44113046412053,2020-11-28 +683,7122.8,4.0,18.428571428571438,365.20751779543474,2020-11-28 +682,7111.900000000001,4.0,17.952380952380963,366.24068462233924,2020-11-28 +681,7100.900000000001,4.0,17.952380952380963,362.49408115335706,2020-11-28 +655,6819.700000000001,4.0,18.190476190476204,358.79579286699027,2020-11-28 +680,7089.6,4.0,18.333333333333343,354.2495532188114,2020-11-28 +678,7068.400000000001,4.0,18.952380952380963,341.3563044251076,2020-11-28 +677,7057.700000000001,4.0,19.09523809523811,344.96871889032116,2020-11-28 +676,7047.3,4.0,19.000000000000014,350.47766235364963,2020-11-28 +675,7036.1,4.0,19.000000000000014,355.3149932192339,2020-11-28 +674,7025.0,4.0,19.000000000000014,355.3906494213062,2020-11-28 +673,7013.6,4.0,19.000000000000014,349.45238173129053,2020-11-28 +679,7078.8,4.0,18.66666666666668,344.34143516013853,2020-11-28 +654,6808.400000000001,4.0,18.190476190476204,369.26145285307894,2020-11-28 +653,6797.200000000001,4.0,18.238095238095248,376.1648036418094,2020-11-28 +652,6785.8,4.0,18.66666666666668,377.3031223546179,2020-11-28 +633,6580.6,4.0,18.47619047619049,342.79681205194845,2020-11-28 +632,6569.8,4.0,18.523809523809536,348.30421850243715,2020-11-28 +631,6558.900000000001,4.0,18.523809523809536,351.96964300293746,2020-11-28 +630,6548.200000000001,4.0,18.80952380952382,352.08986728210374,2020-11-28 +629,6537.700000000001,4.0,18.85714285714287,345.06944784568395,2020-11-28 +628,6527.1,4.0,19.09523809523811,324.45259558730083,2020-11-28 +634,6591.5,4.0,18.47619047619049,336.5924509620496,2020-11-28 +627,6517.200000000001,4.0,19.2857142857143,272.46915266204644,2020-11-28 +625,6496.3,4.0,19.00000000000001,106.99101009838328,2020-11-28 +609,6415.1,4.0,17.47619047619049,205.55792751111107,2020-11-28 +608,6415.1,4.0,18.238095238095248,309.0418152913784,2020-11-28 +607,6415.1,4.0,16.428571428571438,372.48805864367625,2020-11-28 +606,6415.1,4.0,17.00000000000001,380.7331487109815,2020-11-28 +605,6415.1,4.0,17.00000000000001,358.3493900074783,2020-11-28 +626,6506.6,4.0,16.85714285714287,192.02043360653215,2020-11-28 +687,7166.6,4.0,18.80952380952382,346.7639397985195,2020-11-28 +635,6602.6,4.0,18.190476190476204,337.64488665810336,2020-11-28 +637,6624.3,4.0,17.80952380952382,349.15102502914954,2020-11-28 +651,6774.400000000001,4.0,18.952380952380963,374.9242890154584,2020-11-28 +650,6763.400000000001,4.0,19.09523809523811,369.9532483067635,2020-11-28 +649,6752.3,4.0,19.000000000000014,363.97224932497744,2020-11-28 +648,6740.8,4.0,19.000000000000014,356.0563705454548,2020-11-28 +647,6730.3,4.0,19.000000000000014,348.3161570018915,2020-11-28 +646,6719.200000000001,4.0,19.000000000000014,345.5389182982559,2020-11-28 +636,6613.700000000001,4.0,18.142857142857153,343.68756094216485,2020-11-28 +645,6709.200000000001,4.0,19.000000000000014,348.67976897755466,2020-11-28 +643,6688.3,4.0,19.142857142857157,353.7323026490296,2020-11-28 +642,6677.3,4.0,19.380952380952394,351.19324904717115,2020-11-28 +641,6667.400000000001,4.0,19.2857142857143,346.70838183811463,2020-11-28 +640,6657.400000000001,4.0,18.952380952380963,345.4316810837523,2020-11-28 +639,6646.400000000001,4.0,18.47619047619049,348.7326760970084,2020-11-28 +638,6635.6,4.0,17.952380952380963,350.31298913113324,2020-11-28 +644,6698.6,4.0,18.90476190476192,352.52548926760136,2020-11-28 +759,7951.0,4.0,19.000000000000014,367.3398810191603,2020-11-28 +688,7176.6,4.0,18.809523809523824,347.5008975981899,2020-11-28 +690,7198.6,4.0,18.47619047619049,355.2694906499561,2020-11-28 +727,7602.1,4.0,18.238095238095248,347.22299109933857,2020-11-28 +728,7613.200000000001,4.0,18.190476190476204,362.1647970974036,2020-11-28 +729,7624.6,4.0,18.095238095238106,374.20551890951367,2020-11-28 +730,7636.0,4.0,18.380952380952394,382.4121326412827,2020-11-28 +731,7647.400000000001,4.0,18.61904761904763,385.8281918604889,2020-11-28 +732,7658.8,4.0,18.80952380952382,380.2654013225109,2020-11-28 +733,7669.1,4.0,18.952380952380963,372.2078984168396,2020-11-28 +734,7680.200000000001,4.0,19.047619047619058,366.14274980303617,2020-11-28 +735,7691.3,4.0,18.66666666666668,360.89457354936064,2020-11-28 +736,7702.200000000001,4.0,18.238095238095248,354.0029462128335,2020-11-28 +737,7712.900000000001,4.0,18.09523809523811,341.0382670025185,2020-11-28 +738,7722.200000000001,4.0,18.238095238095248,321.8210180162391,2020-11-28 +739,7733.8,4.0,18.761904761904773,310.7081389622683,2020-11-28 +740,7745.200000000001,4.0,18.90476190476192,313.44048219642843,2020-11-28 +741,7755.8,4.0,18.571428571428584,323.3177453535978,2020-11-28 +742,7767.5,4.0,18.523809523809536,334.0394555646244,2020-11-28 +743,7778.1,4.0,18.66666666666668,340.0449761813787,2020-11-28 +757,7929.200000000001,4.0,19.2857142857143,343.0927415191264,2020-11-28 +756,7918.900000000001,4.0,19.333333333333346,338.12985906812906,2020-11-28 +755,7908.8,4.0,19.380952380952394,340.1851095188455,2020-11-28 +754,7898.3,4.0,19.09523809523811,346.080671326514,2020-11-28 +753,7887.5,4.0,18.571428571428584,353.5795971435638,2020-11-28 +752,7876.400000000001,4.0,18.238095238095248,360.742533636599,2020-11-28 +726,7591.700000000001,4.0,18.66666666666668,331.6380191022279,2020-11-28 +751,7865.1,4.0,18.09523809523811,366.06032147946325,2020-11-28 +749,7843.200000000001,4.0,18.66666666666668,373.3368664745245,2020-11-28 +748,7832.1,4.0,18.952380952380963,373.11772371577774,2020-11-28 +747,7821.5,4.0,19.000000000000014,368.0977960616706,2020-11-28 +746,7810.5,4.0,19.23809523809525,359.49503493173955,2020-11-28 +745,7798.8,4.0,19.23809523809525,349.3504321168754,2020-11-28 +744,7788.3,4.0,18.904761904761916,342.3957225005121,2020-11-28 +750,7854.1,4.0,18.238095238095248,369.8528500557727,2020-11-28 +725,7580.8,4.0,18.952380952380963,320.36172665593915,2020-11-28 +724,7569.900000000001,4.0,19.190476190476204,317.07399312097425,2020-11-28 +723,7559.5,4.0,18.952380952380963,325.5689803190667,2020-11-28 +704,7351.8,4.0,18.523809523809536,368.66209473381053,2020-11-28 +703,7340.700000000001,4.0,18.80952380952382,364.13183613420637,2020-11-28 +702,7329.6,4.0,18.952380952380963,359.9707798097023,2020-11-28 +701,7319.200000000001,4.0,19.047619047619058,358.8611450939587,2020-11-28 +700,7308.5,4.0,18.571428571428584,362.49286854686386,2020-11-28 +699,7297.700000000001,4.0,18.47619047619049,368.230302482781,2020-11-28 +705,7362.700000000001,4.0,18.523809523809536,367.1601488675577,2020-11-28 +698,7286.0,4.0,18.333333333333343,370.3518481091785,2020-11-28 +696,7264.0,4.0,18.428571428571438,355.96340164201206,2020-11-28 +695,7252.5,4.0,18.333333333333343,343.3324401568873,2020-11-28 +694,7242.1,4.0,18.380952380952394,335.7187463275501,2020-11-28 +693,7231.200000000001,4.0,18.571428571428584,338.0907886296449,2020-11-28 +692,7220.3,4.0,18.380952380952394,345.435233534467,2020-11-28 +691,7209.700000000001,4.0,18.238095238095248,352.8814546415895,2020-11-28 +697,7275.0,4.0,18.142857142857157,365.5312850838882,2020-11-28 +689,7187.5,4.0,18.66666666666668,351.70988425928863,2020-11-28 +706,7373.6,4.0,18.47619047619049,359.85890457980133,2020-11-28 +708,7395.400000000001,4.0,18.190476190476204,339.8156849860286,2020-11-28 +722,7548.900000000001,4.0,18.66666666666668,343.09004708185114,2020-11-28 +721,7537.8,4.0,18.333333333333343,363.5032801526198,2020-11-28 +720,7527.400000000001,4.0,17.952380952380963,377.7635597485795,2020-11-28 +719,7515.900000000001,4.0,17.952380952380963,382.6386674882265,2020-11-28 +718,7504.700000000001,4.0,18.428571428571438,376.84071975243626,2020-11-28 +717,7493.400000000001,4.0,18.523809523809536,365.5865311765889,2020-11-28 +707,7384.400000000001,4.0,18.47619047619049,348.4271471371469,2020-11-28 +716,7482.400000000001,4.0,18.761904761904773,356.49280673517296,2020-11-28 +714,7460.3,4.0,18.523809523809536,354.90088539009696,2020-11-28 +713,7449.5,4.0,18.47619047619049,357.78174241705455,2020-11-28 +712,7438.1,4.0,18.47619047619049,356.63958110410044,2020-11-28 +711,7427.6,4.0,18.190476190476204,350.2415781522925,2020-11-28 +924,9520.300000000001,4.0,17.523809523809536,227.45168377585028,2020-11-28 +709,7406.1,4.0,18.047619047619058,337.82282814643304,2020-11-28 +715,7471.400000000001,4.0,18.61904761904763,353.8347561278383,2020-11-28 +925,9529.1,4.0,17.380952380952394,232.24368099759022,2020-11-28 +976,10072.2,4.0,18.66666666666668,338.62912773756426,2020-11-28 +927,9550.4,4.0,17.66666666666668,263.70486688332676,2020-11-28 +1107,11465.6,4.0,18.2857142857143,328.3255097290263,2020-11-28 +1108,11475.900000000001,4.0,18.714285714285726,318.8314356590147,2020-11-28 +1109,11485.800000000001,4.0,18.66666666666668,310.87183648729024,2020-11-28 +1110,11495.7,4.0,18.571428571428584,309.8021780544084,2020-11-28 +1111,11506.2,4.0,18.761904761904773,314.0227951193873,2020-11-28 +1112,11516.7,4.0,18.61904761904763,317.13112527692374,2020-11-28 +1113,11527.1,4.0,19.000000000000014,318.6099743102466,2020-11-28 +1114,11537.1,4.0,19.380952380952394,317.9197993823778,2020-11-28 +1115,11547.7,4.0,19.333333333333346,316.5916367038135,2020-11-28 +1116,11557.900000000001,4.0,19.380952380952394,317.00772197032234,2020-11-28 +1117,11568.800000000001,4.0,19.000000000000014,317.74485007576516,2020-11-28 +1118,11579.300000000001,4.0,18.714285714285726,318.04609282159623,2020-11-28 +1119,11589.400000000001,4.0,18.523809523809536,321.44496551784874,2020-11-28 +1120,11600.1,4.0,18.523809523809536,328.25784361464497,2020-11-28 +1121,11610.400000000001,4.0,18.47619047619049,340.4743066169427,2020-11-28 +1122,11621.5,4.0,18.47619047619049,353.343902789614,2020-11-28 +1123,11632.800000000001,4.0,18.190476190476204,362.2273352182825,2020-11-28 +1137,11780.2,4.0,18.714285714285726,337.20200103970035,2020-11-28 +1136,11770.1,4.0,18.85714285714287,338.298690721395,2020-11-28 +1135,11759.300000000001,4.0,19.190476190476204,340.95952919758224,2020-11-28 +1134,11749.2,4.0,18.85714285714287,347.38652259629333,2020-11-28 +1133,11738.400000000001,4.0,18.714285714285726,353.49228262275005,2020-11-28 +1132,11728.0,4.0,18.571428571428584,356.36888305223977,2020-11-28 +1106,11454.900000000001,4.0,18.238095238095248,339.0709641382858,2020-11-28 +1131,11717.2,4.0,18.85714285714287,350.6634002700232,2020-11-28 +1129,11696.2,4.0,19.523809523809536,331.85861878940807,2020-11-28 +1128,11686.1,4.0,19.23809523809525,331.0086685205936,2020-11-28 +1127,11675.900000000001,4.0,18.80952380952382,337.42120666457834,2020-11-28 +1126,11665.300000000001,4.0,18.238095238095248,348.8741417689212,2020-11-28 +1125,11654.5,4.0,17.952380952380963,359.5319237277125,2020-11-28 +1124,11643.6,4.0,18.047619047619058,364.36369122959525,2020-11-28 +1130,11706.300000000001,4.0,19.142857142857153,340.63794027767943,2020-11-28 +1105,11443.6,4.0,18.47619047619049,347.7583991879035,2020-11-28 +1104,11432.900000000001,4.0,18.571428571428584,353.23258781993417,2020-11-28 +1103,11421.900000000001,4.0,18.952380952380963,357.63768475524165,2020-11-28 +1084,11221.400000000001,4.0,18.952380952380963,338.89310653656514,2020-11-28 +1083,11210.800000000001,4.0,19.047619047619058,335.07684959139294,2020-11-28 +1082,11200.5,4.0,18.66666666666668,330.0586355992819,2020-11-28 +1081,11190.1,4.0,18.333333333333343,324.0505246715464,2020-11-28 +1080,11179.0,4.0,18.047619047619058,312.60131571044474,2020-11-28 +1079,11169.1,4.0,17.80952380952382,302.67469372315134,2020-11-28 +1085,11232.1,4.0,18.61904761904763,340.5255147431984,2020-11-28 +1078,11158.7,4.0,18.238095238095248,300.2208396329638,2020-11-28 +1076,11137.6,4.0,18.047619047619058,314.16216932334055,2020-11-28 +1075,11127.900000000001,4.0,17.952380952380963,325.6839409428893,2020-11-28 +1074,11116.800000000001,4.0,17.85714285714287,330.833679336219,2020-11-28 +1073,11105.7,4.0,17.761904761904773,334.296783046801,2020-11-28 +1072,11095.1,4.0,18.09523809523811,338.8600272634177,2020-11-28 +1071,11084.6,4.0,18.000000000000014,342.39191918077785,2020-11-28 +1077,11147.800000000001,4.0,18.142857142857153,304.6314398830906,2020-11-28 +1138,11791.1,4.0,18.66666666666668,335.79412504390496,2020-11-28 +1086,11243.1,4.0,18.80952380952382,338.89466240328534,2020-11-28 +1088,11263.1,4.0,19.2857142857143,324.1406730632241,2020-11-28 +1102,11411.800000000001,4.0,19.09523809523811,357.58687911687343,2020-11-28 +1101,11400.900000000001,4.0,19.000000000000014,348.95010795709993,2020-11-28 +1100,11390.7,4.0,19.000000000000014,336.1796657863938,2020-11-28 +1099,11380.400000000001,4.0,19.09523809523811,322.71410022859277,2020-11-28 +1098,11369.5,4.0,18.85714285714287,314.43047637769814,2020-11-28 +1097,11359.2,4.0,18.714285714285726,316.2988970994717,2020-11-28 +1087,11254.0,4.0,19.000000000000014,332.47140135422944,2020-11-28 +1096,11348.800000000001,4.0,18.66666666666668,325.00075034742986,2020-11-28 +1094,11327.2,4.0,18.952380952380963,345.4802318982911,2020-11-28 +1093,11316.5,4.0,18.952380952380963,352.0677607303381,2020-11-28 +1092,11306.2,4.0,18.714285714285726,350.7253755965595,2020-11-28 +1091,11295.2,4.0,18.571428571428584,342.7836474233418,2020-11-28 +1090,11284.400000000001,4.0,18.85714285714287,331.27171922937345,2020-11-28 +1089,11273.7,4.0,19.23809523809525,323.1060459500726,2020-11-28 +1095,11338.1,4.0,18.714285714285726,335.06577185389733,2020-11-28 +1070,11073.800000000001,4.0,17.90476190476192,343.07160206802433,2020-11-28 +1139,11801.7,4.0,18.714285714285726,330.2206384275708,2020-11-28 +1141,11822.400000000001,4.0,19.09523809523811,318.29263817300523,2020-11-28 +1178,12211.2,4.0,16.714285714285726,319.4188705822446,2020-11-28 +1179,12222.7,4.0,16.571428571428584,319.5093631657895,2020-11-28 +1180,12233.5,4.0,16.85714285714287,312.702923030321,2020-11-28 +1181,12243.800000000001,4.0,17.142857142857153,307.8465026982811,2020-11-28 +1182,12254.800000000001,4.0,17.428571428571438,308.12142708790213,2020-11-28 +1183,12265.6,4.0,17.2857142857143,314.1156937791741,2020-11-28 +1184,12276.5,4.0,17.142857142857153,322.11340392333733,2020-11-28 +1185,12287.300000000001,4.0,16.904761904761916,325.5541364911608,2020-11-28 +1186,12299.0,4.0,16.904761904761916,322.5784133804316,2020-11-28 +1187,12309.800000000001,4.0,17.142857142857153,315.0233719693814,2020-11-28 +1188,12319.5,4.0,17.095238095238106,304.85135525568694,2020-11-28 +1189,12330.5,4.0,17.523809523809533,296.999305899041,2020-11-28 +1190,12341.300000000001,4.0,17.904761904761916,295.56190624875234,2020-11-28 +1191,12351.1,4.0,18.142857142857153,297.5150881255578,2020-11-28 +1192,12361.6,4.0,18.142857142857153,307.05082105352574,2020-11-28 +1193,12372.300000000001,4.0,18.333333333333343,317.4165058546637,2020-11-28 +1194,12383.0,4.0,17.85714285714287,324.67633439198005,2020-11-28 +1208,12537.1,4.0,17.714285714285726,349.11749167506025,2020-11-28 +1207,12526.800000000001,4.0,18.238095238095248,339.9066412617914,2020-11-28 +1206,12515.5,4.0,18.42857142857144,336.56506832071494,2020-11-28 +1205,12505.400000000001,4.0,18.2857142857143,340.15777398749526,2020-11-28 +1204,12493.900000000001,4.0,18.238095238095248,346.0802025519784,2020-11-28 +1203,12483.2,4.0,17.85714285714287,349.7384066205037,2020-11-28 +1177,12200.300000000001,4.0,16.85714285714287,313.35275921720927,2020-11-28 +1202,12472.6,4.0,17.571428571428584,355.11950869840337,2020-11-28 +1200,12450.2,4.0,17.333333333333343,375.26206143527423,2020-11-28 +1199,12439.400000000001,4.0,17.238095238095248,380.2653877980586,2020-11-28 +1198,12427.900000000001,4.0,17.190476190476204,373.07691614333163,2020-11-28 +1197,12417.0,4.0,17.190476190476204,356.38652263136737,2020-11-28 +1196,12405.1,4.0,17.238095238095248,342.42773110501054,2020-11-28 +1195,12393.800000000001,4.0,17.66666666666668,331.36250626660023,2020-11-28 +1201,12461.400000000001,4.0,17.47619047619049,365.00378188404835,2020-11-28 +1176,12189.0,4.0,17.095238095238106,302.90849089649186,2020-11-28 +1175,12177.900000000001,4.0,17.00000000000001,292.2424156641096,2020-11-28 +1174,12167.1,4.0,17.00000000000001,288.3947335994765,2020-11-28 +1155,11968.5,4.0,19.2857142857143,318.156813772762,2020-11-28 +1154,11958.1,4.0,19.2857142857143,322.9235648855481,2020-11-28 +1153,11947.5,4.0,19.190476190476204,327.5045458906005,2020-11-28 +1152,11937.400000000001,4.0,19.42857142857144,328.90746408709134,2020-11-28 +1151,11927.5,4.0,19.142857142857153,328.6124406604008,2020-11-28 +1150,11916.6,4.0,18.952380952380963,327.9445829965266,2020-11-28 +1156,11978.400000000001,4.0,19.2857142857143,314.44437632793347,2020-11-28 +1149,11906.400000000001,4.0,18.428571428571438,331.5649794042527,2020-11-28 +1147,11884.7,4.0,18.523809523809536,342.614943173709,2020-11-28 +1146,11874.2,4.0,18.80952380952382,343.4783686340386,2020-11-28 +1145,11863.5,4.0,18.85714285714287,339.8444496338428,2020-11-28 +1144,11852.900000000001,4.0,19.09523809523811,331.59309590090515,2020-11-28 +1143,11842.400000000001,4.0,19.000000000000014,322.698567659367,2020-11-28 +1142,11832.300000000001,4.0,19.000000000000014,317.3658252488954,2020-11-28 +1148,11895.300000000001,4.0,18.42857142857144,336.8056118294842,2020-11-28 +1140,11812.0,4.0,18.85714285714287,323.4659090894488,2020-11-28 +1157,11988.400000000001,4.0,18.952380952380963,313.20685763501587,2020-11-28 +1159,12009.1,4.0,17.85714285714287,292.70376591072676,2020-11-28 +1173,12156.5,4.0,17.00000000000001,294.0703080753862,2020-11-28 +1172,12145.800000000001,4.0,17.00000000000001,300.77312981700265,2020-11-28 +1171,12134.7,4.0,17.00000000000001,305.1470381919062,2020-11-28 +1170,12123.900000000001,4.0,17.095238095238106,303.6646301690414,2020-11-28 +1169,12112.400000000001,4.0,16.952380952380963,292.8372532504644,2020-11-28 +1168,12101.300000000001,4.0,16.571428571428584,280.47941094726696,2020-11-28 +1158,11998.5,4.0,18.47619047619049,307.1583937168431,2020-11-28 +1167,12090.7,4.0,16.47619047619049,273.8251640256974,2020-11-28 +1165,12068.900000000001,4.0,16.380952380952394,271.53577293997125,2020-11-28 +1164,12058.6,4.0,17.380952380952394,274.024343763677,2020-11-28 +1163,12047.5,4.0,18.09523809523811,269.5977486589878,2020-11-28 +1162,12038.2,4.0,18.428571428571438,264.729675173587,2020-11-28 +1161,12028.800000000001,4.0,18.619047619047628,267.51147125007867,2020-11-28 +1160,12019.0,4.0,17.952380952380963,277.67416633702976,2020-11-28 +1166,12080.0,4.0,16.047619047619058,270.85142832113854,2020-11-28 +1069,11062.7,4.0,18.142857142857153,338.440454154945,2020-11-28 +1068,11051.800000000001,4.0,18.2857142857143,326.7914301738163,2020-11-28 +1067,11041.5,4.0,18.333333333333346,315.054368053665,2020-11-28 +964,9945.7,4.0,18.714285714285726,346.540916922655,2020-11-28 +965,9955.900000000001,4.0,18.85714285714287,346.7808523053856,2020-11-28 +966,9966.7,4.0,19.09523809523811,344.4046539518453,2020-11-28 +967,9977.5,4.0,19.000000000000014,341.18772219266214,2020-11-28 +968,9987.7,4.0,19.000000000000014,337.1853850780125,2020-11-28 +969,9998.5,4.0,19.000000000000014,332.78863739789676,2020-11-28 +970,10008.800000000001,4.0,19.09523809523811,328.1982886715692,2020-11-28 +971,10019.6,4.0,18.952380952380963,325.1325533017817,2020-11-28 +972,10030.300000000001,4.0,18.571428571428584,322.1117871527199,2020-11-28 +973,10040.900000000001,4.0,18.380952380952394,320.5716577154331,2020-11-28 +974,10051.2,4.0,18.47619047619049,322.42143290877607,2020-11-28 +975,10061.5,4.0,18.42857142857144,329.35588535453763,2020-11-28 +604,6415.1,4.0,16.904761904761916,344.38646392755936,2020-11-28 +977,10083.400000000001,4.0,18.66666666666668,345.0283251149507,2020-11-28 +978,10093.800000000001,4.0,18.85714285714287,342.73268973055247,2020-11-28 +979,10103.7,4.0,19.142857142857153,335.22739413374416,2020-11-28 +980,10114.400000000001,4.0,19.523809523809536,328.5163599164846,2020-11-28 +994,10265.2,4.0,17.904761904761916,324.5890758319366,2020-11-28 +993,10254.300000000001,4.0,18.047619047619058,327.5730387761281,2020-11-28 +992,10243.300000000001,4.0,18.42857142857144,325.4330824051617,2020-11-28 +991,10232.6,4.0,18.2857142857143,321.25452828697604,2020-11-28 +990,10222.5,4.0,18.142857142857153,319.76137649765803,2020-11-28 +989,10211.900000000001,4.0,17.90476190476192,323.71272211214847,2020-11-28 +963,9934.800000000001,4.0,18.571428571428584,343.4349489117608,2020-11-28 +988,10200.7,4.0,18.000000000000014,329.9675431102203,2020-11-28 +986,10179.2,4.0,18.000000000000014,346.03619029972856,2020-11-28 +985,10168.400000000001,4.0,17.90476190476192,352.82301782622045,2020-11-28 +984,10157.1,4.0,18.047619047619058,354.27630887164435,2020-11-28 +983,10146.2,4.0,18.238095238095248,348.9002370620526,2020-11-28 +982,10135.2,4.0,18.80952380952382,338.16563791653346,2020-11-28 +981,10124.400000000001,4.0,19.23809523809525,329.9485969057015,2020-11-28 +987,10189.900000000001,4.0,18.000000000000014,338.2566789124672,2020-11-28 +962,9923.900000000001,4.0,18.952380952380963,335.5739771865167,2020-11-28 +961,9912.900000000001,4.0,19.09523809523811,327.303343046063,2020-11-28 +960,9902.6,4.0,19.09523809523811,322.63874252383926,2020-11-28 +941,9698.300000000001,4.0,18.000000000000014,317.3473333856975,2020-11-28 +940,9687.6,4.0,18.000000000000014,317.21460637104906,2020-11-28 +939,9676.300000000001,4.0,18.000000000000014,314.60202247757866,2020-11-28 +938,9665.7,4.0,18.09523809523811,310.93111258327355,2020-11-28 +937,9655.0,4.0,17.952380952380963,305.68759759794597,2020-11-28 +936,9644.2,4.0,17.571428571428584,296.25018064895545,2020-11-28 +942,9709.7,4.0,18.000000000000014,319.2477897950299,2020-11-28 +935,9633.7,4.0,17.380952380952394,283.77956188837067,2020-11-28 +933,9611.800000000001,4.0,17.523809523809533,260.790834752523,2020-11-28 +932,9602.2,4.0,17.523809523809533,258.480718790942,2020-11-28 +931,9591.800000000001,4.0,17.571428571428584,264.24165185392974,2020-11-28 +930,9581.800000000001,4.0,17.333333333333343,272.3554817531591,2020-11-28 +929,9571.2,4.0,17.142857142857153,276.19501219603706,2020-11-28 +928,9560.800000000001,4.0,17.333333333333343,274.3348744159457,2020-11-28 +934,9622.4,4.0,17.47619047619049,270.91869696171426,2020-11-28 +995,10275.6,4.0,18.00000000000001,319.0387706207864,2020-11-28 +943,9720.0,4.0,18.09523809523811,324.9499376131366,2020-11-28 +945,9742.5,4.0,17.714285714285726,336.7332572982948,2020-11-28 +959,9892.6,4.0,18.61904761904763,327.498139908065,2020-11-28 +958,9881.800000000001,4.0,18.190476190476204,334.2790686423109,2020-11-28 +957,9870.800000000001,4.0,17.714285714285726,337.61728567622686,2020-11-28 +956,9860.300000000001,4.0,18.142857142857153,332.9013119110198,2020-11-28 +955,9849.300000000001,4.0,18.2857142857143,322.5063571948448,2020-11-28 +954,9839.0,4.0,18.333333333333346,310.4542487405372,2020-11-28 +944,9731.1,4.0,17.85714285714287,331.7086461445571,2020-11-28 +953,9828.2,4.0,18.190476190476204,306.85013230531104,2020-11-28 +951,9807.1,4.0,18.190476190476204,310.0329760403929,2020-11-28 +950,9796.4,4.0,18.333333333333346,311.4438346523657,2020-11-28 +949,9786.1,4.0,18.380952380952394,314.76971328515845,2020-11-28 +948,9775.4,4.0,18.000000000000014,319.1761100371393,2020-11-28 +947,9764.800000000001,4.0,17.61904761904763,327.40243612773924,2020-11-28 +946,9753.7,4.0,17.66666666666668,335.6388359615006,2020-11-28 +952,9817.800000000001,4.0,18.2857142857143,308.1149380731988,2020-11-28 +996,10286.0,4.0,18.23809523809525,311.41970377747396,2020-11-28 +997,10296.6,4.0,18.523809523809536,309.09605763054475,2020-11-28 +998,10307.300000000001,4.0,18.952380952380963,309.9450432604318,2020-11-28 +1048,10840.1,4.0,19.000000000000014,325.55805118302476,2020-11-28 +1047,10829.7,4.0,19.09523809523811,322.2624572165313,2020-11-28 +1046,10819.1,4.0,18.85714285714287,316.43387430027235,2020-11-28 +1045,10809.0,4.0,19.000000000000014,307.89128224807826,2020-11-28 +1044,10798.2,4.0,18.42857142857144,300.4434527434903,2020-11-28 +1043,10787.6,4.0,17.761904761904773,296.9586353752252,2020-11-28 +1049,10850.900000000001,4.0,19.000000000000014,327.528338758641,2020-11-28 +1042,10777.5,4.0,17.09523809523811,300.6796623434124,2020-11-28 +1040,10755.7,4.0,17.142857142857153,307.5253007415454,2020-11-28 +1039,10744.5,4.0,17.952380952380963,307.85858629238754,2020-11-28 +1038,10734.2,4.0,18.333333333333346,310.4104504089869,2020-11-28 +1037,10723.900000000001,4.0,18.714285714285726,315.84057100006453,2020-11-28 +1036,10713.400000000001,4.0,18.80952380952382,322.3561120882475,2020-11-28 +1035,10703.1,4.0,18.952380952380963,326.5222982125017,2020-11-28 +1041,10766.300000000001,4.0,16.85714285714287,304.9542682547111,2020-11-28 +1034,10692.400000000001,4.0,18.952380952380963,327.4542957394491,2020-11-28 +1050,10861.300000000001,4.0,19.000000000000014,330.13945099626517,2020-11-28 +1052,10881.900000000001,4.0,19.000000000000014,335.2433143330685,2020-11-28 +1066,11031.1,4.0,18.2857142857143,310.1306476459075,2020-11-28 +1065,11020.400000000001,4.0,18.142857142857153,311.9465800692425,2020-11-28 +1064,11009.800000000001,4.0,17.90476190476192,319.42442779709745,2020-11-28 +1063,10999.400000000001,4.0,18.000000000000014,327.2580999225512,2020-11-28 +1062,10988.5,4.0,18.000000000000014,332.7652506602376,2020-11-28 +1061,10977.400000000001,4.0,18.000000000000014,335.3512026130743,2020-11-28 +1051,10871.5,4.0,19.000000000000014,331.9590330315157,2020-11-28 +1060,10966.6,4.0,17.90476190476192,337.4843376665732,2020-11-28 +1058,10945.6,4.0,18.333333333333343,346.98704207985804,2020-11-28 +1057,10934.6,4.0,18.66666666666668,351.5780806898189,2020-11-28 +1056,10923.5,4.0,18.952380952380963,353.7765543095839,2020-11-28 +1055,10913.300000000001,4.0,19.09523809523811,351.58710225412847,2020-11-28 +1054,10902.900000000001,4.0,19.000000000000014,345.51121156673736,2020-11-28 +1053,10892.7,4.0,19.000000000000014,339.5075816105471,2020-11-28 +1059,10956.1,4.0,18.047619047619058,341.09592287050623,2020-11-28 +926,9539.800000000001,4.0,17.2857142857143,246.59000307867313,2020-11-28 +1033,10682.1,4.0,18.80952380952382,326.1269917900811,2020-11-28 +1031,10660.300000000001,4.0,18.23809523809525,322.4795465318288,2020-11-28 +1012,10453.800000000001,4.0,18.333333333333343,327.2976155091797,2020-11-28 +1011,10443.300000000001,4.0,18.571428571428584,335.0471031494227,2020-11-28 +1010,10432.6,4.0,18.523809523809536,341.15285842121364,2020-11-28 +1009,10422.5,4.0,18.61904761904763,343.5807691770668,2020-11-28 +1008,10411.7,4.0,18.428571428571438,340.74515117356594,2020-11-28 +1007,10400.5,4.0,17.952380952380963,330.57104859614145,2020-11-28 +1013,10464.2,4.0,18.333333333333346,322.26063639803033,2020-11-28 +1006,10389.900000000001,4.0,17.952380952380963,316.96434550472895,2020-11-28 +1004,10369.2,4.0,18.761904761904773,295.3827740370107,2020-11-28 +1003,10358.7,4.0,18.809523809523824,292.5252982311838,2020-11-28 +1002,10348.300000000001,4.0,18.80952380952382,295.4714961285581,2020-11-28 +1001,10337.900000000001,4.0,18.761904761904773,301.4929439339475,2020-11-28 +1000,10327.300000000001,4.0,18.571428571428584,305.1912486883416,2020-11-28 +999,10317.0,4.0,18.571428571428584,308.56698320775195,2020-11-28 +1005,10379.300000000001,4.0,18.333333333333343,304.21092711020344,2020-11-28 +1032,10671.5,4.0,18.714285714285726,324.48318678240014,2020-11-28 +1014,10475.1,4.0,18.142857142857153,323.7688541838263,2020-11-28 +1016,10497.2,4.0,17.523809523809536,330.0240952719781,2020-11-28 +1030,10649.5,4.0,18.000000000000014,322.08850333012606,2020-11-28 +1029,10639.0,4.0,17.761904761904773,324.6566266490835,2020-11-28 +1028,10628.5,4.0,17.285714285714295,328.3449457976261,2020-11-28 +1027,10617.7,4.0,17.190476190476204,332.06273595297023,2020-11-28 +1026,10606.1,4.0,17.142857142857153,332.8758536871598,2020-11-28 +1025,10595.5,4.0,16.904761904761916,329.57980122696165,2020-11-28 +1015,10485.900000000001,4.0,17.952380952380963,326.7981720009517,2020-11-28 +1024,10584.300000000001,4.0,16.904761904761916,324.22886386145717,2020-11-28 +1022,10561.800000000001,4.0,17.2857142857143,313.43513334080694,2020-11-28 +1021,10551.0,4.0,17.333333333333343,310.77610726713726,2020-11-28 +1020,10540.7,4.0,17.190476190476204,312.3835899033977,2020-11-28 +1019,10529.400000000001,4.0,17.2857142857143,316.46577091033043,2020-11-28 +1018,10518.7,4.0,17.095238095238106,323.0582879604701,2020-11-28 +1017,10507.7,4.0,17.380952380952394,328.3009642012279,2020-11-28 +1023,10573.2,4.0,17.142857142857153,318.21601368287475,2020-11-28 +603,6415.1,4.0,17.047619047619058,348.7677786505785,2020-11-28 +552,5878.900000000001,4.0,18.380952380952394,312.20083754101034,2020-11-28 +601,6403.900000000001,4.0,17.80952380952382,340.6944860278749,2020-11-28 +203,2121.8,4.0,16.238095238095248,344.4521531147843,2020-11-28 +204,2133.4,4.0,16.333333333333343,341.50249758726693,2020-11-28 +205,2145.5,4.0,16.47619047619049,333.8094318390266,2020-11-28 +206,2157.1,4.0,16.66666666666668,325.37687345665324,2020-11-28 +207,2167.5,4.0,16.904761904761916,321.8803633575981,2020-11-28 +208,2179.8,4.0,16.761904761904773,325.823814446381,2020-11-28 +209,2191.4,4.0,16.333333333333343,333.4565683622485,2020-11-28 +210,2203.0,4.0,16.047619047619058,336.54795219857124,2020-11-28 +211,2214.6,4.0,15.904761904761916,334.12482010930324,2020-11-28 +212,2225.6,4.0,16.00000000000001,328.45917489704317,2020-11-28 +213,2238.2000000000003,4.0,16.00000000000001,323.9046810374652,2020-11-28 +214,2250.3,4.0,16.00000000000001,323.31970119400654,2020-11-28 +215,2261.8,4.0,16.00000000000001,327.5221104400187,2020-11-28 +216,2273.6,4.0,16.00000000000001,333.4346133543146,2020-11-28 +217,2285.9,4.0,15.904761904761916,342.3232921449904,2020-11-28 +218,2297.6,4.0,16.142857142857153,347.7816980416585,2020-11-28 +219,2309.1,4.0,16.190476190476204,346.6128895888772,2020-11-28 +233,2472.5,4.0,16.333333333333343,328.3397491711246,2020-11-28 +232,2461.1000000000004,4.0,16.047619047619058,337.37343153639836,2020-11-28 +231,2448.8,4.0,15.904761904761916,346.6246136571581,2020-11-28 +230,2437.7000000000003,4.0,15.904761904761916,353.5447294455155,2020-11-28 +229,2425.0,4.0,16.047619047619058,353.7912139194552,2020-11-28 +228,2413.5,4.0,16.333333333333343,346.0666592817688,2020-11-28 +202,2109.8,4.0,16.190476190476204,342.9170499399484,2020-11-28 +227,2401.8,4.0,16.761904761904773,335.1429654043592,2020-11-28 +225,2379.0,4.0,16.66666666666668,328.78253438425816,2020-11-28 +224,2367.3,4.0,16.47619047619049,335.5453595411861,2020-11-28 +223,2355.9,4.0,16.238095238095248,340.0709769620439,2020-11-28 +222,2344.1,4.0,16.380952380952394,339.9258242582407,2020-11-28 +221,2332.1,4.0,16.571428571428584,340.56918664889423,2020-11-28 +220,2320.9,4.0,16.47619047619049,342.57305118703954,2020-11-28 +226,2390.0,4.0,16.904761904761916,327.61359921131225,2020-11-28 +201,2098.4,4.0,16.1904761904762,338.9724123873083,2020-11-28 +200,2086.8,4.0,16.333333333333343,334.1811940906208,2020-11-28 +199,2074.3,4.0,16.61904761904763,329.3534180596934,2020-11-28 +180,1856.9,4.0,17.000000000000014,337.55903648467483,2020-11-28 +179,1845.5,4.0,16.333333333333343,338.19844408741744,2020-11-28 +178,1834.2,4.0,15.80952380952382,344.9205095548249,2020-11-28 +177,1822.9,4.0,15.428571428571438,352.9438037943403,2020-11-28 +176,1808.9,4.0,15.619047619047628,349.8635221215379,2020-11-28 +175,1808.9,4.0,16.047619047619058,341.0701930359837,2020-11-28 +181,1868.7,4.0,16.85714285714287,343.51854876851644,2020-11-28 +174,1796.7,4.0,16.714285714285726,331.1961587513279,2020-11-28 +172,1774.4,4.0,16.761904761904773,329.57861838950896,2020-11-28 +171,1762.6000000000001,4.0,16.80952380952382,332.9499936495457,2020-11-28 +170,1751.1000000000001,4.0,16.714285714285726,331.5007074087109,2020-11-28 +169,1739.1000000000001,4.0,16.80952380952382,328.77684436869106,2020-11-28 +168,1727.7,4.0,16.66666666666668,327.3632133738006,2020-11-28 +167,1716.0,4.0,16.714285714285726,326.41041179422234,2020-11-28 +173,1785.4,4.0,16.66666666666668,327.47198043116225,2020-11-28 +234,2483.7000000000003,4.0,16.66666666666668,321.9538771634789,2020-11-28 +182,1880.0,4.0,17.095238095238106,346.8316208173303,2020-11-28 +184,1903.0,4.0,17.00000000000001,332.430547306671,2020-11-28 +198,2062.4,4.0,16.523809523809536,328.0119787517122,2020-11-28 +197,2051.1,4.0,16.47619047619049,331.40429629217425,2020-11-28 +196,2040.0,4.0,16.380952380952394,336.9659386357822,2020-11-28 +195,2028.3000000000002,4.0,16.571428571428584,340.0170156478182,2020-11-28 +194,2017.3000000000002,4.0,16.952380952380963,339.1849766584771,2020-11-28 +193,2006.1000000000001,4.0,17.095238095238106,334.4918141503706,2020-11-28 +183,1891.7,4.0,17.00000000000001,343.582595984179,2020-11-28 +192,1994.4,4.0,17.00000000000001,329.412044545659,2020-11-28 +190,1971.7,4.0,17.00000000000001,328.39912369275226,2020-11-28 +189,1960.1000000000001,4.0,17.00000000000001,328.44000143649544,2020-11-28 +188,1948.8000000000002,4.0,17.00000000000001,326.5012656930695,2020-11-28 +187,1937.2,4.0,17.00000000000001,322.52406266978016,2020-11-28 +186,1925.5,4.0,17.00000000000001,319.23247151319487,2020-11-28 +185,1914.1000000000001,4.0,17.00000000000001,322.7636560900488,2020-11-28 +191,1982.7,4.0,17.00000000000001,327.5728954621582,2020-11-28 +166,1704.3000000000002,4.0,16.85714285714287,326.7505904973859,2020-11-28 +235,2494.8,4.0,16.952380952380963,323.26812036534875,2020-11-28 +237,2517.5,4.0,17.00000000000001,348.73109176086035,2020-11-28 +274,2936.3,4.0,17.095238095238106,333.80028535593,2020-11-28 +275,2947.7000000000003,4.0,17.00000000000001,339.2075752202341,2020-11-28 +276,2959.0,4.0,17.00000000000001,349.31267633036646,2020-11-28 +277,2970.8,4.0,17.00000000000001,359.3201087470988,2020-11-28 +278,2982.4,4.0,17.00000000000001,363.11070188506505,2020-11-28 +279,2993.9,4.0,17.00000000000001,358.59124265874175,2020-11-28 +280,3005.2000000000003,4.0,17.00000000000001,351.9679777390688,2020-11-28 +281,3016.9,4.0,17.1904761904762,346.50975832592394,2020-11-28 +282,3028.1000000000004,4.0,16.714285714285726,343.3450701468992,2020-11-28 +283,3038.9,4.0,16.428571428571438,344.8471231323284,2020-11-28 +284,3051.5,4.0,16.333333333333343,347.0248365100431,2020-11-28 +285,3062.4,4.0,16.428571428571438,341.8953462253121,2020-11-28 +286,3073.4,4.0,16.80952380952382,336.79888737882465,2020-11-28 +287,3084.4,4.0,17.142857142857153,334.26718197340233,2020-11-28 +288,3096.0,4.0,16.66666666666668,338.73081974201205,2020-11-28 +289,3107.4,4.0,16.42857142857144,350.5266245795492,2020-11-28 +290,3119.4,4.0,15.904761904761916,360.94099856099683,2020-11-28 +304,3280.1000000000004,4.0,18.000000000000014,372.43357164957956,2020-11-28 +303,3269.3,4.0,18.000000000000014,373.40262424489947,2020-11-28 +302,3258.3,4.0,18.000000000000014,372.65111314764755,2020-11-28 +301,3246.6000000000004,4.0,18.000000000000014,370.0416873122678,2020-11-28 +300,3235.2000000000003,4.0,18.09523809523811,362.57837199870676,2020-11-28 +299,3223.8,4.0,17.952380952380963,352.59110709657085,2020-11-28 +273,2925.4,4.0,16.85714285714287,334.71494213182496,2020-11-28 +298,3212.7000000000003,4.0,17.761904761904773,345.9041075438214,2020-11-28 +296,3190.4,4.0,16.714285714285726,339.51695317843945,2020-11-28 +295,3178.8,4.0,16.333333333333343,341.1674159821308,2020-11-28 +294,3167.3,4.0,15.904761904761916,343.34899409139905,2020-11-28 +293,3154.6000000000004,4.0,15.619047619047628,349.1328384606401,2020-11-28 +292,3144.2000000000003,4.0,15.666666666666679,358.61284589814693,2020-11-28 +291,3131.6000000000004,4.0,15.619047619047628,363.2351226422143,2020-11-28 +297,3201.8,4.0,17.2857142857143,341.7219223734669,2020-11-28 +272,2914.2000000000003,4.0,16.714285714285726,340.090396248489,2020-11-28 +271,2903.2000000000003,4.0,16.66666666666668,345.3690162498682,2020-11-28 +270,2891.1000000000004,4.0,16.714285714285726,344.2618960026032,2020-11-28 +251,2674.1000000000004,4.0,17.047619047619058,329.10532114747275,2020-11-28 +250,2662.8,4.0,17.42857142857144,320.8247356565391,2020-11-28 +249,2651.7000000000003,4.0,17.61904761904763,316.81758122589184,2020-11-28 +248,2641.0,4.0,17.61904761904763,320.3971829225111,2020-11-28 +247,2630.5,4.0,17.333333333333343,330.4515953458365,2020-11-28 +246,2619.0,4.0,17.190476190476204,343.0878808541065,2020-11-28 +252,2685.0,4.0,16.904761904761916,337.42242153509426,2020-11-28 +245,2607.3,4.0,17.190476190476204,352.0328248735317,2020-11-28 +243,2585.3,4.0,17.42857142857144,352.97330588646093,2020-11-28 +242,2573.9,4.0,17.42857142857144,351.2833945012733,2020-11-28 +241,2562.6000000000004,4.0,17.238095238095248,352.2953149397364,2020-11-28 +240,2551.3,4.0,17.2857142857143,358.5619806046981,2020-11-28 +239,2540.1000000000004,4.0,17.142857142857153,363.3327578400427,2020-11-28 +238,2528.9,4.0,16.904761904761916,359.8852554071118,2020-11-28 +244,2596.1000000000004,4.0,17.238095238095248,353.9692607274364,2020-11-28 +236,2506.1000000000004,4.0,17.095238095238106,334.14971142411036,2020-11-28 +253,2696.9,4.0,17.00000000000001,343.2584953204072,2020-11-28 +255,2720.1000000000004,4.0,17.00000000000001,340.8928683269456,2020-11-28 +269,2879.7000000000003,4.0,16.85714285714287,341.9144576566258,2020-11-28 +268,2868.5,4.0,17.095238095238106,341.9061796156655,2020-11-28 +267,2856.9,4.0,17.00000000000001,342.8555964806098,2020-11-28 +266,2845.6000000000004,4.0,17.00000000000001,343.53348814617453,2020-11-28 +265,2834.0,4.0,17.00000000000001,343.0723601085242,2020-11-28 +264,2822.8,4.0,17.00000000000001,338.5157541081354,2020-11-28 +254,2708.3,4.0,17.00000000000001,343.0804349597222,2020-11-28 +263,2811.5,4.0,17.00000000000001,336.5191339798231,2020-11-28 +261,2789.0,4.0,16.85714285714287,345.5735593453961,2020-11-28 +260,2777.4,4.0,16.714285714285726,350.3346383721839,2020-11-28 +259,2766.3,4.0,16.66666666666668,351.59237766659817,2020-11-28 +258,2754.8,4.0,16.714285714285726,346.067078839204,2020-11-28 +257,2743.1000000000004,4.0,16.85714285714287,340.9142494225999,2020-11-28 +256,2731.9,4.0,17.095238095238106,339.7751137685359,2020-11-28 +262,2800.7000000000003,4.0,17.095238095238106,339.8776877223826,2020-11-28 +165,1693.5,4.0,17.095238095238106,326.45996193537337,2020-11-28 +164,1681.4,4.0,17.00000000000001,324.8363760804625,2020-11-28 +163,1670.3000000000002,4.0,17.00000000000001,324.3947336026302,2020-11-28 +60,495.40000000000003,4.0,17.952380952380963,285.3611528648479,2020-11-28 +61,505.8,4.0,17.66666666666668,284.6592366903335,2020-11-28 +62,516.4,4.0,17.333333333333343,292.5622510918279,2020-11-28 +63,527.2,4.0,17.047619047619058,302.3631242555223,2020-11-28 +64,537.5,4.0,16.80952380952382,309.6518950697912,2020-11-28 +65,548.5,4.0,17.142857142857153,312.8992979248568,2020-11-28 +66,559.3000000000001,4.0,17.2857142857143,312.3366615010042,2020-11-28 +67,569.4,4.0,17.333333333333343,308.3250570360605,2020-11-28 +68,580.3000000000001,4.0,17.2857142857143,311.0390469004724,2020-11-28 +69,592.1,4.0,17.333333333333343,318.17958349566686,2020-11-28 +70,603.2,4.0,16.619047619047628,325.6318831392288,2020-11-28 +71,614.4000000000001,4.0,16.428571428571438,331.44892687258135,2020-11-28 +72,626.5,4.0,16.333333333333343,335.0432235580667,2020-11-28 +73,637.6,4.0,16.428571428571438,332.85901712256407,2020-11-28 +74,648.8000000000001,4.0,16.714285714285726,331.5815587841869,2020-11-28 +75,660.4000000000001,4.0,17.1904761904762,329.51880414809625,2020-11-28 +76,671.5,4.0,17.00000000000001,328.1363202547387,2020-11-28 +90,829.9000000000001,4.0,17.095238095238106,323.4205394917682,2020-11-28 +89,819.0,4.0,16.85714285714287,329.9095497842645,2020-11-28 +88,807.8000000000001,4.0,16.714285714285726,337.77717323564184,2020-11-28 +87,796.1,4.0,16.66666666666668,346.0764293555353,2020-11-28 +86,784.3000000000001,4.0,16.714285714285726,349.43415090363965,2020-11-28 +85,772.3000000000001,4.0,16.85714285714287,346.2749922638319,2020-11-28 +59,485.3,4.0,18.190476190476204,291.15548988487194,2020-11-28 +84,761.4000000000001,4.0,17.00000000000001,340.451046006081,2020-11-28 +82,738.4000000000001,4.0,17.2857142857143,329.99645596513,2020-11-28 +81,727.5,4.0,17.333333333333343,328.3169028533986,2020-11-28 +80,716.2,4.0,17.2857142857143,329.38046150055436,2020-11-28 +79,705.1,4.0,17.142857142857153,329.13008796644385,2020-11-28 +78,693.5,4.0,16.904761904761916,328.7555900453434,2020-11-28 +77,682.5,4.0,17.00000000000001,327.8066923471729,2020-11-28 +83,749.2,4.0,17.142857142857153,334.673761096935,2020-11-28 +58,474.8,4.0,17.85714285714287,297.8089722819286,2020-11-28 +57,464.20000000000005,4.0,17.714285714285726,302.1276634916955,2020-11-28 +56,453.70000000000005,4.0,17.66666666666668,302.3107868597185,2020-11-28 +36,227.8,4.0,23.428571428571445,210.03487063548027,2020-11-28 +35,227.8,4.0,16.285714285714295,284.5924939208895,2020-11-28 +33,227.8,4.0,15.523809523809533,346.01244984787564,2020-11-28 +32,215.5,4.0,15.285714285714295,316.52742680205364,2020-11-28 +31,204.3,4.0,15.238095238095248,281.9072236404871,2020-11-28 +30,193.0,4.0,16.047619047619058,259.4740195223342,2020-11-28 +37,255.5,4.0,26.76190476190478,127.56086727819857,2020-11-28 +29,180.70000000000002,4.0,16.47619047619049,195.42976667848296,2020-11-28 +23,106.7,4.0,24.047619047619065,119.35008490749642,2020-11-28 +22,99.2,4.0,21.047619047619065,158.95752078359578,2020-11-28 +21,91.60000000000001,4.0,21.761904761904773,173.67308624190326,2020-11-28 +20,84.10000000000001,4.0,21.809523809523824,167.73340982771532,2020-11-28 +19,76.5,4.0,21.380952380952394,147.09046734852814,2020-11-28 +18,69.2,4.0,18.61904761904763,129.0121194832887,2020-11-28 +28,171.0,4.0,16.1904761904762,120.85018994136902,2020-11-28 +91,840.7,4.0,17.00000000000001,319.26283583926806,2020-11-28 +38,259.2,4.0,26.619047619047635,117.28019529972494,2020-11-28 +40,281.90000000000003,4.0,16.285714285714295,222.85865633518722,2020-11-28 +55,443.40000000000003,4.0,17.714285714285726,298.89577026012705,2020-11-28 +54,433.0,4.0,17.85714285714287,297.46269864261467,2020-11-28 +53,422.5,4.0,18.09523809523811,299.2611050946777,2020-11-28 +52,411.90000000000003,4.0,18.09523809523811,302.2970571043711,2020-11-28 +51,401.0,4.0,17.952380952380963,303.56013923653325,2020-11-28 +50,390.3,4.0,17.66666666666668,302.7276003145963,2020-11-28 +39,271.0,4.0,23.33333333333335,168.12086909177054,2020-11-28 +49,380.20000000000005,4.0,17.42857142857144,300.6796021002883,2020-11-28 +47,357.8,4.0,16.47619047619049,298.05694223338344,2020-11-28 +46,347.70000000000005,4.0,16.380952380952394,300.4369653970226,2020-11-28 +45,336.6,4.0,16.47619047619049,300.1097087382218,2020-11-28 +44,325.3,4.0,16.42857142857144,291.372358287226,2020-11-28 +43,314.5,4.0,16.761904761904773,292.9871789457465,2020-11-28 +42,303.0,4.0,16.80952380952382,293.5858942329671,2020-11-28 +48,369.3,4.0,17.00000000000001,298.4338609414781,2020-11-28 +92,852.5,4.0,17.00000000000001,319.98192003478505,2020-11-28 +93,863.9000000000001,4.0,17.2857142857143,324.91009817935617,2020-11-28 +94,875.6,4.0,16.761904761904773,328.18255083902227,2020-11-28 +144,1450.5,4.0,17.00000000000001,345.8336311768736,2020-11-28 +143,1438.9,4.0,17.00000000000001,349.63140591278994,2020-11-28 +142,1427.2,4.0,17.00000000000001,352.4362929174366,2020-11-28 +141,1416.0,4.0,17.00000000000001,351.588577287697,2020-11-28 +140,1403.9,4.0,17.00000000000001,349.4842136519332,2020-11-28 +139,1393.1000000000001,4.0,17.00000000000001,349.77902477439386,2020-11-28 +145,1461.8000000000002,4.0,17.00000000000001,343.41315467270505,2020-11-28 +138,1381.7,4.0,17.00000000000001,350.9137821830573,2020-11-28 +136,1358.8000000000002,4.0,17.00000000000001,346.4806140609227,2020-11-28 +135,1347.6000000000001,4.0,17.00000000000001,341.3830614078536,2020-11-28 +134,1336.3000000000002,4.0,17.00000000000001,336.34785879915717,2020-11-28 +133,1324.8000000000002,4.0,17.00000000000001,335.8136379053905,2020-11-28 +132,1313.8000000000002,4.0,17.00000000000001,341.6719188315768,2020-11-28 +131,1302.5,4.0,17.00000000000001,349.1010752975769,2020-11-28 +137,1370.2,4.0,17.00000000000001,349.8467181210287,2020-11-28 +130,1290.6000000000001,4.0,17.00000000000001,354.7865424417963,2020-11-28 +146,1473.0,4.0,17.00000000000001,344.477939660723,2020-11-28 +148,1496.8000000000002,4.0,17.00000000000001,348.86234213395596,2020-11-28 +162,1658.6000000000001,4.0,17.00000000000001,328.0587285502326,2020-11-28 +161,1646.7,4.0,17.095238095238106,333.7630831116864,2020-11-28 +160,1635.2,4.0,16.85714285714287,342.1569106608854,2020-11-28 +159,1623.6000000000001,4.0,16.714285714285726,348.8722238742139,2020-11-28 +158,1611.4,4.0,16.66666666666668,351.8834105251783,2020-11-28 +157,1600.6000000000001,4.0,16.714285714285726,352.01331894995053,2020-11-28 +147,1485.3000000000002,4.0,17.00000000000001,348.4997088078211,2020-11-28 +156,1588.7,4.0,16.85714285714287,352.075489525354,2020-11-28 +154,1565.5,4.0,17.00000000000001,352.46050338880445,2020-11-28 +153,1554.1000000000001,4.0,17.00000000000001,347.90306866890575,2020-11-28 +152,1541.9,4.0,17.00000000000001,340.54944517783423,2020-11-28 +151,1531.0,4.0,17.00000000000001,336.05776123793305,2020-11-28 +150,1519.7,4.0,17.00000000000001,337.4157024366823,2020-11-28 +149,1508.3000000000002,4.0,17.00000000000001,343.2699730223161,2020-11-28 +155,1577.5,4.0,17.095238095238106,352.4885150877247,2020-11-28 +305,3291.1000000000004,4.0,18.000000000000014,370.81348741727754,2020-11-28 +129,1279.1000000000001,4.0,17.095238095238106,356.0349541167554,2020-11-28 +127,1255.7,4.0,16.66666666666668,347.60859285432747,2020-11-28 +108,1036.0,4.0,15.80952380952382,330.3322707484616,2020-11-28 +107,1024.5,4.0,16.285714285714295,333.1987309276143,2020-11-28 +106,1012.4000000000001,4.0,16.47619047619049,334.7783815398674,2020-11-28 +105,1000.8000000000001,4.0,16.714285714285726,334.22305819563064,2020-11-28 +104,989.8000000000001,4.0,16.904761904761916,333.642754848418,2020-11-28 +103,978.1,4.0,16.952380952380963,328.2887958691394,2020-11-28 +109,1047.5,4.0,15.904761904761916,326.9600928965351,2020-11-28 +102,966.4000000000001,4.0,16.761904761904773,316.5923748258517,2020-11-28 +100,944.3000000000001,4.0,17.333333333333343,284.4988342390665,2020-11-28 +99,933.6,4.0,17.2857142857143,277.43631941061017,2020-11-28 +98,922.3000000000001,4.0,16.333333333333343,282.89156483401655,2020-11-28 +97,911.7,4.0,15.761904761904773,300.4165373961132,2020-11-28 +96,899.2,4.0,15.571428571428584,318.9979644770152,2020-11-28 +95,887.2,4.0,15.761904761904773,327.5682956355448,2020-11-28 +101,954.6,4.0,17.00000000000001,299.2228487534392,2020-11-28 +128,1267.4,4.0,16.952380952380963,351.7857297157623,2020-11-28 +110,1059.4,4.0,16.047619047619058,325.0928850283233,2020-11-28 +112,1081.5,4.0,16.66666666666668,332.3209219121821,2020-11-28 +126,1244.9,4.0,16.333333333333343,348.4799192689293,2020-11-28 +125,1232.4,4.0,16.047619047619058,350.17252869106346,2020-11-28 +124,1220.6000000000001,4.0,15.904761904761916,349.1186042875328,2020-11-28 +123,1208.9,4.0,16.00000000000001,345.06912418805297,2020-11-28 +122,1196.7,4.0,16.00000000000001,339.6376624588205,2020-11-28 +121,1185.5,4.0,15.904761904761916,333.6764794854097,2020-11-28 +111,1069.8,4.0,16.333333333333343,324.83397239551834,2020-11-28 +120,1173.8,4.0,16.047619047619058,329.86943091280017,2020-11-28 +118,1150.4,4.0,16.523809523809536,324.81510487109176,2020-11-28 +117,1138.8,4.0,16.66666666666668,329.51991029527306,2020-11-28 +116,1128.0,4.0,16.761904761904773,340.3257750775972,2020-11-28 +115,1116.2,4.0,16.714285714285726,347.46041193448866,2020-11-28 +114,1104.6000000000001,4.0,16.952380952380963,349.15466737139525,2020-11-28 +113,1092.6000000000001,4.0,17.047619047619058,343.58281325768894,2020-11-28 +119,1161.7,4.0,16.42857142857144,327.10616284059836,2020-11-28 +602,6415.1,4.0,17.238095238095248,345.5252785754466,2020-11-28 +306,3302.6000000000004,4.0,18.000000000000014,369.7424542513678,2020-11-28 +308,3324.7000000000003,4.0,17.85714285714287,367.00264619744206,2020-11-28 +499,5303.5,4.0,17.523809523809533,326.5752321759412,2020-11-28 +500,5313.8,4.0,17.61904761904763,327.07354429658676,2020-11-28 +501,5324.8,4.0,17.42857142857144,327.37438584270956,2020-11-28 +502,5335.900000000001,4.0,17.047619047619058,326.10096982395567,2020-11-28 +503,5347.400000000001,4.0,16.904761904761916,325.1403246222511,2020-11-28 +504,5358.5,4.0,17.00000000000001,325.2216482402056,2020-11-28 +505,5369.400000000001,4.0,17.00000000000001,327.03822062207223,2020-11-28 +506,5380.900000000001,4.0,17.00000000000001,330.16547393310543,2020-11-28 +507,5391.900000000001,4.0,17.00000000000001,333.2364908952101,2020-11-28 +508,5403.1,4.0,17.00000000000001,334.30510968565466,2020-11-28 +509,5414.6,4.0,16.904761904761916,332.2210645580472,2020-11-28 +510,5425.700000000001,4.0,16.952380952380963,328.20551745903174,2020-11-28 +511,5436.400000000001,4.0,17.47619047619049,325.04492110489855,2020-11-28 +512,5447.6,4.0,18.047619047619058,324.84727458843304,2020-11-28 +513,5458.0,4.0,18.23809523809525,325.5109153100417,2020-11-28 +514,5468.900000000001,4.0,17.952380952380963,326.5406085970304,2020-11-28 +515,5479.8,4.0,17.61904761904763,325.77248722777654,2020-11-28 +529,5633.200000000001,4.0,16.333333333333343,290.4535310832049,2020-11-28 +528,5622.400000000001,4.0,15.952380952380963,298.76597727021334,2020-11-28 +527,5611.0,4.0,15.952380952380963,306.0961410364679,2020-11-28 +526,5599.900000000001,4.0,16.333333333333343,312.3558790540736,2020-11-28 +525,5588.700000000001,4.0,16.66666666666668,319.6848145378806,2020-11-28 +524,5577.6,4.0,16.952380952380963,327.1616801288478,2020-11-28 +498,5292.6,4.0,17.571428571428584,324.94682143370045,2020-11-28 +523,5567.0,4.0,17.095238095238106,332.9518400343894,2020-11-28 +521,5545.1,4.0,17.00000000000001,326.0080290465196,2020-11-28 +520,5533.6,4.0,16.904761904761916,314.8755174791104,2020-11-28 +519,5523.1,4.0,17.142857142857153,307.5831928983064,2020-11-28 +518,5512.200000000001,4.0,17.2857142857143,307.12602435337,2020-11-28 +517,5501.5,4.0,17.238095238095248,312.08914428271964,2020-11-28 +516,5490.8,4.0,17.238095238095248,320.4583314116795,2020-11-28 +522,5555.5,4.0,17.00000000000001,333.620802216968,2020-11-28 +497,5280.700000000001,4.0,17.333333333333343,322.23652761955043,2020-11-28 +496,5269.900000000001,4.0,17.238095238095248,321.7320480570595,2020-11-28 +495,5259.0,4.0,17.2857142857143,324.8849284460598,2020-11-28 +476,5052.200000000001,4.0,17.66666666666668,342.593744356613,2020-11-28 +475,5041.400000000001,4.0,17.333333333333343,350.95078687424035,2020-11-28 +474,5030.400000000001,4.0,17.047619047619058,356.8362983319262,2020-11-28 +473,5019.0,4.0,16.80952380952382,359.3780233740929,2020-11-28 +472,5007.6,4.0,17.047619047619058,356.9712901901364,2020-11-28 +471,4996.400000000001,4.0,17.333333333333343,350.622556609085,2020-11-28 +477,5063.200000000001,4.0,17.952380952380963,334.37932573365794,2020-11-28 +470,4985.200000000001,4.0,17.66666666666668,342.6789898804358,2020-11-28 +468,4963.1,4.0,18.047619047619058,342.11873277230933,2020-11-28 +467,4952.6,4.0,17.66666666666668,352.2755565337949,2020-11-28 +466,4941.3,4.0,17.333333333333343,361.44590009469044,2020-11-28 +465,4929.8,4.0,16.952380952380963,363.0500432148675,2020-11-28 +464,4918.8,4.0,17.047619047619058,355.64870280317353,2020-11-28 +463,4906.7,4.0,17.2857142857143,343.19087185975616,2020-11-28 +469,4973.8,4.0,18.047619047619058,338.7782308274533,2020-11-28 +530,5643.8,4.0,16.66666666666668,286.8560096926609,2020-11-28 +478,5074.0,4.0,18.09523809523811,327.24203302197833,2020-11-28 +480,5096.1,4.0,18.000000000000014,328.9100287924038,2020-11-28 +494,5248.200000000001,4.0,17.142857142857153,325.5082644699256,2020-11-28 +493,5237.200000000001,4.0,16.904761904761916,321.63768835654037,2020-11-28 +492,5226.1,4.0,17.00000000000001,314.5479762526313,2020-11-28 +491,5215.5,4.0,17.00000000000001,307.3113044325235,2020-11-28 +490,5204.200000000001,4.0,16.904761904761916,305.1664227877865,2020-11-28 +489,5194.1,4.0,17.047619047619058,310.6174668767567,2020-11-28 +479,5085.200000000001,4.0,18.000000000000014,324.6601663509291,2020-11-28 +488,5183.400000000001,4.0,17.333333333333343,319.50086188709423,2020-11-28 +486,5161.700000000001,4.0,17.952380952380963,336.25213455874746,2020-11-28 +485,5151.1,4.0,18.09523809523811,345.1903908972621,2020-11-28 +484,5140.200000000001,4.0,18.000000000000014,352.4109166812632,2020-11-28 +483,5129.6,4.0,18.000000000000014,354.3244051730469,2020-11-28 +482,5118.200000000001,4.0,18.000000000000014,349.30490356650637,2020-11-28 +481,5107.400000000001,4.0,18.000000000000014,339.12395663213965,2020-11-28 +487,5172.700000000001,4.0,17.66666666666668,327.75813933405874,2020-11-28 +462,4896.3,4.0,17.333333333333343,332.53450595325,2020-11-28 +531,5655.0,4.0,16.85714285714287,288.89850069699037,2020-11-28 +533,5677.200000000001,4.0,17.42857142857144,305.65641701399284,2020-11-28 +570,6071.700000000001,4.0,18.000000000000014,322.3552106413527,2020-11-28 +571,6082.5,4.0,18.000000000000014,325.7909233022808,2020-11-28 +572,6093.6,4.0,18.000000000000014,324.13933337504955,2020-11-28 +573,6104.700000000001,4.0,17.90476190476192,317.4417423629698,2020-11-28 +574,6114.8,4.0,18.142857142857153,309.9003985761758,2020-11-28 +575,6124.900000000001,4.0,18.2857142857143,303.31305490927525,2020-11-28 +576,6134.5,4.0,18.333333333333346,299.5164832133561,2020-11-28 +577,6145.200000000001,4.0,18.380952380952394,300.2089441794018,2020-11-28 +578,6155.5,4.0,18.09523809523811,300.730034746857,2020-11-28 +579,6165.900000000001,4.0,17.571428571428584,301.53503079827595,2020-11-28 +580,6176.3,4.0,17.333333333333343,305.617025307048,2020-11-28 +581,6187.200000000001,4.0,17.047619047619058,310.3842014958275,2020-11-28 +582,6198.200000000001,4.0,16.80952380952382,315.1855891906326,2020-11-28 +583,6209.900000000001,4.0,17.047619047619058,319.7883985411071,2020-11-28 +584,6221.0,4.0,17.333333333333343,322.27604199897496,2020-11-28 +585,6231.900000000001,4.0,17.66666666666668,327.05267069750107,2020-11-28 +586,6243.5,4.0,17.952380952380963,335.44537899368277,2020-11-28 +600,6392.8,4.0,18.238095238095248,334.4444438044345,2020-11-28 +599,6382.200000000001,4.0,18.42857142857144,327.44963605177446,2020-11-28 +598,6371.6,4.0,18.2857142857143,321.61758694597023,2020-11-28 +597,6360.6,4.0,18.142857142857153,315.44789848009344,2020-11-28 +596,6350.1,4.0,17.90476190476192,312.6748727316443,2020-11-28 +595,6339.5,4.0,18.000000000000014,315.8834041416535,2020-11-28 +569,6061.200000000001,4.0,18.09523809523811,318.4755068809991,2020-11-28 +594,6328.6,4.0,18.000000000000014,322.05613833608896,2020-11-28 +592,6307.5,4.0,18.142857142857153,332.2004595041095,2020-11-28 +591,6296.5,4.0,18.2857142857143,334.12205447079475,2020-11-28 +590,6286.0,4.0,18.333333333333346,337.1487550117354,2020-11-28 +589,6275.3,4.0,18.2857142857143,342.742834075633,2020-11-28 +588,6264.700000000001,4.0,18.142857142857153,345.2617321449288,2020-11-28 +587,6253.8,4.0,18.000000000000014,342.4391702005728,2020-11-28 +593,6318.0,4.0,17.90476190476192,327.87805635867494,2020-11-28 +568,6049.8,4.0,17.952380952380963,315.9908325180587,2020-11-28 +567,6039.5,4.0,17.571428571428584,318.40034586546403,2020-11-28 +566,6028.3,4.0,17.47619047619049,320.6188031745445,2020-11-28 +547,5826.700000000001,4.0,17.047619047619058,277.6054454213908,2020-11-28 +546,5816.3,4.0,17.2857142857143,286.73495331459003,2020-11-28 +545,5805.900000000001,4.0,17.333333333333343,296.91254235200404,2020-11-28 +544,5795.700000000001,4.0,17.2857142857143,309.43595357541983,2020-11-28 +543,5785.0,4.0,17.142857142857153,319.4687533766512,2020-11-28 +542,5774.400000000001,4.0,16.80952380952382,321.4356291002946,2020-11-28 +548,5836.8,4.0,16.85714285714287,272.2960165427577,2020-11-28 +541,5763.5,4.0,16.952380952380963,315.1463233308669,2020-11-28 +539,5741.200000000001,4.0,18.047619047619058,305.3268032570424,2020-11-28 +538,5730.5,4.0,18.142857142857153,311.23202521951725,2020-11-28 +537,5720.8,4.0,18.09523809523811,322.2120674667384,2020-11-28 +536,5709.6,4.0,17.90476190476192,327.72322462967304,2020-11-28 +535,5698.200000000001,4.0,17.571428571428584,324.37202080526896,2020-11-28 +534,5687.8,4.0,17.523809523809533,316.5984034822435,2020-11-28 +540,5751.700000000001,4.0,17.47619047619049,307.8904724652705,2020-11-28 +532,5665.8,4.0,17.142857142857153,294.888827521867,2020-11-28 +549,5847.3,4.0,17.47619047619049,272.82266915342854,2020-11-28 +551,5868.200000000001,4.0,18.2857142857143,294.46643511519346,2020-11-28 +565,6017.5,4.0,17.238095238095248,319.30555076364067,2020-11-28 +564,6006.3,4.0,17.47619047619049,313.72960209156065,2020-11-28 +563,5995.3,4.0,17.333333333333346,307.4410593963614,2020-11-28 +562,5984.3,4.0,17.238095238095248,304.55252923910166,2020-11-28 +561,5973.0,4.0,17.190476190476204,309.0778482950741,2020-11-28 +560,5961.900000000001,4.0,17.523809523809533,310.5512905647364,2020-11-28 +550,5858.1,4.0,17.952380952380963,280.198839800444,2020-11-28 +559,5951.400000000001,4.0,17.714285714285726,307.2814749217891,2020-11-28 +557,5930.900000000001,4.0,18.000000000000014,293.24440242052697,2020-11-28 +556,5920.6,4.0,18.000000000000014,296.5399296411146,2020-11-28 +555,5910.900000000001,4.0,18.000000000000014,309.17643395913285,2020-11-28 +554,5900.3,4.0,17.90476190476192,319.4339360419204,2020-11-28 +553,5889.900000000001,4.0,18.142857142857153,321.5343773009953,2020-11-28 +1209,12548.300000000001,4.0,17.380952380952394,362.79350771077117,2020-11-28 +558,5940.700000000001,4.0,18.190476190476204,299.73962413197034,2020-11-28 +461,4885.1,4.0,17.2857142857143,331.59801376400526,2020-11-28 +460,4874.0,4.0,17.142857142857153,336.74320374107924,2020-11-28 +459,4862.8,4.0,16.80952380952382,340.5379898727557,2020-11-28 +356,3741.6000000000004,4.0,18.2857142857143,317.8823695953431,2020-11-28 +357,3751.9,4.0,18.380952380952394,319.7000713085647,2020-11-28 +358,3763.5,4.0,18.142857142857153,328.31337023606073,2020-11-28 +359,3774.4,4.0,18.000000000000014,336.6127053086642,2020-11-28 +360,3785.3,4.0,17.85714285714287,337.43644264969976,2020-11-28 +361,3796.3,4.0,17.714285714285726,331.0537991314104,2020-11-28 +362,3807.0,4.0,17.66666666666668,319.76754607137957,2020-11-28 +363,3817.3,4.0,17.61904761904763,307.5006952793783,2020-11-28 +364,3827.6000000000004,4.0,18.000000000000014,297.7688609736173,2020-11-28 +365,3838.2000000000003,4.0,18.380952380952394,293.0055051761013,2020-11-28 +366,3848.5,4.0,18.42857142857144,294.8525055540691,2020-11-28 +367,3858.7000000000003,4.0,18.142857142857153,302.5858686744307,2020-11-28 +368,3869.0,4.0,17.85714285714287,309.3835327410932,2020-11-28 +369,3880.3,4.0,17.66666666666668,311.6684001683344,2020-11-28 +370,3890.6000000000004,4.0,17.66666666666668,307.2259615960296,2020-11-28 +371,3901.1000000000004,4.0,17.428571428571438,299.5199941053482,2020-11-28 +372,3911.7000000000003,4.0,17.571428571428584,291.8010558030502,2020-11-28 +386,4062.5,4.0,17.61904761904763,280.11571701391637,2020-11-28 +385,4051.2000000000003,4.0,17.47619047619049,286.71639017800067,2020-11-28 +384,4040.4,4.0,17.047619047619058,291.89035895737555,2020-11-28 +383,4029.8,4.0,16.85714285714287,298.5885065042951,2020-11-28 +382,4018.9,4.0,16.571428571428584,309.4978595591367,2020-11-28 +381,4007.5,4.0,16.61904761904763,319.9446084647315,2020-11-28 +355,3731.2000000000003,4.0,17.952380952380963,306.81755985972717,2020-11-28 +380,3996.7000000000003,4.0,16.904761904761916,326.8575046349593,2020-11-28 +378,3974.7000000000003,4.0,17.61904761904763,311.74458098045227,2020-11-28 +377,3963.8,4.0,17.523809523809533,296.8460659607094,2020-11-28 +376,3953.2000000000003,4.0,17.571428571428584,285.94221793187575,2020-11-28 +375,3943.3,4.0,17.333333333333343,280.105366671657,2020-11-28 +374,3933.0,4.0,17.142857142857153,279.9096766994471,2020-11-28 +373,3922.2000000000003,4.0,17.333333333333343,285.13398290995406,2020-11-28 +379,3985.7000000000003,4.0,17.523809523809536,323.8841476479174,2020-11-28 +354,3720.3,4.0,17.571428571428584,259.2749821280638,2020-11-28 +353,3709.2000000000003,4.0,16.904761904761916,181.09233055890905,2020-11-28 +341,3686.0,4.0,16.00000000000001,110.59550186097164,2020-11-28 +322,3482.6000000000004,4.0,17.23809523809525,368.1653883016212,2020-11-28 +321,3471.0,4.0,17.333333333333346,362.8973362655681,2020-11-28 +320,3459.7000000000003,4.0,17.142857142857153,361.77676678367675,2020-11-28 +319,3448.2000000000003,4.0,17.09523809523811,362.54457227594673,2020-11-28 +318,3436.8,4.0,17.095238095238106,367.8124320026602,2020-11-28 +317,3425.4,4.0,17.571428571428584,369.866507980996,2020-11-28 +323,3493.5,4.0,17.714285714285726,371.00638570908495,2020-11-28 +316,3413.8,4.0,17.571428571428584,367.94764510349034,2020-11-28 +314,3392.2000000000003,4.0,18.09523809523811,370.7807924890963,2020-11-28 +313,3380.8,4.0,18.09523809523811,376.316030980567,2020-11-28 +312,3369.8,4.0,17.85714285714287,381.0190604043762,2020-11-28 +311,3358.3,4.0,17.714285714285726,380.24344610162797,2020-11-28 +310,3346.8,4.0,17.66666666666668,374.99529453500725,2020-11-28 +309,3336.2000000000003,4.0,17.714285714285726,369.07912768304413,2020-11-28 +315,3403.0,4.0,17.952380952380963,366.5778249269989,2020-11-28 +387,4071.7000000000003,4.0,17.904761904761916,271.013736536045,2020-11-28 +324,3505.5,4.0,17.571428571428584,368.7364077377414,2020-11-28 +326,3527.5,4.0,16.904761904761916,359.2186573536768,2020-11-28 +340,3663.0,4.0,16.00000000000001,222.99730818342556,2020-11-28 +339,3663.0,4.0,15.333333333333343,324.2093485368624,2020-11-28 +338,3663.0,4.0,17.571428571428584,378.28840168548226,2020-11-28 +337,3651.9,4.0,17.142857142857153,370.51007528502225,2020-11-28 +336,3640.7000000000003,4.0,17.2857142857143,333.75080992897796,2020-11-28 +335,3629.5,4.0,17.333333333333343,329.8237937542965,2020-11-28 +325,3516.2000000000003,4.0,17.333333333333343,362.92576670068036,2020-11-28 +334,3618.1000000000004,4.0,17.2857142857143,334.47928389653725,2020-11-28 +332,3595.7000000000003,4.0,17.047619047619058,343.0344136862997,2020-11-28 +331,3584.5,4.0,17.2857142857143,344.77284655820523,2020-11-28 +330,3573.4,4.0,17.428571428571438,345.8318014364245,2020-11-28 +329,3562.5,4.0,17.142857142857153,348.1570459808147,2020-11-28 +328,3551.2000000000003,4.0,16.761904761904773,351.08357171722344,2020-11-28 +327,3539.5,4.0,16.714285714285722,354.62922939667135,2020-11-28 +333,3607.4,4.0,17.047619047619058,338.81986491750604,2020-11-28 +388,4082.3,4.0,17.80952380952382,269.8560544809753,2020-11-28 +389,4093.0,4.0,17.761904761904773,280.80293866235036,2020-11-28 +390,4104.0,4.0,17.333333333333343,300.6287586208089,2020-11-28 +440,4651.900000000001,4.0,16.904761904761916,321.4152773428271,2020-11-28 +439,4640.3,4.0,17.00000000000001,314.58731040169425,2020-11-28 +438,4629.2,4.0,17.00000000000001,312.9923193051644,2020-11-28 +437,4618.0,4.0,17.00000000000001,313.252240157326,2020-11-28 +436,4606.7,4.0,17.00000000000001,318.0022587062891,2020-11-28 +435,4595.8,4.0,17.00000000000001,324.07518242268304,2020-11-28 +441,4662.900000000001,4.0,17.238095238095248,332.5971593228113,2020-11-28 +434,4585.1,4.0,16.904761904761916,326.8018340530942,2020-11-28 +432,4562.7,4.0,17.2857142857143,315.55812129288114,2020-11-28 +431,4552.1,4.0,17.333333333333343,309.80674522199115,2020-11-28 +430,4541.7,4.0,17.190476190476204,311.69762560106705,2020-11-28 +429,4530.5,4.0,17.2857142857143,318.9869993908509,2020-11-28 +428,4519.400000000001,4.0,17.095238095238106,323.8011587538089,2020-11-28 +427,4508.1,4.0,17.380952380952394,322.92598358006734,2020-11-28 +433,4574.3,4.0,17.142857142857153,322.7208696327615,2020-11-28 +426,4497.400000000001,4.0,17.714285714285726,318.0235979261939,2020-11-28 +442,4674.3,4.0,17.047619047619058,342.75425745246457,2020-11-28 +444,4698.400000000001,4.0,17.2857142857143,341.85918654361353,2020-11-28 +458,4851.7,4.0,17.047619047619058,337.836499165374,2020-11-28 +457,4840.0,4.0,17.42857142857144,329.16172900203617,2020-11-28 +456,4829.2,4.0,17.61904761904763,318.78727437689,2020-11-28 +455,4818.3,4.0,17.523809523809533,316.6027883552886,2020-11-28 +454,4807.7,4.0,17.47619047619049,324.03651396625946,2020-11-28 +453,4796.1,4.0,17.380952380952394,334.15347765709066,2020-11-28 +443,4685.8,4.0,17.09523809523811,346.35000605551807,2020-11-28 +452,4785.400000000001,4.0,17.571428571428584,340.758277446154,2020-11-28 +450,4763.6,4.0,18.09523809523811,340.5525952109979,2020-11-28 +449,4752.3,4.0,18.000000000000014,333.50982860622776,2020-11-28 +448,4741.7,4.0,18.000000000000014,326.44645319949996,2020-11-28 +447,4730.400000000001,4.0,18.190476190476204,320.6145166078679,2020-11-28 +446,4719.5,4.0,17.714285714285726,320.0119328849737,2020-11-28 +445,4708.8,4.0,17.523809523809533,328.59704195313304,2020-11-28 +451,4774.2,4.0,17.952380952380963,343.00416232299347,2020-11-28 +307,3313.6000000000004,4.0,18.09523809523811,367.98362425468537,2020-11-28 +425,4486.5,4.0,17.66666666666668,309.2870038648946,2020-11-28 +423,4464.8,4.0,17.714285714285726,303.6634053824944,2020-11-28 +404,4256.5,4.0,17.85714285714287,316.1691634530016,2020-11-28 +403,4246.400000000001,4.0,17.80952380952382,321.7785856528002,2020-11-28 +402,4235.7,4.0,17.61904761904763,327.38726908238857,2020-11-28 +401,4224.8,4.0,17.285714285714295,329.0928927691431,2020-11-28 +400,4213.400000000001,4.0,17.238095238095248,326.26695165626256,2020-11-28 +399,4202.8,4.0,17.47619047619049,319.91648645555824,2020-11-28 +405,4267.5,4.0,18.09523809523811,313.7700052925567,2020-11-28 +398,4191.7,4.0,17.66666666666668,315.5322791003564,2020-11-28 +396,4170.400000000001,4.0,17.761904761904773,327.2450112577965,2020-11-28 +395,4159.8,4.0,17.333333333333343,338.6099407360897,2020-11-28 +394,4148.6,4.0,17.047619047619058,346.48389417187866,2020-11-28 +393,4137.3,4.0,16.904761904761916,348.2057888646349,2020-11-28 +392,4126.3,4.0,16.904761904761916,340.6191399479118,2020-11-28 +391,4114.7,4.0,17.047619047619058,322.5094384346003,2020-11-28 +397,4181.3,4.0,17.904761904761916,317.88067048895357,2020-11-28 +424,4475.400000000001,4.0,17.66666666666668,303.6855775138888,2020-11-28 +406,4278.7,4.0,18.000000000000014,314.383471163184,2020-11-28 +408,4300.2,4.0,18.09523809523811,322.54501357021667,2020-11-28 +422,4453.900000000001,4.0,17.380952380952394,306.85429977673334,2020-11-28 +421,4443.5,4.0,17.190476190476204,316.23224113534326,2020-11-28 +420,4431.900000000001,4.0,17.142857142857153,325.4581793806835,2020-11-28 +419,4420.8,4.0,16.80952380952382,329.0903989025862,2020-11-28 +418,4409.5,4.0,17.142857142857153,326.9084874281273,2020-11-28 +417,4397.7,4.0,17.2857142857143,319.7722394731954,2020-11-28 +407,4289.6,4.0,18.000000000000014,317.03428744674375,2020-11-28 +416,4387.1,4.0,17.333333333333343,310.2888773444096,2020-11-28 +414,4365.6,4.0,17.142857142857153,307.3983286380145,2020-11-28 +413,4354.2,4.0,16.80952380952382,312.71019652414543,2020-11-28 +412,4343.3,4.0,17.047619047619058,321.2535672156454,2020-11-28 +411,4332.5,4.0,17.333333333333343,327.91309240041517,2020-11-28 +410,4321.3,4.0,17.66666666666668,329.4530207206327,2020-11-28 +409,4310.7,4.0,17.952380952380963,327.6838255291184,2020-11-28 +415,4376.7,4.0,17.2857142857143,306.944231243217,2020-11-28 +1210,12559.900000000001,4.0,17.238095238095248,370.57927236084333,2020-11-28 +1262,13105.7,4.0,17.047619047619058,326.0639796446433,2020-11-28 +1212,12582.2,4.0,17.66666666666668,355.68482951637384,2020-11-28 +1327,13697.900000000001,4.0,17.380952380952394,318.7064962724278,2020-11-28 +1326,13687.2,4.0,17.2857142857143,302.3932074980082,2020-11-28 +1325,13677.300000000001,4.0,17.047619047619058,258.70154439450147,2020-11-28 +1324,13666.0,4.0,15.952380952380963,186.26717126229443,2020-11-28 +1310,13589.900000000001,4.0,16.66666666666668,188.60085846607964,2020-11-28 +1309,13589.900000000001,4.0,15.333333333333343,274.9507572405393,2020-11-28 +1308,13589.900000000001,4.0,17.571428571428584,328.9764979937597,2020-11-28 +1307,13589.900000000001,4.0,17.142857142857153,335.1637760509743,2020-11-28 +1306,13579.400000000001,4.0,17.190476190476204,319.6080556088773,2020-11-28 +1305,13568.0,4.0,17.380952380952394,331.39004373015223,2020-11-28 +1304,13557.5,4.0,17.61904761904763,345.00053949382914,2020-11-28 +1303,13546.400000000001,4.0,17.80952380952382,346.9276819134476,2020-11-28 +1302,13535.400000000001,4.0,17.85714285714287,341.19899259950864,2020-11-28 +1301,13524.300000000001,4.0,18.09523809523811,328.5903580678446,2020-11-28 +1300,13513.2,4.0,18.000000000000014,316.0125150916126,2020-11-28 +1299,13502.5,4.0,18.09523809523811,308.81702803013934,2020-11-28 +1298,13492.2,4.0,17.85714285714287,308.07416227530894,2020-11-28 +1284,13343.7,4.0,16.80952380952382,313.93764513629196,2020-11-28 +1285,13354.2,4.0,16.952380952380963,305.69773959149916,2020-11-28 +1286,13364.900000000001,4.0,17.47619047619049,296.61638972655817,2020-11-28 +1287,13375.900000000001,4.0,17.952380952380963,291.6145036831048,2020-11-28 +1288,13385.6,4.0,18.2857142857143,294.63186212783273,2020-11-28 +1289,13396.5,4.0,18.380952380952394,305.5958781326548,2020-11-28 +1328,13709.0,4.0,17.142857142857153,323.79715970807564,2020-11-28 +1290,13406.800000000001,4.0,18.142857142857153,318.6376146320304,2020-11-28 +1292,13429.1,4.0,18.000000000000014,329.2608365044419,2020-11-28 +1293,13439.400000000001,4.0,18.09523809523811,324.2115940634766,2020-11-28 +1294,13449.900000000001,4.0,17.85714285714287,317.5682596710276,2020-11-28 +1295,13460.7,4.0,17.714285714285726,314.24574043441964,2020-11-28 +1296,13471.0,4.0,17.66666666666668,312.7286943373115,2020-11-28 +1297,13481.800000000001,4.0,17.714285714285726,309.76517081254497,2020-11-28 +1291,13418.2,4.0,17.90476190476192,327.50700502555827,2020-11-28 +1283,13332.6,4.0,17.047619047619058,318.855275447026,2020-11-28 +1329,13720.800000000001,4.0,16.904761904761916,329.2152770575633,2020-11-28 +1331,13742.5,4.0,17.095238095238106,334.7828492299831,2020-11-28 +1211,12571.400000000001,4.0,17.1904761904762,366.4663884191956,2020-11-28 +1378,14270.2,4.0,21.666666666666682,118.45658558688828,2020-11-28 +1377,14270.2,4.0,19.428571428571438,184.8581213731431,2020-11-28 +1376,14270.2,4.0,16.047619047619058,237.12482475058783,2020-11-28 +1375,14270.2,4.0,16.095238095238106,265.83737520511306,2020-11-28 +1371,14221.0,4.0,15.523809523809533,340.67603684061976,2020-11-28 +1370,14210.400000000001,4.0,17.142857142857153,335.25887650828616,2020-11-28 +1369,14197.900000000001,4.0,16.47619047619049,331.1720999267409,2020-11-28 +1367,14175.300000000001,4.0,16.142857142857153,358.1729869950109,2020-11-28 +1366,14163.6,4.0,15.80952380952382,364.07352408972315,2020-11-28 +1365,14150.900000000001,4.0,16.142857142857153,358.6864571875328,2020-11-28 +1364,14139.300000000001,4.0,16.190476190476204,342.8879877737195,2020-11-28 +1363,14127.400000000001,4.0,16.571428571428584,326.07492366281906,2020-11-28 +1362,14115.800000000001,4.0,16.523809523809533,317.9475353877222,2020-11-28 +1361,14104.0,4.0,16.047619047619058,314.23698652515765,2020-11-28 +1360,14092.6,4.0,15.666666666666679,317.0796647698402,2020-11-28 +1359,14080.7,4.0,15.476190476190485,318.16211661805386,2020-11-28 +1332,13753.7,4.0,17.047619047619058,335.7250597944129,2020-11-28 +1333,13765.400000000001,4.0,16.61904761904763,334.66130425176834,2020-11-28 +1334,13777.400000000001,4.0,15.904761904761916,331.2225487740288,2020-11-28 +1335,13788.900000000001,4.0,15.523809523809533,323.4600548729054,2020-11-28 +1336,13800.800000000001,4.0,15.238095238095248,315.1314892224285,2020-11-28 +1337,13812.5,4.0,15.238095238095248,311.72255826448065,2020-11-28 +1330,13732.0,4.0,17.00000000000001,333.3502814372331,2020-11-28 +1338,13825.300000000001,4.0,15.1904761904762,315.075804874393,2020-11-28 +1340,13849.800000000001,4.0,15.285714285714295,322.52720957434724,2020-11-28 +1341,13861.5,4.0,15.285714285714299,322.3846828980591,2020-11-28 +1350,13971.0,4.0,15.1904761904762,321.70471847173496,2020-11-28 +1356,14044.300000000001,4.0,15.238095238095248,314.90014525484764,2020-11-28 +1357,14056.5,4.0,15.285714285714295,311.9977547431414,2020-11-28 +1358,14068.1,4.0,15.142857142857153,313.423305418038,2020-11-28 +1339,13837.7,4.0,15.285714285714295,318.60334592744533,2020-11-28 +1282,13320.800000000001,4.0,17.42857142857144,317.1582967810672,2020-11-28 +1368,14186.900000000001,4.0,16.190476190476204,341.79154542859305,2020-11-28 +1280,13299.800000000001,4.0,17.714285714285726,304.9866896954959,2020-11-28 +1243,12905.300000000001,4.0,19.09523809523811,362.88545681132473,2020-11-28 +1242,12895.1,4.0,19.000000000000014,355.88459688321643,2020-11-28 +1241,12884.7,4.0,18.90476190476192,338.5632689348348,2020-11-28 +1240,12874.300000000001,4.0,19.142857142857157,318.7037068964281,2020-11-28 +1239,12864.300000000001,4.0,19.380952380952394,305.0398505243186,2020-11-28 +1238,12853.800000000001,4.0,19.2857142857143,299.286955080585,2020-11-28 +1237,12844.0,4.0,18.85714285714287,301.84233200006696,2020-11-28 +1236,12833.900000000001,4.0,18.61904761904763,306.17519731522793,2020-11-28 +1235,12823.6,4.0,18.142857142857153,307.69844202302386,2020-11-28 +1234,12813.300000000001,4.0,18.380952380952394,305.3199193008095,2020-11-28 +1233,12802.800000000001,4.0,18.47619047619049,301.96245554006885,2020-11-28 +1232,12792.6,4.0,18.523809523809536,296.13829125680616,2020-11-28 +1231,12782.6,4.0,18.523809523809536,290.57017749344965,2020-11-28 +1230,12772.7,4.0,18.80952380952382,285.3251718876943,2020-11-28 +1229,12763.5,4.0,18.952380952380963,283.8321035051588,2020-11-28 +1228,12753.6,4.0,18.952380952380963,291.08317155547513,2020-11-28 +1227,12743.5,4.0,18.80952380952382,308.3847924400717,2020-11-28 +1213,12593.5,4.0,18.238095238095248,341.50198588004935,2020-11-28 +1281,13310.800000000001,4.0,17.61904761904763,310.7411487688407,2020-11-28 +1214,12603.5,4.0,18.380952380952394,330.4737619701188,2020-11-28 +1215,12614.800000000001,4.0,18.761904761904773,329.1748119102533,2020-11-28 +1216,12625.6,4.0,18.761904761904773,334.5961056264608,2020-11-28 +1217,12636.6,4.0,18.714285714285726,338.5475247830751,2020-11-28 +1244,12916.6,4.0,18.952380952380963,358.251361232098,2020-11-28 +1219,12657.900000000001,4.0,19.190476190476204,345.6816124975894,2020-11-28 +1221,12678.900000000001,4.0,18.80952380952382,355.993081806707,2020-11-28 +1222,12689.7,4.0,18.523809523809536,365.7985469430821,2020-11-28 +1223,12701.300000000001,4.0,18.523809523809536,370.39408414059307,2020-11-28 +1224,12712.7,4.0,18.380952380952394,368.4564448538429,2020-11-28 +1225,12723.2,4.0,18.523809523809536,354.5112888300566,2020-11-28 +1226,12733.7,4.0,18.523809523809536,332.20481451213504,2020-11-28 +1220,12668.300000000001,4.0,18.85714285714287,349.0790129161319,2020-11-28 +1245,12927.0,4.0,18.66666666666668,345.77405119271555,2020-11-28 +1218,12647.2,4.0,18.85714285714287,343.29606313147576,2020-11-28 +1247,12948.1,4.0,17.952380952380963,312.8800295037166,2020-11-28 +1246,12937.5,4.0,18.333333333333343,329.55353262150606,2020-11-28 +1277,13267.6,4.0,16.142857142857153,309.708740384876,2020-11-28 +1276,13256.7,4.0,16.1904761904762,315.91736148341045,2020-11-28 +1274,13233.7,4.0,16.47619047619049,305.6494676770484,2020-11-28 +1279,13289.6,4.0,17.380952380952394,302.63774090164037,2020-11-28 +1273,13222.6,4.0,16.66666666666668,290.43816040399304,2020-11-28 +1272,13211.300000000001,4.0,16.333333333333343,272.8961201375687,2020-11-28 +1271,13200.400000000001,4.0,15.904761904761916,264.3959202751503,2020-11-28 +1270,13189.6,4.0,15.714285714285722,264.26186472206734,2020-11-28 +1269,13178.800000000001,4.0,15.666666666666679,266.0879477295149,2020-11-28 +1268,13168.300000000001,4.0,16.190476190476204,266.2263934144204,2020-11-28 +1267,13157.6,4.0,16.761904761904773,263.17259496210477,2020-11-28 +1266,13147.1,4.0,16.952380952380963,260.15755755191594,2020-11-28 +1265,13136.5,4.0,17.095238095238106,266.02110367489973,2020-11-28 +1264,13126.300000000001,4.0,17.00000000000001,283.04632638249166,2020-11-28 +1275,13244.6,4.0,16.095238095238106,314.71263676369415,2020-11-28 +1278,13278.300000000001,4.0,16.714285714285726,302.88785632991875,2020-11-28 +1263,13116.2,4.0,16.904761904761916,305.5359326405989,2020-11-28 +1249,12968.800000000001,4.0,18.333333333333343,288.60965968308176,2020-11-28 +1250,12979.1,4.0,18.761904761904773,286.26167269978265,2020-11-28 +1251,12988.800000000001,4.0,18.809523809523824,293.5476294529532,2020-11-28 +1252,12999.400000000001,4.0,18.90476190476192,305.6049106318911,2020-11-28 +1253,13010.0,4.0,18.523809523809536,315.5776338557618,2020-11-28 +1254,13020.6,4.0,18.523809523809536,319.15530909839765,2020-11-28 +1248,12958.7,4.0,17.952380952380963,297.9744522113703,2020-11-28 +1255,13031.1,4.0,18.47619047619049,320.4009499006288,2020-11-28 +1256,13041.6,4.0,18.47619047619049,320.6206829282314,2020-11-28 +1257,13051.6,4.0,18.190476190476204,326.0836756608612,2020-11-28 +1258,13062.1,4.0,18.238095238095248,333.77238264827383,2020-11-28 +1259,13073.5,4.0,17.85714285714287,340.7866449137011,2020-11-28 +1260,13083.900000000001,4.0,17.66666666666668,343.54893834904107,2020-11-28 +1261,13094.900000000001,4.0,17.333333333333343,339.9902833334161,2020-11-28 +403,3965.1000000000004,4.0,19.142857142857157,387.7463188617138,2020-11-29 +402,3953.6000000000004,4.0,19.190476190476204,389.0876377214761,2020-11-29 +401,3943.1000000000004,4.0,19.380952380952394,386.418346812973,2020-11-29 +400,3932.3,4.0,19.619047619047635,382.3151266246662,2020-11-29 +397,3899.6000000000004,4.0,19.809523809523824,366.0377610288131,2020-11-29 +398,3910.5,4.0,19.71428571428573,368.46691116094854,2020-11-29 +393,3856.5,4.0,19.333333333333346,365.1304565971684,2020-11-29 +396,3889.1000000000004,4.0,19.761904761904773,366.33627189829576,2020-11-29 +395,3878.4,4.0,19.66666666666668,365.72485516078893,2020-11-29 +404,3975.9,4.0,18.90476190476192,385.09074818853264,2020-11-29 +399,3921.5,4.0,19.90476190476192,375.0459197407416,2020-11-29 +394,3867.3,4.0,19.523809523809536,366.2053628756184,2020-11-29 +419,4141.400000000001,4.0,19.333333333333346,406.31314391849907,2020-11-29 +406,3998.1000000000004,4.0,19.000000000000014,386.07868457202625,2020-11-29 +407,4009.7000000000003,4.0,18.90476190476192,390.3687546772047,2020-11-29 +408,4020.7000000000003,4.0,19.047619047619058,398.66911447794087,2020-11-29 +409,4031.6000000000004,4.0,19.333333333333346,406.76771447325643,2020-11-29 +410,4042.4,4.0,19.66666666666668,412.73062497471307,2020-11-29 +411,4053.6000000000004,4.0,19.952380952380967,418.2991087571504,2020-11-29 +413,4075.7000000000003,4.0,20.000000000000014,420.52139357581365,2020-11-29 +414,4086.7000000000003,4.0,20.09523809523811,420.79372835425016,2020-11-29 +415,4097.900000000001,4.0,19.857142857142872,420.47356971710485,2020-11-29 +416,4108.900000000001,4.0,19.809523809523824,421.3652331148977,2020-11-29 +417,4119.8,4.0,19.619047619047635,421.7649170083414,2020-11-29 +392,3845.2000000000003,4.0,19.09523809523811,364.27853907122085,2020-11-29 +418,4130.7,4.0,19.2857142857143,416.0576784586549,2020-11-29 +405,3986.7000000000003,4.0,19.000000000000014,384.31155504511594,2020-11-29 +412,4064.8,4.0,20.09523809523811,420.15913029357114,2020-11-29 +377,3679.0,4.0,18.09523809523811,403.99096757292267,2020-11-29 +390,3823.7000000000003,4.0,19.523809523809536,363.97638696405284,2020-11-29 +362,3503.4,4.0,17.00000000000001,390.31261702914765,2020-11-29 +363,3515.3,4.0,17.00000000000001,395.0227746235711,2020-11-29 +420,4152.0,4.0,19.333333333333346,391.98154430062493,2020-11-29 +364,3526.8,4.0,16.904761904761916,394.2274261737125,2020-11-29 +365,3539.0,4.0,17.047619047619058,390.0713206224691,2020-11-29 +366,3550.9,4.0,17.42857142857144,384.6340927545566,2020-11-29 +367,3562.2000000000003,4.0,17.523809523809533,376.88926911656637,2020-11-29 +368,3573.2000000000003,4.0,17.66666666666668,372.59127623987223,2020-11-29 +369,3585.2000000000003,4.0,17.761904761904773,375.93907705296704,2020-11-29 +370,3597.1000000000004,4.0,17.80952380952382,381.41022808303694,2020-11-29 +371,3608.5,4.0,17.714285714285726,390.42551654784364,2020-11-29 +372,3620.4,4.0,17.80952380952382,398.73028608501727,2020-11-29 +373,3632.5,4.0,17.66666666666668,400.7246437260468,2020-11-29 +391,3834.5,4.0,19.333333333333346,365.2730231792185,2020-11-29 +374,3644.0,4.0,17.714285714285726,396.60960793827076,2020-11-29 +376,3667.5,4.0,18.09523809523811,392.46229829732283,2020-11-29 +378,3690.3,4.0,17.952380952380963,421.51594079779204,2020-11-29 +379,3702.7000000000003,4.0,17.571428571428584,434.8279424428148,2020-11-29 +380,3714.5,4.0,17.380952380952394,432.2099299131181,2020-11-29 +381,3726.2000000000003,4.0,17.2857142857143,413.2575059565737,2020-11-29 +382,3737.5,4.0,17.61904761904763,386.98133617833753,2020-11-29 +383,3748.9,4.0,18.190476190476204,363.6633085802316,2020-11-29 +384,3760.0,4.0,18.80952380952382,348.6866237290765,2020-11-29 +385,3770.6000000000004,4.0,19.380952380952394,344.38646529421817,2020-11-29 +386,3781.0,4.0,19.619047619047635,344.82753264705684,2020-11-29 +387,3791.7000000000003,4.0,19.66666666666668,349.23759902688914,2020-11-29 +388,3802.6000000000004,4.0,19.857142857142872,355.7822147429306,2020-11-29 +389,3813.1000000000004,4.0,19.66666666666668,360.58035825136926,2020-11-29 +375,3655.9,4.0,17.85714285714287,392.24850269775266,2020-11-29 +421,4162.3,4.0,19.190476190476204,377.5407306899132,2020-11-29 +454,4504.8,4.0,21.000000000000014,399.9883306624233,2020-11-29 +423,4183.400000000001,4.0,20.142857142857157,372.04026648951736,2020-11-29 +457,4536.6,4.0,20.71428571428573,377.66561347996156,2020-11-29 +458,4547.0,4.0,20.571428571428584,370.2388543052072,2020-11-29 +459,4557.6,4.0,20.761904761904773,358.5751329818132,2020-11-29 +460,4567.7,4.0,21.190476190476204,345.3325994648705,2020-11-29 +461,4577.0,4.0,21.857142857142872,332.8943707956697,2020-11-29 +462,4586.8,4.0,21.90476190476192,326.7712199515333,2020-11-29 +463,4596.7,4.0,21.761904761904777,331.4750057488494,2020-11-29 +464,4606.8,4.0,21.52380952380954,347.0876919840163,2020-11-29 +465,4617.1,4.0,20.952380952380967,367.3486560244361,2020-11-29 +466,4627.5,4.0,20.23809523809525,386.8297076982775,2020-11-29 +467,4639.1,4.0,19.66666666666668,398.6448596770141,2020-11-29 +468,4649.900000000001,4.0,19.09523809523811,400.5978850485558,2020-11-29 +469,4661.3,4.0,18.80952380952382,395.2847455838088,2020-11-29 +470,4672.0,4.0,18.90476190476192,387.49288686652017,2020-11-29 +471,4683.5,4.0,19.142857142857157,380.5918609788217,2020-11-29 +472,4694.1,4.0,19.2857142857143,375.9465571780978,2020-11-29 +473,4704.8,4.0,19.333333333333346,372.5797749812301,2020-11-29 +474,4716.0,4.0,19.2857142857143,372.4312058528817,2020-11-29 +475,4727.0,4.0,19.142857142857157,374.42957776688684,2020-11-29 +476,4737.900000000001,4.0,18.90476190476192,375.26804401750775,2020-11-29 +477,4748.5,4.0,18.90476190476192,376.11140795510096,2020-11-29 +478,4759.3,4.0,19.142857142857157,376.3033052730572,2020-11-29 +479,4770.7,4.0,19.190476190476204,376.82062261932606,2020-11-29 +480,4781.5,4.0,19.47619047619049,380.42289967973056,2020-11-29 +481,4792.5,4.0,19.571428571428584,389.56852312133594,2020-11-29 +361,3491.4,4.0,17.00000000000001,386.36632464386025,2020-11-29 +482,4803.400000000001,4.0,19.47619047619049,395.98052501083185,2020-11-29 +456,4526.1,4.0,20.85714285714287,384.4656803473291,2020-11-29 +455,4515.7,4.0,21.09523809523811,392.32585395509363,2020-11-29 +453,4494.2,4.0,21.000000000000014,403.1722188568199,2020-11-29 +452,4483.6,4.0,21.000000000000014,399.68870587780134,2020-11-29 +424,4194.400000000001,4.0,20.523809523809536,376.96830148108256,2020-11-29 +425,4204.900000000001,4.0,20.952380952380967,381.99957891351664,2020-11-29 +426,4215.3,4.0,21.238095238095255,381.8252430596878,2020-11-29 +427,4225.6,4.0,21.2857142857143,379.7898417637123,2020-11-29 +428,4236.400000000001,4.0,21.33333333333335,383.2262315089066,2020-11-29 +429,4247.0,4.0,21.2857142857143,394.07980930373355,2020-11-29 +430,4257.5,4.0,21.142857142857157,403.11108356650993,2020-11-29 +431,4268.0,4.0,20.90476190476192,406.3621254738572,2020-11-29 +432,4278.3,4.0,21.000000000000014,402.67807488909443,2020-11-29 +433,4288.7,4.0,20.90476190476192,393.54462014869716,2020-11-29 +434,4299.1,4.0,21.04761904761906,386.27748644669737,2020-11-29 +435,4309.400000000001,4.0,21.428571428571445,385.259074507485,2020-11-29 +436,4319.1,4.0,21.619047619047635,385.7617025042408,2020-11-29 +422,4172.7,4.0,19.66666666666668,370.8323267522572,2020-11-29 +437,4328.8,4.0,21.619047619047635,388.4455504615857,2020-11-29 +439,4349.900000000001,4.0,21.04761904761906,384.18675988882507,2020-11-29 +440,4359.900000000001,4.0,20.90476190476192,373.5035815379845,2020-11-29 +441,4370.5,4.0,21.000000000000014,364.27034783303293,2020-11-29 +442,4380.2,4.0,21.000000000000014,360.0085117055495,2020-11-29 +443,4390.5,4.0,21.000000000000014,363.90027465128355,2020-11-29 +444,4400.8,4.0,21.09523809523811,370.9310046015914,2020-11-29 +445,4411.1,4.0,20.85714285714287,373.426579855931,2020-11-29 +446,4421.8,4.0,20.71428571428573,371.23783967354905,2020-11-29 +447,4432.0,4.0,20.66666666666668,367.9807303703276,2020-11-29 +448,4442.400000000001,4.0,20.71428571428573,365.8580774295766,2020-11-29 +449,4453.0,4.0,20.85714285714287,369.65550086193724,2020-11-29 +450,4463.0,4.0,21.09523809523811,379.0716182886293,2020-11-29 +451,4473.0,4.0,21.000000000000014,390.32206593170235,2020-11-29 +438,4339.6,4.0,21.428571428571445,390.17896384762685,2020-11-29 +360,3479.4,4.0,17.00000000000001,384.1068904742821,2020-11-29 +290,2716.1000000000004,4.0,21.000000000000014,403.8523590110907,2020-11-29 +358,3455.5,4.0,17.00000000000001,391.9424666260645,2020-11-29 +266,2462.7000000000003,4.0,19.000000000000014,392.7253042902147,2020-11-29 +267,2474.1000000000004,4.0,19.000000000000014,386.7140940031319,2020-11-29 +268,2485.4,4.0,19.000000000000014,375.88523705339884,2020-11-29 +269,2495.4,4.0,19.000000000000014,363.8605749240659,2020-11-29 +270,2506.7000000000003,4.0,18.80952380952382,356.1750127587118,2020-11-29 +271,2517.6000000000004,4.0,19.09523809523811,358.3688984670576,2020-11-29 +272,2528.4,4.0,19.66666666666668,368.3309650057052,2020-11-29 +273,2539.2000000000003,4.0,20.333333333333346,375.08992217472684,2020-11-29 +274,2549.2000000000003,4.0,20.90476190476192,376.806852896662,2020-11-29 +275,2559.5,4.0,21.2857142857143,372.13582810991153,2020-11-29 +276,2570.3,4.0,20.85714285714287,366.49976088963984,2020-11-29 +277,2580.5,4.0,20.71428571428573,366.67292494662195,2020-11-29 +278,2591.5,4.0,20.571428571428584,375.21382281906835,2020-11-29 +279,2601.8,4.0,20.761904761904773,383.522575051159,2020-11-29 +280,2612.3,4.0,21.190476190476204,389.84501876026826,2020-11-29 +281,2622.5,4.0,21.952380952380967,390.3512404316367,2020-11-29 +282,2632.9,4.0,21.761904761904777,386.912127920537,2020-11-29 +283,2643.3,4.0,21.47619047619049,383.4235025007471,2020-11-29 +284,2653.6000000000004,4.0,21.000000000000014,384.5218190917049,2020-11-29 +285,2664.0,4.0,20.761904761904773,387.0553177899717,2020-11-29 +286,2675.0,4.0,20.761904761904773,392.6361321334382,2020-11-29 +287,2684.7000000000003,4.0,21.09523809523811,399.4055894607571,2020-11-29 +288,2695.1000000000004,4.0,21.000000000000014,405.1502218187894,2020-11-29 +289,2705.3,4.0,21.000000000000014,407.7392352226108,2020-11-29 +483,4814.3,4.0,19.000000000000014,394.64670446278376,2020-11-29 +291,2726.4,4.0,21.000000000000014,393.6191703552642,2020-11-29 +292,2736.6000000000004,4.0,21.09523809523811,380.05695773048853,2020-11-29 +265,2452.0,4.0,19.000000000000014,392.89487703235903,2020-11-29 +293,2747.2000000000003,4.0,20.761904761904773,367.7516573794294,2020-11-29 +264,2440.5,4.0,19.000000000000014,391.4882021305324,2020-11-29 +262,2418.2000000000003,4.0,19.000000000000014,395.407815797789,2020-11-29 +235,2118.4,4.0,19.047619047619058,353.72692780506327,2020-11-29 +236,2129.7000000000003,4.0,19.09523809523811,356.726339528104,2020-11-29 +237,2141.1,4.0,19.000000000000014,361.879419531394,2020-11-29 +238,2152.5,4.0,18.90476190476192,367.0260003524442,2020-11-29 +239,2163.2000000000003,4.0,19.142857142857157,372.8279916944395,2020-11-29 +240,2174.7000000000003,4.0,19.2857142857143,378.831218888128,2020-11-29 +241,2185.7000000000003,4.0,19.333333333333346,385.07066800015195,2020-11-29 +242,2196.8,4.0,19.2857142857143,392.2950831012895,2020-11-29 +243,2207.6,4.0,19.142857142857157,397.20084304896704,2020-11-29 +244,2218.3,4.0,18.90476190476192,401.8721408737927,2020-11-29 +245,2229.2000000000003,4.0,19.000000000000014,409.7147801952316,2020-11-29 +246,2240.6,4.0,19.000000000000014,417.7065170663759,2020-11-29 +247,2251.9,4.0,19.000000000000014,420.88802233982494,2020-11-29 +248,2263.9,4.0,19.000000000000014,419.7258091977752,2020-11-29 +249,2274.7000000000003,4.0,19.000000000000014,414.69465743107025,2020-11-29 +250,2286.2000000000003,4.0,19.000000000000014,411.07489124200384,2020-11-29 +251,2297.1,4.0,19.000000000000014,410.13590322606564,2020-11-29 +252,2307.9,4.0,18.90476190476192,409.008848467372,2020-11-29 +253,2319.0,4.0,19.142857142857157,403.6445870619867,2020-11-29 +254,2329.6,4.0,19.2857142857143,396.7184472517893,2020-11-29 +255,2340.3,4.0,19.333333333333346,392.9933904562089,2020-11-29 +256,2351.1,4.0,19.2857142857143,398.31733428006225,2020-11-29 +257,2362.6,4.0,19.142857142857157,408.5116841587618,2020-11-29 +258,2373.4,4.0,18.90476190476192,417.73322856923505,2020-11-29 +259,2384.7000000000003,4.0,19.000000000000014,419.17154452592155,2020-11-29 +260,2396.3,4.0,19.000000000000014,412.8918347004967,2020-11-29 +261,2407.2000000000003,4.0,19.000000000000014,403.08466296728466,2020-11-29 +263,2429.6,4.0,19.000000000000014,391.570653063034,2020-11-29 +294,2757.3,4.0,20.85714285714287,360.02255140416753,2020-11-29 +295,2767.3,4.0,20.952380952380967,357.22959552366194,2020-11-29 +296,2777.3,4.0,21.04761904761906,354.9804105233812,2020-11-29 +331,3147.6000000000004,4.0,18.66666666666668,360.11009633040965,2020-11-29 +332,3158.8,4.0,18.714285714285726,371.64350164645833,2020-11-29 +333,3170.6000000000004,4.0,18.85714285714287,375.96328710776925,2020-11-29 +334,3181.3,4.0,19.09523809523811,372.01520705015116,2020-11-29 +335,3192.6000000000004,4.0,19.000000000000014,364.76055806689897,2020-11-29 +336,3203.8,4.0,19.000000000000014,359.71927392434657,2020-11-29 +337,3214.3,4.0,19.000000000000014,359.88970801677107,2020-11-29 +338,3225.7000000000003,4.0,19.000000000000014,364.17154386952086,2020-11-29 +339,3236.8,4.0,19.000000000000014,373.588417869469,2020-11-29 +340,3247.6000000000004,4.0,19.09523809523811,385.2559772163001,2020-11-29 +341,3258.6000000000004,4.0,18.85714285714287,395.65842250115475,2020-11-29 +342,3269.8,4.0,18.714285714285726,402.42505975388235,2020-11-29 +343,3281.9,4.0,18.66666666666668,403.865520218067,2020-11-29 +344,3293.2000000000003,4.0,18.714285714285726,396.9218084547378,2020-11-29 +345,3304.5,4.0,18.85714285714287,384.75126962326885,2020-11-29 +346,3314.9,4.0,19.09523809523811,372.5911364084519,2020-11-29 +347,3325.4,4.0,19.190476190476204,365.76457992461917,2020-11-29 +348,3336.8,4.0,18.90476190476192,370.40500196335154,2020-11-29 +349,3348.0,4.0,18.333333333333346,383.83265399803497,2020-11-29 +350,3360.0,4.0,17.66666666666668,395.55278146538217,2020-11-29 +351,3372.0,4.0,17.095238095238106,397.81107130555904,2020-11-29 +352,3384.3,4.0,16.80952380952382,392.0571789570537,2020-11-29 +353,3395.5,4.0,17.00000000000001,384.2017598800644,2020-11-29 +354,3408.3,4.0,17.00000000000001,384.11009422049824,2020-11-29 +355,3420.2000000000003,4.0,17.00000000000001,391.00022934245527,2020-11-29 +356,3431.9,4.0,17.00000000000001,397.0377846762474,2020-11-29 +357,3444.2000000000003,4.0,17.00000000000001,397.32721365640947,2020-11-29 +330,3136.3,4.0,18.714285714285726,347.108996714045,2020-11-29 +329,3125.9,4.0,18.952380952380963,340.993039497832,2020-11-29 +328,3115.1000000000004,4.0,18.952380952380963,347.2937192552221,2020-11-29 +327,3104.4,4.0,18.714285714285726,361.89829221671573,2020-11-29 +297,2787.3,4.0,21.142857142857157,357.27254725585107,2020-11-29 +298,2797.1000000000004,4.0,21.33333333333335,360.6322457977776,2020-11-29 +299,2807.1000000000004,4.0,20.761904761904773,368.8005070362145,2020-11-29 +300,2817.3,4.0,20.809523809523824,380.2581023041435,2020-11-29 +301,2827.5,4.0,20.428571428571445,390.3143020383583,2020-11-29 +302,2838.2000000000003,4.0,20.571428571428584,391.3986771157555,2020-11-29 +303,2848.4,4.0,20.809523809523824,386.2029835324047,2020-11-29 +304,2858.2000000000003,4.0,21.23809523809525,377.7530629615734,2020-11-29 +305,2867.5,4.0,21.09523809523811,377.89818806648225,2020-11-29 +306,2877.9,4.0,20.809523809523824,382.930175037875,2020-11-29 +307,2888.6000000000004,4.0,20.47619047619049,384.68553552129254,2020-11-29 +308,2899.3,4.0,20.47619047619049,366.2380183954316,2020-11-29 +309,2908.6000000000004,4.0,19.619047619047635,324.80002113654956,2020-11-29 +359,3467.5,4.0,17.00000000000001,385.3246441689149,2020-11-29 +310,2917.1000000000004,4.0,19.23809523809525,273.95888026612226,2020-11-29 +312,2933.3,4.0,16.571428571428584,167.18563905527793,2020-11-29 +313,2941.3,4.0,16.095238095238106,123.93211111120544,2020-11-29 +316,2984.6000000000004,4.0,18.80952380952382,144.2991669955819,2020-11-29 +317,2994.9,4.0,20.09523809523811,229.10653681481773,2020-11-29 +318,3005.2000000000003,4.0,19.047619047619058,316.63823590672774,2020-11-29 +319,3016.1000000000004,4.0,18.90476190476192,382.5789064271253,2020-11-29 +320,3027.4,4.0,18.90476190476192,414.4885624617316,2020-11-29 +321,3038.6000000000004,4.0,19.142857142857157,416.825145125448,2020-11-29 +322,3050.0,4.0,19.2857142857143,412.5002535266451,2020-11-29 +323,3060.9,4.0,19.42857142857144,406.1655281542112,2020-11-29 +324,3071.7000000000003,4.0,19.142857142857153,398.89413290635684,2020-11-29 +325,3082.5,4.0,18.85714285714287,388.9005959222551,2020-11-29 +326,3093.4,4.0,18.571428571428584,377.01937061962917,2020-11-29 +311,2925.4,4.0,18.90476190476192,220.24651360873713,2020-11-29 +484,4825.5,4.0,19.23809523809525,380.04761898650224,2020-11-29 +552,5573.200000000001,4.0,20.000000000000014,416.06432243856307,2020-11-29 +486,4845.6,4.0,20.2857142857143,327.11115638693985,2020-11-29 +657,6607.5,4.0,20.42857142857144,343.10781103314036,2020-11-29 +658,6617.8,4.0,20.04761904761906,334.6871792034799,2020-11-29 +659,6628.0,4.0,19.90476190476192,331.1989361569115,2020-11-29 +660,6637.700000000001,4.0,20.000000000000014,333.2672534426206,2020-11-29 +661,6648.200000000001,4.0,20.000000000000014,339.11247773556886,2020-11-29 +662,6658.900000000001,4.0,20.000000000000014,348.0975242757106,2020-11-29 +663,6668.700000000001,4.0,20.000000000000014,353.38109920317726,2020-11-29 +664,6679.400000000001,4.0,20.000000000000014,349.9841193035165,2020-11-29 +665,6689.200000000001,4.0,19.90476190476192,342.6907484753703,2020-11-29 +666,6698.8,4.0,20.142857142857157,335.7497531605769,2020-11-29 +667,6709.3,4.0,20.2857142857143,334.9611444180257,2020-11-29 +668,6719.8,4.0,20.333333333333346,341.6078244609698,2020-11-29 +669,6730.700000000001,4.0,20.2857142857143,351.15601088876167,2020-11-29 +670,6741.5,4.0,20.142857142857157,357.0179463739247,2020-11-29 +671,6751.400000000001,4.0,19.90476190476192,358.9951353360349,2020-11-29 +672,6762.1,4.0,20.000000000000014,358.8002654417387,2020-11-29 +673,6772.1,4.0,20.000000000000014,360.4976024340162,2020-11-29 +674,6782.8,4.0,20.000000000000014,363.29106931454726,2020-11-29 +675,6793.1,4.0,19.90476190476192,362.73333933019086,2020-11-29 +676,6803.700000000001,4.0,19.952380952380967,353.8039292612042,2020-11-29 +677,6813.6,4.0,20.380952380952394,340.3540237634634,2020-11-29 +678,6823.5,4.0,21.000000000000014,327.16891047072954,2020-11-29 +679,6833.200000000001,4.0,21.52380952380954,320.74306406100027,2020-11-29 +680,6842.700000000001,4.0,22.190476190476204,326.0067426448838,2020-11-29 +681,6852.400000000001,4.0,22.380952380952394,338.21029950229365,2020-11-29 +682,6862.400000000001,4.0,22.23809523809525,350.39997798873776,2020-11-29 +683,6872.3,4.0,22.33333333333335,363.2766089555631,2020-11-29 +656,6597.900000000001,4.0,20.61904761904763,351.82499702163176,2020-11-29 +684,6882.3,4.0,22.571428571428584,372.91328116185923,2020-11-29 +655,6587.400000000001,4.0,20.61904761904763,358.12860822746444,2020-11-29 +653,6567.200000000001,4.0,20.190476190476204,353.19512569251276,2020-11-29 +626,6285.900000000001,4.0,18.428571428571438,304.04364179138935,2020-11-29 +627,6295.8,4.0,18.61904761904763,298.98049041226983,2020-11-29 +628,6306.1,4.0,18.523809523809536,302.6103740812762,2020-11-29 +629,6316.900000000001,4.0,18.571428571428584,310.2625899169533,2020-11-29 +630,6327.900000000001,4.0,18.238095238095248,315.9726164820266,2020-11-29 +631,6338.0,4.0,18.380952380952394,319.3676214114,2020-11-29 +632,6348.5,4.0,18.47619047619049,321.9404665094349,2020-11-29 +633,6359.3,4.0,18.523809523809536,322.9273735676029,2020-11-29 +634,6370.200000000001,4.0,18.523809523809536,328.11901965664646,2020-11-29 +635,6380.8,4.0,18.80952380952382,332.245089453633,2020-11-29 +636,6391.8,4.0,18.761904761904773,333.3130055946268,2020-11-29 +637,6402.400000000001,4.0,19.142857142857157,331.20229513045814,2020-11-29 +638,6412.700000000001,4.0,19.333333333333346,327.7404133089261,2020-11-29 +639,6422.900000000001,4.0,19.66666666666668,324.5884645606732,2020-11-29 +640,6432.700000000001,4.0,19.952380952380967,325.27740204787005,2020-11-29 +641,6443.1,4.0,20.09523809523811,325.7824718867693,2020-11-29 +642,6453.5,4.0,20.000000000000014,326.1433723551047,2020-11-29 +643,6463.8,4.0,20.000000000000014,327.26921146956556,2020-11-29 +644,6474.1,4.0,20.000000000000014,329.37195533795125,2020-11-29 +645,6484.5,4.0,20.000000000000014,333.5332239763504,2020-11-29 +646,6495.0,4.0,20.000000000000014,342.1198058898713,2020-11-29 +647,6505.1,4.0,20.000000000000014,350.2668047559607,2020-11-29 +648,6515.700000000001,4.0,19.90476190476192,354.37616664197446,2020-11-29 +649,6526.3,4.0,20.142857142857157,352.9191547935466,2020-11-29 +650,6536.1,4.0,20.2857142857143,347.1649309765752,2020-11-29 +651,6546.1,4.0,20.333333333333346,342.82213060570336,2020-11-29 +652,6556.5,4.0,20.190476190476204,346.01619496089415,2020-11-29 +654,6577.6,4.0,20.333333333333346,359.02369639967753,2020-11-29 +685,6893.0,4.0,22.52380952380954,376.09277618823666,2020-11-29 +686,6902.900000000001,4.0,22.619047619047635,377.38485382702265,2020-11-29 +687,6912.900000000001,4.0,22.428571428571445,374.9604234970353,2020-11-29 +720,7245.8,4.0,21.952380952380967,347.18572824668865,2020-11-29 +721,7255.6,4.0,22.09523809523811,335.17851669290326,2020-11-29 +722,7265.0,4.0,22.190476190476204,335.41414399719986,2020-11-29 +723,7275.200000000001,4.0,22.000000000000014,346.79606854058204,2020-11-29 +724,7285.400000000001,4.0,21.190476190476204,362.66307739756695,2020-11-29 +725,7296.1,4.0,20.380952380952394,374.10952218338707,2020-11-29 +726,7306.8,4.0,19.857142857142872,376.19337883180344,2020-11-29 +727,7317.1,4.0,19.47619047619049,371.49685549318684,2020-11-29 +728,7327.0,4.0,19.523809523809536,363.83550866627405,2020-11-29 +729,7338.0,4.0,19.428571428571445,356.5353661794673,2020-11-29 +730,7348.8,4.0,19.047619047619058,351.1406793204211,2020-11-29 +731,7359.200000000001,4.0,18.90476190476192,348.65668023583123,2020-11-29 +732,7369.400000000001,4.0,19.000000000000014,349.8706263941352,2020-11-29 +733,7380.5,4.0,19.000000000000014,354.0582984564909,2020-11-29 +734,7391.1,4.0,19.000000000000014,359.9148376918809,2020-11-29 +735,7402.3,4.0,19.09523809523811,364.53640908497164,2020-11-29 +736,7412.8,4.0,18.85714285714287,366.6524917356663,2020-11-29 +737,7423.900000000001,4.0,18.714285714285726,366.1729463526534,2020-11-29 +738,7435.1,4.0,18.66666666666668,363.12976524042585,2020-11-29 +739,7445.400000000001,4.0,18.714285714285726,354.71328809270994,2020-11-29 +740,7456.3,4.0,18.85714285714287,346.38945600872466,2020-11-29 +741,7466.5,4.0,19.09523809523811,339.68769829466277,2020-11-29 +742,7477.200000000001,4.0,18.90476190476192,333.63028541940366,2020-11-29 +743,7487.700000000001,4.0,19.142857142857157,329.1205576325947,2020-11-29 +744,7498.3,4.0,19.2857142857143,326.9010615642974,2020-11-29 +745,7508.200000000001,4.0,19.333333333333346,325.2960103207506,2020-11-29 +746,7518.8,4.0,19.2857142857143,331.3234909999221,2020-11-29 +719,7236.700000000001,4.0,21.666666666666682,365.3338943155459,2020-11-29 +718,7227.0,4.0,21.33333333333335,379.10315962416905,2020-11-29 +717,7216.1,4.0,20.952380952380963,386.65043262511745,2020-11-29 +716,7206.6,4.0,21.04761904761906,388.8843327457579,2020-11-29 +688,6923.3,4.0,22.04761904761906,367.24816651133915,2020-11-29 +689,6933.0,4.0,21.90476190476192,361.32557647712554,2020-11-29 +690,6942.8,4.0,22.000000000000014,358.2942853714472,2020-11-29 +691,6953.0,4.0,22.000000000000014,358.6557344960857,2020-11-29 +692,6963.0,4.0,22.000000000000014,367.37632355044195,2020-11-29 +693,6973.200000000001,4.0,22.000000000000014,379.80670660045087,2020-11-29 +694,6984.400000000001,4.0,22.000000000000014,387.87797066938435,2020-11-29 +695,6994.5,4.0,22.000000000000014,388.04141861031354,2020-11-29 +696,7005.0,4.0,22.000000000000014,379.91939970517217,2020-11-29 +697,7014.8,4.0,22.000000000000014,369.764456202132,2020-11-29 +698,7024.900000000001,4.0,22.000000000000014,364.6609137076544,2020-11-29 +699,7035.200000000001,4.0,22.000000000000014,363.73344496533684,2020-11-29 +700,7045.0,4.0,22.000000000000014,363.6160981890173,2020-11-29 +625,6275.5,4.0,18.047619047619058,310.0283169661389,2020-11-29 +701,7055.0,4.0,22.09523809523811,360.30639364733435,2020-11-29 +703,7074.6,4.0,21.666666666666682,351.44771804978075,2020-11-29 +704,7084.1,4.0,21.33333333333335,353.12969193513754,2020-11-29 +705,7094.6,4.0,21.04761904761906,355.90063508447867,2020-11-29 +706,7104.8,4.0,20.90476190476192,359.0647838467188,2020-11-29 +707,7114.8,4.0,21.000000000000014,360.9413039180346,2020-11-29 +708,7125.200000000001,4.0,20.90476190476192,360.51158149846424,2020-11-29 +709,7135.5,4.0,21.04761904761906,362.57981102349055,2020-11-29 +710,7145.3,4.0,21.428571428571445,367.9932888436592,2020-11-29 +711,7155.5,4.0,21.52380952380954,373.36693824769213,2020-11-29 +712,7166.0,4.0,21.761904761904777,379.35913923709757,2020-11-29 +713,7176.400000000001,4.0,21.71428571428573,384.7835621765536,2020-11-29 +714,7186.6,4.0,21.380952380952394,385.8235234298425,2020-11-29 +715,7196.3,4.0,21.190476190476204,387.2839700259797,2020-11-29 +702,7064.5,4.0,21.952380952380967,354.5209725419928,2020-11-29 +624,6265.400000000001,4.0,17.90476190476192,315.55713934904975,2020-11-29 +623,6254.1,4.0,18.09523809523811,317.47594349073796,2020-11-29 +622,6243.5,4.0,17.952380952380963,315.2807911774537,2020-11-29 +519,5204.0,4.0,18.000000000000014,367.4612585022004,2020-11-29 +520,5214.900000000001,4.0,18.000000000000014,372.6861687448188,2020-11-29 +521,5226.1,4.0,18.000000000000014,381.8311952055367,2020-11-29 +522,5238.400000000001,4.0,18.000000000000014,388.26854079790786,2020-11-29 +523,5249.6,4.0,18.000000000000014,388.99001582915093,2020-11-29 +524,5261.3,4.0,18.09523809523811,385.7090838132547,2020-11-29 +525,5272.3,4.0,17.85714285714287,380.81638396829794,2020-11-29 +526,5283.900000000001,4.0,17.714285714285726,376.67920515954654,2020-11-29 +527,5295.6,4.0,17.761904761904773,376.6928601385358,2020-11-29 +528,5306.6,4.0,17.66666666666668,380.28499526949554,2020-11-29 +529,5318.3,4.0,17.428571428571438,388.2385124685512,2020-11-29 +530,5329.8,4.0,17.380952380952394,398.2311690257228,2020-11-29 +531,5342.1,4.0,17.523809523809536,404.3037876115785,2020-11-29 +532,5353.5,4.0,17.952380952380963,403.39708012158985,2020-11-29 +533,5364.6,4.0,18.142857142857153,399.7915286103642,2020-11-29 +534,5375.700000000001,4.0,18.09523809523811,396.4277025447157,2020-11-29 +535,5387.400000000001,4.0,17.80952380952382,393.7614192300406,2020-11-29 +536,5399.1,4.0,17.61904761904763,388.2302555380628,2020-11-29 +537,5409.900000000001,4.0,17.85714285714287,380.42091596724106,2020-11-29 +538,5421.6,4.0,18.09523809523811,374.4259280689769,2020-11-29 +539,5432.700000000001,4.0,17.90476190476192,375.1922142181254,2020-11-29 +540,5443.5,4.0,17.952380952380963,382.0796402277015,2020-11-29 +541,5454.900000000001,4.0,18.380952380952394,389.7394122134989,2020-11-29 +542,5466.700000000001,4.0,19.000000000000014,393.66177850350925,2020-11-29 +543,5476.8,4.0,19.71428571428573,396.27575278239124,2020-11-29 +544,5488.3,4.0,19.90476190476192,400.96652578738303,2020-11-29 +545,5498.6,4.0,19.809523809523824,406.6806289511235,2020-11-29 +518,5193.0,4.0,18.000000000000014,368.2816604218988,2020-11-29 +517,5181.900000000001,4.0,18.000000000000014,373.0000720301812,2020-11-29 +516,5170.700000000001,4.0,18.000000000000014,375.96577427969316,2020-11-29 +515,5159.700000000001,4.0,18.000000000000014,377.5420587663202,2020-11-29 +487,4855.2,4.0,20.571428571428584,314.2200585857448,2020-11-29 +488,4865.400000000001,4.0,20.523809523809536,320.5393220574157,2020-11-29 +489,4876.2,4.0,20.142857142857157,339.0643628629904,2020-11-29 +490,4886.8,4.0,19.761904761904777,359.0447556298989,2020-11-29 +491,4897.3,4.0,19.809523809523824,370.49798753397636,2020-11-29 +492,4907.900000000001,4.0,19.52380952380954,371.8912940192066,2020-11-29 +493,4918.6,4.0,19.523809523809536,369.5955179340278,2020-11-29 +494,4929.200000000001,4.0,19.47619047619049,370.92137861045774,2020-11-29 +495,4940.3,4.0,19.47619047619049,373.87733048118037,2020-11-29 +496,4951.5,4.0,19.190476190476204,377.3664800212942,2020-11-29 +497,4961.6,4.0,19.047619047619058,376.61627514697193,2020-11-29 +498,4972.3,4.0,19.047619047619058,373.22076501932344,2020-11-29 +499,4983.6,4.0,19.2857142857143,368.08576294760564,2020-11-29 +546,5510.1,4.0,19.66666666666668,410.51518244301207,2020-11-29 +500,4993.400000000001,4.0,19.238095238095248,364.2023050321729,2020-11-29 +502,5014.900000000001,4.0,19.333333333333346,358.0306150375957,2020-11-29 +503,5025.400000000001,4.0,19.380952380952394,355.9037228889074,2020-11-29 +504,5035.900000000001,4.0,19.66666666666668,360.35737485418304,2020-11-29 +505,5046.400000000001,4.0,19.42857142857144,368.72326893673346,2020-11-29 +506,5057.1,4.0,18.85714285714287,378.2148225259988,2020-11-29 +507,5069.0,4.0,18.47619047619049,385.0204298459574,2020-11-29 +508,5080.200000000001,4.0,18.047619047619058,385.8492136729999,2020-11-29 +509,5091.3,4.0,17.761904761904773,383.62516060541327,2020-11-29 +510,5102.400000000001,4.0,17.714285714285726,383.2932126003278,2020-11-29 +511,5114.6,4.0,17.66666666666668,384.07189015843505,2020-11-29 +512,5125.5,4.0,17.714285714285726,382.7163366632341,2020-11-29 +513,5136.900000000001,4.0,17.85714285714287,380.67888141907986,2020-11-29 +514,5148.0,4.0,18.09523809523811,378.7451376477743,2020-11-29 +501,5003.8,4.0,19.428571428571445,361.102847279354,2020-11-29 +485,4836.0,4.0,19.66666666666668,354.45146682526274,2020-11-29 +547,5520.200000000001,4.0,19.71428571428573,410.1712850441647,2020-11-29 +549,5541.3,4.0,20.09523809523811,408.9970329774328,2020-11-29 +582,5894.900000000001,4.0,18.142857142857157,380.0798353431394,2020-11-29 +583,5905.700000000001,4.0,16.952380952380963,270.0433238385416,2020-11-29 +584,5943.3,4.0,17.09523809523811,136.43728535602082,2020-11-29 +598,5978.700000000001,4.0,24.90476190476192,191.49840748435895,2020-11-29 +599,5988.900000000001,4.0,19.809523809523824,293.0338539709295,2020-11-29 +600,5999.900000000001,4.0,17.85714285714287,360.65322839593694,2020-11-29 +601,6011.200000000001,4.0,17.190476190476204,382.88966189758054,2020-11-29 +602,6022.3,4.0,17.333333333333343,369.8928224303096,2020-11-29 +603,6033.200000000001,4.0,17.85714285714287,351.87019743859497,2020-11-29 +604,6043.700000000001,4.0,18.2857142857143,338.77995349128605,2020-11-29 +605,6054.3,4.0,18.380952380952394,334.90531359545787,2020-11-29 +606,6065.700000000001,4.0,18.142857142857153,335.63558440823067,2020-11-29 +607,6076.6,4.0,17.90476190476192,341.1967625523347,2020-11-29 +608,6087.8,4.0,18.09523809523811,352.38438358812874,2020-11-29 +609,6099.200000000001,4.0,17.85714285714287,364.77720276265603,2020-11-29 +610,6110.3,4.0,17.714285714285726,375.1219280708792,2020-11-29 +611,6122.200000000001,4.0,17.761904761904773,379.313059312254,2020-11-29 +612,6133.6,4.0,17.571428571428584,372.38055620609606,2020-11-29 +613,6144.8,4.0,17.66666666666668,358.1407231802904,2020-11-29 +614,6155.700000000001,4.0,17.714285714285726,342.1745267137675,2020-11-29 +615,6166.6,4.0,17.380952380952394,327.6539019195453,2020-11-29 +616,6177.5,4.0,17.190476190476204,321.40675166239674,2020-11-29 +617,6188.0,4.0,17.142857142857153,322.1091093725605,2020-11-29 +618,6199.6,4.0,16.80952380952382,324.1145885084229,2020-11-29 +619,6210.5,4.0,17.047619047619058,323.95167363524797,2020-11-29 +620,6221.3,4.0,17.333333333333343,320.69767852587233,2020-11-29 +621,6231.8,4.0,17.66666666666668,315.20458969607364,2020-11-29 +581,5884.0,4.0,21.190476190476204,432.8049474901146,2020-11-29 +580,5873.0,4.0,20.2857142857143,416.0440340041577,2020-11-29 +579,5862.3,4.0,20.333333333333346,380.5324426360505,2020-11-29 +578,5852.3,4.0,20.2857142857143,386.11164819147376,2020-11-29 +550,5551.6,4.0,20.000000000000014,411.57016011922155,2020-11-29 +551,5562.400000000001,4.0,20.000000000000014,414.4991850557743,2020-11-29 +234,2107.9,4.0,18.61904761904763,357.1805327898566,2020-11-29 +553,5584.1,4.0,20.000000000000014,416.3256970099456,2020-11-29 +554,5594.8,4.0,20.000000000000014,417.6669576629534,2020-11-29 +555,5605.6,4.0,20.000000000000014,417.839600474356,2020-11-29 +556,5616.5,4.0,20.000000000000014,414.135598670326,2020-11-29 +557,5627.3,4.0,20.000000000000014,405.77618141738503,2020-11-29 +558,5637.5,4.0,20.000000000000014,394.8115793623229,2020-11-29 +559,5648.3,4.0,20.000000000000014,384.6735628420496,2020-11-29 +560,5658.5,4.0,20.000000000000014,378.758055526411,2020-11-29 +561,5669.5,4.0,20.000000000000014,376.47859955453015,2020-11-29 +562,5680.400000000001,4.0,20.000000000000014,375.2312422047587,2020-11-29 +548,5530.5,4.0,19.857142857142872,408.80805373995577,2020-11-29 +563,5690.6,4.0,20.000000000000014,375.5500704292973,2020-11-29 +565,5712.5,4.0,20.000000000000014,385.44049449202964,2020-11-29 +566,5722.8,4.0,20.000000000000014,395.7065469479095,2020-11-29 +567,5733.900000000001,4.0,20.000000000000014,406.27565373127516,2020-11-29 +568,5745.0,4.0,20.000000000000014,412.99019527622795,2020-11-29 +569,5756.0,4.0,20.000000000000014,416.3274695427188,2020-11-29 +570,5766.400000000001,4.0,20.000000000000014,417.00945371913645,2020-11-29 +571,5777.400000000001,4.0,20.000000000000014,416.27872558969045,2020-11-29 +572,5788.3,4.0,20.000000000000014,415.36154975709655,2020-11-29 +573,5798.700000000001,4.0,20.000000000000014,413.4048361199503,2020-11-29 +574,5809.400000000001,4.0,20.000000000000014,411.6322959217963,2020-11-29 +575,5820.200000000001,4.0,20.000000000000014,409.2166031719336,2020-11-29 +576,5831.1,4.0,19.90476190476192,404.4736762658391,2020-11-29 +577,5841.5,4.0,20.142857142857157,397.44657459915044,2020-11-29 +564,5701.5,4.0,20.000000000000014,378.79073824352236,2020-11-29 +233,2097.0,4.0,18.000000000000014,365.84325897703707,2020-11-29 +153,1268.8000000000002,4.0,17.66666666666668,354.00899206480767,2020-11-29 +231,2074.3,4.0,16.952380952380963,382.2103230716641,2020-11-29 +893,9104.1,4.0,20.04761904761906,300.1994949306036,2020-11-29 +892,9094.4,4.0,19.952380952380967,298.8508847766812,2020-11-29 +891,9084.300000000001,4.0,19.71428571428573,300.488205157936,2020-11-29 +890,9074.2,4.0,19.66666666666668,304.5585672382841,2020-11-29 +889,9064.4,4.0,19.71428571428573,307.1942657807052,2020-11-29 +888,9054.5,4.0,19.857142857142872,308.91061643307773,2020-11-29 +887,9044.4,4.0,20.09523809523811,310.7268966019087,2020-11-29 +886,9034.4,4.0,20.000000000000014,311.76960026082384,2020-11-29 +885,9024.5,4.0,20.000000000000014,314.0954895807098,2020-11-29 +884,9014.5,4.0,20.09523809523811,318.57991287580813,2020-11-29 +883,9004.5,4.0,19.857142857142872,323.65085505342427,2020-11-29 +882,8995.0,4.0,19.71428571428573,328.1471707699395,2020-11-29 +881,8984.1,4.0,19.66666666666668,330.90627755290507,2020-11-29 +880,8974.0,4.0,19.71428571428573,329.9307718955763,2020-11-29 +879,8963.800000000001,4.0,19.857142857142872,328.02956459238806,2020-11-29 +878,8953.7,4.0,20.190476190476204,327.5843440316811,2020-11-29 +877,8943.2,4.0,20.04761904761906,332.1130955137518,2020-11-29 +876,8933.0,4.0,19.619047619047635,339.72197762273163,2020-11-29 +875,8922.7,4.0,18.90476190476192,347.3362461764586,2020-11-29 +874,8912.4,4.0,18.523809523809536,350.5091009680625,2020-11-29 +873,8901.5,4.0,18.238095238095248,347.33939389159684,2020-11-29 +872,8890.5,4.0,18.142857142857157,342.65719761301875,2020-11-29 +871,8879.0,4.0,18.428571428571438,341.40654578005285,2020-11-29 +870,8868.300000000001,4.0,18.333333333333343,338.86626997070533,2020-11-29 +869,8857.6,4.0,18.2857142857143,333.72298935050014,2020-11-29 +868,8847.2,4.0,18.714285714285726,324.3525969371394,2020-11-29 +867,8835.9,4.0,18.761904761904773,310.22987844043087,2020-11-29 +894,9114.2,4.0,19.66666666666668,306.1117315350881,2020-11-29 +866,8825.4,4.0,18.61904761904763,300.10422337458795,2020-11-29 +895,9124.300000000001,4.0,19.333333333333346,317.0207605138131,2020-11-29 +897,9145.6,4.0,19.047619047619058,338.00006423609943,2020-11-29 +924,9426.0,4.0,16.61904761904763,339.315099279276,2020-11-29 +923,9415.2,4.0,18.047619047619058,347.93086609341736,2020-11-29 +922,9404.4,4.0,18.2857142857143,326.0259014621903,2020-11-29 +921,9393.300000000001,4.0,18.23809523809525,302.6335129602057,2020-11-29 +920,9382.7,4.0,18.333333333333343,313.16052840752604,2020-11-29 +919,9372.6,4.0,18.571428571428584,327.7095445564813,2020-11-29 +918,9362.7,4.0,18.61904761904763,345.0153317642449,2020-11-29 +917,9352.4,4.0,18.47619047619049,361.59315347922603,2020-11-29 +916,9341.6,4.0,18.047619047619058,375.3313528825398,2020-11-29 +915,9330.9,4.0,17.761904761904773,377.2773450102933,2020-11-29 +914,9318.9,4.0,17.85714285714287,366.29657915666496,2020-11-29 +913,9307.6,4.0,18.66666666666668,347.8208105831883,2020-11-29 +912,9297.5,4.0,19.23809523809525,330.9140514169392,2020-11-29 +911,9286.800000000001,4.0,19.47619047619049,322.40784563320483,2020-11-29 +910,9277.300000000001,4.0,19.619047619047635,322.91700322384224,2020-11-29 +909,9267.1,4.0,19.809523809523824,322.8755933100331,2020-11-29 +908,9257.0,4.0,19.857142857142872,316.64543474323426,2020-11-29 +907,9247.4,4.0,20.09523809523811,306.01676213625467,2020-11-29 +906,9236.9,4.0,20.09523809523811,299.45305659499013,2020-11-29 +905,9227.300000000001,4.0,19.857142857142872,300.89333969046083,2020-11-29 +904,9217.4,4.0,19.71428571428573,309.57862839772474,2020-11-29 +903,9207.9,4.0,19.761904761904773,320.5706260149726,2020-11-29 +902,9197.4,4.0,19.571428571428584,328.31107215856014,2020-11-29 +901,9187.5,4.0,19.66666666666668,332.427437566944,2020-11-29 +900,9176.6,4.0,19.71428571428573,336.1598785642723,2020-11-29 +899,9166.300000000001,4.0,19.380952380952394,339.49598610785984,2020-11-29 +898,9156.1,4.0,19.190476190476204,341.1076244894351,2020-11-29 +896,9135.2,4.0,18.952380952380963,329.31996019589667,2020-11-29 +865,8815.800000000001,4.0,18.2857142857143,297.215771542781,2020-11-29 +864,8805.7,4.0,17.761904761904773,296.9465121766875,2020-11-29 +863,8794.7,4.0,17.571428571428584,298.0571330789762,2020-11-29 +830,8435.6,4.0,18.85714285714287,337.42016266565025,2020-11-29 +829,8424.300000000001,4.0,18.714285714285726,333.48559955295616,2020-11-29 +828,8413.5,4.0,18.66666666666668,334.88467512755574,2020-11-29 +827,8402.5,4.0,18.714285714285726,335.40440328291567,2020-11-29 +826,8392.4,4.0,18.761904761904773,338.7724187373416,2020-11-29 +825,8381.800000000001,4.0,19.23809523809525,341.41965110937804,2020-11-29 +824,8371.4,4.0,19.190476190476204,340.4333986351903,2020-11-29 +823,8360.4,4.0,19.47619047619049,337.3264949911345,2020-11-29 +822,8350.1,4.0,19.571428571428584,336.3831783577247,2020-11-29 +821,8339.7,4.0,19.47619047619049,336.79744976180143,2020-11-29 +820,8329.300000000001,4.0,19.09523809523811,345.92547719889086,2020-11-29 +819,8319.4,4.0,19.190476190476204,359.7847142245022,2020-11-29 +818,8308.5,4.0,19.23809523809525,372.00984418067696,2020-11-29 +817,8297.800000000001,4.0,19.66666666666668,378.12848842187475,2020-11-29 +816,8287.2,4.0,19.952380952380967,378.31926314912187,2020-11-29 +815,8276.2,4.0,20.09523809523811,372.55612235575336,2020-11-29 +814,8265.2,4.0,20.000000000000014,366.93757721563964,2020-11-29 +813,8254.5,4.0,20.000000000000014,361.35942628885573,2020-11-29 +812,8243.9,4.0,20.000000000000014,353.07179738120385,2020-11-29 +811,8233.4,4.0,20.000000000000014,341.96447788678825,2020-11-29 +810,8223.0,4.0,20.000000000000014,330.96871011237874,2020-11-29 +809,8212.800000000001,4.0,20.000000000000014,324.056691277952,2020-11-29 +808,8202.7,4.0,20.09523809523811,324.14732401698313,2020-11-29 +807,8193.2,4.0,19.857142857142872,329.70957859631915,2020-11-29 +806,8183.200000000001,4.0,19.71428571428573,336.409597651997,2020-11-29 +805,8172.8,4.0,19.66666666666668,340.79357271431536,2020-11-29 +804,8162.6,4.0,19.71428571428573,343.7393102350414,2020-11-29 +831,8446.2,4.0,19.190476190476204,345.35511350942534,2020-11-29 +832,8457.2,4.0,18.85714285714287,354.3807810151477,2020-11-29 +833,8467.6,4.0,18.714285714285726,364.27008609925986,2020-11-29 +834,8478.5,4.0,18.66666666666668,370.1496281303269,2020-11-29 +862,8784.6,4.0,17.61904761904763,297.20173920198715,2020-11-29 +861,8774.0,4.0,18.000000000000014,296.820289497378,2020-11-29 +860,8763.6,4.0,18.47619047619049,302.9494113416372,2020-11-29 +859,8753.300000000001,4.0,18.2857142857143,315.51294446100366,2020-11-29 +858,8743.6,4.0,17.85714285714287,329.74438893749806,2020-11-29 +857,8732.6,4.0,17.523809523809536,339.8461188908958,2020-11-29 +856,8720.800000000001,4.0,17.380952380952394,341.7330407841149,2020-11-29 +855,8710.0,4.0,17.428571428571438,340.28209112779354,2020-11-29 +854,8698.9,4.0,17.66666666666668,341.51135956609687,2020-11-29 +853,8688.300000000001,4.0,17.761904761904773,347.2420089038627,2020-11-29 +852,8677.0,4.0,17.714285714285726,353.0262368563282,2020-11-29 +851,8665.7,4.0,17.761904761904773,357.75277764114026,2020-11-29 +850,8654.800000000001,4.0,18.238095238095248,362.3539288260546,2020-11-29 +925,9436.9,4.0,21.190476190476204,279.0883741142995,2020-11-29 +849,8644.1,4.0,18.2857142857143,368.72268530758174,2020-11-29 +847,8622.0,4.0,18.2857142857143,377.1704882379279,2020-11-29 +846,8610.5,4.0,18.142857142857153,369.9652628482294,2020-11-29 +845,8599.6,4.0,18.000000000000014,359.0998869416942,2020-11-29 +844,8589.2,4.0,17.952380952380963,349.80558498913547,2020-11-29 +843,8577.800000000001,4.0,17.571428571428584,348.65055249624425,2020-11-29 +842,8566.800000000001,4.0,17.47619047619049,352.9818442028467,2020-11-29 +841,8555.5,4.0,17.142857142857153,357.0469917502643,2020-11-29 +840,8543.9,4.0,17.333333333333343,358.09625505488805,2020-11-29 +839,8532.6,4.0,17.952380952380963,357.62523951634387,2020-11-29 +838,8521.800000000001,4.0,18.47619047619049,355.97402069975976,2020-11-29 +837,8510.300000000001,4.0,18.90476190476192,359.67098662868113,2020-11-29 +836,8500.2,4.0,19.047619047619058,365.3624500261262,2020-11-29 +835,8489.300000000001,4.0,18.714285714285726,369.2132647462446,2020-11-29 +848,8632.7,4.0,18.333333333333346,374.9924013522516,2020-11-29 +926,9447.4,4.0,20.619047619047635,180.22030863080184,2020-11-29 +932,9522.6,4.0,19.04761904761906,141.085848022805,2020-11-29 +933,9531.0,4.0,17.428571428571438,173.0417917427291,2020-11-29 +1030,10559.7,4.0,16.47619047619049,348.8545390310276,2020-11-29 +1029,10547.300000000001,4.0,16.66666666666668,349.7163385437551,2020-11-29 +1028,10535.6,4.0,16.80952380952382,349.22632782849576,2020-11-29 +1027,10524.0,4.0,16.80952380952382,348.05586182931324,2020-11-29 +1026,10513.0,4.0,16.66666666666668,347.3354924781909,2020-11-29 +1025,10501.1,4.0,16.61904761904763,346.27125591608257,2020-11-29 +1024,10489.300000000001,4.0,17.00000000000001,345.54931849144555,2020-11-29 +1023,10478.1,4.0,17.380952380952394,345.5655839697042,2020-11-29 +1022,10466.7,4.0,17.333333333333343,345.53299153896523,2020-11-29 +1021,10454.900000000001,4.0,17.2857142857143,350.39812977255286,2020-11-29 +1020,10444.1,4.0,17.142857142857153,357.6993601083153,2020-11-29 +1019,10432.900000000001,4.0,16.714285714285722,366.0639195658537,2020-11-29 +1018,10421.400000000001,4.0,17.190476190476204,377.5710048588536,2020-11-29 +1017,10409.5,4.0,17.523809523809536,395.0318545653192,2020-11-29 +1016,10398.1,4.0,17.571428571428584,383.3944932499421,2020-11-29 +1015,10387.1,4.0,18.42857142857144,332.06913240031383,2020-11-29 +1014,10376.900000000001,4.0,22.666666666666682,236.5294565330071,2020-11-29 +1013,10366.2,4.0,21.428571428571445,130.12602844124632,2020-11-29 +1005,10296.2,4.0,16.047619047619058,178.36709121781735,2020-11-29 +1004,10286.800000000001,4.0,16.142857142857153,269.7000488462843,2020-11-29 +1003,10276.1,4.0,18.09523809523811,331.8496321061515,2020-11-29 +1002,10265.2,4.0,17.047619047619058,340.4129828304498,2020-11-29 +1001,10254.5,4.0,16.904761904761916,321.8631311756504,2020-11-29 +1000,10243.2,4.0,17.00000000000001,321.2302423771225,2020-11-29 +999,10232.400000000001,4.0,17.00000000000001,323.5419895305249,2020-11-29 +998,10221.5,4.0,17.00000000000001,324.89903367440104,2020-11-29 +997,10210.300000000001,4.0,17.00000000000001,325.78670280175606,2020-11-29 +1031,10571.400000000001,4.0,16.333333333333343,346.8480451612572,2020-11-29 +1032,10582.2,4.0,16.238095238095248,344.48425574162775,2020-11-29 +1033,10594.400000000001,4.0,16.2857142857143,342.5519258955543,2020-11-29 +1034,10606.5,4.0,16.142857142857153,341.69600057802734,2020-11-29 +1062,10935.900000000001,4.0,16.333333333333343,385.64343524401795,2020-11-29 +1061,10923.300000000001,4.0,16.761904761904773,372.9761726498042,2020-11-29 +1060,10911.800000000001,4.0,16.714285714285726,357.4081407902215,2020-11-29 +1059,10899.800000000001,4.0,16.380952380952394,343.8349952676553,2020-11-29 +1058,10888.0,4.0,16.190476190476204,332.4192509682597,2020-11-29 +1057,10876.300000000001,4.0,16.142857142857153,321.10525652153694,2020-11-29 +1056,10864.300000000001,4.0,16.00000000000001,311.51641859170206,2020-11-29 +1055,10852.5,4.0,15.857142857142868,309.4540460142126,2020-11-29 +1054,10840.800000000001,4.0,15.809523809523817,316.2209617317279,2020-11-29 +1053,10829.900000000001,4.0,15.523809523809533,326.66687549169615,2020-11-29 +1052,10817.5,4.0,15.428571428571438,333.88664962892676,2020-11-29 +1051,10806.5,4.0,15.523809523809533,335.96344938330094,2020-11-29 +1050,10794.400000000001,4.0,15.809523809523817,330.81235998764873,2020-11-29 +996,10198.900000000001,4.0,16.904761904761916,324.5578728141646,2020-11-29 +1049,10782.7,4.0,15.857142857142868,323.3776799872554,2020-11-29 +1047,10759.300000000001,4.0,16.00000000000001,313.8892838444939,2020-11-29 +1046,10747.5,4.0,16.00000000000001,309.43828011039795,2020-11-29 +1045,10735.7,4.0,16.00000000000001,306.0874012100336,2020-11-29 +1044,10723.6,4.0,16.095238095238106,304.4080077455942,2020-11-29 +1043,10712.6,4.0,15.857142857142868,305.29527105086447,2020-11-29 +1042,10701.0,4.0,15.714285714285722,311.100246322966,2020-11-29 +1041,10689.5,4.0,15.761904761904773,321.3927441136989,2020-11-29 +1040,10676.800000000001,4.0,15.57142857142858,329.7646450314339,2020-11-29 +1039,10665.300000000001,4.0,15.57142857142858,336.06679101724035,2020-11-29 +1038,10653.1,4.0,15.761904761904773,339.7868980018807,2020-11-29 +1037,10641.2,4.0,15.714285714285722,339.7935389910248,2020-11-29 +1036,10629.1,4.0,15.857142857142868,340.06259830791134,2020-11-29 +1035,10617.800000000001,4.0,16.00000000000001,341.22202437081535,2020-11-29 +1048,10770.2,4.0,16.095238095238106,317.33801229976325,2020-11-29 +803,8152.5,4.0,19.952380952380967,346.7218121564132,2020-11-29 +995,10187.7,4.0,17.142857142857153,321.6896495279626,2020-11-29 +993,10166.0,4.0,17.333333333333343,309.76449806793516,2020-11-29 +960,9808.1,4.0,17.47619047619049,351.3655174383196,2020-11-29 +959,9796.800000000001,4.0,17.571428571428584,339.77369943119095,2020-11-29 +958,9785.800000000001,4.0,18.047619047619058,330.4414435133175,2020-11-29 +957,9775.300000000001,4.0,18.047619047619058,325.32366523619095,2020-11-29 +956,9763.800000000001,4.0,17.571428571428584,324.8472176343139,2020-11-29 +955,9753.9,4.0,17.380952380952394,330.13552667430395,2020-11-29 +954,9742.7,4.0,17.380952380952394,334.1699499515736,2020-11-29 +953,9731.5,4.0,17.571428571428584,335.28714504739276,2020-11-29 +952,9720.4,4.0,17.952380952380963,336.49326669252525,2020-11-29 +951,9709.9,4.0,18.000000000000014,337.3719414334537,2020-11-29 +950,9698.7,4.0,17.952380952380963,334.67273309755103,2020-11-29 +949,9688.1,4.0,18.380952380952394,321.4699586500126,2020-11-29 +948,9677.6,4.0,19.190476190476204,292.5810056716122,2020-11-29 +947,9667.1,4.0,19.71428571428573,252.3287727767102,2020-11-29 +946,9657.4,4.0,19.2857142857143,213.85797073508945,2020-11-29 +945,9648.1,4.0,18.09523809523811,191.06571754231533,2020-11-29 +944,9638.800000000001,4.0,16.761904761904773,185.55536282066262,2020-11-29 +943,9630.1,4.0,15.904761904761916,187.18571414369507,2020-11-29 +942,9620.4,4.0,15.80952380952382,188.8712211313576,2020-11-29 +941,9610.0,4.0,16.095238095238106,186.3712918410942,2020-11-29 +940,9599.800000000001,4.0,15.857142857142868,182.5677606590371,2020-11-29 +939,9590.0,4.0,15.809523809523817,183.0386595870185,2020-11-29 +938,9580.4,4.0,15.523809523809533,187.92233909264513,2020-11-29 +937,9570.4,4.0,15.428571428571438,190.02747575412593,2020-11-29 +936,9560.300000000001,4.0,15.333333333333343,191.2940504182876,2020-11-29 +935,9550.300000000001,4.0,15.904761904761912,189.87832562718387,2020-11-29 +934,9540.800000000001,4.0,16.142857142857153,187.37600819842973,2020-11-29 +961,9819.7,4.0,17.238095238095248,357.19936597404086,2020-11-29 +962,9830.900000000001,4.0,17.285714285714295,354.598593667938,2020-11-29 +963,9841.400000000001,4.0,17.61904761904763,348.6949248056492,2020-11-29 +964,9852.6,4.0,17.80952380952382,341.2021503359882,2020-11-29 +992,10155.2,4.0,17.190476190476204,305.93418434073266,2020-11-29 +991,10144.400000000001,4.0,17.2857142857143,306.8133460658006,2020-11-29 +990,10134.2,4.0,17.190476190476204,314.19405199795347,2020-11-29 +989,10122.900000000001,4.0,17.333333333333343,325.24629307762075,2020-11-29 +988,10112.6,4.0,17.2857142857143,334.413293560944,2020-11-29 +987,10101.2,4.0,17.142857142857153,335.82432950282276,2020-11-29 +986,10090.0,4.0,16.904761904761916,332.8149167691836,2020-11-29 +985,10079.1,4.0,16.904761904761916,326.45917083943095,2020-11-29 +984,10068.2,4.0,17.047619047619058,321.7082853671576,2020-11-29 +983,10057.5,4.0,17.42857142857144,320.9228578405414,2020-11-29 +982,10047.1,4.0,17.523809523809533,322.9298436379312,2020-11-29 +981,10036.2,4.0,17.66666666666668,325.0320239162672,2020-11-29 +980,10025.0,4.0,17.761904761904773,329.9924030939759,2020-11-29 +994,10176.900000000001,4.0,17.2857142857143,317.0341790721192,2020-11-29 +979,10014.1,4.0,17.80952380952382,335.3080455049253,2020-11-29 +977,9992.400000000001,4.0,17.80952380952382,346.8481341795533,2020-11-29 +976,9982.0,4.0,17.66666666666668,346.72327462049157,2020-11-29 +975,9970.300000000001,4.0,17.714285714285726,338.1457681341401,2020-11-29 +974,9959.400000000001,4.0,17.85714285714287,326.39739018631195,2020-11-29 +973,9948.400000000001,4.0,18.09523809523811,314.78647402322804,2020-11-29 +972,9937.800000000001,4.0,18.000000000000014,306.5679115418054,2020-11-29 +971,9926.7,4.0,18.000000000000014,301.7417474180051,2020-11-29 +970,9916.2,4.0,18.000000000000014,301.62059669181724,2020-11-29 +969,9905.400000000001,4.0,18.000000000000014,306.89890846465653,2020-11-29 +968,9895.1,4.0,18.000000000000014,316.3637390512056,2020-11-29 +967,9884.400000000001,4.0,18.000000000000014,327.26462187435226,2020-11-29 +966,9874.1,4.0,18.09523809523811,334.51033641436277,2020-11-29 +965,9862.800000000001,4.0,17.85714285714287,337.29405445763143,2020-11-29 +978,10003.5,4.0,17.714285714285726,341.63647330327206,2020-11-29 +232,2086.2000000000003,4.0,17.380952380952394,375.49093570343973,2020-11-29 +802,8142.200000000001,4.0,19.952380952380967,349.9440572253749,2020-11-29 +800,8121.200000000001,4.0,19.571428571428584,355.0494201335737,2020-11-29 +129,999.0,4.0,17.2857142857143,352.0628244584342,2020-11-29 +130,1010.4000000000001,4.0,17.333333333333343,359.73600361629946,2020-11-29 +131,1021.6,4.0,17.2857142857143,361.62728163014657,2020-11-29 +132,1033.0,4.0,17.142857142857153,355.4704627764372,2020-11-29 +133,1044.1000000000001,4.0,16.904761904761916,346.68485818393583,2020-11-29 +134,1056.0,4.0,17.00000000000001,341.43985195187196,2020-11-29 +135,1066.1000000000001,4.0,17.00000000000001,342.95812049023823,2020-11-29 +136,1078.3,4.0,17.00000000000001,350.68554679655006,2020-11-29 +137,1089.6000000000001,4.0,17.00000000000001,360.61920222772414,2020-11-29 +138,1101.2,4.0,16.904761904761916,366.1243652865802,2020-11-29 +139,1112.5,4.0,17.047619047619058,364.11215557666475,2020-11-29 +140,1123.8,4.0,17.333333333333343,355.384128693785,2020-11-29 +141,1134.6000000000001,4.0,17.66666666666668,346.3364356354731,2020-11-29 +142,1146.1000000000001,4.0,17.952380952380963,345.53510697980505,2020-11-29 +143,1156.4,4.0,18.09523809523811,354.2151608351686,2020-11-29 +144,1168.4,4.0,18.000000000000014,366.40181214101335,2020-11-29 +145,1180.0,4.0,18.000000000000014,376.4996884067963,2020-11-29 +146,1191.0,4.0,18.09523809523811,380.0212581744523,2020-11-29 +147,1202.5,4.0,17.85714285714287,377.3382219042521,2020-11-29 +148,1213.4,4.0,17.714285714285726,369.67209498818534,2020-11-29 +149,1224.7,4.0,17.66666666666668,360.5020490724834,2020-11-29 +150,1235.7,4.0,17.80952380952382,351.3028225423983,2020-11-29 +151,1246.7,4.0,17.714285714285726,347.44341302388204,2020-11-29 +152,1257.6000000000001,4.0,17.80952380952382,348.71874749727124,2020-11-29 +154,1280.0,4.0,17.80952380952382,354.2826214181746,2020-11-29 +155,1291.0,4.0,17.714285714285726,349.1079716429043,2020-11-29 +156,1302.1000000000001,4.0,17.904761904761916,339.5485138881628,2020-11-29 +128,987.2,4.0,17.142857142857153,340.5034688499955,2020-11-29 +157,1312.6000000000001,4.0,17.61904761904763,329.9188830788423,2020-11-29 +127,976.4000000000001,4.0,16.80952380952382,333.76817330983573,2020-11-29 +125,953.9000000000001,4.0,17.190476190476204,340.4969990882303,2020-11-29 +98,665.5,4.0,17.61904761904763,294.7549118880311,2020-11-29 +99,676.3000000000001,4.0,17.85714285714287,300.11722817407804,2020-11-29 +100,686.4000000000001,4.0,18.09523809523811,297.32279751330464,2020-11-29 +101,696.6,4.0,18.000000000000014,288.2443449823344,2020-11-29 +102,707.2,4.0,18.000000000000014,279.123365832594,2020-11-29 +103,716.6,4.0,18.09523809523811,274.8686493419929,2020-11-29 +104,726.9000000000001,4.0,17.85714285714287,277.6041658607993,2020-11-29 +105,737.5,4.0,17.714285714285726,286.27252066981845,2020-11-29 +106,748.5,4.0,17.66666666666668,294.7576002947658,2020-11-29 +107,758.7,4.0,17.714285714285726,298.8510709066648,2020-11-29 +108,769.2,4.0,17.952380952380963,300.59839028617733,2020-11-29 +109,779.5,4.0,17.952380952380963,301.40081391984864,2020-11-29 +110,790.2,4.0,17.714285714285726,303.4507728814969,2020-11-29 +111,801.1,4.0,17.761904761904773,307.6715944880158,2020-11-29 +112,811.5,4.0,17.66666666666668,311.4079089636028,2020-11-29 +113,821.8000000000001,4.0,17.428571428571438,315.96327801419346,2020-11-29 +114,833.1,4.0,17.571428571428584,320.9797172147441,2020-11-29 +115,844.5,4.0,17.333333333333343,322.64836104647156,2020-11-29 +116,855.5,4.0,17.238095238095248,320.5209021991204,2020-11-29 +117,865.8000000000001,4.0,17.2857142857143,318.7515753217871,2020-11-29 +118,876.7,4.0,17.142857142857153,317.6805818483402,2020-11-29 +119,887.8000000000001,4.0,16.80952380952382,322.5508806972597,2020-11-29 +120,898.5,4.0,17.142857142857153,331.4810808288004,2020-11-29 +121,910.0,4.0,17.190476190476204,340.8069209135258,2020-11-29 +122,921.1,4.0,17.47619047619049,347.315420029268,2020-11-29 +123,932.3000000000001,4.0,17.571428571428584,350.5439800582303,2020-11-29 +124,942.9000000000001,4.0,17.47619047619049,346.4096547374712,2020-11-29 +126,965.3000000000001,4.0,17.142857142857153,334.605417794103,2020-11-29 +158,1323.5,4.0,17.380952380952394,322.5783777063018,2020-11-29 +159,1334.5,4.0,17.190476190476204,324.0208553321422,2020-11-29 +160,1345.5,4.0,17.142857142857153,330.2549610937829,2020-11-29 +204,1763.3000000000002,4.0,18.000000000000014,405.0787936490034,2020-11-29 +205,1774.7,4.0,18.09523809523811,400.1637188035422,2020-11-29 +206,1786.5,4.0,17.85714285714287,394.17911299622483,2020-11-29 +207,1797.8000000000002,4.0,17.80952380952382,389.8322833366103,2020-11-29 +208,1809.5,4.0,17.61904761904763,386.05335899164174,2020-11-29 +209,1820.8000000000002,4.0,17.285714285714295,381.5126076682234,2020-11-29 +210,1831.8000000000002,4.0,17.333333333333343,382.51330564488137,2020-11-29 +211,1843.4,4.0,17.333333333333343,386.32758986941053,2020-11-29 +212,1855.6000000000001,4.0,17.285714285714295,387.9759994536242,2020-11-29 +213,1867.1000000000001,4.0,17.61904761904763,385.72791113572373,2020-11-29 +214,1878.1000000000001,4.0,17.80952380952382,376.38281081049695,2020-11-29 +215,1889.6000000000001,4.0,17.85714285714287,364.8418423806175,2020-11-29 +216,1900.5,4.0,18.09523809523811,358.20936946819967,2020-11-29 +217,1912.0,4.0,18.000000000000014,359.224535878565,2020-11-29 +218,1924.0,4.0,18.000000000000014,369.6491607551043,2020-11-29 +219,1934.9,4.0,18.000000000000014,384.8816483468454,2020-11-29 +220,1946.6000000000001,4.0,18.000000000000014,398.60228807405014,2020-11-29 +221,1958.2,4.0,18.09523809523811,405.84578165868913,2020-11-29 +222,1970.3000000000002,4.0,17.85714285714287,405.0957607231138,2020-11-29 +223,1981.8000000000002,4.0,17.714285714285726,400.0412693805364,2020-11-29 +224,1993.7,4.0,17.66666666666668,396.5662440676098,2020-11-29 +225,2004.9,4.0,17.80952380952382,394.5698067884016,2020-11-29 +226,2017.0,4.0,17.80952380952382,395.1921685537825,2020-11-29 +227,2028.9,4.0,17.761904761904773,394.31846060690077,2020-11-29 +228,2039.4,4.0,17.333333333333343,392.0819095942338,2020-11-29 +229,2051.1,4.0,17.047619047619058,389.1529632857664,2020-11-29 +230,2062.8,4.0,16.80952380952382,386.6078621848109,2020-11-29 +203,1751.3000000000002,4.0,18.000000000000014,407.32903314228474,2020-11-29 +202,1740.1000000000001,4.0,18.000000000000014,402.3539361454019,2020-11-29 +201,1727.7,4.0,18.000000000000014,388.27141290761176,2020-11-29 +200,1716.8000000000002,4.0,18.000000000000014,373.9072546974065,2020-11-29 +161,1356.2,4.0,16.80952380952382,339.96057834001726,2020-11-29 +162,1367.9,4.0,17.047619047619058,348.3688365425334,2020-11-29 +163,1379.1000000000001,4.0,17.333333333333343,352.28138890658835,2020-11-29 +164,1390.2,4.0,17.761904761904773,349.9123556384603,2020-11-29 +165,1401.0,4.0,17.80952380952382,345.91574436614684,2020-11-29 +166,1412.3000000000002,4.0,17.904761904761916,340.96341236677085,2020-11-29 +167,1423.0,4.0,17.61904761904763,331.48424250887473,2020-11-29 +168,1434.2,4.0,17.285714285714295,343.84541572596345,2020-11-29 +169,1444.7,4.0,17.238095238095248,372.41402542616595,2020-11-29 +170,1455.8000000000002,4.0,16.80952380952382,366.6163278076083,2020-11-29 +171,1466.9,4.0,18.190476190476204,301.4575913157679,2020-11-29 +172,1477.9,4.0,19.857142857142872,196.1560749539105,2020-11-29 +184,1540.9,4.0,22.809523809523824,185.3037398778707,2020-11-29 +97,655.2,4.0,17.714285714285726,283.26750791204745,2020-11-29 +185,1551.1000000000001,4.0,19.952380952380963,275.3470918921715,2020-11-29 +187,1573.4,4.0,18.047619047619058,374.5466833486461,2020-11-29 +188,1583.9,4.0,18.047619047619058,385.56635195932233,2020-11-29 +189,1594.6000000000001,4.0,17.90476190476192,391.3897701350103,2020-11-29 +190,1606.6000000000001,4.0,18.000000000000014,393.6548869101857,2020-11-29 +191,1617.5,4.0,17.90476190476192,390.6057320086701,2020-11-29 +192,1628.3000000000002,4.0,18.142857142857153,382.4826936808852,2020-11-29 +193,1639.3000000000002,4.0,18.2857142857143,372.941354579208,2020-11-29 +194,1649.9,4.0,18.333333333333346,364.5098327497159,2020-11-29 +195,1661.1000000000001,4.0,18.2857142857143,362.70239839334386,2020-11-29 +196,1672.1000000000001,4.0,18.142857142857153,363.7110617977785,2020-11-29 +197,1683.5,4.0,17.90476190476192,363.54757898572416,2020-11-29 +198,1694.6000000000001,4.0,18.000000000000014,362.70665660355115,2020-11-29 +199,1705.6000000000001,4.0,18.000000000000014,365.5277412706448,2020-11-29 +186,1562.2,4.0,18.428571428571438,341.3714727915964,2020-11-29 +96,644.5,4.0,18.047619047619058,267.4984767015312,2020-11-29 +95,634.5,4.0,18.523809523809536,254.7922229167511,2020-11-29 +94,625.0,4.0,19.142857142857153,249.50735603398914,2020-11-29 +767,7747.200000000001,4.0,18.09523809523811,360.6622779555737,2020-11-29 +766,7736.700000000001,4.0,17.952380952380963,359.4394995677959,2020-11-29 +765,7725.200000000001,4.0,17.47619047619049,372.14022462625115,2020-11-29 +764,7714.400000000001,4.0,17.428571428571438,390.764186109311,2020-11-29 +763,7702.8,4.0,17.714285714285726,402.188893182461,2020-11-29 +762,7690.900000000001,4.0,18.23809523809525,398.5779774317979,2020-11-29 +761,7679.5,4.0,18.90476190476192,384.4775559893865,2020-11-29 +760,7668.900000000001,4.0,19.190476190476204,368.3571735348826,2020-11-29 +759,7657.700000000001,4.0,19.000000000000014,357.8018761719318,2020-11-29 +758,7646.5,4.0,19.000000000000014,355.27708582822663,2020-11-29 +757,7636.200000000001,4.0,19.000000000000014,359.4024505934906,2020-11-29 +756,7626.1,4.0,19.000000000000014,364.15292339772327,2020-11-29 +755,7615.0,4.0,18.90476190476192,367.2192948215843,2020-11-29 +753,7593.0,4.0,19.2857142857143,363.30277706015784,2020-11-29 +752,7582.6,4.0,19.333333333333346,360.0838882105397,2020-11-29 +751,7572.1,4.0,19.2857142857143,362.25603742614817,2020-11-29 +750,7561.3,4.0,19.142857142857157,365.5596412168078,2020-11-29 +749,7550.400000000001,4.0,18.90476190476192,364.2995785303566,2020-11-29 +22,83.4,4.0,26.000000000000014,108.29898135343093,2020-11-29 +23,89.2,4.0,25.619047619047635,116.41297464179092,2020-11-29 +24,95.2,4.0,26.33333333333335,119.31918271979049,2020-11-29 +25,101.10000000000001,4.0,26.619047619047635,118.75003003863452,2020-11-29 +26,107.0,4.0,26.52380952380954,118.35521236298275,2020-11-29 +27,112.9,4.0,26.571428571428587,119.89038106538636,2020-11-29 +28,118.4,4.0,26.33333333333335,123.30416266894184,2020-11-29 +29,125.5,4.0,26.238095238095255,128.24216428974614,2020-11-29 +30,131.5,4.0,26.285714285714302,131.3274534719157,2020-11-29 +768,7759.3,4.0,18.000000000000014,371.0914880112939,2020-11-29 +769,7770.1,4.0,18.000000000000014,379.03235735191197,2020-11-29 +770,7781.6,4.0,18.000000000000014,378.79352075041345,2020-11-29 +771,7792.700000000001,4.0,18.09523809523811,373.0014047920795,2020-11-29 +799,8110.900000000001,4.0,19.047619047619058,357.05457568818855,2020-11-29 +798,8099.900000000001,4.0,18.61904761904763,363.72246798344446,2020-11-29 +797,8089.1,4.0,18.047619047619058,372.7844004573876,2020-11-29 +796,8078.200000000001,4.0,17.61904761904763,378.6575811569883,2020-11-29 +795,8066.900000000001,4.0,17.523809523809536,377.6364559379871,2020-11-29 +794,8055.200000000001,4.0,17.523809523809533,367.5751945478706,2020-11-29 +793,8043.8,4.0,17.380952380952394,356.5268860034591,2020-11-29 +792,8032.8,4.0,17.523809523809533,351.7643941859941,2020-11-29 +791,8021.700000000001,4.0,17.523809523809536,355.9042605293085,2020-11-29 +790,8010.400000000001,4.0,17.80952380952382,364.7875643392382,2020-11-29 +789,7999.6,4.0,17.85714285714287,376.21929848424395,2020-11-29 +788,7988.1,4.0,18.09523809523811,383.5066853041841,2020-11-29 +787,7976.5,4.0,18.000000000000014,385.2701484991172,2020-11-29 +31,137.70000000000002,4.0,25.95238095238097,129.4418596746988,2020-11-29 +786,7965.6,4.0,18.09523809523811,381.26020730177413,2020-11-29 +784,7942.400000000001,4.0,17.66666666666668,374.681600932617,2020-11-29 +783,7931.3,4.0,17.333333333333343,381.9285297969704,2020-11-29 +782,7919.6,4.0,16.952380952380963,393.0899441764244,2020-11-29 +781,7908.1,4.0,16.952380952380963,402.7346978966715,2020-11-29 +780,7896.6,4.0,17.333333333333343,406.9415399323194,2020-11-29 +779,7885.0,4.0,17.761904761904773,404.6748753613723,2020-11-29 +778,7873.900000000001,4.0,17.904761904761916,400.55740210669876,2020-11-29 +777,7862.1,4.0,17.761904761904773,395.18806917780046,2020-11-29 +776,7849.900000000001,4.0,17.238095238095248,388.84179665607155,2020-11-29 +775,7839.0,4.0,17.095238095238106,381.93497992333204,2020-11-29 +774,7826.8,4.0,17.238095238095248,375.12035431154266,2020-11-29 +773,7815.0,4.0,17.66666666666668,368.74258619854055,2020-11-29 +772,7804.0,4.0,17.952380952380963,368.14700994477596,2020-11-29 +785,7953.8,4.0,17.952380952380963,375.9135028981673,2020-11-29 +801,8131.700000000001,4.0,19.90476190476192,353.1978957414607,2020-11-29 +32,143.1,4.0,26.095238095238113,123.32972697807588,2020-11-29 +34,154.9,4.0,27.000000000000018,110.20419577975065,2020-11-29 +67,391.5,4.0,21.761904761904777,139.23755425473237,2020-11-29 +68,397.90000000000003,4.0,22.000000000000014,135.84631749620198,2020-11-29 +69,405.5,4.0,21.619047619047635,138.00945743335984,2020-11-29 +70,413.1,4.0,21.142857142857157,144.61710719398528,2020-11-29 +71,421.3,4.0,20.66666666666668,151.08736697894116,2020-11-29 +72,429.0,4.0,20.2857142857143,154.70667925105658,2020-11-29 +73,437.0,4.0,20.190476190476204,156.56199470468098,2020-11-29 +74,445.3,4.0,20.142857142857157,158.8374815902829,2020-11-29 +75,453.40000000000003,4.0,19.90476190476192,163.13374673804793,2020-11-29 +76,461.20000000000005,4.0,20.000000000000014,168.29985362731048,2020-11-29 +77,469.5,4.0,20.000000000000014,172.08297573264576,2020-11-29 +78,477.1,4.0,20.000000000000014,174.55504218367165,2020-11-29 +79,485.70000000000005,4.0,20.000000000000014,176.49232086715108,2020-11-29 +80,493.8,4.0,20.000000000000014,178.68621275614097,2020-11-29 +81,502.20000000000005,4.0,20.09523809523811,183.09517808719386,2020-11-29 +82,510.8,4.0,19.952380952380967,190.62778311035004,2020-11-29 +83,519.5,4.0,19.66666666666668,202.611763777476,2020-11-29 +84,529.0,4.0,19.428571428571445,219.73493750324286,2020-11-29 +85,538.9,4.0,18.90476190476192,237.7808294813476,2020-11-29 +86,548.2,4.0,18.61904761904763,250.82684396381302,2020-11-29 +87,558.2,4.0,18.66666666666668,257.5688359008617,2020-11-29 +88,568.2,4.0,18.80952380952382,257.59168604868063,2020-11-29 +89,577.4,4.0,18.714285714285726,255.06252168245712,2020-11-29 +90,586.4,4.0,18.80952380952382,254.14361117906788,2020-11-29 +91,595.6,4.0,18.66666666666668,254.2499934320163,2020-11-29 +92,605.7,4.0,18.714285714285726,251.90686400045456,2020-11-29 +93,615.3000000000001,4.0,18.952380952380963,249.88569785322912,2020-11-29 +66,384.3,4.0,21.33333333333335,147.0243975620257,2020-11-29 +65,377.3,4.0,21.142857142857157,155.20583157506456,2020-11-29 +64,369.90000000000003,4.0,20.66666666666668,160.94936954458058,2020-11-29 +63,362.3,4.0,20.761904761904773,163.6943227940303,2020-11-29 +35,160.8,4.0,27.238095238095255,109.45602644913606,2020-11-29 +36,166.9,4.0,27.238095238095255,110.80904717176473,2020-11-29 +37,172.8,4.0,26.90476190476192,111.5610378168562,2020-11-29 +38,178.5,4.0,27.000000000000018,110.70481037992451,2020-11-29 +39,183.9,4.0,26.90476190476192,108.29630246754857,2020-11-29 +40,190.10000000000002,4.0,27.047619047619065,105.22916473256895,2020-11-29 +41,195.3,4.0,27.42857142857145,103.04030790455639,2020-11-29 +42,201.0,4.0,27.904761904761923,102.78895880580048,2020-11-29 +43,206.3,4.0,27.666666666666686,106.63311025235873,2020-11-29 +44,212.60000000000002,4.0,26.42857142857145,115.75727389825467,2020-11-29 +45,218.60000000000002,4.0,24.33333333333335,129.4776530794528,2020-11-29 +46,226.0,4.0,22.380952380952394,144.47597927075026,2020-11-29 +47,233.8,4.0,21.14285714285716,158.2257150456021,2020-11-29 +33,149.5,4.0,26.619047619047635,115.68533438909085,2020-11-29 +48,241.60000000000002,4.0,20.952380952380963,169.35152023340612,2020-11-29 +50,258.2,4.0,20.66666666666668,187.83584256041283,2020-11-29 +51,266.3,4.0,20.333333333333346,196.7511744069964,2020-11-29 +52,274.90000000000003,4.0,19.952380952380967,203.11093638019364,2020-11-29 +53,283.40000000000003,4.0,19.857142857142872,205.9699597933338,2020-11-29 +54,291.6,4.0,20.380952380952394,204.691270463664,2020-11-29 +55,299.7,4.0,21.000000000000014,199.63034684379969,2020-11-29 +56,307.70000000000005,4.0,21.619047619047635,192.4025142316713,2020-11-29 +57,315.70000000000005,4.0,22.04761904761906,183.5938673072087,2020-11-29 +58,323.70000000000005,4.0,22.09523809523811,174.82689423552785,2020-11-29 +59,331.6,4.0,22.190476190476204,168.2066222754396,2020-11-29 +60,339.0,4.0,21.809523809523824,164.78262811359272,2020-11-29 +61,347.20000000000005,4.0,21.380952380952394,163.8112254775475,2020-11-29 +62,354.70000000000005,4.0,21.000000000000014,164.58459602843928,2020-11-29 +49,250.10000000000002,4.0,20.85714285714287,178.79992980671943,2020-11-29 +1063,10947.900000000001,4.0,16.166666666666682,384.9871349981344,2020-11-29 +754,7603.8,4.0,19.142857142857157,366.7765786060669,2020-11-29 +1065,10969.400000000001,4.0,17.73809523809527,273.76024357457095,2020-11-29 +747,7529.400000000001,4.0,19.142857142857157,344.8464440503524,2020-11-29 +1064,10959.900000000001,4.0,16.523809523809547,352.65651799590177,2020-11-29 +748,7539.900000000001,4.0,18.90476190476192,357.117002989797,2020-11-29 +4,40.04004004004004,4.0,20.000000000000014,100.00000000000006,2020-12-02 +640,6406.406406406408,4.0,20.000000000000014,100.00000000000006,2020-12-02 +639,6396.396396396396,4.0,20.000000000000014,100.00000000000006,2020-12-02 +638,6386.386386386385,4.0,20.000000000000014,100.00000000000006,2020-12-02 +637,6376.376376376375,4.0,20.000000000000014,100.00000000000006,2020-12-02 +636,6366.366366366367,4.0,20.000000000000014,100.00000000000006,2020-12-02 +635,6356.3563563563575,4.0,20.000000000000014,100.00000000000006,2020-12-02 +634,6346.346346346347,4.0,20.000000000000014,100.00000000000006,2020-12-02 +633,6336.336336336335,4.0,20.000000000000014,100.00000000000006,2020-12-02 +632,6326.326326326326,4.0,20.000000000000014,100.00000000000006,2020-12-02 +631,6316.316316316316,4.0,20.000000000000014,100.00000000000006,2020-12-02 +630,6306.306306306306,4.0,20.000000000000014,100.00000000000006,2020-12-02 +629,6296.296296296297,4.0,20.000000000000014,100.00000000000006,2020-12-02 +628,6286.286286286287,4.0,20.000000000000014,100.00000000000006,2020-12-02 +627,6276.276276276276,4.0,20.000000000000014,100.00000000000006,2020-12-02 +626,6266.266266266266,4.0,20.000000000000014,100.00000000000006,2020-12-02 +625,6256.256256256256,4.0,20.000000000000014,100.00000000000006,2020-12-02 +624,6246.246246246246,4.0,20.000000000000014,100.00000000000006,2020-12-02 +623,6236.236236236236,4.0,20.000000000000014,100.00000000000006,2020-12-02 +622,6226.226226226227,4.0,20.000000000000014,100.00000000000006,2020-12-02 +621,6216.216216216216,4.0,20.000000000000014,100.00000000000006,2020-12-02 +620,6206.206206206206,4.0,20.000000000000014,100.00000000000006,2020-12-02 +619,6196.196196196196,4.0,20.000000000000014,100.00000000000006,2020-12-02 +618,6186.186186186186,4.0,20.000000000000014,100.00000000000006,2020-12-02 +617,6176.176176176175,4.0,20.000000000000014,100.00000000000006,2020-12-02 +616,6166.166166166167,4.0,20.000000000000014,100.00000000000006,2020-12-02 +615,6156.156156156156,4.0,20.000000000000014,100.00000000000006,2020-12-02 +614,6146.146146146146,4.0,20.000000000000014,100.00000000000006,2020-12-02 +641,6416.416416416418,4.0,20.000000000000014,100.00000000000006,2020-12-02 +613,6136.136136136137,4.0,20.000000000000014,100.00000000000006,2020-12-02 +642,6426.426426426427,4.0,20.000000000000014,100.00000000000006,2020-12-02 +644,6446.446446446446,4.0,20.000000000000014,100.00000000000006,2020-12-02 +671,6716.716716716716,4.0,20.000000000000014,100.00000000000006,2020-12-02 +670,6706.706706706706,4.0,20.000000000000014,100.00000000000006,2020-12-02 +669,6696.696696696697,4.0,20.000000000000014,100.00000000000006,2020-12-02 +668,6686.686686686687,4.0,20.000000000000014,100.00000000000006,2020-12-02 +667,6676.676676676677,4.0,20.000000000000014,100.00000000000006,2020-12-02 +666,6666.666666666668,4.0,20.000000000000014,100.00000000000006,2020-12-02 +665,6656.656656656656,4.0,20.000000000000014,100.00000000000006,2020-12-02 +664,6646.646646646645,4.0,20.000000000000014,100.00000000000006,2020-12-02 +663,6636.636636636637,4.0,20.000000000000014,100.00000000000006,2020-12-02 +662,6626.6266266266275,4.0,20.000000000000014,100.00000000000006,2020-12-02 +661,6616.616616616618,4.0,20.000000000000014,100.00000000000006,2020-12-02 +660,6606.606606606607,4.0,20.000000000000014,100.00000000000006,2020-12-02 +659,6596.596596596597,4.0,20.000000000000014,100.00000000000006,2020-12-02 +658,6586.586586586585,4.0,20.000000000000014,100.00000000000006,2020-12-02 +657,6576.576576576576,4.0,20.000000000000014,100.00000000000006,2020-12-02 +656,6566.566566566567,4.0,20.000000000000014,100.00000000000006,2020-12-02 +655,6556.556556556557,4.0,20.000000000000014,100.00000000000006,2020-12-02 +654,6546.546546546547,4.0,20.000000000000014,100.00000000000006,2020-12-02 +653,6536.536536536537,4.0,20.000000000000014,100.00000000000006,2020-12-02 +652,6526.526526526526,4.0,20.000000000000014,100.00000000000006,2020-12-02 +651,6516.516516516516,4.0,20.000000000000014,100.00000000000006,2020-12-02 +650,6506.506506506506,4.0,20.000000000000014,100.00000000000006,2020-12-02 +649,6496.496496496497,4.0,20.000000000000014,100.00000000000006,2020-12-02 +648,6486.486486486487,4.0,20.000000000000014,100.00000000000006,2020-12-02 +647,6476.476476476477,4.0,20.000000000000014,100.00000000000006,2020-12-02 +646,6466.466466466466,4.0,20.000000000000014,100.00000000000006,2020-12-02 +645,6456.456456456456,4.0,20.000000000000014,100.00000000000006,2020-12-02 +643,6436.4364364364355,4.0,20.000000000000014,100.00000000000006,2020-12-02 +612,6126.126126126125,4.0,20.000000000000014,100.00000000000006,2020-12-02 +611,6116.116116116115,4.0,20.000000000000014,100.00000000000006,2020-12-02 +610,6106.106106106106,4.0,20.000000000000014,100.00000000000006,2020-12-02 +577,5775.775775775775,4.0,20.000000000000014,100.00000000000006,2020-12-02 +576,5765.765765765766,4.0,20.000000000000014,100.00000000000006,2020-12-02 +575,5755.755755755756,4.0,20.000000000000014,100.00000000000006,2020-12-02 +574,5745.745745745746,4.0,20.000000000000014,100.00000000000006,2020-12-02 +573,5735.735735735736,4.0,20.000000000000014,100.00000000000006,2020-12-02 +572,5725.725725725726,4.0,20.000000000000014,100.00000000000006,2020-12-02 +571,5715.715715715715,4.0,20.000000000000014,100.00000000000006,2020-12-02 +570,5705.705705705705,4.0,20.000000000000014,100.00000000000006,2020-12-02 +569,5695.695695695696,4.0,20.000000000000014,100.00000000000006,2020-12-02 +568,5685.685685685686,4.0,20.000000000000014,100.00000000000006,2020-12-02 +567,5675.675675675676,4.0,20.000000000000014,100.00000000000006,2020-12-02 +566,5665.665665665667,4.0,20.000000000000014,100.00000000000006,2020-12-02 +565,5655.655655655655,4.0,20.000000000000014,100.00000000000006,2020-12-02 +564,5645.645645645644,4.0,20.000000000000014,100.00000000000006,2020-12-02 +563,5635.635635635636,4.0,20.000000000000014,100.00000000000006,2020-12-02 +562,5625.6256256256265,4.0,20.000000000000014,100.00000000000006,2020-12-02 +561,5615.615615615617,4.0,20.000000000000014,100.00000000000006,2020-12-02 +560,5605.605605605606,4.0,20.000000000000014,100.00000000000006,2020-12-02 +559,5595.595595595596,4.0,20.000000000000014,100.00000000000006,2020-12-02 +558,5585.585585585584,4.0,20.000000000000014,100.00000000000006,2020-12-02 +557,5575.575575575575,4.0,20.000000000000014,100.00000000000006,2020-12-02 +556,5565.565565565566,4.0,20.000000000000014,100.00000000000006,2020-12-02 +555,5555.555555555556,4.0,20.000000000000014,100.00000000000006,2020-12-02 +554,5545.545545545546,4.0,20.000000000000014,100.00000000000006,2020-12-02 +553,5535.535535535536,4.0,20.000000000000014,100.00000000000006,2020-12-02 +552,5525.525525525525,4.0,20.000000000000014,100.00000000000006,2020-12-02 +551,5515.515515515515,4.0,20.000000000000014,100.00000000000006,2020-12-02 +578,5785.785785785786,4.0,20.000000000000014,100.00000000000006,2020-12-02 +579,5795.795795795796,4.0,20.000000000000014,100.00000000000006,2020-12-02 +580,5805.805805805806,4.0,20.000000000000014,100.00000000000006,2020-12-02 +581,5815.815815815816,4.0,20.000000000000014,100.00000000000006,2020-12-02 +609,6096.096096096097,4.0,20.000000000000014,100.00000000000006,2020-12-02 +608,6086.086086086087,4.0,20.000000000000014,100.00000000000006,2020-12-02 +607,6076.076076076076,4.0,20.000000000000014,100.00000000000006,2020-12-02 +606,6066.066066066066,4.0,20.000000000000014,100.00000000000006,2020-12-02 +605,6056.056056056056,4.0,20.000000000000014,100.00000000000006,2020-12-02 +604,6046.046046046046,4.0,20.000000000000014,100.00000000000006,2020-12-02 +603,6036.036036036036,4.0,20.000000000000014,100.00000000000006,2020-12-02 +602,6026.026026026026,4.0,20.000000000000014,100.00000000000006,2020-12-02 +601,6016.016016016016,4.0,20.000000000000014,100.00000000000006,2020-12-02 +600,6006.006006006006,4.0,20.000000000000014,100.00000000000006,2020-12-02 +599,5995.995995995996,4.0,20.000000000000014,100.00000000000006,2020-12-02 +598,5985.985985985986,4.0,20.000000000000014,100.00000000000006,2020-12-02 +597,5975.975975975976,4.0,20.000000000000014,100.00000000000006,2020-12-02 +672,6726.726726726727,4.0,20.000000000000014,100.00000000000006,2020-12-02 +596,5965.965965965966,4.0,20.000000000000014,100.00000000000006,2020-12-02 +594,5945.945945945946,4.0,20.000000000000014,100.00000000000006,2020-12-02 +593,5935.935935935936,4.0,20.000000000000014,100.00000000000006,2020-12-02 +592,5925.925925925926,4.0,20.000000000000014,100.00000000000006,2020-12-02 +591,5915.915915915915,4.0,20.000000000000014,100.00000000000006,2020-12-02 +590,5905.9059059059055,4.0,20.000000000000014,100.00000000000006,2020-12-02 +589,5895.895895895896,4.0,20.000000000000014,100.00000000000006,2020-12-02 +588,5885.885885885887,4.0,20.000000000000014,100.00000000000006,2020-12-02 +587,5875.875875875877,4.0,20.000000000000014,100.00000000000006,2020-12-02 +586,5865.865865865865,4.0,20.000000000000014,100.00000000000006,2020-12-02 +585,5855.855855855856,4.0,20.000000000000014,100.00000000000006,2020-12-02 +584,5845.845845845846,4.0,20.000000000000014,100.00000000000006,2020-12-02 +583,5835.835835835836,4.0,20.000000000000014,100.00000000000006,2020-12-02 +582,5825.8258258258265,4.0,20.000000000000014,100.00000000000006,2020-12-02 +595,5955.955955955956,4.0,20.000000000000014,100.00000000000006,2020-12-02 +550,5505.505505505505,4.0,20.000000000000014,100.00000000000006,2020-12-02 +673,6736.736736736737,4.0,20.000000000000014,100.00000000000006,2020-12-02 +675,6756.756756756757,4.0,20.000000000000014,100.00000000000006,2020-12-02 +765,7657.657657657657,4.0,20.000000000000014,100.00000000000006,2020-12-02 +764,7647.647647647646,4.0,20.000000000000014,100.00000000000006,2020-12-02 +763,7637.6376376376365,4.0,20.000000000000014,100.00000000000006,2020-12-02 +762,7627.6276276276285,4.0,20.000000000000014,100.00000000000006,2020-12-02 +761,7617.617617617619,4.0,20.000000000000014,100.00000000000006,2020-12-02 +760,7607.607607607608,4.0,20.000000000000014,100.00000000000006,2020-12-02 +759,7597.597597597598,4.0,20.000000000000014,100.00000000000006,2020-12-02 +758,7587.587587587586,4.0,20.000000000000014,100.00000000000006,2020-12-02 +757,7577.577577577577,4.0,20.000000000000014,100.00000000000006,2020-12-02 +756,7567.567567567566,4.0,20.000000000000014,100.00000000000006,2020-12-02 +755,7557.5575575575585,4.0,20.000000000000014,100.00000000000006,2020-12-02 +754,7547.547547547548,4.0,20.000000000000014,100.00000000000006,2020-12-02 +753,7537.537537537538,4.0,20.000000000000014,100.00000000000006,2020-12-02 +752,7527.527527527527,4.0,20.000000000000014,100.00000000000006,2020-12-02 +751,7517.517517517517,4.0,20.000000000000014,100.00000000000006,2020-12-02 +750,7507.507507507507,4.0,20.000000000000014,100.00000000000006,2020-12-02 +749,7497.4974974974975,4.0,20.000000000000014,100.00000000000006,2020-12-02 +748,7487.487487487488,4.0,20.000000000000014,100.00000000000006,2020-12-02 +747,7477.477477477478,4.0,20.000000000000014,100.00000000000006,2020-12-02 +746,7467.467467467467,4.0,20.000000000000014,100.00000000000006,2020-12-02 +745,7457.457457457457,4.0,20.000000000000014,100.00000000000006,2020-12-02 +744,7447.447447447447,4.0,20.000000000000014,100.00000000000006,2020-12-02 +743,7437.4374374374365,4.0,20.000000000000014,100.00000000000006,2020-12-02 +742,7427.427427427428,4.0,20.000000000000014,100.00000000000006,2020-12-02 +741,7417.417417417419,4.0,20.000000000000014,100.00000000000006,2020-12-02 +740,7407.407407407409,4.0,20.000000000000014,100.00000000000006,2020-12-02 +739,7397.397397397397,4.0,20.000000000000014,100.00000000000006,2020-12-02 +766,7667.667667667669,4.0,20.000000000000014,100.00000000000006,2020-12-02 +738,7387.387387387386,4.0,20.000000000000014,100.00000000000006,2020-12-02 +767,7677.677677677678,4.0,20.000000000000014,100.00000000000006,2020-12-02 +769,7697.697697697698,4.0,20.000000000000014,100.00000000000006,2020-12-02 +796,7967.967967967967,4.0,20.000000000000014,100.00000000000006,2020-12-02 +795,7957.957957957958,4.0,20.000000000000014,100.00000000000006,2020-12-02 +794,7947.947947947948,4.0,20.000000000000014,100.00000000000006,2020-12-02 +793,7937.937937937938,4.0,20.000000000000014,100.00000000000006,2020-12-02 +792,7927.927927927928,4.0,20.000000000000014,100.00000000000006,2020-12-02 +791,7917.917917917917,4.0,20.000000000000014,100.00000000000006,2020-12-02 +790,7907.907907907907,4.0,20.000000000000014,100.00000000000006,2020-12-02 +789,7897.897897897898,4.0,20.000000000000014,100.00000000000006,2020-12-02 +788,7887.887887887889,4.0,20.000000000000014,100.00000000000006,2020-12-02 +787,7877.877877877879,4.0,20.000000000000014,100.00000000000006,2020-12-02 +786,7867.867867867867,4.0,20.000000000000014,100.00000000000006,2020-12-02 +785,7857.857857857858,4.0,20.000000000000014,100.00000000000006,2020-12-02 +784,7847.847847847848,4.0,20.000000000000014,100.00000000000006,2020-12-02 +783,7837.837837837837,4.0,20.000000000000014,100.00000000000006,2020-12-02 +782,7827.8278278278285,4.0,20.000000000000014,100.00000000000006,2020-12-02 +781,7817.817817817819,4.0,20.000000000000014,100.00000000000006,2020-12-02 +780,7807.807807807808,4.0,20.000000000000014,100.00000000000006,2020-12-02 +779,7797.797797797798,4.0,20.000000000000014,100.00000000000006,2020-12-02 +778,7787.787787787788,4.0,20.000000000000014,100.00000000000006,2020-12-02 +777,7777.777777777777,4.0,20.000000000000014,100.00000000000006,2020-12-02 +776,7767.767767767766,4.0,20.000000000000014,100.00000000000006,2020-12-02 +775,7757.757757757758,4.0,20.000000000000014,100.00000000000006,2020-12-02 +774,7747.747747747748,4.0,20.000000000000014,100.00000000000006,2020-12-02 +773,7737.737737737738,4.0,20.000000000000014,100.00000000000006,2020-12-02 +772,7727.727727727728,4.0,20.000000000000014,100.00000000000006,2020-12-02 +771,7717.717717717717,4.0,20.000000000000014,100.00000000000006,2020-12-02 +770,7707.707707707707,4.0,20.000000000000014,100.00000000000006,2020-12-02 +768,7687.687687687688,4.0,20.000000000000014,100.00000000000006,2020-12-02 +737,7377.377377377376,4.0,20.000000000000014,100.00000000000006,2020-12-02 +736,7367.367367367366,4.0,20.000000000000014,100.00000000000006,2020-12-02 +735,7357.3573573573585,4.0,20.000000000000014,100.00000000000006,2020-12-02 +702,7027.0270270270275,4.0,20.000000000000014,100.00000000000006,2020-12-02 +701,7017.017017017017,4.0,20.000000000000014,100.00000000000006,2020-12-02 +700,7007.007007007007,4.0,20.000000000000014,100.00000000000006,2020-12-02 +699,6996.996996996997,4.0,20.000000000000014,100.00000000000006,2020-12-02 +698,6986.986986986987,4.0,20.000000000000014,100.00000000000006,2020-12-02 +697,6976.976976976977,4.0,20.000000000000014,100.00000000000006,2020-12-02 +696,6966.9669669669665,4.0,20.000000000000014,100.00000000000006,2020-12-02 +695,6956.956956956957,4.0,20.000000000000014,100.00000000000006,2020-12-02 +694,6946.946946946947,4.0,20.000000000000014,100.00000000000006,2020-12-02 +693,6936.936936936937,4.0,20.000000000000014,100.00000000000006,2020-12-02 +692,6926.926926926927,4.0,20.000000000000014,100.00000000000006,2020-12-02 +691,6916.916916916916,4.0,20.000000000000014,100.00000000000006,2020-12-02 +690,6906.906906906906,4.0,20.000000000000014,100.00000000000006,2020-12-02 +689,6896.896896896897,4.0,20.000000000000014,100.00000000000006,2020-12-02 +688,6886.886886886888,4.0,20.000000000000014,100.00000000000006,2020-12-02 +687,6876.876876876878,4.0,20.000000000000014,100.00000000000006,2020-12-02 +686,6866.866866866866,4.0,20.000000000000014,100.00000000000006,2020-12-02 +685,6856.856856856857,4.0,20.000000000000014,100.00000000000006,2020-12-02 +684,6846.846846846847,4.0,20.000000000000014,100.00000000000006,2020-12-02 +683,6836.836836836837,4.0,20.000000000000014,100.00000000000006,2020-12-02 +682,6826.8268268268275,4.0,20.000000000000014,100.00000000000006,2020-12-02 +681,6816.816816816817,4.0,20.000000000000014,100.00000000000006,2020-12-02 +680,6806.806806806807,4.0,20.000000000000014,100.00000000000006,2020-12-02 +679,6796.796796796797,4.0,20.000000000000014,100.00000000000006,2020-12-02 +678,6786.786786786787,4.0,20.000000000000014,100.00000000000006,2020-12-02 +677,6776.776776776776,4.0,20.000000000000014,100.00000000000006,2020-12-02 +676,6766.766766766767,4.0,20.000000000000014,100.00000000000006,2020-12-02 +703,7037.037037037037,4.0,20.000000000000014,100.00000000000006,2020-12-02 +704,7047.047047047047,4.0,20.000000000000014,100.00000000000006,2020-12-02 +705,7057.057057057057,4.0,20.000000000000014,100.00000000000006,2020-12-02 +706,7067.067067067067,4.0,20.000000000000014,100.00000000000006,2020-12-02 +734,7347.347347347348,4.0,20.000000000000014,100.00000000000006,2020-12-02 +733,7337.337337337336,4.0,20.000000000000014,100.00000000000006,2020-12-02 +732,7327.327327327327,4.0,20.000000000000014,100.00000000000006,2020-12-02 +731,7317.317317317317,4.0,20.000000000000014,100.00000000000006,2020-12-02 +730,7307.307307307307,4.0,20.000000000000014,100.00000000000006,2020-12-02 +729,7297.297297297298,4.0,20.000000000000014,100.00000000000006,2020-12-02 +728,7287.287287287288,4.0,20.000000000000014,100.00000000000006,2020-12-02 +727,7277.277277277277,4.0,20.000000000000014,100.00000000000006,2020-12-02 +726,7267.267267267267,4.0,20.000000000000014,100.00000000000006,2020-12-02 +725,7257.257257257257,4.0,20.000000000000014,100.00000000000006,2020-12-02 +724,7247.247247247247,4.0,20.000000000000014,100.00000000000006,2020-12-02 +723,7237.237237237237,4.0,20.000000000000014,100.00000000000006,2020-12-02 +722,7227.227227227228,4.0,20.000000000000014,100.00000000000006,2020-12-02 +674,6746.746746746747,4.0,20.000000000000014,100.00000000000006,2020-12-02 +721,7217.217217217217,4.0,20.000000000000014,100.00000000000006,2020-12-02 +719,7197.197197197197,4.0,20.000000000000014,100.00000000000006,2020-12-02 +718,7187.187187187187,4.0,20.000000000000014,100.00000000000006,2020-12-02 +717,7177.177177177176,4.0,20.000000000000014,100.00000000000006,2020-12-02 +716,7167.167167167168,4.0,20.000000000000014,100.00000000000006,2020-12-02 +715,7157.1571571571585,4.0,20.000000000000014,100.00000000000006,2020-12-02 +714,7147.147147147147,4.0,20.000000000000014,100.00000000000006,2020-12-02 +713,7137.137137137138,4.0,20.000000000000014,100.00000000000006,2020-12-02 +712,7127.127127127126,4.0,20.000000000000014,100.00000000000006,2020-12-02 +711,7117.117117117116,4.0,20.000000000000014,100.00000000000006,2020-12-02 +710,7107.107107107107,4.0,20.000000000000014,100.00000000000006,2020-12-02 +709,7097.097097097098,4.0,20.000000000000014,100.00000000000006,2020-12-02 +708,7087.087087087088,4.0,20.000000000000014,100.00000000000006,2020-12-02 +707,7077.077077077077,4.0,20.000000000000014,100.00000000000006,2020-12-02 +720,7207.207207207207,4.0,20.000000000000014,100.00000000000006,2020-12-02 +797,7977.977977977978,4.0,20.000000000000014,100.00000000000006,2020-12-02 +549,5495.4954954954965,4.0,20.000000000000014,100.00000000000006,2020-12-02 +547,5475.475475475476,4.0,20.000000000000014,100.00000000000006,2020-12-02 +389,3893.893893893894,4.0,20.000000000000014,100.00000000000006,2020-12-02 +388,3883.883883883884,4.0,20.000000000000014,100.00000000000006,2020-12-02 +387,3873.873873873874,4.0,20.000000000000014,100.00000000000006,2020-12-02 +386,3863.863863863864,4.0,20.000000000000014,100.00000000000006,2020-12-02 +385,3853.8538538538537,4.0,20.000000000000014,100.00000000000006,2020-12-02 +384,3843.843843843844,4.0,20.000000000000014,100.00000000000006,2020-12-02 +383,3833.8338338338344,4.0,20.000000000000014,100.00000000000006,2020-12-02 +382,3823.8238238238237,4.0,20.000000000000014,100.00000000000006,2020-12-02 +381,3813.8138138138142,4.0,20.000000000000014,100.00000000000006,2020-12-02 +380,3803.803803803804,4.0,20.000000000000014,100.00000000000006,2020-12-02 +379,3793.793793793793,4.0,20.000000000000014,100.00000000000006,2020-12-02 +378,3783.783783783784,4.0,20.000000000000014,100.00000000000006,2020-12-02 +377,3773.773773773774,4.0,20.000000000000014,100.00000000000006,2020-12-02 +376,3763.763763763764,4.0,20.000000000000014,100.00000000000006,2020-12-02 +375,3753.7537537537537,4.0,20.000000000000014,100.00000000000006,2020-12-02 +374,3743.743743743744,4.0,20.000000000000014,100.00000000000006,2020-12-02 +373,3733.7337337337335,4.0,20.000000000000014,100.00000000000006,2020-12-02 +372,3723.7237237237237,4.0,20.000000000000014,100.00000000000006,2020-12-02 +371,3713.713713713714,4.0,20.000000000000014,100.00000000000006,2020-12-02 +370,3703.7037037037044,4.0,20.000000000000014,100.00000000000006,2020-12-02 +369,3693.693693693693,4.0,20.000000000000014,100.00000000000006,2020-12-02 +368,3683.683683683684,4.0,20.000000000000014,100.00000000000006,2020-12-02 +367,3673.673673673674,4.0,20.000000000000014,100.00000000000006,2020-12-02 +366,3663.663663663664,4.0,20.000000000000014,100.00000000000006,2020-12-02 +365,3653.6536536536537,4.0,20.000000000000014,100.00000000000006,2020-12-02 +364,3643.643643643644,4.0,20.000000000000014,100.00000000000006,2020-12-02 +363,3633.6336336336335,4.0,20.000000000000014,100.00000000000006,2020-12-02 +390,3903.903903903904,4.0,20.000000000000014,100.00000000000006,2020-12-02 +362,3623.623623623624,4.0,20.000000000000014,100.00000000000006,2020-12-02 +391,3913.9139139139143,4.0,20.000000000000014,100.00000000000006,2020-12-02 +393,3933.9339339339335,4.0,20.000000000000014,100.00000000000006,2020-12-02 +420,4204.204204204204,4.0,20.000000000000014,100.00000000000006,2020-12-02 +419,4194.194194194194,4.0,20.000000000000014,100.00000000000006,2020-12-02 +418,4184.184184184184,4.0,20.000000000000014,100.00000000000006,2020-12-02 +417,4174.174174174174,4.0,20.000000000000014,100.00000000000006,2020-12-02 +416,4164.164164164165,4.0,20.000000000000014,100.00000000000006,2020-12-02 +415,4154.154154154154,4.0,20.000000000000014,100.00000000000006,2020-12-02 +414,4144.144144144144,4.0,20.000000000000014,100.00000000000006,2020-12-02 +413,4134.134134134134,4.0,20.000000000000014,100.00000000000006,2020-12-02 +412,4124.124124124124,4.0,20.000000000000014,100.00000000000006,2020-12-02 +411,4114.114114114113,4.0,20.000000000000014,100.00000000000006,2020-12-02 +410,4104.104104104104,4.0,20.000000000000014,100.00000000000006,2020-12-02 +409,4094.094094094094,4.0,20.000000000000014,100.00000000000006,2020-12-02 +408,4084.0840840840838,4.0,20.000000000000014,100.00000000000006,2020-12-02 +407,4074.074074074074,4.0,20.000000000000014,100.00000000000006,2020-12-02 +406,4064.0640640640636,4.0,20.000000000000014,100.00000000000006,2020-12-02 +405,4054.054054054054,4.0,20.000000000000014,100.00000000000006,2020-12-02 +404,4044.0440440440443,4.0,20.000000000000014,100.00000000000006,2020-12-02 +403,4034.034034034034,4.0,20.000000000000014,100.00000000000006,2020-12-02 +402,4024.024024024024,4.0,20.000000000000014,100.00000000000006,2020-12-02 +401,4014.0140140140143,4.0,20.000000000000014,100.00000000000006,2020-12-02 +400,4004.004004004004,4.0,20.000000000000014,100.00000000000006,2020-12-02 +399,3993.993993993994,4.0,20.000000000000014,100.00000000000006,2020-12-02 +398,3983.9839839839838,4.0,20.000000000000014,100.00000000000006,2020-12-02 +397,3973.973973973974,4.0,20.000000000000014,100.00000000000006,2020-12-02 +396,3963.963963963964,4.0,20.000000000000014,100.00000000000006,2020-12-02 +395,3953.9539539539537,4.0,20.000000000000014,100.00000000000006,2020-12-02 +394,3943.9439439439443,4.0,20.000000000000014,100.00000000000006,2020-12-02 +392,3923.923923923924,4.0,20.000000000000014,100.00000000000006,2020-12-02 +361,3613.613613613614,4.0,20.000000000000014,100.00000000000006,2020-12-02 +360,3603.603603603604,4.0,20.000000000000014,100.00000000000006,2020-12-02 +359,3593.5935935935936,4.0,20.000000000000014,100.00000000000006,2020-12-02 +326,3263.263263263263,4.0,20.000000000000014,100.00000000000006,2020-12-02 +325,3253.253253253253,4.0,20.000000000000014,100.00000000000006,2020-12-02 +324,3243.2432432432433,4.0,20.000000000000014,100.00000000000006,2020-12-02 +323,3233.233233233233,4.0,20.000000000000014,100.00000000000006,2020-12-02 +322,3223.223223223223,4.0,20.000000000000014,100.00000000000006,2020-12-02 +321,3213.213213213213,4.0,20.000000000000014,100.00000000000006,2020-12-02 +320,3203.203203203204,4.0,20.000000000000014,100.00000000000006,2020-12-02 +319,3193.1931931931927,4.0,20.000000000000014,100.00000000000006,2020-12-02 +318,3183.183183183183,4.0,20.000000000000014,100.00000000000006,2020-12-02 +317,3173.1731731731734,4.0,20.000000000000014,100.00000000000006,2020-12-02 +316,3163.163163163163,4.0,20.000000000000014,100.00000000000006,2020-12-02 +315,3153.153153153153,4.0,20.000000000000014,100.00000000000006,2020-12-02 +314,3143.1431431431433,4.0,20.000000000000014,100.00000000000006,2020-12-02 +313,3133.133133133133,4.0,20.000000000000014,100.00000000000006,2020-12-02 +312,3123.123123123123,4.0,20.000000000000014,100.00000000000006,2020-12-02 +311,3113.113113113113,4.0,20.000000000000014,100.00000000000006,2020-12-02 +310,3103.103103103103,4.0,20.000000000000014,100.00000000000006,2020-12-02 +309,3093.093093093093,4.0,20.000000000000014,100.00000000000006,2020-12-02 +308,3083.083083083083,4.0,20.000000000000014,100.00000000000006,2020-12-02 +307,3073.073073073073,4.0,20.000000000000014,100.00000000000006,2020-12-02 +306,3063.0630630630626,4.0,20.000000000000014,100.00000000000006,2020-12-02 +305,3053.053053053053,4.0,20.000000000000014,100.00000000000006,2020-12-02 +304,3043.0430430430433,4.0,20.000000000000014,100.00000000000006,2020-12-02 +303,3033.033033033033,4.0,20.000000000000014,100.00000000000006,2020-12-02 +302,3023.023023023023,4.0,20.000000000000014,100.00000000000006,2020-12-02 +2,20.02002002002002,4.0,20.000000000000004,100.00000000000006,2020-12-02 +3,30.03003003003003,4.0,20.000000000000014,100.00000000000006,2020-12-02 +327,3273.2732732732725,4.0,20.000000000000014,100.00000000000006,2020-12-02 +328,3283.2832832832837,4.0,20.000000000000014,100.00000000000006,2020-12-02 +329,3293.2932932932927,4.0,20.000000000000014,100.00000000000006,2020-12-02 +330,3303.3033033033034,4.0,20.000000000000014,100.00000000000006,2020-12-02 +358,3583.583583583584,4.0,20.000000000000014,100.00000000000006,2020-12-02 +357,3573.573573573573,4.0,20.000000000000014,100.00000000000006,2020-12-02 +356,3563.563563563563,4.0,20.000000000000014,100.00000000000006,2020-12-02 +355,3553.5535535535537,4.0,20.000000000000014,100.00000000000006,2020-12-02 +354,3543.543543543544,4.0,20.000000000000014,100.00000000000006,2020-12-02 +353,3533.5335335335326,4.0,20.000000000000014,100.00000000000006,2020-12-02 +352,3523.523523523524,4.0,20.000000000000014,100.00000000000006,2020-12-02 +351,3513.5135135135133,4.0,20.000000000000014,100.00000000000006,2020-12-02 +350,3503.5035035035035,4.0,20.000000000000014,100.00000000000006,2020-12-02 +349,3493.4934934934936,4.0,20.000000000000014,100.00000000000006,2020-12-02 +348,3483.4834834834833,4.0,20.000000000000014,100.00000000000006,2020-12-02 +347,3473.473473473473,4.0,20.000000000000014,100.00000000000006,2020-12-02 +346,3463.4634634634635,4.0,20.000000000000014,100.00000000000006,2020-12-02 +421,4214.214214214214,4.0,20.000000000000014,100.00000000000006,2020-12-02 +345,3453.453453453453,4.0,20.000000000000014,100.00000000000006,2020-12-02 +343,3433.433433433433,4.0,20.000000000000014,100.00000000000006,2020-12-02 +342,3423.423423423424,4.0,20.000000000000014,100.00000000000006,2020-12-02 +341,3413.4134134134133,4.0,20.000000000000014,100.00000000000006,2020-12-02 +340,3403.4034034034034,4.0,20.000000000000014,100.00000000000006,2020-12-02 +339,3393.3933933933936,4.0,20.000000000000014,100.00000000000006,2020-12-02 +338,3383.3833833833837,4.0,20.000000000000014,100.00000000000006,2020-12-02 +337,3373.373373373373,4.0,20.000000000000014,100.00000000000006,2020-12-02 +336,3363.3633633633635,4.0,20.000000000000014,100.00000000000006,2020-12-02 +335,3353.353353353353,4.0,20.000000000000014,100.00000000000006,2020-12-02 +334,3343.3433433433433,4.0,20.000000000000014,100.00000000000006,2020-12-02 +333,3333.333333333333,4.0,20.000000000000014,100.00000000000006,2020-12-02 +332,3323.3233233233227,4.0,20.000000000000014,100.00000000000006,2020-12-02 +331,3313.313313313313,4.0,20.000000000000014,100.00000000000006,2020-12-02 +344,3443.443443443444,4.0,20.000000000000014,100.00000000000006,2020-12-02 +548,5485.485485485486,4.0,20.000000000000014,100.00000000000006,2020-12-02 +422,4224.224224224225,4.0,20.000000000000014,100.00000000000006,2020-12-02 +424,4244.244244244243,4.0,20.000000000000014,100.00000000000006,2020-12-02 +515,5155.155155155155,4.0,20.000000000000014,100.00000000000006,2020-12-02 +514,5145.145145145145,4.0,20.000000000000014,100.00000000000006,2020-12-02 +513,5135.135135135135,4.0,20.000000000000014,100.00000000000006,2020-12-02 +512,5125.125125125125,4.0,20.000000000000014,100.00000000000006,2020-12-02 +511,5115.115115115114,4.0,20.000000000000014,100.00000000000006,2020-12-02 +510,5105.105105105105,4.0,20.000000000000014,100.00000000000006,2020-12-02 +509,5095.0950950950955,4.0,20.000000000000014,100.00000000000006,2020-12-02 +508,5085.085085085085,4.0,20.000000000000014,100.00000000000006,2020-12-02 +507,5075.075075075075,4.0,20.000000000000014,100.00000000000006,2020-12-02 +506,5065.065065065065,4.0,20.000000000000014,100.00000000000006,2020-12-02 +505,5055.055055055055,4.0,20.000000000000014,100.00000000000006,2020-12-02 +504,5045.045045045045,4.0,20.000000000000014,100.00000000000006,2020-12-02 +503,5035.0350350350345,4.0,20.000000000000014,100.00000000000006,2020-12-02 +502,5025.025025025025,4.0,20.000000000000014,100.00000000000006,2020-12-02 +501,5015.015015015016,4.0,20.000000000000014,100.00000000000006,2020-12-02 +500,5005.005005005005,4.0,20.000000000000014,100.00000000000006,2020-12-02 +499,4994.994994994995,4.0,20.000000000000014,100.00000000000006,2020-12-02 +498,4984.984984984984,4.0,20.000000000000014,100.00000000000006,2020-12-02 +497,4974.974974974975,4.0,20.000000000000014,100.00000000000006,2020-12-02 +496,4964.9649649649655,4.0,20.000000000000014,100.00000000000006,2020-12-02 +495,4954.954954954955,4.0,20.000000000000014,100.00000000000006,2020-12-02 +494,4944.944944944945,4.0,20.000000000000014,100.00000000000006,2020-12-02 +493,4934.934934934935,4.0,20.000000000000014,100.00000000000006,2020-12-02 +492,4924.924924924925,4.0,20.000000000000014,100.00000000000006,2020-12-02 +491,4914.914914914915,4.0,20.000000000000014,100.00000000000006,2020-12-02 +490,4904.9049049049045,4.0,20.000000000000014,100.00000000000006,2020-12-02 +489,4894.894894894895,4.0,20.000000000000014,100.00000000000006,2020-12-02 +516,5165.165165165166,4.0,20.000000000000014,100.00000000000006,2020-12-02 +488,4884.884884884886,4.0,20.000000000000014,100.00000000000006,2020-12-02 +517,5175.175175175175,4.0,20.000000000000014,100.00000000000006,2020-12-02 +519,5195.195195195195,4.0,20.000000000000014,100.00000000000006,2020-12-02 +546,5465.465465465465,4.0,20.000000000000014,100.00000000000006,2020-12-02 +545,5455.455455455454,4.0,20.000000000000014,100.00000000000006,2020-12-02 +544,5445.445445445445,4.0,20.000000000000014,100.00000000000006,2020-12-02 +543,5435.4354354354355,4.0,20.000000000000014,100.00000000000006,2020-12-02 +542,5425.425425425426,4.0,20.000000000000014,100.00000000000006,2020-12-02 +541,5415.415415415417,4.0,20.000000000000014,100.00000000000006,2020-12-02 +540,5405.405405405405,4.0,20.000000000000014,100.00000000000006,2020-12-02 +539,5395.395395395395,4.0,20.000000000000014,100.00000000000006,2020-12-02 +538,5385.385385385385,4.0,20.000000000000014,100.00000000000006,2020-12-02 +537,5375.3753753753745,4.0,20.000000000000014,100.00000000000006,2020-12-02 +536,5365.365365365366,4.0,20.000000000000014,100.00000000000006,2020-12-02 +535,5355.355355355356,4.0,20.000000000000014,100.00000000000006,2020-12-02 +534,5345.345345345346,4.0,20.000000000000014,100.00000000000006,2020-12-02 +533,5335.335335335335,4.0,20.000000000000014,100.00000000000006,2020-12-02 +532,5325.325325325325,4.0,20.000000000000014,100.00000000000006,2020-12-02 +531,5315.315315315315,4.0,20.000000000000014,100.00000000000006,2020-12-02 +530,5305.305305305305,4.0,20.000000000000014,100.00000000000006,2020-12-02 +529,5295.2952952952965,4.0,20.000000000000014,100.00000000000006,2020-12-02 +528,5285.285285285287,4.0,20.000000000000014,100.00000000000006,2020-12-02 +527,5275.275275275275,4.0,20.000000000000014,100.00000000000006,2020-12-02 +526,5265.265265265265,4.0,20.000000000000014,100.00000000000006,2020-12-02 +525,5255.255255255255,4.0,20.000000000000014,100.00000000000006,2020-12-02 +524,5245.245245245244,4.0,20.000000000000014,100.00000000000006,2020-12-02 +523,5235.2352352352345,4.0,20.000000000000014,100.00000000000006,2020-12-02 +522,5225.225225225226,4.0,20.000000000000014,100.00000000000006,2020-12-02 +521,5215.215215215215,4.0,20.000000000000014,100.00000000000006,2020-12-02 +520,5205.205205205205,4.0,20.000000000000014,100.00000000000006,2020-12-02 +518,5185.185185185185,4.0,20.000000000000014,100.00000000000006,2020-12-02 +487,4874.874874874875,4.0,20.000000000000014,100.00000000000006,2020-12-02 +486,4864.864864864865,4.0,20.000000000000014,100.00000000000006,2020-12-02 +485,4854.854854854855,4.0,20.000000000000014,100.00000000000006,2020-12-02 +451,4514.514514514514,4.0,20.000000000000014,100.00000000000006,2020-12-02 +450,4504.5045045045035,4.0,20.000000000000014,100.00000000000006,2020-12-02 +449,4494.4944944944955,4.0,20.000000000000014,100.00000000000006,2020-12-02 +448,4484.484484484485,4.0,20.000000000000014,100.00000000000006,2020-12-02 +447,4474.474474474475,4.0,20.000000000000014,100.00000000000006,2020-12-02 +446,4464.464464464464,4.0,20.000000000000014,100.00000000000006,2020-12-02 +445,4454.454454454453,4.0,20.000000000000014,100.00000000000006,2020-12-02 +444,4444.444444444444,4.0,20.000000000000014,100.00000000000006,2020-12-02 +443,4434.4344344344345,4.0,20.000000000000014,100.00000000000006,2020-12-02 +442,4424.424424424425,4.0,20.000000000000014,100.00000000000006,2020-12-02 +441,4414.414414414416,4.0,20.000000000000014,100.00000000000006,2020-12-02 +440,4404.404404404404,4.0,20.000000000000014,100.00000000000006,2020-12-02 +439,4394.394394394394,4.0,20.000000000000014,100.00000000000006,2020-12-02 +438,4384.384384384384,4.0,20.000000000000014,100.00000000000006,2020-12-02 +437,4374.3743743743735,4.0,20.000000000000014,100.00000000000006,2020-12-02 +436,4364.364364364365,4.0,20.000000000000014,100.00000000000006,2020-12-02 +435,4354.354354354355,4.0,20.000000000000014,100.00000000000006,2020-12-02 +434,4344.344344344345,4.0,20.000000000000014,100.00000000000006,2020-12-02 +433,4334.334334334334,4.0,20.000000000000014,100.00000000000006,2020-12-02 +432,4324.324324324324,4.0,20.000000000000014,100.00000000000006,2020-12-02 +431,4314.314314314314,4.0,20.000000000000014,100.00000000000006,2020-12-02 +430,4304.304304304304,4.0,20.000000000000014,100.00000000000006,2020-12-02 +429,4294.2942942942955,4.0,20.000000000000014,100.00000000000006,2020-12-02 +428,4284.284284284286,4.0,20.000000000000014,100.00000000000006,2020-12-02 +427,4274.274274274274,4.0,20.000000000000014,100.00000000000006,2020-12-02 +426,4264.264264264264,4.0,20.000000000000014,100.00000000000006,2020-12-02 +425,4254.254254254254,4.0,20.000000000000014,100.00000000000006,2020-12-02 +452,4524.524524524524,4.0,20.000000000000014,100.00000000000006,2020-12-02 +453,4534.534534534535,4.0,20.000000000000014,100.00000000000006,2020-12-02 +454,4544.544544544546,4.0,20.000000000000014,100.00000000000006,2020-12-02 +455,4554.554554554555,4.0,20.000000000000014,100.00000000000006,2020-12-02 +484,4844.844844844845,4.0,20.000000000000014,100.00000000000006,2020-12-02 +483,4834.834834834834,4.0,20.000000000000014,100.00000000000006,2020-12-02 +481,4814.814814814815,4.0,20.000000000000014,100.00000000000006,2020-12-02 +480,4804.804804804805,4.0,20.000000000000014,100.00000000000006,2020-12-02 +479,4794.794794794795,4.0,20.000000000000014,100.00000000000006,2020-12-02 +478,4784.784784784785,4.0,20.000000000000014,100.00000000000006,2020-12-02 +477,4774.774774774774,4.0,20.000000000000014,100.00000000000006,2020-12-02 +476,4764.7647647647655,4.0,20.000000000000014,100.00000000000006,2020-12-02 +475,4754.754754754756,4.0,20.000000000000014,100.00000000000006,2020-12-02 +474,4744.744744744745,4.0,20.000000000000014,100.00000000000006,2020-12-02 +473,4734.734734734735,4.0,20.000000000000014,100.00000000000006,2020-12-02 +472,4724.724724724725,4.0,20.000000000000014,100.00000000000006,2020-12-02 +471,4714.714714714713,4.0,20.000000000000014,100.00000000000006,2020-12-02 +423,4234.2342342342345,4.0,20.000000000000014,100.00000000000006,2020-12-02 +470,4704.7047047047035,4.0,20.000000000000014,100.00000000000006,2020-12-02 +468,4684.684684684685,4.0,20.000000000000014,100.00000000000006,2020-12-02 +467,4674.674674674675,4.0,20.000000000000014,100.00000000000006,2020-12-02 +466,4664.664664664665,4.0,20.000000000000014,100.00000000000006,2020-12-02 +465,4654.654654654654,4.0,20.000000000000014,100.00000000000006,2020-12-02 +464,4644.644644644644,4.0,20.000000000000014,100.00000000000006,2020-12-02 +463,4634.634634634634,4.0,20.000000000000014,100.00000000000006,2020-12-02 +462,4624.6246246246255,4.0,20.000000000000014,100.00000000000006,2020-12-02 +461,4614.614614614615,4.0,20.000000000000014,100.00000000000006,2020-12-02 +460,4604.604604604605,4.0,20.000000000000014,100.00000000000006,2020-12-02 +459,4594.594594594595,4.0,20.000000000000014,100.00000000000006,2020-12-02 +458,4584.584584584583,4.0,20.000000000000014,100.00000000000006,2020-12-02 +457,4574.574574574574,4.0,20.000000000000014,100.00000000000006,2020-12-02 +456,4564.5645645645645,4.0,20.000000000000014,100.00000000000006,2020-12-02 +469,4694.694694694695,4.0,20.000000000000014,100.00000000000006,2020-12-02 +798,7987.987987987988,4.0,20.000000000000014,100.00000000000006,2020-12-02 +482,4824.824824824825,4.0,20.000000000000014,100.00000000000006,2020-12-02 +800,8008.008008008008,4.0,20.000000000000014,100.00000000000006,2020-12-02 +161,1611.6116116116116,4.0,20.000000000000014,100.00000000000006,2020-12-02 +162,1621.6216216216214,4.0,20.000000000000014,100.00000000000006,2020-12-02 +163,1631.6316316316315,4.0,20.000000000000014,100.00000000000006,2020-12-02 +164,1641.6416416416416,4.0,20.000000000000014,100.00000000000006,2020-12-02 +165,1651.6516516516517,4.0,20.000000000000014,100.00000000000006,2020-12-02 +166,1661.6616616616614,4.0,20.000000000000014,100.00000000000006,2020-12-02 +167,1671.6716716716714,4.0,20.000000000000014,100.00000000000006,2020-12-02 +168,1681.6816816816818,4.0,20.000000000000014,100.00000000000006,2020-12-02 +169,1691.6916916916916,4.0,20.000000000000014,100.00000000000006,2020-12-02 +170,1701.7017017017013,4.0,20.000000000000014,100.00000000000006,2020-12-02 +171,1711.7117117117118,4.0,20.000000000000014,100.00000000000006,2020-12-02 +172,1721.7217217217215,4.0,20.000000000000014,100.00000000000006,2020-12-02 +173,1731.7317317317318,4.0,20.000000000000014,100.00000000000006,2020-12-02 +174,1741.7417417417416,4.0,20.000000000000014,100.00000000000006,2020-12-02 +175,1751.7517517517515,4.0,20.000000000000014,100.00000000000006,2020-12-02 +176,1761.7617617617618,4.0,20.000000000000014,100.00000000000006,2020-12-02 +177,1771.7717717717715,4.0,20.000000000000014,100.00000000000006,2020-12-02 +178,1781.7817817817815,4.0,20.000000000000014,100.00000000000006,2020-12-02 +179,1791.791791791792,4.0,20.000000000000014,100.00000000000006,2020-12-02 +180,1801.8018018018015,4.0,20.000000000000014,100.00000000000006,2020-12-02 +181,1811.811811811812,4.0,20.000000000000014,100.00000000000006,2020-12-02 +182,1821.821821821822,4.0,20.000000000000014,100.00000000000006,2020-12-02 +183,1831.831831831832,4.0,20.000000000000014,100.00000000000006,2020-12-02 +184,1841.8418418418414,4.0,20.000000000000014,100.00000000000006,2020-12-02 +185,1851.8518518518522,4.0,20.000000000000014,100.00000000000006,2020-12-02 +186,1861.8618618618616,4.0,20.000000000000014,100.00000000000006,2020-12-02 +187,1871.871871871872,4.0,20.000000000000014,100.00000000000006,2020-12-02 +160,1601.6016016016015,4.0,20.000000000000014,100.00000000000006,2020-12-02 +188,1881.8818818818813,4.0,20.000000000000014,100.00000000000006,2020-12-02 +159,1591.5915915915914,4.0,20.000000000000014,100.00000000000006,2020-12-02 +157,1571.5715715715714,4.0,20.000000000000014,100.00000000000006,2020-12-02 +130,1301.3013013013012,4.0,20.000000000000014,100.00000000000006,2020-12-02 +131,1311.311311311311,4.0,20.000000000000014,100.00000000000006,2020-12-02 +132,1321.3213213213216,4.0,20.000000000000014,100.00000000000006,2020-12-02 +133,1331.3313313313313,4.0,20.000000000000014,100.00000000000006,2020-12-02 +134,1341.3413413413416,4.0,20.000000000000014,100.00000000000006,2020-12-02 +135,1351.3513513513512,4.0,20.000000000000014,100.00000000000006,2020-12-02 +136,1361.3613613613613,4.0,20.000000000000014,100.00000000000006,2020-12-02 +137,1371.3713713713714,4.0,20.000000000000014,100.00000000000006,2020-12-02 +138,1381.3813813813813,4.0,20.000000000000014,100.00000000000006,2020-12-02 +139,1391.3913913913916,4.0,20.000000000000014,100.00000000000006,2020-12-02 +140,1401.4014014014015,4.0,20.000000000000014,100.00000000000006,2020-12-02 +141,1411.411411411411,4.0,20.000000000000014,100.00000000000006,2020-12-02 +142,1421.4214214214214,4.0,20.000000000000014,100.00000000000006,2020-12-02 +143,1431.4314314314315,4.0,20.000000000000014,100.00000000000006,2020-12-02 +144,1441.4414414414416,4.0,20.000000000000014,100.00000000000006,2020-12-02 +145,1451.4514514514515,4.0,20.000000000000014,100.00000000000006,2020-12-02 +146,1461.4614614614616,4.0,20.000000000000014,100.00000000000006,2020-12-02 +147,1471.4714714714717,4.0,20.000000000000014,100.00000000000006,2020-12-02 +148,1481.4814814814815,4.0,20.000000000000014,100.00000000000006,2020-12-02 +149,1491.4914914914914,4.0,20.000000000000014,100.00000000000006,2020-12-02 +150,1501.5015015015015,4.0,20.000000000000014,100.00000000000006,2020-12-02 +151,1511.5115115115116,4.0,20.000000000000014,100.00000000000006,2020-12-02 +152,1521.5215215215217,4.0,20.000000000000014,100.00000000000006,2020-12-02 +153,1531.5315315315313,4.0,20.000000000000014,100.00000000000006,2020-12-02 +154,1541.5415415415414,4.0,20.000000000000014,100.00000000000006,2020-12-02 +155,1551.5515515515515,4.0,20.000000000000014,100.00000000000006,2020-12-02 +156,1561.5615615615616,4.0,20.000000000000014,100.00000000000006,2020-12-02 +158,1581.5815815815815,4.0,20.000000000000014,100.00000000000006,2020-12-02 +189,1891.891891891892,4.0,20.000000000000014,100.00000000000006,2020-12-02 +190,1901.901901901902,4.0,20.000000000000014,100.00000000000006,2020-12-02 +191,1911.9119119119118,4.0,20.000000000000014,100.00000000000006,2020-12-02 +224,2242.2422422422424,4.0,20.000000000000014,100.00000000000006,2020-12-02 +225,2252.2522522522518,4.0,20.000000000000014,100.00000000000006,2020-12-02 +226,2262.262262262262,4.0,20.000000000000014,100.00000000000006,2020-12-02 +227,2272.272272272273,4.0,20.000000000000014,100.00000000000006,2020-12-02 +228,2282.2822822822823,4.0,20.000000000000014,100.00000000000006,2020-12-02 +229,2292.2922922922917,4.0,20.000000000000014,100.00000000000006,2020-12-02 +230,2302.3023023023025,4.0,20.000000000000014,100.00000000000006,2020-12-02 +231,2312.3123123123128,4.0,20.000000000000014,100.00000000000006,2020-12-02 +232,2322.322322322322,4.0,20.000000000000014,100.00000000000006,2020-12-02 +233,2332.3323323323325,4.0,20.000000000000014,100.00000000000006,2020-12-02 +234,2342.3423423423424,4.0,20.000000000000014,100.00000000000006,2020-12-02 +235,2352.3523523523518,4.0,20.000000000000014,100.00000000000006,2020-12-02 +236,2362.3623623623625,4.0,20.000000000000014,100.00000000000006,2020-12-02 +237,2372.3723723723724,4.0,20.000000000000014,100.00000000000006,2020-12-02 +238,2382.3823823823827,4.0,20.000000000000014,100.00000000000006,2020-12-02 +239,2392.392392392393,4.0,20.000000000000014,100.00000000000006,2020-12-02 +240,2402.4024024024025,4.0,20.000000000000014,100.00000000000006,2020-12-02 +241,2412.4124124124123,4.0,20.000000000000014,100.00000000000006,2020-12-02 +242,2422.4224224224226,4.0,20.000000000000014,100.00000000000006,2020-12-02 +243,2432.4324324324325,4.0,20.000000000000014,100.00000000000006,2020-12-02 +244,2442.442442442443,4.0,20.000000000000014,100.00000000000006,2020-12-02 +245,2452.4524524524522,4.0,20.000000000000014,100.00000000000006,2020-12-02 +246,2462.4624624624626,4.0,20.000000000000014,100.00000000000006,2020-12-02 +247,2472.4724724724724,4.0,20.000000000000014,100.00000000000006,2020-12-02 +248,2482.4824824824827,4.0,20.000000000000014,100.00000000000006,2020-12-02 +249,2492.492492492493,4.0,20.000000000000014,100.00000000000006,2020-12-02 +250,2502.5025025025025,4.0,20.000000000000014,100.00000000000006,2020-12-02 +223,2232.232232232232,4.0,20.000000000000014,100.00000000000006,2020-12-02 +222,2222.222222222222,4.0,20.000000000000014,100.00000000000006,2020-12-02 +221,2212.2122122122123,4.0,20.000000000000014,100.00000000000006,2020-12-02 +220,2202.202202202202,4.0,20.000000000000014,100.00000000000006,2020-12-02 +192,1921.921921921922,4.0,20.000000000000014,100.00000000000006,2020-12-02 +193,1931.931931931932,4.0,20.000000000000014,100.00000000000006,2020-12-02 +194,1941.9419419419414,4.0,20.000000000000014,100.00000000000006,2020-12-02 +195,1951.951951951952,4.0,20.000000000000014,100.00000000000006,2020-12-02 +196,1961.961961961962,4.0,20.000000000000014,100.00000000000006,2020-12-02 +197,1971.9719719719722,4.0,20.000000000000014,100.00000000000006,2020-12-02 +198,1981.981981981982,4.0,20.000000000000014,100.00000000000006,2020-12-02 +199,1991.9919919919919,4.0,20.000000000000014,100.00000000000006,2020-12-02 +200,2002.002002002002,4.0,20.000000000000014,100.00000000000006,2020-12-02 +201,2012.012012012012,4.0,20.000000000000014,100.00000000000006,2020-12-02 +202,2022.0220220220222,4.0,20.000000000000014,100.00000000000006,2020-12-02 +203,2032.0320320320318,4.0,20.000000000000014,100.00000000000006,2020-12-02 +204,2042.0420420420419,4.0,20.000000000000014,100.00000000000006,2020-12-02 +129,1291.2912912912916,4.0,20.000000000000014,100.00000000000006,2020-12-02 +205,2052.052052052052,4.0,20.000000000000014,100.00000000000006,2020-12-02 +207,2072.072072072072,4.0,20.000000000000014,100.00000000000006,2020-12-02 +208,2082.0820820820827,4.0,20.000000000000014,100.00000000000006,2020-12-02 +209,2092.092092092092,4.0,20.000000000000014,100.00000000000006,2020-12-02 +210,2102.102102102102,4.0,20.000000000000014,100.00000000000006,2020-12-02 +211,2112.1121121121123,4.0,20.000000000000014,100.00000000000006,2020-12-02 +212,2122.1221221221217,4.0,20.000000000000014,100.00000000000006,2020-12-02 +213,2132.132132132132,4.0,20.000000000000014,100.00000000000006,2020-12-02 +214,2142.142142142143,4.0,20.000000000000014,100.00000000000006,2020-12-02 +215,2152.152152152152,4.0,20.000000000000014,100.00000000000006,2020-12-02 +216,2162.162162162162,4.0,20.000000000000014,100.00000000000006,2020-12-02 +217,2172.1721721721724,4.0,20.000000000000014,100.00000000000006,2020-12-02 +218,2182.1821821821827,4.0,20.000000000000014,100.00000000000006,2020-12-02 +219,2192.192192192192,4.0,20.000000000000014,100.00000000000006,2020-12-02 +206,2062.062062062062,4.0,20.000000000000014,100.00000000000006,2020-12-02 +251,2512.5125125125123,4.0,20.000000000000014,100.00000000000006,2020-12-02 +128,1281.2812812812813,4.0,20.000000000000014,100.00000000000006,2020-12-02 +126,1261.2612612612613,4.0,20.000000000000014,100.00000000000006,2020-12-02 +35,350.35035035035037,4.0,20.000000000000014,100.00000000000006,2020-12-02 +36,360.3603603603604,4.0,20.000000000000014,100.00000000000006,2020-12-02 +37,370.3703703703704,4.0,20.000000000000014,100.00000000000006,2020-12-02 +38,380.3803803803804,4.0,20.000000000000014,100.00000000000006,2020-12-02 +39,390.3903903903904,4.0,20.000000000000014,100.00000000000006,2020-12-02 +40,400.4004004004004,4.0,20.000000000000014,100.00000000000006,2020-12-02 +41,410.4104104104104,4.0,20.000000000000014,100.00000000000006,2020-12-02 +42,420.42042042042056,4.0,20.000000000000014,100.00000000000006,2020-12-02 +43,430.43043043043036,4.0,20.000000000000014,100.00000000000006,2020-12-02 +44,440.4404404404405,4.0,20.000000000000014,100.00000000000006,2020-12-02 +45,450.4504504504504,4.0,20.000000000000014,100.00000000000006,2020-12-02 +46,460.4604604604605,4.0,20.000000000000014,100.00000000000006,2020-12-02 +47,470.4704704704705,4.0,20.000000000000014,100.00000000000006,2020-12-02 +48,480.4804804804805,4.0,20.000000000000014,100.00000000000006,2020-12-02 +49,490.4904904904905,4.0,20.000000000000014,100.00000000000006,2020-12-02 +50,500.5005005005005,4.0,20.000000000000014,100.00000000000006,2020-12-02 +51,510.51051051051047,4.0,20.000000000000014,100.00000000000006,2020-12-02 +52,520.5205205205207,4.0,20.000000000000014,100.00000000000006,2020-12-02 +53,530.5305305305304,4.0,20.000000000000014,100.00000000000006,2020-12-02 +54,540.5405405405405,4.0,20.000000000000014,100.00000000000006,2020-12-02 +55,550.5505505505505,4.0,20.000000000000014,100.00000000000006,2020-12-02 +56,560.5605605605606,4.0,20.000000000000014,100.00000000000006,2020-12-02 +57,570.5705705705706,4.0,20.000000000000014,100.00000000000006,2020-12-02 +58,580.5805805805805,4.0,20.000000000000014,100.00000000000006,2020-12-02 +59,590.5905905905906,4.0,20.000000000000014,100.00000000000006,2020-12-02 +60,600.6006006006006,4.0,20.000000000000014,100.00000000000006,2020-12-02 +61,610.6106106106107,4.0,20.000000000000014,100.00000000000006,2020-12-02 +34,340.3403403403404,4.0,20.000000000000014,100.00000000000006,2020-12-02 +62,620.6206206206207,4.0,20.000000000000014,100.00000000000006,2020-12-02 +33,330.3303303303304,4.0,20.000000000000014,100.00000000000006,2020-12-02 +31,310.31031031031034,4.0,20.000000000000014,100.00000000000006,2020-12-02 +6,60.06006006006006,4.0,20.000000000000014,100.00000000000006,2020-12-02 +5,50.05005005005005,4.0,20.000000000000014,100.00000000000006,2020-12-02 +799,7997.997997997998,4.0,20.000000000000014,100.00000000000006,2020-12-02 +7,70.07007007007006,4.0,20.000000000000014,100.00000000000006,2020-12-02 +8,80.08008008008008,4.0,20.000000000000014,100.00000000000006,2020-12-02 +9,90.09009009009009,4.0,20.000000000000014,100.00000000000006,2020-12-02 +10,100.10010010010012,4.0,20.000000000000014,100.00000000000006,2020-12-02 +11,110.11011011011013,4.0,20.000000000000014,100.00000000000006,2020-12-02 +12,120.12012012012012,4.0,20.000000000000014,100.00000000000006,2020-12-02 +13,130.13013013013014,4.0,20.000000000000014,100.00000000000006,2020-12-02 +14,140.14014014014015,4.0,20.000000000000014,100.00000000000006,2020-12-02 +15,150.15015015015015,4.0,20.000000000000014,100.00000000000006,2020-12-02 +16,160.16016016016016,4.0,20.000000000000014,100.00000000000006,2020-12-02 +17,170.17017017017017,4.0,20.000000000000014,100.00000000000006,2020-12-02 +18,180.18018018018017,4.0,20.000000000000014,100.00000000000006,2020-12-02 +19,190.19019019019015,4.0,20.000000000000014,100.00000000000006,2020-12-02 +20,200.2002002002002,4.0,20.000000000000014,100.00000000000006,2020-12-02 +21,210.21021021021028,4.0,20.000000000000014,100.00000000000006,2020-12-02 +22,220.22022022022026,4.0,20.000000000000014,100.00000000000006,2020-12-02 +23,230.23023023023026,4.0,20.000000000000014,100.00000000000006,2020-12-02 +24,240.24024024024024,4.0,20.000000000000014,100.00000000000006,2020-12-02 +25,250.25025025025025,4.0,20.000000000000014,100.00000000000006,2020-12-02 +26,260.26026026026034,4.0,20.000000000000014,100.00000000000006,2020-12-02 +27,270.27027027027026,4.0,20.000000000000014,100.00000000000006,2020-12-02 +28,280.2802802802803,4.0,20.000000000000014,100.00000000000006,2020-12-02 +29,290.2902902902903,4.0,20.000000000000014,100.00000000000006,2020-12-02 +30,300.3003003003003,4.0,20.000000000000014,100.00000000000006,2020-12-02 +32,320.3203203203203,4.0,20.000000000000014,100.00000000000006,2020-12-02 +63,630.6306306306308,4.0,20.000000000000014,100.00000000000006,2020-12-02 +64,640.6406406406406,4.0,20.000000000000014,100.00000000000006,2020-12-02 +65,650.6506506506506,4.0,20.000000000000014,100.00000000000006,2020-12-02 +99,990.990990990991,4.0,20.000000000000014,100.00000000000006,2020-12-02 +100,1001.001001001001,4.0,20.000000000000014,100.00000000000006,2020-12-02 +101,1011.0110110110111,4.0,20.000000000000014,100.00000000000006,2020-12-02 +102,1021.0210210210209,4.0,20.000000000000014,100.00000000000006,2020-12-02 +103,1031.031031031031,4.0,20.000000000000014,100.00000000000006,2020-12-02 +104,1041.0410410410414,4.0,20.000000000000014,100.00000000000006,2020-12-02 +105,1051.051051051051,4.0,20.000000000000014,100.00000000000006,2020-12-02 +106,1061.0610610610609,4.0,20.000000000000014,100.00000000000006,2020-12-02 +107,1071.0710710710714,4.0,20.000000000000014,100.00000000000006,2020-12-02 +108,1081.081081081081,4.0,20.000000000000014,100.00000000000006,2020-12-02 +109,1091.0910910910914,4.0,20.000000000000014,100.00000000000006,2020-12-02 +110,1101.101101101101,4.0,20.000000000000014,100.00000000000006,2020-12-02 +111,1111.111111111111,4.0,20.000000000000014,100.00000000000006,2020-12-02 +112,1121.1211211211212,4.0,20.000000000000014,100.00000000000006,2020-12-02 +113,1131.131131131131,4.0,20.000000000000014,100.00000000000006,2020-12-02 +114,1141.1411411411411,4.0,20.000000000000014,100.00000000000006,2020-12-02 +115,1151.1511511511512,4.0,20.000000000000014,100.00000000000006,2020-12-02 +116,1161.161161161161,4.0,20.000000000000014,100.00000000000006,2020-12-02 +117,1171.1711711711712,4.0,20.000000000000014,100.00000000000006,2020-12-02 +118,1181.1811811811813,4.0,20.000000000000014,100.00000000000006,2020-12-02 +119,1191.1911911911914,4.0,20.000000000000014,100.00000000000006,2020-12-02 +120,1201.2012012012012,4.0,20.000000000000014,100.00000000000006,2020-12-02 +121,1211.2112112112113,4.0,20.000000000000014,100.00000000000006,2020-12-02 +122,1221.2212212212214,4.0,20.000000000000014,100.00000000000006,2020-12-02 +123,1231.2312312312313,4.0,20.000000000000014,100.00000000000006,2020-12-02 +124,1241.2412412412414,4.0,20.000000000000014,100.00000000000006,2020-12-02 +125,1251.2512512512512,4.0,20.000000000000014,100.00000000000006,2020-12-02 +98,980.980980980981,4.0,20.000000000000014,100.00000000000006,2020-12-02 +96,960.960960960961,4.0,20.000000000000014,100.00000000000006,2020-12-02 +95,950.950950950951,4.0,20.000000000000014,100.00000000000006,2020-12-02 +94,940.9409409409407,4.0,20.000000000000014,100.00000000000006,2020-12-02 +66,660.6606606606608,4.0,20.000000000000014,100.00000000000006,2020-12-02 +67,670.6706706706708,4.0,20.000000000000014,100.00000000000006,2020-12-02 +68,680.6806806806808,4.0,20.000000000000014,100.00000000000006,2020-12-02 +69,690.6906906906906,4.0,20.000000000000014,100.00000000000006,2020-12-02 +70,700.7007007007007,4.0,20.000000000000014,100.00000000000006,2020-12-02 +71,710.7107107107107,4.0,20.000000000000014,100.00000000000006,2020-12-02 +72,720.7207207207208,4.0,20.000000000000014,100.00000000000006,2020-12-02 +73,730.7307307307308,4.0,20.000000000000014,100.00000000000006,2020-12-02 +74,740.7407407407408,4.0,20.000000000000014,100.00000000000006,2020-12-02 +75,750.7507507507507,4.0,20.000000000000014,100.00000000000006,2020-12-02 +76,760.7607607607608,4.0,20.000000000000014,100.00000000000006,2020-12-02 +77,770.7707707707707,4.0,20.000000000000014,100.00000000000006,2020-12-02 +78,780.7807807807808,4.0,20.000000000000014,100.00000000000006,2020-12-02 +127,1271.2712712712712,4.0,20.000000000000014,100.00000000000006,2020-12-02 +79,790.7907907907908,4.0,20.000000000000014,100.00000000000006,2020-12-02 +81,810.8108108108107,4.0,20.000000000000014,100.00000000000006,2020-12-02 +82,820.8208208208208,4.0,20.000000000000014,100.00000000000006,2020-12-02 +83,830.8308308308307,4.0,20.000000000000014,100.00000000000006,2020-12-02 +84,840.8408408408409,4.0,20.000000000000014,100.00000000000006,2020-12-02 +85,850.8508508508509,4.0,20.000000000000014,100.00000000000006,2020-12-02 +86,860.8608608608607,4.0,20.000000000000014,100.00000000000006,2020-12-02 +87,870.8708708708708,4.0,20.000000000000014,100.00000000000006,2020-12-02 +88,880.8808808808809,4.0,20.000000000000014,100.00000000000006,2020-12-02 +89,890.8908908908908,4.0,20.000000000000014,100.00000000000006,2020-12-02 +90,900.9009009009008,4.0,20.000000000000014,100.00000000000006,2020-12-02 +91,910.910910910911,4.0,20.000000000000014,100.00000000000006,2020-12-02 +92,920.9209209209207,4.0,20.000000000000014,100.00000000000006,2020-12-02 +93,930.9309309309308,4.0,20.000000000000014,100.00000000000006,2020-12-02 +80,800.800800800801,4.0,20.000000000000014,100.00000000000006,2020-12-02 +252,2522.5225225225226,4.0,20.000000000000014,100.00000000000006,2020-12-02 +97,970.9709709709707,4.0,20.000000000000014,100.00000000000006,2020-12-02 +254,2542.5425425425424,4.0,20.000000000000014,100.00000000000006,2020-12-02 +890,8908.908908908907,4.0,20.000000000000014,100.00000000000006,2020-12-02 +889,8898.898898898899,4.0,20.000000000000014,100.00000000000006,2020-12-02 +888,8888.888888888889,4.0,20.000000000000014,100.00000000000006,2020-12-02 +887,8878.878878878879,4.0,20.000000000000014,100.00000000000006,2020-12-02 +886,8868.868868868869,4.0,20.000000000000014,100.00000000000006,2020-12-02 +885,8858.85885885886,4.0,20.000000000000014,100.00000000000006,2020-12-02 +884,8848.84884884885,4.0,20.000000000000014,100.00000000000006,2020-12-02 +883,8838.838838838841,4.0,20.000000000000014,100.00000000000006,2020-12-02 +882,8828.82882882883,4.0,20.000000000000014,100.00000000000006,2020-12-02 +881,8818.818818818821,4.0,20.000000000000014,100.00000000000006,2020-12-02 +880,8808.808808808808,4.0,20.000000000000014,100.00000000000006,2020-12-02 +879,8798.798798798798,4.0,20.000000000000014,100.00000000000006,2020-12-02 +878,8788.788788788788,4.0,20.000000000000014,100.00000000000006,2020-12-02 +877,8778.778778778778,4.0,20.000000000000014,100.00000000000006,2020-12-02 +876,8768.768768768768,4.0,20.000000000000014,100.00000000000006,2020-12-02 +875,8758.758758758759,4.0,20.000000000000014,100.00000000000006,2020-12-02 +874,8748.748748748749,4.0,20.000000000000014,100.00000000000006,2020-12-02 +873,8738.738738738739,4.0,20.000000000000014,100.00000000000006,2020-12-02 +872,8728.728728728729,4.0,20.000000000000014,100.00000000000006,2020-12-02 +871,8718.718718718721,4.0,20.000000000000014,100.00000000000006,2020-12-02 +870,8708.70870870871,4.0,20.000000000000014,100.00000000000006,2020-12-02 +869,8698.6986986987,4.0,20.000000000000014,100.00000000000006,2020-12-02 +868,8688.68868868869,4.0,20.000000000000014,100.00000000000006,2020-12-02 +867,8678.678678678678,4.0,20.000000000000014,100.00000000000006,2020-12-02 +866,8668.668668668668,4.0,20.000000000000014,100.00000000000006,2020-12-02 +865,8658.658658658658,4.0,20.000000000000014,100.00000000000006,2020-12-02 +864,8648.648648648648,4.0,20.000000000000014,100.00000000000006,2020-12-02 +891,8918.918918918918,4.0,20.000000000000014,100.00000000000006,2020-12-02 +892,8928.928928928928,4.0,20.000000000000014,100.00000000000006,2020-12-02 +893,8938.93893893894,4.0,20.000000000000014,100.00000000000006,2020-12-02 +894,8948.94894894895,4.0,20.000000000000014,100.00000000000006,2020-12-02 +922,9229.22922922923,4.0,20.000000000000014,100.00000000000006,2020-12-02 +921,9219.21921921922,4.0,20.000000000000014,100.00000000000006,2020-12-02 +920,9209.20920920921,4.0,20.000000000000014,100.00000000000006,2020-12-02 +919,9199.1991991992,4.0,20.000000000000014,100.00000000000006,2020-12-02 +918,9189.18918918919,4.0,20.000000000000014,100.00000000000006,2020-12-02 +917,9179.179179179178,4.0,20.000000000000014,100.00000000000006,2020-12-02 +916,9169.169169169167,4.0,20.000000000000014,100.00000000000006,2020-12-02 +915,9159.15915915916,4.0,20.000000000000014,100.00000000000006,2020-12-02 +914,9149.149149149149,4.0,20.000000000000014,100.00000000000006,2020-12-02 +913,9139.139139139139,4.0,20.000000000000014,100.00000000000006,2020-12-02 +912,9129.129129129129,4.0,20.000000000000014,100.00000000000006,2020-12-02 +911,9119.11911911912,4.0,20.000000000000014,100.00000000000006,2020-12-02 +910,9109.10910910911,4.0,20.000000000000014,100.00000000000006,2020-12-02 +863,8638.638638638638,4.0,20.000000000000014,100.00000000000006,2020-12-02 +909,9099.0990990991,4.0,20.000000000000014,100.00000000000006,2020-12-02 +907,9079.07907907908,4.0,20.000000000000014,100.00000000000006,2020-12-02 +906,9069.06906906907,4.0,20.000000000000014,100.00000000000006,2020-12-02 +905,9059.059059059058,4.0,20.000000000000014,100.00000000000006,2020-12-02 +904,9049.049049049048,4.0,20.000000000000014,100.00000000000006,2020-12-02 +903,9039.039039039038,4.0,20.000000000000014,100.00000000000006,2020-12-02 +902,9029.029029029029,4.0,20.000000000000014,100.00000000000006,2020-12-02 +901,9019.01901901902,4.0,20.000000000000014,100.00000000000006,2020-12-02 +900,9009.009009009007,4.0,20.000000000000014,100.00000000000006,2020-12-02 +899,8998.998998998999,4.0,20.000000000000014,100.00000000000006,2020-12-02 +898,8988.988988988991,4.0,20.000000000000014,100.00000000000006,2020-12-02 +897,8978.97897897898,4.0,20.000000000000014,100.00000000000006,2020-12-02 +896,8968.96896896897,4.0,20.000000000000014,100.00000000000006,2020-12-02 +895,8958.95895895896,4.0,20.000000000000014,100.00000000000006,2020-12-02 +908,9089.089089089091,4.0,20.000000000000014,100.00000000000006,2020-12-02 +923,9239.239239239241,4.0,20.000000000000014,100.00000000000006,2020-12-02 +862,8628.628628628629,4.0,20.000000000000014,100.00000000000006,2020-12-02 +860,8608.608608608609,4.0,20.000000000000014,100.00000000000006,2020-12-02 +826,8268.268268268268,4.0,20.000000000000014,100.00000000000006,2020-12-02 +825,8258.258258258258,4.0,20.000000000000014,100.00000000000006,2020-12-02 +824,8248.248248248248,4.0,20.000000000000014,100.00000000000006,2020-12-02 +823,8238.238238238238,4.0,20.000000000000014,100.00000000000006,2020-12-02 +822,8228.228228228229,4.0,20.000000000000014,100.00000000000006,2020-12-02 +821,8218.218218218219,4.0,20.000000000000014,100.00000000000006,2020-12-02 +820,8208.208208208209,4.0,20.000000000000014,100.00000000000006,2020-12-02 +819,8198.198198198199,4.0,20.000000000000014,100.00000000000006,2020-12-02 +818,8188.188188188188,4.0,20.000000000000014,100.00000000000006,2020-12-02 +817,8178.178178178177,4.0,20.000000000000014,100.00000000000006,2020-12-02 +816,8168.1681681681675,4.0,20.000000000000014,100.00000000000006,2020-12-02 +815,8158.1581581581595,4.0,20.000000000000014,100.00000000000006,2020-12-02 +814,8148.148148148148,4.0,20.000000000000014,100.00000000000006,2020-12-02 +813,8138.138138138139,4.0,20.000000000000014,100.00000000000006,2020-12-02 +812,8128.128128128127,4.0,20.000000000000014,100.00000000000006,2020-12-02 +811,8118.118118118117,4.0,20.000000000000014,100.00000000000006,2020-12-02 +810,8108.108108108108,4.0,20.000000000000014,100.00000000000006,2020-12-02 +809,8098.0980980980985,4.0,20.000000000000014,100.00000000000006,2020-12-02 +808,8088.088088088089,4.0,20.000000000000014,100.00000000000006,2020-12-02 +807,8078.078078078077,4.0,20.000000000000014,100.00000000000006,2020-12-02 +806,8068.068068068068,4.0,20.000000000000014,100.00000000000006,2020-12-02 +805,8058.058058058058,4.0,20.000000000000014,100.00000000000006,2020-12-02 +804,8048.048048048048,4.0,20.000000000000014,100.00000000000006,2020-12-02 +253,2532.5325325325325,4.0,20.000000000000014,100.00000000000006,2020-12-02 +803,8038.038038038038,4.0,20.000000000000014,100.00000000000006,2020-12-02 +802,8028.0280280280285,4.0,20.000000000000014,100.00000000000006,2020-12-02 +801,8018.018018018018,4.0,20.000000000000014,100.00000000000006,2020-12-02 +827,8278.278278278278,4.0,20.000000000000014,100.00000000000006,2020-12-02 +828,8288.288288288288,4.0,20.000000000000014,100.00000000000006,2020-12-02 +829,8298.298298298298,4.0,20.000000000000014,100.00000000000006,2020-12-02 +830,8308.308308308307,4.0,20.000000000000014,100.00000000000006,2020-12-02 +859,8598.598598598599,4.0,20.000000000000014,100.00000000000006,2020-12-02 +858,8588.588588588591,4.0,20.000000000000014,100.00000000000006,2020-12-02 +857,8578.57857857858,4.0,20.000000000000014,100.00000000000006,2020-12-02 +856,8568.568568568571,4.0,20.000000000000014,100.00000000000006,2020-12-02 +855,8558.558558558558,4.0,20.000000000000014,100.00000000000006,2020-12-02 +854,8548.548548548548,4.0,20.000000000000014,100.00000000000006,2020-12-02 +853,8538.538538538538,4.0,20.000000000000014,100.00000000000006,2020-12-02 +852,8528.528528528528,4.0,20.000000000000014,100.00000000000006,2020-12-02 +851,8518.518518518518,4.0,20.000000000000014,100.00000000000006,2020-12-02 +850,8508.508508508508,4.0,20.000000000000014,100.00000000000006,2020-12-02 +849,8498.498498498499,4.0,20.000000000000014,100.00000000000006,2020-12-02 +847,8478.478478478479,4.0,20.000000000000014,100.00000000000006,2020-12-02 +846,8468.468468468469,4.0,20.000000000000014,100.00000000000006,2020-12-02 +861,8618.618618618619,4.0,20.000000000000014,100.00000000000006,2020-12-02 +845,8458.458458458459,4.0,20.000000000000014,100.00000000000006,2020-12-02 +843,8438.438438438441,4.0,20.000000000000014,100.00000000000006,2020-12-02 +842,8428.428428428428,4.0,20.000000000000014,100.00000000000006,2020-12-02 +841,8418.418418418418,4.0,20.000000000000014,100.00000000000006,2020-12-02 +840,8408.408408408408,4.0,20.000000000000014,100.00000000000006,2020-12-02 +839,8398.398398398398,4.0,20.000000000000014,100.00000000000006,2020-12-02 +838,8388.388388388388,4.0,20.000000000000014,100.00000000000006,2020-12-02 +837,8378.378378378378,4.0,20.000000000000014,100.00000000000006,2020-12-02 +836,8368.368368368368,4.0,20.000000000000014,100.00000000000006,2020-12-02 +835,8358.358358358359,4.0,20.000000000000014,100.00000000000006,2020-12-02 +834,8348.348348348349,4.0,20.000000000000014,100.00000000000006,2020-12-02 +833,8338.338338338339,4.0,20.000000000000014,100.00000000000006,2020-12-02 +832,8328.328328328329,4.0,20.000000000000014,100.00000000000006,2020-12-02 +831,8318.318318318321,4.0,20.000000000000014,100.00000000000006,2020-12-02 +844,8448.44844844845,4.0,20.000000000000014,100.00000000000006,2020-12-02 +924,9249.249249249251,4.0,20.000000000000014,100.00000000000006,2020-12-02 +848,8488.488488488489,4.0,20.000000000000014,100.00000000000006,2020-12-02 +926,9269.269269269267,4.0,20.000000000000014,100.00000000000006,2020-12-02 +287,2872.872872872873,4.0,20.000000000000014,100.00000000000006,2020-12-02 +288,2882.882882882883,4.0,20.000000000000014,100.00000000000006,2020-12-02 +289,2892.892892892893,4.0,20.000000000000014,100.00000000000006,2020-12-02 +290,2902.902902902903,4.0,20.000000000000014,100.00000000000006,2020-12-02 +291,2912.9129129129133,4.0,20.000000000000014,100.00000000000006,2020-12-02 +292,2922.922922922923,4.0,20.000000000000014,100.00000000000006,2020-12-02 +293,2932.9329329329325,4.0,20.000000000000014,100.00000000000006,2020-12-02 +294,2942.9429429429433,4.0,20.000000000000014,100.00000000000006,2020-12-02 +295,2952.9529529529527,4.0,20.000000000000014,100.00000000000006,2020-12-02 +296,2962.962962962963,4.0,20.000000000000014,100.00000000000006,2020-12-02 +297,2972.972972972973,4.0,20.000000000000014,100.00000000000006,2020-12-02 +298,2982.982982982983,4.0,20.000000000000014,100.00000000000006,2020-12-02 +299,2992.992992992993,4.0,20.000000000000014,100.00000000000006,2020-12-02 +300,3003.003003003003,4.0,20.000000000000014,100.00000000000006,2020-12-02 +301,3013.013013013013,4.0,20.000000000000014,100.00000000000006,2020-12-02 +1,10.01001001001001,4.0,20.000000000000007,100.00000000000006,2020-12-02 +999,10000.0,4.0,20.00000000000003,100.00000000000016,2020-12-02 +998,9989.98998998999,4.0,20.000000000000025,100.00000000000011,2020-12-02 +997,9979.979979979978,4.0,20.000000000000018,100.00000000000009,2020-12-02 +996,9969.96996996997,4.0,20.000000000000014,100.00000000000006,2020-12-02 +995,9959.95995995996,4.0,20.000000000000014,100.00000000000006,2020-12-02 +994,9949.94994994995,4.0,20.000000000000014,100.00000000000006,2020-12-02 +993,9939.93993993994,4.0,20.000000000000014,100.00000000000006,2020-12-02 +992,9929.92992992993,4.0,20.000000000000014,100.00000000000006,2020-12-02 +991,9919.919919919921,4.0,20.000000000000014,100.00000000000006,2020-12-02 +990,9909.90990990991,4.0,20.000000000000014,100.00000000000006,2020-12-02 +989,9899.8998998999,4.0,20.000000000000014,100.00000000000006,2020-12-02 +286,2862.862862862863,4.0,20.000000000000014,100.00000000000006,2020-12-02 +285,2852.8528528528527,4.0,20.000000000000014,100.00000000000006,2020-12-02 +284,2842.842842842843,4.0,20.000000000000014,100.00000000000006,2020-12-02 +283,2832.8328328328334,4.0,20.000000000000014,100.00000000000006,2020-12-02 +257,2572.5725725725724,4.0,20.000000000000014,100.00000000000006,2020-12-02 +258,2582.582582582583,4.0,20.000000000000014,100.00000000000006,2020-12-02 +925,9259.25925925926,4.0,20.000000000000014,100.00000000000006,2020-12-02 +256,2562.5625625625626,4.0,20.000000000000014,100.00000000000006,2020-12-02 +255,2552.552552552553,4.0,20.000000000000014,100.00000000000006,2020-12-02 +259,2592.592592592593,4.0,20.000000000000014,100.00000000000006,2020-12-02 +260,2602.6026026026025,4.0,20.000000000000014,100.00000000000006,2020-12-02 +261,2612.612612612613,4.0,20.000000000000014,100.00000000000006,2020-12-02 +262,2622.622622622623,4.0,20.000000000000014,100.00000000000006,2020-12-02 +263,2632.6326326326325,4.0,20.000000000000014,100.00000000000006,2020-12-02 +264,2642.6426426426433,4.0,20.000000000000014,100.00000000000006,2020-12-02 +265,2652.6526526526527,4.0,20.000000000000014,100.00000000000006,2020-12-02 +266,2662.6626626626626,4.0,20.000000000000014,100.00000000000006,2020-12-02 +988,9889.88988988989,4.0,20.000000000000014,100.00000000000006,2020-12-02 +267,2672.672672672673,4.0,20.000000000000014,100.00000000000006,2020-12-02 +269,2692.692692692693,4.0,20.000000000000014,100.00000000000006,2020-12-02 +270,2702.7027027027025,4.0,20.000000000000014,100.00000000000006,2020-12-02 +271,2712.712712712713,4.0,20.000000000000014,100.00000000000006,2020-12-02 +272,2722.722722722723,4.0,20.000000000000014,100.00000000000006,2020-12-02 +273,2732.7327327327325,4.0,20.000000000000014,100.00000000000006,2020-12-02 +274,2742.742742742743,4.0,20.000000000000014,100.00000000000006,2020-12-02 +275,2752.752752752753,4.0,20.000000000000014,100.00000000000006,2020-12-02 +276,2762.7627627627626,4.0,20.000000000000014,100.00000000000006,2020-12-02 +277,2772.772772772773,4.0,20.000000000000014,100.00000000000006,2020-12-02 +278,2782.782782782783,4.0,20.000000000000014,100.00000000000006,2020-12-02 +279,2792.792792792793,4.0,20.000000000000014,100.00000000000006,2020-12-02 +281,2812.8128128128133,4.0,20.000000000000014,100.00000000000006,2020-12-02 +282,2822.8228228228227,4.0,20.000000000000014,100.00000000000006,2020-12-02 +268,2682.682682682683,4.0,20.000000000000014,100.00000000000006,2020-12-02 +987,9879.87987987988,4.0,20.000000000000014,100.00000000000006,2020-12-02 +280,2802.802802802803,4.0,20.000000000000014,100.00000000000006,2020-12-02 +985,9859.85985985986,4.0,20.000000000000014,100.00000000000006,2020-12-02 +954,9549.549549549549,4.0,20.000000000000014,100.00000000000006,2020-12-02 +953,9539.539539539539,4.0,20.000000000000014,100.00000000000006,2020-12-02 +952,9529.529529529531,4.0,20.000000000000014,100.00000000000006,2020-12-02 +951,9519.519519519521,4.0,20.000000000000014,100.00000000000006,2020-12-02 +950,9509.50950950951,4.0,20.000000000000014,100.00000000000006,2020-12-02 +949,9499.4994994995,4.0,20.000000000000014,100.00000000000006,2020-12-02 +948,9489.489489489491,4.0,20.000000000000014,100.00000000000006,2020-12-02 +947,9479.47947947948,4.0,20.000000000000014,100.00000000000006,2020-12-02 +946,9469.46946946947,4.0,20.000000000000014,100.00000000000006,2020-12-02 +945,9459.45945945946,4.0,20.000000000000014,100.00000000000006,2020-12-02 +944,9449.44944944945,4.0,20.000000000000014,100.00000000000006,2020-12-02 +943,9439.43943943944,4.0,20.000000000000014,100.00000000000006,2020-12-02 +941,9419.41941941942,4.0,20.000000000000014,100.00000000000006,2020-12-02 +955,9559.55955955956,4.0,20.000000000000014,100.00000000000006,2020-12-02 +940,9409.409409409407,4.0,20.000000000000014,100.00000000000006,2020-12-02 +938,9389.389389389391,4.0,20.000000000000014,100.00000000000006,2020-12-02 +937,9379.37937937938,4.0,20.000000000000014,100.00000000000006,2020-12-02 +936,9369.36936936937,4.0,20.000000000000014,100.00000000000006,2020-12-02 +935,9359.35935935936,4.0,20.000000000000014,100.00000000000006,2020-12-02 +934,9349.34934934935,4.0,20.000000000000014,100.00000000000006,2020-12-02 +933,9339.339339339342,4.0,20.000000000000014,100.00000000000006,2020-12-02 +932,9329.32932932933,4.0,20.000000000000014,100.00000000000006,2020-12-02 +927,9279.27927927928,4.0,20.000000000000014,100.00000000000006,2020-12-02 +931,9319.31931931932,4.0,20.000000000000014,100.00000000000006,2020-12-02 +930,9309.309309309308,4.0,20.000000000000014,100.00000000000006,2020-12-02 +986,9869.86986986987,4.0,20.000000000000014,100.00000000000006,2020-12-02 +929,9299.2992992993,4.0,20.000000000000014,100.00000000000006,2020-12-02 +928,9289.289289289289,4.0,20.000000000000014,100.00000000000006,2020-12-02 +939,9399.399399399399,4.0,20.000000000000014,100.00000000000006,2020-12-02 +956,9569.56956956957,4.0,20.000000000000014,100.00000000000006,2020-12-02 +942,9429.429429429427,4.0,20.000000000000014,100.00000000000006,2020-12-02 +982,9829.829829829829,4.0,20.000000000000014,100.00000000000006,2020-12-02 +957,9579.57957957958,4.0,20.000000000000014,100.00000000000006,2020-12-02 +981,9819.81981981982,4.0,20.000000000000014,100.00000000000006,2020-12-02 +980,9809.809809809809,4.0,20.000000000000014,100.00000000000006,2020-12-02 +979,9799.799799799799,4.0,20.000000000000014,100.00000000000006,2020-12-02 +978,9789.78978978979,4.0,20.000000000000014,100.00000000000006,2020-12-02 +977,9779.779779779781,4.0,20.000000000000014,100.00000000000006,2020-12-02 +976,9769.769769769771,4.0,20.000000000000014,100.00000000000006,2020-12-02 +974,9749.74974974975,4.0,20.000000000000014,100.00000000000006,2020-12-02 +973,9739.739739739742,4.0,20.000000000000014,100.00000000000006,2020-12-02 +972,9729.72972972973,4.0,20.000000000000014,100.00000000000006,2020-12-02 +971,9719.71971971972,4.0,20.000000000000014,100.00000000000006,2020-12-02 +984,9849.84984984985,4.0,20.000000000000014,100.00000000000006,2020-12-02 +970,9709.70970970971,4.0,20.000000000000014,100.00000000000006,2020-12-02 +975,9759.75975975976,4.0,20.000000000000014,100.00000000000006,2020-12-02 +968,9689.68968968969,4.0,20.000000000000014,100.00000000000006,2020-12-02 +958,9589.589589589592,4.0,20.000000000000014,100.00000000000006,2020-12-02 +969,9699.6996996997,4.0,20.000000000000014,100.00000000000006,2020-12-02 +960,9609.60960960961,4.0,20.000000000000014,100.00000000000006,2020-12-02 +961,9619.61961961962,4.0,20.000000000000014,100.00000000000006,2020-12-02 +962,9629.62962962963,4.0,20.000000000000014,100.00000000000006,2020-12-02 +963,9639.639639639641,4.0,20.000000000000014,100.00000000000006,2020-12-02 +959,9599.5995995996,4.0,20.000000000000014,100.00000000000006,2020-12-02 +964,9649.64964964965,4.0,20.000000000000014,100.00000000000006,2020-12-02 +967,9679.67967967968,4.0,20.000000000000014,100.00000000000006,2020-12-02 +966,9669.669669669667,4.0,20.000000000000014,100.00000000000006,2020-12-02 +965,9659.65965965966,4.0,20.000000000000014,100.00000000000006,2020-12-02 +983,9839.83983983984,4.0,20.000000000000014,100.00000000000006,2020-12-02 +986,8813.300000000001,4.0,22.90476190476192,263.7400892652913,2020-12-03 +984,8796.1,4.0,23.666666666666682,269.68167953739,2020-12-03 +988,8830.5,4.0,22.666666666666682,257.73877400278354,2020-12-03 +985,8804.5,4.0,23.428571428571445,267.42701161595306,2020-12-03 +989,8839.300000000001,4.0,22.71428571428573,263.53257425974766,2020-12-03 +999,8927.1,4.0,23.857142857142875,296.8561677078562,2020-12-03 +991,8856.9,4.0,23.238095238095255,289.77054742034204,2020-12-03 +992,8865.5,4.0,23.2857142857143,298.99271352328725,2020-12-03 +993,8874.4,4.0,23.238095238095255,301.34062832845314,2020-12-03 +994,8883.300000000001,4.0,23.428571428571445,297.88257484233304,2020-12-03 +995,8892.2,4.0,23.33333333333335,290.9903189751374,2020-12-03 +996,8900.6,4.0,23.285714285714302,287.71898484712995,2020-12-03 +997,8909.6,4.0,23.619047619047635,290.0487236570058,2020-12-03 +998,8917.7,4.0,23.809523809523824,293.95470587374353,2020-12-03 +987,8821.800000000001,4.0,22.619047619047635,258.68681724189247,2020-12-03 +990,8848.1,4.0,22.761904761904777,275.7041318764303,2020-12-03 +1015,9063.5,4.0,25.857142857142875,304.4874060665446,2020-12-03 +1001,8944.7,4.0,24.047619047619065,293.78584824988695,2020-12-03 +1014,9055.0,4.0,25.190476190476204,308.1789687155419,2020-12-03 +983,8787.800000000001,4.0,23.95238095238097,272.8400185811078,2020-12-03 +1016,9071.4,4.0,25.809523809523828,301.6352301798828,2020-12-03 +1013,9046.5,4.0,24.761904761904777,309.5735998589686,2020-12-03 +1012,9038.300000000001,4.0,24.571428571428587,309.61583578271177,2020-12-03 +1011,9029.800000000001,4.0,24.71428571428573,307.4057961352167,2020-12-03 +1010,9021.300000000001,4.0,24.857142857142872,308.44128994270454,2020-12-03 +1000,8935.5,4.0,24.000000000000018,295.8711919529179,2020-12-03 +1009,9012.6,4.0,25.09523809523811,312.540830684895,2020-12-03 +1017,9079.5,4.0,25.90476190476192,301.21927761538706,2020-12-03 +1007,8996.0,4.0,25.000000000000014,321.5377072100498,2020-12-03 +1006,8987.4,4.0,25.000000000000014,324.15514083159127,2020-12-03 +1005,8978.800000000001,4.0,25.09523809523811,321.80773739643433,2020-12-03 +1004,8970.6,4.0,24.952380952380967,314.41400576819257,2020-12-03 +1003,8961.9,4.0,24.666666666666682,304.54851759616656,2020-12-03 +1002,8953.2,4.0,24.33333333333335,296.5407554439139,2020-12-03 +1008,9003.6,4.0,25.000000000000014,317.35267093567575,2020-12-03 +982,8779.7,4.0,24.000000000000018,282.5139469076204,2020-12-03 +954,8540.300000000001,4.0,24.190476190476208,319.4701974119731,2020-12-03 +980,8762.800000000001,4.0,24.238095238095255,313.23127227175365,2020-12-03 +959,8582.6,4.0,25.14285714285716,305.19653837738724,2020-12-03 +958,8574.7,4.0,24.809523809523824,309.5528128179499,2020-12-03 +957,8565.9,4.0,24.666666666666682,315.07736835143453,2020-12-03 +956,8556.9,4.0,24.380952380952397,320.528208826272,2020-12-03 +955,8548.9,4.0,24.476190476190492,322.20112147770703,2020-12-03 +953,8531.6,4.0,24.14285714285716,312.7368737071431,2020-12-03 +952,8522.9,4.0,24.000000000000018,307.28185258024547,2020-12-03 +960,8591.300000000001,4.0,25.047619047619065,308.57701483256983,2020-12-03 +951,8513.300000000001,4.0,24.047619047619065,302.2640192935994,2020-12-03 +949,8496.300000000001,4.0,23.047619047619065,297.8651839166654,2020-12-03 +948,8487.300000000001,4.0,22.71428571428573,296.73742065558713,2020-12-03 +947,8478.4,4.0,22.71428571428573,294.3751047102037,2020-12-03 +1018,9088.6,4.0,25.52380952380954,301.38235974671454,2020-12-03 +944,8451.2,4.0,22.952380952380967,295.38836916530204,2020-12-03 +946,8469.300000000001,4.0,22.619047619047635,294.2726395979905,2020-12-03 +945,8460.5,4.0,22.95238095238097,295.1508300845609,2020-12-03 +950,8505.2,4.0,23.52380952380954,299.5882999006323,2020-12-03 +981,8771.5,4.0,24.047619047619065,298.08065699944444,2020-12-03 +961,8599.5,4.0,25.380952380952397,315.18491939706735,2020-12-03 +963,8616.9,4.0,25.380952380952397,325.9526760541189,2020-12-03 +979,8753.5,4.0,24.809523809523824,324.43164802819376,2020-12-03 +978,8745.4,4.0,25.238095238095255,332.23976749697476,2020-12-03 +977,8736.800000000001,4.0,25.428571428571445,335.1913392605044,2020-12-03 +976,8728.0,4.0,25.285714285714302,336.02169460465655,2020-12-03 +975,8719.7,4.0,25.14285714285716,333.34945096372496,2020-12-03 +974,8710.300000000001,4.0,24.90476190476192,326.4569510466274,2020-12-03 +973,8702.6,4.0,25.000000000000014,320.2916192038437,2020-12-03 +962,8608.5,4.0,25.09523809523811,320.97567742718377,2020-12-03 +972,8694.0,4.0,25.000000000000014,317.26249069520554,2020-12-03 +970,8676.4,4.0,25.14285714285716,321.960527874944,2020-12-03 +969,8668.4,4.0,25.190476190476204,328.21528168306776,2020-12-03 +968,8659.9,4.0,25.380952380952397,333.90416729233726,2020-12-03 +967,8651.7,4.0,25.71428571428573,338.4342889535717,2020-12-03 +966,8642.800000000001,4.0,25.666666666666686,337.5690337605555,2020-12-03 +965,8633.9,4.0,25.666666666666686,333.4202661215693,2020-12-03 +964,8625.800000000001,4.0,25.71428571428573,330.41294903501336,2020-12-03 +971,8685.2,4.0,24.90476190476192,317.3895742959911,2020-12-03 +1019,9096.4,4.0,25.52380952380954,296.7944030204535,2020-12-03 +1085,9641.800000000001,4.0,19.000000000000014,221.58635096356764,2020-12-03 +1021,9112.6,4.0,25.52380952380954,286.29507352665905,2020-12-03 +1086,9651.300000000001,4.0,19.000000000000014,226.2189121636602,2020-12-03 +1084,9632.5,4.0,19.000000000000014,215.49094445495837,2020-12-03 +1083,9623.6,4.0,19.000000000000014,210.10210356021196,2020-12-03 +1082,9614.4,4.0,19.09523809523811,207.7140885193559,2020-12-03 +1081,9605.1,4.0,18.85714285714287,208.3203234363333,2020-12-03 +1080,9595.800000000001,4.0,18.714285714285726,211.03242124006422,2020-12-03 +1079,9587.300000000001,4.0,18.66666666666668,212.8645675973833,2020-12-03 +1087,9660.6,4.0,19.000000000000014,230.3314380253697,2020-12-03 +1078,9577.9,4.0,18.714285714285726,208.9362596450294,2020-12-03 +1076,9559.2,4.0,19.09523809523811,197.26976379770616,2020-12-03 +1075,9550.300000000001,4.0,19.000000000000014,197.1801754549183,2020-12-03 +1074,9541.800000000001,4.0,19.000000000000014,201.70437759928296,2020-12-03 +1073,9533.300000000001,4.0,19.000000000000014,206.93720240350834,2020-12-03 +1072,9524.1,4.0,19.000000000000014,207.878210501716,2020-12-03 +1071,9515.300000000001,4.0,19.000000000000014,202.97419025653923,2020-12-03 +1070,9506.0,4.0,18.90476190476192,195.08228244606426,2020-12-03 +1077,9568.7,4.0,18.85714285714287,202.14573037719714,2020-12-03 +1069,9496.9,4.0,19.23809523809525,185.85700373856753,2020-12-03 +1088,9670.1,4.0,19.000000000000014,231.8236015535953,2020-12-03 +1090,9689.300000000001,4.0,19.09523809523811,230.14117514524315,2020-12-03 +1104,9822.4,4.0,18.380952380952394,240.19907218807313,2020-12-03 +1105,9832.0,4.0,18.47619047619049,236.46293846374698,2020-12-03 +943,8443.4,4.0,23.047619047619065,296.09694553035627,2020-12-03 +1103,9812.800000000001,4.0,18.333333333333343,241.99765696839273,2020-12-03 +1102,9803.2,4.0,18.428571428571438,245.0992808436312,2020-12-03 +1101,9793.6,4.0,18.23809523809525,250.80679005390806,2020-12-03 +1100,9784.0,4.0,18.190476190476204,258.0279048135509,2020-12-03 +1089,9679.6,4.0,19.000000000000014,231.4857897895941,2020-12-03 +1099,9774.300000000001,4.0,18.190476190476204,262.5563578080636,2020-12-03 +1097,9753.9,4.0,18.714285714285726,251.547223723115,2020-12-03 +1096,9744.7,4.0,19.47619047619049,241.0570099055272,2020-12-03 +1095,9735.5,4.0,19.571428571428584,231.52558979049562,2020-12-03 +1094,9726.5,4.0,19.333333333333346,226.72843811956824,2020-12-03 +1093,9717.4,4.0,19.09523809523811,226.00338624095514,2020-12-03 +1092,9707.9,4.0,18.761904761904773,226.15255486338742,2020-12-03 +1091,9698.5,4.0,18.761904761904773,227.92953360223146,2020-12-03 +1098,9764.2,4.0,18.142857142857153,259.7568392640926,2020-12-03 +1020,9104.800000000001,4.0,25.380952380952397,290.967078970593,2020-12-03 +1068,9488.300000000001,4.0,19.23809523809525,173.5992904204075,2020-12-03 +1066,9471.2,4.0,18.66666666666668,134.40066856587626,2020-12-03 +1037,9246.5,4.0,25.76190476190478,302.12901326004874,2020-12-03 +1036,9238.2,4.0,25.428571428571445,310.58994501772173,2020-12-03 +1035,9229.7,4.0,25.476190476190492,316.0753682730474,2020-12-03 +1034,9221.7,4.0,25.380952380952397,317.2560281424775,2020-12-03 +1033,9213.1,4.0,25.666666666666686,312.74344960004396,2020-12-03 +1032,9204.9,4.0,25.904761904761923,306.6213054276395,2020-12-03 +1031,9196.2,4.0,25.666666666666686,301.3969014312767,2020-12-03 +1038,9254.300000000001,4.0,25.619047619047635,293.7083350249422,2020-12-03 +1030,9187.7,4.0,25.476190476190492,299.63985472124097,2020-12-03 +1028,9171.1,4.0,25.14285714285716,306.9324086420606,2020-12-03 +1027,9163.2,4.0,25.33333333333335,312.7680902375131,2020-12-03 +1026,9154.0,4.0,25.476190476190492,314.1697144640973,2020-12-03 +1025,9145.9,4.0,25.666666666666686,310.11678780413564,2020-12-03 +1024,9137.9,4.0,25.809523809523828,302.2988743328672,2020-12-03 +1023,9129.1,4.0,25.90476190476192,292.5003781364145,2020-12-03 +1022,9121.1,4.0,25.52380952380954,286.69315321522134,2020-12-03 +1029,9179.6,4.0,25.33333333333335,301.2372310124058,2020-12-03 +1067,9479.5,4.0,19.09523809523811,156.3777568027886,2020-12-03 +1039,9261.7,4.0,25.52380952380954,286.9333216758166,2020-12-03 +1041,9278.5,4.0,25.380952380952397,272.38887221901746,2020-12-03 +1065,9462.300000000001,4.0,17.904761904761916,109.11562644856036,2020-12-03 +1056,9395.9,4.0,16.380952380952394,252.8963464401866,2020-12-03 +1055,9389.0,4.0,19.66666666666668,321.4889488590166,2020-12-03 +1054,9374.4,4.0,23.190476190476204,347.1320015528376,2020-12-03 +1053,9374.4,4.0,26.476190476190496,340.01670952699396,2020-12-03 +1052,9366.4,4.0,28.285714285714306,314.79778242116936,2020-12-03 +1051,9358.2,4.0,27.14285714285716,293.62375502616055,2020-12-03 +1040,9270.300000000001,4.0,25.476190476190492,281.24615884983706,2020-12-03 +1050,9350.5,4.0,26.904761904761923,289.2554756611458,2020-12-03 +1048,9333.9,4.0,26.238095238095255,290.93214030553884,2020-12-03 +1047,9326.1,4.0,26.428571428571445,284.98732320467275,2020-12-03 +1046,9318.0,4.0,26.33333333333335,274.10234142527867,2020-12-03 +1045,9310.1,4.0,26.238095238095255,262.2015926080637,2020-12-03 +1044,9302.300000000001,4.0,25.71428571428573,255.760903173823,2020-12-03 +1043,9294.300000000001,4.0,25.380952380952397,256.8082543656756,2020-12-03 +1042,9286.7,4.0,25.238095238095255,263.53467304400965,2020-12-03 +1049,9342.5,4.0,26.428571428571445,292.480497668587,2020-12-03 +942,8434.6,4.0,23.238095238095255,298.07891599405195,2020-12-03 +802,7285.6,4.0,16.42857142857144,165.49874914920136,2020-12-03 +940,8416.7,4.0,22.761904761904777,292.2640068249274,2020-12-03 +839,7496.5,4.0,18.42857142857144,250.4405155941339,2020-12-03 +838,7486.8,4.0,18.380952380952394,220.46080323263305,2020-12-03 +837,7477.200000000001,4.0,18.000000000000014,162.1334764966307,2020-12-03 +818,7427.400000000001,4.0,18.000000000000014,152.9231170523884,2020-12-03 +817,7427.400000000001,4.0,16.428571428571438,191.50125048064928,2020-12-03 +816,7417.700000000001,4.0,16.952380952380963,195.1413635359295,2020-12-03 +815,7408.1,4.0,16.66666666666668,171.14563218452247,2020-12-03 +814,7398.700000000001,4.0,16.333333333333343,149.9223922568711,2020-12-03 +813,7389.3,4.0,16.047619047619058,152.20569868876484,2020-12-03 +812,7380.900000000001,4.0,15.80952380952382,158.95884599630494,2020-12-03 +811,7371.700000000001,4.0,16.142857142857153,172.94550161956812,2020-12-03 +810,7362.3,4.0,16.190476190476204,189.22943660840804,2020-12-03 +809,7352.1,4.0,16.47619047619049,204.21688119655624,2020-12-03 +808,7343.400000000001,4.0,16.571428571428584,212.1340073079874,2020-12-03 +807,7333.200000000001,4.0,16.380952380952394,208.17873314185073,2020-12-03 +840,7506.400000000001,4.0,18.142857142857153,257.9527178387215,2020-12-03 +841,7516.6,4.0,17.85714285714287,261.2015236289528,2020-12-03 +842,7526.700000000001,4.0,17.571428571428584,263.35424904983466,2020-12-03 +843,7536.400000000001,4.0,17.714285714285726,264.23193787543994,2020-12-03 +859,7690.3,4.0,24.809523809523824,378.2808489449385,2020-12-03 +858,7681.8,4.0,25.190476190476208,359.6154525264884,2020-12-03 +857,7673.200000000001,4.0,24.666666666666682,330.48291285438427,2020-12-03 +856,7664.1,4.0,23.380952380952394,298.0631069388385,2020-12-03 +855,7655.200000000001,4.0,21.380952380952394,277.928321297225,2020-12-03 +854,7645.400000000001,4.0,19.761904761904773,269.30868619693535,2020-12-03 +853,7635.8,4.0,18.238095238095248,265.63888217839235,2020-12-03 +806,7323.200000000001,4.0,16.333333333333343,197.79093866120257,2020-12-03 +852,7625.3,4.0,18.23809523809525,261.2477126757976,2020-12-03 +850,7605.700000000001,4.0,18.61904761904763,245.1364480813545,2020-12-03 +849,7595.400000000001,4.0,18.23809523809525,240.95005691940216,2020-12-03 +848,7586.5,4.0,18.095238095238106,243.44670088156067,2020-12-03 +847,7576.200000000001,4.0,17.761904761904773,247.6711209630705,2020-12-03 +846,7566.3,4.0,17.761904761904773,253.3938260329238,2020-12-03 +845,7557.0,4.0,18.190476190476204,259.39152357599204,2020-12-03 +844,7547.400000000001,4.0,17.85714285714287,263.3852121223465,2020-12-03 +851,7615.6,4.0,18.714285714285726,254.58304636617646,2020-12-03 +805,7313.5,4.0,16.42857142857144,184.16307460316588,2020-12-03 +804,7303.400000000001,4.0,16.142857142857153,172.7758859480391,2020-12-03 +803,7294.700000000001,4.0,16.42857142857144,167.76029566485101,2020-12-03 +774,7039.0,4.0,24.666666666666686,343.5922482368632,2020-12-03 +773,7030.200000000001,4.0,24.71428571428573,340.64004836623883,2020-12-03 +772,7021.3,4.0,24.857142857142872,344.1000324651079,2020-12-03 +771,7012.5,4.0,25.09523809523811,348.6613005455165,2020-12-03 +770,7003.200000000001,4.0,25.000000000000014,348.57500094408454,2020-12-03 +769,6995.0,4.0,25.000000000000014,344.41981114055886,2020-12-03 +768,6986.0,4.0,25.000000000000014,339.3627958423478,2020-12-03 +775,7047.3,4.0,24.71428571428573,349.6240734722041,2020-12-03 +767,6977.6,4.0,25.09523809523811,335.1935167829648,2020-12-03 +765,6959.900000000001,4.0,24.666666666666682,340.3565472306203,2020-12-03 +764,6951.5,4.0,24.33333333333335,351.2121544617298,2020-12-03 +763,6942.200000000001,4.0,23.95238095238097,362.9972454105181,2020-12-03 +762,6933.400000000001,4.0,23.857142857142875,371.1535615908318,2020-12-03 +761,6924.200000000001,4.0,24.3809523809524,372.8632867526084,2020-12-03 +1106,9841.300000000001,4.0,18.619047619047635,226.37981553188197,2020-12-03 +760,6914.1,4.0,25.09523809523811,368.1046671854816,2020-12-03 +766,6968.8,4.0,24.952380952380967,335.00315938626994,2020-12-03 +860,7700.0,4.0,24.76190476190478,384.70040349300524,2020-12-03 +776,7057.200000000001,4.0,24.857142857142872,356.6758524560977,2020-12-03 +778,7074.200000000001,4.0,25.000000000000014,353.3251023837423,2020-12-03 +801,7276.1,4.0,16.333333333333343,161.93564641879254,2020-12-03 +800,7266.900000000001,4.0,16.238095238095248,156.87658053989577,2020-12-03 +799,7257.5,4.0,15.809523809523817,148.95122422038332,2020-12-03 +798,7248.5,4.0,15.238095238095248,140.215748063199,2020-12-03 +797,7239.5,4.0,15.047619047619058,130.0696839137928,2020-12-03 +795,7221.200000000001,4.0,15.095238095238106,103.01299298843169,2020-12-03 +788,7165.700000000001,4.0,15.285714285714295,233.6380737922433,2020-12-03 +777,7065.400000000001,4.0,25.09523809523811,358.90366625031135,2020-12-03 +787,7155.6,4.0,18.09523809523811,321.65107242112936,2020-12-03 +785,7136.400000000001,4.0,24.3809523809524,391.1070085940492,2020-12-03 +784,7126.3,4.0,25.33333333333335,371.6265151918558,2020-12-03 +783,7117.700000000001,4.0,24.952380952380967,346.14171222565324,2020-12-03 +782,7108.700000000001,4.0,25.09523809523811,332.7766184531181,2020-12-03 +781,7100.400000000001,4.0,25.000000000000014,331.3112412932106,2020-12-03 +780,7091.6,4.0,25.000000000000014,336.61244163961067,2020-12-03 +779,7082.900000000001,4.0,25.000000000000014,344.66585999468884,2020-12-03 +786,7145.8,4.0,21.33333333333335,378.0970335670479,2020-12-03 +861,7709.200000000001,4.0,24.33333333333335,382.0516657938247,2020-12-03 +862,7718.1,4.0,23.95238095238097,376.4674790598042,2020-12-03 +863,7727.3,4.0,23.95238095238097,372.8275233020571,2020-12-03 +919,8234.0,4.0,24.571428571428587,342.04052769643505,2020-12-03 +918,8225.800000000001,4.0,24.571428571428587,345.1487745037758,2020-12-03 +917,8216.9,4.0,24.76190476190478,347.8593341327595,2020-12-03 +916,8207.9,4.0,24.71428571428573,346.8864652906756,2020-12-03 +915,8198.300000000001,4.0,24.761904761904777,344.93486533154856,2020-12-03 +914,8189.900000000001,4.0,25.238095238095255,343.702110732891,2020-12-03 +913,8181.3,4.0,25.285714285714302,344.1459401729111,2020-12-03 +920,8242.800000000001,4.0,24.76190476190478,338.7294641892547,2020-12-03 +912,8172.400000000001,4.0,25.33333333333335,345.7498349461551,2020-12-03 +910,8154.900000000001,4.0,25.14285714285716,348.01808847863833,2020-12-03 +909,8146.400000000001,4.0,25.000000000000014,350.86762455154144,2020-12-03 +908,8137.5,4.0,24.952380952380967,353.99286442267805,2020-12-03 +907,8128.6,4.0,24.666666666666682,352.087283049544,2020-12-03 +906,8118.900000000001,4.0,24.428571428571445,342.93014983308973,2020-12-03 +905,8110.400000000001,4.0,24.000000000000018,326.9897996034745,2020-12-03 +904,8101.1,4.0,23.476190476190492,311.45274291254657,2020-12-03 +911,8163.400000000001,4.0,25.285714285714302,347.5890526427918,2020-12-03 +903,8092.200000000001,4.0,23.476190476190492,306.9595905750592,2020-12-03 +921,8251.9,4.0,24.71428571428573,334.6079725392609,2020-12-03 +923,8268.800000000001,4.0,25.09523809523811,332.8799061922963,2020-12-03 +939,8407.9,4.0,22.952380952380967,284.2547109957777,2020-12-03 +938,8399.2,4.0,23.14285714285716,273.89016426322223,2020-12-03 +937,8389.800000000001,4.0,22.90476190476192,270.72847216200944,2020-12-03 +936,8382.300000000001,4.0,23.09523809523811,276.4811554274328,2020-12-03 +935,8373.800000000001,4.0,22.761904761904777,286.9507572748464,2020-12-03 +934,8365.0,4.0,23.190476190476204,296.6058268661244,2020-12-03 +933,8356.0,4.0,23.33333333333335,306.3467094215406,2020-12-03 +922,8260.0,4.0,24.857142857142872,331.6288347180453,2020-12-03 +932,8347.0,4.0,23.619047619047635,312.52624495451585,2020-12-03 +930,8328.9,4.0,23.857142857142875,319.09328082051263,2020-12-03 +929,8320.2,4.0,24.190476190476208,321.1615934637511,2020-12-03 +928,8311.800000000001,4.0,24.76190476190478,324.9274885603928,2020-12-03 +927,8303.4,4.0,24.952380952380967,333.2241246505499,2020-12-03 +926,8295.300000000001,4.0,25.09523809523811,339.9114285251778,2020-12-03 +925,8285.9,4.0,25.000000000000014,340.7674082714023,2020-12-03 +924,8277.7,4.0,25.000000000000014,336.84388633651264,2020-12-03 +931,8338.5,4.0,23.428571428571445,317.14321713323784,2020-12-03 +941,8425.7,4.0,23.000000000000014,297.10706494249223,2020-12-03 +902,8083.0,4.0,23.428571428571445,314.3397705964254,2020-12-03 +900,8064.700000000001,4.0,23.000000000000014,336.34205473154026,2020-12-03 +879,7868.900000000001,4.0,24.000000000000018,357.6211264253362,2020-12-03 +878,7860.400000000001,4.0,23.90476190476192,354.4423531966585,2020-12-03 +877,7851.5,4.0,24.047619047619065,346.9839935027022,2020-12-03 +876,7842.3,4.0,24.428571428571445,340.1829839199913,2020-12-03 +875,7832.900000000001,4.0,24.52380952380954,332.45711605481574,2020-12-03 +874,7823.5,4.0,24.666666666666682,323.0377369259754,2020-12-03 +873,7815.1,4.0,24.857142857142875,315.2628639936603,2020-12-03 +880,7878.5,4.0,24.000000000000018,355.0358925330422,2020-12-03 +872,7806.3,4.0,24.666666666666682,312.63868907220007,2020-12-03 +870,7789.1,4.0,24.33333333333335,329.06347178004364,2020-12-03 +869,7780.1,4.0,24.095238095238113,339.7928341074811,2020-12-03 +868,7771.900000000001,4.0,24.238095238095255,346.32773385965345,2020-12-03 +867,7763.1,4.0,24.76190476190478,349.95203465847686,2020-12-03 +866,7754.1,4.0,24.90476190476192,353.96363981679576,2020-12-03 +865,7745.3,4.0,24.76190476190478,359.87679663799855,2020-12-03 +864,7735.6,4.0,24.33333333333335,367.24515909664984,2020-12-03 +871,7797.900000000001,4.0,24.52380952380954,317.79940597417965,2020-12-03 +901,8074.400000000001,4.0,23.095238095238113,326.3799442139024,2020-12-03 +881,7888.200000000001,4.0,24.190476190476208,347.0501366848848,2020-12-03 +883,7906.400000000001,4.0,23.380952380952397,328.4854238239776,2020-12-03 +899,8055.8,4.0,22.809523809523824,337.1018643371523,2020-12-03 +898,8046.6,4.0,22.619047619047635,330.006544508665,2020-12-03 +897,8037.200000000001,4.0,22.857142857142872,323.3399633074767,2020-12-03 +896,8027.8,4.0,23.09523809523811,321.53175623392724,2020-12-03 +895,8018.400000000001,4.0,23.000000000000014,325.26968694268027,2020-12-03 +894,8008.8,4.0,23.000000000000014,330.933553007694,2020-12-03 +893,7998.900000000001,4.0,23.000000000000014,332.0242056044773,2020-12-03 +882,7897.1,4.0,23.809523809523824,335.9382414201351,2020-12-03 +892,7990.3,4.0,23.000000000000014,326.3021810448216,2020-12-03 +890,7971.400000000001,4.0,23.000000000000014,313.8460910597049,2020-12-03 +889,7961.900000000001,4.0,23.000000000000014,315.9708873418332,2020-12-03 +888,7953.400000000001,4.0,23.000000000000014,325.4503248182483,2020-12-03 +887,7943.8,4.0,23.09523809523811,334.67580464739046,2020-12-03 +886,7934.0,4.0,22.761904761904777,337.34538284962315,2020-12-03 +885,7925.0,4.0,22.761904761904777,334.3182113670158,2020-12-03 +884,7915.8,4.0,23.000000000000014,330.19046896631494,2020-12-03 +891,7980.8,4.0,23.000000000000014,318.4739958484872,2020-12-03 +1107,9850.800000000001,4.0,18.47619047619049,213.25993977060486,2020-12-03 +213,1686.2,4.0,18.380952380952394,348.8887426510594,2020-12-03 +1109,9868.7,4.0,18.095238095238106,194.4379267746799,2020-12-03 +156,1305.6000000000001,4.0,18.000000000000014,230.459766152287,2020-12-03 +155,1295.9,4.0,17.42857142857144,251.7768328506714,2020-12-03 +154,1285.3000000000002,4.0,17.238095238095248,297.0362964282258,2020-12-03 +153,1276.7,4.0,19.47619047619049,353.9774645010418,2020-12-03 +152,1268.2,4.0,22.761904761904777,390.8935922132317,2020-12-03 +151,1256.5,4.0,25.809523809523824,394.4793558289032,2020-12-03 +150,1248.4,4.0,28.095238095238113,380.0526011142061,2020-12-03 +157,1315.0,4.0,18.190476190476204,231.00719512394505,2020-12-03 +149,1239.6000000000001,4.0,28.476190476190496,364.77382179358915,2020-12-03 +147,1223.1000000000001,4.0,28.3809523809524,361.4721526491263,2020-12-03 +146,1215.2,4.0,29.19047619047621,346.36479258190934,2020-12-03 +145,1206.4,4.0,30.095238095238113,311.47035592846964,2020-12-03 +144,1198.4,4.0,29.3809523809524,269.0198068353474,2020-12-03 +143,1190.6000000000001,4.0,26.714285714285733,239.59439237907392,2020-12-03 +142,1183.4,4.0,23.047619047619065,236.1403964268157,2020-12-03 +141,1174.5,4.0,19.761904761904777,248.50347500115646,2020-12-03 +148,1231.6000000000001,4.0,27.95238095238097,361.44576981203596,2020-12-03 +140,1164.7,4.0,17.904761904761916,263.88389296448923,2020-12-03 +158,1324.8000000000002,4.0,18.380952380952394,244.57168155362382,2020-12-03 +160,1345.1000000000001,4.0,17.90476190476192,250.61360704963306,2020-12-03 +202,1563.1000000000001,4.0,17.80952380952382,115.69404952712775,2020-12-03 +175,1485.9,4.0,19.09523809523811,162.9556042821563,2020-12-03 +174,1485.9,4.0,18.42857142857144,244.76124766624565,2020-12-03 +173,1475.5,4.0,17.523809523809536,294.61741057762487,2020-12-03 +172,1465.5,4.0,18.000000000000014,297.625359648388,2020-12-03 +171,1454.9,4.0,18.000000000000014,276.0425521102193,2020-12-03 +170,1444.9,4.0,18.000000000000014,266.12569053191805,2020-12-03 +159,1334.9,4.0,18.142857142857153,251.91121808313468,2020-12-03 +169,1434.8000000000002,4.0,18.000000000000014,268.3380210157416,2020-12-03 +167,1414.6000000000001,4.0,18.09523809523811,260.92164473959224,2020-12-03 +166,1404.9,4.0,17.85714285714287,255.72617045666192,2020-12-03 +165,1395.1000000000001,4.0,17.714285714285726,250.18999935971237,2020-12-03 +164,1384.6000000000001,4.0,17.66666666666668,245.56265750354578,2020-12-03 +163,1375.0,4.0,17.714285714285726,242.15912939274816,2020-12-03 +162,1365.2,4.0,17.85714285714287,243.41290887303043,2020-12-03 +161,1355.0,4.0,18.09523809523811,247.1365268519988,2020-12-03 +168,1425.0,4.0,18.000000000000014,265.25827489948654,2020-12-03 +203,1574.0,4.0,16.571428571428584,215.04993960033434,2020-12-03 +139,1154.5,4.0,17.761904761904773,272.5153738606134,2020-12-03 +137,1134.4,4.0,17.90476190476192,255.8167597348982,2020-12-03 +116,950.6,4.0,17.523809523809536,262.0124173535602,2020-12-03 +115,940.8000000000001,4.0,18.09523809523811,262.1866498101925,2020-12-03 +114,930.4000000000001,4.0,18.238095238095248,254.5174871299601,2020-12-03 +113,920.2,4.0,18.142857142857153,255.2973356205349,2020-12-03 +112,911.1,4.0,17.80952380952382,272.43420978734247,2020-12-03 +111,900.6,4.0,17.095238095238106,301.20448248093027,2020-12-03 +110,890.1,4.0,17.571428571428584,333.8660881551231,2020-12-03 +117,960.7,4.0,17.047619047619058,250.81684083064573,2020-12-03 +109,879.9000000000001,4.0,19.52380952380954,353.8926460840296,2020-12-03 +107,859.4000000000001,4.0,23.619047619047635,332.90595061181773,2020-12-03 +106,850.6,4.0,24.285714285714302,315.4955654050758,2020-12-03 +105,842.0,4.0,23.809523809523824,305.89314214746764,2020-12-03 +104,833.3000000000001,4.0,23.857142857142875,306.32991685954056,2020-12-03 +103,824.2,4.0,23.619047619047635,304.4490651473459,2020-12-03 +102,815.1,4.0,23.380952380952397,293.1501390014447,2020-12-03 +101,806.0,4.0,22.95238095238097,277.87247619488505,2020-12-03 +108,869.1,4.0,21.52380952380954,349.9959577553676,2020-12-03 +138,1144.7,4.0,17.90476190476192,267.18713808181377,2020-12-03 +118,970.6,4.0,18.2857142857143,233.63962334443534,2020-12-03 +120,987.1,4.0,24.000000000000018,221.45151994306505,2020-12-03 +136,1124.7,4.0,18.42857142857144,246.85059460236454,2020-12-03 +135,1114.9,4.0,17.761904761904773,237.89754503425823,2020-12-03 +134,1105.0,4.0,17.523809523809536,228.40582127941266,2020-12-03 +133,1095.8,4.0,17.714285714285726,230.73904865941438,2020-12-03 +132,1084.9,4.0,17.80952380952382,245.33806732186,2020-12-03 +131,1084.9,4.0,17.47619047619049,279.1875475327844,2020-12-03 +130,1075.4,4.0,19.380952380952394,326.25863401507286,2020-12-03 +119,979.7,4.0,21.000000000000014,219.98910119520326,2020-12-03 +129,1065.9,4.0,21.142857142857157,362.02352043230167,2020-12-03 +127,1045.7,4.0,25.57142857142859,358.2148278113006,2020-12-03 +126,1037.2,4.0,26.190476190476208,339.3456628415034,2020-12-03 +125,1028.9,4.0,25.428571428571445,327.09265045143303,2020-12-03 +124,1020.7,4.0,25.428571428571445,320.0530469810898,2020-12-03 +123,1011.9000000000001,4.0,25.95238095238097,305.15266033552825,2020-12-03 +122,1003.7,4.0,26.809523809523824,276.76404759519596,2020-12-03 +121,995.1,4.0,26.19047619047621,244.32122741913804,2020-12-03 +128,1054.6000000000001,4.0,23.380952380952394,369.00047454629356,2020-12-03 +100,796.9000000000001,4.0,21.2857142857143,262.9848932657496,2020-12-03 +204,1586.1000000000001,4.0,17.047619047619058,307.4714667158626,2020-12-03 +206,1608.8000000000002,4.0,17.333333333333343,369.8460581749607,2020-12-03 +263,2250.3,4.0,17.047619047619058,378.92254283091097,2020-12-03 +262,2239.1,4.0,17.333333333333343,371.3564719324763,2020-12-03 +261,2227.4,4.0,17.761904761904773,363.82171112564447,2020-12-03 +260,2216.0,4.0,17.80952380952382,358.1980116686017,2020-12-03 +259,2204.9,4.0,17.904761904761916,355.72635635317386,2020-12-03 +258,2193.4,4.0,17.523809523809536,356.35086283583115,2020-12-03 +257,2181.9,4.0,17.428571428571438,355.65914863957846,2020-12-03 +264,2262.5,4.0,16.904761904761916,387.44327052661913,2020-12-03 +256,2170.8,4.0,17.523809523809536,357.1614119943134,2020-12-03 +254,2148.3,4.0,17.714285714285726,360.4220606622956,2020-12-03 +253,2137.4,4.0,17.80952380952382,363.1436840241489,2020-12-03 +252,2126.4,4.0,17.761904761904773,367.75505321351136,2020-12-03 +251,2115.0,4.0,17.66666666666668,371.0244075639729,2020-12-03 +250,2103.6,4.0,17.428571428571438,379.26678154787805,2020-12-03 +249,2093.1,4.0,17.571428571428584,391.6525757224008,2020-12-03 +248,2081.9,4.0,17.333333333333343,399.62953901759045,2020-12-03 +255,2159.4,4.0,17.904761904761916,358.57849325429834,2020-12-03 +247,2070.1,4.0,17.142857142857153,397.4913941695317,2020-12-03 +265,2273.8,4.0,17.00000000000001,394.8901594758679,2020-12-03 +267,2298.1,4.0,17.00000000000001,407.8175310623584,2020-12-03 +759,6906.3,4.0,25.476190476190496,361.9296963066971,2020-12-03 +282,2469.9,4.0,18.30952380952383,393.1813778334396,2020-12-03 +281,2458.8,4.0,18.3809523809524,408.0410994769751,2020-12-03 +280,2447.5,4.0,18.738095238095255,409.8913803321465,2020-12-03 +279,2436.8,4.0,19.047619047619058,402.5492670404661,2020-12-03 +278,2425.5,4.0,18.47619047619049,388.8520610522238,2020-12-03 +277,2414.1,4.0,17.904761904761916,375.5942085842865,2020-12-03 +266,2285.7000000000003,4.0,17.00000000000001,401.9921901611867,2020-12-03 +276,2403.1,4.0,17.42857142857144,367.48692498922287,2020-12-03 +274,2379.7000000000003,4.0,16.66666666666668,368.6492173925564,2020-12-03 +273,2368.3,4.0,17.095238095238106,380.3561673789934,2020-12-03 +272,2357.1,4.0,17.00000000000001,393.8521276781364,2020-12-03 +271,2345.7000000000003,4.0,17.00000000000001,405.76129278243747,2020-12-03 +270,2333.4,4.0,17.00000000000001,413.9226413759136,2020-12-03 +269,2322.1,4.0,17.00000000000001,415.1580715355286,2020-12-03 +268,2310.0,4.0,17.00000000000001,412.7369815799275,2020-12-03 +275,2391.8,4.0,16.80952380952382,363.6961414405316,2020-12-03 +205,1597.0,4.0,17.2857142857143,361.12974656322643,2020-12-03 +246,2058.2000000000003,4.0,17.42857142857144,390.23636512699176,2020-12-03 +244,2035.7,4.0,17.142857142857153,374.4236987947818,2020-12-03 +223,1796.9,4.0,18.09523809523811,364.73338511559234,2020-12-03 +222,1786.0,4.0,18.000000000000014,367.0754043784667,2020-12-03 +221,1775.4,4.0,18.000000000000014,374.08133649389083,2020-12-03 +220,1763.9,4.0,18.000000000000014,382.92766313855066,2020-12-03 +219,1753.1000000000001,4.0,18.000000000000014,389.7799693101881,2020-12-03 +218,1742.2,4.0,18.000000000000014,395.14434050473494,2020-12-03 +217,1730.7,4.0,18.000000000000014,395.2363179174284,2020-12-03 +224,1807.9,4.0,17.85714285714287,364.8935134915947,2020-12-03 +216,1719.6000000000001,4.0,17.90476190476192,389.83687326832296,2020-12-03 +214,1697.6000000000001,4.0,18.190476190476204,365.151600626452,2020-12-03 +212,1675.1000000000001,4.0,18.80952380952382,336.4973875789161,2020-12-03 +211,1664.0,4.0,18.714285714285726,329.7276362400457,2020-12-03 +210,1653.4,4.0,18.190476190476204,331.08463978588463,2020-12-03 +209,1642.6000000000001,4.0,17.66666666666668,339.8304824857854,2020-12-03 +208,1631.7,4.0,17.238095238095248,349.9321416162803,2020-12-03 +207,1620.3000000000002,4.0,17.095238095238106,360.37497658976605,2020-12-03 +215,1708.9,4.0,18.142857142857153,379.85423709883366,2020-12-03 +245,2047.3000000000002,4.0,17.42857142857144,380.5473735945489,2020-12-03 +225,1819.5,4.0,17.714285714285726,367.79368469601746,2020-12-03 +227,1841.2,4.0,17.571428571428584,370.4415664900739,2020-12-03 +243,2024.1000000000001,4.0,17.333333333333343,376.00062883321107,2020-12-03 +242,2011.7,4.0,17.47619047619049,377.55179723969314,2020-12-03 +241,2000.1000000000001,4.0,17.571428571428584,376.64033914643346,2020-12-03 +240,1988.9,4.0,18.047619047619058,377.00335187782224,2020-12-03 +239,1977.3000000000002,4.0,17.952380952380963,377.6360558797531,2020-12-03 +238,1966.4,4.0,17.714285714285726,376.2957199704225,2020-12-03 +237,1955.3000000000002,4.0,17.66666666666668,373.0443584824095,2020-12-03 +226,1830.5,4.0,17.761904761904773,370.43576778963865,2020-12-03 +236,1944.1000000000001,4.0,17.714285714285726,368.53682178104134,2020-12-03 +234,1921.6000000000001,4.0,18.047619047619058,375.3854110938365,2020-12-03 +233,1910.2,4.0,17.571428571428584,385.2781652561426,2020-12-03 +232,1899.3000000000002,4.0,17.47619047619049,395.90579352812074,2020-12-03 +231,1887.6000000000001,4.0,17.238095238095248,397.6986431836772,2020-12-03 +230,1876.2,4.0,17.285714285714295,391.72088367981934,2020-12-03 +229,1864.7,4.0,17.714285714285726,384.7069657013353,2020-12-03 +228,1852.4,4.0,17.66666666666668,375.1461996526339,2020-12-03 +235,1932.6000000000001,4.0,17.952380952380963,369.78072011095423,2020-12-03 +1108,9859.300000000001,4.0,18.47619047619049,200.80144581254183,2020-12-03 +99,788.3000000000001,4.0,19.2857142857143,258.45021656427605,2020-12-03 +97,768.9000000000001,4.0,17.523809523809536,269.20800908288777,2020-12-03 +1168,10380.300000000001,4.0,18.09523809523811,197.5695647128307,2020-12-03 +1167,10371.0,4.0,18.000000000000014,189.05118014259943,2020-12-03 +1166,10362.400000000001,4.0,18.000000000000014,186.63632981662926,2020-12-03 +1165,10353.7,4.0,18.000000000000014,189.84877215622492,2020-12-03 +1164,10345.0,4.0,17.90476190476192,196.8313259604734,2020-12-03 +1163,10335.5,4.0,18.047619047619058,204.0545756868793,2020-12-03 +1162,10326.400000000001,4.0,18.333333333333343,207.57975120610226,2020-12-03 +1169,10389.6,4.0,17.952380952380963,208.7946813295681,2020-12-03 +1161,10317.300000000001,4.0,18.761904761904773,206.37650315933058,2020-12-03 +1159,10299.2,4.0,18.761904761904773,201.7774702297288,2020-12-03 +1158,10290.5,4.0,18.333333333333343,202.21217874028662,2020-12-03 +1157,10281.400000000001,4.0,18.047619047619058,202.30040926203372,2020-12-03 +1156,10272.1,4.0,17.90476190476192,198.59042991273918,2020-12-03 +1155,10262.900000000001,4.0,18.000000000000014,192.46444339869532,2020-12-03 +1154,10253.7,4.0,18.190476190476204,188.00968678016517,2020-12-03 +1153,10244.800000000001,4.0,17.714285714285726,189.44083029626367,2020-12-03 +1160,10308.300000000001,4.0,18.90476190476192,203.44541420045488,2020-12-03 +1152,10235.900000000001,4.0,17.523809523809533,197.08632634661404,2020-12-03 +1170,10399.1,4.0,17.571428571428584,219.83272077940148,2020-12-03 +1172,10419.1,4.0,17.47619047619049,237.12185100194444,2020-12-03 +1188,10568.6,4.0,17.61904761904763,203.18629363372958,2020-12-03 +1187,10559.400000000001,4.0,17.761904761904773,203.7512410347204,2020-12-03 +1186,10549.800000000001,4.0,17.952380952380963,204.19440374163912,2020-12-03 +1185,10541.1,4.0,17.66666666666668,207.05661545830554,2020-12-03 +1184,10531.300000000001,4.0,17.66666666666668,209.3429455628711,2020-12-03 +1183,10522.0,4.0,17.523809523809536,211.5723592960706,2020-12-03 +1182,10512.2,4.0,17.761904761904773,211.54876481832258,2020-12-03 +1171,10409.0,4.0,17.380952380952394,231.38910745284818,2020-12-03 +1181,10502.6,4.0,17.523809523809533,211.46879919987788,2020-12-03 +1179,10483.7,4.0,16.952380952380963,203.60198536647266,2020-12-03 +1178,10474.1,4.0,17.047619047619058,195.68135048349734,2020-12-03 +1177,10464.2,4.0,17.190476190476204,190.07731129182127,2020-12-03 +1176,10455.1,4.0,17.380952380952394,191.55196805954674,2020-12-03 +1175,10446.7,4.0,17.714285714285726,204.9566482485074,2020-12-03 +1174,10437.5,4.0,17.761904761904773,221.27843604180762,2020-12-03 +1173,10428.300000000001,4.0,17.428571428571438,233.098928055535,2020-12-03 +1180,10493.2,4.0,17.42857142857144,209.15325659801772,2020-12-03 +1189,10578.0,4.0,17.095238095238106,203.08637842939922,2020-12-03 +1151,10226.7,4.0,17.2857142857143,204.15374098955832,2020-12-03 +1149,10207.300000000001,4.0,17.095238095238106,197.4650364780352,2020-12-03 +1128,10017.6,4.0,17.85714285714287,185.77969546166443,2020-12-03 +1127,10008.6,4.0,17.85714285714287,184.7921732208258,2020-12-03 +1126,9999.400000000001,4.0,18.047619047619058,182.7163252454606,2020-12-03 +1125,9990.400000000001,4.0,17.571428571428584,181.8000717814577,2020-12-03 +1124,9981.0,4.0,17.47619047619049,184.9325591147399,2020-12-03 +1123,9972.300000000001,4.0,17.333333333333343,191.26033670926364,2020-12-03 +1122,9963.0,4.0,17.238095238095248,182.78034826833726,2020-12-03 +1129,10026.7,4.0,17.952380952380963,186.31980871692974,2020-12-03 +1121,9953.7,4.0,17.2857142857143,154.00086313037434,2020-12-03 +1116,9896.2,4.0,17.190476190476204,144.93949691234582,2020-12-03 +1115,9896.2,4.0,18.333333333333346,186.35892573229216,2020-12-03 +1114,9896.2,4.0,19.66666666666668,208.95365442425714,2020-12-03 +1113,9896.2,4.0,18.952380952380963,210.564001801141,2020-12-03 +1112,9896.2,4.0,18.66666666666668,200.95224293017782,2020-12-03 +1111,9887.400000000001,4.0,18.238095238095248,197.2703773456677,2020-12-03 +1110,9877.5,4.0,18.190476190476204,194.60184807443136,2020-12-03 +1120,9944.400000000001,4.0,17.523809523809536,112.0044268839314,2020-12-03 +1150,10216.900000000001,4.0,17.00000000000001,203.2699588097205,2020-12-03 +1130,10035.6,4.0,18.142857142857153,186.9200581528242,2020-12-03 +1132,10054.2,4.0,17.952380952380963,197.45868458139168,2020-12-03 +1148,10197.900000000001,4.0,17.47619047619049,189.91770647516051,2020-12-03 +1147,10188.900000000001,4.0,17.61904761904763,184.1051463770573,2020-12-03 +1146,10179.900000000001,4.0,18.2857142857143,182.31586418027626,2020-12-03 +1145,10171.400000000001,4.0,18.85714285714287,180.41393168278051,2020-12-03 +1144,10162.6,4.0,18.90476190476192,177.47162679617674,2020-12-03 +1143,10154.2,4.0,18.761904761904773,178.62297720834675,2020-12-03 +1142,10145.1,4.0,18.333333333333343,184.53378258293168,2020-12-03 +1131,10045.2,4.0,18.00000000000001,191.32513647695995,2020-12-03 +1141,10136.1,4.0,17.952380952380963,192.89987740237436,2020-12-03 +1139,10117.900000000001,4.0,18.428571428571438,203.8609023854845,2020-12-03 +1138,10108.900000000001,4.0,18.61904761904763,200.7790467732086,2020-12-03 +1137,10099.800000000001,4.0,18.61904761904763,197.75913515048575,2020-12-03 +1136,10090.800000000001,4.0,18.523809523809533,197.50226829779024,2020-12-03 +1135,10081.900000000001,4.0,17.90476190476192,200.68306607704443,2020-12-03 +1134,10072.6,4.0,17.61904761904763,203.9473279791237,2020-12-03 +1133,10063.400000000001,4.0,17.571428571428584,203.11622378891167,2020-12-03 +1140,10127.2,4.0,17.952380952380963,201.21578208112666,2020-12-03 +98,779.1,4.0,18.380952380952394,264.1584225366327,2020-12-03 +1190,10587.400000000001,4.0,17.142857142857153,203.34757768798292,2020-12-03 +1192,10606.900000000001,4.0,16.904761904761916,206.9414830915935,2020-12-03 +76,550.8000000000001,4.0,16.47619047619049,268.1760930046363,2020-12-03 +75,539.7,4.0,16.66666666666668,274.58165398014324,2020-12-03 +74,529.3000000000001,4.0,16.80952380952382,268.6946847248322,2020-12-03 +73,518.3000000000001,4.0,16.80952380952382,251.01702340033086,2020-12-03 +72,507.40000000000003,4.0,16.66666666666668,231.46752070728022,2020-12-03 +71,497.0,4.0,16.714285714285726,222.91374898334593,2020-12-03 +70,487.70000000000005,4.0,16.85714285714287,222.5191620668695,2020-12-03 +77,561.0,4.0,16.238095238095248,254.45521215520935,2020-12-03 +69,478.1,4.0,17.1904761904762,225.72627597278296,2020-12-03 +66,448.70000000000005,4.0,17.428571428571438,114.4851672091888,2020-12-03 +58,419.20000000000005,4.0,24.52380952380954,100.53179259448702,2020-12-03 +57,397.1,4.0,20.47619047619049,198.27150368769185,2020-12-03 +56,397.1,4.0,16.952380952380963,281.3508248595621,2020-12-03 +55,385.8,4.0,15.428571428571438,329.0506803394586,2020-12-03 +54,374.8,4.0,17.047619047619058,335.81701622241144,2020-12-03 +53,364.1,4.0,17.047619047619058,317.59535779977057,2020-12-03 +68,468.5,4.0,16.952380952380963,210.02711153320882,2020-12-03 +52,353.20000000000005,4.0,16.66666666666668,309.9658427811721,2020-12-03 +78,571.3000000000001,4.0,16.2857142857143,243.94912878480957,2020-12-03 +80,591.9,4.0,16.80952380952382,242.53790936958802,2020-12-03 +96,758.6,4.0,17.380952380952394,269.37473980419566,2020-12-03 +95,749.3000000000001,4.0,17.571428571428584,268.5426196505192,2020-12-03 +94,738.3000000000001,4.0,17.2857142857143,265.2486745774121,2020-12-03 +93,727.9000000000001,4.0,16.714285714285722,265.49189146902523,2020-12-03 +92,717.7,4.0,17.142857142857153,269.1658501408561,2020-12-03 +91,707.4000000000001,4.0,17.2857142857143,271.9053662406604,2020-12-03 +90,697.1,4.0,17.333333333333343,273.3181647398303,2020-12-03 +79,581.7,4.0,16.619047619047628,241.6854297940078,2020-12-03 +89,686.9000000000001,4.0,17.2857142857143,276.1191895805872,2020-12-03 +87,665.8000000000001,4.0,16.904761904761916,277.2134143587069,2020-12-03 +86,654.9000000000001,4.0,17.00000000000001,273.97291707229954,2020-12-03 +85,644.4000000000001,4.0,17.00000000000001,267.7570407339367,2020-12-03 +84,633.9000000000001,4.0,17.00000000000001,259.1478595237792,2020-12-03 +83,623.1,4.0,17.00000000000001,252.43616845318056,2020-12-03 +82,612.6,4.0,17.095238095238106,248.31418913867776,2020-12-03 +81,602.1,4.0,16.85714285714287,245.11154508970247,2020-12-03 +88,676.4000000000001,4.0,17.142857142857153,277.39023870208007,2020-12-03 +1191,10597.300000000001,4.0,16.904761904761916,204.8996967790281,2020-12-03 +51,342.20000000000005,4.0,16.238095238095248,323.06950671084314,2020-12-03 +49,319.6,4.0,16.190476190476204,328.9437026511495,2020-12-03 +28,105.0,4.0,22.52380952380954,170.37248683182685,2020-12-03 +27,97.60000000000001,4.0,22.2857142857143,164.41159548528577,2020-12-03 +26,90.4,4.0,20.190476190476204,146.30050658671362,2020-12-03 +25,82.5,4.0,25.428571428571445,121.51276414846346,2020-12-03 +1204,10693.400000000001,4.0,16.000000000000025,173.65312065666942,2020-12-03 +1203,10693.400000000001,4.0,15.904761904761926,164.22800568378426,2020-12-03 +1202,10693.400000000001,4.0,16.119047619047638,166.29675972766577,2020-12-03 +29,111.80000000000001,4.0,22.619047619047635,167.2620483716169,2020-12-03 +1201,10693.400000000001,4.0,16.47619047619049,176.48748556434953,2020-12-03 +1199,10675.6,4.0,16.904761904761916,208.6376431186322,2020-12-03 +1198,10665.400000000001,4.0,16.85714285714287,217.36756702983115,2020-12-03 +1197,10655.400000000001,4.0,16.904761904761916,217.97393194155188,2020-12-03 +1196,10645.300000000001,4.0,17.380952380952394,213.9001084318184,2020-12-03 +1195,10635.7,4.0,17.333333333333343,208.87673360066213,2020-12-03 +1194,10626.300000000001,4.0,17.2857142857143,207.54731412756223,2020-12-03 +1193,10616.800000000001,4.0,17.142857142857153,208.88576199570815,2020-12-03 +1200,10684.300000000001,4.0,16.714285714285726,192.25248276395712,2020-12-03 +50,331.20000000000005,4.0,16.1904761904762,329.52002998028723,2020-12-03 +30,119.60000000000001,4.0,22.619047619047635,168.52658595663826,2020-12-03 +32,134.8,4.0,21.09523809523811,177.80366853957992,2020-12-03 +48,307.6,4.0,16.238095238095248,322.3671207815539,2020-12-03 +47,296.1,4.0,16.42857142857144,315.9687614713529,2020-12-03 +46,284.7,4.0,16.42857142857144,312.0965486721291,2020-12-03 +45,273.3,4.0,16.238095238095248,313.78100547433104,2020-12-03 +44,262.2,4.0,16.2857142857143,324.0768791574468,2020-12-03 +43,250.5,4.0,16.238095238095248,335.79858498168267,2020-12-03 +42,238.0,4.0,15.666666666666679,342.62957392048304,2020-12-03 +31,127.5,4.0,22.04761904761906,170.8764640421761,2020-12-03 +41,226.9,4.0,15.666666666666679,342.30533081547014,2020-12-03 +39,202.70000000000002,4.0,16.571428571428584,305.7051026216924,2020-12-03 +38,191.4,4.0,17.00000000000001,277.67194014350946,2020-12-03 +37,181.0,4.0,18.000000000000014,252.75857454626842,2020-12-03 +36,170.70000000000002,4.0,18.333333333333343,231.93266019219894,2020-12-03 +35,161.3,4.0,18.714285714285722,216.1192434832546,2020-12-03 +34,152.5,4.0,19.761904761904773,203.77635121046146,2020-12-03 +33,143.70000000000002,4.0,20.571428571428584,189.95425127647297,2020-12-03 +40,215.3,4.0,16.142857142857153,330.70749502481397,2020-12-03 +758,6897.400000000001,4.0,25.76190476190478,358.5043242543581,2020-12-03 +608,5519.8,4.0,24.000000000000018,408.6991101514045,2020-12-03 +756,6879.6,4.0,25.57142857142859,353.7860557551617,2020-12-03 +265,2671.4,4.0,16.571428571428584,220.90186552364577,2020-12-03 +264,2661.9,4.0,16.47619047619049,214.11247465394118,2020-12-03 +263,2651.8,4.0,16.333333333333343,201.28009193165855,2020-12-03 +262,2641.1000000000004,4.0,16.238095238095248,179.23713305959785,2020-12-03 +261,2631.5,4.0,16.2857142857143,152.30156664005722,2020-12-03 +260,2621.0,4.0,16.238095238095248,124.93626014215698,2020-12-03 +259,2612.7000000000003,4.0,15.761904761904773,106.12398004721106,2020-12-03 +258,2604.3,4.0,15.619047619047628,110.9077467387456,2020-12-03 +257,2596.3,4.0,15.428571428571438,147.79727172314628,2020-12-03 +256,2587.7000000000003,4.0,15.714285714285726,213.01747570002595,2020-12-03 +255,2579.2000000000003,4.0,17.85714285714287,292.0987146028665,2020-12-03 +254,2571.4,4.0,20.66666666666668,354.1663576790112,2020-12-03 +253,2559.5,4.0,22.857142857142872,382.59412531460566,2020-12-03 +252,2550.5,4.0,24.523809523809543,387.24201211445813,2020-12-03 +251,2540.7000000000003,4.0,24.714285714285733,381.33940710666377,2020-12-03 +250,2532.5,4.0,24.2857142857143,377.4068552660559,2020-12-03 +249,2523.4,4.0,24.619047619047635,380.61742099047996,2020-12-03 +266,2681.6000000000004,4.0,16.952380952380963,227.7283390092958,2020-12-03 +248,2514.3,4.0,24.809523809523824,381.7065825074872,2020-12-03 +267,2692.1000000000004,4.0,17.095238095238106,236.83123390942907,2020-12-03 +269,2712.8,4.0,17.00000000000001,256.87335064050865,2020-12-03 +286,2866.4,4.0,20.619047619047635,158.49679193731953,2020-12-03 +285,2866.4,4.0,17.47619047619049,233.78697953125763,2020-12-03 +284,2866.4,4.0,15.666666666666679,278.05490340376105,2020-12-03 +283,2856.0,4.0,16.904761904761916,279.39657200174986,2020-12-03 +282,2845.7000000000003,4.0,17.142857142857153,255.68669073741853,2020-12-03 +281,2835.1000000000004,4.0,17.2857142857143,237.99784899985013,2020-12-03 +280,2825.2000000000003,4.0,17.333333333333343,235.911486831613,2020-12-03 +279,2815.6000000000004,4.0,17.2857142857143,235.37515450737413,2020-12-03 +278,2805.3,4.0,17.142857142857153,241.00323364074882,2020-12-03 +277,2795.5,4.0,16.904761904761916,251.63833003014497,2020-12-03 +276,2785.9,4.0,17.00000000000001,265.2637764653158,2020-12-03 +275,2775.4,4.0,17.00000000000001,276.87580857636186,2020-12-03 +274,2764.9,4.0,17.00000000000001,281.79155247288594,2020-12-03 +273,2754.4,4.0,17.00000000000001,280.7656742273589,2020-12-03 +272,2744.2000000000003,4.0,17.00000000000001,275.60770567894633,2020-12-03 +271,2733.7000000000003,4.0,17.00000000000001,269.1125027159684,2020-12-03 +270,2723.0,4.0,17.00000000000001,263.5302633168253,2020-12-03 +268,2702.2000000000003,4.0,17.00000000000001,247.32203714318058,2020-12-03 +307,2939.2000000000003,4.0,17.09523809523811,153.26580381491783,2020-12-03 +247,2505.3,4.0,24.857142857142872,377.78930364223936,2020-12-03 +245,2487.1000000000004,4.0,25.09523809523811,370.3315883830313,2020-12-03 +223,2286.1,4.0,23.809523809523824,348.5706359118668,2020-12-03 +222,2277.2000000000003,4.0,23.476190476190492,358.43900348177704,2020-12-03 +221,2267.7000000000003,4.0,22.857142857142872,372.5645899283273,2020-12-03 +220,2257.9,4.0,22.47619047619049,380.96243586976664,2020-12-03 +219,2248.0,4.0,22.428571428571445,383.21534001553584,2020-12-03 +218,2238.9,4.0,22.809523809523824,381.3944145882605,2020-12-03 +217,2229.3,4.0,22.857142857142872,380.0531335518544,2020-12-03 +216,2219.8,4.0,23.09523809523811,378.87359926879935,2020-12-03 +215,2210.2000000000003,4.0,23.000000000000014,378.0440985707919,2020-12-03 +214,2200.6,4.0,22.90476190476192,375.50118175908074,2020-12-03 +213,2191.4,4.0,23.047619047619065,373.33873194131513,2020-12-03 +212,2181.1,4.0,23.428571428571445,377.12195667897026,2020-12-03 +211,2171.9,4.0,23.52380952380954,385.76896053259884,2020-12-03 +210,2163.4,4.0,23.666666666666682,391.93066462833946,2020-12-03 +209,2153.3,4.0,23.76190476190478,395.2163448125143,2020-12-03 +208,2143.6,4.0,23.809523809523824,391.3348847400319,2020-12-03 +207,2134.4,4.0,23.71428571428573,381.5371779990162,2020-12-03 +224,2295.6,4.0,24.285714285714306,347.4716643471953,2020-12-03 +246,2495.6000000000004,4.0,25.09523809523811,373.46376926256806,2020-12-03 +225,2303.9,4.0,23.95238095238097,352.2401911478567,2020-12-03 +227,2323.0,4.0,23.380952380952397,359.0174985217323,2020-12-03 +244,2478.6000000000004,4.0,24.857142857142872,369.8038479932102,2020-12-03 +243,2469.6000000000004,4.0,24.71428571428573,372.5770605954391,2020-12-03 +242,2460.5,4.0,24.76190476190478,377.0348108073865,2020-12-03 +241,2451.4,4.0,24.571428571428587,380.5247740496874,2020-12-03 +240,2442.4,4.0,24.571428571428587,383.28725776385915,2020-12-03 +239,2433.2000000000003,4.0,24.857142857142875,384.807399472664,2020-12-03 +238,2424.0,4.0,24.666666666666682,381.3133673169608,2020-12-03 +237,2414.9,4.0,24.52380952380954,373.26194423573816,2020-12-03 +236,2406.4,4.0,24.428571428571445,364.16752216908037,2020-12-03 +235,2397.3,4.0,24.047619047619065,358.8852391318907,2020-12-03 +234,2388.2000000000003,4.0,23.90476190476192,363.97328217453736,2020-12-03 +233,2378.9,4.0,24.000000000000018,376.1302609995618,2020-12-03 +232,2369.8,4.0,24.000000000000018,383.98146062921603,2020-12-03 +231,2359.5,4.0,24.095238095238113,382.59530445251687,2020-12-03 +230,2350.9,4.0,23.95238095238097,373.0426435248963,2020-12-03 +229,2341.6,4.0,23.571428571428587,362.25305389395186,2020-12-03 +228,2332.7000000000003,4.0,23.380952380952397,358.04842695925936,2020-12-03 +226,2314.0,4.0,23.571428571428587,356.6226232946413,2020-12-03 +206,2124.6,4.0,23.90476190476192,370.41803651521104,2020-12-03 +308,2949.7000000000003,4.0,15.142857142857153,207.60184729161566,2020-12-03 +310,2970.5,4.0,16.66666666666668,246.67312898757183,2020-12-03 +369,3535.7000000000003,4.0,23.14285714285716,343.28997456160323,2020-12-03 +368,3526.4,4.0,22.666666666666682,337.65077860849783,2020-12-03 +367,3517.0,4.0,22.857142857142872,335.5351524386806,2020-12-03 +366,3507.8,4.0,22.857142857142872,340.87604207727327,2020-12-03 +365,3498.5,4.0,23.09523809523811,348.13230120530375,2020-12-03 +364,3489.1000000000004,4.0,23.571428571428584,355.07613211217756,2020-12-03 +363,3479.8,4.0,23.761904761904777,353.7021732203815,2020-12-03 +362,3470.9,4.0,23.571428571428587,345.35744983058567,2020-12-03 +361,3461.3,4.0,23.857142857142875,335.5440854881103,2020-12-03 +360,3452.4,4.0,23.571428571428587,328.9031233744581,2020-12-03 +359,3442.9,4.0,23.571428571428587,328.75953326889237,2020-12-03 +358,3433.7000000000003,4.0,23.857142857142875,334.45732479714445,2020-12-03 +357,3424.4,4.0,23.666666666666682,337.7812739262371,2020-12-03 +356,3415.5,4.0,23.428571428571445,341.4716450876235,2020-12-03 +355,3406.0,4.0,23.571428571428587,346.7468393773463,2020-12-03 +354,3397.2000000000003,4.0,23.238095238095255,352.1986177728741,2020-12-03 +353,3387.6000000000004,4.0,23.285714285714302,359.2023677668145,2020-12-03 +370,3544.5,4.0,23.33333333333335,346.9580563703055,2020-12-03 +352,3378.0,4.0,23.619047619047635,365.1874772100606,2020-12-03 +371,3554.0,4.0,23.761904761904777,346.32830099159287,2020-12-03 +373,3572.3,4.0,23.761904761904777,338.4263692407453,2020-12-03 +390,3726.1000000000004,4.0,24.047619047619065,314.0924663089121,2020-12-03 +389,3717.5,4.0,23.428571428571445,310.8351074452439,2020-12-03 +388,3708.7000000000003,4.0,22.52380952380954,312.1964335898289,2020-12-03 +387,3699.6000000000004,4.0,22.380952380952394,318.97145978597393,2020-12-03 +386,3690.0,4.0,22.238095238095255,325.5282382941822,2020-12-03 +385,3680.9,4.0,22.2857142857143,326.82260556955845,2020-12-03 +384,3671.3,4.0,22.619047619047635,323.98583808265784,2020-12-03 +383,3662.8,4.0,22.71428571428573,320.00634980762715,2020-12-03 +382,3653.8,4.0,23.000000000000014,320.68125526436404,2020-12-03 +381,3644.9,4.0,23.380952380952394,325.7433346511432,2020-12-03 +380,3635.8,4.0,23.33333333333335,330.3906542908462,2020-12-03 +379,3626.5,4.0,23.2857142857143,332.62053545011884,2020-12-03 +378,3617.8,4.0,23.14285714285716,331.2883206462702,2020-12-03 +377,3607.9,4.0,22.90476190476192,329.4780876125195,2020-12-03 +376,3599.4,4.0,22.90476190476192,330.5264522791417,2020-12-03 +375,3590.4,4.0,23.047619047619065,332.8796318765796,2020-12-03 +374,3581.1000000000004,4.0,23.33333333333335,335.0780962565452,2020-12-03 +372,3562.7000000000003,4.0,23.90476190476192,343.5655832521934,2020-12-03 +309,2960.7000000000003,4.0,16.714285714285726,238.21479443304662,2020-12-03 +351,3368.4,4.0,23.90476190476192,363.98753324244444,2020-12-03 +349,3350.1000000000004,4.0,23.761904761904777,362.15446113690325,2020-12-03 +327,3143.6000000000004,4.0,24.571428571428587,391.5542207527716,2020-12-03 +326,3134.9,4.0,25.476190476190492,366.67019982597964,2020-12-03 +325,3125.6000000000004,4.0,25.476190476190492,328.19336400261204,2020-12-03 +324,3116.3,4.0,23.95238095238097,286.38355635940616,2020-12-03 +323,3107.9,4.0,21.571428571428584,259.26213282576794,2020-12-03 +322,3098.5,4.0,19.09523809523811,246.76521345520752,2020-12-03 +321,3088.3,4.0,16.952380952380963,246.1907067932466,2020-12-03 +320,3077.8,4.0,16.523809523809536,253.5804354283344,2020-12-03 +319,3067.8,4.0,16.095238095238106,261.69128050092064,2020-12-03 +318,3056.6000000000004,4.0,15.666666666666679,266.75116724125127,2020-12-03 +317,3045.1000000000004,4.0,15.619047619047628,272.2204465806027,2020-12-03 +316,3034.5,4.0,16.047619047619058,276.3386530131852,2020-12-03 +315,3023.4,4.0,16.61904761904763,279.2901328676651,2020-12-03 +314,3012.8,4.0,16.904761904761916,278.7099909706642,2020-12-03 +313,3002.3,4.0,16.80952380952382,273.645880875212,2020-12-03 +312,2991.6000000000004,4.0,16.761904761904773,264.85017963838106,2020-12-03 +311,2981.2000000000003,4.0,16.571428571428584,251.8476665488855,2020-12-03 +328,3153.4,4.0,24.33333333333335,399.62518737397403,2020-12-03 +350,3359.2000000000003,4.0,23.809523809523824,361.49387410931195,2020-12-03 +329,3162.6000000000004,4.0,24.047619047619065,394.67391457781764,2020-12-03 +331,3180.9,4.0,24.000000000000018,385.99472052151566,2020-12-03 +348,3340.5,4.0,23.33333333333335,365.3631097327019,2020-12-03 +347,3330.9,4.0,22.95238095238097,370.7704622709675,2020-12-03 +346,3321.7000000000003,4.0,23.047619047619065,375.722796598018,2020-12-03 +345,3311.8,4.0,23.190476190476204,373.4918112784569,2020-12-03 +344,3301.5,4.0,23.380952380952397,365.3053108928674,2020-12-03 +343,3292.4,4.0,23.619047619047635,357.16372347314484,2020-12-03 +342,3283.4,4.0,23.809523809523824,350.07853696802096,2020-12-03 +341,3273.8,4.0,23.857142857142875,348.10633905268026,2020-12-03 +340,3264.5,4.0,24.095238095238113,353.20502767289497,2020-12-03 +339,3255.5,4.0,24.000000000000018,359.5073348677422,2020-12-03 +338,3245.7000000000003,4.0,24.000000000000018,362.0012638740192,2020-12-03 +337,3237.2000000000003,4.0,24.000000000000018,362.31753481404155,2020-12-03 +336,3227.7000000000003,4.0,24.000000000000018,360.93069544029197,2020-12-03 +335,3218.3,4.0,24.000000000000018,362.9050565153169,2020-12-03 +334,3209.6000000000004,4.0,24.000000000000018,371.18672614170003,2020-12-03 +333,3199.9,4.0,24.000000000000018,379.7568774163305,2020-12-03 +332,3189.7000000000003,4.0,24.000000000000018,384.09513096894057,2020-12-03 +330,3171.9,4.0,23.90476190476192,387.90111260886675,2020-12-03 +205,2115.4,4.0,23.52380952380954,360.9462347134613,2020-12-03 +204,2105.6,4.0,23.428571428571445,356.30559787177026,2020-12-03 +203,2096.6,4.0,23.619047619047635,362.5056133943809,2020-12-03 +96,1072.2,4.0,24.047619047619065,435.276455557443,2020-12-03 +95,1062.7,4.0,23.571428571428587,437.24044853256953,2020-12-03 +94,1052.8,4.0,23.476190476190492,437.98778385521535,2020-12-03 +93,1043.3,4.0,23.238095238095255,435.8883542942128,2020-12-03 +92,1032.2,4.0,23.285714285714302,431.82487999340594,2020-12-03 +91,1022.8000000000001,4.0,23.619047619047635,433.2149547945605,2020-12-03 +90,1013.3000000000001,4.0,23.90476190476192,435.7515373999014,2020-12-03 +89,1003.2,4.0,23.809523809523824,435.3892408260475,2020-12-03 +88,993.0,4.0,23.761904761904777,432.1697459827311,2020-12-03 +87,983.2,4.0,23.33333333333335,426.30414223620653,2020-12-03 +86,972.5,4.0,22.95238095238097,420.47067131351844,2020-12-03 +85,963.0,4.0,23.047619047619065,415.65405284428846,2020-12-03 +84,953.4000000000001,4.0,23.2857142857143,410.1792332871168,2020-12-03 +83,943.7,4.0,23.428571428571445,403.3732631455239,2020-12-03 +82,934.8000000000001,4.0,23.142857142857157,402.3810086115483,2020-12-03 +81,924.7,4.0,22.95238095238097,407.83351926059055,2020-12-03 +80,914.9000000000001,4.0,22.428571428571445,418.6754694034114,2020-12-03 +97,1081.8,4.0,23.95238095238097,435.2479745234313,2020-12-03 +79,904.5,4.0,22.52380952380954,427.3076031652711,2020-12-03 +98,1091.5,4.0,23.809523809523824,441.15036932745323,2020-12-03 +100,1111.8,4.0,23.428571428571445,451.33748182474807,2020-12-03 +117,1277.1000000000001,4.0,22.857142857142872,419.3907486347921,2020-12-03 +116,1267.1000000000001,4.0,22.619047619047635,417.8533032946209,2020-12-03 +115,1257.3000000000002,4.0,22.809523809523824,416.09130254877243,2020-12-03 +114,1247.4,4.0,23.000000000000014,413.96570980326646,2020-12-03 +113,1237.4,4.0,23.190476190476208,416.2434807641986,2020-12-03 +112,1227.9,4.0,23.380952380952394,422.12484797890136,2020-12-03 +111,1217.5,4.0,23.047619047619065,425.07995887442263,2020-12-03 +110,1208.6000000000001,4.0,23.047619047619065,423.5439189940116,2020-12-03 +109,1198.6000000000001,4.0,23.2857142857143,418.6454082092325,2020-12-03 +108,1188.6000000000001,4.0,23.238095238095255,412.1486457550441,2020-12-03 +107,1178.8,4.0,23.33333333333335,410.2247751123189,2020-12-03 +106,1169.6000000000001,4.0,23.476190476190492,412.5592628988406,2020-12-03 +105,1159.2,4.0,23.571428571428587,416.78006024076853,2020-12-03 +104,1149.3,4.0,24.047619047619065,419.585757270994,2020-12-03 +103,1140.8,4.0,23.95238095238097,425.4924069062663,2020-12-03 +102,1131.1000000000001,4.0,23.809523809523824,436.10041403235266,2020-12-03 +101,1122.1000000000001,4.0,23.52380952380954,446.3909862660105,2020-12-03 +99,1102.0,4.0,23.52380952380954,450.48814568171707,2020-12-03 +118,1285.9,4.0,23.09523809523811,417.8152437677627,2020-12-03 +78,895.6,4.0,22.380952380952397,432.81388816060917,2020-12-03 +76,875.8000000000001,4.0,22.380952380952397,436.21330085749753,2020-12-03 +54,648.8000000000001,4.0,15.047619047619058,337.98894655154857,2020-12-03 +44,542.0,4.0,15.571428571428584,315.1757765414079,2020-12-03 +43,531.5,4.0,15.00000000000001,333.1141965912751,2020-12-03 +42,519.2,4.0,15.00000000000001,343.3940037178032,2020-12-03 +40,494.40000000000003,4.0,15.285714285714295,317.0160364362366,2020-12-03 +39,482.0,4.0,15.666666666666679,291.0558271901376,2020-12-03 +38,469.5,4.0,15.523809523809536,275.79547411665726,2020-12-03 +37,458.90000000000003,4.0,15.38095238095239,284.2288422626458,2020-12-03 +10,110.0,4.0,15.1904761904762,391.18696271730977,2020-12-03 +9,96.7,4.0,16.00000000000001,374.5681883575139,2020-12-03 +8,84.9,4.0,16.380952380952394,358.8166087844469,2020-12-03 +7,73.5,4.0,16.380952380952394,361.550325872407,2020-12-03 +6,61.7,4.0,15.952380952380963,374.0660729405601,2020-12-03 +757,6888.700000000001,4.0,25.857142857142875,355.90986743382325,2020-12-03 +4,36.9,4.0,16.66666666666668,309.8782544527194,2020-12-03 +3,25.1,4.0,18.047619047619058,220.1767275546018,2020-12-03 +2,14.200000000000001,4.0,19.80952380952383,110.62548081581315,2020-12-03 +55,661.1,4.0,15.095238095238106,335.15399199724754,2020-12-03 +77,885.8000000000001,4.0,22.619047619047635,433.2466684755259,2020-12-03 +56,673.4000000000001,4.0,15.476190476190485,338.24095565632103,2020-12-03 +58,696.7,4.0,16.190476190476204,352.0058441982949,2020-12-03 +75,866.0,4.0,22.52380952380954,441.2956545855875,2020-12-03 +74,855.9000000000001,4.0,22.428571428571445,451.797927364574,2020-12-03 +73,845.6,4.0,22.857142857142872,459.86708527557903,2020-12-03 +72,835.1,4.0,23.09523809523811,463.4695394859184,2020-12-03 +71,824.9000000000001,4.0,23.90476190476192,460.6659396455498,2020-12-03 +70,815.4000000000001,4.0,24.238095238095255,457.1631668600644,2020-12-03 +69,805.7,4.0,24.428571428571445,453.0478057880904,2020-12-03 +68,796.0,4.0,24.190476190476208,462.12639714367344,2020-12-03 +67,786.2,4.0,24.190476190476208,477.541483573081,2020-12-03 +66,775.5,4.0,23.857142857142875,481.09475740680807,2020-12-03 +65,766.6,4.0,25.14285714285716,462.0992790747743,2020-12-03 +64,757.3000000000001,4.0,26.809523809523824,422.0080528029082,2020-12-03 +63,747.2,4.0,26.52380952380954,369.607347002616,2020-12-03 +62,738.4000000000001,4.0,24.52380952380954,335.1225235167595,2020-12-03 +61,730.0,4.0,21.47619047619049,329.9683225420456,2020-12-03 +60,719.8000000000001,4.0,18.238095238095248,339.04342320291653,2020-12-03 +59,708.5,4.0,16.61904761904763,349.2914126077707,2020-12-03 +57,685.7,4.0,15.714285714285722,346.6618548355745,2020-12-03 +119,1296.6000000000001,4.0,23.000000000000014,411.783803042557,2020-12-03 +120,1306.0,4.0,23.000000000000014,403.1127538275321,2020-12-03 +121,1315.8000000000002,4.0,23.000000000000014,396.370443152338,2020-12-03 +181,1887.9,4.0,23.809523809523824,370.94333438745895,2020-12-03 +180,1878.7,4.0,23.666666666666682,370.16917768352135,2020-12-03 +179,1868.3000000000002,4.0,23.380952380952397,373.77122856235974,2020-12-03 +178,1859.5,4.0,23.476190476190492,380.34591455254065,2020-12-03 +177,1850.4,4.0,23.52380952380954,386.1239601318958,2020-12-03 +176,1840.6000000000001,4.0,23.619047619047635,388.7497885798756,2020-12-03 +175,1831.3000000000002,4.0,23.33333333333335,390.35716026331534,2020-12-03 +174,1821.0,4.0,23.095238095238113,388.14409278693824,2020-12-03 +173,1810.6000000000001,4.0,23.238095238095255,382.3097102527764,2020-12-03 +172,1802.2,4.0,23.666666666666682,373.1333844774581,2020-12-03 +171,1792.3000000000002,4.0,23.95238095238097,364.09530223971876,2020-12-03 +170,1783.3000000000002,4.0,24.095238095238113,361.3126539148173,2020-12-03 +169,1773.4,4.0,24.000000000000018,366.79295256983954,2020-12-03 +168,1764.5,4.0,24.000000000000018,373.47056110964957,2020-12-03 +167,1754.3000000000002,4.0,24.095238095238113,375.06872350440403,2020-12-03 +166,1746.1000000000001,4.0,23.857142857142875,373.1501057592427,2020-12-03 +165,1736.4,4.0,23.809523809523824,373.1175324118678,2020-12-03 +182,1897.6000000000001,4.0,23.90476190476192,373.79140781612455,2020-12-03 +164,1727.3000000000002,4.0,23.52380952380954,381.7873709408959,2020-12-03 +183,1906.6000000000001,4.0,23.619047619047635,378.59005278306137,2020-12-03 +185,1926.3000000000002,4.0,23.09523809523811,387.79986696646074,2020-12-03 +202,2087.2000000000003,4.0,23.761904761904777,373.5579418284725,2020-12-03 +201,2077.7000000000003,4.0,23.52380952380954,385.3636395176964,2020-12-03 +200,2068.5,4.0,23.428571428571445,392.92152721153747,2020-12-03 +199,2058.2000000000003,4.0,23.047619047619065,390.6434816012015,2020-12-03 +198,2049.3,4.0,22.90476190476192,382.5381775998072,2020-12-03 +197,2039.4,4.0,23.09523809523811,375.4440114507678,2020-12-03 +196,2029.9,4.0,22.857142857142872,371.93665235644505,2020-12-03 +195,2020.8000000000002,4.0,22.809523809523824,376.4100585612472,2020-12-03 +194,2011.2,4.0,22.52380952380954,387.4481144777719,2020-12-03 +193,2001.0,4.0,22.333333333333346,394.1633547332698,2020-12-03 +192,1990.9,4.0,22.571428571428587,393.8332391556621,2020-12-03 +191,1981.8000000000002,4.0,23.14285714285716,386.14961690991913,2020-12-03 +190,1972.1000000000001,4.0,23.619047619047635,376.18847433220446,2020-12-03 +189,1963.2,4.0,24.000000000000014,373.5939543639761,2020-12-03 +188,1954.2,4.0,23.761904761904777,378.97669794188744,2020-12-03 +187,1945.5,4.0,23.238095238095255,385.90839455633494,2020-12-03 +186,1935.3000000000002,4.0,23.190476190476208,389.51156732895504,2020-12-03 +184,1916.4,4.0,23.380952380952397,382.9667266706268,2020-12-03 +163,1717.8000000000002,4.0,23.428571428571445,397.5005215156221,2020-12-03 +162,1708.6000000000001,4.0,23.52380952380954,412.51122970497113,2020-12-03 +161,1698.1000000000001,4.0,23.809523809523824,418.33506443324256,2020-12-03 +138,1478.9,4.0,22.90476190476192,413.0409801160006,2020-12-03 +137,1469.6000000000001,4.0,23.047619047619065,407.73787862009317,2020-12-03 +136,1460.2,4.0,23.33333333333335,399.8959547732903,2020-12-03 +135,1450.3000000000002,4.0,23.666666666666682,392.604574935898,2020-12-03 +134,1440.7,4.0,24.047619047619065,388.30744549505755,2020-12-03 +133,1431.4,4.0,24.047619047619065,383.09135601519574,2020-12-03 +132,1421.0,4.0,23.666666666666682,381.8327364192959,2020-12-03 +131,1412.1000000000001,4.0,23.428571428571445,385.9864867000483,2020-12-03 +130,1402.8000000000002,4.0,22.90476190476192,388.10786280334054,2020-12-03 +129,1392.9,4.0,22.52380952380954,389.4602540051136,2020-12-03 +128,1383.9,4.0,22.809523809523824,393.43295178781494,2020-12-03 +127,1374.3000000000002,4.0,23.000000000000014,397.13200750801224,2020-12-03 +126,1364.0,4.0,23.190476190476208,403.0874174691412,2020-12-03 +125,1354.4,4.0,23.380952380952394,407.9216344612711,2020-12-03 +124,1345.1000000000001,4.0,23.14285714285716,405.3142617498352,2020-12-03 +123,1335.1000000000001,4.0,22.90476190476192,399.40419551041157,2020-12-03 +122,1325.5,4.0,23.000000000000014,395.31016366962933,2020-12-03 +139,1489.1000000000001,4.0,22.90476190476192,418.2218935926317,2020-12-03 +140,1499.1000000000001,4.0,23.14285714285716,419.5064171373582,2020-12-03 +141,1508.7,4.0,23.190476190476204,416.9932243686686,2020-12-03 +142,1518.6000000000001,4.0,23.476190476190492,415.13644550605335,2020-12-03 +160,1689.4,4.0,23.76190476190478,416.730123848124,2020-12-03 +159,1679.5,4.0,24.14285714285716,409.26923504872263,2020-12-03 +158,1670.0,4.0,24.238095238095255,402.5317585086426,2020-12-03 +157,1660.7,4.0,24.904761904761923,398.1629192351583,2020-12-03 +156,1651.5,4.0,25.190476190476208,396.52335684385844,2020-12-03 +155,1642.5,4.0,25.095238095238113,396.73040009166397,2020-12-03 +154,1633.8000000000002,4.0,24.619047619047635,402.35396770779244,2020-12-03 +153,1624.3000000000002,4.0,24.190476190476208,408.8728013785826,2020-12-03 +391,3734.6000000000004,4.0,24.380952380952394,320.84143118795805,2020-12-03 +152,1614.4,4.0,23.71428571428573,415.2913015724115,2020-12-03 +150,1595.4,4.0,24.285714285714306,414.3398820307556,2020-12-03 +149,1586.0,4.0,24.33333333333335,405.7908244969974,2020-12-03 +148,1576.7,4.0,24.3809523809524,399.4388561937636,2020-12-03 +147,1566.9,4.0,24.000000000000018,398.0945710233974,2020-12-03 +146,1557.5,4.0,23.71428571428573,402.37092097347687,2020-12-03 +145,1547.1000000000001,4.0,23.52380952380954,409.43951495350245,2020-12-03 +144,1537.8000000000002,4.0,23.52380952380954,413.4733250626399,2020-12-03 +143,1528.5,4.0,23.47619047619049,415.2235013718159,2020-12-03 +151,1604.9,4.0,24.14285714285716,418.20697084693495,2020-12-03 +392,3743.9,4.0,24.33333333333335,331.79733517173185,2020-12-03 +5,49.800000000000004,4.0,15.809523809523817,363.2432468214172,2020-12-03 +394,3762.4,4.0,23.33333333333335,353.0532187659933,2020-12-03 +650,5918.5,4.0,24.000000000000018,377.6310422618567,2020-12-03 +649,5910.1,4.0,24.000000000000018,375.5440652204785,2020-12-03 +648,5900.900000000001,4.0,24.000000000000018,376.8250036225743,2020-12-03 +647,5891.900000000001,4.0,24.000000000000018,383.6672807010232,2020-12-03 +646,5882.200000000001,4.0,24.000000000000018,391.05061832524336,2020-12-03 +645,5872.900000000001,4.0,24.000000000000018,393.2757455093059,2020-12-03 +644,5863.200000000001,4.0,24.095238095238113,389.7299704367131,2020-12-03 +643,5853.8,4.0,23.857142857142875,384.77288387295084,2020-12-03 +642,5844.700000000001,4.0,23.71428571428573,383.33966134225136,2020-12-03 +641,5835.400000000001,4.0,23.666666666666686,389.8818808569543,2020-12-03 +640,5825.700000000001,4.0,23.71428571428573,396.03080539014286,2020-12-03 +639,5816.0,4.0,23.857142857142875,396.2800236521165,2020-12-03 +638,5806.8,4.0,24.190476190476208,393.32307993326157,2020-12-03 +637,5796.900000000001,4.0,23.95238095238097,392.96987305817913,2020-12-03 +636,5787.6,4.0,23.571428571428587,400.1601632007771,2020-12-03 +635,5778.6,4.0,23.380952380952397,416.0841772180824,2020-12-03 +634,5768.8,4.0,23.380952380952397,427.42369631884605,2020-12-03 +651,5928.700000000001,4.0,23.90476190476192,380.779329695093,2020-12-03 +633,5758.700000000001,4.0,23.571428571428587,426.16957027075705,2020-12-03 +652,5937.900000000001,4.0,24.14285714285716,384.0834785834072,2020-12-03 +654,5956.3,4.0,24.238095238095255,397.1075008044993,2020-12-03 +671,6115.5,4.0,24.000000000000018,399.34366474814124,2020-12-03 +670,6106.3,4.0,23.90476190476192,396.2527970679412,2020-12-03 +669,6096.8,4.0,24.14285714285716,395.0921440461518,2020-12-03 +668,6087.1,4.0,24.285714285714306,398.6305090129178,2020-12-03 +667,6077.6,4.0,24.33333333333335,402.91944730242597,2020-12-03 +666,6068.1,4.0,24.285714285714306,404.47314013900603,2020-12-03 +665,6059.3,4.0,24.14285714285716,402.9266966192031,2020-12-03 +664,6049.5,4.0,23.90476190476192,401.0833302233906,2020-12-03 +663,6040.1,4.0,24.000000000000018,402.0061071696423,2020-12-03 +662,6030.700000000001,4.0,24.000000000000018,404.1872848509173,2020-12-03 +661,6020.8,4.0,23.90476190476192,402.5158969853352,2020-12-03 +660,6011.5,4.0,24.047619047619065,396.93819406422426,2020-12-03 +659,6002.5,4.0,24.428571428571445,390.7895698921993,2020-12-03 +658,5993.400000000001,4.0,24.619047619047635,389.05478450955354,2020-12-03 +657,5984.200000000001,4.0,24.52380952380954,394.89133211028127,2020-12-03 +656,5975.1,4.0,24.57142857142859,401.6111316912628,2020-12-03 +655,5965.200000000001,4.0,24.33333333333335,402.33359587735924,2020-12-03 +653,5947.1,4.0,24.285714285714306,389.7317007154233,2020-12-03 +672,6125.3,4.0,24.000000000000018,401.13050163828564,2020-12-03 +632,5749.3,4.0,23.95238095238097,416.0069127104051,2020-12-03 +630,5729.900000000001,4.0,24.095238095238113,399.9807788585942,2020-12-03 +607,5510.400000000001,4.0,24.000000000000018,405.1342760415115,2020-12-03 +605,5491.200000000001,4.0,24.000000000000018,415.0370986636807,2020-12-03 +604,5481.700000000001,4.0,24.000000000000018,422.1697360453936,2020-12-03 +603,5471.8,4.0,24.000000000000018,426.43314415452727,2020-12-03 +602,5462.5,4.0,23.90476190476192,429.83269842119637,2020-12-03 +601,5453.1,4.0,24.14285714285716,433.40318925362544,2020-12-03 +600,5443.6,4.0,24.285714285714306,436.81215741660526,2020-12-03 +599,5434.1,4.0,24.33333333333335,434.7572770432837,2020-12-03 +598,5424.1,4.0,24.190476190476208,427.92495922249566,2020-12-03 +597,5415.1,4.0,24.285714285714306,419.60044206600594,2020-12-03 +596,5405.6,4.0,24.190476190476208,418.8051216652606,2020-12-03 +595,5395.6,4.0,24.33333333333335,426.36276687734187,2020-12-03 +594,5386.3,4.0,24.190476190476208,437.3738199431583,2020-12-03 +593,5376.3,4.0,24.190476190476208,442.5172124776571,2020-12-03 +592,5367.1,4.0,24.238095238095255,439.51443180487286,2020-12-03 +591,5357.400000000001,4.0,24.76190476190478,427.0649149233319,2020-12-03 +590,5347.8,4.0,25.000000000000014,412.33439746644024,2020-12-03 +609,5528.700000000001,4.0,24.000000000000018,417.1941167946831,2020-12-03 +631,5739.3,4.0,24.095238095238113,404.8268411370757,2020-12-03 +610,5539.3,4.0,24.000000000000018,425.68294524718925,2020-12-03 +612,5558.3,4.0,24.000000000000018,424.0061690827896,2020-12-03 +629,5720.6,4.0,23.857142857142875,404.7043035929269,2020-12-03 +628,5710.6,4.0,23.71428571428573,412.1419025554499,2020-12-03 +627,5700.8,4.0,23.76190476190478,413.809300907457,2020-12-03 +626,5691.6,4.0,23.571428571428587,409.13677084964576,2020-12-03 +625,5682.400000000001,4.0,23.666666666666682,401.6775326845144,2020-12-03 +624,5672.5,4.0,23.619047619047635,395.4406876672349,2020-12-03 +623,5662.5,4.0,23.428571428571445,395.2262107201137,2020-12-03 +622,5653.1,4.0,23.52380952380954,400.57662241689167,2020-12-03 +621,5643.6,4.0,23.809523809523824,402.8004267993034,2020-12-03 +620,5634.400000000001,4.0,23.857142857142875,402.0266492805903,2020-12-03 +619,5624.6,4.0,24.095238095238113,398.5165729494803,2020-12-03 +618,5615.3,4.0,24.000000000000018,393.5148875870242,2020-12-03 +617,5605.5,4.0,24.000000000000018,392.4553839233115,2020-12-03 +616,5596.3,4.0,24.000000000000018,395.9399224321046,2020-12-03 +615,5586.700000000001,4.0,24.000000000000018,400.1660988018522,2020-12-03 +614,5577.5,4.0,24.000000000000018,407.6899276613547,2020-12-03 +613,5568.200000000001,4.0,24.000000000000018,416.835005400599,2020-12-03 +611,5548.8,4.0,24.000000000000018,427.9280383183259,2020-12-03 +673,6134.5,4.0,24.000000000000018,397.8346454745829,2020-12-03 +674,6144.200000000001,4.0,24.000000000000018,390.3975851164,2020-12-03 +675,6153.400000000001,4.0,24.000000000000018,384.46575267780446,2020-12-03 +735,6697.3,4.0,24.047619047619065,361.21769823270404,2020-12-03 +734,6687.200000000001,4.0,23.90476190476192,355.811434925191,2020-12-03 +733,6678.700000000001,4.0,24.000000000000018,351.04274591147396,2020-12-03 +732,6669.900000000001,4.0,24.000000000000018,348.4547340592835,2020-12-03 +731,6661.0,4.0,24.000000000000018,349.4671725920846,2020-12-03 +730,6651.5,4.0,24.000000000000018,355.51072876418846,2020-12-03 +729,6642.5,4.0,24.000000000000018,361.8525031240355,2020-12-03 +728,6632.6,4.0,23.90476190476192,366.21289201216166,2020-12-03 +727,6624.200000000001,4.0,24.047619047619065,368.7240902456506,2020-12-03 +726,6615.200000000001,4.0,24.428571428571445,368.6243481090225,2020-12-03 +725,6605.6,4.0,24.619047619047635,367.0544327318245,2020-12-03 +724,6597.1,4.0,24.619047619047635,366.22912095190117,2020-12-03 +723,6587.6,4.0,24.428571428571445,365.7202701579163,2020-12-03 +722,6579.0,4.0,24.047619047619065,365.47416123450694,2020-12-03 +721,6569.400000000001,4.0,23.90476190476192,367.05795351938053,2020-12-03 +720,6560.200000000001,4.0,24.000000000000018,370.8244512479646,2020-12-03 +719,6550.400000000001,4.0,24.000000000000018,373.7396606607549,2020-12-03 +736,6706.3,4.0,24.238095238095255,362.6341494666227,2020-12-03 +718,6541.200000000001,4.0,24.000000000000018,373.68090067164854,2020-12-03 +737,6715.400000000001,4.0,24.619047619047635,359.4933221647442,2020-12-03 +739,6732.1,4.0,25.95238095238097,346.9060702284267,2020-12-03 +393,3752.8,4.0,23.809523809523824,342.7192061388133,2020-12-03 +755,6870.5,4.0,25.57142857142859,353.97996212682744,2020-12-03 +754,6862.3,4.0,25.76190476190478,354.3001544776388,2020-12-03 +753,6853.900000000001,4.0,25.71428571428573,351.96719103430183,2020-12-03 +752,6844.900000000001,4.0,25.857142857142875,348.57568765833327,2020-12-03 +751,6835.700000000001,4.0,26.190476190476208,344.88666770370816,2020-12-03 +750,6827.5,4.0,25.95238095238097,345.02209923555347,2020-12-03 +749,6819.1,4.0,25.666666666666686,351.3356526096576,2020-12-03 +748,6810.1,4.0,25.238095238095255,359.9602833381565,2020-12-03 +747,6801.0,4.0,25.09523809523811,366.1781004677241,2020-12-03 +746,6792.5,4.0,25.238095238095255,369.32299357286956,2020-12-03 +745,6783.5,4.0,25.57142857142859,368.90829980120134,2020-12-03 +744,6775.200000000001,4.0,26.095238095238113,365.5627053309903,2020-12-03 +743,6766.0,4.0,26.285714285714302,358.6460448675913,2020-12-03 +742,6758.1,4.0,26.476190476190496,350.3463477910375,2020-12-03 +741,6749.200000000001,4.0,26.666666666666686,344.5027203320069,2020-12-03 +740,6740.8,4.0,26.428571428571445,342.8532366446359,2020-12-03 +738,6724.400000000001,4.0,25.428571428571445,353.91736629666843,2020-12-03 +717,6532.200000000001,4.0,24.000000000000018,371.6477629866646,2020-12-03 +716,6523.200000000001,4.0,24.000000000000018,369.7189261670877,2020-12-03 +715,6514.1,4.0,24.000000000000018,371.2970933855728,2020-12-03 +692,6307.900000000001,4.0,25.904761904761923,385.2207944769321,2020-12-03 +691,6298.200000000001,4.0,26.14285714285716,378.9424390384805,2020-12-03 +690,6290.1,4.0,26.285714285714302,375.66262176286136,2020-12-03 +689,6281.6,4.0,26.428571428571445,378.0794980405542,2020-12-03 +688,6273.200000000001,4.0,26.14285714285716,384.64952292180715,2020-12-03 +687,6263.5,4.0,25.95238095238097,389.9520326885396,2020-12-03 +686,6255.400000000001,4.0,25.619047619047635,394.44057279651963,2020-12-03 +685,6246.1,4.0,25.33333333333335,396.62798400447105,2020-12-03 +684,6237.3,4.0,24.857142857142872,397.28102277671564,2020-12-03 +683,6228.3,4.0,24.476190476190496,396.1119026617845,2020-12-03 +682,6218.900000000001,4.0,23.95238095238097,393.10038373223654,2020-12-03 +681,6209.700000000001,4.0,23.90476190476192,388.198680436832,2020-12-03 +680,6200.3,4.0,24.000000000000018,385.4198785207906,2020-12-03 +679,6190.5,4.0,24.000000000000018,385.39352462435886,2020-12-03 +678,6181.3,4.0,24.000000000000018,385.5770541027215,2020-12-03 +677,6171.5,4.0,24.000000000000018,384.3446593963606,2020-12-03 +676,6162.400000000001,4.0,24.000000000000018,383.2410216370539,2020-12-03 +693,6316.700000000001,4.0,26.000000000000018,392.7764656328728,2020-12-03 +694,6326.1,4.0,26.095238095238113,400.19011322813174,2020-12-03 +695,6334.3,4.0,25.857142857142875,403.6789684654888,2020-12-03 +696,6343.700000000001,4.0,25.71428571428573,403.46135274339895,2020-12-03 +714,6504.6,4.0,23.90476190476192,375.33893267731435,2020-12-03 +713,6495.5,4.0,23.95238095238097,377.1804471838202,2020-12-03 +712,6485.8,4.0,24.476190476190496,377.4974631243449,2020-12-03 +711,6477.3,4.0,24.952380952380967,378.16969612019,2020-12-03 +710,6468.400000000001,4.0,25.09523809523811,384.286248389693,2020-12-03 +709,6459.200000000001,4.0,25.57142857142859,394.4829846427911,2020-12-03 +708,6450.5,4.0,25.571428571428587,401.37855399731666,2020-12-03 +707,6441.200000000001,4.0,26.19047619047621,399.79500815103563,2020-12-03 +589,5338.3,4.0,25.000000000000018,396.51099734844286,2020-12-03 +706,6432.400000000001,4.0,26.809523809523828,393.61609552254293,2020-12-03 +704,6415.1,4.0,26.33333333333335,379.32807103167295,2020-12-03 +703,6406.5,4.0,26.000000000000014,378.2536222005516,2020-12-03 +702,6397.200000000001,4.0,25.476190476190492,377.0650016866375,2020-12-03 +701,6388.5,4.0,25.71428571428573,375.65968584932745,2020-12-03 +700,6379.400000000001,4.0,25.95238095238097,377.3688020345235,2020-12-03 +699,6370.700000000001,4.0,25.95238095238097,381.31366004722076,2020-12-03 +698,6361.700000000001,4.0,25.71428571428573,389.5800291165118,2020-12-03 +697,6352.900000000001,4.0,25.666666666666686,398.8711125845283,2020-12-03 +705,6423.700000000001,4.0,27.00000000000002,384.09123977165564,2020-12-03 +588,5328.5,4.0,23.95238095238097,381.20347812409625,2020-12-03 +606,5500.5,4.0,24.000000000000018,408.0531756062461,2020-12-03 +586,5310.1,4.0,20.619047619047635,361.1101353086699,2020-12-03 +454,4294.400000000001,4.0,22.52380952380954,309.0121061141684,2020-12-03 +453,4286.0,4.0,22.809523809523824,313.13324894268317,2020-12-03 +452,4276.0,4.0,23.000000000000014,306.73440784392517,2020-12-03 +451,4267.7,4.0,23.190476190476208,293.00788731573977,2020-12-03 +450,4259.1,4.0,23.380952380952394,280.6348956948112,2020-12-03 +449,4250.1,4.0,23.047619047619065,274.8209092316012,2020-12-03 +448,4241.5,4.0,22.95238095238097,280.35337703916605,2020-12-03 +447,4233.400000000001,4.0,23.428571428571445,292.88444671583665,2020-12-03 +446,4224.5,4.0,23.619047619047635,302.72243894003503,2020-12-03 +445,4215.8,4.0,23.52380952380954,307.6259224204496,2020-12-03 +444,4207.2,4.0,23.571428571428587,307.59118039610297,2020-12-03 +443,4198.2,4.0,23.33333333333335,302.6631073748815,2020-12-03 +442,4189.0,4.0,23.14285714285716,299.1049603528247,2020-12-03 +441,4180.3,4.0,23.428571428571445,300.40467746079497,2020-12-03 +440,4171.2,4.0,23.33333333333335,304.85916145508673,2020-12-03 +439,4161.6,4.0,23.380952380952397,311.27509770363076,2020-12-03 +438,4153.3,4.0,23.47619047619049,317.0823968059034,2020-12-03 +455,4303.400000000001,4.0,23.000000000000014,301.844350039911,2020-12-03 +437,4144.8,4.0,23.52380952380954,318.537083725284,2020-12-03 +456,4312.3,4.0,23.380952380952394,298.9872985540139,2020-12-03 +458,4330.6,4.0,23.2857142857143,308.82632910219354,2020-12-03 +475,4476.1,4.0,23.238095238095255,266.37635929564243,2020-12-03 +474,4467.6,4.0,23.2857142857143,267.25208986686295,2020-12-03 +473,4459.0,4.0,23.14285714285716,273.99819127499796,2020-12-03 +472,4450.1,4.0,22.809523809523824,281.04015717673195,2020-12-03 +471,4442.7,4.0,23.047619047619065,285.069588043161,2020-12-03 +470,4433.8,4.0,23.33333333333335,284.06825406687517,2020-12-03 +469,4425.1,4.0,23.666666666666682,281.84927466487954,2020-12-03 +468,4417.1,4.0,23.95238095238097,283.90174818357025,2020-12-03 +467,4408.400000000001,4.0,24.190476190476208,286.1003261182906,2020-12-03 +466,4399.7,4.0,23.95238095238097,283.8835959717792,2020-12-03 +465,4391.2,4.0,23.666666666666682,276.2151340002297,2020-12-03 +464,4382.6,4.0,23.33333333333335,265.86052813649485,2020-12-03 +463,4373.5,4.0,23.047619047619065,258.75739034234056,2020-12-03 +462,4364.7,4.0,22.90476190476192,263.84389716008377,2020-12-03 +461,4356.2,4.0,23.000000000000014,279.0080055277188,2020-12-03 +460,4347.900000000001,4.0,22.90476190476192,296.1065124694396,2020-12-03 +459,4338.7,4.0,23.14285714285716,307.63369894086236,2020-12-03 +457,4321.5,4.0,23.33333333333335,302.29564020319947,2020-12-03 +476,4484.900000000001,4.0,23.428571428571445,275.88357554340985,2020-12-03 +436,4135.7,4.0,23.619047619047635,318.5985831447829,2020-12-03 +434,4117.2,4.0,23.571428571428587,322.1537391414954,2020-12-03 +412,3923.5,4.0,24.14285714285716,281.8202181554178,2020-12-03 +411,3914.6000000000004,4.0,23.95238095238097,279.8777391564963,2020-12-03 +410,3905.8,4.0,23.52380952380954,284.8718870042223,2020-12-03 +409,3897.7000000000003,4.0,23.380952380952397,291.3835545047298,2020-12-03 +408,3888.8,4.0,23.09523809523811,300.9223341965411,2020-12-03 +407,3880.5,4.0,23.190476190476208,313.18104929110007,2020-12-03 +406,3871.5,4.0,23.238095238095255,326.4590684698061,2020-12-03 +405,3862.4,4.0,23.666666666666682,336.0712252399441,2020-12-03 +404,3853.3,4.0,23.95238095238097,338.5952029662548,2020-12-03 +403,3844.1000000000004,4.0,24.095238095238113,334.5144943726892,2020-12-03 +402,3835.9,4.0,24.095238095238113,328.6802726381469,2020-12-03 +401,3826.5,4.0,23.95238095238097,325.66310141593976,2020-12-03 +400,3817.6000000000004,4.0,23.761904761904777,328.86041870628344,2020-12-03 +399,3808.2000000000003,4.0,23.190476190476204,338.01827757964895,2020-12-03 +398,3799.3,4.0,22.761904761904777,348.8006596226011,2020-12-03 +397,3789.2000000000003,4.0,22.571428571428587,358.024827897818,2020-12-03 +587,5319.200000000001,4.0,22.333333333333346,368.03238185602726,2020-12-03 +413,3932.0,4.0,24.428571428571445,293.9172369172178,2020-12-03 +435,4126.400000000001,4.0,23.666666666666682,320.21959502788104,2020-12-03 +414,3940.9,4.0,24.285714285714306,316.1523555870573,2020-12-03 +416,3958.5,4.0,23.90476190476192,351.0193205374395,2020-12-03 +433,4108.6,4.0,23.666666666666686,320.81996513174204,2020-12-03 +432,4099.400000000001,4.0,23.857142857142875,315.1484666458074,2020-12-03 +431,4090.8,4.0,24.14285714285716,307.83841506579193,2020-12-03 +430,4082.0,4.0,24.428571428571445,304.6215463123447,2020-12-03 +429,4073.6000000000004,4.0,24.285714285714306,308.7399486361368,2020-12-03 +428,4064.6000000000004,4.0,24.14285714285716,314.1915792047148,2020-12-03 +427,4055.5,4.0,23.90476190476192,315.101952057565,2020-12-03 +426,4047.0,4.0,24.000000000000018,311.64103551737014,2020-12-03 +425,4037.9,4.0,24.095238095238113,308.06873230362646,2020-12-03 +424,4029.2000000000003,4.0,23.95238095238097,308.91899046962135,2020-12-03 +423,4020.7000000000003,4.0,23.571428571428587,315.44897116983054,2020-12-03 +422,4011.6000000000004,4.0,23.380952380952397,321.2254604222742,2020-12-03 +421,4002.1000000000004,4.0,23.380952380952397,322.4683624513656,2020-12-03 +420,3994.1000000000004,4.0,23.571428571428587,321.96816617928346,2020-12-03 +419,3985.1000000000004,4.0,23.95238095238097,325.28846904997283,2020-12-03 +418,3976.3,4.0,24.095238095238113,335.64060425497223,2020-12-03 +417,3967.3,4.0,24.000000000000018,347.5293196302003,2020-12-03 +415,3949.4,4.0,24.14285714285716,338.85379940494454,2020-12-03 +477,4493.900000000001,4.0,23.33333333333335,288.9195282775067,2020-12-03 +396,3780.4,4.0,22.619047619047635,362.88116099215677,2020-12-03 +479,4511.3,4.0,23.619047619047635,300.8970479963085,2020-12-03 +546,5078.6,4.0,17.00000000000001,177.3048563648184,2020-12-03 +545,5069.400000000001,4.0,17.095238095238106,177.7567980639614,2020-12-03 +544,5060.3,4.0,16.761904761904773,181.35751673006428,2020-12-03 +543,5051.1,4.0,16.761904761904773,182.84073445776852,2020-12-03 +542,5041.700000000001,4.0,17.00000000000001,181.08396924244403,2020-12-03 +541,5032.0,4.0,17.66666666666668,176.62305650844976,2020-12-03 +540,5022.8,4.0,17.47619047619049,176.01398826465334,2020-12-03 +539,5013.900000000001,4.0,17.2857142857143,180.33683173816024,2020-12-03 +538,5005.3,4.0,16.66666666666668,185.17344078784978,2020-12-03 +537,4994.5,4.0,16.47619047619049,181.6286263071716,2020-12-03 +536,4984.400000000001,4.0,16.619047619047628,171.87261985098274,2020-12-03 +535,4975.8,4.0,17.1904761904762,160.41212425417615,2020-12-03 +534,4967.3,4.0,17.00000000000001,154.0871934118656,2020-12-03 +533,4958.3,4.0,17.095238095238106,153.49575710168008,2020-12-03 +532,4949.3,4.0,16.85714285714287,155.65325653561823,2020-12-03 +531,4940.8,4.0,16.714285714285726,155.9509114261868,2020-12-03 +530,4932.1,4.0,16.66666666666668,154.94549142095514,2020-12-03 +547,5087.700000000001,4.0,17.00000000000001,177.0992244518734,2020-12-03 +529,4922.8,4.0,16.714285714285726,153.4546297826758,2020-12-03 +548,5096.8,4.0,17.00000000000001,188.45523618314053,2020-12-03 +550,5096.8,4.0,16.333333333333343,201.2749323267301,2020-12-03 +585,5299.3,4.0,19.47619047619049,355.1916211202588,2020-12-03 +478,4502.5,4.0,23.285714285714302,297.7912249855383,2020-12-03 +584,5289.0,4.0,18.61904761904763,347.6214614189223,2020-12-03 +583,5278.700000000001,4.0,18.61904761904763,338.02404234373034,2020-12-03 +582,5268.0,4.0,18.761904761904773,327.5344161536245,2020-12-03 +581,5257.400000000001,4.0,18.66666666666668,317.524594386167,2020-12-03 +580,5247.0,4.0,18.523809523809536,313.6160121474108,2020-12-03 +579,5236.8,4.0,18.428571428571438,312.07275249482456,2020-12-03 +578,5225.900000000001,4.0,18.047619047619058,308.1705454830087,2020-12-03 +577,5215.200000000001,4.0,17.90476190476192,302.2856291785507,2020-12-03 +576,5204.6,4.0,18.09523809523811,288.7878620328561,2020-12-03 +575,5193.8,4.0,17.952380952380963,283.5714510884895,2020-12-03 +574,5183.700000000001,4.0,17.66666666666668,266.4962089281482,2020-12-03 +573,5173.700000000001,4.0,15.428571428571438,221.46956014537716,2020-12-03 +572,5163.200000000001,4.0,19.238095238095248,152.66461594940927,2020-12-03 +552,5096.8,4.0,18.761904761904773,109.22184514209758,2020-12-03 +551,5096.8,4.0,17.714285714285726,164.9694224083534,2020-12-03 +549,5096.8,4.0,17.00000000000001,204.45813432596577,2020-12-03 +528,4913.6,4.0,16.85714285714287,154.46010689639633,2020-12-03 +395,3771.3,4.0,22.90476190476192,361.10142841293987,2020-12-03 +526,4896.400000000001,4.0,16.85714285714287,152.66946043002997,2020-12-03 +496,4653.2,4.0,24.619047619047635,264.3093460161144,2020-12-03 +495,4645.7,4.0,24.428571428571445,256.97593367532465,2020-12-03 +494,4637.400000000001,4.0,24.047619047619065,253.16911628061865,2020-12-03 +493,4629.3,4.0,23.90476190476192,254.68734200154603,2020-12-03 +492,4620.5,4.0,24.095238095238113,259.90345467396105,2020-12-03 +480,4520.2,4.0,23.809523809523824,295.53021612822306,2020-12-03 +490,4603.7,4.0,23.71428571428573,267.64850021119616,2020-12-03 +489,4595.8,4.0,23.666666666666686,271.8303760351014,2020-12-03 +488,4587.7,4.0,23.809523809523824,273.3487644904876,2020-12-03 +487,4579.0,4.0,23.71428571428573,273.69125478568174,2020-12-03 +486,4570.7,4.0,23.809523809523824,272.35414550183344,2020-12-03 +485,4561.8,4.0,23.666666666666686,269.42619239179214,2020-12-03 +484,4552.7,4.0,23.71428571428573,267.55951551628993,2020-12-03 +483,4545.1,4.0,23.857142857142875,271.03041511042557,2020-12-03 +482,4536.6,4.0,24.190476190476208,276.73169649616665,2020-12-03 +481,4528.2,4.0,23.857142857142875,285.40706843341565,2020-12-03 +527,4904.900000000001,4.0,17.1904761904762,155.7125837259922,2020-12-03 +497,4662.1,4.0,24.71428571428573,273.5056689574718,2020-12-03 +498,4670.0,4.0,24.285714285714306,279.6003199550463,2020-12-03 +491,4612.5,4.0,23.857142857142875,264.2927891362441,2020-12-03 +500,4687.2,4.0,23.571428571428587,284.08634112838797,2020-12-03 +525,4887.900000000001,4.0,16.80952380952382,141.10614751997238,2020-12-03 +499,4678.6,4.0,23.761904761904777,282.3840501718582,2020-12-03 +516,4819.6,4.0,16.238095238095248,154.38555607053954,2020-12-03 +515,4812.8,4.0,18.809523809523824,209.1580232110013,2020-12-03 +514,4803.3,4.0,21.761904761904777,247.50666820752045,2020-12-03 +513,4795.400000000001,4.0,24.238095238095255,266.5129681116766,2020-12-03 +512,4786.7,4.0,25.380952380952397,271.3312963959185,2020-12-03 +511,4779.8,4.0,24.33333333333335,271.5547500894254,2020-12-03 +510,4771.3,4.0,24.190476190476208,274.1844786425623,2020-12-03 +524,4878.6,4.0,16.714285714285726,120.38274272168789,2020-12-03 +508,4755.0,4.0,24.33333333333335,277.6488636579637,2020-12-03 +507,4745.900000000001,4.0,24.190476190476208,273.5767409988948,2020-12-03 +506,4738.2,4.0,24.285714285714306,267.5897040836015,2020-12-03 +505,4729.400000000001,4.0,24.190476190476208,262.58793957521846,2020-12-03 +504,4721.3,4.0,24.33333333333335,263.2971008824737,2020-12-03 +503,4713.0,4.0,24.3809523809524,269.5949991711649,2020-12-03 +501,4695.5,4.0,23.619047619047635,281.9273793644045,2020-12-03 +502,4704.6,4.0,24.000000000000018,276.3185986289409,2020-12-03 +509,4763.2,4.0,24.190476190476208,278.8031064067173,2020-12-03 +264,3371.8,4.0,18.999999999999996,349.41106232350523,2020-12-04 +263,3368.5,4.0,18.999999999999996,344.32808501325803,2020-12-04 +262,3358.4,4.0,19.085714285714282,332.78392242999394,2020-12-04 +261,3341.3,4.0,18.657142857142855,323.11856886632677,2020-12-04 +260,3321.3,4.0,18.514285714285712,318.2831542212956,2020-12-04 +259,3308.0,4.0,18.657142857142855,325.6800533980863,2020-12-04 +258,3295.600000000001,4.0,19.085714285714282,336.3970455269086,2020-12-04 +254,3248.4,4.0,18.999999999999996,356.6924225369828,2020-12-04 +256,3275.4,4.0,18.999999999999996,344.91940576868865,2020-12-04 +255,3265.0,4.0,18.999999999999996,345.89294771642403,2020-12-04 +253,3228.0,4.0,18.999999999999996,371.9912672879209,2020-12-04 +252,3207.2000000000007,4.0,18.999999999999996,391.9137571333034,2020-12-04 +251,3200.2000000000007,4.0,18.999999999999996,402.8327951473169,2020-12-04 +250,3189.7000000000007,4.0,18.999999999999996,398.2834872633125,2020-12-04 +249,3171.9,4.0,18.999999999999996,377.869146894173,2020-12-04 +257,3278.7000000000007,4.0,18.999999999999996,344.4017792728457,2020-12-04 +265,3385.8,4.0,18.999999999999996,349.9543890459248,2020-12-04 +284,3581.4,4.0,18.257142857142853,323.49504546114605,2020-12-04 +267,3418.5,4.0,18.999999999999996,323.59988324537085,2020-12-04 +285,3598.4,4.0,17.91428571428571,340.1242072057778,2020-12-04 +283,3575.2000000000007,4.0,18.74285714285714,312.98272740675435,2020-12-04 +282,3565.2000000000007,4.0,19.17142857142857,316.02359160976494,2020-12-04 +281,3548.7000000000007,4.0,18.4,345.83365891884665,2020-12-04 +280,3532.600000000001,4.0,19.285714285714285,340.91252425029364,2020-12-04 +279,3515.4,4.0,20.885714285714283,313.0190921342472,2020-12-04 +278,3511.8,4.0,22.685714285714283,278.80991200202794,2020-12-04 +277,3508.5,4.0,20.971428571428568,303.4495356225801,2020-12-04 +276,3501.7000000000007,4.0,19.028571428571425,331.94207455487276,2020-12-04 +275,3498.4,4.0,17.657142857142855,352.93638152248747,2020-12-04 +274,3488.7000000000007,4.0,18.0,346.955330096308,2020-12-04 +273,3481.7000000000007,4.0,18.0,345.96449529210685,2020-12-04 +272,3468.100000000001,4.0,17.91428571428571,347.12512100007604,2020-12-04 +271,3465.100000000001,4.0,18.257142857142853,343.18070431121464,2020-12-04 +270,3448.5,4.0,18.74285714285714,331.1994776217744,2020-12-04 +269,3441.9,4.0,19.085714285714282,316.517110290839,2020-12-04 +268,3434.8,4.0,18.999999999999996,313.68015865951713,2020-12-04 +266,3402.100000000001,4.0,18.999999999999996,340.77061993462735,2020-12-04 +248,3150.5,4.0,18.999999999999996,361.7702439909828,2020-12-04 +229,2883.8,4.0,18.999999999999996,337.0032189942167,2020-12-04 +246,3119.600000000001,4.0,18.999999999999996,356.4401519698823,2020-12-04 +223,2815.5,4.0,18.514285714285712,357.57176696024936,2020-12-04 +222,2801.4,4.0,18.657142857142855,367.38477706010667,2020-12-04 +221,2781.4,4.0,19.085714285714282,376.4957077999214,2020-12-04 +220,2775.0,4.0,18.999999999999996,380.45910699420165,2020-12-04 +219,2760.2000000000007,4.0,18.999999999999996,365.2502766518613,2020-12-04 +218,2742.7000000000007,4.0,18.999999999999996,354.6724316448941,2020-12-04 +217,2725.9,4.0,18.999999999999996,352.4942320490126,2020-12-04 +216,2701.9,4.0,18.999999999999996,351.6222418216786,2020-12-04 +215,2685.0,4.0,18.999999999999996,344.4973137936759,2020-12-04 +214,2667.9,4.0,18.999999999999996,344.9400240910983,2020-12-04 +213,2650.8,4.0,18.999999999999996,352.0181488314465,2020-12-04 +212,2637.600000000001,4.0,18.999999999999996,363.9129854279677,2020-12-04 +211,2620.4,4.0,19.085714285714282,365.37463924070624,2020-12-04 +210,2603.100000000001,4.0,18.74285714285714,361.5308381001493,2020-12-04 +209,2585.7000000000007,4.0,18.257142857142853,353.5247510549231,2020-12-04 +208,2575.3,4.0,17.91428571428571,350.15260954682395,2020-12-04 +207,2568.8,4.0,18.0,351.14886805388784,2020-12-04 +224,2819.3,4.0,18.657142857142855,359.95976699267874,2020-12-04 +247,3133.100000000001,4.0,18.999999999999996,358.54003795761196,2020-12-04 +225,2836.4,4.0,19.085714285714282,364.4693818337465,2020-12-04 +227,2850.2000000000007,4.0,18.999999999999996,366.70333981450995,2020-12-04 +245,3102.4,4.0,18.999999999999996,346.6725330503383,2020-12-04 +244,3081.7000000000007,4.0,18.999999999999996,342.546106719593,2020-12-04 +243,3065.2000000000007,4.0,18.999999999999996,357.8237266333224,2020-12-04 +242,3054.8,4.0,18.999999999999996,385.1491396462726,2020-12-04 +241,3045.0,4.0,18.999999999999996,408.74498915188195,2020-12-04 +240,3023.7000000000007,4.0,18.999999999999996,415.2395554260899,2020-12-04 +239,3005.7000000000007,4.0,18.999999999999996,404.19194780391445,2020-12-04 +238,3002.0,4.0,18.999999999999996,393.3893547195903,2020-12-04 +237,2990.8,4.0,18.999999999999996,395.15887211971614,2020-12-04 +236,2980.0,4.0,18.999999999999996,402.16508840266556,2020-12-04 +235,2973.3,4.0,19.085714285714282,390.7249592955886,2020-12-04 +234,2952.100000000001,4.0,18.657142857142855,373.54021691480386,2020-12-04 +233,2933.7000000000007,4.0,18.514285714285712,351.9779149455184,2020-12-04 +232,2914.100000000001,4.0,18.657142857142855,339.51932260754336,2020-12-04 +231,2900.2000000000007,4.0,19.085714285714282,327.80977005009504,2020-12-04 +230,2886.7000000000007,4.0,18.999999999999996,329.78957943944226,2020-12-04 +228,2866.8,4.0,18.999999999999996,352.31121255767556,2020-12-04 +226,2846.600000000001,4.0,18.999999999999996,372.5614091100646,2020-12-04 +286,3608.5,4.0,18.0,349.31821991483946,2020-12-04 +357,3942.7,4.0,18.91428571428571,372.10131885514244,2020-12-04 +288,3628.1,4.0,18.0,339.4501294055624,2020-12-04 +399,4436.9000000000015,4.0,19.999999999999996,358.73062485377545,2020-12-04 +398,4433.8,4.0,19.999999999999996,365.60623238614744,2020-12-04 +397,4419.3,4.0,19.999999999999996,365.46576893023945,2020-12-04 +396,4405.4000000000015,4.0,19.999999999999996,358.28254261709674,2020-12-04 +395,4398.5,4.0,19.999999999999996,345.5143369243299,2020-12-04 +394,4387.9000000000015,4.0,19.999999999999996,331.31168418726094,2020-12-04 +393,4381.2,4.0,19.999999999999996,325.7333764550207,2020-12-04 +400,4453.7,4.0,19.999999999999996,340.5923987890461,2020-12-04 +392,4370.5,4.0,19.999999999999996,330.66605399914863,2020-12-04 +390,4347.3,4.0,19.999999999999996,344.09597614586175,2020-12-04 +389,4336.7,4.0,19.91428571428571,338.8791073910651,2020-12-04 +388,4330.0,4.0,20.257142857142853,325.13478802287426,2020-12-04 +387,4316.1,4.0,20.74285714285714,315.3927214382954,2020-12-04 +386,4309.5,4.0,21.085714285714282,317.2731893347754,2020-12-04 +385,4299.2,4.0,21.085714285714282,332.3550645514875,2020-12-04 +384,4282.5,4.0,20.74285714285714,356.18212924679494,2020-12-04 +391,4353.9000000000015,4.0,19.999999999999996,340.73947731199155,2020-12-04 +401,4470.3,4.0,19.999999999999996,320.1076847330362,2020-12-04 +402,4493.3,4.0,19.57142857142857,314.4572476418885,2020-12-04 +403,4500.2,4.0,21.71428571428571,291.36113316716535,2020-12-04 +206,2548.8,4.0,17.91428571428571,355.72684412832575,2020-12-04 +419,4714.2,4.0,19.999999999999996,341.74323834625386,2020-12-04 +418,4697.7,4.0,19.91428571428571,347.9226967752944,2020-12-04 +417,4683.5,4.0,20.257142857142853,336.6110450394407,2020-12-04 +416,4666.2,4.0,20.828571428571426,320.02213536717977,2020-12-04 +415,4652.8,4.0,20.74285714285714,321.7880425019533,2020-12-04 +414,4646.0,4.0,20.599999999999998,326.43655393013705,2020-12-04 +413,4628.7,4.0,20.4,333.3848884266066,2020-12-04 +412,4615.2,4.0,20.34285714285714,335.6470124926501,2020-12-04 +411,4597.9000000000015,4.0,19.91428571428571,339.0380106460284,2020-12-04 +410,4591.1,4.0,19.999999999999996,326.0027664150973,2020-12-04 +409,4580.8,4.0,19.999999999999996,312.9422085223596,2020-12-04 +408,4560.1,4.0,19.999999999999996,304.72298849584706,2020-12-04 +407,4553.9000000000015,4.0,19.999999999999996,308.6345708407502,2020-12-04 +406,4544.1,4.0,19.57142857142857,323.9419671656605,2020-12-04 +405,4527.2,4.0,21.71428571428571,303.94059702634513,2020-12-04 +404,4510.6,4.0,22.428571428571423,291.0520325716454,2020-12-04 +383,4264.8,4.0,20.257142857142853,372.5513343975744,2020-12-04 +382,4257.9000000000015,4.0,19.91428571428571,372.85176493733377,2020-12-04 +381,4247.0,4.0,19.999999999999996,360.9650283166115,2020-12-04 +380,4232.5,4.0,19.999999999999996,356.6237722885375,2020-12-04 +356,3928.0,4.0,18.999999999999996,381.29905973408603,2020-12-04 +355,3918.1,4.0,18.999999999999996,400.5217772538763,2020-12-04 +354,3911.7,4.0,19.085714285714282,410.90227638496935,2020-12-04 +353,3908.0,4.0,18.74285714285714,417.69542751895176,2020-12-04 +352,3893.7,4.0,18.257142857142853,413.02407863228916,2020-12-04 +351,3886.1,4.0,18.0,383.1822379303249,2020-12-04 +350,3875.4,4.0,19.199999999999996,312.3018733877599,2020-12-04 +302,3752.1,4.0,22.371428571428567,312.3018733877599,2020-12-04 +301,3747.9,4.0,22.371428571428567,312.3018733877599,2020-12-04 +296,3708.2,4.0,19.54285714285714,312.3018733877599,2020-12-04 +295,3691.9,4.0,18.0,312.3018733877599,2020-12-04 +294,3688.1,4.0,18.0,291.74287898013677,2020-12-04 +293,3678.5,4.0,18.0,286.17310591775833,2020-12-04 +292,3675.2,4.0,18.0,291.2457523901771,2020-12-04 +291,3663.1,4.0,18.0,302.4925452055602,2020-12-04 +290,3647.1,4.0,18.0,312.44165237759205,2020-12-04 +289,3643.8,4.0,18.0,323.6973284376209,2020-12-04 +358,3956.5,4.0,19.257142857142853,370.97875072976103,2020-12-04 +287,3615.0,4.0,18.0,350.1034762844978,2020-12-04 +359,3974.6,4.0,19.74285714285714,380.65731581663744,2020-12-04 +361,4002.8,4.0,21.628571428571426,368.1378186061841,2020-12-04 +379,4219.3,4.0,19.999999999999996,359.3945473170706,2020-12-04 +377,4205.1,4.0,20.085714285714282,351.928288331998,2020-12-04 +376,4190.9000000000015,4.0,19.74285714285714,353.8287150626532,2020-12-04 +375,4177.4000000000015,4.0,19.17142857142857,369.93316294037413,2020-12-04 +374,4163.4000000000015,4.0,19.17142857142857,373.6564385045802,2020-12-04 +373,4146.5,4.0,19.74285714285714,364.91999120262307,2020-12-04 +372,4128.0,4.0,20.085714285714282,359.10115955927324,2020-12-04 +371,4111.5,4.0,19.999999999999996,368.81316827414014,2020-12-04 +370,4097.2,4.0,19.999999999999996,372.1731369837703,2020-12-04 +369,4093.6,4.0,19.999999999999996,369.7050842073526,2020-12-04 +368,4075.6,4.0,19.999999999999996,362.6681982608913,2020-12-04 +367,4068.9,4.0,19.91428571428571,363.00159658579764,2020-12-04 +366,4058.6,4.0,20.257142857142853,355.09026933078746,2020-12-04 +365,4054.8,4.0,20.74285714285714,339.7065609059915,2020-12-04 +364,4040.4,4.0,20.74285714285714,333.43338412711125,2020-12-04 +363,4023.4,4.0,22.457142857142856,319.55997827699036,2020-12-04 +362,4006.5,4.0,22.685714285714283,337.27642651395075,2020-12-04 +360,3989.0,4.0,19.657142857142855,394.9003496921905,2020-12-04 +378,4215.8,4.0,19.999999999999996,358.70815285252894,2020-12-04 +117,1405.6,4.0,19.085714285714282,360.87699888712666,2020-12-04 +204,2528.3,4.0,20.114285714285714,323.530895288377,2020-12-04 +91,1007.7,4.0,19.34285714285714,341.0919549816925,2020-12-04 +90,1000.5,4.0,18.71428571428571,343.1794207320721,2020-12-04 +89,990.9,4.0,16.57142857142857,364.5575527496486,2020-12-04 +88,973.8,4.0,16.999999999999996,340.73698949155596,2020-12-04 +87,970.5,4.0,16.999999999999996,344.71782900571725,2020-12-04 +86,957.2,4.0,16.999999999999996,349.6659036857948,2020-12-04 +85,938.5,4.0,17.085714285714282,335.95586374057837,2020-12-04 +92,1021.0,4.0,18.971428571428568,340.94828026586896,2020-12-04 +84,920.9,4.0,16.74285714285714,308.94552830366865,2020-12-04 +82,886.8000000000002,4.0,15.399999999999999,279.7286042587466,2020-12-04 +77,810.6,4.0,15.399999999999999,314.7609406201344,2020-12-04 +76,795.7,4.0,16.428571428571427,330.1506639767476,2020-12-04 +75,777.0,4.0,16.74285714285714,341.7296590356216,2020-12-04 +74,761.0,4.0,17.085714285714282,328.7822969915138,2020-12-04 +73,744.2,4.0,16.999999999999996,317.27114052429187,2020-12-04 +72,725.3000000000002,4.0,17.085714285714282,319.1079096903841,2020-12-04 +83,905.3,4.0,16.428571428571427,282.5166703557199,2020-12-04 +93,1037.3,4.0,17.31428571428571,360.43355943133804,2020-12-04 +94,1054.2,4.0,18.17142857142857,335.4755451459533,2020-12-04 +95,1070.4,4.0,17.74285714285714,334.13757020762534,2020-12-04 +112,1334.5,4.0,18.4,367.2591471027766,2020-12-04 +111,1317.3000000000004,4.0,18.599999999999998,375.0068141120877,2020-12-04 +110,1303.3000000000004,4.0,18.657142857142855,377.07046552263625,2020-12-04 +109,1286.1,4.0,19.17142857142857,377.71850724632304,2020-12-04 +108,1265.2,4.0,18.74285714285714,399.62142256920805,2020-12-04 +107,1247.5,4.0,18.257142857142853,404.1252636125241,2020-12-04 +106,1233.2,4.0,17.91428571428571,392.93556783558165,2020-12-04 +105,1229.6,4.0,18.0,364.56073603078323,2020-12-04 +104,1215.8,4.0,18.0,341.53919819243856,2020-12-04 +103,1201.6,4.0,18.0,337.89568386019914,2020-12-04 +102,1179.0,4.0,18.0,359.4067266097683,2020-12-04 +101,1165.9,4.0,18.085714285714282,364.49906047753615,2020-12-04 +100,1148.5,4.0,17.74285714285714,348.7231660683209,2020-12-04 +99,1134.5,4.0,17.257142857142853,329.00440644665224,2020-12-04 +98,1118.8,4.0,16.91428571428571,327.2604513235557,2020-12-04 +97,1102.1,4.0,16.91428571428571,329.74044352260637,2020-12-04 +96,1089.5,4.0,17.257142857142853,332.2278287706848,2020-12-04 +71,706.8000000000002,4.0,16.74285714285714,334.57737110978394,2020-12-04 +70,690.5,4.0,16.257142857142853,336.0316410107999,2020-12-04 +69,671.1,4.0,15.828571428571426,327.1752052855089,2020-12-04 +68,652.2,4.0,16.257142857142853,317.2204354091469,2020-12-04 +46,366.4,4.0,15.999999999999996,413.3083393877747,2020-12-04 +45,345.7000000000001,4.0,15.999999999999996,369.69210111721213,2020-12-04 +44,325.2000000000001,4.0,16.085714285714282,331.28010743726634,2020-12-04 +43,319.3,4.0,15.74285714285714,324.00751331072104,2020-12-04 +42,316.2000000000001,4.0,15.257142857142853,329.82786153721855,2020-12-04 +36,243.0,4.0,15.171428571428567,384.680984415209,2020-12-04 +35,223.6,4.0,15.914285714285711,380.762176347372,2020-12-04 +34,204.0,4.0,16.91428571428571,381.14296605243453,2020-12-04 +33,187.9,4.0,18.34285714285714,350.058319950842,2020-12-04 +32,173.8,4.0,19.485714285714284,291.57639819466385,2020-12-04 +31,167.10000000000005,4.0,20.34285714285714,241.20356215832285,2020-12-04 +30,163.5,4.0,21.0,214.53092198897758,2020-12-04 +29,153.3,4.0,21.657142857142855,197.3150795429016,2020-12-04 +28,144.20000000000005,4.0,22.599999999999994,184.02846827347227,2020-12-04 +27,127.6,4.0,23.228571428571424,180.90889322535992,2020-12-04 +26,109.6,4.0,24.51428571428571,165.79419349778158,2020-12-04 +25,95.4,4.0,27.51428571428571,136.00103398323995,2020-12-04 +47,373.4,4.0,15.999999999999996,438.1838004594012,2020-12-04 +113,1350.5,4.0,18.257142857142853,348.4054037562048,2020-12-04 +48,380.2000000000001,4.0,15.999999999999996,443.07556177818697,2020-12-04 +50,400.2000000000001,4.0,15.999999999999996,404.73325907342786,2020-12-04 +67,637.0,4.0,16.74285714285714,320.39523217479774,2020-12-04 +66,618.1,4.0,17.085714285714282,316.8071555333787,2020-12-04 +65,598.6,4.0,16.999999999999996,312.42549686727506,2020-12-04 +64,592.4,4.0,16.999999999999996,310.94081707705266,2020-12-04 +63,579.9,4.0,16.999999999999996,315.697499351435,2020-12-04 +62,561.0,4.0,16.999999999999996,318.1958286672059,2020-12-04 +61,551.3000000000002,4.0,17.085714285714282,313.50809306466647,2020-12-04 +60,545.1,4.0,16.4,321.4398989299131,2020-12-04 +59,529.1,4.0,17.628571428571426,299.7728963722607,2020-12-04 +58,513.4,4.0,17.857142857142854,300.7351306533132,2020-12-04 +57,501.3,4.0,17.37142857142857,309.76519874345126,2020-12-04 +56,494.8,4.0,15.657142857142855,335.8338984459947,2020-12-04 +55,478.9,4.0,15.999999999999996,328.5860528386246,2020-12-04 +54,463.2000000000001,4.0,15.999999999999996,331.62791767944213,2020-12-04 +53,447.6,4.0,15.999999999999996,331.7035385694122,2020-12-04 +52,428.4,4.0,15.999999999999996,339.57594872413574,2020-12-04 +51,412.5,4.0,15.999999999999996,366.1326044982946,2020-12-04 +49,383.7000000000001,4.0,15.999999999999996,431.9379334287535,2020-12-04 +114,1370.7,4.0,18.171428571428567,346.82441532364015,2020-12-04 +115,1388.6,4.0,18.74285714285714,359.9216917213532,2020-12-04 +116,1402.1,4.0,19.085714285714282,369.64170719699644,2020-12-04 +182,2237.7000000000007,4.0,18.0,377.678266784565,2020-12-04 +181,2227.6,4.0,18.0,368.53779567966194,2020-12-04 +180,2210.5,4.0,18.0,343.7934247316073,2020-12-04 +179,2193.3,4.0,18.0,320.61591394562265,2020-12-04 +178,2190.0,4.0,18.0,311.61077186259655,2020-12-04 +177,2177.0,4.0,18.0,309.33248434059595,2020-12-04 +176,2173.6,4.0,18.0,318.3509038066095,2020-12-04 +175,2163.9,4.0,18.0,338.13594008249703,2020-12-04 +174,2148.5,4.0,18.0,360.9824510976634,2020-12-04 +173,2131.3,4.0,18.0,361.555160362075,2020-12-04 +172,2114.1,4.0,18.0,360.77643913421196,2020-12-04 +171,2097.5,4.0,18.0,367.9299296567253,2020-12-04 +170,2080.8,4.0,18.0,385.1511555847915,2020-12-04 +169,2073.4,4.0,18.0,396.4028244128914,2020-12-04 +168,2063.3,4.0,18.0,410.45710697853417,2020-12-04 +167,2046.6,4.0,18.0,417.32716315100333,2020-12-04 +166,2038.9,4.0,17.657142857142855,408.29885327606814,2020-12-04 +183,2247.9,4.0,18.0,382.7649408539269,2020-12-04 +165,2024.7,4.0,19.371428571428567,351.18774735289696,2020-12-04 +184,2262.2000000000007,4.0,18.0,397.3692494362215,2020-12-04 +186,2301.2000000000007,4.0,18.257142857142853,413.5237178962303,2020-12-04 +203,2518.7000000000007,4.0,21.028571428571425,313.96858510783227,2020-12-04 +202,2502.2000000000007,4.0,20.37142857142857,340.6973256165305,2020-12-04 +201,2484.4,4.0,18.657142857142855,393.05372804572926,2020-12-04 +200,2464.8,4.0,18.999999999999996,402.16228483681823,2020-12-04 +199,2449.7000000000007,4.0,18.999999999999996,389.6304039868631,2020-12-04 +198,2446.1,4.0,18.999999999999996,365.95201739518575,2020-12-04 +197,2442.1,4.0,18.999999999999996,346.9242015211939,2020-12-04 +196,2427.9,4.0,18.999999999999996,340.04088077693274,2020-12-04 +195,2421.5,4.0,18.999999999999996,343.5713190155624,2020-12-04 +194,2411.3,4.0,18.999999999999996,357.8406296311648,2020-12-04 +193,2394.3,4.0,18.999999999999996,370.3710372678288,2020-12-04 +192,2380.9,4.0,19.085714285714282,366.0768250125749,2020-12-04 +191,2366.5,4.0,18.657142857142855,361.6522653283803,2020-12-04 +190,2352.5,4.0,18.514285714285712,353.7754533704468,2020-12-04 +189,2335.6,4.0,18.657142857142855,355.2330268794914,2020-12-04 +188,2331.9,4.0,19.17142857142857,356.34230697110434,2020-12-04 +187,2318.8,4.0,18.74285714285714,387.6808987836132,2020-12-04 +185,2283.9,4.0,17.91428571428571,420.9798205886711,2020-12-04 +205,2535.5,4.0,17.91428571428571,357.879093697178,2020-12-04 +164,2007.3,4.0,19.942857142857143,315.4720478847769,2020-12-04 +162,1990.1,4.0,17.657142857142855,361.3302402713131,2020-12-04 +140,1673.1,4.0,16.999999999999996,339.8526345521442,2020-12-04 +139,1659.8000000000004,4.0,16.999999999999996,330.95633081153676,2020-12-04 +138,1646.4,4.0,16.999999999999996,327.23946849168647,2020-12-04 +137,1631.3000000000004,4.0,16.999999999999996,315.8945295654951,2020-12-04 +136,1611.3000000000004,4.0,18.457142857142856,349.76327310607564,2020-12-04 +128,1505.2,4.0,19.199999999999996,349.76327310607564,2020-12-04 +127,1501.7,4.0,18.085714285714282,349.76327310607564,2020-12-04 +126,1495.4,4.0,18.0,353.1537251511969,2020-12-04 +125,1491.9,4.0,18.0,358.3824758127191,2020-12-04 +124,1488.8000000000004,4.0,18.0,359.1442653126259,2020-12-04 +123,1472.0,4.0,18.0,346.76690343787646,2020-12-04 +122,1455.0,4.0,18.0,332.13201298153314,2020-12-04 +121,1448.1,4.0,18.0,324.53228815308114,2020-12-04 +120,1444.9,4.0,17.91428571428571,329.5035657122967,2020-12-04 +119,1438.6,4.0,18.257142857142853,334.04075798583153,2020-12-04 +118,1425.3000000000004,4.0,18.74285714285714,342.6683085757121,2020-12-04 +420,4730.7,4.0,19.999999999999996,326.08137732865384,2020-12-04 +141,1676.7,4.0,16.91428571428571,366.16141058428786,2020-12-04 +163,2000.4,4.0,19.371428571428567,320.13594180069447,2020-12-04 +142,1694.0,4.0,17.34285714285714,373.88282480020155,2020-12-04 +144,1727.1,4.0,17.34285714285714,367.68623039156404,2020-12-04 +161,1974.1,4.0,18.0,377.71070764740114,2020-12-04 +160,1956.9,4.0,18.0,385.2498358257645,2020-12-04 +159,1939.7,4.0,18.085714285714282,372.8725048764694,2020-12-04 +158,1932.7,4.0,17.74285714285714,362.8820481389068,2020-12-04 +157,1922.6,4.0,17.257142857142853,360.84175988286773,2020-12-04 +156,1902.0,4.0,16.91428571428571,372.445738139837,2020-12-04 +155,1888.8,4.0,16.91428571428571,387.7270842570582,2020-12-04 +154,1872.8,4.0,17.257142857142853,391.1157785684984,2020-12-04 +153,1848.6,4.0,17.74285714285714,370.11468510025475,2020-12-04 +152,1831.1,4.0,18.085714285714282,346.1777401063322,2020-12-04 +151,1814.7,4.0,18.0,341.3284162549905,2020-12-04 +150,1798.1,4.0,18.0,340.74990906758217,2020-12-04 +149,1794.7,4.0,18.0,345.49538133309545,2020-12-04 +148,1774.5,4.0,18.085714285714282,354.15660884184103,2020-12-04 +147,1758.4,4.0,17.74285714285714,373.13586580672813,2020-12-04 +146,1744.8000000000004,4.0,17.257142857142853,377.23343085624475,2020-12-04 +145,1737.7,4.0,16.828571428571426,377.7302150438022,2020-12-04 +143,1707.7,4.0,17.48571428571428,374.7439511777198,2020-12-04 +421,4747.9000000000015,4.0,19.999999999999996,320.6926157605597,2020-12-04 +504,5882.200000000002,4.0,18.257142857142853,276.7529060504756,2020-12-04 +423,4786.1,4.0,20.257142857142853,342.8412265824497,2020-12-04 +656,7697.700000000002,4.0,19.257142857142853,243.04165228875422,2020-12-04 +655,7682.4000000000015,4.0,19.74285714285714,240.09426485450035,2020-12-04 +654,7668.0,4.0,20.171428571428567,238.44024348800127,2020-12-04 +653,7652.1,4.0,19.74285714285714,245.81233782292756,2020-12-04 +652,7646.1,4.0,19.257142857142853,258.53450624539215,2020-12-04 +651,7640.3,4.0,18.828571428571426,278.40199966385904,2020-12-04 +650,7627.9000000000015,4.0,19.257142857142853,290.09854765871665,2020-12-04 +657,7700.8,4.0,18.91428571428571,249.06159458033866,2020-12-04 +649,7612.700000000002,4.0,19.74285714285714,300.5485086617243,2020-12-04 +647,7580.3,4.0,19.999999999999996,316.40940444119155,2020-12-04 +646,7563.200000000002,4.0,19.999999999999996,315.365573738875,2020-12-04 +645,7546.4000000000015,4.0,19.57142857142857,312.83168986408054,2020-12-04 +644,7526.200000000002,4.0,21.71428571428571,280.23588049096924,2020-12-04 +643,7510.200000000002,4.0,22.428571428571423,270.34443893778086,2020-12-04 +642,7500.3,4.0,21.71428571428571,280.4727853480758,2020-12-04 +641,7493.3,4.0,19.57142857142857,305.42089430040437,2020-12-04 +648,7592.700000000002,4.0,20.085714285714282,308.01509990136867,2020-12-04 +658,7713.9000000000015,4.0,18.999999999999996,257.6917385057312,2020-12-04 +659,7728.5,4.0,18.999999999999996,261.2869579391524,2020-12-04 +660,7744.700000000002,4.0,18.999999999999996,257.7439719713333,2020-12-04 +748,8244.1,4.0,16.257142857142853,264.1504383651038,2020-12-04 +747,8238.2,4.0,18.199999999999996,312.16356621641756,2020-12-04 +675,7937.700000000002,4.0,20.885714285714283,312.16356621641756,2020-12-04 +674,7922.0,4.0,19.74285714285714,312.16356621641756,2020-12-04 +673,7905.200000000002,4.0,20.085714285714282,291.0876057130199,2020-12-04 +672,7898.9000000000015,4.0,20.085714285714282,286.303340546889,2020-12-04 +671,7889.1,4.0,19.74285714285714,285.08652527799444,2020-12-04 +670,7875.8,4.0,19.257142857142853,285.34446588389386,2020-12-04 +669,7860.0,4.0,18.91428571428571,285.1927690423346,2020-12-04 +668,7844.200000000002,4.0,18.999999999999996,281.1170965593624,2020-12-04 +667,7822.0,4.0,18.999999999999996,276.63107679452634,2020-12-04 +666,7806.200000000002,4.0,18.999999999999996,271.99271322878553,2020-12-04 +665,7799.9000000000015,4.0,18.999999999999996,269.4294210987208,2020-12-04 +664,7793.700000000002,4.0,18.999999999999996,267.413071436118,2020-12-04 +663,7790.1,4.0,18.999999999999996,259.42384739169006,2020-12-04 +662,7774.700000000002,4.0,18.999999999999996,251.90916683657116,2020-12-04 +661,7759.1,4.0,18.999999999999996,249.92552520467294,2020-12-04 +640,7483.3,4.0,19.999999999999996,298.3858076467412,2020-12-04 +639,7480.5,4.0,19.999999999999996,292.9921034187589,2020-12-04 +638,7463.8,4.0,19.999999999999996,282.9493571114409,2020-12-04 +637,7447.5,4.0,19.999999999999996,273.88275608153964,2020-12-04 +615,7151.700000000002,4.0,18.999999999999996,272.5893588627466,2020-12-04 +614,7135.700000000002,4.0,18.999999999999996,262.75139467189246,2020-12-04 +613,7120.0,4.0,18.999999999999996,260.7462443883636,2020-12-04 +612,7104.8,4.0,18.999999999999996,270.3370041091133,2020-12-04 +611,7086.3,4.0,18.999999999999996,270.7149320704208,2020-12-04 +610,7070.5,4.0,18.999999999999996,250.58299884161977,2020-12-04 +609,7054.5,4.0,18.999999999999996,226.2132483320696,2020-12-04 +608,7036.4000000000015,4.0,18.999999999999996,215.88388522566422,2020-12-04 +607,7034.0,4.0,18.999999999999996,222.78162947121294,2020-12-04 +606,7022.700000000002,4.0,18.999999999999996,231.89002669182622,2020-12-04 +605,7008.0,4.0,19.085714285714282,229.71472307799925,2020-12-04 +604,7002.0,4.0,18.657142857142855,224.59859197877756,2020-12-04 +603,6989.9000000000015,4.0,18.685714285714283,217.90673387793265,2020-12-04 +602,6975.5,4.0,18.14285714285714,225.90938083707383,2020-12-04 +601,6958.4000000000015,4.0,17.599999999999998,231.29768960508954,2020-12-04 +600,6955.5,4.0,16.828571428571426,232.49849249682816,2020-12-04 +599,6940.700000000002,4.0,16.91428571428571,225.313530796902,2020-12-04 +616,7170.200000000002,4.0,18.999999999999996,270.21778813875494,2020-12-04 +749,8246.5,4.0,15.914285714285711,267.56262178531176,2020-12-04 +617,7191.200000000002,4.0,18.999999999999996,261.39536891460807,2020-12-04 +619,7220.200000000002,4.0,18.999999999999996,282.00776163923024,2020-12-04 +636,7434.5,4.0,19.999999999999996,275.4690459175117,2020-12-04 +635,7418.9000000000015,4.0,19.999999999999996,284.33871966016665,2020-12-04 +634,7415.5,4.0,20.085714285714282,281.34272866850006,2020-12-04 +633,7403.0,4.0,19.74285714285714,265.69396526589935,2020-12-04 +632,7386.5,4.0,19.257142857142853,249.95576295207007,2020-12-04 +631,7371.200000000002,4.0,18.828571428571426,252.18734140372754,2020-12-04 +630,7356.0,4.0,19.34285714285714,258.4636015096123,2020-12-04 +629,7341.0,4.0,19.4,275.64981025619363,2020-12-04 +628,7325.4000000000015,4.0,19.685714285714283,282.7763517745012,2020-12-04 +627,7309.200000000002,4.0,19.31428571428571,285.1700723468427,2020-12-04 +626,7293.3,4.0,19.599999999999994,270.59861916591865,2020-12-04 +625,7279.9000000000015,4.0,19.74285714285714,263.5871000374368,2020-12-04 +624,7274.4000000000015,4.0,19.828571428571426,264.9238810327166,2020-12-04 +623,7267.6,4.0,19.257142857142853,276.22000914436234,2020-12-04 +622,7264.9000000000015,4.0,18.91428571428571,285.1626836648482,2020-12-04 +621,7252.3,4.0,18.999999999999996,290.92070199471044,2020-12-04 +620,7236.4000000000015,4.0,18.999999999999996,292.3986513860941,2020-12-04 +618,7207.4000000000015,4.0,18.999999999999996,265.39892010642143,2020-12-04 +598,6929.4000000000015,4.0,17.257142857142853,224.78861953304005,2020-12-04 +750,8251.9,4.0,15.999999999999996,253.1232369438953,2020-12-04 +752,8271.5,4.0,15.999999999999996,219.0984544233909,2020-12-04 +820,9058.3,4.0,18.0,195.56387938824915,2020-12-04 +819,9052.2,4.0,18.0,189.85510529909448,2020-12-04 +818,9044.0,4.0,17.657142857142855,193.2152069636283,2020-12-04 +817,9027.3,4.0,19.028571428571425,190.09606034790397,2020-12-04 +816,9016.8,4.0,21.31428571428571,186.26727128958382,2020-12-04 +815,9011.4,4.0,21.31428571428571,202.88976995873932,2020-12-04 +814,9002.6,4.0,19.028571428571425,236.1650173356522,2020-12-04 +821,9073.8,4.0,18.0,191.0240556759082,2020-12-04 +813,8999.7,4.0,17.657142857142855,254.1924529683787,2020-12-04 +811,8985.300000000001,4.0,18.0,264.24772724575314,2020-12-04 +810,8973.6,4.0,18.0,244.51181650376384,2020-12-04 +809,8957.6,4.0,18.0,200.34457165511049,2020-12-04 +808,8940.300000000001,4.0,18.0,165.23403575650661,2020-12-04 +807,8937.300000000001,4.0,18.0,155.09701655938042,2020-12-04 +806,8927.0,4.0,18.085714285714282,159.33652154482024,2020-12-04 +805,8924.800000000001,4.0,17.657142857142855,168.7232814552196,2020-12-04 +812,8987.9,4.0,18.0,259.3587339421359,2020-12-04 +822,9088.0,4.0,18.0,186.92143834685245,2020-12-04 +823,9098.9,4.0,18.0,189.70010866242745,2020-12-04 +824,9102.1,4.0,18.0,202.41125883677347,2020-12-04 +841,9307.2,4.0,19.285714285714285,240.47067305982068,2020-12-04 +840,9292.8,4.0,17.257142857142853,240.47067305982068,2020-12-04 +839,9275.7,4.0,16.91428571428571,240.85144483066483,2020-12-04 +838,9272.6,4.0,16.999999999999996,236.40362692560564,2020-12-04 +837,9261.4,4.0,16.999999999999996,232.4657300017654,2020-12-04 +836,9246.9,4.0,16.999999999999996,223.3436487761659,2020-12-04 +835,9232.1,4.0,16.91428571428571,219.55187840420155,2020-12-04 +834,9218.7,4.0,17.257142857142853,220.54526686317774,2020-12-04 +833,9204.4,4.0,17.74285714285714,223.2863130738586,2020-12-04 +832,9190.6,4.0,18.085714285714282,229.94551227742807,2020-12-04 +831,9181.8,4.0,18.0,237.77219057789432,2020-12-04 +830,9175.8,4.0,18.0,230.6859077563695,2020-12-04 +829,9161.7,4.0,18.0,215.24979911038875,2020-12-04 +828,9146.4,4.0,18.0,204.20348160014518,2020-12-04 +827,9133.3,4.0,18.0,211.24277627172825,2020-12-04 +826,9116.5,4.0,18.0,218.3455359044186,2020-12-04 +825,9107.9,4.0,18.0,215.6955555312449,2020-12-04 +804,8914.6,4.0,17.514285714285712,174.2307430582669,2020-12-04 +803,8899.0,4.0,17.57142857142857,180.02904030483393,2020-12-04 +802,8883.0,4.0,18.34285714285714,185.6606765953363,2020-12-04 +801,8877.9,4.0,18.657142857142855,201.01460127889735,2020-12-04 +769,8516.9,4.0,15.085714285714282,260.64625058695856,2020-12-04 +768,8510.1,4.0,21.971428571428568,260.64625058695856,2020-12-04 +767,8500.6,4.0,19.799999999999997,260.64625058695856,2020-12-04 +766,8494.4,4.0,17.31428571428571,295.83006804477577,2020-12-04 +765,8485.2,4.0,17.257142857142853,303.93776719695836,2020-12-04 +764,8466.6,4.0,16.828571428571426,303.4710385565101,2020-12-04 +763,8450.6,4.0,17.257142857142853,289.6338280674944,2020-12-04 +762,8435.0,4.0,17.828571428571426,292.7223617750504,2020-12-04 +761,8420.1,4.0,17.828571428571426,328.9943113440521,2020-12-04 +760,8400.7,4.0,17.257142857142853,362.2600324353899,2020-12-04 +759,8387.9,4.0,16.91428571428571,364.4073678675485,2020-12-04 +758,8367.2,4.0,16.828571428571426,362.97060828879506,2020-12-04 +757,8351.0,4.0,17.599999999999998,372.85402552522544,2020-12-04 +756,8331.800000000001,4.0,18.4,365.3641467720203,2020-12-04 +755,8310.300000000001,4.0,17.91428571428571,321.3431556945984,2020-12-04 +754,8289.800000000001,4.0,16.428571428571423,269.69224114804155,2020-12-04 +753,8277.1,4.0,15.828571428571426,229.1174759011191,2020-12-04 +779,8654.800000000001,4.0,16.199999999999996,260.64625058695856,2020-12-04 +751,8259.7,4.0,15.999999999999996,233.04218407439635,2020-12-04 +781,8672.300000000001,4.0,15.399999999999999,258.7725895469949,2020-12-04 +783,8714.4,4.0,32.48571428571428,388.2597264174793,2020-12-04 +800,8870.4,4.0,19.34285714285714,212.9099098504387,2020-12-04 +799,8855.9,4.0,19.74285714285714,219.4916811616046,2020-12-04 +798,8850.2,4.0,20.085714285714282,217.31430947185228,2020-12-04 +797,8841.4,4.0,19.999999999999996,215.99994864623926,2020-12-04 +796,8838.2,4.0,20.257142857142853,214.59503392863516,2020-12-04 +795,8826.6,4.0,19.228571428571428,238.506543030264,2020-12-04 +794,8811.7,4.0,17.599999999999994,264.25788315981333,2020-12-04 +793,8809.1,4.0,17.0,288.2413004480162,2020-12-04 +792,8793.4,4.0,18.314285714285713,329.6762414845342,2020-12-04 +791,8775.0,4.0,24.228571428571424,366.7834640327542,2020-12-04 +790,8768.6,4.0,30.428571428571423,396.48767043975636,2020-12-04 +789,8762.6,4.0,33.942857142857136,429.0993939051281,2020-12-04 +788,8759.1,4.0,32.99999999999999,489.75883331724884,2020-12-04 +787,8755.4,4.0,32.65714285714285,535.4053273482641,2020-12-04 +786,8752.0,4.0,34.028571428571425,553.8306817322883,2020-12-04 +785,8747.6,4.0,36.05714285714285,545.9977307100473,2020-12-04 +784,8738.5,4.0,38.45714285714285,467.1491776855679,2020-12-04 +782,8689.7,4.0,23.085714285714282,307.0668280478711,2020-12-04 +422,4765.0,4.0,19.91428571428571,333.2766436319671,2020-12-04 +597,6915.5,4.0,17.74285714285714,226.46691715275472,2020-12-04 +594,6890.1,4.0,18.0,245.25773081392347,2020-12-04 +481,5558.4000000000015,4.0,18.999999999999996,305.7350142582549,2020-12-04 +480,5541.8,4.0,18.57142857142857,317.55416722356415,2020-12-04 +479,5526.4000000000015,4.0,20.71428571428571,296.59369588494496,2020-12-04 +478,5506.0,4.0,21.428571428571423,282.5233213092529,2020-12-04 +477,5502.6,4.0,20.71428571428571,283.72898896469485,2020-12-04 +476,5489.3,4.0,18.57142857142857,305.5000993403635,2020-12-04 +475,5473.200000000002,4.0,18.999999999999996,298.23800717172446,2020-12-04 +482,5575.0,4.0,18.999999999999996,308.1532516656587,2020-12-04 +474,5469.8,4.0,18.999999999999996,299.50826087173044,2020-12-04 +472,5450.3,4.0,18.999999999999996,300.3441929534135,2020-12-04 +471,5440.6,4.0,18.999999999999996,306.41493896028476,2020-12-04 +470,5424.6,4.0,18.999999999999996,325.35682234573676,2020-12-04 +469,5408.0,4.0,18.999999999999996,332.63609358474463,2020-12-04 +468,5388.3,4.0,18.999999999999996,311.22352148761536,2020-12-04 +467,5367.6,4.0,18.999999999999996,281.1627930674539,2020-12-04 +466,5351.6,4.0,18.999999999999996,282.4065534993734,2020-12-04 +473,5456.8,4.0,18.999999999999996,301.2132020229317,2020-12-04 +483,5591.1,4.0,18.999999999999996,313.52057274697273,2020-12-04 +484,5593.700000000002,4.0,18.999999999999996,307.79126286563564,2020-12-04 +485,5597.3,4.0,18.999999999999996,299.0328453552696,2020-12-04 +502,5854.4000000000015,4.0,18.828571428571426,287.69535116849386,2020-12-04 +501,5835.4000000000015,4.0,18.257142857142853,310.5586207182044,2020-12-04 +500,5820.0,4.0,17.91428571428571,334.0658194821715,2020-12-04 +499,5803.0,4.0,17.91428571428571,342.4468845606335,2020-12-04 +498,5787.3,4.0,18.257142857142853,333.7210779075187,2020-12-04 +497,5769.700000000002,4.0,18.74285714285714,314.25077075232616,2020-12-04 +496,5756.8,4.0,19.085714285714282,306.6864246998502,2020-12-04 +495,5750.6,4.0,18.999999999999996,312.901267854699,2020-12-04 +494,5740.9000000000015,4.0,18.999999999999996,313.64854235176733,2020-12-04 +493,5721.3,4.0,18.999999999999996,301.8350087330618,2020-12-04 +492,5707.5,4.0,18.999999999999996,293.08269857998255,2020-12-04 +491,5701.200000000002,4.0,18.999999999999996,298.0322200364184,2020-12-04 +490,5685.1,4.0,18.999999999999996,308.70207124526667,2020-12-04 +489,5665.700000000002,4.0,18.999999999999996,312.90545475753106,2020-12-04 +488,5645.9000000000015,4.0,18.999999999999996,306.2380837759637,2020-12-04 +487,5629.9000000000015,4.0,18.999999999999996,298.1893645135265,2020-12-04 +486,5609.9000000000015,4.0,18.999999999999996,293.8040408354045,2020-12-04 +465,5333.5,4.0,18.999999999999996,312.82296463312395,2020-12-04 +464,5313.700000000002,4.0,18.999999999999996,341.1489732491402,2020-12-04 +463,5294.0,4.0,18.999999999999996,348.97302503615435,2020-12-04 +462,5277.1,4.0,18.999999999999996,342.4223915486734,2020-12-04 +440,4975.700000000002,4.0,19.999999999999996,310.5078310954499,2020-12-04 +439,4961.8,4.0,19.999999999999996,305.2247712663053,2020-12-04 +438,4958.200000000002,4.0,19.999999999999996,302.51993691659834,2020-12-04 +437,4948.3,4.0,19.999999999999996,298.9484378896066,2020-12-04 +436,4932.3,4.0,19.999999999999996,289.66032533677827,2020-12-04 +435,4928.9000000000015,4.0,19.999999999999996,279.32857263959454,2020-12-04 +434,4918.700000000002,4.0,19.999999999999996,275.8547584889646,2020-12-04 +433,4902.8,4.0,19.999999999999996,281.46643359437024,2020-12-04 +432,4893.5,4.0,19.999999999999996,293.81274182764986,2020-12-04 +431,4887.3,4.0,19.999999999999996,308.9881183021397,2020-12-04 +430,4867.6,4.0,19.999999999999996,324.2714708197401,2020-12-04 +429,4850.5,4.0,19.999999999999996,335.9762914501813,2020-12-04 +428,4844.1,4.0,19.91428571428571,344.1742864159758,2020-12-04 +427,4837.8,4.0,20.257142857142853,338.00689828788956,2020-12-04 +426,4834.1,4.0,20.74285714285714,327.6163683376451,2020-12-04 +425,4819.8,4.0,21.17142857142857,323.0113546557857,2020-12-04 +424,4803.1,4.0,20.74285714285714,337.0617235867794,2020-12-04 +441,4988.4000000000015,4.0,19.999999999999996,313.8897985522748,2020-12-04 +503,5870.1,4.0,18.828571428571426,275.6567145118199,2020-12-04 +442,5001.6,4.0,19.999999999999996,313.541669506015,2020-12-04 +444,5031.8,4.0,19.657142857142855,312.53668707368115,2020-12-04 +461,5260.4000000000015,4.0,18.999999999999996,343.9030502872882,2020-12-04 +460,5243.1,4.0,18.999999999999996,347.91279446461067,2020-12-04 +459,5220.0,4.0,18.999999999999996,343.7032943483871,2020-12-04 +458,5199.1,4.0,18.91428571428571,321.9551367961269,2020-12-04 +457,5196.3,4.0,19.257142857142853,296.6993850347403,2020-12-04 +456,5182.5,4.0,19.74285714285714,278.0055564404857,2020-12-04 +455,5178.8,4.0,20.085714285714282,273.0148547447817,2020-12-04 +454,5169.3,4.0,19.999999999999996,279.4177018150898,2020-12-04 +453,5166.700000000002,4.0,19.999999999999996,293.2252103873045,2020-12-04 +452,5150.6,4.0,19.999999999999996,311.69388278685176,2020-12-04 +451,5127.700000000002,4.0,19.999999999999996,327.797294355285,2020-12-04 +450,5117.700000000002,4.0,19.999999999999996,335.9327536205462,2020-12-04 +449,5110.700000000002,4.0,19.999999999999996,333.801902654085,2020-12-04 +448,5107.4000000000015,4.0,19.999999999999996,318.6064566732681,2020-12-04 +447,5089.9000000000015,4.0,20.085714285714282,293.0841580961343,2020-12-04 +446,5066.6,4.0,19.657142857142855,287.6418428080674,2020-12-04 +445,5051.0,4.0,19.514285714285712,299.4454034021153,2020-12-04 +443,5018.3,4.0,20.085714285714282,311.6641800914872,2020-12-04 +595,6901.0,4.0,18.0,243.2057125701378,2020-12-04 +505,5885.3,4.0,17.91428571428571,285.414319435391,2020-12-04 +507,5918.9000000000015,4.0,17.91428571428571,340.44961940114183,2020-12-04 +565,6598.4000000000015,4.0,18.0,262.10902571831184,2020-12-04 +564,6584.4000000000015,4.0,18.0,283.38537606762145,2020-12-04 +563,6568.3,4.0,18.0,291.7992776964595,2020-12-04 +562,6565.3,4.0,18.0,296.3684711949177,2020-12-04 +561,6553.1,4.0,18.0,299.2281190497596,2020-12-04 +560,6546.200000000002,4.0,18.0,301.4417198765195,2020-12-04 +559,6543.4000000000015,4.0,17.57142857142857,309.37310107876806,2020-12-04 +566,6613.200000000002,4.0,18.0,250.20028297470424,2020-12-04 +558,6534.1,4.0,19.285714285714285,287.98085600807343,2020-12-04 +556,6514.6,4.0,22.14285714285714,243.6863460090662,2020-12-04 +555,6502.1,4.0,19.285714285714285,280.4596254997073,2020-12-04 +554,6499.1,4.0,17.57142857142857,296.0348711312781,2020-12-04 +553,6482.9000000000015,4.0,18.0,279.93813145148977,2020-12-04 +552,6467.700000000002,4.0,17.91428571428571,280.01586274795784,2020-12-04 +551,6458.5,4.0,18.257142857142853,282.2054036005753,2020-12-04 +550,6451.9000000000015,4.0,18.74285714285714,279.65000662454213,2020-12-04 +557,6517.9000000000015,4.0,22.14285714285714,246.58811537251657,2020-12-04 +567,6625.200000000002,4.0,19.54285714285714,250.20028297470424,2020-12-04 +575,6695.1,4.0,19.199999999999996,250.20028297470424,2020-12-04 +576,6707.0,4.0,18.085714285714282,243.9943471788991,2020-12-04 +593,6874.700000000002,4.0,18.0,234.92868872438098,2020-12-04 +592,6869.0,4.0,18.0,226.0244673095424,2020-12-04 +591,6862.6,4.0,17.91428571428571,222.1012006157918,2020-12-04 +590,6860.0,4.0,18.257142857142853,223.80770461725268,2020-12-04 +589,6845.5,4.0,18.74285714285714,229.3151449769623,2020-12-04 +588,6836.9000000000015,4.0,19.085714285714282,243.55451137123157,2020-12-04 +587,6828.4000000000015,4.0,18.999999999999996,260.06434222328124,2020-12-04 +586,6813.6,4.0,19.085714285714282,269.1783893785472,2020-12-04 +585,6810.3,4.0,18.74285714285714,273.9654136740272,2020-12-04 +584,6794.5,4.0,18.34285714285714,272.5788254226411,2020-12-04 +583,6787.9000000000015,4.0,17.657142857142855,260.0895379328032,2020-12-04 +582,6779.0,4.0,17.17142857142857,245.30234071587677,2020-12-04 +581,6760.3,4.0,17.17142857142857,242.83474443714394,2020-12-04 +580,6743.9000000000015,4.0,17.74285714285714,261.8972645004648,2020-12-04 +579,6735.3,4.0,18.085714285714282,276.67247983068006,2020-12-04 +578,6726.4000000000015,4.0,18.0,270.3642566939784,2020-12-04 +577,6710.5,4.0,18.0,249.33654289378103,2020-12-04 +549,6446.1,4.0,19.085714285714282,276.6408489310227,2020-12-04 +548,6433.700000000002,4.0,18.999999999999996,279.63994661005785,2020-12-04 +547,6427.6,4.0,18.999999999999996,284.7641337897761,2020-12-04 +546,6414.4000000000015,4.0,18.999999999999996,289.02564896168013,2020-12-04 +524,6124.1,4.0,18.74285714285714,284.94487293849284,2020-12-04 +523,6111.5,4.0,18.257142857142853,290.74382740953615,2020-12-04 +522,6095.8,4.0,17.828571428571426,292.1976856163629,2020-12-04 +521,6079.700000000002,4.0,18.257142857142853,289.85990788701037,2020-12-04 +520,6058.3,4.0,18.74285714285714,288.0559101947126,2020-12-04 +519,6046.1,4.0,19.085714285714282,282.04709807255153,2020-12-04 +518,6029.0,4.0,19.085714285714282,272.78014420420607,2020-12-04 +517,6026.3,4.0,18.657142857142855,273.45701088638134,2020-12-04 +516,6014.1,4.0,18.514285714285712,268.02974395693207,2020-12-04 +515,6001.4000000000015,4.0,18.657142857142855,256.337915770555,2020-12-04 +514,5998.1,4.0,19.085714285714282,251.61709318999908,2020-12-04 +513,5982.9000000000015,4.0,18.999999999999996,272.20400680693604,2020-12-04 +512,5967.9000000000015,4.0,18.999999999999996,297.3559499253104,2020-12-04 +511,5958.0,4.0,18.999999999999996,310.25700343556286,2020-12-04 +510,5951.9000000000015,4.0,19.085714285714282,316.2056255733428,2020-12-04 +509,5948.4000000000015,4.0,18.74285714285714,330.34063649190034,2020-12-04 +508,5935.9000000000015,4.0,18.257142857142853,347.27216476706485,2020-12-04 +525,6127.4000000000015,4.0,19.085714285714282,278.3825790344255,2020-12-04 +506,5902.200000000002,4.0,18.0,309.9305359498633,2020-12-04 +526,6139.6,4.0,18.999999999999996,279.96121828141634,2020-12-04 +528,6179.200000000002,4.0,18.999999999999996,307.608350525985,2020-12-04 +545,6398.9000000000015,4.0,18.999999999999996,288.24122757929894,2020-12-04 +544,6379.5,4.0,18.999999999999996,282.5869664762929,2020-12-04 +543,6363.8,4.0,18.999999999999996,287.4881661595381,2020-12-04 +542,6348.1,4.0,18.999999999999996,311.309273713297,2020-12-04 +541,6332.4000000000015,4.0,18.999999999999996,336.1865302279309,2020-12-04 +540,6326.1,4.0,18.999999999999996,348.97620951034656,2020-12-04 +539,6318.9000000000015,4.0,19.085714285714282,346.5161016566012,2020-12-04 +538,6315.9000000000015,4.0,18.657142857142855,341.21331572479505,2020-12-04 +537,6298.4000000000015,4.0,18.599999999999998,319.4924764287699,2020-12-04 +536,6278.4000000000015,4.0,18.4,309.2691043352982,2020-12-04 +535,6262.5,4.0,18.34285714285714,314.6948024063425,2020-12-04 +534,6250.200000000002,4.0,17.91428571428571,325.7321374248512,2020-12-04 +533,6246.5,4.0,18.0,313.4950364878265,2020-12-04 +532,6226.700000000002,4.0,17.91428571428571,301.01484053694423,2020-12-04 +531,6223.3,4.0,18.257142857142853,295.5002314931855,2020-12-04 +530,6210.9000000000015,4.0,18.74285714285714,301.4171200703945,2020-12-04 +529,6195.0,4.0,19.085714285714282,308.95013279440116,2020-12-04 +527,6158.9000000000015,4.0,18.999999999999996,292.3308443746413,2020-12-04 +596,6909.8,4.0,18.085714285714282,233.57649207095943,2020-12-04 +899,8985.300000000001,4.0,18.90476190476192,388.72781923703195,2020-12-06 +1219,12133.5,4.0,19.166666666666682,306.3810672071724,2020-12-06 +409,4093.1000000000004,4.0,18.2857142857143,346.1326039607451,2020-12-06 +408,4083.2000000000003,4.0,17.85714285714287,356.58466079874626,2020-12-06 +407,4072.4,4.0,17.523809523809536,371.8454807774008,2020-12-06 +406,4061.0,4.0,17.2857142857143,383.5656236976745,2020-12-06 +405,4049.4,4.0,17.571428571428584,384.37744233369983,2020-12-06 +404,4037.8,4.0,17.85714285714287,373.3439338588267,2020-12-06 +403,4026.6000000000004,4.0,18.142857142857153,355.4214731376612,2020-12-06 +402,4015.4,4.0,18.428571428571438,339.6343093201372,2020-12-06 +401,4004.0,4.0,18.523809523809536,332.510624282,2020-12-06 +400,3993.3,4.0,18.761904761904773,333.93814795612616,2020-12-06 +399,3982.9,4.0,18.61904761904763,339.0953867677657,2020-12-06 +398,3972.2000000000003,4.0,18.42857142857144,341.16685913619705,2020-12-06 +397,3961.5,4.0,18.523809523809536,340.87084212980574,2020-12-06 +396,3950.8,4.0,18.90476190476192,338.6593809829948,2020-12-06 +410,4104.5,4.0,18.380952380952394,343.78036528412304,2020-12-06 +395,3939.9,4.0,18.809523809523824,339.5228073297145,2020-12-06 +393,3919.2000000000003,4.0,18.333333333333343,352.3531871281425,2020-12-06 +392,3908.2000000000003,4.0,18.047619047619058,360.8763444964211,2020-12-06 +391,3896.6000000000004,4.0,17.90476190476192,371.34592378747755,2020-12-06 +390,3885.7000000000003,4.0,17.90476190476192,379.9123195174684,2020-12-06 +389,3874.7000000000003,4.0,17.952380952380963,384.75549122342767,2020-12-06 +388,3862.5,4.0,18.47619047619049,384.465813533026,2020-12-06 +387,3851.6000000000004,4.0,18.952380952380963,379.25524939520176,2020-12-06 +386,3841.1000000000004,4.0,19.190476190476204,371.82398059422286,2020-12-06 +385,3830.7000000000003,4.0,19.428571428571445,366.68297433043585,2020-12-06 +384,3819.2000000000003,4.0,19.47619047619049,364.2055311509476,2020-12-06 +383,3808.8,4.0,19.571428571428584,365.3493934360429,2020-12-06 +382,3798.3,4.0,19.952380952380967,372.08428780925885,2020-12-06 +381,3788.5,4.0,20.09523809523811,380.08013280575074,2020-12-06 +380,3777.7000000000003,4.0,20.000000000000014,385.5124919332146,2020-12-06 +394,3930.2000000000003,4.0,18.761904761904773,344.40548433966967,2020-12-06 +411,4115.6,4.0,18.142857142857153,344.81725417129616,2020-12-06 +412,4126.6,4.0,17.90476190476192,347.2988865091496,2020-12-06 +413,4137.6,4.0,18.000000000000014,349.10605721610557,2020-12-06 +444,4462.3,4.0,20.52380952380954,368.46524202182263,2020-12-06 +443,4452.3,4.0,20.619047619047635,365.9042171954643,2020-12-06 +442,4442.400000000001,4.0,20.761904761904773,361.2394161623972,2020-12-06 +441,4432.5,4.0,20.523809523809536,356.75786603927406,2020-12-06 +440,4422.8,4.0,20.42857142857144,355.44989535169975,2020-12-06 +439,4412.0,4.0,20.04761904761906,356.4593972216686,2020-12-06 +438,4401.400000000001,4.0,19.809523809523824,356.49387416078247,2020-12-06 +437,4391.400000000001,4.0,20.142857142857157,356.3237161101567,2020-12-06 +436,4380.7,4.0,20.2857142857143,355.3057453584824,2020-12-06 +435,4370.400000000001,4.0,20.333333333333346,353.41335284083436,2020-12-06 +434,4360.6,4.0,20.2857142857143,351.8768708262962,2020-12-06 +433,4349.900000000001,4.0,20.142857142857157,347.6290193215946,2020-12-06 +432,4339.8,4.0,19.90476190476192,341.56499730898565,2020-12-06 +431,4329.2,4.0,20.000000000000014,339.0793726540677,2020-12-06 +430,4319.1,4.0,20.000000000000014,342.6231248401162,2020-12-06 +429,4308.7,4.0,20.000000000000014,345.1617269646555,2020-12-06 +428,4299.1,4.0,20.000000000000014,343.4697375440616,2020-12-06 +414,4148.900000000001,4.0,18.000000000000014,351.5099007297986,2020-12-06 +415,4160.3,4.0,18.000000000000014,355.6309246147638,2020-12-06 +416,4171.2,4.0,18.000000000000014,362.7702511404344,2020-12-06 +417,4182.7,4.0,18.000000000000014,368.62518163194625,2020-12-06 +418,4193.7,4.0,17.90476190476192,367.81856513031994,2020-12-06 +419,4204.5,4.0,18.047619047619058,358.02249120791686,2020-12-06 +379,3767.2000000000003,4.0,20.000000000000014,389.0225170040205,2020-12-06 +420,4215.7,4.0,18.333333333333343,342.85864021291025,2020-12-06 +422,4235.900000000001,4.0,18.85714285714287,320.30600288052074,2020-12-06 +423,4247.1,4.0,19.142857142857157,320.90383866794485,2020-12-06 +424,4258.0,4.0,19.333333333333346,323.232277747039,2020-12-06 +425,4268.0,4.0,19.66666666666668,324.6920888374476,2020-12-06 +426,4278.0,4.0,19.952380952380967,329.90332734203025,2020-12-06 +427,4288.6,4.0,20.09523809523811,337.45235183664306,2020-12-06 +421,4225.6,4.0,18.66666666666668,327.8024275504265,2020-12-06 +378,3756.5,4.0,20.000000000000014,388.42023865953314,2020-12-06 +377,3745.8,4.0,19.90476190476192,384.94668054564454,2020-12-06 +376,3735.0,4.0,20.142857142857157,379.9060234753821,2020-12-06 +340,3357.0,4.0,18.428571428571438,353.4547986571082,2020-12-06 +339,3346.0,4.0,18.047619047619058,355.0341686633199,2020-12-06 +338,3335.1000000000004,4.0,17.90476190476192,354.81491070436766,2020-12-06 +337,3324.0,4.0,18.000000000000014,356.5564942037506,2020-12-06 +336,3313.0,4.0,18.000000000000014,357.44835730706825,2020-12-06 +335,3301.8,4.0,17.90476190476192,354.1953611855738,2020-12-06 +334,3290.4,4.0,18.142857142857153,346.10834208032725,2020-12-06 +333,3279.2000000000003,4.0,18.2857142857143,334.02128238771957,2020-12-06 +332,3268.7000000000003,4.0,18.333333333333346,323.26381510820045,2020-12-06 +331,3258.8,4.0,18.2857142857143,320.11121405212884,2020-12-06 +330,3247.7000000000003,4.0,18.047619047619058,325.0732006984213,2020-12-06 +329,3237.0,4.0,18.047619047619058,333.3110420711798,2020-12-06 +328,3226.3,4.0,18.190476190476204,343.17614262602854,2020-12-06 +327,3215.7000000000003,4.0,18.47619047619049,350.1547782701218,2020-12-06 +326,3205.0,4.0,18.47619047619049,353.5678447783305,2020-12-06 +325,3194.1000000000004,4.0,18.619047619047635,353.91194624551935,2020-12-06 +324,3183.5,4.0,18.47619047619049,355.2554300769201,2020-12-06 +310,3030.5,4.0,19.619047619047635,348.29238413606566,2020-12-06 +311,3041.7000000000003,4.0,18.90476190476192,355.5148708634748,2020-12-06 +312,3052.6000000000004,4.0,18.333333333333343,357.4973843512746,2020-12-06 +313,3063.7000000000003,4.0,18.428571428571438,352.5581408218023,2020-12-06 +314,3075.0,4.0,18.85714285714287,343.3745510650505,2020-12-06 +315,3085.3,4.0,19.2857142857143,335.48172294313827,2020-12-06 +341,3368.2000000000003,4.0,18.523809523809536,350.5867435502799,2020-12-06 +316,3096.4,4.0,19.47619047619049,333.86144799143915,2020-12-06 +318,3117.8,4.0,18.571428571428584,344.8962751445191,2020-12-06 +319,3128.7000000000003,4.0,18.333333333333343,354.3589742498812,2020-12-06 +320,3140.0,4.0,17.952380952380963,362.16599983268736,2020-12-06 +321,3151.1000000000004,4.0,18.047619047619058,365.1082132230056,2020-12-06 +322,3161.9,4.0,18.190476190476204,363.1417729573802,2020-12-06 +323,3172.7000000000003,4.0,18.47619047619049,357.7053082860722,2020-12-06 +317,3107.4,4.0,19.09523809523811,336.86936729063353,2020-12-06 +445,4472.400000000001,4.0,20.47619047619049,372.134421381842,2020-12-06 +342,3379.3,4.0,18.66666666666668,349.6840706262415,2020-12-06 +344,3401.0,4.0,18.714285714285726,347.4874806155603,2020-12-06 +375,3724.3,4.0,20.2857142857143,370.2432641238263,2020-12-06 +374,3713.7000000000003,4.0,20.333333333333346,357.057712124662,2020-12-06 +373,3703.6000000000004,4.0,20.2857142857143,344.0667433006193,2020-12-06 +372,3693.7000000000003,4.0,20.142857142857157,334.95894431721115,2020-12-06 +371,3683.6000000000004,4.0,20.09523809523811,332.39065812202864,2020-12-06 +370,3673.3,4.0,19.71428571428573,335.8861994565694,2020-12-06 +369,3663.4,4.0,19.523809523809536,342.64065494210274,2020-12-06 +368,3653.1000000000004,4.0,19.190476190476204,354.0921826246142,2020-12-06 +367,3642.0,4.0,19.238095238095248,362.69672165201916,2020-12-06 +366,3631.7000000000003,4.0,19.23809523809525,368.8766806369175,2020-12-06 +365,3621.2000000000003,4.0,19.714285714285726,371.51126783281313,2020-12-06 +364,3610.3,4.0,19.47619047619049,370.9102581280563,2020-12-06 +363,3599.8,4.0,19.380952380952394,367.23077765538613,2020-12-06 +362,3589.3,4.0,19.333333333333346,366.2237892467221,2020-12-06 +361,3578.8,4.0,19.428571428571445,366.0103312259407,2020-12-06 +360,3568.3,4.0,19.238095238095248,369.965200007876,2020-12-06 +359,3557.8,4.0,19.190476190476204,378.7679621182082,2020-12-06 +345,3411.2000000000003,4.0,18.761904761904773,344.7517162606737,2020-12-06 +346,3421.8,4.0,19.142857142857157,341.65435693249606,2020-12-06 +347,3432.0,4.0,19.333333333333346,341.2224358759903,2020-12-06 +348,3442.6000000000004,4.0,19.66666666666668,345.14818409182146,2020-12-06 +349,3452.8,4.0,19.952380952380967,351.6953015158132,2020-12-06 +350,3463.3,4.0,20.190476190476204,354.9188390753411,2020-12-06 +343,3390.1000000000004,4.0,18.761904761904773,349.8780976587717,2020-12-06 +351,3473.7000000000003,4.0,19.857142857142872,355.27325293436695,2020-12-06 +353,3494.3,4.0,19.66666666666668,353.30239901391855,2020-12-06 +354,3505.0,4.0,19.809523809523824,357.55679023837445,2020-12-06 +355,3515.6000000000004,4.0,19.809523809523824,368.8067158656056,2020-12-06 +356,3526.3,4.0,19.761904761904773,380.73153141828493,2020-12-06 +357,3537.1000000000004,4.0,19.23809523809525,387.74890322043655,2020-12-06 +358,3547.5,4.0,19.190476190476204,386.555067416077,2020-12-06 +352,3483.9,4.0,19.71428571428573,353.2351390981901,2020-12-06 +446,4482.2,4.0,20.47619047619049,378.4464779068364,2020-12-06 +447,4492.400000000001,4.0,20.190476190476204,390.8203588389208,2020-12-06 +448,4503.400000000001,4.0,20.04761904761906,401.99923638889663,2020-12-06 +549,5584.3,4.0,17.714285714285726,337.86138277903586,2020-12-06 +548,5573.400000000001,4.0,17.761904761904773,334.7013957446452,2020-12-06 +547,5562.3,4.0,17.523809523809533,344.57760300778943,2020-12-06 +546,5551.200000000001,4.0,17.333333333333343,365.00893814496794,2020-12-06 +545,5540.400000000001,4.0,17.00000000000001,381.71095975583074,2020-12-06 +544,5529.0,4.0,17.190476190476204,386.44679544938276,2020-12-06 +543,5517.1,4.0,18.047619047619058,381.8191084642268,2020-12-06 +542,5505.400000000001,4.0,18.952380952380963,371.39895550600556,2020-12-06 +541,5495.3,4.0,19.71428571428573,362.6429038161675,2020-12-06 +540,5484.8,4.0,20.142857142857157,359.3905626328631,2020-12-06 +539,5474.200000000001,4.0,19.952380952380967,358.3638846101801,2020-12-06 +538,5463.6,4.0,19.71428571428573,357.33829018002973,2020-12-06 +537,5453.0,4.0,19.66666666666668,356.3067333728835,2020-12-06 +536,5442.5,4.0,19.71428571428573,354.02213343769296,2020-12-06 +535,5432.8,4.0,19.952380952380967,352.07694042292945,2020-12-06 +534,5422.1,4.0,19.952380952380967,350.97144975269634,2020-12-06 +533,5411.5,4.0,19.71428571428573,351.7182620898245,2020-12-06 +519,5268.1,4.0,20.380952380952394,363.53007358333866,2020-12-06 +520,5278.6,4.0,20.142857142857157,362.351373009437,2020-12-06 +521,5288.8,4.0,19.90476190476192,357.7337927771323,2020-12-06 +522,5298.6,4.0,20.000000000000014,353.1050738644343,2020-12-06 +523,5308.900000000001,4.0,20.000000000000014,352.158587051431,2020-12-06 +524,5318.8,4.0,20.000000000000014,354.6244671884394,2020-12-06 +550,5595.6,4.0,17.380952380952394,350.2614510600053,2020-12-06 +525,5329.3,4.0,19.90476190476192,358.4539360442881,2020-12-06 +527,5350.3,4.0,20.2857142857143,354.2213187469678,2020-12-06 +528,5360.0,4.0,20.333333333333346,348.0746784879376,2020-12-06 +529,5370.400000000001,4.0,20.380952380952394,346.35566910153193,2020-12-06 +530,5380.6,4.0,20.000000000000014,347.3420703385474,2020-12-06 +531,5391.0,4.0,19.619047619047635,350.39260502574007,2020-12-06 +532,5401.200000000001,4.0,19.66666666666668,352.57364255340974,2020-12-06 +526,5339.900000000001,4.0,20.142857142857157,359.18808139573605,2020-12-06 +518,5258.3,4.0,20.190476190476204,361.4439923064505,2020-12-06 +551,5607.0,4.0,17.2857142857143,363.92318845655416,2020-12-06 +553,5629.3,4.0,16.761904761904773,357.4557736252042,2020-12-06 +614,6045.200000000001,4.0,17.095238095238106,339.3472696812005,2020-12-06 +613,6034.0,4.0,17.85714285714287,323.48342631670425,2020-12-06 +612,6022.5,4.0,17.000000000000014,316.66920401301263,2020-12-06 +611,6011.400000000001,4.0,16.333333333333343,328.49138376045806,2020-12-06 +610,6001.8,4.0,15.761904761904773,361.3555616928754,2020-12-06 +609,5987.200000000001,4.0,15.952380952380963,384.9690615537247,2020-12-06 +608,5975.8,4.0,16.80952380952382,396.4700755459097,2020-12-06 +607,5964.8,4.0,18.333333333333346,368.25180706713024,2020-12-06 +606,5953.200000000001,4.0,17.333333333333346,296.4910040381728,2020-12-06 +605,5942.400000000001,4.0,18.85714285714287,196.59592795924254,2020-12-06 +604,5932.200000000001,4.0,18.047619047619058,103.07776465059982,2020-12-06 +573,5845.3,4.0,16.714285714285722,105.8789359650915,2020-12-06 +572,5810.3,4.0,16.333333333333343,214.297956020882,2020-12-06 +571,5810.3,4.0,16.47619047619049,310.2678880510062,2020-12-06 +570,5810.3,4.0,18.619047619047635,366.45641201862895,2020-12-06 +569,5810.3,4.0,17.714285714285726,365.63681954257163,2020-12-06 +568,5799.200000000001,4.0,17.66666666666668,340.39714822976157,2020-12-06 +554,5641.3,4.0,16.952380952380963,344.3221567396779,2020-12-06 +555,5652.1,4.0,17.047619047619058,332.6399407598603,2020-12-06 +556,5662.400000000001,4.0,17.142857142857153,332.4280475273023,2020-12-06 +557,5674.6,4.0,17.238095238095248,343.40445113270107,2020-12-06 +558,5685.900000000001,4.0,16.904761904761916,356.38973657294423,2020-12-06 +559,5697.3,4.0,17.00000000000001,364.9089563187819,2020-12-06 +552,5618.1,4.0,16.904761904761916,366.8303999784563,2020-12-06 +560,5709.0,4.0,17.00000000000001,366.0676991127379,2020-12-06 +562,5732.0,4.0,17.047619047619058,346.39240674642326,2020-12-06 +563,5742.900000000001,4.0,17.333333333333343,335.9995807979542,2020-12-06 +564,5754.6,4.0,17.66666666666668,330.79367491070934,2020-12-06 +565,5765.900000000001,4.0,18.047619047619058,332.1655242885618,2020-12-06 +566,5776.8,4.0,17.952380952380963,337.2045506092909,2020-12-06 +567,5787.900000000001,4.0,17.714285714285726,338.36375292507796,2020-12-06 +561,5720.1,4.0,16.904761904761916,357.7847027783466,2020-12-06 +309,3019.7000000000003,4.0,20.142857142857157,341.87456333736833,2020-12-06 +517,5248.5,4.0,20.000000000000014,359.67443257127934,2020-12-06 +515,5227.3,4.0,19.619047619047635,354.191530642738,2020-12-06 +479,4836.900000000001,4.0,18.09523809523811,347.74220503903416,2020-12-06 +478,4826.7,4.0,17.761904761904773,345.4073984673888,2020-12-06 +477,4815.1,4.0,17.285714285714295,347.8908214118762,2020-12-06 +476,4804.0,4.0,17.190476190476204,358.93751616723836,2020-12-06 +475,4792.7,4.0,17.047619047619058,371.4358757685015,2020-12-06 +474,4781.8,4.0,16.952380952380963,380.5486076556351,2020-12-06 +473,4770.400000000001,4.0,17.42857142857144,383.8048530737323,2020-12-06 +472,4758.900000000001,4.0,17.523809523809533,381.9854391826715,2020-12-06 +471,4746.8,4.0,17.761904761904773,384.39776210902323,2020-12-06 +470,4736.2,4.0,17.61904761904763,395.7893402366874,2020-12-06 +469,4724.7,4.0,17.238095238095248,404.74688903665873,2020-12-06 +468,4713.6,4.0,17.523809523809536,406.990270292065,2020-12-06 +467,4701.1,4.0,18.61904761904763,397.91410700509755,2020-12-06 +466,4689.900000000001,4.0,19.47619047619049,381.5268640294962,2020-12-06 +465,4679.1,4.0,20.33333333333335,371.401424959261,2020-12-06 +464,4669.3,4.0,20.47619047619049,375.5795123410001,2020-12-06 +463,4658.7,4.0,20.142857142857157,384.99663189069616,2020-12-06 +449,4514.1,4.0,19.952380952380967,406.362998099448,2020-12-06 +450,4524.900000000001,4.0,20.42857142857144,398.07195632451817,2020-12-06 +451,4535.0,4.0,20.523809523809536,379.4168575133506,2020-12-06 +452,4544.8,4.0,20.761904761904773,360.2976505338037,2020-12-06 +453,4555.3,4.0,20.71428571428573,349.17144198013574,2020-12-06 +454,4565.0,4.0,20.2857142857143,347.62913513463525,2020-12-06 +480,4847.6,4.0,18.2857142857143,353.7603761288277,2020-12-06 +455,4575.2,4.0,20.333333333333346,353.9582938539635,2020-12-06 +457,4595.900000000001,4.0,20.380952380952394,366.70014099958723,2020-12-06 +458,4606.0,4.0,20.571428571428584,373.89753689451516,2020-12-06 +459,4617.2,4.0,20.47619047619049,381.24118385211307,2020-12-06 +460,4627.6,4.0,20.190476190476204,391.5510268982758,2020-12-06 +461,4638.0,4.0,20.142857142857157,398.0449570844164,2020-12-06 +462,4648.7,4.0,19.809523809523824,394.94940757693456,2020-12-06 +456,4585.8,4.0,20.333333333333346,361.0514162399587,2020-12-06 +516,5237.700000000001,4.0,19.809523809523824,357.1428913264914,2020-12-06 +481,4858.7,4.0,18.333333333333343,362.05040935454986,2020-12-06 +483,4881.1,4.0,17.238095238095248,371.88495874966225,2020-12-06 +514,5216.8,4.0,19.952380952380967,352.7541883127365,2020-12-06 +513,5206.400000000001,4.0,19.952380952380967,352.1362572997132,2020-12-06 +512,5196.0,4.0,19.71428571428573,353.7680154650053,2020-12-06 +511,5185.400000000001,4.0,19.66666666666668,358.26634659008755,2020-12-06 +510,5175.0,4.0,19.71428571428573,360.59577772086493,2020-12-06 +509,5164.8,4.0,19.857142857142872,360.2892354799913,2020-12-06 +508,5154.900000000001,4.0,20.09523809523811,358.15029237380315,2020-12-06 +507,5144.700000000001,4.0,20.000000000000014,352.9661246104639,2020-12-06 +506,5134.900000000001,4.0,20.000000000000014,347.3259155809517,2020-12-06 +505,5124.6,4.0,20.190476190476204,343.30062994330706,2020-12-06 +504,5114.6,4.0,20.000000000000014,341.2217159073043,2020-12-06 +503,5104.200000000001,4.0,19.2857142857143,343.1276081152587,2020-12-06 +502,5093.700000000001,4.0,18.238095238095248,350.0937427151882,2020-12-06 +501,5082.3,4.0,17.47619047619049,355.45097453782313,2020-12-06 +500,5071.0,4.0,17.190476190476204,356.70176870313264,2020-12-06 +499,5059.6,4.0,17.66666666666668,352.9396522098732,2020-12-06 +498,5048.200000000001,4.0,17.80952380952382,346.09926157323474,2020-12-06 +484,4892.900000000001,4.0,16.952380952380963,368.290324264721,2020-12-06 +485,4904.2,4.0,16.952380952380963,356.2590506727538,2020-12-06 +486,4915.400000000001,4.0,17.333333333333343,343.1003223323091,2020-12-06 +487,4926.700000000001,4.0,17.761904761904773,335.513558118108,2020-12-06 +488,4936.700000000001,4.0,17.904761904761916,338.1057512017098,2020-12-06 +489,4947.900000000001,4.0,17.761904761904773,350.190561840088,2020-12-06 +482,4870.1,4.0,17.80952380952382,368.5690273060345,2020-12-06 +490,4959.1,4.0,17.333333333333343,363.3140221885303,2020-12-06 +492,4982.3,4.0,16.952380952380963,367.68577667327156,2020-12-06 +493,4993.5,4.0,17.42857142857144,359.4581218086726,2020-12-06 +494,5004.0,4.0,17.523809523809533,349.53369596326763,2020-12-06 +495,5015.0,4.0,17.66666666666668,342.3184312150494,2020-12-06 +496,5025.900000000001,4.0,17.761904761904773,339.49717250267406,2020-12-06 +497,5037.0,4.0,17.80952380952382,339.95125396799034,2020-12-06 +491,4970.3,4.0,16.952380952380963,369.31360429442367,2020-12-06 +308,3009.1000000000004,4.0,19.952380952380967,341.6519767388568,2020-12-06 +307,2999.2000000000003,4.0,19.71428571428573,346.96920584425106,2020-12-06 +306,2988.0,4.0,19.761904761904773,358.2379258394968,2020-12-06 +119,1072.4,4.0,16.761904761904773,361.4320970140434,2020-12-06 +118,1061.5,4.0,17.238095238095248,354.2743949296012,2020-12-06 +117,1050.1000000000001,4.0,17.190476190476204,348.55730054244754,2020-12-06 +116,1038.6000000000001,4.0,17.380952380952394,350.1659079363427,2020-12-06 +115,1027.4,4.0,17.61904761904763,358.9774648210057,2020-12-06 +114,1016.2,4.0,17.80952380952382,365.16106697621876,2020-12-06 +113,1005.4000000000001,4.0,17.85714285714287,367.6189554461066,2020-12-06 +112,994.2,4.0,18.09523809523811,364.4752421970579,2020-12-06 +111,982.6,4.0,18.000000000000014,356.5836903042122,2020-12-06 +110,971.3000000000001,4.0,18.000000000000014,348.85312773764025,2020-12-06 +109,960.9000000000001,4.0,18.000000000000014,346.80274388036355,2020-12-06 +108,949.5,4.0,18.000000000000014,351.36496458286433,2020-12-06 +107,938.8000000000001,4.0,18.000000000000014,360.46241972455636,2020-12-06 +106,927.4000000000001,4.0,17.90476190476192,368.60120499383413,2020-12-06 +105,916.4000000000001,4.0,18.142857142857153,375.18782032343034,2020-12-06 +104,905.4000000000001,4.0,18.2857142857143,379.848232849438,2020-12-06 +103,894.4000000000001,4.0,18.23809523809525,384.089680255467,2020-12-06 +89,741.1,4.0,18.66666666666668,344.64450187307955,2020-12-06 +90,752.0,4.0,18.380952380952394,344.3324351886554,2020-12-06 +91,763.3000000000001,4.0,18.238095238095248,344.6267835148025,2020-12-06 +92,774.1,4.0,18.47619047619049,342.76888946974447,2020-12-06 +93,784.5,4.0,18.66666666666668,338.03445592551714,2020-12-06 +94,795.2,4.0,18.809523809523824,334.1370605517458,2020-12-06 +120,1084.2,4.0,16.61904761904763,361.46375022515485,2020-12-06 +95,806.1,4.0,18.80952380952382,335.2665661368882,2020-12-06 +97,827.6,4.0,18.571428571428584,351.4852241293487,2020-12-06 +98,838.0,4.0,18.66666666666668,366.2588620685118,2020-12-06 +99,849.5,4.0,18.714285714285726,380.4085202413024,2020-12-06 +100,860.5,4.0,18.2857142857143,389.1575350464333,2020-12-06 +101,872.3000000000001,4.0,18.333333333333343,393.05295941238353,2020-12-06 +102,883.4000000000001,4.0,18.428571428571438,390.45628389423916,2020-12-06 +96,817.1,4.0,18.761904761904773,341.2900394857924,2020-12-06 +88,731.1,4.0,18.42857142857144,342.7303045738844,2020-12-06 +121,1095.8,4.0,16.714285714285722,349.3394197435565,2020-12-06 +123,1116.7,4.0,17.47619047619049,311.43736990970433,2020-12-06 +164,1460.5,4.0,15.666666666666679,147.31488053813774,2020-12-06 +153,1417.7,4.0,18.380952380952394,187.52060561122875,2020-12-06 +152,1417.7,4.0,17.952380952380963,285.7335832606995,2020-12-06 +151,1417.7,4.0,16.66666666666668,347.6750009783214,2020-12-06 +150,1406.7,4.0,17.66666666666668,356.46577889774835,2020-12-06 +149,1396.2,4.0,17.952380952380963,335.31867641526946,2020-12-06 +148,1385.0,4.0,18.000000000000014,323.7219486999178,2020-12-06 +147,1374.4,4.0,18.142857142857153,331.5787582406856,2020-12-06 +146,1363.3000000000002,4.0,18.2857142857143,337.7037680488274,2020-12-06 +145,1352.9,4.0,18.333333333333346,346.9523467846535,2020-12-06 +144,1343.0,4.0,18.190476190476204,358.71872240600874,2020-12-06 +143,1331.7,4.0,18.2857142857143,366.0635534991688,2020-12-06 +142,1320.7,4.0,18.190476190476204,363.6540870222504,2020-12-06 +141,1309.4,4.0,18.23809523809525,347.72707359047644,2020-12-06 +140,1298.7,4.0,18.333333333333343,328.97578961449346,2020-12-06 +139,1288.6000000000001,4.0,18.761904761904773,315.5637392162369,2020-12-06 +138,1277.8000000000002,4.0,18.238095238095248,312.48597016268576,2020-12-06 +124,1127.3,4.0,17.61904761904763,311.86955128156205,2020-12-06 +125,1138.5,4.0,17.380952380952394,323.5401951143957,2020-12-06 +126,1149.2,4.0,17.428571428571438,335.701893949456,2020-12-06 +127,1160.2,4.0,17.90476190476192,344.0623158085304,2020-12-06 +128,1170.9,4.0,18.714285714285726,345.55238592793785,2020-12-06 +129,1181.0,4.0,18.90476190476192,347.1173873382767,2020-12-06 +122,1106.0,4.0,17.142857142857153,326.8468354628982,2020-12-06 +130,1191.8,4.0,18.90476190476192,350.33672521157973,2020-12-06 +132,1213.5,4.0,18.523809523809536,348.6959026073986,2020-12-06 +133,1224.3,4.0,18.66666666666668,349.67970341047396,2020-12-06 +134,1234.7,4.0,18.09523809523811,348.08126086736627,2020-12-06 +135,1245.5,4.0,17.66666666666668,344.88747697399765,2020-12-06 +136,1257.1000000000001,4.0,17.904761904761916,337.4957751840794,2020-12-06 +137,1267.3000000000002,4.0,17.952380952380963,322.2227614537194,2020-12-06 +131,1202.6000000000001,4.0,18.523809523809536,350.40967835060064,2020-12-06 +165,1471.0,4.0,18.09523809523811,231.26010345839094,2020-12-06 +87,720.2,4.0,17.85714285714287,340.42308654681517,2020-12-06 +85,697.7,4.0,16.904761904761916,332.40824640678534,2020-12-06 +44,287.7,4.0,19.333333333333346,272.76898522672525,2020-12-06 +43,277.5,4.0,18.714285714285726,281.41287911152506,2020-12-06 +42,267.90000000000003,4.0,18.380952380952394,294.66167766818535,2020-12-06 +41,258.5,4.0,18.00000000000001,308.48355694535087,2020-12-06 +40,247.4,4.0,17.380952380952394,310.77946756605314,2020-12-06 +39,236.3,4.0,17.761904761904773,300.6507708132816,2020-12-06 +38,226.10000000000002,4.0,19.619047619047635,278.7091434913251,2020-12-06 +37,216.10000000000002,4.0,21.2857142857143,251.51146778437277,2020-12-06 +36,207.10000000000002,4.0,22.90476190476192,233.4942592053569,2020-12-06 +35,198.70000000000002,4.0,23.666666666666682,231.5587377781687,2020-12-06 +34,190.4,4.0,22.761904761904777,237.88024087215092,2020-12-06 +33,182.20000000000002,4.0,21.952380952380967,246.52028725432942,2020-12-06 +32,172.9,4.0,21.71428571428573,248.8036802247796,2020-12-06 +31,164.8,4.0,21.52380952380954,237.95447589279786,2020-12-06 +30,156.5,4.0,21.71428571428573,216.35296785452294,2020-12-06 +29,148.3,4.0,22.428571428571445,192.39442686380926,2020-12-06 +28,140.6,4.0,23.571428571428587,171.1449847845916,2020-12-06 +14,42.6,4.0,31.333333333333357,104.27329896381605,2020-12-06 +15,49.1,4.0,26.666666666666682,125.1619358614594,2020-12-06 +16,57.0,4.0,23.428571428571445,143.9201466446542,2020-12-06 +17,63.300000000000004,4.0,23.952380952380967,158.404219447574,2020-12-06 +18,70.5,4.0,24.000000000000014,170.04612052315287,2020-12-06 +19,77.80000000000001,4.0,24.047619047619065,179.33043459990472,2020-12-06 +45,297.1,4.0,19.2857142857143,266.0954286123666,2020-12-06 +20,86.2,4.0,23.809523809523824,184.7585668600345,2020-12-06 +22,100.0,4.0,25.000000000000014,170.9326558998667,2020-12-06 +23,106.30000000000001,4.0,25.71428571428573,161.13944662419772,2020-12-06 +24,113.2,4.0,25.33333333333335,154.78304581730703,2020-12-06 +25,119.2,4.0,25.33333333333335,153.35092464011205,2020-12-06 +26,126.30000000000001,4.0,25.190476190476208,154.18482248332236,2020-12-06 +27,132.4,4.0,24.33333333333335,158.3523467065859,2020-12-06 +21,93.10000000000001,4.0,24.04761904761906,180.43474117128824,2020-12-06 +86,709.0,4.0,17.571428571428584,336.9446227536163,2020-12-06 +46,306.2,4.0,19.333333333333346,260.61299267463073,2020-12-06 +48,324.8,4.0,19.142857142857157,251.87783068694804,2020-12-06 +84,685.9000000000001,4.0,16.47619047619049,332.30531740709756,2020-12-06 +83,674.7,4.0,16.380952380952394,335.25466261915403,2020-12-06 +82,663.1,4.0,16.380952380952394,333.38132123657476,2020-12-06 +81,651.0,4.0,16.66666666666668,325.7751981914404,2020-12-06 +80,640.0,4.0,16.904761904761916,313.62770041092926,2020-12-06 +79,628.2,4.0,16.761904761904773,305.17545968059517,2020-12-06 +78,618.4000000000001,4.0,16.333333333333343,307.0769247778263,2020-12-06 +77,607.1,4.0,15.952380952380963,313.5009438538344,2020-12-06 +76,595.8000000000001,4.0,15.952380952380963,319.57947861661717,2020-12-06 +75,584.2,4.0,16.333333333333343,320.1146040233318,2020-12-06 +74,572.5,4.0,16.66666666666668,315.83617521930717,2020-12-06 +73,561.4,4.0,17.047619047619058,315.0303357979724,2020-12-06 +72,550.2,4.0,16.952380952380963,317.1627656226917,2020-12-06 +71,538.6,4.0,16.61904761904763,319.1161093039446,2020-12-06 +70,527.3000000000001,4.0,16.80952380952382,319.97195470884174,2020-12-06 +69,516.2,4.0,17.00000000000001,316.10069144884017,2020-12-06 +68,505.5,4.0,17.2857142857143,313.15356729543134,2020-12-06 +49,333.70000000000005,4.0,19.000000000000014,244.50308878379428,2020-12-06 +50,343.1,4.0,18.952380952380963,252.11204293933014,2020-12-06 +51,352.6,4.0,18.66666666666668,267.1174206955584,2020-12-06 +52,362.6,4.0,16.904761904761916,265.3787309458828,2020-12-06 +53,362.6,4.0,18.66666666666668,230.94995638558544,2020-12-06 +54,362.6,4.0,22.47619047619049,168.41268794939856,2020-12-06 +47,315.40000000000003,4.0,19.2857142857143,256.8010084920244,2020-12-06 +59,405.20000000000005,4.0,17.523809523809533,113.96012844194588,2020-12-06 +62,439.1,4.0,16.09523809523811,266.4932436175326,2020-12-06 +63,450.20000000000005,4.0,16.428571428571438,287.0276703494797,2020-12-06 +64,461.5,4.0,16.333333333333343,306.8226157021221,2020-12-06 +65,472.8,4.0,16.380952380952394,316.37926867131887,2020-12-06 +66,483.70000000000005,4.0,16.714285714285726,319.0843941519563,2020-12-06 +67,495.3,4.0,17.333333333333346,316.403755480964,2020-12-06 +61,427.90000000000003,4.0,15.142857142857153,230.81303428531552,2020-12-06 +615,6056.6,4.0,17.2857142857143,352.38243082290603,2020-12-06 +166,1481.8000000000002,4.0,18.000000000000014,301.4121264686205,2020-12-06 +168,1504.3000000000002,4.0,17.80952380952382,355.99551106041474,2020-12-06 +269,2601.9,4.0,17.714285714285726,352.05660919946394,2020-12-06 +268,2590.4,4.0,18.000000000000014,359.6136405002188,2020-12-06 +267,2579.6000000000004,4.0,18.000000000000014,360.5678381566535,2020-12-06 +266,2568.1000000000004,4.0,18.09523809523811,354.39548033696184,2020-12-06 +265,2557.1000000000004,4.0,17.952380952380963,347.04363556063265,2020-12-06 +264,2545.3,4.0,17.66666666666668,339.46012630217035,2020-12-06 +263,2535.2000000000003,4.0,17.238095238095248,338.30844932321224,2020-12-06 +262,2523.8,4.0,17.095238095238106,343.1141567986857,2020-12-06 +261,2512.6000000000004,4.0,17.238095238095248,351.55423714164056,2020-12-06 +260,2501.3,4.0,17.66666666666668,359.03608374193317,2020-12-06 +259,2489.9,4.0,17.85714285714287,364.1591293652607,2020-12-06 +258,2479.3,4.0,18.238095238095248,364.00124405318877,2020-12-06 +257,2468.4,4.0,18.2857142857143,359.4958799833677,2020-12-06 +256,2457.2000000000003,4.0,18.333333333333346,351.1455081254449,2020-12-06 +255,2446.3,4.0,18.2857142857143,344.91636379566796,2020-12-06 +254,2435.0,4.0,18.142857142857153,341.71228329571636,2020-12-06 +253,2424.5,4.0,17.90476190476192,344.269404538382,2020-12-06 +239,2268.9,4.0,17.714285714285726,366.1413247398558,2020-12-06 +240,2280.0,4.0,17.85714285714287,356.08914848931033,2020-12-06 +241,2290.7000000000003,4.0,18.09523809523811,347.2386834086935,2020-12-06 +242,2301.4,4.0,18.000000000000014,341.49124295852755,2020-12-06 +243,2312.6,4.0,18.09523809523811,340.95337262492313,2020-12-06 +244,2323.2000000000003,4.0,17.85714285714287,344.6642531852483,2020-12-06 +270,2612.9,4.0,18.23809523809525,342.47007780150784,2020-12-06 +245,2334.3,4.0,17.714285714285726,352.18485986514895,2020-12-06 +247,2357.1,4.0,17.571428571428584,366.2318864525564,2020-12-06 +248,2368.6,4.0,17.571428571428584,366.5633868133314,2020-12-06 +249,2380.0,4.0,17.761904761904773,364.30473754982546,2020-12-06 +250,2391.6,4.0,17.714285714285726,359.03773835278537,2020-12-06 +251,2402.7000000000003,4.0,17.85714285714287,354.54963880418177,2020-12-06 +252,2413.6,4.0,18.09523809523811,349.6669304625507,2020-12-06 +246,2346.2000000000003,4.0,17.761904761904773,361.6977769858603,2020-12-06 +238,2257.4,4.0,17.66666666666668,377.9887629237482,2020-12-06 +271,2623.3,4.0,18.952380952380963,334.9427236686719,2020-12-06 +273,2643.9,4.0,20.190476190476204,338.22900578623285,2020-12-06 +305,2978.6000000000004,4.0,19.66666666666668,369.87401457795517,2020-12-06 +304,2968.3,4.0,19.42857142857144,378.4243876940111,2020-12-06 +303,2957.7000000000003,4.0,19.571428571428584,381.97070618750115,2020-12-06 +302,2947.0,4.0,19.23809523809525,378.5649514392795,2020-12-06 +301,2936.3,4.0,19.2857142857143,371.1476237942304,2020-12-06 +300,2925.2000000000003,4.0,19.71428571428573,365.3277221765399,2020-12-06 +299,2914.8,4.0,19.66666666666668,358.638798661035,2020-12-06 +298,2904.1000000000004,4.0,19.571428571428584,352.58967645313106,2020-12-06 +297,2894.1000000000004,4.0,19.857142857142872,349.5426198703839,2020-12-06 +296,2883.6000000000004,4.0,19.66666666666668,348.13841066798,2020-12-06 +295,2873.2000000000003,4.0,19.42857142857144,353.26328183754663,2020-12-06 +294,2863.3,4.0,19.571428571428584,363.92340374265973,2020-12-06 +293,2852.3,4.0,19.23809523809525,371.45020782081485,2020-12-06 +292,2841.7000000000003,4.0,19.2857142857143,372.0671821261209,2020-12-06 +291,2830.7000000000003,4.0,19.619047619047635,368.8626147141256,2020-12-06 +290,2819.9,4.0,19.809523809523824,362.85652714889255,2020-12-06 +289,2809.5,4.0,19.761904761904777,360.6506767905856,2020-12-06 +274,2653.7000000000003,4.0,20.333333333333346,346.91090094428455,2020-12-06 +275,2663.9,4.0,19.90476190476192,353.28040770912,2020-12-06 +276,2674.4,4.0,20.000000000000014,355.16214546647876,2020-12-06 +277,2684.9,4.0,20.000000000000014,352.90450734050626,2020-12-06 +278,2695.2000000000003,4.0,20.000000000000014,349.9404610407597,2020-12-06 +279,2705.7000000000003,4.0,20.000000000000014,350.52692630344575,2020-12-06 +272,2633.5,4.0,19.66666666666668,331.59368294926213,2020-12-06 +280,2716.1000000000004,4.0,20.000000000000014,354.0171868863529,2020-12-06 +282,2737.1000000000004,4.0,19.90476190476192,363.5630936139162,2020-12-06 +283,2747.1000000000004,4.0,20.04761904761906,366.19348535681297,2020-12-06 +285,2767.7000000000003,4.0,20.61904761904763,368.6213125999295,2020-12-06 +286,2778.4,4.0,20.61904761904763,368.3258112185757,2020-12-06 +287,2788.4,4.0,20.42857142857144,367.3809124742727,2020-12-06 +288,2799.5,4.0,20.142857142857157,363.68293131753416,2020-12-06 +281,2726.7000000000003,4.0,20.000000000000014,359.3093668179512,2020-12-06 +167,1493.4,4.0,18.000000000000014,340.1637750723137,2020-12-06 +237,2245.9,4.0,17.61904761904763,385.06211698874625,2020-12-06 +235,2222.8,4.0,18.571428571428584,385.0120512122852,2020-12-06 +199,1841.4,4.0,19.809523809523824,364.54651767743417,2020-12-06 +198,1830.8000000000002,4.0,19.52380952380954,365.12526210983197,2020-12-06 +197,1819.9,4.0,19.42857142857144,356.3838549776092,2020-12-06 +196,1809.2,4.0,19.71428571428573,343.2954105812063,2020-12-06 +195,1798.4,4.0,19.71428571428573,330.9749825896009,2020-12-06 +194,1787.7,4.0,19.190476190476204,331.8586042977638,2020-12-06 +193,1777.7,4.0,18.761904761904773,346.90403044701577,2020-12-06 +192,1766.9,4.0,18.000000000000014,365.40540529050213,2020-12-06 +191,1755.8000000000002,4.0,17.952380952380963,377.42228765880543,2020-12-06 +190,1744.9,4.0,18.190476190476204,379.65101207826694,2020-12-06 +189,1733.9,4.0,18.47619047619049,371.7916418807193,2020-12-06 +188,1722.7,4.0,18.571428571428584,366.389327912401,2020-12-06 +187,1710.9,4.0,18.47619047619049,366.6791327266302,2020-12-06 +186,1700.4,4.0,18.095238095238106,372.08032809463134,2020-12-06 +185,1688.9,4.0,18.2857142857143,378.3888111605281,2020-12-06 +184,1677.8000000000002,4.0,18.190476190476204,379.6459433610396,2020-12-06 +183,1666.6000000000001,4.0,18.23809523809525,374.1300432118038,2020-12-06 +169,1515.7,4.0,18.2857142857143,355.35127023379016,2020-12-06 +170,1526.3000000000002,4.0,18.47619047619049,355.69064138658365,2020-12-06 +171,1537.1000000000001,4.0,18.714285714285726,359.0872455849992,2020-12-06 +172,1548.3000000000002,4.0,18.90476190476192,364.54545381860817,2020-12-06 +173,1558.8000000000002,4.0,18.85714285714287,362.54202515897305,2020-12-06 +174,1569.8000000000002,4.0,18.90476190476192,353.0586340387799,2020-12-06 +200,1851.9,4.0,19.857142857142872,358.00256659115917,2020-12-06 +175,1580.6000000000001,4.0,19.380952380952394,342.18944397563615,2020-12-06 +177,1601.0,4.0,19.142857142857153,335.63011651466763,2020-12-06 +178,1612.0,4.0,18.952380952380963,346.60134370806395,2020-12-06 +179,1623.0,4.0,18.523809523809536,356.5206011483285,2020-12-06 +180,1634.0,4.0,18.2857142857143,361.28773736107325,2020-12-06 +181,1644.9,4.0,18.333333333333343,364.9899262060004,2020-12-06 +182,1655.6000000000001,4.0,18.428571428571438,368.91215958238666,2020-12-06 +176,1590.5,4.0,19.42857142857144,334.2138114692789,2020-12-06 +236,2234.4,4.0,17.80952380952382,387.9794300186861,2020-12-06 +201,1861.8000000000002,4.0,20.09523809523811,351.5989402204381,2020-12-06 +203,1882.8000000000002,4.0,20.000000000000014,348.1202849700299,2020-12-06 +234,2212.2000000000003,4.0,18.85714285714287,377.56201044719467,2020-12-06 +233,2201.7000000000003,4.0,19.42857142857144,369.87708659828706,2020-12-06 +232,2191.3,4.0,19.66666666666668,365.66718682948704,2020-12-06 +231,2180.8,4.0,19.47619047619049,361.9095217731293,2020-12-06 +230,2170.2000000000003,4.0,19.190476190476204,362.54541417261044,2020-12-06 +229,2159.0,4.0,19.142857142857157,365.33840235863374,2020-12-06 +228,2148.3,4.0,18.90476190476192,368.4024598556876,2020-12-06 +227,2137.3,4.0,18.90476190476192,369.41740731986783,2020-12-06 +226,2126.6,4.0,19.142857142857157,368.0500905082976,2020-12-06 +225,2115.9,4.0,19.2857142857143,363.1448102027805,2020-12-06 +224,2105.3,4.0,19.333333333333346,360.1259929360589,2020-12-06 +223,2094.0,4.0,19.2857142857143,363.05269683645423,2020-12-06 +222,2083.6,4.0,19.047619047619058,370.06912009461655,2020-12-06 +221,2073.0,4.0,18.952380952380963,374.6696389004569,2020-12-06 +220,2062.5,4.0,19.333333333333346,374.3094907978321,2020-12-06 +219,2051.3,4.0,19.761904761904773,368.1243571865705,2020-12-06 +218,2040.5,4.0,19.809523809523824,361.8156084085251,2020-12-06 +204,1892.8000000000002,4.0,20.000000000000014,351.1675212700061,2020-12-06 +205,1903.4,4.0,20.000000000000014,357.1585692689607,2020-12-06 +206,1914.0,4.0,20.000000000000014,363.71901481305827,2020-12-06 +207,1924.1000000000001,4.0,20.000000000000014,368.35997294068875,2020-12-06 +208,1934.7,4.0,20.09523809523811,372.87085849347073,2020-12-06 +209,1945.4,4.0,19.952380952380967,375.1455512665465,2020-12-06 +202,1872.5,4.0,20.000000000000014,348.59212916670106,2020-12-06 +210,1956.0,4.0,19.571428571428584,376.1460163319481,2020-12-06 +212,1977.7,4.0,19.23809523809525,371.2722129658317,2020-12-06 +213,1987.9,4.0,19.380952380952394,364.89969079953175,2020-12-06 +214,1998.5,4.0,19.47619047619049,361.3245654151937,2020-12-06 +215,2009.0,4.0,19.523809523809536,358.47666971897127,2020-12-06 +216,2019.5,4.0,19.52380952380954,357.91603948301554,2020-12-06 +217,2030.0,4.0,19.90476190476192,358.3072724739957,2020-12-06 +211,1966.6000000000001,4.0,19.47619047619049,375.3866559905262,2020-12-06 +616,6067.400000000001,4.0,17.095238095238106,359.9899894805442,2020-12-06 +284,2757.7000000000003,4.0,20.42857142857144,368.0699857784206,2020-12-06 +618,6090.1,4.0,17.571428571428584,366.3582680466243,2020-12-06 +1036,10195.7,4.0,20.190476190476204,342.2795209114902,2020-12-06 +1035,10185.1,4.0,19.857142857142872,340.3097580505282,2020-12-06 +1034,10174.800000000001,4.0,19.809523809523824,341.40246830254216,2020-12-06 +1033,10164.5,4.0,19.52380952380954,346.2333244433964,2020-12-06 +1032,10154.300000000001,4.0,19.523809523809536,351.1481309029743,2020-12-06 +1031,10143.400000000001,4.0,19.380952380952394,356.41758705855204,2020-12-06 +1030,10133.1,4.0,19.523809523809536,358.6253162786094,2020-12-06 +1029,10122.6,4.0,19.52380952380954,360.3850875427054,2020-12-06 +1028,10112.2,4.0,19.809523809523824,360.71251796590843,2020-12-06 +1027,10101.7,4.0,19.857142857142872,363.2114128395468,2020-12-06 +1026,10091.7,4.0,20.09523809523811,368.4983511019394,2020-12-06 +1025,10081.300000000001,4.0,20.000000000000014,375.4413618868112,2020-12-06 +1024,10071.5,4.0,19.90476190476192,377.8763444074031,2020-12-06 +1023,10060.6,4.0,20.04761904761906,372.62655072032055,2020-12-06 +1022,10049.7,4.0,20.523809523809536,355.6336551443028,2020-12-06 +1021,10039.7,4.0,20.571428571428584,331.3671832503176,2020-12-06 +1020,10029.5,4.0,20.380952380952394,309.61294980804934,2020-12-06 +980,9813.1,4.0,16.00000000000001,356.7362829491965,2020-12-06 +982,9813.1,4.0,16.095238095238106,294.27575888467214,2020-12-06 +983,9813.1,4.0,20.23809523809525,200.25263473253983,2020-12-06 +1009,9910.5,4.0,17.714285714285722,124.7413838759076,2020-12-06 +1010,9921.0,4.0,15.333333333333343,211.54857422554775,2020-12-06 +1011,9932.400000000001,4.0,16.85714285714287,285.5336013957222,2020-12-06 +1037,10206.300000000001,4.0,19.952380952380967,348.3066432182313,2020-12-06 +1012,9943.800000000001,4.0,16.952380952380963,326.8707177604596,2020-12-06 +1014,9965.800000000001,4.0,17.047619047619058,341.5341937321642,2020-12-06 +1015,9977.0,4.0,17.190476190476204,340.6698167000228,2020-12-06 +1016,9988.0,4.0,17.2857142857143,333.10614556757173,2020-12-06 +1017,9999.0,4.0,17.80952380952382,318.08038085723706,2020-12-06 +1018,10008.800000000001,4.0,18.714285714285726,303.4240008042417,2020-12-06 +1019,10019.1,4.0,19.809523809523824,299.086260384037,2020-12-06 +1013,9954.6,4.0,17.047619047619058,336.9834151688497,2020-12-06 +979,9813.1,4.0,15.904761904761916,338.90424271245547,2020-12-06 +1038,10216.0,4.0,19.66666666666668,356.44089986620247,2020-12-06 +1040,10237.5,4.0,18.952380952380963,364.6099415276692,2020-12-06 +1071,10568.300000000001,4.0,18.47619047619049,318.09362860953007,2020-12-06 +1070,10558.0,4.0,18.190476190476204,319.38545870755786,2020-12-06 +1069,10547.400000000001,4.0,18.142857142857153,326.65924881146543,2020-12-06 +1068,10536.7,4.0,17.90476190476192,336.5375571111731,2020-12-06 +1067,10525.5,4.0,18.000000000000014,343.5504615056282,2020-12-06 +1066,10514.5,4.0,18.000000000000014,347.2733824160804,2020-12-06 +1065,10503.7,4.0,18.000000000000014,346.65163893915644,2020-12-06 +1064,10492.300000000001,4.0,18.000000000000014,347.5830483901401,2020-12-06 +1063,10481.6,4.0,18.09523809523811,352.39980447530513,2020-12-06 +1062,10471.1,4.0,17.761904761904773,359.7682330554777,2020-12-06 +1061,10459.300000000001,4.0,17.761904761904773,366.278603164067,2020-12-06 +1060,10448.900000000001,4.0,17.904761904761916,369.35183918313226,2020-12-06 +1059,10437.400000000001,4.0,18.42857142857144,362.9869097363042,2020-12-06 +1058,10426.400000000001,4.0,19.142857142857153,351.0820200921336,2020-12-06 +1057,10416.0,4.0,19.85714285714287,337.71954867801594,2020-12-06 +1056,10405.6,4.0,19.952380952380967,326.73715725791214,2020-12-06 +1055,10395.1,4.0,20.09523809523811,318.72117269852106,2020-12-06 +1041,10248.6,4.0,19.047619047619058,362.0885509478434,2020-12-06 +1042,10259.0,4.0,19.2857142857143,358.8460344887193,2020-12-06 +1043,10269.2,4.0,19.333333333333346,357.60987023569885,2020-12-06 +1044,10279.900000000001,4.0,19.190476190476204,360.70000101335256,2020-12-06 +1045,10290.900000000001,4.0,19.2857142857143,362.3169143806312,2020-12-06 +1046,10301.400000000001,4.0,19.190476190476204,361.2462712030102,2020-12-06 +1039,10227.0,4.0,19.333333333333346,363.3506366981495,2020-12-06 +1047,10311.800000000001,4.0,19.333333333333346,357.8394786560148,2020-12-06 +1049,10333.400000000001,4.0,19.190476190476204,349.0730199245962,2020-12-06 +1050,10343.800000000001,4.0,19.23809523809525,342.7263652978721,2020-12-06 +1051,10354.300000000001,4.0,19.66666666666668,332.639709938032,2020-12-06 +1052,10364.900000000001,4.0,19.952380952380967,323.5116216469877,2020-12-06 +1053,10374.300000000001,4.0,20.09523809523811,317.26549533922145,2020-12-06 +1054,10384.6,4.0,20.000000000000014,316.1381678827904,2020-12-06 +1048,10322.400000000001,4.0,19.190476190476204,354.1981143295152,2020-12-06 +1072,10578.5,4.0,18.47619047619049,326.0034279937661,2020-12-06 +978,9813.1,4.0,16.047619047619058,334.51398188895513,2020-12-06 +976,9789.800000000001,4.0,16.80952380952382,335.7991213734707,2020-12-06 +940,9423.4,4.0,20.000000000000014,351.20969989605766,2020-12-06 +939,9412.7,4.0,20.000000000000014,351.3110798184756,2020-12-06 +938,9402.5,4.0,20.000000000000014,344.97083566411675,2020-12-06 +937,9392.0,4.0,20.09523809523811,335.6181442841976,2020-12-06 +936,9382.2,4.0,20.04761904761906,324.7490157164008,2020-12-06 +935,9371.9,4.0,19.619047619047635,318.6581309318158,2020-12-06 +934,9362.5,4.0,19.000000000000014,321.41350390255013,2020-12-06 +933,9351.7,4.0,18.380952380952394,330.0547742682993,2020-12-06 +932,9341.0,4.0,17.952380952380963,339.9534308691897,2020-12-06 +931,9330.300000000001,4.0,17.80952380952382,345.67849766844233,2020-12-06 +930,9319.4,4.0,18.047619047619058,344.78358048388003,2020-12-06 +929,9308.800000000001,4.0,18.428571428571438,339.3594031526553,2020-12-06 +928,9297.5,4.0,18.61904761904763,333.09926286354073,2020-12-06 +927,9287.5,4.0,18.61904761904763,331.2575653721569,2020-12-06 +926,9276.800000000001,4.0,18.428571428571438,336.14733719376255,2020-12-06 +925,9266.5,4.0,18.047619047619058,342.10790057854405,2020-12-06 +924,9255.1,4.0,17.80952380952382,344.66115544290403,2020-12-06 +910,9104.2,4.0,17.523809523809536,327.14446825497055,2020-12-06 +911,9114.4,4.0,17.428571428571438,332.7033971692116,2020-12-06 +912,9126.1,4.0,17.523809523809536,338.71534971570816,2020-12-06 +913,9137.0,4.0,17.80952380952382,339.4902076474764,2020-12-06 +914,9147.7,4.0,17.85714285714287,338.7652184514249,2020-12-06 +915,9158.9,4.0,18.09523809523811,338.46955048127097,2020-12-06 +941,9433.2,4.0,19.90476190476192,346.2150069266044,2020-12-06 +916,9169.4,4.0,17.90476190476192,338.0203405266308,2020-12-06 +918,9191.2,4.0,18.333333333333343,325.52399786997825,2020-12-06 +919,9201.9,4.0,18.761904761904773,313.49425292711794,2020-12-06 +920,9211.7,4.0,18.90476190476192,307.72896662165056,2020-12-06 +921,9222.7,4.0,18.761904761904773,311.5051875230972,2020-12-06 +922,9233.0,4.0,18.333333333333343,324.8139976930206,2020-12-06 +923,9244.2,4.0,18.047619047619058,338.88152512502154,2020-12-06 +917,9180.5,4.0,18.047619047619058,334.25388719422074,2020-12-06 +977,9801.6,4.0,16.047619047619058,343.34233259966095,2020-12-06 +942,9443.7,4.0,20.142857142857157,342.64828158183644,2020-12-06 +944,9464.1,4.0,20.23809523809525,342.6308466557948,2020-12-06 +975,9778.5,4.0,17.952380952380963,318.7928308148744,2020-12-06 +974,9766.7,4.0,19.00000000000001,302.21294047185063,2020-12-06 +973,9757.800000000001,4.0,20.000000000000014,299.7050043539232,2020-12-06 +972,9747.800000000001,4.0,20.66666666666668,310.9738626922459,2020-12-06 +971,9738.1,4.0,20.2857142857143,329.77544799193555,2020-12-06 +970,9728.9,4.0,19.857142857142872,348.51085547778797,2020-12-06 +969,9718.300000000001,4.0,19.619047619047635,357.51619310427685,2020-12-06 +968,9707.9,4.0,19.142857142857157,356.0186453029254,2020-12-06 +967,9697.2,4.0,19.2857142857143,350.40648970505856,2020-12-06 +966,9687.1,4.0,19.619047619047635,345.3689135976622,2020-12-06 +965,9676.9,4.0,19.809523809523824,341.0804147536919,2020-12-06 +964,9666.7,4.0,19.857142857142872,340.603994520989,2020-12-06 +963,9656.5,4.0,20.09523809523811,341.78366337209076,2020-12-06 +962,9646.7,4.0,20.000000000000014,343.7375447270008,2020-12-06 +961,9636.6,4.0,20.000000000000014,347.0178979972066,2020-12-06 +960,9626.300000000001,4.0,20.000000000000014,350.78800473009085,2020-12-06 +959,9616.0,4.0,20.000000000000014,350.90889487622155,2020-12-06 +945,9474.4,4.0,20.42857142857144,346.5520235074416,2020-12-06 +946,9484.300000000001,4.0,20.42857142857144,347.4301224757564,2020-12-06 +947,9493.9,4.0,20.23809523809525,345.09331014908787,2020-12-06 +948,9504.0,4.0,20.2857142857143,344.9684088820031,2020-12-06 +949,9514.5,4.0,20.142857142857157,347.18856603134395,2020-12-06 +950,9524.300000000001,4.0,19.90476190476192,351.8367434300238,2020-12-06 +943,9454.1,4.0,20.2857142857143,341.6236540118425,2020-12-06 +951,9534.9,4.0,20.000000000000014,357.5467581145395,2020-12-06 +953,9555.4,4.0,20.000000000000014,360.8702382521401,2020-12-06 +954,9565.300000000001,4.0,20.000000000000014,359.49617129996795,2020-12-06 +955,9575.300000000001,4.0,20.000000000000014,355.33736436548065,2020-12-06 +956,9585.2,4.0,20.000000000000014,351.4665415098953,2020-12-06 +957,9595.0,4.0,20.000000000000014,349.45839626772033,2020-12-06 +958,9605.7,4.0,20.000000000000014,349.55863265991206,2020-12-06 +952,9545.300000000001,4.0,20.000000000000014,360.64704588025154,2020-12-06 +909,9093.0,4.0,17.80952380952382,322.7873757758309,2020-12-06 +1073,10589.2,4.0,18.619047619047635,337.401547423054,2020-12-06 +1075,10610.900000000001,4.0,18.523809523809536,348.33988569277733,2020-12-06 +1177,11694.5,4.0,15.857142857142868,309.35779125849626,2020-12-06 +1176,11683.7,4.0,16.619047619047628,286.77421619771883,2020-12-06 +1175,11672.800000000001,4.0,16.47619047619049,274.22485227138213,2020-12-06 +1174,11661.0,4.0,15.428571428571438,272.9512733833705,2020-12-06 +1173,11661.0,4.0,15.142857142857153,287.70301546402146,2020-12-06 +1172,11650.6,4.0,15.619047619047628,305.5982540981578,2020-12-06 +1171,11636.0,4.0,15.571428571428584,313.1452739666307,2020-12-06 +1170,11624.800000000001,4.0,16.285714285714295,315.72282222631827,2020-12-06 +1169,11614.2,4.0,17.47619047619049,318.6056010362727,2020-12-06 +1168,11602.900000000001,4.0,17.00000000000001,322.47100432769827,2020-12-06 +1167,11592.2,4.0,16.904761904761916,330.6929747288812,2020-12-06 +1166,11580.900000000001,4.0,17.047619047619058,338.6724288770391,2020-12-06 +1165,11570.300000000001,4.0,17.333333333333343,337.49443883945753,2020-12-06 +1164,11559.1,4.0,17.761904761904773,329.9611525466711,2020-12-06 +1163,11548.0,4.0,17.904761904761916,322.62933048537354,2020-12-06 +1162,11537.5,4.0,17.761904761904773,319.2930068949514,2020-12-06 +1161,11526.5,4.0,17.238095238095248,321.20947104248773,2020-12-06 +1147,11375.800000000001,4.0,17.00000000000001,313.6206704554272,2020-12-06 +1148,11386.6,4.0,17.00000000000001,309.3822853319616,2020-12-06 +1149,11396.900000000001,4.0,17.00000000000001,306.69558988499193,2020-12-06 +1150,11407.900000000001,4.0,16.904761904761916,305.79046759599896,2020-12-06 +1151,11419.400000000001,4.0,17.047619047619058,308.0805081317171,2020-12-06 +1152,11429.900000000001,4.0,17.42857142857144,310.9791507889519,2020-12-06 +1178,11705.400000000001,4.0,15.857142857142868,327.74252582212216,2020-12-06 +1153,11440.800000000001,4.0,17.523809523809533,314.0876483875979,2020-12-06 +1155,11462.300000000001,4.0,17.761904761904773,315.2413440190871,2020-12-06 +1156,11472.6,4.0,17.80952380952382,313.1149527221928,2020-12-06 +1157,11483.7,4.0,17.80952380952382,313.9470857168385,2020-12-06 +1158,11494.1,4.0,17.761904761904773,317.1458682848838,2020-12-06 +1159,11504.900000000001,4.0,17.238095238095248,322.0749487391094,2020-12-06 +1160,11515.7,4.0,17.095238095238106,323.23846874979176,2020-12-06 +1154,11451.2,4.0,17.66666666666668,315.708863601821,2020-12-06 +1146,11364.400000000001,4.0,17.095238095238106,318.34833402110746,2020-12-06 +1179,11720.1,4.0,15.333333333333343,331.6285525249883,2020-12-06 +1181,11741.900000000001,4.0,16.238095238095248,317.62067927804225,2020-12-06 +617,6078.6,4.0,17.47619047619049,361.9686793541418,2020-12-06 +1218,12133.5,4.0,19.09523809523811,308.08718212727206,2020-12-06 +1217,12133.5,4.0,18.85714285714287,312.04061216246873,2020-12-06 +1216,12133.5,4.0,18.80952380952382,313.024104713193,2020-12-06 +1215,12123.5,4.0,18.61904761904763,307.7756388441727,2020-12-06 +1214,12112.1,4.0,18.571428571428584,291.34436001452457,2020-12-06 +1213,12102.300000000001,4.0,18.1904761904762,272.52837235251,2020-12-06 +1212,12092.0,4.0,17.80952380952382,259.03823042281493,2020-12-06 +1211,12082.400000000001,4.0,15.666666666666679,256.9290203233393,2020-12-06 +1203,11984.2,4.0,15.714285714285722,258.7188399844588,2020-12-06 +1202,11973.0,4.0,16.571428571428584,252.44706932114303,2020-12-06 +1201,11962.6,4.0,17.190476190476204,257.7204101663309,2020-12-06 +1200,11952.400000000001,4.0,17.523809523809533,269.3843248781182,2020-12-06 +1199,11942.400000000001,4.0,17.2857142857143,282.4006596002538,2020-12-06 +1198,11932.1,4.0,17.142857142857153,290.9504409398787,2020-12-06 +1197,11920.7,4.0,16.904761904761916,294.5590959832323,2020-12-06 +1196,11909.900000000001,4.0,17.00000000000001,295.939682447753,2020-12-06 +1182,11753.400000000001,4.0,17.047619047619058,318.4597699172132,2020-12-06 +1183,11764.800000000001,4.0,16.380952380952394,325.088456344567,2020-12-06 +1184,11776.400000000001,4.0,16.380952380952394,330.04297973766495,2020-12-06 +1185,11787.400000000001,4.0,16.571428571428584,331.66187925645727,2020-12-06 +1186,11798.800000000001,4.0,16.952380952380963,329.27718974110917,2020-12-06 +1187,11809.900000000001,4.0,17.095238095238106,330.66950827618086,2020-12-06 +1180,11731.0,4.0,15.666666666666679,321.99440109662294,2020-12-06 +1188,11821.5,4.0,17.00000000000001,331.5099552311916,2020-12-06 +1190,11844.2,4.0,17.142857142857153,323.0350271981638,2020-12-06 +1191,11855.6,4.0,17.2857142857143,316.27097900199277,2020-12-06 +1192,11866.400000000001,4.0,17.333333333333343,311.2909322693911,2020-12-06 +1193,11877.0,4.0,17.2857142857143,307.2702035211795,2020-12-06 +1194,11888.2,4.0,17.142857142857153,301.99359303048277,2020-12-06 +1195,11898.900000000001,4.0,16.904761904761916,298.3195463152468,2020-12-06 +1189,11832.6,4.0,16.904761904761916,329.3244924077311,2020-12-06 +1074,10600.300000000001,4.0,18.380952380952394,346.73084194925895,2020-12-06 +1145,11353.400000000001,4.0,16.85714285714287,319.5400840738472,2020-12-06 +1143,11331.1,4.0,16.80952380952382,312.2703583349306,2020-12-06 +1107,10938.0,4.0,18.142857142857153,338.15820926149286,2020-12-06 +1106,10927.400000000001,4.0,18.523809523809536,357.5204003327411,2020-12-06 +1105,10916.800000000001,4.0,18.714285714285726,387.0286022014399,2020-12-06 +1104,10906.900000000001,4.0,19.90476190476192,415.62202299454555,2020-12-06 +1103,10896.0,4.0,22.09523809523811,423.380056487205,2020-12-06 +1102,10885.5,4.0,24.190476190476204,405.06649130912274,2020-12-06 +1101,10876.0,4.0,26.047619047619065,378.2291480016937,2020-12-06 +1100,10867.300000000001,4.0,26.428571428571445,358.1579474642536,2020-12-06 +1099,10858.300000000001,4.0,25.14285714285716,346.44165342318206,2020-12-06 +1098,10849.2,4.0,23.619047619047635,341.856769029292,2020-12-06 +1097,10840.1,4.0,22.71428571428573,337.4234017427605,2020-12-06 +1096,10830.6,4.0,21.952380952380967,332.8406710719266,2020-12-06 +1095,10820.6,4.0,21.476190476190492,334.97741229166724,2020-12-06 +1094,10811.1,4.0,21.23809523809525,346.45290081646283,2020-12-06 +1093,10800.900000000001,4.0,21.2857142857143,358.23303920852015,2020-12-06 +1092,10790.400000000001,4.0,21.238095238095255,363.40189987426703,2020-12-06 +1091,10780.1,4.0,21.142857142857157,359.81382098540024,2020-12-06 +1076,10621.7,4.0,18.61904761904763,345.05804525458296,2020-12-06 +1077,10632.0,4.0,18.761904761904773,337.9575203857455,2020-12-06 +1078,10642.300000000001,4.0,18.523809523809536,333.5541680847731,2020-12-06 +1079,10652.900000000001,4.0,18.428571428571438,332.77340618002256,2020-12-06 +1080,10663.900000000001,4.0,18.047619047619058,336.30056462838303,2020-12-06 +1081,10675.0,4.0,17.90476190476192,342.83726859827004,2020-12-06 +1108,10949.1,4.0,17.47619047619049,333.39343179773056,2020-12-06 +1082,10685.900000000001,4.0,17.90476190476192,347.2611554925743,2020-12-06 +1085,10718.1,4.0,19.000000000000014,320.02123021584356,2020-12-06 +1086,10728.0,4.0,18.714285714285726,312.98925403286603,2020-12-06 +1087,10738.7,4.0,18.380952380952394,316.6965833733933,2020-12-06 +1088,10749.400000000001,4.0,18.047619047619058,326.2599810200176,2020-12-06 +1089,10760.300000000001,4.0,18.714285714285726,337.56633924437926,2020-12-06 +1090,10770.2,4.0,20.09523809523811,350.4006587857345,2020-12-06 +1084,10707.5,4.0,18.571428571428584,333.3833225822759,2020-12-06 +1144,11342.400000000001,4.0,16.61904761904763,316.6066667501499,2020-12-06 +1109,10960.2,4.0,17.238095238095248,336.9590117264437,2020-12-06 +1111,10981.6,4.0,17.190476190476204,334.4299556054026,2020-12-06 +1142,11319.900000000001,4.0,17.00000000000001,306.67513753919457,2020-12-06 +1141,11308.2,4.0,17.1904761904762,304.3173221699118,2020-12-06 +1140,11297.800000000001,4.0,17.380952380952394,305.9546160931684,2020-12-06 +1139,11287.6,4.0,17.142857142857153,307.4817610524139,2020-12-06 +1138,11276.1,4.0,17.095238095238106,307.9302354273693,2020-12-06 +1137,11265.400000000001,4.0,16.80952380952382,308.8209087121868,2020-12-06 +1136,11253.800000000001,4.0,16.2857142857143,311.0629601817337,2020-12-06 +1135,11243.6,4.0,15.952380952380963,317.3888176396689,2020-12-06 +1134,11231.7,4.0,16.142857142857153,321.83847068132343,2020-12-06 +1133,11220.5,4.0,16.761904761904773,321.4993158481528,2020-12-06 +1132,11209.0,4.0,17.714285714285726,316.610069046529,2020-12-06 +1131,11198.300000000001,4.0,18.047619047619058,311.29678314086834,2020-12-06 +1130,11187.400000000001,4.0,18.09523809523811,311.00147546717244,2020-12-06 +1129,11177.2,4.0,18.000000000000014,317.8315039912798,2020-12-06 +1128,11166.900000000001,4.0,18.000000000000014,325.89253023848335,2020-12-06 +1127,11155.7,4.0,18.000000000000014,331.31461400116837,2020-12-06 +1126,11145.1,4.0,18.000000000000014,332.10469082453164,2020-12-06 +1112,10992.6,4.0,17.238095238095248,333.7706823268388,2020-12-06 +1113,11004.2,4.0,17.333333333333343,334.22299237271164,2020-12-06 +1114,11014.7,4.0,17.47619047619049,331.3118500641104,2020-12-06 +1115,11025.800000000001,4.0,17.571428571428584,324.95594684776063,2020-12-06 +1116,11036.1,4.0,17.952380952380963,318.87813823582906,2020-12-06 +1117,11047.1,4.0,18.190476190476204,317.06833103815904,2020-12-06 +1110,10971.2,4.0,17.190476190476204,337.26005974871657,2020-12-06 +1118,11058.2,4.0,17.85714285714287,322.19547090455205,2020-12-06 +1120,11079.7,4.0,17.66666666666668,340.5522215990252,2020-12-06 +1121,11090.800000000001,4.0,17.714285714285726,342.4888743544684,2020-12-06 +1122,11101.7,4.0,17.85714285714287,339.1163717078181,2020-12-06 +1123,11112.6,4.0,18.09523809523811,333.0267097627949,2020-12-06 +1124,11123.2,4.0,18.000000000000014,329.16388648978483,2020-12-06 +1125,11133.800000000001,4.0,18.000000000000014,329.6576319888459,2020-12-06 +1119,11069.400000000001,4.0,17.714285714285726,332.0560824327811,2020-12-06 +908,9082.1,4.0,17.85714285714287,323.0825754461818,2020-12-06 +1083,10696.7,4.0,17.952380952380963,343.57317639478254,2020-12-06 +906,9060.6,4.0,17.90476190476192,339.69216401781784,2020-12-06 +719,7183.8,4.0,20.000000000000014,366.08897913452864,2020-12-06 +718,7173.3,4.0,19.90476190476192,366.47981015816436,2020-12-06 +717,7163.5,4.0,20.142857142857157,367.18084273147036,2020-12-06 +716,7153.0,4.0,20.380952380952394,363.70197131410526,2020-12-06 +715,7142.3,4.0,20.2857142857143,359.1172845069608,2020-12-06 +714,7132.400000000001,4.0,20.142857142857157,355.58560888817516,2020-12-06 +713,7121.900000000001,4.0,19.2857142857143,350.82849011568834,2020-12-06 +712,7111.400000000001,4.0,18.333333333333346,345.285079075217,2020-12-06 +711,7100.900000000001,4.0,17.904761904761916,340.92373738301944,2020-12-06 +710,7089.200000000001,4.0,17.761904761904773,335.77352818263523,2020-12-06 +709,7078.400000000001,4.0,17.761904761904773,334.4347017802354,2020-12-06 +708,7067.6,4.0,18.000000000000014,335.994737353456,2020-12-06 +707,7056.400000000001,4.0,18.047619047619058,337.1236337230898,2020-12-06 +706,7045.700000000001,4.0,18.428571428571438,336.61952319280107,2020-12-06 +705,7034.400000000001,4.0,18.61904761904763,334.593195344162,2020-12-06 +704,7024.400000000001,4.0,18.61904761904763,332.889220710413,2020-12-06 +703,7013.6,4.0,18.523809523809533,334.09569842185135,2020-12-06 +689,6860.0,4.0,17.333333333333343,339.72808657029776,2020-12-06 +690,6870.700000000001,4.0,17.523809523809536,333.71095338979944,2020-12-06 +691,6880.400000000001,4.0,18.09523809523811,333.09096198403813,2020-12-06 +692,6891.5,4.0,18.1904761904762,341.9195955106919,2020-12-06 +693,6902.8,4.0,17.904761904761916,350.9104846524965,2020-12-06 +694,6914.200000000001,4.0,17.142857142857153,355.8969128897744,2020-12-06 +720,7194.3,4.0,20.09523809523811,367.69370661746814,2020-12-06 +695,6925.3,4.0,17.190476190476204,351.68574680734883,2020-12-06 +697,6947.400000000001,4.0,17.333333333333343,329.43837917502714,2020-12-06 +698,6958.700000000001,4.0,17.190476190476204,325.5108504810347,2020-12-06 +699,6969.5,4.0,17.190476190476204,327.69620976787735,2020-12-06 +700,6981.0,4.0,17.238095238095248,333.05579861514855,2020-12-06 +701,6991.700000000001,4.0,17.571428571428584,335.7319090671474,2020-12-06 +702,7002.900000000001,4.0,18.000000000000014,335.92593691988463,2020-12-06 +696,6936.400000000001,4.0,17.190476190476204,341.1853047921935,2020-12-06 +688,6848.700000000001,4.0,17.00000000000001,348.81428094113176,2020-12-06 +721,7204.200000000001,4.0,19.857142857142872,370.06879168835655,2020-12-06 +723,7225.400000000001,4.0,19.761904761904773,378.60494430622555,2020-12-06 +754,7554.200000000001,4.0,17.80952380952382,340.4829940016266,2020-12-06 +753,7542.8,4.0,17.904761904761916,331.3185956482738,2020-12-06 +752,7531.700000000001,4.0,17.61904761904763,323.6955313691309,2020-12-06 +751,7521.0,4.0,17.380952380952394,323.45236932892385,2020-12-06 +750,7510.1,4.0,17.190476190476204,334.1386287476316,2020-12-06 +749,7499.200000000001,4.0,16.952380952380963,349.527050835556,2020-12-06 +748,7487.900000000001,4.0,16.904761904761916,365.24655730367874,2020-12-06 +747,7476.8,4.0,17.714285714285726,372.0627607923607,2020-12-06 +746,7464.8,4.0,18.571428571428584,366.0632570490359,2020-12-06 +745,7454.5,4.0,19.71428571428573,352.74656680594836,2020-12-06 +744,7444.1,4.0,20.42857142857144,341.1312288019116,2020-12-06 +743,7433.200000000001,4.0,20.52380952380954,335.79545136942477,2020-12-06 +742,7423.5,4.0,20.23809523809525,339.847956532232,2020-12-06 +741,7413.0,4.0,19.71428571428573,345.18115629323603,2020-12-06 +740,7403.0,4.0,19.2857142857143,347.160672523905,2020-12-06 +739,7392.200000000001,4.0,19.47619047619049,343.3839720996657,2020-12-06 +738,7381.900000000001,4.0,19.523809523809536,336.4470221456402,2020-12-06 +724,7235.900000000001,4.0,19.66666666666668,380.84146016736804,2020-12-06 +725,7246.5,4.0,19.42857142857144,381.03989358851896,2020-12-06 +726,7257.5,4.0,19.47619047619049,378.5839097277909,2020-12-06 +727,7268.0,4.0,19.380952380952394,371.431421052185,2020-12-06 +728,7278.5,4.0,19.66666666666668,362.75962979478595,2020-12-06 +729,7288.400000000001,4.0,19.90476190476192,358.92676662735647,2020-12-06 +722,7214.700000000001,4.0,19.71428571428573,373.6898262022395,2020-12-06 +730,7298.700000000001,4.0,19.761904761904773,360.0957757059824,2020-12-06 +732,7319.900000000001,4.0,19.047619047619058,367.8708815612128,2020-12-06 +733,7330.1,4.0,18.90476190476192,365.3406152459261,2020-12-06 +734,7340.700000000001,4.0,18.90476190476192,356.4720946944438,2020-12-06 +735,7351.200000000001,4.0,19.047619047619058,345.1235933214449,2020-12-06 +736,7361.400000000001,4.0,19.428571428571445,336.61031158910424,2020-12-06 +737,7371.5,4.0,19.619047619047635,333.0788799550878,2020-12-06 +731,7309.0,4.0,19.333333333333346,364.88105806212457,2020-12-06 +755,7565.400000000001,4.0,17.66666666666668,348.3133858356781,2020-12-06 +687,6837.5,4.0,17.380952380952394,356.6291707085393,2020-12-06 +685,6815.0,4.0,17.904761904761916,366.8530414765222,2020-12-06 +648,6416.700000000001,4.0,18.85714285714287,354.0583186220716,2020-12-06 +647,6405.700000000001,4.0,19.190476190476204,354.22207334899315,2020-12-06 +646,6395.3,4.0,19.333333333333346,351.7302367509551,2020-12-06 +645,6384.3,4.0,19.61904761904763,347.24316102533294,2020-12-06 +644,6373.8,4.0,19.619047619047635,345.58282782352074,2020-12-06 +643,6363.5,4.0,19.66666666666668,347.9587737083931,2020-12-06 +642,6353.3,4.0,19.66666666666668,353.81710605906807,2020-12-06 +641,6342.8,4.0,19.619047619047635,360.57897417281674,2020-12-06 +640,6332.5,4.0,19.523809523809536,364.0869133362895,2020-12-06 +639,6322.1,4.0,19.380952380952394,360.2494150498969,2020-12-06 +638,6311.5,4.0,19.523809523809536,350.4031537197971,2020-12-06 +637,6301.1,4.0,19.619047619047635,341.3104419451909,2020-12-06 +636,6290.700000000001,4.0,19.761904761904773,335.74435635973214,2020-12-06 +635,6279.900000000001,4.0,19.523809523809536,338.457271685151,2020-12-06 +634,6270.3,4.0,19.619047619047635,344.5678078155496,2020-12-06 +633,6259.400000000001,4.0,18.952380952380963,347.41688788533816,2020-12-06 +632,6248.900000000001,4.0,18.23809523809525,345.6555111751891,2020-12-06 +619,6101.400000000001,4.0,17.380952380952394,367.3399256498589,2020-12-06 +907,9071.6,4.0,18.09523809523811,329.64447532605647,2020-12-06 +620,6112.700000000001,4.0,17.333333333333343,367.1152666427999,2020-12-06 +621,6124.3,4.0,17.42857142857144,364.00753388141857,2020-12-06 +622,6135.1,4.0,17.238095238095248,361.2314863614007,2020-12-06 +623,6146.700000000001,4.0,17.2857142857143,363.68253775595883,2020-12-06 +649,6427.400000000001,4.0,18.85714285714287,348.0527677994605,2020-12-06 +624,6157.5,4.0,17.142857142857153,367.73979774652986,2020-12-06 +626,6181.200000000001,4.0,17.00000000000001,369.23851054314605,2020-12-06 +627,6192.5,4.0,17.00000000000001,363.7402167533415,2020-12-06 +628,6203.8,4.0,17.00000000000001,355.1460700879862,2020-12-06 +629,6215.5,4.0,16.80952380952382,347.2236388974309,2020-12-06 +630,6226.900000000001,4.0,17.095238095238106,342.56451065609554,2020-12-06 +631,6238.1,4.0,17.66666666666668,343.67864224628113,2020-12-06 +625,6169.3,4.0,16.904761904761916,370.12048342234357,2020-12-06 +686,6826.3,4.0,17.61904761904763,364.2844202751977,2020-12-06 +650,6437.700000000001,4.0,18.761904761904773,342.18528515622813,2020-12-06 +652,6458.8,4.0,19.000000000000014,339.6206106694218,2020-12-06 +683,6792.6,4.0,17.80952380952382,362.6211916185133,2020-12-06 +682,6781.200000000001,4.0,17.66666666666668,354.7145846022148,2020-12-06 +681,6769.6,4.0,17.80952380952382,347.1031278221466,2020-12-06 +680,6758.6,4.0,17.80952380952382,346.32559400047364,2020-12-06 +679,6747.3,4.0,17.66666666666668,351.9228163996312,2020-12-06 +678,6736.5,4.0,17.47619047619049,362.43384549065695,2020-12-06 +677,6725.1,4.0,17.238095238095248,369.8616439330748,2020-12-06 +676,6713.700000000001,4.0,17.285714285714295,369.4217822388764,2020-12-06 +675,6702.200000000001,4.0,17.61904761904763,364.9272641921624,2020-12-06 +674,6691.400000000001,4.0,17.80952380952382,357.19765151177046,2020-12-06 +673,6679.5,4.0,17.66666666666668,349.5454664968944,2020-12-06 +672,6668.6,4.0,18.190476190476204,344.2837025201875,2020-12-06 +671,6657.900000000001,4.0,18.761904761904773,339.5349856154937,2020-12-06 +670,6646.400000000001,4.0,19.2857142857143,335.8457109825017,2020-12-06 +669,6636.1,4.0,19.571428571428584,337.7467302170827,2020-12-06 +668,6625.8,4.0,19.428571428571445,340.01019762813047,2020-12-06 +667,6615.5,4.0,19.09523809523811,339.9395373873921,2020-12-06 +653,6469.1,4.0,19.000000000000014,343.56410783531146,2020-12-06 +654,6480.0,4.0,19.000000000000014,348.25706807225606,2020-12-06 +655,6490.3,4.0,18.90476190476192,349.1839253564657,2020-12-06 +656,6500.5,4.0,19.142857142857157,350.01501471928873,2020-12-06 +657,6510.700000000001,4.0,19.2857142857143,349.54483283565287,2020-12-06 +658,6521.5,4.0,19.238095238095248,347.7421069680829,2020-12-06 +651,6448.5,4.0,19.09523809523811,338.8927517540316,2020-12-06 +659,6531.8,4.0,19.428571428571445,348.9208009969609,2020-12-06 +661,6552.400000000001,4.0,19.142857142857153,349.9227146420575,2020-12-06 +662,6563.400000000001,4.0,19.333333333333346,348.8895786243399,2020-12-06 +663,6574.0,4.0,19.571428571428584,344.28625915061764,2020-12-06 +664,6584.0,4.0,19.523809523809536,338.50067062284575,2020-12-06 +665,6594.3,4.0,19.619047619047635,337.8220860068872,2020-12-06 +666,6604.6,4.0,19.333333333333346,339.31163620629417,2020-12-06 +660,6542.1,4.0,19.428571428571445,350.4489894464598,2020-12-06 +756,7576.3,4.0,17.47619047619049,353.43930919949474,2020-12-06 +684,6804.1,4.0,17.714285714285726,367.0318652086439,2020-12-06 +758,7598.6,4.0,17.142857142857153,346.88413754862813,2020-12-06 +870,8680.0,4.0,19.047619047619058,360.0854346598512,2020-12-06 +869,8669.0,4.0,18.952380952380963,362.18616824299124,2020-12-06 +868,8658.7,4.0,19.333333333333346,354.3262809119615,2020-12-06 +867,8648.2,4.0,19.761904761904773,338.20869760386375,2020-12-06 +866,8637.800000000001,4.0,19.90476190476192,320.79581740438664,2020-12-06 +865,8627.6,4.0,19.85714285714287,310.2475800337854,2020-12-06 +864,8617.6,4.0,19.380952380952394,289.63480346333995,2020-12-06 +863,8607.6,4.0,18.761904761904773,256.58691278229264,2020-12-06 +862,8597.300000000001,4.0,18.523809523809536,205.869391377782,2020-12-06 +850,8560.7,4.0,16.095238095238106,110.26668442903818,2020-12-06 +849,8537.0,4.0,15.666666666666679,225.51508654030565,2020-12-06 +848,8537.0,4.0,15.428571428571438,324.49374217240756,2020-12-06 +847,8537.0,4.0,17.571428571428584,377.8819749339019,2020-12-06 +846,8537.0,4.0,17.142857142857153,369.06728310857704,2020-12-06 +845,8525.5,4.0,17.190476190476204,330.4940162750272,2020-12-06 +844,8514.300000000001,4.0,17.285714285714295,320.55354791036484,2020-12-06 +843,8503.6,4.0,17.85714285714287,318.7646206278087,2020-12-06 +829,8348.300000000001,4.0,16.85714285714287,306.73373003710043,2020-12-06 +830,8359.5,4.0,17.095238095238106,304.81276025753226,2020-12-06 +831,8371.2,4.0,17.00000000000001,312.648604228263,2020-12-06 +832,8382.300000000001,4.0,17.00000000000001,325.5140183497248,2020-12-06 +833,8393.7,4.0,17.00000000000001,337.0149034757758,2020-12-06 +834,8405.5,4.0,17.00000000000001,343.1086953792031,2020-12-06 +871,8690.300000000001,4.0,19.190476190476204,348.64834655294675,2020-12-06 +835,8417.0,4.0,16.904761904761916,342.79035841066195,2020-12-06 +837,8439.1,4.0,17.42857142857144,335.08939292953096,2020-12-06 +838,8449.4,4.0,17.428571428571438,327.6606194207697,2020-12-06 +839,8460.4,4.0,17.80952380952382,322.1004813252147,2020-12-06 +840,8471.6,4.0,18.142857142857153,318.02720719553173,2020-12-06 +841,8482.1,4.0,17.904761904761916,313.58146790703387,2020-12-06 +842,8492.5,4.0,17.952380952380963,314.6601249444217,2020-12-06 +836,8427.7,4.0,17.047619047619058,340.03972452108496,2020-12-06 +828,8337.4,4.0,16.523809523809536,318.9803374908454,2020-12-06 +873,8711.300000000001,4.0,19.619047619047635,323.485885743597,2020-12-06 +875,8731.4,4.0,19.857142857142872,318.12605292402714,2020-12-06 +905,9050.2,4.0,17.952380952380963,349.80199178672046,2020-12-06 +904,9039.300000000001,4.0,18.47619047619049,359.6876832176689,2020-12-06 +757,7587.5,4.0,17.333333333333343,351.63708321341903,2020-12-06 +903,9028.2,4.0,18.952380952380963,367.0060527137611,2020-12-06 +902,9017.2,4.0,19.2857142857143,374.1567761090718,2020-12-06 +901,9006.800000000001,4.0,19.380952380952394,381.9424394707387,2020-12-06 +900,8996.300000000001,4.0,19.142857142857157,387.6156810940438,2020-12-06 +1220,12133.5,4.0,18.90476190476193,311.2091009133913,2020-12-06 +898,8974.2,4.0,18.90476190476192,383.3298312099284,2020-12-06 +897,8963.4,4.0,19.047619047619058,373.75467531487845,2020-12-06 +896,8952.9,4.0,19.428571428571445,364.01528168310585,2020-12-06 +895,8942.6,4.0,19.619047619047635,357.15608091368813,2020-12-06 +894,8932.4,4.0,19.619047619047635,354.19486091008025,2020-12-06 +893,8922.1,4.0,19.428571428571445,354.4047563845703,2020-12-06 +892,8911.6,4.0,19.047619047619058,353.67890007519645,2020-12-06 +891,8900.300000000001,4.0,18.90476190476192,351.9313411602154,2020-12-06 +890,8889.2,4.0,19.000000000000014,351.3453112365943,2020-12-06 +876,8741.7,4.0,20.09523809523811,323.8219797074095,2020-12-06 +877,8752.1,4.0,20.000000000000014,328.1852297743143,2020-12-06 +878,8762.800000000001,4.0,20.000000000000014,328.9957896539678,2020-12-06 +879,8772.800000000001,4.0,20.09523809523811,328.0491322896874,2020-12-06 +880,8782.7,4.0,19.952380952380967,327.49087255715847,2020-12-06 +881,8793.5,4.0,19.66666666666668,331.6559446984274,2020-12-06 +874,8721.6,4.0,19.809523809523824,317.30897492884674,2020-12-06 +882,8804.1,4.0,19.23809523809525,339.86297229075035,2020-12-06 +884,8825.7,4.0,19.190476190476204,350.52181951427485,2020-12-06 +885,8836.1,4.0,19.333333333333346,351.5252651885053,2020-12-06 +886,8846.9,4.0,19.2857142857143,352.75482939588596,2020-12-06 +887,8857.4,4.0,19.142857142857157,352.9657615360108,2020-12-06 +888,8867.800000000001,4.0,18.90476190476192,352.13623199669735,2020-12-06 +889,8878.800000000001,4.0,19.000000000000014,351.40358970677585,2020-12-06 +883,8814.5,4.0,19.190476190476204,346.7292246071245,2020-12-06 +827,8326.800000000001,4.0,16.761904761904773,332.7944084724911,2020-12-06 +872,8700.5,4.0,19.380952380952394,333.8705002411125,2020-12-06 +825,8303.7,4.0,18.333333333333346,330.43458420087666,2020-12-06 +789,7933.200000000001,4.0,19.71428571428573,331.7623901342802,2020-12-06 +788,7923.200000000001,4.0,19.857142857142872,332.3867775858262,2020-12-06 +787,7912.900000000001,4.0,20.190476190476204,326.9971367378239,2020-12-06 +786,7902.400000000001,4.0,19.952380952380967,319.63801980279663,2020-12-06 +785,7891.900000000001,4.0,19.761904761904773,317.1001780262846,2020-12-06 +784,7881.5,4.0,19.2857142857143,323.906395059112,2020-12-06 +783,7871.6,4.0,18.714285714285726,340.2072385101245,2020-12-06 +782,7861.0,4.0,18.238095238095248,360.99954860493744,2020-12-06 +781,7850.3,4.0,17.952380952380963,368.6233171586693,2020-12-06 +780,7837.900000000001,4.0,17.952380952380963,363.0418351253771,2020-12-06 +779,7827.200000000001,4.0,18.428571428571438,351.4634407854751,2020-12-06 +778,7816.5,4.0,18.523809523809536,339.86931636412555,2020-12-06 +776,7795.8,4.0,18.714285714285726,342.28879445356307,2020-12-06 +775,7784.8,4.0,18.380952380952394,348.4921090332979,2020-12-06 +774,7774.0,4.0,18.190476190476204,355.70354757452844,2020-12-06 +773,7763.3,4.0,18.142857142857153,358.1683473396646,2020-12-06 +772,7752.5,4.0,17.90476190476192,351.3235192539527,2020-12-06 +759,7609.700000000001,4.0,17.333333333333343,342.42280960939604,2020-12-06 +760,7620.400000000001,4.0,17.380952380952394,339.03582720007927,2020-12-06 +761,7631.8,4.0,17.714285714285726,338.42026047596585,2020-12-06 +826,8314.9,4.0,17.2857142857143,337.0373790463666,2020-12-06 +762,7643.1,4.0,18.238095238095248,341.01621083789155,2020-12-06 +763,7653.8,4.0,18.42857142857144,342.00452468796857,2020-12-06 +790,7943.6,4.0,19.66666666666668,330.8102342190182,2020-12-06 +764,7664.5,4.0,18.2857142857143,343.8674983707191,2020-12-06 +766,7686.5,4.0,17.90476190476192,343.5134818635339,2020-12-06 +767,7697.200000000001,4.0,18.000000000000014,337.9897701078081,2020-12-06 +768,7708.3,4.0,18.000000000000014,330.33780092647385,2020-12-06 +769,7719.5,4.0,18.000000000000014,324.74678579787815,2020-12-06 +770,7730.3,4.0,18.000000000000014,328.95515407133826,2020-12-06 +771,7741.0,4.0,18.000000000000014,339.26731463164356,2020-12-06 +765,7675.200000000001,4.0,18.142857142857153,345.15517725626694,2020-12-06 +791,7953.8,4.0,19.809523809523824,328.1379785924571,2020-12-06 +777,7805.700000000001,4.0,18.761904761904773,336.3086005667732,2020-12-06 +814,8191.0,4.0,19.333333333333346,336.811632299644,2020-12-06 +810,8149.8,4.0,18.90476190476192,321.75636595295407,2020-12-06 +811,8160.0,4.0,19.142857142857157,322.1254849785454,2020-12-06 +812,8170.700000000001,4.0,19.2857142857143,326.62481383285893,2020-12-06 +813,8180.900000000001,4.0,19.238095238095248,331.4681057295245,2020-12-06 +815,8201.7,4.0,19.47619047619049,337.75595323589084,2020-12-06 +816,8212.0,4.0,19.571428571428584,334.779706830363,2020-12-06 +824,8293.7,4.0,19.2857142857143,320.8396589453765,2020-12-06 +823,8283.7,4.0,19.523809523809536,314.6311157704963,2020-12-06 +818,8232.1,4.0,20.04761904761906,328.34978399467104,2020-12-06 +819,8242.800000000001,4.0,19.66666666666668,326.6276501169568,2020-12-06 +820,8253.4,4.0,19.23809523809525,326.2885296930316,2020-12-06 +821,8263.800000000001,4.0,19.190476190476204,322.54823438719586,2020-12-06 +792,7963.8,4.0,19.71428571428573,327.74911719058707,2020-12-06 +822,8273.800000000001,4.0,19.190476190476204,316.7249631252987,2020-12-06 +817,8221.800000000001,4.0,20.04761904761906,331.06457773629785,2020-12-06 +808,8129.6,4.0,18.90476190476192,331.51427800804834,2020-12-06 +809,8139.6,4.0,19.000000000000014,326.5429210186086,2020-12-06 +799,8036.400000000001,4.0,19.619047619047635,330.8182414581014,2020-12-06 +806,8108.700000000001,4.0,19.333333333333346,332.05413922393075,2020-12-06 +805,8098.5,4.0,19.66666666666668,326.3322799339079,2020-12-06 +804,8088.1,4.0,20.04761904761906,322.2935824506826,2020-12-06 +803,8077.700000000001,4.0,19.952380952380967,323.44826896193933,2020-12-06 +793,7974.1,4.0,19.90476190476192,331.15008718689035,2020-12-06 +802,8067.6,4.0,19.809523809523824,327.6082973192614,2020-12-06 +801,8057.200000000001,4.0,19.52380952380954,331.3809811044847,2020-12-06 +800,8046.900000000001,4.0,19.42857142857144,332.3630588908733,2020-12-06 +807,8119.0,4.0,19.047619047619058,333.81584191401396,2020-12-06 +798,8025.3,4.0,19.66666666666668,329.8096828641377,2020-12-06 +797,8015.6,4.0,19.66666666666668,332.8330728044637,2020-12-06 +796,8005.6,4.0,19.619047619047635,337.2561285568571,2020-12-06 +795,7995.200000000001,4.0,19.42857142857144,337.712001858157,2020-12-06 +794,7984.700000000001,4.0,19.52380952380954,335.88571741594734,2020-12-06 +436,4123.6,4.0,22.23809523809525,390.56880135273,2020-12-11 +433,4093.5,4.0,22.23809523809525,402.2101340465781,2020-12-11 +434,4103.400000000001,4.0,22.428571428571445,408.4450525020941,2020-12-11 +432,4083.7000000000003,4.0,22.2857142857143,392.7838813705229,2020-12-11 +435,4114.1,4.0,22.428571428571445,403.74717023901263,2020-12-11 +437,4132.900000000001,4.0,22.2857142857143,377.66902510929333,2020-12-11 +413,3892.1000000000004,4.0,21.71428571428573,405.786608189819,2020-12-11 +439,4152.400000000001,4.0,21.809523809523824,375.40968908736215,2020-12-11 +440,4162.1,4.0,22.142857142857157,379.21807097060196,2020-12-11 +441,4172.3,4.0,22.2857142857143,377.44602043851773,2020-12-11 +442,4181.8,4.0,22.333333333333346,371.2569359283848,2020-12-11 +443,4192.0,4.0,22.2857142857143,368.9326764322162,2020-12-11 +431,4072.5,4.0,22.142857142857157,386.85775286378265,2020-12-11 +444,4201.7,4.0,22.142857142857157,375.6111634376647,2020-12-11 +445,4211.6,4.0,21.809523809523824,386.1477723867262,2020-12-11 +438,4143.2,4.0,22.142857142857157,371.9687210089023,2020-12-11 +430,4063.3,4.0,21.90476190476192,387.61711400074034,2020-12-11 +417,3933.3,4.0,22.09523809523811,390.16249956055526,2020-12-11 +428,4043.1000000000004,4.0,22.000000000000014,396.95094099810103,2020-12-11 +414,3903.4,4.0,21.66666666666668,407.18370993262283,2020-12-11 +446,4222.0,4.0,22.04761904761906,391.13328727348187,2020-12-11 +415,3913.0,4.0,21.71428571428573,403.1812321887012,2020-12-11 +416,3923.4,4.0,21.857142857142872,395.28126987013934,2020-12-11 +418,3943.7000000000003,4.0,21.90476190476192,387.6002711704914,2020-12-11 +419,3953.5,4.0,22.04761904761906,388.24053349276653,2020-12-11 +412,3882.7000000000003,4.0,21.857142857142872,404.18088319983553,2020-12-11 +420,3963.3,4.0,22.33333333333335,394.8912126692447,2020-12-11 +421,3973.4,4.0,22.761904761904777,401.8383711457916,2020-12-11 +422,3982.8,4.0,22.90476190476192,408.1687591736146,2020-12-11 +423,3993.2000000000003,4.0,22.761904761904777,411.12849154845503,2020-12-11 +424,4003.0,4.0,22.33333333333335,407.7787508522998,2020-12-11 +425,4012.9,4.0,22.04761904761906,401.4172555586716,2020-12-11 +426,4023.1000000000004,4.0,21.90476190476192,398.39959550869185,2020-12-11 +427,4032.9,4.0,22.000000000000014,397.37888103321427,2020-12-11 +429,4052.8,4.0,22.000000000000014,393.07326579942605,2020-12-11 +447,4232.400000000001,4.0,22.428571428571445,390.6981682804528,2020-12-11 +478,4537.1,4.0,22.619047619047635,375.9792231801772,2020-12-11 +449,4251.2,4.0,22.619047619047635,377.668487130231,2020-12-11 +469,4448.7,4.0,22.33333333333335,368.40175028030586,2020-12-11 +470,4458.3,4.0,22.619047619047635,360.94175952268654,2020-12-11 +471,4468.0,4.0,22.619047619047635,365.57441709047174,2020-12-11 +472,4477.900000000001,4.0,22.33333333333335,380.74642078800616,2020-12-11 +473,4487.5,4.0,22.190476190476204,394.6292983841047,2020-12-11 +474,4497.0,4.0,22.09523809523811,397.51573965193904,2020-12-11 +475,4507.7,4.0,22.47619047619049,390.2038834772854,2020-12-11 +476,4517.5,4.0,22.476190476190492,379.3003480274654,2020-12-11 +477,4527.1,4.0,22.52380952380954,371.9970483931721,2020-12-11 +479,4546.7,4.0,22.666666666666682,382.50595135799875,2020-12-11 +480,4556.5,4.0,22.47619047619049,388.9963238703731,2020-12-11 +483,4586.1,4.0,23.14285714285716,389.52488891494806,2020-12-11 +481,4566.5,4.0,22.90476190476192,393.5000289041926,2020-12-11 +411,3872.2000000000003,4.0,22.000000000000014,397.93808316641105,2020-12-11 +482,4575.6,4.0,23.09523809523811,393.2525972649818,2020-12-11 +468,4438.2,4.0,22.190476190476204,382.49336720185113,2020-12-11 +448,4241.7,4.0,22.619047619047635,384.64110344355913,2020-12-11 +467,4428.3,4.0,22.190476190476204,393.51504683077,2020-12-11 +465,4408.0,4.0,22.33333333333335,394.27041127202585,2020-12-11 +450,4261.3,4.0,22.428571428571445,373.5226293641207,2020-12-11 +451,4270.6,4.0,22.04761904761906,370.35756690811854,2020-12-11 +452,4280.8,4.0,21.90476190476192,367.32558677238217,2020-12-11 +453,4290.400000000001,4.0,21.90476190476192,369.18054120364,2020-12-11 +454,4300.3,4.0,22.142857142857157,371.8326154503704,2020-12-11 +455,4310.1,4.0,22.2857142857143,371.66084188921815,2020-12-11 +456,4319.6,4.0,22.333333333333346,372.0423065128721,2020-12-11 +457,4328.8,4.0,22.2857142857143,376.11114406909076,2020-12-11 +458,4339.1,4.0,22.142857142857157,381.86295543300673,2020-12-11 +459,4349.400000000001,4.0,21.809523809523824,388.95696955699646,2020-12-11 +460,4359.3,4.0,22.04761904761906,391.95236604653104,2020-12-11 +461,4369.2,4.0,22.428571428571445,389.6993262740506,2020-12-11 +462,4378.900000000001,4.0,22.619047619047635,386.32087952487177,2020-12-11 +463,4388.6,4.0,22.52380952380954,386.02349104032197,2020-12-11 +464,4399.0,4.0,22.571428571428584,388.9403000515533,2020-12-11 +466,4417.900000000001,4.0,22.23809523809525,396.50038916548107,2020-12-11 +410,3862.5,4.0,22.142857142857157,385.9430593816637,2020-12-11 +343,3205.9,4.0,22.333333333333346,366.02573640839927,2020-12-11 +408,3842.0,4.0,22.333333333333346,361.784189824616,2020-12-11 +355,3322.7000000000003,4.0,22.380952380952394,379.8912296070048,2020-12-11 +356,3332.3,4.0,22.47619047619049,381.474134286897,2020-12-11 +357,3342.1000000000004,4.0,22.428571428571445,379.10606794598266,2020-12-11 +358,3351.3,4.0,22.571428571428584,378.31753284209594,2020-12-11 +359,3361.4,4.0,22.90476190476192,378.898381316669,2020-12-11 +360,3371.2000000000003,4.0,23.000000000000014,380.5704225647167,2020-12-11 +361,3381.1000000000004,4.0,23.285714285714302,383.6085041192939,2020-12-11 +362,3390.8,4.0,23.142857142857157,385.26703206587376,2020-12-11 +363,3400.5,4.0,23.000000000000014,383.44167901545484,2020-12-11 +364,3410.3,4.0,22.857142857142872,383.70435805546634,2020-12-11 +365,3419.2000000000003,4.0,23.14285714285716,383.9281464040076,2020-12-11 +366,3429.1000000000004,4.0,23.000000000000014,387.4360161125319,2020-12-11 +367,3439.1000000000004,4.0,23.047619047619065,390.2876263957654,2020-12-11 +368,3449.0,4.0,22.428571428571445,390.66376206703626,2020-12-11 +369,3458.4,4.0,22.52380952380954,389.877562888332,2020-12-11 +354,3312.5,4.0,22.571428571428584,375.1003238701583,2020-12-11 +370,3468.2000000000003,4.0,22.476190476190492,385.29475500695435,2020-12-11 +353,3302.8,4.0,23.047619047619065,371.5305625044315,2020-12-11 +351,3283.4,4.0,22.666666666666682,375.5067954887655,2020-12-11 +337,3147.2000000000003,4.0,22.23809523809525,374.3967114991476,2020-12-11 +484,4595.6,4.0,23.047619047619065,387.51277308516876,2020-12-11 +336,3137.4,4.0,22.428571428571445,375.54220319808417,2020-12-11 +338,3156.9,4.0,22.2857142857143,377.30599886051436,2020-12-11 +339,3167.1000000000004,4.0,22.142857142857157,379.2229590436599,2020-12-11 +340,3176.7000000000003,4.0,21.809523809523824,377.7693354119583,2020-12-11 +341,3186.1000000000004,4.0,22.142857142857157,375.7268220877888,2020-12-11 +342,3195.2000000000003,4.0,22.2857142857143,371.5057136413664,2020-12-11 +344,3215.4,4.0,22.2857142857143,362.9884867098962,2020-12-11 +345,3225.0,4.0,22.142857142857157,360.62171699689486,2020-12-11 +346,3235.3,4.0,21.90476190476192,363.9121655827492,2020-12-11 +347,3244.9,4.0,22.000000000000014,372.99820208669524,2020-12-11 +348,3255.2000000000003,4.0,21.90476190476192,382.0470510972518,2020-12-11 +349,3264.9,4.0,22.04761904761906,386.7339964053442,2020-12-11 +350,3274.5,4.0,22.33333333333335,384.1491519443874,2020-12-11 +352,3293.7000000000003,4.0,23.047619047619065,370.5115590707868,2020-12-11 +409,3852.6000000000004,4.0,22.2857142857143,372.45335690954494,2020-12-11 +371,3478.3,4.0,22.380952380952394,370.8432238609705,2020-12-11 +373,3495.9,4.0,22.47619047619049,340.7793868271805,2020-12-11 +393,3694.2000000000003,4.0,23.14285714285716,387.5710711576563,2020-12-11 +394,3703.9,4.0,23.238095238095255,381.90150586370453,2020-12-11 +395,3713.1000000000004,4.0,23.09523809523811,380.30136309088863,2020-12-11 +396,3722.5,4.0,22.71428571428573,377.95600144247214,2020-12-11 +397,3733.1000000000004,4.0,22.619047619047635,376.2508526261821,2020-12-11 +398,3742.8,4.0,22.380952380952394,370.80350758300244,2020-12-11 +399,3752.3,4.0,22.09523809523811,362.20585028272455,2020-12-11 +400,3762.7000000000003,4.0,22.190476190476204,359.9776317933942,2020-12-11 +401,3772.6000000000004,4.0,22.33333333333335,363.9571381373555,2020-12-11 +402,3782.4,4.0,22.619047619047635,370.48850706419273,2020-12-11 +403,3792.1000000000004,4.0,22.619047619047635,381.04216290642745,2020-12-11 +404,3801.6000000000004,4.0,22.428571428571445,387.09060161577247,2020-12-11 +405,3812.0,4.0,21.952380952380967,383.3178945800554,2020-12-11 +406,3822.1000000000004,4.0,22.04761904761906,372.8287494395334,2020-12-11 +407,3831.9,4.0,22.2857142857143,362.51364982227756,2020-12-11 +392,3684.3,4.0,22.809523809523824,397.13796954873663,2020-12-11 +372,3487.6000000000004,4.0,22.238095238095255,356.81169350360256,2020-12-11 +391,3674.3,4.0,22.571428571428584,403.07323382433475,2020-12-11 +389,3654.2000000000003,4.0,22.666666666666682,404.119441890944,2020-12-11 +374,3505.4,4.0,22.47619047619049,329.3356771003372,2020-12-11 +375,3515.8,4.0,23.09523809523811,333.19618202117897,2020-12-11 +376,3525.0,4.0,23.380952380952394,342.06473965969184,2020-12-11 +377,3534.0,4.0,23.33333333333335,352.6500711668541,2020-12-11 +378,3544.3,4.0,23.380952380952394,377.1057437253735,2020-12-11 +379,3554.5,4.0,23.09523809523811,402.5138906881155,2020-12-11 +380,3564.7000000000003,4.0,22.571428571428584,421.22286817700115,2020-12-11 +381,3574.9,4.0,22.238095238095255,429.47975443224044,2020-12-11 +382,3585.7000000000003,4.0,22.09523809523811,415.1194406283789,2020-12-11 +383,3595.4,4.0,22.238095238095255,386.18294660607165,2020-12-11 +384,3604.9,4.0,22.761904761904777,363.5105596512551,2020-12-11 +385,3614.7000000000003,4.0,22.809523809523824,354.3469988604662,2020-12-11 +386,3624.7000000000003,4.0,22.809523809523824,361.971407111168,2020-12-11 +387,3634.4,4.0,22.761904761904777,379.3118563332207,2020-12-11 +388,3643.9,4.0,22.571428571428584,394.95474957871323,2020-12-11 +390,3664.4,4.0,22.52380952380954,405.61625530168396,2020-12-11 +485,4605.2,4.0,22.47619047619049,385.2515292504833,2020-12-11 +623,5932.200000000001,4.0,23.190476190476208,345.3355575084957,2020-12-11 +487,4624.8,4.0,22.04761904761906,388.1380451301885,2020-12-11 +583,5551.200000000001,4.0,23.47619047619049,392.8290139226592,2020-12-11 +584,5561.0,4.0,23.000000000000014,390.2963756935323,2020-12-11 +585,5570.8,4.0,22.71428571428573,391.2228899319522,2020-12-11 +586,5580.900000000001,4.0,22.619047619047635,401.05236922559095,2020-12-11 +587,5590.8,4.0,22.2857142857143,412.25546877668535,2020-12-11 +588,5600.6,4.0,22.33333333333335,421.81690634931056,2020-12-11 +589,5610.400000000001,4.0,22.428571428571445,422.28218228520257,2020-12-11 +590,5619.5,4.0,22.142857142857157,413.8461300735373,2020-12-11 +591,5630.0,4.0,22.428571428571445,400.5086916376109,2020-12-11 +592,5640.0,4.0,22.238095238095255,386.4424003262965,2020-12-11 +593,5649.0,4.0,22.42857142857144,375.7478783594163,2020-12-11 +594,5659.400000000001,4.0,22.90476190476192,373.2289435706763,2020-12-11 +595,5668.200000000001,4.0,23.14285714285716,375.4389792659345,2020-12-11 +596,5678.1,4.0,23.238095238095255,384.70387061422497,2020-12-11 +597,5687.1,4.0,23.09523809523811,393.4906717224079,2020-12-11 +582,5540.8,4.0,23.190476190476208,390.549697164216,2020-12-11 +598,5697.0,4.0,22.619047619047635,395.17667340102855,2020-12-11 +581,5532.5,4.0,23.000000000000014,387.14885750185454,2020-12-11 +579,5512.400000000001,4.0,22.47619047619049,378.16995668894543,2020-12-11 +564,5365.0,4.0,22.95238095238097,363.76463638228864,2020-12-11 +565,5374.6,4.0,23.09523809523811,364.9227694825835,2020-12-11 +566,5384.200000000001,4.0,22.90476190476192,373.3148497989701,2020-12-11 +567,5393.700000000001,4.0,23.14285714285716,382.65799691016946,2020-12-11 +568,5403.5,4.0,23.2857142857143,388.1725609485625,2020-12-11 +569,5413.1,4.0,23.428571428571445,386.4339777028156,2020-12-11 +570,5423.3,4.0,23.142857142857157,381.3924876261995,2020-12-11 +571,5433.3,4.0,22.857142857142872,378.5948607838267,2020-12-11 +572,5443.3,4.0,22.571428571428587,379.59408742424205,2020-12-11 +573,5453.1,4.0,22.71428571428573,382.59828171500976,2020-12-11 +574,5462.900000000001,4.0,22.95238095238097,390.4463506130295,2020-12-11 +575,5472.1,4.0,22.95238095238097,395.9073592416544,2020-12-11 +576,5483.1,4.0,22.71428571428573,395.85840393615797,2020-12-11 +577,5493.0,4.0,22.761904761904777,392.8245422791699,2020-12-11 +578,5502.3,4.0,22.571428571428584,384.4195810237037,2020-12-11 +580,5522.700000000001,4.0,22.90476190476192,381.97493832996986,2020-12-11 +563,5355.5,4.0,22.571428571428584,373.2663643576096,2020-12-11 +599,5706.5,4.0,22.666666666666682,388.94923322062726,2020-12-11 +601,5725.5,4.0,22.95238095238097,371.292602870264,2020-12-11 +621,5913.900000000001,4.0,23.000000000000014,354.68126427330196,2020-12-11 +622,5923.3,4.0,23.47619047619049,347.5055480826923,2020-12-11 +624,5941.6,4.0,23.09523809523811,349.6771545029552,2020-12-11 +625,5950.900000000001,4.0,22.571428571428587,356.2105417916829,2020-12-11 +626,5960.200000000001,4.0,22.571428571428584,359.8557070778626,2020-12-11 +627,5969.6,4.0,22.666666666666682,360.5723377854359,2020-12-11 +628,5979.0,4.0,22.761904761904777,355.58399386550605,2020-12-11 +629,5988.400000000001,4.0,22.857142857142872,351.53426088602214,2020-12-11 +630,5997.900000000001,4.0,23.380952380952397,350.2241910968746,2020-12-11 +631,6006.900000000001,4.0,23.380952380952397,356.49918047265544,2020-12-11 +632,6016.3,4.0,23.71428571428573,367.8533007445872,2020-12-11 +633,6024.6,4.0,23.33333333333335,377.15849486528464,2020-12-11 +634,6034.6,4.0,23.285714285714302,375.26814955479637,2020-12-11 +335,3127.7000000000003,4.0,22.33333333333335,376.9606243874539,2020-12-11 +635,6044.1,4.0,23.04761904761906,365.50808305209716,2020-12-11 +620,5904.6,4.0,22.619047619047635,360.3097835419749,2020-12-11 +600,5716.1,4.0,22.71428571428573,378.413365514461,2020-12-11 +619,5894.700000000001,4.0,22.666666666666682,362.0536328165582,2020-12-11 +617,5876.5,4.0,22.71428571428573,347.69143993833757,2020-12-11 +602,5735.200000000001,4.0,23.047619047619065,372.9771306191741,2020-12-11 +603,5744.8,4.0,22.571428571428584,381.00983238441074,2020-12-11 +604,5754.200000000001,4.0,22.380952380952394,388.58239751401914,2020-12-11 +605,5763.3,4.0,22.2857142857143,387.29137941480565,2020-12-11 +606,5773.5,4.0,22.619047619047635,377.5322542410519,2020-12-11 +607,5783.1,4.0,23.380952380952394,365.90664843308906,2020-12-11 +608,5792.0,4.0,23.71428571428573,356.7461399976716,2020-12-11 +609,5801.3,4.0,23.619047619047635,358.6976169433486,2020-12-11 +610,5810.700000000001,4.0,23.52380952380954,368.57557289921107,2020-12-11 +611,5819.8,4.0,22.90476190476192,377.61795403901317,2020-12-11 +612,5829.1,4.0,22.71428571428573,382.1177885606447,2020-12-11 +613,5838.5,4.0,22.52380952380954,378.84326449974014,2020-12-11 +614,5848.5,4.0,22.42857142857144,365.5666854068851,2020-12-11 +615,5857.900000000001,4.0,22.52380952380954,353.620365597852,2020-12-11 +616,5867.200000000001,4.0,22.90476190476192,346.9981405699972,2020-12-11 +618,5885.900000000001,4.0,22.809523809523824,355.0498420427666,2020-12-11 +486,4614.7,4.0,21.857142857142872,385.67040773231275,2020-12-11 +562,5346.0,4.0,22.380952380952394,386.4643682042,2020-12-11 +560,5325.0,4.0,22.571428571428584,373.0838237120888,2020-12-11 +507,4822.1,4.0,23.047619047619065,387.11048155878416,2020-12-11 +508,4831.7,4.0,23.142857142857157,381.07484632415753,2020-12-11 +509,4841.0,4.0,23.33333333333335,373.46573172636363,2020-12-11 +510,4850.7,4.0,22.761904761904777,368.80957341493536,2020-12-11 +511,4860.1,4.0,22.809523809523824,370.9985264565183,2020-12-11 +512,4869.900000000001,4.0,22.52380952380954,378.1265817011241,2020-12-11 +513,4878.900000000001,4.0,22.52380952380954,386.7718435272026,2020-12-11 +514,4889.1,4.0,22.380952380952397,392.8908279310533,2020-12-11 +515,4899.0,4.0,22.42857142857144,390.9330363253084,2020-12-11 +516,4908.5,4.0,22.666666666666682,387.06223170717567,2020-12-11 +517,4918.3,4.0,23.09523809523811,382.45974242609316,2020-12-11 +518,4928.1,4.0,23.285714285714302,382.0571706215435,2020-12-11 +519,4938.0,4.0,23.238095238095255,388.15817703351433,2020-12-11 +520,4947.200000000001,4.0,22.761904761904777,392.7428116870999,2020-12-11 +521,4957.3,4.0,22.71428571428573,394.534252215305,2020-12-11 +506,4812.0,4.0,23.04761904761906,393.45807283596247,2020-12-11 +522,4967.400000000001,4.0,23.09523809523811,393.1984310420877,2020-12-11 +505,4803.1,4.0,22.809523809523824,393.5965286629222,2020-12-11 +503,4783.5,4.0,22.428571428571445,388.3507338366802,2020-12-11 +488,4634.900000000001,4.0,22.2857142857143,387.53922071693614,2020-12-11 +489,4644.5,4.0,22.23809523809525,383.56385655275307,2020-12-11 +490,4653.3,4.0,22.428571428571445,375.26142206462566,2020-12-11 +491,4664.1,4.0,22.238095238095255,364.37225925476724,2020-12-11 +492,4673.6,4.0,22.42857142857144,356.2442595580815,2020-12-11 +493,4683.2,4.0,22.90476190476192,354.8435227529575,2020-12-11 +494,4692.5,4.0,23.14285714285716,360.649483802334,2020-12-11 +495,4702.5,4.0,23.238095238095255,375.69366797770886,2020-12-11 +496,4712.400000000001,4.0,23.190476190476204,394.2921588329757,2020-12-11 +497,4722.400000000001,4.0,22.571428571428584,410.44774547046035,2020-12-11 +498,4732.3,4.0,22.33333333333335,418.7011308994415,2020-12-11 +499,4742.8,4.0,22.04761904761906,416.48883649742004,2020-12-11 +500,4753.400000000001,4.0,21.90476190476192,406.40624314608675,2020-12-11 +501,4763.0,4.0,21.90476190476192,394.02476725639804,2020-12-11 +502,4772.900000000001,4.0,22.04761904761906,387.9252164037757,2020-12-11 +504,4793.2,4.0,22.428571428571445,390.89810736760967,2020-12-11 +561,5336.200000000001,4.0,22.380952380952394,386.89565002798315,2020-12-11 +523,4977.200000000001,4.0,23.047619047619065,387.6109191418693,2020-12-11 +525,4996.5,4.0,22.71428571428573,380.89785375700194,2020-12-11 +545,5184.0,4.0,23.428571428571445,378.9539436242158,2020-12-11 +546,5193.900000000001,4.0,22.90476190476192,389.25880069365286,2020-12-11 +547,5203.400000000001,4.0,22.619047619047635,395.7605512027841,2020-12-11 +548,5213.8,4.0,22.571428571428587,396.8076664531886,2020-12-11 +549,5223.6,4.0,22.761904761904777,387.86837564917266,2020-12-11 +550,5233.400000000001,4.0,23.190476190476204,372.2648275130409,2020-12-11 +551,5242.3,4.0,23.666666666666682,353.7719650996968,2020-12-11 +552,5251.400000000001,4.0,24.095238095238113,341.035393464098,2020-12-11 +553,5260.700000000001,4.0,24.476190476190496,340.5082523536601,2020-12-11 +554,5269.6,4.0,24.2857142857143,343.78320735637055,2020-12-11 +555,5278.6,4.0,23.95238095238097,344.02431966802,2020-12-11 +556,5288.0,4.0,23.476190476190492,338.5319951548041,2020-12-11 +557,5296.900000000001,4.0,22.95238095238097,329.018466335933,2020-12-11 +558,5306.700000000001,4.0,23.000000000000014,332.3199430103995,2020-12-11 +559,5316.3,4.0,22.95238095238097,352.0218162387279,2020-12-11 +544,5174.700000000001,4.0,23.666666666666682,366.0325808668706,2020-12-11 +524,4987.3,4.0,23.09523809523811,384.0586950337164,2020-12-11 +543,5165.0,4.0,23.95238095238097,355.64815906043924,2020-12-11 +541,5146.3,4.0,24.095238095238113,344.2628207681498,2020-12-11 +526,5005.6,4.0,22.666666666666682,371.50447704746057,2020-12-11 +527,5015.0,4.0,23.2857142857143,361.5002198333592,2020-12-11 +528,5023.900000000001,4.0,23.71428571428573,352.4173439606092,2020-12-11 +529,5033.5,4.0,23.619047619047635,347.1922976812497,2020-12-11 +530,5043.3,4.0,23.428571428571445,349.7394589997039,2020-12-11 +531,5052.700000000001,4.0,23.047619047619065,354.23343612517704,2020-12-11 +532,5062.400000000001,4.0,22.90476190476192,357.2579510083783,2020-12-11 +533,5071.900000000001,4.0,23.000000000000014,360.87566145071503,2020-12-11 +534,5081.200000000001,4.0,23.000000000000014,363.5576795970943,2020-12-11 +535,5090.200000000001,4.0,23.000000000000014,364.6144175585712,2020-12-11 +536,5100.200000000001,4.0,22.90476190476192,365.0466001709481,2020-12-11 +537,5109.8,4.0,23.047619047619065,360.9277590668527,2020-12-11 +538,5119.5,4.0,23.33333333333335,354.7553133637309,2020-12-11 +539,5128.200000000001,4.0,23.666666666666682,349.8001593132399,2020-12-11 +540,5137.8,4.0,23.95238095238097,345.8373135580854,2020-12-11 +542,5156.400000000001,4.0,24.095238095238113,348.6980882154761,2020-12-11 +334,3117.4,4.0,22.2857142857143,376.04975504075276,2020-12-11 +37,262.5,4.0,17.00000000000001,323.8099602822913,2020-12-11 +332,3098.3,4.0,22.90476190476192,366.7538270166175,2020-12-11 +114,998.1,4.0,19.333333333333346,315.5785143727321,2020-12-11 +115,1007.6,4.0,18.523809523809536,304.8111410236777,2020-12-11 +116,1018.0,4.0,18.380952380952394,296.47356550470295,2020-12-11 +117,1028.6000000000001,4.0,18.428571428571438,289.7711309573871,2020-12-11 +118,1037.9,4.0,18.09523809523811,281.31222344895036,2020-12-11 +119,1048.0,4.0,18.000000000000014,272.0639238512181,2020-12-11 +120,1058.1000000000001,4.0,17.80952380952382,261.0455189744128,2020-12-11 +121,1067.8,4.0,17.61904761904763,255.07208449014018,2020-12-11 +122,1077.9,4.0,18.142857142857153,257.04045585604274,2020-12-11 +123,1088.0,4.0,17.66666666666668,262.05475885232363,2020-12-11 +124,1098.2,4.0,17.142857142857153,266.18022973428975,2020-12-11 +125,1109.8,4.0,17.00000000000001,268.71728646845844,2020-12-11 +126,1119.4,4.0,17.142857142857153,266.15953772092007,2020-12-11 +127,1129.5,4.0,17.571428571428584,266.0503586897795,2020-12-11 +128,1139.7,4.0,18.2857142857143,266.3065571365179,2020-12-11 +113,988.6,4.0,20.09523809523811,319.98624409552315,2020-12-11 +129,1149.4,4.0,18.000000000000014,263.1032886581647,2020-12-11 +112,978.4000000000001,4.0,20.61904761904763,313.02440372343625,2020-12-11 +110,958.9000000000001,4.0,21.09523809523811,278.2358415167673,2020-12-11 +95,808.2,4.0,16.761904761904773,263.29806979633105,2020-12-11 +96,818.2,4.0,17.047619047619058,259.32957335531387,2020-12-11 +97,828.3000000000001,4.0,17.333333333333343,263.10886504387895,2020-12-11 +98,838.9000000000001,4.0,17.61904761904763,271.67640755438896,2020-12-11 +99,848.6,4.0,17.047619047619058,277.417443718744,2020-12-11 +100,859.2,4.0,16.904761904761916,278.52895559006424,2020-12-11 +101,869.4000000000001,4.0,17.00000000000001,274.9904875786886,2020-12-11 +102,879.7,4.0,17.00000000000001,268.6151597156582,2020-12-11 +103,890.1,4.0,17.00000000000001,264.9262833755397,2020-12-11 +104,900.2,4.0,16.904761904761916,264.4078114805924,2020-12-11 +105,910.5,4.0,16.952380952380963,264.0385828909939,2020-12-11 +106,920.4000000000001,4.0,17.190476190476204,263.39275744680555,2020-12-11 +107,931.2,4.0,18.09523809523811,262.18440475746587,2020-12-11 +108,941.4000000000001,4.0,19.2857142857143,261.3516213510446,2020-12-11 +109,949.7,4.0,20.380952380952394,264.74353399398314,2020-12-11 +111,968.5,4.0,21.238095238095255,297.11383673703654,2020-12-11 +94,797.3000000000001,4.0,16.47619047619049,265.3857524885208,2020-12-11 +130,1159.6000000000001,4.0,18.000000000000014,257.0407166094823,2020-12-11 +132,1179.5,4.0,18.000000000000014,245.07021241340416,2020-12-11 +152,1378.3000000000002,4.0,17.333333333333343,253.3026764741384,2020-12-11 +153,1388.5,4.0,17.238095238095248,252.79115668237299,2020-12-11 +154,1399.0,4.0,17.190476190476204,252.83355004579045,2020-12-11 +155,1409.3000000000002,4.0,17.2857142857143,250.54865644227067,2020-12-11 +156,1418.3000000000002,4.0,17.095238095238106,247.77822189913985,2020-12-11 +157,1428.6000000000001,4.0,17.47619047619049,246.81906853007405,2020-12-11 +158,1438.7,4.0,17.47619047619049,246.6255893973215,2020-12-11 +159,1448.3000000000002,4.0,17.523809523809533,244.24098686024672,2020-12-11 +160,1458.2,4.0,17.523809523809536,241.9945616847686,2020-12-11 +161,1467.6000000000001,4.0,17.714285714285726,237.2419273335738,2020-12-11 +162,1477.7,4.0,18.000000000000014,232.4051182267615,2020-12-11 +163,1487.3000000000002,4.0,18.380952380952394,231.0048662611244,2020-12-11 +164,1497.0,4.0,18.333333333333346,234.8132657853403,2020-12-11 +165,1506.3000000000002,4.0,18.2857142857143,242.71759169522008,2020-12-11 +166,1515.8000000000002,4.0,18.142857142857153,252.13506605089367,2020-12-11 +151,1368.2,4.0,17.47619047619049,250.71250181100055,2020-12-11 +131,1169.3,4.0,18.000000000000014,249.8196123314989,2020-12-11 +150,1358.2,4.0,17.571428571428584,247.26870423437504,2020-12-11 +148,1338.6000000000001,4.0,18.047619047619058,245.1769158176824,2020-12-11 +133,1189.3,4.0,18.09523809523811,249.14924028587416,2020-12-11 +134,1198.9,4.0,17.85714285714287,256.9807540325395,2020-12-11 +135,1209.0,4.0,17.714285714285726,263.1692091177221,2020-12-11 +136,1219.1000000000001,4.0,17.761904761904773,263.7801628164552,2020-12-11 +137,1228.9,4.0,17.66666666666668,255.96749474031083,2020-12-11 +138,1238.5,4.0,17.61904761904763,246.15876858979902,2020-12-11 +139,1248.8000000000002,4.0,17.380952380952394,240.3141637884141,2020-12-11 +140,1258.4,4.0,16.61904761904763,238.34328430264998,2020-12-11 +141,1268.5,4.0,16.2857142857143,240.5203326222328,2020-12-11 +142,1279.8000000000002,4.0,16.380952380952394,245.22848619370828,2020-12-11 +143,1289.6000000000001,4.0,16.571428571428584,247.99886453982242,2020-12-11 +144,1299.6000000000001,4.0,16.85714285714287,249.69347119420962,2020-12-11 +145,1309.6000000000001,4.0,17.142857142857153,250.63778381131542,2020-12-11 +146,1319.8000000000002,4.0,17.333333333333343,248.78020428528097,2020-12-11 +147,1329.0,4.0,17.66666666666668,245.69352752358105,2020-12-11 +149,1348.2,4.0,18.047619047619058,245.6057632262731,2020-12-11 +167,1526.0,4.0,17.90476190476192,258.575464458581,2020-12-11 +93,797.3000000000001,4.0,16.619047619047628,263.61875826189157,2020-12-11 +91,776.4000000000001,4.0,17.00000000000001,249.84679905197484,2020-12-11 +31,195.0,4.0,16.85714285714287,313.54592580618726,2020-12-11 +32,206.8,4.0,16.333333333333343,323.4540769624423,2020-12-11 +33,217.9,4.0,16.47619047619049,327.28663589391084,2020-12-11 +34,229.4,4.0,16.952380952380963,326.98269690975405,2020-12-11 +35,240.4,4.0,17.095238095238106,323.8658826156462,2020-12-11 +36,251.60000000000002,4.0,17.00000000000001,323.6236354649285,2020-12-11 +38,272.5,4.0,16.904761904761916,322.0144146130425,2020-12-11 +39,283.7,4.0,17.142857142857153,319.0984820439344,2020-12-11 +40,294.5,4.0,17.2857142857143,315.0434029530285,2020-12-11 +41,305.0,4.0,17.333333333333343,307.95322088261787,2020-12-11 +42,315.6,4.0,17.190476190476204,300.2470117121171,2020-12-11 +43,326.1,4.0,17.190476190476204,291.0958510822281,2020-12-11 +44,336.6,4.0,17.333333333333343,277.70159595691143,2020-12-11 +45,346.6,4.0,17.61904761904763,284.3601043711046,2020-12-11 +46,356.6,4.0,17.61904761904763,301.92457598265355,2020-12-11 +30,184.0,4.0,17.523809523809533,298.6819961975042,2020-12-11 +47,366.8,4.0,15.904761904761916,296.34031584214006,2020-12-11 +29,173.10000000000002,4.0,18.142857142857153,286.6884549001984,2020-12-11 +27,153.0,4.0,18.1904761904762,261.82725922225876,2020-12-11 +636,6053.3,4.0,23.14285714285716,350.3038536754491,2020-12-11 +13,54.7,4.0,31.714285714285737,120.07284244301488,2020-12-11 +14,61.1,4.0,27.714285714285733,140.18593019519616,2020-12-11 +15,67.0,4.0,26.90476190476192,153.3707108653718,2020-12-11 +16,73.60000000000001,4.0,27.80952380952383,158.82508321492716,2020-12-11 +17,80.0,4.0,28.619047619047638,157.98099588653335,2020-12-11 +18,85.9,4.0,28.04761904761907,156.3527249237616,2020-12-11 +19,92.4,4.0,28.095238095238116,156.83199620592825,2020-12-11 +20,98.30000000000001,4.0,28.00000000000002,157.04708784694088,2020-12-11 +21,104.7,4.0,27.619047619047638,155.7423132775377,2020-12-11 +22,110.60000000000001,4.0,27.19047619047621,157.68102111734532,2020-12-11 +23,117.60000000000001,4.0,25.95238095238097,165.12685125594524,2020-12-11 +24,124.7,4.0,23.571428571428587,182.44155213139675,2020-12-11 +25,133.6,4.0,21.42857142857144,210.78548360397735,2020-12-11 +26,142.9,4.0,19.42857142857144,239.6494384493475,2020-12-11 +28,163.5,4.0,18.333333333333343,276.91337453082036,2020-12-11 +92,787.0,4.0,17.1904761904762,257.09637324511954,2020-12-11 +48,366.8,4.0,17.809523809523817,254.45287962565573,2020-12-11 +56,419.1,4.0,15.238095238095248,147.8400220269104,2020-12-11 +76,623.1,4.0,17.095238095238106,256.06292061024783,2020-12-11 +77,633.8000000000001,4.0,17.00000000000001,250.59749582739545,2020-12-11 +78,643.7,4.0,17.00000000000001,243.49552289436025,2020-12-11 +79,653.7,4.0,17.095238095238106,237.39421721902704,2020-12-11 +80,664.5,4.0,16.85714285714287,236.13658269205155,2020-12-11 +81,674.4000000000001,4.0,16.714285714285726,238.10021722980724,2020-12-11 +82,684.7,4.0,16.66666666666668,238.59997497728813,2020-12-11 +83,694.4000000000001,4.0,16.714285714285726,236.41218731391913,2020-12-11 +84,704.6,4.0,16.85714285714287,234.31932403296423,2020-12-11 +85,714.1,4.0,17.095238095238106,235.65980595900433,2020-12-11 +86,725.0,4.0,17.00000000000001,242.8238868291521,2020-12-11 +87,735.4000000000001,4.0,17.00000000000001,250.9980062789073,2020-12-11 +88,746.0,4.0,17.00000000000001,254.3105030967137,2020-12-11 +89,756.0,4.0,17.00000000000001,252.66721168240215,2020-12-11 +90,766.6,4.0,17.00000000000001,248.70673802885736,2020-12-11 +75,612.9,4.0,16.85714285714287,258.54915359376054,2020-12-11 +49,366.8,4.0,22.23809523809525,180.11643346820176,2020-12-11 +74,602.3000000000001,4.0,16.714285714285726,257.8990435177757,2020-12-11 +72,581.9,4.0,16.714285714285726,258.466360488574,2020-12-11 +57,428.70000000000005,4.0,16.095238095238106,195.10291552150161,2020-12-11 +58,438.5,4.0,16.619047619047628,224.5286366314613,2020-12-11 +59,448.70000000000005,4.0,17.1904761904762,234.09389056949215,2020-12-11 +60,458.40000000000003,4.0,17.00000000000001,241.21720214288837,2020-12-11 +61,469.1,4.0,17.00000000000001,251.4544653173624,2020-12-11 +62,478.8,4.0,16.904761904761916,263.80771777419113,2020-12-11 +63,489.6,4.0,17.047619047619058,270.64725072829754,2020-12-11 +64,499.8,4.0,17.42857142857144,270.69802690681854,2020-12-11 +65,509.5,4.0,17.61904761904763,265.32181447151135,2020-12-11 +66,519.7,4.0,17.61904761904763,259.48766025389943,2020-12-11 +67,529.8000000000001,4.0,17.42857142857144,255.86949827206124,2020-12-11 +68,540.1,4.0,17.047619047619058,254.8187976303476,2020-12-11 +69,550.3000000000001,4.0,16.904761904761916,256.31967339851343,2020-12-11 +70,560.4,4.0,17.095238095238106,257.3433286274318,2020-12-11 +71,571.2,4.0,16.85714285714287,258.11969441589486,2020-12-11 +73,591.8000000000001,4.0,16.66666666666668,257.9224892727437,2020-12-11 +168,1535.9,4.0,18.000000000000014,260.36538473470546,2020-12-11 +169,1546.0,4.0,18.09523809523811,262.2754738611931,2020-12-11 +170,1556.0,4.0,18.047619047619058,267.15582854422763,2020-12-11 +279,2572.4,4.0,21.619047619047635,370.4207979793619,2020-12-11 +280,2581.8,4.0,21.809523809523824,366.4084711996654,2020-12-11 +281,2592.1000000000004,4.0,21.857142857142872,361.90450703506326,2020-12-11 +282,2602.3,4.0,22.09523809523811,361.5493373350588,2020-12-11 +283,2612.2000000000003,4.0,22.09523809523811,368.3049697595451,2020-12-11 +284,2622.6000000000004,4.0,21.952380952380967,382.42277732200546,2020-12-11 +285,2633.0,4.0,21.666666666666682,399.8318942915272,2020-12-11 +286,2643.5,4.0,21.33333333333335,410.85721359041486,2020-12-11 +287,2653.8,4.0,20.952380952380963,412.0327045930471,2020-12-11 +288,2663.5,4.0,20.952380952380963,403.80401299678965,2020-12-11 +289,2673.6000000000004,4.0,21.33333333333335,389.73271026391876,2020-12-11 +290,2683.2000000000003,4.0,21.666666666666682,375.87837717691184,2020-12-11 +291,2693.1000000000004,4.0,21.952380952380967,367.28045080503705,2020-12-11 +292,2703.4,4.0,22.09523809523811,364.0920393454944,2020-12-11 +293,2712.9,4.0,22.000000000000014,363.76136573764245,2020-12-11 +278,2561.5,4.0,21.47619047619049,369.4051589240618,2020-12-11 +294,2723.3,4.0,22.000000000000014,364.6537756552686,2020-12-11 +277,2551.7000000000003,4.0,21.142857142857157,370.1443871049338,2020-12-11 +275,2531.8,4.0,20.23809523809525,379.94570314323516,2020-12-11 +260,2378.5,4.0,21.857142857142872,372.03631045823215,2020-12-11 +261,2387.5,4.0,22.09523809523811,377.120390520001,2020-12-11 +262,2397.7000000000003,4.0,22.000000000000014,381.9458289720611,2020-12-11 +263,2408.0,4.0,22.09523809523811,385.38775858249807,2020-12-11 +264,2418.5,4.0,21.952380952380967,388.94401657782566,2020-12-11 +265,2428.2000000000003,4.0,21.666666666666682,392.6266382687587,2020-12-11 +266,2438.7000000000003,4.0,21.33333333333335,396.6980024071647,2020-12-11 +267,2449.0,4.0,21.04761904761906,396.730679292962,2020-12-11 +268,2459.1000000000004,4.0,21.000000000000014,393.3806827583019,2020-12-11 +269,2469.2000000000003,4.0,20.952380952380967,390.23060636621756,2020-12-11 +270,2479.5,4.0,20.66666666666668,390.22188702390997,2020-12-11 +271,2490.3,4.0,20.333333333333346,393.95786436632005,2020-12-11 +272,2500.5,4.0,20.04761904761906,396.81884905234654,2020-12-11 +273,2511.0,4.0,19.809523809523824,396.1799006182853,2020-12-11 +274,2521.1000000000004,4.0,20.04761904761906,388.95598193584993,2020-12-11 +276,2541.8,4.0,20.809523809523824,373.13166139831026,2020-12-11 +259,2368.2000000000003,4.0,21.809523809523824,369.7419961991117,2020-12-11 +295,2732.7000000000003,4.0,22.09523809523811,367.3082093838684,2020-12-11 +297,2752.5,4.0,21.571428571428587,381.2906794746703,2020-12-11 +317,2951.5,4.0,22.380952380952397,392.8103377545514,2020-12-11 +318,2960.5,4.0,22.619047619047635,394.6128605572758,2020-12-11 +319,2970.9,4.0,22.476190476190492,392.6498166483458,2020-12-11 +320,2980.8,4.0,22.380952380952394,387.13396870607926,2020-12-11 +321,2990.5,4.0,22.238095238095255,382.84209036250087,2020-12-11 +322,3001.1000000000004,4.0,22.571428571428584,380.2006599600262,2020-12-11 +323,3010.8,4.0,22.52380952380954,379.2968144132258,2020-12-11 +324,3020.5,4.0,22.52380952380954,381.2423447343216,2020-12-11 +325,3030.2000000000003,4.0,22.571428571428584,388.45023567670296,2020-12-11 +326,3039.6000000000004,4.0,22.33333333333335,394.54087475662925,2020-12-11 +327,3049.8,4.0,22.142857142857157,397.2974817838607,2020-12-11 +328,3060.3,4.0,22.33333333333335,393.6095389925372,2020-12-11 +329,3070.1000000000004,4.0,22.47619047619049,382.8355067598619,2020-12-11 +330,3079.6000000000004,4.0,22.666666666666682,371.31066382958363,2020-12-11 +331,3089.2000000000003,4.0,22.809523809523824,365.46273081045814,2020-12-11 +316,2941.6000000000004,4.0,22.619047619047635,384.2731923205953,2020-12-11 +296,2742.4,4.0,21.952380952380967,372.7935421221549,2020-12-11 +315,2931.7000000000003,4.0,22.476190476190492,377.5646137848206,2020-12-11 +313,2911.6000000000004,4.0,22.000000000000014,375.1046308420781,2020-12-11 +298,2762.9,4.0,21.380952380952394,389.8719293942895,2020-12-11 +299,2772.4,4.0,21.380952380952394,394.08052770533,2020-12-11 +300,2781.9,4.0,21.571428571428587,393.7851928626311,2020-12-11 +301,2793.3,4.0,21.952380952380967,392.2635522987365,2020-12-11 +302,2803.2000000000003,4.0,22.09523809523811,390.0536794257232,2020-12-11 +303,2813.5,4.0,22.000000000000014,386.7804879268519,2020-12-11 +304,2823.0,4.0,22.000000000000014,381.665703801226,2020-12-11 +305,2833.1000000000004,4.0,22.000000000000014,379.0796632149747,2020-12-11 +306,2843.5,4.0,22.000000000000014,379.6447574351604,2020-12-11 +307,2853.3,4.0,21.809523809523824,382.86137410452864,2020-12-11 +308,2863.6000000000004,4.0,22.2857142857143,386.0132386606293,2020-12-11 +309,2873.3,4.0,22.571428571428587,387.2599005397825,2020-12-11 +310,2882.2000000000003,4.0,22.666666666666682,383.929510330494,2020-12-11 +311,2892.3,4.0,22.476190476190492,383.1506388887849,2020-12-11 +312,2902.1000000000004,4.0,22.428571428571445,379.51372075788737,2020-12-11 +314,2921.9,4.0,22.47619047619049,373.0700566315214,2020-12-11 +258,2358.0,4.0,21.523809523809536,371.4008573996508,2020-12-11 +257,2348.6,4.0,21.428571428571445,369.61068715168255,2020-12-11 +256,2338.4,4.0,21.523809523809536,363.48812051077374,2020-12-11 +201,1797.8000000000002,4.0,17.952380952380963,312.53663341350375,2020-12-11 +202,1808.8000000000002,4.0,17.714285714285726,333.5239888873539,2020-12-11 +203,1820.6000000000001,4.0,17.66666666666668,352.90398963982096,2020-12-11 +204,1831.3000000000002,4.0,17.523809523809536,361.4087322819428,2020-12-11 +205,1842.7,4.0,17.952380952380963,360.0823565361527,2020-12-11 +206,1853.1000000000001,4.0,18.761904761904773,346.1746958950133,2020-12-11 +207,1863.3000000000002,4.0,19.333333333333346,343.0651389819134,2020-12-11 +208,1873.6000000000001,4.0,19.90476190476192,342.0157227669629,2020-12-11 +209,1883.7,4.0,19.142857142857157,318.6881360426861,2020-12-11 +210,1883.7,4.0,21.571428571428584,264.2227884429189,2020-12-11 +211,1883.7,4.0,22.952380952380967,189.54349109389244,2020-12-11 +212,1907.4,4.0,23.666666666666686,111.71653647427067,2020-12-11 +214,1924.1000000000001,4.0,23.380952380952397,154.41072119268344,2020-12-11 +215,1933.7,4.0,21.809523809523824,251.55359029602135,2020-12-11 +216,1942.8000000000002,4.0,23.476190476190496,347.6061341805703,2020-12-11 +200,1787.5,4.0,18.142857142857153,300.69460333772884,2020-12-11 +217,1952.9,4.0,23.2857142857143,410.14766205571584,2020-12-11 +199,1776.5,4.0,17.714285714285726,300.1345055149027,2020-12-11 +197,1754.8000000000002,4.0,16.095238095238106,292.3872470617598,2020-12-11 +171,1566.2,4.0,17.523809523809533,275.18400307785686,2020-12-11 +172,1576.8000000000002,4.0,17.047619047619058,282.4856786465963,2020-12-11 +173,1587.6000000000001,4.0,16.619047619047628,285.2617151986636,2020-12-11 +174,1597.7,4.0,16.761904761904773,281.8965482937382,2020-12-11 +175,1609.1000000000001,4.0,17.142857142857153,277.99292749137675,2020-12-11 +176,1618.8000000000002,4.0,17.428571428571438,274.5015302514032,2020-12-11 +177,1629.5,4.0,17.2857142857143,270.96440597041396,2020-12-11 +178,1640.1000000000001,4.0,17.142857142857153,266.39357651458545,2020-12-11 +179,1650.3000000000002,4.0,16.904761904761916,257.54622586780124,2020-12-11 +180,1660.5,4.0,17.00000000000001,266.19060204774985,2020-12-11 +181,1670.5,4.0,17.00000000000001,291.5101212283307,2020-12-11 +182,1681.3000000000002,4.0,16.523809523809533,294.73296952886267,2020-12-11 +183,1681.3000000000002,4.0,17.61904761904763,248.5546745384372,2020-12-11 +184,1681.3000000000002,4.0,18.000000000000014,167.0488735475048,2020-12-11 +196,1743.2,4.0,15.238095238095248,246.68875697201003,2020-12-11 +198,1766.1000000000001,4.0,16.85714285714287,301.1714536521964,2020-12-11 +218,1962.5,4.0,23.095238095238113,419.570950715506,2020-12-11 +219,1972.5,4.0,23.2857142857143,402.3110021738116,2020-12-11 +220,1981.8000000000002,4.0,24.095238095238113,385.6020774704979,2020-12-11 +241,2188.5,4.0,21.71428571428573,377.9514877907696,2020-12-11 +242,2199.0,4.0,21.857142857142872,382.8476974710778,2020-12-11 +243,2208.8,4.0,22.09523809523811,386.4079542091181,2020-12-11 +244,2219.2000000000003,4.0,21.90476190476192,384.7697343526717,2020-12-11 +245,2228.9,4.0,22.142857142857157,380.1519297252575,2020-12-11 +246,2239.2000000000003,4.0,22.380952380952394,376.5897539534701,2020-12-11 +247,2248.7000000000003,4.0,22.190476190476204,375.1910614742428,2020-12-11 +248,2258.4,4.0,22.000000000000014,380.2627363924665,2020-12-11 +249,2269.0,4.0,21.809523809523824,384.3831995541966,2020-12-11 +250,2277.8,4.0,21.619047619047635,379.533225651095,2020-12-11 +251,2288.4,4.0,21.857142857142872,366.15323995632275,2020-12-11 +252,2297.9,4.0,22.09523809523811,350.75678836931763,2020-12-11 +253,2307.7000000000003,4.0,22.09523809523811,339.25319200118764,2020-12-11 +254,2317.9,4.0,21.857142857142872,340.63352414161045,2020-12-11 +255,2328.1,4.0,21.809523809523824,351.92022637424907,2020-12-11 +240,2178.2000000000003,4.0,21.66666666666668,376.0954184831051,2020-12-11 +239,2168.6,4.0,21.71428571428573,373.529649354442,2020-12-11 +238,2158.8,4.0,21.857142857142872,372.19061897746633,2020-12-11 +237,2148.7000000000003,4.0,22.190476190476204,370.24305839749206,2020-12-11 +221,1990.7,4.0,24.571428571428587,379.14293885739386,2020-12-11 +222,1999.4,4.0,24.809523809523824,382.31989871792564,2020-12-11 +223,2009.3000000000002,4.0,24.476190476190496,392.4736278255531,2020-12-11 +224,2019.3000000000002,4.0,23.666666666666682,398.10467464152407,2020-12-11 +225,2029.1000000000001,4.0,22.809523809523824,400.3112748479408,2020-12-11 +226,2039.0,4.0,22.52380952380954,403.26858018558437,2020-12-11 +227,2048.8,4.0,22.238095238095255,407.47610366274506,2020-12-11 +333,3107.8,4.0,22.619047619047635,372.5630705731576,2020-12-11 +228,2058.5,4.0,22.23809523809525,411.01268575545623,2020-12-11 +230,2077.9,4.0,22.2857142857143,400.5297570900815,2020-12-11 +231,2088.9,4.0,22.2857142857143,385.7160082031184,2020-12-11 +232,2098.4,4.0,22.190476190476204,372.8184659900875,2020-12-11 +233,2108.5,4.0,22.000000000000014,364.9102855918804,2020-12-11 +234,2118.4,4.0,21.809523809523824,363.14208417256145,2020-12-11 +235,2128.7000000000003,4.0,21.619047619047635,364.34526643143045,2020-12-11 +236,2139.1,4.0,21.857142857142872,367.02879284037135,2020-12-11 +229,2068.7000000000003,4.0,22.190476190476204,410.9403289667415,2020-12-11 +637,6062.3,4.0,22.809523809523824,340.33921505881193,2020-12-11 +916,8407.300000000001,4.0,22.95238095238097,217.88248412214892,2020-12-11 +639,6081.1,4.0,22.380952380952397,347.4879698962777,2020-12-11 +1048,9456.4,4.0,23.666666666666682,190.67907806778817,2020-12-11 +1049,9464.4,4.0,23.809523809523824,200.4397678439413,2020-12-11 +1050,9472.4,4.0,23.809523809523824,212.16164313878545,2020-12-11 +1051,9480.2,4.0,23.666666666666686,221.66907831174026,2020-12-11 +1052,9488.6,4.0,23.809523809523824,226.99328882414503,2020-12-11 +1053,9496.300000000001,4.0,23.71428571428573,230.14436929061856,2020-12-11 +1054,9503.9,4.0,23.809523809523824,232.22908164556875,2020-12-11 +1055,9512.1,4.0,23.666666666666686,234.85786596306394,2020-12-11 +1056,9520.5,4.0,23.71428571428573,234.9895126476083,2020-12-11 +1057,9528.300000000001,4.0,23.76190476190478,231.09730719569723,2020-12-11 +1058,9535.800000000001,4.0,24.14285714285716,225.72689220088395,2020-12-11 +1059,9543.800000000001,4.0,24.428571428571445,223.57594493096124,2020-12-11 +1060,9551.1,4.0,24.71428571428573,225.05221836016173,2020-12-11 +1061,9558.800000000001,4.0,24.571428571428587,228.63147189135145,2020-12-11 +1062,9566.9,4.0,24.000000000000018,229.58960225180854,2020-12-11 +1047,9449.1,4.0,23.380952380952397,185.85239853219824,2020-12-11 +1063,9574.4,4.0,23.428571428571445,227.51099800902603,2020-12-11 +1046,9441.4,4.0,23.380952380952397,184.5851333380166,2020-12-11 +1044,9426.4,4.0,23.857142857142875,188.18123506851916,2020-12-11 +1029,9312.9,4.0,24.285714285714306,212.15191687790212,2020-12-11 +1030,9320.7,4.0,24.14285714285716,212.03831978067365,2020-12-11 +1031,9327.800000000001,4.0,23.809523809523824,211.3607417397464,2020-12-11 +1032,9336.0,4.0,24.14285714285716,209.26251923751096,2020-12-11 +1033,9343.5,4.0,24.285714285714306,206.41089691349498,2020-12-11 +1034,9350.9,4.0,24.33333333333335,204.57276686477113,2020-12-11 +1035,9358.300000000001,4.0,24.285714285714306,206.60482797762407,2020-12-11 +1036,9365.9,4.0,24.14285714285716,209.70291700171185,2020-12-11 +1037,9373.4,4.0,23.90476190476192,210.289114011636,2020-12-11 +1038,9381.300000000001,4.0,23.90476190476192,206.9348019587893,2020-12-11 +1039,9388.800000000001,4.0,24.14285714285716,200.8572844945695,2020-12-11 +1040,9396.800000000001,4.0,24.285714285714306,195.6536345265171,2020-12-11 +1041,9404.2,4.0,24.33333333333335,192.75921504657828,2020-12-11 +1042,9411.4,4.0,24.285714285714306,191.21596784874922,2020-12-11 +1043,9419.2,4.0,24.238095238095255,190.07442320593483,2020-12-11 +1045,9434.2,4.0,23.571428571428587,185.73956732624947,2020-12-11 +1028,9304.7,4.0,24.33333333333335,214.00854571123142,2020-12-11 +1064,9582.6,4.0,23.380952380952397,226.02568121819326,2020-12-11 +1066,9598.1,4.0,23.52380952380954,228.31839744736368,2020-12-11 +1086,9758.7,4.0,24.90476190476192,252.5842837366718,2020-12-11 +1087,9766.7,4.0,25.14285714285716,250.13379072190912,2020-12-11 +1088,9774.800000000001,4.0,25.190476190476204,250.57231310788083,2020-12-11 +1089,9782.5,4.0,25.380952380952397,253.7587633016763,2020-12-11 +1090,9790.6,4.0,25.71428571428573,257.21254568860815,2020-12-11 +1091,9797.800000000001,4.0,25.76190476190478,256.7963565379231,2020-12-11 +1092,9806.300000000001,4.0,25.428571428571445,255.0778562447041,2020-12-11 +1093,9814.4,4.0,25.57142857142859,252.19556938290643,2020-12-11 +1094,9822.0,4.0,25.238095238095255,249.96879464597285,2020-12-11 +1095,9830.1,4.0,25.285714285714302,249.95925763987057,2020-12-11 +1096,9837.6,4.0,25.619047619047635,251.65807702329627,2020-12-11 +1097,9845.800000000001,4.0,25.90476190476192,252.46507414916744,2020-12-11 +1098,9853.900000000001,4.0,25.714285714285733,252.93941815611612,2020-12-11 +1099,9861.5,4.0,25.71428571428573,251.00738156481464,2020-12-11 +1100,9868.900000000001,4.0,25.809523809523828,246.23398919704377,2020-12-11 +1085,9750.7,4.0,25.000000000000014,257.332561277235,2020-12-11 +1065,9590.5,4.0,23.52380952380954,226.35497382175583,2020-12-11 +1084,9742.5,4.0,25.000000000000014,263.4557709866037,2020-12-11 +1082,9726.7,4.0,25.000000000000014,266.10697828834725,2020-12-11 +1067,9606.800000000001,4.0,23.476190476190492,229.98074394872887,2020-12-11 +1068,9614.6,4.0,23.2857142857143,229.27313073850024,2020-12-11 +1069,9622.4,4.0,23.71428571428573,228.71497128623986,2020-12-11 +1070,9630.800000000001,4.0,24.238095238095255,231.91792133754024,2020-12-11 +1071,9638.2,4.0,24.428571428571445,236.31952775270224,2020-12-11 +1072,9646.4,4.0,24.285714285714306,240.31163271425135,2020-12-11 +1073,9654.4,4.0,24.14285714285716,240.28005617898603,2020-12-11 +1074,9662.0,4.0,23.809523809523824,236.2041163875288,2020-12-11 +1075,9670.1,4.0,24.047619047619065,233.8414296721528,2020-12-11 +1076,9678.1,4.0,24.33333333333335,237.9259421680697,2020-12-11 +1077,9685.6,4.0,24.666666666666682,246.75682298997518,2020-12-11 +1078,9694.4,4.0,24.952380952380967,256.84942269605887,2020-12-11 +1079,9702.2,4.0,25.09523809523811,262.8445283647944,2020-12-11 +1080,9710.300000000001,4.0,25.000000000000014,264.8953720362705,2020-12-11 +1081,9718.5,4.0,25.000000000000014,265.43492790899427,2020-12-11 +1083,9734.6,4.0,25.000000000000014,266.1257530469905,2020-12-11 +1101,9876.6,4.0,26.000000000000018,238.6968634645532,2020-12-11 +1027,9297.1,4.0,24.285714285714306,215.89944859681975,2020-12-11 +1025,9282.1,4.0,23.90476190476192,205.03700124955816,2020-12-11 +972,8862.6,4.0,23.809523809523824,241.62903727190292,2020-12-11 +973,8870.5,4.0,23.761904761904777,243.27192369230286,2020-12-11 +974,8879.1,4.0,23.33333333333335,246.13230595917102,2020-12-11 +975,8887.5,4.0,22.95238095238097,248.08838267499996,2020-12-11 +976,8895.6,4.0,22.95238095238097,249.94792851669587,2020-12-11 +977,8904.6,4.0,23.428571428571445,249.7774831726823,2020-12-11 +978,8912.4,4.0,23.52380952380954,245.9583535998033,2020-12-11 +979,8920.7,4.0,23.761904761904777,240.15256351709328,2020-12-11 +980,8928.7,4.0,23.619047619047635,236.83472137911664,2020-12-11 +981,8936.9,4.0,23.52380952380954,233.50749476411158,2020-12-11 +982,8944.300000000001,4.0,23.380952380952394,229.82230971575117,2020-12-11 +983,8952.7,4.0,23.619047619047635,225.1493574940499,2020-12-11 +984,8960.7,4.0,23.47619047619049,219.9333992657469,2020-12-11 +985,8968.800000000001,4.0,23.380952380952397,215.57476950056196,2020-12-11 +986,8976.5,4.0,23.238095238095255,217.0934625594959,2020-12-11 +971,8854.0,4.0,23.90476190476192,239.20836864956894,2020-12-11 +987,8984.9,4.0,23.571428571428587,220.1386067122403,2020-12-11 +970,8846.0,4.0,23.52380952380954,233.99790587906347,2020-12-11 +968,8829.4,4.0,23.380952380952394,216.2873272164953,2020-12-11 +953,8707.6,4.0,23.95238095238097,215.07597265411056,2020-12-11 +954,8716.0,4.0,23.71428571428573,220.245606106109,2020-12-11 +955,8723.7,4.0,23.76190476190478,227.0524757982193,2020-12-11 +956,8731.7,4.0,23.666666666666682,230.7176755480589,2020-12-11 +957,8740.0,4.0,23.52380952380954,230.70758815892077,2020-12-11 +958,8748.2,4.0,23.428571428571445,227.96681237767888,2020-12-11 +959,8756.4,4.0,23.047619047619065,224.43606259335354,2020-12-11 +960,8764.5,4.0,22.809523809523824,228.01458692445277,2020-12-11 +961,8772.9,4.0,23.14285714285716,236.94356053040502,2020-12-11 +962,8781.5,4.0,23.190476190476204,244.05259011139412,2020-12-11 +963,8789.4,4.0,23.476190476190492,243.21431700064625,2020-12-11 +964,8797.5,4.0,23.47619047619049,234.4843253909301,2020-12-11 +965,8805.5,4.0,23.619047619047635,220.00323629985786,2020-12-11 +966,8813.5,4.0,23.380952380952394,210.34141897906034,2020-12-11 +967,8821.5,4.0,23.619047619047635,209.49222099624026,2020-12-11 +969,8837.300000000001,4.0,23.52380952380954,225.06273733496496,2020-12-11 +1026,9289.2,4.0,24.14285714285716,212.78473332108058,2020-12-11 +988,8993.0,4.0,23.428571428571445,223.10485686131676,2020-12-11 +990,9008.9,4.0,23.619047619047635,228.54627387634923,2020-12-11 +1010,9169.800000000001,4.0,23.14285714285716,193.00407780119582,2020-12-11 +1011,9177.0,4.0,22.809523809523824,183.60891042351267,2020-12-11 +1012,9184.5,4.0,23.047619047619065,174.8472500140122,2020-12-11 +1013,9191.7,4.0,23.33333333333335,166.3291397429257,2020-12-11 +1014,9198.1,4.0,23.666666666666682,159.22905160657487,2020-12-11 +1015,9205.2,4.0,23.95238095238097,157.31569012266846,2020-12-11 +1016,9212.800000000001,4.0,24.095238095238113,160.54136729515622,2020-12-11 +1017,9220.7,4.0,24.000000000000018,169.39418147657608,2020-12-11 +1018,9228.7,4.0,24.000000000000018,181.6480237195187,2020-12-11 +1019,9236.300000000001,4.0,24.000000000000018,190.19374699964754,2020-12-11 +1020,9243.300000000001,4.0,24.000000000000018,191.91311123827523,2020-12-11 +1021,9251.5,4.0,24.000000000000018,189.27932930124186,2020-12-11 +1022,9258.7,4.0,24.000000000000018,185.34490036710923,2020-12-11 +1023,9266.5,4.0,24.000000000000018,186.08466484802557,2020-12-11 +1024,9274.1,4.0,24.000000000000018,194.48720571556714,2020-12-11 +1009,9162.1,4.0,23.190476190476204,200.74786188350652,2020-12-11 +989,9000.7,4.0,23.761904761904777,225.65023592083855,2020-12-11 +1008,9154.4,4.0,23.380952380952397,202.85895756068442,2020-12-11 +1006,9138.800000000001,4.0,23.90476190476192,197.29961686683572,2020-12-11 +991,9017.800000000001,4.0,23.52380952380954,231.01479638122888,2020-12-11 +992,9026.300000000001,4.0,23.47619047619049,235.2073438376694,2020-12-11 +993,9034.1,4.0,23.380952380952397,238.7239365704907,2020-12-11 +994,9042.4,4.0,23.238095238095255,242.38050727372,2020-12-11 +995,9050.6,4.0,23.476190476190492,244.13079216629518,2020-12-11 +996,9058.9,4.0,23.571428571428587,243.04392744626193,2020-12-11 +997,9066.9,4.0,24.047619047619065,238.32656499413366,2020-12-11 +998,9075.300000000001,4.0,23.95238095238097,231.9099788568223,2020-12-11 +999,9083.0,4.0,23.71428571428573,228.4945501707498,2020-12-11 +1000,9091.300000000001,4.0,23.76190476190478,230.31485709323698,2020-12-11 +1001,9099.5,4.0,23.571428571428587,231.84930762434234,2020-12-11 +1002,9107.7,4.0,23.571428571428587,228.3907879627994,2020-12-11 +1003,9115.9,4.0,23.76190476190478,218.8242005089017,2020-12-11 +1004,9123.7,4.0,23.809523809523824,205.50615432984415,2020-12-11 +1005,9130.9,4.0,23.71428571428573,197.3410318443257,2020-12-11 +1007,9146.4,4.0,23.619047619047635,201.05640082454633,2020-12-11 +952,8699.9,4.0,24.047619047619065,213.59430243491335,2020-12-11 +1102,9883.900000000001,4.0,26.095238095238113,232.44488381154946,2020-12-11 +1104,9898.7,4.0,26.33333333333335,239.3910227094448,2020-12-11 +1228,10838.800000000001,4.0,17.333333333333343,285.09255703061353,2020-12-11 +1229,10849.2,4.0,17.2857142857143,282.15721658364214,2020-12-11 +1230,10859.800000000001,4.0,17.142857142857153,278.34152063706415,2020-12-11 +1231,10870.400000000001,4.0,16.904761904761916,273.63580171683714,2020-12-11 +1232,10880.5,4.0,17.00000000000001,270.3322256795735,2020-12-11 +1233,10891.1,4.0,17.00000000000001,268.95549442229344,2020-12-11 +1234,10901.7,4.0,17.00000000000001,268.02041791141824,2020-12-11 +1235,10912.800000000001,4.0,17.00000000000001,269.51779557900016,2020-12-11 +1236,10923.2,4.0,17.00000000000001,271.7346720997044,2020-12-11 +1237,10934.0,4.0,17.00000000000001,274.2044000734877,2020-12-11 +1238,10945.1,4.0,17.00000000000001,276.425391260349,2020-12-11 +1239,10955.7,4.0,17.00000000000001,277.10417056331846,2020-12-11 +1240,10966.800000000001,4.0,17.095238095238106,272.3527768495304,2020-12-11 +1241,10977.400000000001,4.0,16.952380952380963,283.5933753676525,2020-12-11 +1242,10988.1,4.0,16.66666666666668,299.4302104546001,2020-12-11 +1227,10828.7,4.0,17.2857142857143,286.9857034890854,2020-12-11 +1243,10999.0,4.0,15.095238095238106,293.6080904000718,2020-12-11 +1226,10818.300000000001,4.0,17.142857142857153,281.90919198258587,2020-12-11 +1224,10796.400000000001,4.0,17.095238095238106,234.89212494715892,2020-12-11 +1193,10622.1,4.0,17.00000000000001,182.44036685229233,2020-12-11 +1194,10631.400000000001,4.0,17.00000000000001,184.66334190399317,2020-12-11 +1195,10640.400000000001,4.0,17.00000000000001,188.23683696109975,2020-12-11 +1196,10650.0,4.0,17.00000000000001,192.7255331778551,2020-12-11 +1197,10659.800000000001,4.0,16.904761904761916,196.06215802521257,2020-12-11 +1198,10669.1,4.0,17.047619047619058,197.7730729953986,2020-12-11 +1199,10678.400000000001,4.0,17.333333333333343,197.72001550902127,2020-12-11 +1200,10687.6,4.0,17.66666666666668,194.35010263654067,2020-12-11 +1201,10697.2,4.0,17.952380952380963,193.9242394030706,2020-12-11 +1202,10706.300000000001,4.0,18.09523809523811,210.01657322777262,2020-12-11 +1203,10706.300000000001,4.0,18.761904761904773,214.03340180741606,2020-12-11 +1204,10706.300000000001,4.0,16.571428571428584,183.51481349473244,2020-12-11 +1205,10706.300000000001,4.0,15.857142857142868,129.99927061307125,2020-12-11 +1222,10776.1,4.0,15.00000000000001,130.92909022696864,2020-12-11 +1223,10786.2,4.0,17.238095238095248,186.75083292119905,2020-12-11 +1225,10806.5,4.0,16.904761904761916,265.3362202652024,2020-12-11 +1192,10612.5,4.0,17.00000000000001,180.3749848678317,2020-12-11 +1244,10999.0,4.0,16.38095238095239,254.12131182029287,2020-12-11 +1246,11030.300000000001,4.0,25.666666666666686,105.71984553005166,2020-12-11 +638,6071.6,4.0,22.666666666666682,339.6901830999809,2020-12-11 +1273,11270.400000000001,4.0,17.2857142857143,285.3777141392563,2020-12-11 +1274,11280.800000000001,4.0,17.333333333333343,286.41473730290784,2020-12-11 +1275,11292.1,4.0,17.2857142857143,288.7193969825015,2020-12-11 +1276,11302.6,4.0,17.142857142857153,292.02760951504376,2020-12-11 +1277,11314.1,4.0,16.80952380952382,296.4799266994436,2020-12-11 +1278,11325.1,4.0,17.142857142857153,299.95608061970995,2020-12-11 +1279,11335.0,4.0,17.2857142857143,300.5629921389218,2020-12-11 +1280,11345.400000000001,4.0,17.428571428571438,299.3482568359864,2020-12-11 +1281,11355.900000000001,4.0,17.142857142857153,296.719208631291,2020-12-11 +1282,11367.1,4.0,16.85714285714287,313.59885175819136,2020-12-11 +1283,11379.1,4.0,16.571428571428584,339.79463483923547,2020-12-11 +1284,11390.0,4.0,16.047619047619058,333.359359631105,2020-12-11 +1285,11390.0,4.0,17.571428571428584,272.5569626722303,2020-12-11 +1286,11390.0,4.0,18.761904761904773,177.17478663621398,2020-12-11 +1271,11248.800000000001,4.0,16.904761904761916,268.90913536196075,2020-12-11 +1245,10999.0,4.0,20.380952380952394,185.89063884424758,2020-12-11 +1270,11238.0,4.0,17.00000000000001,263.63858631545247,2020-12-11 +1268,11217.900000000001,4.0,16.904761904761916,270.9891397666563,2020-12-11 +1253,11063.300000000001,4.0,27.476190476190496,105.90020279313097,2020-12-11 +1254,11073.7,4.0,22.14285714285716,179.4829180125395,2020-12-11 +1255,11085.1,4.0,17.428571428571438,245.66400838039687,2020-12-11 +1256,11094.900000000001,4.0,15.1904761904762,287.72623116179614,2020-12-11 +1257,11105.800000000001,4.0,16.85714285714287,303.85296403795934,2020-12-11 +1258,11116.1,4.0,17.380952380952394,293.50371460401584,2020-12-11 +1259,11116.1,4.0,16.571428571428584,268.01220288970967,2020-12-11 +1260,11116.1,4.0,16.047619047619058,244.36961572755598,2020-12-11 +1261,11147.1,4.0,16.142857142857153,211.79980216375068,2020-12-11 +1262,11156.400000000001,4.0,16.333333333333343,188.7137723730175,2020-12-11 +1263,11165.7,4.0,17.047619047619058,197.1245783871969,2020-12-11 +1264,11176.5,4.0,17.85714285714287,225.33727112371892,2020-12-11 +1265,11186.6,4.0,17.47619047619049,256.13630326791235,2020-12-11 +1266,11196.800000000001,4.0,17.190476190476204,277.7256446604597,2020-12-11 +1267,11207.0,4.0,17.142857142857153,280.93851479958994,2020-12-11 +1269,11228.2,4.0,17.00000000000001,264.6759134061115,2020-12-11 +1103,9891.1,4.0,26.52380952380954,232.3275783684741,2020-12-11 +1191,10602.900000000001,4.0,17.00000000000001,178.1131780088159,2020-12-11 +1189,10584.5,4.0,17.142857142857153,174.607374668334,2020-12-11 +1136,10123.2,4.0,17.142857142857153,130.2922961309196,2020-12-11 +1137,10131.900000000001,4.0,16.904761904761916,133.06141154707967,2020-12-11 +1138,10140.2,4.0,16.904761904761916,134.84612768593752,2020-12-11 +1139,10148.800000000001,4.0,17.142857142857153,135.65323310899308,2020-12-11 +1140,10157.1,4.0,17.2857142857143,135.15776131911605,2020-12-11 +1141,10165.1,4.0,17.333333333333343,133.881879888374,2020-12-11 +1142,10173.5,4.0,17.2857142857143,134.28490650182903,2020-12-11 +1143,10181.7,4.0,17.142857142857153,137.19207072920838,2020-12-11 +1144,10190.400000000001,4.0,16.904761904761916,142.8942962946373,2020-12-11 +1145,10199.400000000001,4.0,17.00000000000001,150.62429072690253,2020-12-11 +1146,10208.2,4.0,17.00000000000001,157.85840669670728,2020-12-11 +1147,10217.5,4.0,17.00000000000001,161.6822032815765,2020-12-11 +1148,10225.900000000001,4.0,17.00000000000001,162.06579641774448,2020-12-11 +1149,10234.400000000001,4.0,17.00000000000001,161.4373107331788,2020-12-11 +1150,10243.2,4.0,17.00000000000001,162.75053767405814,2020-12-11 +1135,10115.300000000001,4.0,17.2857142857143,126.60411008529414,2020-12-11 +1151,10252.5,4.0,16.904761904761916,164.7884885567353,2020-12-11 +1134,10107.2,4.0,17.333333333333343,120.38702999661712,2020-12-11 +1120,10015.6,4.0,17.2857142857143,290.4619150197758,2020-12-11 +1105,9906.1,4.0,26.190476190476208,249.82787932978738,2020-12-11 +1106,9913.800000000001,4.0,26.76190476190478,258.8480492612892,2020-12-11 +1107,9921.5,4.0,27.095238095238113,261.4896883956982,2020-12-11 +1108,9929.0,4.0,27.19047619047621,260.8819654714037,2020-12-11 +1109,9936.7,4.0,27.3809523809524,261.7164017023929,2020-12-11 +1110,9944.5,4.0,27.14285714285716,265.5794985510539,2020-12-11 +1111,9951.2,4.0,26.90476190476192,271.25803837681565,2020-12-11 +1112,9959.400000000001,4.0,27.000000000000018,273.9259349565708,2020-12-11 +1113,9966.900000000001,4.0,26.90476190476192,270.14328941925385,2020-12-11 +1114,9974.5,4.0,27.14285714285716,260.5183536758524,2020-12-11 +1115,9982.0,4.0,27.285714285714306,250.50927195945027,2020-12-11 +1116,9989.5,4.0,28.00000000000002,245.35727857670338,2020-12-11 +1117,9997.0,4.0,26.95238095238097,260.7129720690933,2020-12-11 +1118,10004.0,4.0,25.666666666666686,293.0530272763106,2020-12-11 +1119,10015.6,4.0,21.523809523809536,313.56361241095533,2020-12-11 +1133,10099.2,4.0,17.380952380952394,106.68876162315136,2020-12-11 +1190,10593.7,4.0,16.904761904761916,176.06836115982347,2020-12-11 +1152,10261.300000000001,4.0,16.952380952380963,165.92021005333334,2020-12-11 +1154,10279.1,4.0,17.952380952380963,163.3392281582746,2020-12-11 +1174,10448.2,4.0,18.380952380952394,191.75598840694622,2020-12-11 +1175,10457.1,4.0,18.142857142857153,196.762557354312,2020-12-11 +1176,10466.5,4.0,17.90476190476192,195.14565156216662,2020-12-11 +1177,10475.300000000001,4.0,18.000000000000014,191.18269422411032,2020-12-11 +1178,10484.0,4.0,18.190476190476204,187.761914127828,2020-12-11 +1179,10493.300000000001,4.0,17.80952380952382,186.7412559053427,2020-12-11 +1180,10502.2,4.0,17.380952380952394,186.98124028899264,2020-12-11 +1181,10511.800000000001,4.0,17.00000000000001,186.81530393656965,2020-12-11 +1182,10521.2,4.0,16.761904761904773,185.83130557130352,2020-12-11 +1183,10530.2,4.0,16.761904761904773,185.983015710754,2020-12-11 +1184,10539.300000000001,4.0,17.00000000000001,186.17280727610424,2020-12-11 +1185,10548.400000000001,4.0,17.142857142857153,185.51193388185277,2020-12-11 +1186,10557.300000000001,4.0,17.2857142857143,182.84068469853565,2020-12-11 +1187,10566.300000000001,4.0,17.333333333333343,178.56414020772132,2020-12-11 +1188,10575.5,4.0,17.2857142857143,175.19801009972377,2020-12-11 +1173,10438.800000000001,4.0,18.2857142857143,179.07781235605142,2020-12-11 +1153,10270.1,4.0,17.47619047619049,165.6756514188474,2020-12-11 +1172,10429.900000000001,4.0,17.952380952380963,161.09835854878216,2020-12-11 +1170,10412.7,4.0,16.714285714285722,126.23571689899102,2020-12-11 +1155,10287.2,4.0,18.2857142857143,160.65082868481943,2020-12-11 +1156,10296.2,4.0,18.47619047619049,159.4678491684017,2020-12-11 +1157,10304.1,4.0,18.09523809523811,157.13048471510655,2020-12-11 +1158,10312.300000000001,4.0,17.571428571428584,153.45216845025732,2020-12-11 +1159,10320.7,4.0,17.333333333333343,150.32664567662187,2020-12-11 +1160,10329.400000000001,4.0,17.047619047619058,146.6809325058826,2020-12-11 +1161,10337.7,4.0,16.904761904761916,141.8619910133433,2020-12-11 +1162,10345.6,4.0,17.00000000000001,138.89789285540877,2020-12-11 +1163,10353.7,4.0,17.00000000000001,139.10178098376917,2020-12-11 +1164,10362.1,4.0,16.904761904761916,143.21948638797613,2020-12-11 +1165,10371.0,4.0,17.238095238095248,148.55478922769132,2020-12-11 +1166,10379.800000000001,4.0,17.142857142857153,148.7268164460582,2020-12-11 +1167,10387.400000000001,4.0,17.047619047619058,139.98691005068744,2020-12-11 +1168,10395.6,4.0,16.952380952380963,128.52091108900146,2020-12-11 +1169,10403.7,4.0,16.761904761904773,121.86242066169132,2020-12-11 +1171,10421.2,4.0,17.571428571428584,141.23130611085247,2020-12-11 +951,8691.4,4.0,23.666666666666682,214.85057049319903,2020-12-11 +1272,11259.6,4.0,17.142857142857153,278.75361753025834,2020-12-11 +949,8675.7,4.0,22.95238095238097,222.67733509085238,2020-12-11 +743,6957.6,4.0,23.571428571428587,321.96189372267554,2020-12-11 +744,6966.400000000001,4.0,24.047619047619065,326.71848257916224,2020-12-11 +745,6975.200000000001,4.0,23.95238095238097,331.1353591953131,2020-12-11 +746,6984.3,4.0,23.809523809523824,329.40418146422894,2020-12-11 +747,6993.400000000001,4.0,23.52380952380954,321.1786724079466,2020-12-11 +748,7002.6,4.0,23.52380952380954,309.7530740981041,2020-12-11 +749,7011.8,4.0,23.380952380952394,304.6173465376197,2020-12-11 +750,7020.3,4.0,23.52380952380954,303.9726621065005,2020-12-11 +751,7029.400000000001,4.0,23.619047619047635,304.04558657338407,2020-12-11 +752,7037.8,4.0,23.761904761904777,301.3976980024972,2020-12-11 +753,7046.8,4.0,23.52380952380954,295.82788211557056,2020-12-11 +754,7056.0,4.0,23.33333333333335,289.216525700472,2020-12-11 +755,7064.900000000001,4.0,23.095238095238113,286.4484612303526,2020-12-11 +756,7073.3,4.0,23.238095238095255,287.0108823546569,2020-12-11 +757,7082.200000000001,4.0,23.761904761904777,285.51257899704717,2020-12-11 +742,6948.6,4.0,23.476190476190492,321.13658608095125,2020-12-11 +758,7090.0,4.0,23.809523809523824,278.3038534699929,2020-12-11 +741,6939.400000000001,4.0,23.238095238095255,326.6525803585896,2020-12-11 +739,6920.3,4.0,23.47619047619049,327.7148293226725,2020-12-11 +724,6783.700000000001,4.0,22.666666666666682,352.10890949929666,2020-12-11 +725,6792.6,4.0,22.619047619047635,351.3368546151038,2020-12-11 +726,6801.6,4.0,22.90476190476192,345.17364633195564,2020-12-11 +727,6811.400000000001,4.0,23.52380952380954,336.39861145050986,2020-12-11 +728,6820.700000000001,4.0,23.619047619047635,325.01706197027164,2020-12-11 +729,6829.5,4.0,23.52380952380954,317.2624311153455,2020-12-11 +730,6838.8,4.0,23.571428571428587,316.6126100597837,2020-12-11 +731,6848.0,4.0,23.33333333333335,320.3297952445388,2020-12-11 +732,6856.900000000001,4.0,23.238095238095255,324.6892211215669,2020-12-11 +733,6866.3,4.0,23.190476190476204,327.63640121167373,2020-12-11 +734,6875.6,4.0,23.285714285714302,324.0590347082844,2020-12-11 +735,6884.700000000001,4.0,23.09523809523811,316.68305121733067,2020-12-11 +736,6893.900000000001,4.0,23.476190476190492,311.36333344638933,2020-12-11 +737,6902.700000000001,4.0,23.47619047619049,313.12567502229155,2020-12-11 +738,6912.1,4.0,23.619047619047635,319.5679810955438,2020-12-11 +740,6930.0,4.0,23.380952380952397,330.0571543308139,2020-12-11 +723,6774.200000000001,4.0,22.619047619047635,345.9776572951896,2020-12-11 +759,7099.200000000001,4.0,23.809523809523824,265.8716996433634,2020-12-11 +761,7115.5,4.0,23.71428571428573,244.11464233784108,2020-12-11 +781,7285.400000000001,4.0,24.000000000000018,264.3237564759357,2020-12-11 +782,7294.200000000001,4.0,23.619047619047635,268.41179440601,2020-12-11 +783,7303.0,4.0,23.666666666666686,267.23435885567505,2020-12-11 +784,7311.3,4.0,23.71428571428573,259.26806769739176,2020-12-11 +785,7319.700000000001,4.0,23.95238095238097,249.71423995210435,2020-12-11 +786,7327.900000000001,4.0,23.95238095238097,241.66914701891713,2020-12-11 +787,7335.700000000001,4.0,23.809523809523824,234.89599307668175,2020-12-11 +788,7343.900000000001,4.0,23.619047619047635,228.99545482011325,2020-12-11 +789,7351.900000000001,4.0,23.380952380952397,220.78701860642877,2020-12-11 +790,7360.200000000001,4.0,23.190476190476204,212.45678449828222,2020-12-11 +791,7368.3,4.0,23.14285714285716,208.06775994951607,2020-12-11 +792,7376.5,4.0,22.809523809523824,207.37838913798012,2020-12-11 +793,7384.1,4.0,23.047619047619065,209.6546352491265,2020-12-11 +794,7392.400000000001,4.0,23.428571428571445,214.06807700764307,2020-12-11 +795,7400.700000000001,4.0,23.52380952380954,218.30495566078082,2020-12-11 +780,7277.6,4.0,24.3809523809524,260.7152739711047,2020-12-11 +760,7107.6,4.0,23.666666666666686,252.17181641183774,2020-12-11 +779,7269.400000000001,4.0,24.33333333333335,260.14771020311525,2020-12-11 +777,7252.8,4.0,24.238095238095255,274.5285163327753,2020-12-11 +762,7124.200000000001,4.0,23.857142857142875,248.82117972088037,2020-12-11 +763,7132.700000000001,4.0,24.095238095238113,262.95707184036723,2020-12-11 +764,7140.3,4.0,24.000000000000018,278.6867624863533,2020-12-11 +765,7149.700000000001,4.0,24.000000000000018,288.70112371289275,2020-12-11 +766,7158.400000000001,4.0,24.000000000000018,287.63619930291725,2020-12-11 +767,7166.8,4.0,23.90476190476192,278.9028781024232,2020-12-11 +768,7175.200000000001,4.0,24.14285714285716,273.4608248642886,2020-12-11 +769,7184.0,4.0,24.285714285714306,274.4951050465661,2020-12-11 +770,7192.0,4.0,24.33333333333335,281.1477067489168,2020-12-11 +771,7200.700000000001,4.0,24.3809523809524,289.1161387780933,2020-12-11 +772,7209.5,4.0,24.000000000000018,290.09510950812523,2020-12-11 +773,7218.0,4.0,23.619047619047635,285.6900451061326,2020-12-11 +774,7227.200000000001,4.0,23.666666666666686,282.9931581107588,2020-12-11 +775,7235.5,4.0,23.71428571428573,280.40316862246897,2020-12-11 +776,7243.8,4.0,23.76190476190478,278.21854167096546,2020-12-11 +778,7261.0,4.0,24.285714285714306,266.56780522891154,2020-12-11 +796,7408.5,4.0,23.666666666666682,224.05196283551635,2020-12-11 +722,6764.8,4.0,23.000000000000014,339.1823619696871,2020-12-11 +720,6745.900000000001,4.0,23.238095238095255,325.93169608245796,2020-12-11 +659,6269.1,4.0,23.14285714285716,335.7775425587407,2020-12-11 +660,6278.8,4.0,23.33333333333335,347.5548789355702,2020-12-11 +661,6288.0,4.0,23.666666666666682,351.60670981897727,2020-12-11 +662,6297.400000000001,4.0,23.95238095238097,353.29987730499806,2020-12-11 +663,6307.3,4.0,24.095238095238113,353.6088645406953,2020-12-11 +664,6316.0,4.0,24.000000000000018,343.51657613050554,2020-12-11 +665,6325.400000000001,4.0,24.000000000000018,354.04502847353524,2020-12-11 +666,6334.900000000001,4.0,24.000000000000018,397.5137935272752,2020-12-11 +667,6334.900000000001,4.0,24.095238095238113,409.5198962086322,2020-12-11 +668,6334.900000000001,4.0,23.95238095238097,353.2549050591865,2020-12-11 +669,6334.900000000001,4.0,23.571428571428587,242.07576292374642,2020-12-11 +670,6355.400000000001,4.0,23.380952380952397,111.3172317476739,2020-12-11 +679,6380.0,4.0,22.333333333333346,148.59481241218472,2020-12-11 +680,6388.5,4.0,23.285714285714302,219.6916993406321,2020-12-11 +681,6397.1,4.0,23.809523809523824,274.398636271629,2020-12-11 +658,6259.700000000001,4.0,22.761904761904777,325.4042840554024,2020-12-11 +682,6406.0,4.0,23.809523809523824,303.0431460718525,2020-12-11 +657,6250.6,4.0,22.71428571428573,314.263443110439,2020-12-11 +655,6230.8,4.0,22.71428571428573,311.3711957179953,2020-12-11 +950,8682.800000000001,4.0,23.33333333333335,218.40760042668973,2020-12-11 +640,6090.3,4.0,22.380952380952394,353.2374931083714,2020-12-11 +641,6099.700000000001,4.0,22.238095238095255,356.2857882496121,2020-12-11 +642,6109.5,4.0,22.47619047619049,354.61341478795066,2020-12-11 +643,6119.0,4.0,22.47619047619049,350.0090633157299,2020-12-11 +644,6128.900000000001,4.0,23.09523809523811,350.79402788837706,2020-12-11 +645,6138.200000000001,4.0,23.47619047619049,362.309461037675,2020-12-11 +646,6147.200000000001,4.0,23.190476190476208,376.0918881189581,2020-12-11 +648,6165.900000000001,4.0,22.809523809523824,396.41443733105586,2020-12-11 +649,6175.900000000001,4.0,22.619047619047635,392.4539458875138,2020-12-11 +650,6185.900000000001,4.0,22.857142857142872,386.61361705517174,2020-12-11 +651,6195.5,4.0,23.09523809523811,383.9606366179016,2020-12-11 +652,6204.900000000001,4.0,23.000000000000014,374.23707358125625,2020-12-11 +653,6214.1,4.0,23.09523809523811,355.6866398733763,2020-12-11 +654,6223.3,4.0,22.857142857142872,334.4271224170103,2020-12-11 +656,6241.400000000001,4.0,22.666666666666682,303.6793467780993,2020-12-11 +721,6755.3,4.0,23.380952380952394,333.0736202564336,2020-12-11 +683,6414.6,4.0,23.666666666666686,309.8959818019127,2020-12-11 +685,6432.0,4.0,23.857142857142875,301.31561272185064,2020-12-11 +705,6609.900000000001,4.0,23.476190476190492,319.8883154279184,2020-12-11 +706,6618.400000000001,4.0,23.428571428571445,318.1862437852669,2020-12-11 +707,6628.1,4.0,23.761904761904777,316.3277209765214,2020-12-11 +708,6636.6,4.0,23.71428571428573,312.0947523132439,2020-12-11 +709,6645.900000000001,4.0,23.380952380952397,307.3249209681925,2020-12-11 +710,6655.0,4.0,23.190476190476204,309.59916191577713,2020-12-11 +711,6663.6,4.0,23.047619047619065,314.75855453328853,2020-12-11 +712,6672.400000000001,4.0,23.047619047619065,318.6221439602751,2020-12-11 +713,6682.400000000001,4.0,23.2857142857143,320.08718075794104,2020-12-11 +714,6691.1,4.0,23.238095238095255,317.04255641047837,2020-12-11 +715,6700.1,4.0,23.428571428571445,312.2736321938389,2020-12-11 +716,6709.3,4.0,23.428571428571445,310.15759376460755,2020-12-11 +717,6718.700000000001,4.0,23.14285714285716,311.7936656340653,2020-12-11 +718,6727.900000000001,4.0,23.428571428571445,316.6331396333652,2020-12-11 +719,6736.0,4.0,23.428571428571445,321.048146828476,2020-12-11 +704,6600.700000000001,4.0,23.476190476190492,319.84154431893114,2020-12-11 +684,6423.5,4.0,23.71428571428573,304.4081070525372,2020-12-11 +703,6591.400000000001,4.0,23.52380952380954,319.18037297378055,2020-12-11 +701,6574.200000000001,4.0,23.428571428571445,321.8258237250168,2020-12-11 +686,6440.900000000001,4.0,24.095238095238113,302.7025485899399,2020-12-11 +687,6448.900000000001,4.0,24.000000000000018,303.95331138333404,2020-12-11 +688,6457.700000000001,4.0,24.000000000000018,305.2391761740257,2020-12-11 +689,6466.700000000001,4.0,24.095238095238113,303.64939395221353,2020-12-11 +690,6475.200000000001,4.0,23.857142857142875,300.3166649788078,2020-12-11 +691,6484.6,4.0,23.809523809523824,300.9642561523699,2020-12-11 +692,6492.900000000001,4.0,23.52380952380954,306.11297637052473,2020-12-11 +693,6501.700000000001,4.0,23.428571428571445,311.28400387999386,2020-12-11 +694,6511.6,4.0,23.52380952380954,317.4689394970653,2020-12-11 +695,6520.3,4.0,23.90476190476192,318.9201662202355,2020-12-11 +696,6529.200000000001,4.0,23.809523809523824,314.42580769583753,2020-12-11 +697,6537.8,4.0,23.761904761904777,310.18464128580354,2020-12-11 +698,6546.900000000001,4.0,23.33333333333335,310.34602089811705,2020-12-11 +699,6555.900000000001,4.0,22.95238095238097,312.31798972560887,2020-12-11 +700,6564.400000000001,4.0,22.95238095238097,317.3876594552455,2020-12-11 +702,6582.8,4.0,23.619047619047635,321.6211176485659,2020-12-11 +797,7416.6,4.0,23.76190476190478,232.71334099487024,2020-12-11 +647,6157.0,4.0,23.000000000000014,388.6373356675422,2020-12-11 +799,7432.1,4.0,23.857142857142875,241.96235128330233,2020-12-11 +895,8235.6,4.0,23.380952380952397,241.19873087903252,2020-12-11 +896,8243.5,4.0,23.666666666666682,248.9853509555884,2020-12-11 +897,8251.6,4.0,23.809523809523824,255.3080268550973,2020-12-11 +898,8260.300000000001,4.0,23.809523809523824,258.38513870315865,2020-12-11 +899,8268.9,4.0,23.76190476190478,257.2278479110155,2020-12-11 +900,8276.800000000001,4.0,23.666666666666682,254.08469348808794,2020-12-11 +901,8285.4,4.0,23.52380952380954,256.1171371412664,2020-12-11 +902,8293.800000000001,4.0,23.428571428571445,262.42631106887563,2020-12-11 +903,8301.5,4.0,23.047619047619065,266.79448999859903,2020-12-11 +904,8310.5,4.0,22.90476190476192,266.3429569696754,2020-12-11 +905,8318.7,4.0,23.000000000000014,259.6207488551659,2020-12-11 +906,8327.300000000001,4.0,23.000000000000014,249.71990132073694,2020-12-11 +907,8335.6,4.0,23.000000000000014,244.84145086694656,2020-12-11 +908,8343.800000000001,4.0,23.000000000000014,244.62390325081796,2020-12-11 +909,8352.4,4.0,22.90476190476192,245.68658739292994,2020-12-11 +894,8227.300000000001,4.0,23.380952380952397,238.22216698022518,2020-12-11 +910,8359.7,4.0,23.14285714285716,243.11033904920444,2020-12-11 +893,8219.1,4.0,23.666666666666682,240.76469678740196,2020-12-11 +891,8202.5,4.0,23.90476190476192,244.48492980254684,2020-12-11 +876,8076.700000000001,4.0,23.666666666666682,245.87253800629708,2020-12-11 +877,8084.200000000001,4.0,23.33333333333335,254.71928390702388,2020-12-11 +878,8093.0,4.0,23.047619047619065,256.8065104043044,2020-12-11 +879,8101.5,4.0,22.90476190476192,253.38309354336408,2020-12-11 +880,8110.1,4.0,23.000000000000014,249.00180503046238,2020-12-11 +881,8118.6,4.0,23.000000000000014,251.6201813892929,2020-12-11 +882,8126.6,4.0,23.09523809523811,261.56603191856647,2020-12-11 +883,8135.3,4.0,22.857142857142872,272.52154927712917,2020-12-11 +884,8143.5,4.0,22.71428571428573,279.1099902353036,2020-12-11 +885,8152.6,4.0,22.666666666666682,276.97015263108165,2020-12-11 +886,8161.1,4.0,22.619047619047635,265.5476597044159,2020-12-11 +887,8169.3,4.0,23.000000000000014,251.41220632940787,2020-12-11 +888,8177.8,4.0,23.2857142857143,241.40647681619532,2020-12-11 +889,8185.900000000001,4.0,23.380952380952397,238.3606943247765,2020-12-11 +890,8194.5,4.0,23.619047619047635,241.57884827307072,2020-12-11 +892,8210.9,4.0,23.809523809523824,244.03619949705916,2020-12-11 +875,8068.0,4.0,23.95238095238097,235.04044212604475,2020-12-11 +911,8368.2,4.0,23.190476190476204,234.8912937250922,2020-12-11 +913,8383.9,4.0,23.428571428571445,213.44322794085127,2020-12-11 +934,8554.1,4.0,22.952380952380967,234.81607940940748,2020-12-11 +935,8562.5,4.0,23.57142857142859,235.87281171195048,2020-12-11 +936,8570.5,4.0,23.47619047619049,235.41964131974794,2020-12-11 +937,8578.7,4.0,23.52380952380954,233.42964767900108,2020-12-11 +938,8586.5,4.0,23.52380952380954,234.14270924911526,2020-12-11 +939,8594.9,4.0,23.809523809523824,235.49038149335814,2020-12-11 +940,8602.9,4.0,23.857142857142875,237.62259499319492,2020-12-11 +941,8611.4,4.0,24.095238095238113,241.40501216378723,2020-12-11 +942,8619.2,4.0,24.095238095238113,242.81731196693954,2020-12-11 +944,8635.300000000001,4.0,23.809523809523824,232.78455417376014,2020-12-11 +945,8643.1,4.0,23.619047619047635,227.26974555813084,2020-12-11 +946,8651.5,4.0,23.380952380952397,224.0384514010166,2020-12-11 +947,8659.800000000001,4.0,23.190476190476204,224.4865673085399,2020-12-11 +798,7424.700000000001,4.0,23.71428571428573,239.2096916483579,2020-12-11 +948,8667.800000000001,4.0,23.047619047619065,224.6871322249999,2020-12-11 +933,8545.6,4.0,23.000000000000014,232.61634191454104,2020-12-11 +912,8376.1,4.0,23.57142857142859,222.9454814149629,2020-12-11 +932,8537.300000000001,4.0,22.857142857142872,228.77975783127985,2020-12-11 +930,8520.6,4.0,23.04761904761906,222.82089006509688,2020-12-11 +914,8391.4,4.0,23.190476190476204,208.92558797677117,2020-12-11 +915,8399.2,4.0,22.857142857142872,212.0261590671755,2020-12-11 +917,8415.300000000001,4.0,22.619047619047635,223.00561449516994,2020-12-11 +918,8423.4,4.0,22.809523809523824,223.25377541082577,2020-12-11 +919,8431.4,4.0,22.666666666666682,218.5653460515473,2020-12-11 +920,8440.1,4.0,22.71428571428573,212.48958816812797,2020-12-11 +921,8447.800000000001,4.0,22.857142857142872,211.81800778810526,2020-12-11 +922,8456.0,4.0,23.000000000000014,217.33091068523262,2020-12-11 +923,8464.300000000001,4.0,23.047619047619065,226.28599623789398,2020-12-11 +924,8472.300000000001,4.0,23.33333333333335,233.07572989535603,2020-12-11 +925,8481.1,4.0,23.761904761904777,235.54126629181332,2020-12-11 +926,8488.800000000001,4.0,23.90476190476192,235.0405455397966,2020-12-11 +927,8497.2,4.0,23.761904761904777,231.55879362162267,2020-12-11 +928,8505.4,4.0,23.238095238095255,228.05486843965963,2020-12-11 +929,8513.5,4.0,23.285714285714302,225.03027086670713,2020-12-11 +931,8528.4,4.0,23.047619047619065,223.28216534141058,2020-12-11 +874,8060.200000000001,4.0,24.190476190476208,229.24376847829774,2020-12-11 +943,8627.1,4.0,23.857142857142875,238.91130605606168,2020-12-11 +872,8043.700000000001,4.0,23.71428571428573,237.8493783754613,2020-12-11 +820,7608.8,4.0,23.238095238095255,247.5714861036138,2020-12-11 +821,7617.3,4.0,23.428571428571445,236.9318596733857,2020-12-11 +822,7625.8,4.0,23.428571428571445,235.32997547768807,2020-12-11 +823,7633.700000000001,4.0,23.238095238095255,247.5719139798462,2020-12-11 +824,7642.5,4.0,23.2857142857143,266.54422371455394,2020-12-11 +825,7650.700000000001,4.0,23.047619047619065,277.71151536049194,2020-12-11 +819,7600.400000000001,4.0,23.190476190476204,259.29124908705796,2020-12-11 +826,7659.8,4.0,23.047619047619065,275.10722356844656,2020-12-11 +828,7676.700000000001,4.0,23.190476190476208,243.45384675729028,2020-12-11 +829,7685.1,4.0,22.90476190476192,234.6596457290375,2020-12-11 +830,7693.5,4.0,22.857142857142875,236.00437614400502,2020-12-11 +831,7702.0,4.0,22.95238095238097,240.4208610397479,2020-12-11 +832,7709.900000000001,4.0,23.52380952380954,244.2487612830188,2020-12-11 +833,7717.6,4.0,24.047619047619065,245.30347519867587,2020-12-11 +827,7668.5,4.0,23.380952380952394,261.0367464272766,2020-12-11 +818,7592.0,4.0,23.190476190476208,263.7195064406732,2020-12-11 +817,7583.700000000001,4.0,23.238095238095255,259.0234936331582,2020-12-11 +816,7575.1,4.0,23.666666666666682,250.0129339561535,2020-12-11 +873,8052.200000000001,4.0,23.857142857142875,231.41342008860894,2020-12-11 +802,7457.700000000001,4.0,23.809523809523824,237.5963197685725,2020-12-11 +803,7466.400000000001,4.0,23.619047619047635,244.07859271792088,2020-12-11 +805,7483.3,4.0,23.190476190476204,265.5273322480989,2020-12-11 +800,7441.1,4.0,24.190476190476208,241.55471640747922,2020-12-11 +806,7492.0,4.0,23.14285714285716,272.08121801186365,2020-12-11 +807,7500.6,4.0,22.809523809523824,268.2678660488145,2020-12-11 +808,7509.200000000001,4.0,23.14285714285716,255.51923084151872,2020-12-11 +809,7517.8,4.0,23.2857142857143,241.1063103418239,2020-12-11 +810,7525.900000000001,4.0,23.238095238095255,230.5118585594618,2020-12-11 +811,7533.5,4.0,23.33333333333335,228.0954929366886,2020-12-11 +812,7541.3,4.0,23.476190476190492,230.86885028097447,2020-12-11 +813,7549.8,4.0,23.571428571428587,234.64323558068418,2020-12-11 +814,7558.200000000001,4.0,24.047619047619065,237.61968992059164,2020-12-11 +815,7566.900000000001,4.0,24.047619047619065,242.3323839073366,2020-12-11 +834,7726.3,4.0,24.190476190476208,243.14066127127606,2020-12-11 +835,7734.1,4.0,23.95238095238097,242.18866274229796,2020-12-11 +804,7474.900000000001,4.0,23.380952380952397,254.10354566403367,2020-12-11 +837,7751.200000000001,4.0,23.33333333333335,254.82849008043112,2020-12-11 +857,7918.5,4.0,23.095238095238113,216.86090597339347,2020-12-11 +858,7926.1,4.0,23.33333333333335,223.84404026206082,2020-12-11 +859,7935.200000000001,4.0,23.619047619047635,231.14128758977296,2020-12-11 +860,7943.400000000001,4.0,23.52380952380954,236.25648023283043,2020-12-11 +861,7951.8,4.0,23.571428571428587,240.35085902025662,2020-12-11 +862,7960.400000000001,4.0,23.33333333333335,244.55058163031805,2020-12-11 +863,7968.400000000001,4.0,23.14285714285716,247.84040243577118,2020-12-11 +856,7910.5,4.0,23.238095238095255,213.12244460056792,2020-12-11 +864,7976.700000000001,4.0,23.428571428571445,251.25335309108794,2020-12-11 +866,7994.1,4.0,23.14285714285716,253.42776617693215,2020-12-11 +867,8002.6,4.0,23.33333333333335,252.6623340797907,2020-12-11 +868,8010.700000000001,4.0,23.571428571428587,251.84743693741942,2020-12-11 +869,8019.3,4.0,23.428571428571445,250.65812313718212,2020-12-11 +870,8027.6,4.0,23.666666666666682,248.95191601963123,2020-12-11 +836,7742.5,4.0,23.666666666666682,246.38404228900066,2020-12-11 +871,8034.8,4.0,23.76190476190478,244.93189095732333,2020-12-11 +865,7985.700000000001,4.0,23.428571428571445,253.65337344235047,2020-12-11 +855,7901.6,4.0,23.666666666666682,215.65576332247582,2020-12-11 +801,7449.5,4.0,23.857142857142875,238.44094179470875,2020-12-11 +853,7886.700000000001,4.0,24.047619047619065,238.02015828247977,2020-12-11 +854,7894.200000000001,4.0,24.047619047619065,225.70271049864198,2020-12-11 +839,7767.900000000001,4.0,23.047619047619065,271.61298122096287,2020-12-11 +840,7776.5,4.0,23.2857142857143,272.62117237637585,2020-12-11 +841,7784.700000000001,4.0,23.238095238095255,268.57881291234503,2020-12-11 +842,7793.400000000001,4.0,23.428571428571445,268.74134256017686,2020-12-11 +843,7802.200000000001,4.0,23.428571428571445,274.8690524764221,2020-12-11 +844,7810.5,4.0,23.14285714285716,283.7215447429692,2020-12-11 +838,7759.3,4.0,22.95238095238097,264.3664332872413,2020-12-11 +852,7878.400000000001,4.0,23.666666666666682,247.21488567712396,2020-12-11 +845,7819.0,4.0,23.428571428571445,291.06928645450165,2020-12-11 +850,7861.700000000001,4.0,22.95238095238097,250.51985873905068,2020-12-11 +849,7853.3,4.0,23.047619047619065,254.1822954307559,2020-12-11 +851,7870.3,4.0,23.33333333333335,250.67007341504453,2020-12-11 +846,7828.400000000001,4.0,23.428571428571445,289.2032382622081,2020-12-11 +847,7836.900000000001,4.0,23.238095238095255,277.36787137761974,2020-12-11 +848,7845.0,4.0,23.2857142857143,264.04895780452557,2020-12-11 +430,4369.7,4.0,19.61904761904763,372.44891969608807,2020-12-12 +418,4243.0,4.0,19.2857142857143,364.08439269436883,2020-12-12 +419,4253.6,4.0,19.42857142857144,367.0197844556336,2020-12-12 +420,4264.2,4.0,19.142857142857153,372.77922277952746,2020-12-12 +421,4275.2,4.0,18.85714285714287,375.1224530294089,2020-12-12 +422,4285.7,4.0,18.66666666666668,370.723902734916,2020-12-12 +424,4307.1,4.0,18.571428571428584,350.3291653037636,2020-12-12 +425,4317.8,4.0,18.66666666666668,343.9947290418331,2020-12-12 +417,4231.8,4.0,19.142857142857157,365.55939446020375,2020-12-12 +426,4327.900000000001,4.0,18.85714285714287,342.44676863100267,2020-12-12 +427,4338.400000000001,4.0,19.047619047619058,347.66355707214746,2020-12-12 +428,4348.6,4.0,19.571428571428584,356.1119460607015,2020-12-12 +429,4359.1,4.0,19.47619047619049,365.401887737254,2020-12-12 +423,4296.7,4.0,18.571428571428584,360.88465749883846,2020-12-12 +399,4038.1000000000004,4.0,19.619047619047635,386.24444054752814,2020-12-12 +414,4199.7,4.0,18.90476190476192,372.5139981601716,2020-12-12 +415,4210.2,4.0,19.000000000000014,373.98694508463905,2020-12-12 +400,4048.8,4.0,19.380952380952394,393.33254279440746,2020-12-12 +401,4059.5,4.0,19.190476190476204,396.95916492134086,2020-12-12 +402,4070.1000000000004,4.0,19.142857142857157,397.24295863376744,2020-12-12 +403,4081.5,4.0,18.90476190476192,397.8217722379487,2020-12-12 +404,4092.3,4.0,19.000000000000014,397.510570396478,2020-12-12 +405,4103.400000000001,4.0,19.000000000000014,395.95607174988254,2020-12-12 +416,4221.400000000001,4.0,18.90476190476192,370.51572549812704,2020-12-12 +406,4113.900000000001,4.0,19.000000000000014,394.175482265991,2020-12-12 +408,4136.5,4.0,19.047619047619058,386.8659363145686,2020-12-12 +431,4380.2,4.0,19.47619047619049,377.6128495392321,2020-12-12 +410,4157.6,4.0,19.619047619047635,369.9509031041704,2020-12-12 +411,4168.0,4.0,19.619047619047635,363.6732477413576,2020-12-12 +412,4178.3,4.0,19.428571428571445,363.8806026513851,2020-12-12 +413,4189.2,4.0,19.047619047619058,367.6147653468254,2020-12-12 +407,4125.0,4.0,18.90476190476192,392.0648681103525,2020-12-12 +409,4147.1,4.0,19.428571428571445,379.32488962864784,2020-12-12 +439,4464.0,4.0,19.71428571428573,368.8657477372714,2020-12-12 +433,4401.0,4.0,19.23809523809525,378.2856362350719,2020-12-12 +454,4630.7,4.0,17.00000000000001,354.0225545994245,2020-12-12 +455,4642.3,4.0,16.904761904761916,343.6021867769724,2020-12-12 +456,4653.3,4.0,17.047619047619058,333.4024861762362,2020-12-12 +457,4664.400000000001,4.0,17.333333333333343,326.701258110287,2020-12-12 +458,4675.3,4.0,17.571428571428584,324.7039921612243,2020-12-12 +459,4686.6,4.0,18.09523809523811,327.37269682399864,2020-12-12 +453,4619.5,4.0,16.904761904761916,360.3135345473406,2020-12-12 +460,4697.2,4.0,18.2857142857143,330.99288189583444,2020-12-12 +462,4718.0,4.0,18.571428571428584,339.5531635226191,2020-12-12 +463,4728.900000000001,4.0,18.47619047619049,344.72664566501123,2020-12-12 +464,4739.7,4.0,18.190476190476204,349.0607637943777,2020-12-12 +466,4762.3,4.0,17.90476190476192,345.8579434201721,2020-12-12 +398,4026.8,4.0,19.90476190476192,373.1091921925773,2020-12-12 +465,4751.0,4.0,18.142857142857153,350.29874152452186,2020-12-12 +461,4707.3,4.0,18.47619047619049,333.90878686476856,2020-12-12 +432,4390.5,4.0,19.380952380952394,378.02540742420445,2020-12-12 +452,4608.400000000001,4.0,17.142857142857153,361.61363116924144,2020-12-12 +450,4586.0,4.0,17.380952380952394,356.29258212403477,2020-12-12 +434,4412.2,4.0,19.47619047619049,375.77060042373284,2020-12-12 +435,4422.900000000001,4.0,19.571428571428584,369.74489531269114,2020-12-12 +436,4433.5,4.0,19.952380952380967,364.31923882740864,2020-12-12 +437,4443.3,4.0,20.190476190476204,363.14274566019105,2020-12-12 +438,4453.6,4.0,19.857142857142872,364.35247418761503,2020-12-12 +440,4474.6,4.0,19.857142857142872,375.3621658509476,2020-12-12 +451,4597.2,4.0,17.190476190476204,359.5119340049574,2020-12-12 +441,4485.6,4.0,19.71428571428573,380.6658845913639,2020-12-12 +443,4507.900000000001,4.0,18.47619047619049,390.7255897858889,2020-12-12 +444,4519.5,4.0,17.761904761904773,387.07239057294487,2020-12-12 +445,4530.3,4.0,17.523809523809536,377.2816882726012,2020-12-12 +446,4541.2,4.0,17.952380952380963,366.8327532015815,2020-12-12 +447,4552.400000000001,4.0,17.952380952380963,357.9236858592611,2020-12-12 +448,4563.7,4.0,17.80952380952382,353.7404182787674,2020-12-12 +442,4496.1,4.0,19.047619047619058,386.37255459662526,2020-12-12 +449,4575.1,4.0,17.61904761904763,354.8975852320941,2020-12-12 +362,3626.7000000000003,4.0,17.80952380952382,345.6070422134601,2020-12-12 +396,4005.8,4.0,19.71428571428573,352.65016450605106,2020-12-12 +344,3426.8,4.0,19.333333333333346,392.5534958873172,2020-12-12 +345,3437.2000000000003,4.0,19.428571428571445,384.3752529590598,2020-12-12 +346,3447.6000000000004,4.0,19.238095238095248,373.5349604403468,2020-12-12 +347,3458.6000000000004,4.0,19.2857142857143,366.0387561465709,2020-12-12 +348,3468.8,4.0,19.23809523809525,362.87465343871776,2020-12-12 +349,3479.8,4.0,18.85714285714287,365.0225418286593,2020-12-12 +343,3415.9,4.0,19.380952380952394,396.52689578423883,2020-12-12 +350,3490.4,4.0,18.761904761904773,372.77680367880623,2020-12-12 +352,3513.4,4.0,17.714285714285726,383.0988497511812,2020-12-12 +353,3524.8,4.0,17.238095238095248,380.7785526874917,2020-12-12 +354,3536.9,4.0,17.047619047619058,372.67426521547344,2020-12-12 +355,3548.1000000000004,4.0,16.904761904761916,365.5680014546599,2020-12-12 +356,3558.8,4.0,17.00000000000001,361.02830150254783,2020-12-12 +357,3570.5,4.0,16.904761904761916,360.00338899318706,2020-12-12 +351,3501.7000000000003,4.0,18.2857142857143,380.6051947785617,2020-12-12 +358,3581.8,4.0,17.142857142857153,359.25542067559513,2020-12-12 +342,3405.2000000000003,4.0,19.47619047619049,399.395612811856,2020-12-12 +340,3383.5,4.0,19.47619047619049,395.13794641840707,2020-12-12 +327,3244.4,4.0,19.142857142857157,378.54567495655317,2020-12-12 +328,3255.0,4.0,18.90476190476192,373.2009118681671,2020-12-12 +467,4773.0,4.0,17.90476190476192,337.57270677765734,2020-12-12 +329,3266.3,4.0,19.000000000000014,368.39151831658535,2020-12-12 +330,3276.7000000000003,4.0,19.000000000000014,363.6697086727828,2020-12-12 +331,3287.3,4.0,19.000000000000014,358.74511134761707,2020-12-12 +341,3394.2000000000003,4.0,19.61904761904763,398.0805771927903,2020-12-12 +332,3298.4,4.0,19.000000000000014,355.52151406842415,2020-12-12 +334,3320.0,4.0,19.000000000000014,352.841928483636,2020-12-12 +335,3330.4,4.0,19.000000000000014,358.5024514339509,2020-12-12 +336,3341.0,4.0,18.90476190476192,367.2641195397475,2020-12-12 +337,3351.4,4.0,19.142857142857157,375.9010624067642,2020-12-12 +338,3362.1000000000004,4.0,19.190476190476204,384.7260688010317,2020-12-12 +339,3372.8,4.0,19.47619047619049,390.6690964530283,2020-12-12 +333,3308.8,4.0,19.000000000000014,352.25016807593386,2020-12-12 +359,3593.0,4.0,17.190476190476204,357.0728685981152,2020-12-12 +360,3604.4,4.0,17.380952380952394,352.9280087519743,2020-12-12 +361,3615.7000000000003,4.0,17.61904761904763,349.39558526323003,2020-12-12 +382,3850.3,4.0,17.380952380952394,369.62502573942743,2020-12-12 +383,3860.9,4.0,17.47619047619049,370.7985249889706,2020-12-12 +384,3872.8,4.0,17.523809523809533,371.0954676781588,2020-12-12 +385,3884.3,4.0,17.61904761904763,375.2809636712076,2020-12-12 +386,3895.8,4.0,17.42857142857144,380.67374553935497,2020-12-12 +387,3907.5,4.0,16.952380952380963,381.7163604494071,2020-12-12 +381,3838.9,4.0,17.571428571428584,367.08349054302823,2020-12-12 +388,3918.6000000000004,4.0,16.952380952380963,375.1979429239439,2020-12-12 +390,3941.5,4.0,17.80952380952382,350.1241059298393,2020-12-12 +391,3951.7000000000003,4.0,18.238095238095248,346.7626955994564,2020-12-12 +392,3962.5,4.0,18.333333333333346,350.48245504842146,2020-12-12 +393,3973.8,4.0,18.238095238095248,356.26064235667826,2020-12-12 +394,3984.8,4.0,18.523809523809536,356.8335601413291,2020-12-12 +395,3995.5,4.0,18.90476190476192,353.9587571372397,2020-12-12 +389,3930.0,4.0,17.238095238095248,362.6272507258156,2020-12-12 +380,3827.9,4.0,18.047619047619058,363.9414051333592,2020-12-12 +379,3816.2000000000003,4.0,17.952380952380963,360.42686299800266,2020-12-12 +378,3805.4,4.0,17.714285714285726,360.7437990372813,2020-12-12 +363,3638.1000000000004,4.0,17.952380952380963,344.88537499428776,2020-12-12 +364,3648.9,4.0,18.047619047619058,349.11094428753415,2020-12-12 +365,3659.3,4.0,17.66666666666668,356.1609213736866,2020-12-12 +366,3671.1000000000004,4.0,17.238095238095248,363.91724199719744,2020-12-12 +367,3682.5,4.0,17.190476190476204,367.34865806870516,2020-12-12 +368,3693.7000000000003,4.0,17.095238095238106,365.060765212537,2020-12-12 +369,3704.9,4.0,17.380952380952394,358.1153545181331,2020-12-12 +370,3716.3,4.0,17.61904761904763,352.5040764310811,2020-12-12 +371,3727.1000000000004,4.0,17.904761904761916,349.1373789209981,2020-12-12 +372,3738.4,4.0,17.714285714285726,349.5914584584208,2020-12-12 +373,3749.2000000000003,4.0,17.80952380952382,353.60070728360205,2020-12-12 +374,3760.5,4.0,17.761904761904773,360.15212253991126,2020-12-12 +375,3771.7000000000003,4.0,17.571428571428584,363.8193567073273,2020-12-12 +376,3783.1000000000004,4.0,17.571428571428584,365.5617907848822,2020-12-12 +377,3794.5,4.0,17.761904761904773,364.21885054751044,2020-12-12 +397,4016.5,4.0,19.90476190476192,360.044797219821,2020-12-12 +468,4783.900000000001,4.0,18.142857142857153,331.8498005413594,2020-12-12 +542,5552.900000000001,4.0,17.80952380952382,310.082073429445,2020-12-12 +470,4804.6,4.0,18.333333333333346,337.16447465116966,2020-12-12 +563,5779.400000000001,4.0,18.000000000000014,324.0928883304359,2020-12-12 +564,5789.700000000001,4.0,18.190476190476204,319.1757274449744,2020-12-12 +565,5800.0,4.0,18.47619047619049,315.28740024996773,2020-12-12 +566,5810.700000000001,4.0,18.000000000000014,311.74247712966826,2020-12-12 +567,5821.900000000001,4.0,17.714285714285726,310.60808776123025,2020-12-12 +568,5832.900000000001,4.0,17.523809523809536,310.5206787368935,2020-12-12 +562,5768.8,4.0,17.90476190476192,326.21451592699697,2020-12-12 +569,5842.8,4.0,17.428571428571438,310.9475631120969,2020-12-12 +571,5864.700000000001,4.0,17.66666666666668,312.39702850154583,2020-12-12 +572,5875.200000000001,4.0,17.761904761904773,310.01316382476995,2020-12-12 +573,5886.1,4.0,17.66666666666668,302.43285032934904,2020-12-12 +574,5896.8,4.0,17.047619047619058,314.20284551035627,2020-12-12 +575,5908.0,4.0,16.523809523809533,334.8695635594672,2020-12-12 +576,5908.0,4.0,15.619047619047628,328.90118204320845,2020-12-12 +570,5854.0,4.0,17.61904761904763,312.9671817117477,2020-12-12 +577,5908.0,4.0,17.238095238095248,270.3844785503426,2020-12-12 +561,5757.700000000001,4.0,17.47619047619049,319.83175930556376,2020-12-12 +559,5735.5,4.0,17.85714285714287,299.081395712201,2020-12-12 +545,5585.900000000001,4.0,18.09523809523811,321.53089682097584,2020-12-12 +546,5596.6,4.0,18.333333333333343,324.57604318307983,2020-12-12 +547,5607.0,4.0,17.904761904761916,326.5201757119319,2020-12-12 +548,5617.8,4.0,17.761904761904773,330.3695190140003,2020-12-12 +549,5628.400000000001,4.0,17.380952380952394,330.7595480659289,2020-12-12 +550,5639.400000000001,4.0,17.1904761904762,328.52449238631937,2020-12-12 +560,5746.5,4.0,17.571428571428584,309.19278870272825,2020-12-12 +551,5650.1,4.0,17.61904761904763,326.4903278553237,2020-12-12 +553,5671.6,4.0,17.952380952380963,314.70069979583263,2020-12-12 +554,5682.400000000001,4.0,17.952380952380963,309.67673937561153,2020-12-12 +555,5692.8,4.0,17.714285714285726,304.3651570516713,2020-12-12 +556,5704.3,4.0,17.761904761904773,299.9691537053046,2020-12-12 +557,5715.0,4.0,17.571428571428584,295.31060891262246,2020-12-12 +558,5725.1,4.0,17.571428571428584,293.2547541151663,2020-12-12 +552,5661.400000000001,4.0,17.80952380952382,320.87093558210086,2020-12-12 +544,5574.6,4.0,17.61904761904763,315.7198008684537,2020-12-12 +578,5908.0,4.0,16.571428571428584,179.11323545179107,2020-12-12 +594,5987.0,4.0,20.809523809523824,185.6764962861909,2020-12-12 +613,6176.6,4.0,19.952380952380967,310.58669801981625,2020-12-12 +614,6186.400000000001,4.0,19.809523809523824,309.9152881152751,2020-12-12 +615,6196.6,4.0,19.619047619047635,313.3868218560226,2020-12-12 +616,6206.8,4.0,19.380952380952394,319.3771771248425,2020-12-12 +617,6217.400000000001,4.0,19.190476190476204,325.7611682067592,2020-12-12 +618,6227.5,4.0,19.047619047619058,328.19422663526814,2020-12-12 +612,6166.6,4.0,19.952380952380967,313.5845529274344,2020-12-12 +619,6237.400000000001,4.0,18.952380952380963,325.33494596471115,2020-12-12 +621,6257.8,4.0,19.66666666666668,312.72912387050536,2020-12-12 +622,6267.8,4.0,19.952380952380967,311.79020133864833,2020-12-12 +623,6278.3,4.0,20.09523809523811,316.404097608955,2020-12-12 +624,6288.0,4.0,20.000000000000014,322.65230472190547,2020-12-12 +326,3233.3,4.0,19.190476190476204,380.40709812392765,2020-12-12 +625,6298.3,4.0,20.000000000000014,327.3697083318329,2020-12-12 +620,6247.700000000001,4.0,19.333333333333346,318.7883927143451,2020-12-12 +593,5976.900000000001,4.0,25.04761904761906,101.02968082239857,2020-12-12 +611,6156.8,4.0,19.71428571428573,317.97167436383404,2020-12-12 +609,6136.3,4.0,19.71428571428573,327.16633204925006,2020-12-12 +595,5997.3,4.0,16.714285714285726,261.5368184927181,2020-12-12 +596,6007.3,4.0,19.66666666666668,307.8536450523276,2020-12-12 +597,6016.900000000001,4.0,20.47619047619049,319.1676980731622,2020-12-12 +598,6026.3,4.0,20.71428571428573,313.2530045728081,2020-12-12 +599,6036.6,4.0,20.61904761904763,323.5663480259743,2020-12-12 +600,6046.200000000001,4.0,20.42857142857144,330.19164004983327,2020-12-12 +610,6146.8,4.0,19.66666666666668,322.73622142676805,2020-12-12 +601,6056.3,4.0,19.952380952380967,332.4103200816046,2020-12-12 +603,6076.6,4.0,20.2857142857143,326.2024887572413,2020-12-12 +604,6086.200000000001,4.0,20.333333333333346,322.96675731321136,2020-12-12 +605,6096.5,4.0,20.2857142857143,324.7154964118698,2020-12-12 +606,6106.6,4.0,20.142857142857157,328.449955196584,2020-12-12 +607,6116.700000000001,4.0,20.000000000000014,330.64107652051894,2020-12-12 +608,6126.700000000001,4.0,19.857142857142872,329.8880716668149,2020-12-12 +602,6066.5,4.0,20.04761904761906,330.13558863260835,2020-12-12 +543,5564.3,4.0,17.66666666666668,312.6923596416906,2020-12-12 +541,5542.1,4.0,17.61904761904763,311.71622848158154,2020-12-12 +540,5532.5,4.0,17.85714285714287,322.14853020582746,2020-12-12 +489,5010.400000000001,4.0,19.47619047619049,327.1923365097791,2020-12-12 +490,5020.700000000001,4.0,19.619047619047635,333.5947279268113,2020-12-12 +491,5031.200000000001,4.0,19.809523809523824,341.7260005741472,2020-12-12 +492,5041.6,4.0,19.761904761904777,347.80195386320213,2020-12-12 +493,5052.1,4.0,20.23809523809525,349.14504524026603,2020-12-12 +494,5062.5,4.0,20.2857142857143,344.22478536785314,2020-12-12 +488,5000.3,4.0,19.142857142857153,331.476388153822,2020-12-12 +495,5071.400000000001,4.0,20.333333333333346,334.7193650688762,2020-12-12 +497,5091.400000000001,4.0,20.142857142857157,321.9964301312926,2020-12-12 +498,5101.1,4.0,19.90476190476192,322.8595899603792,2020-12-12 +499,5111.400000000001,4.0,20.000000000000014,329.62569564396966,2020-12-12 +500,5121.3,4.0,20.000000000000014,337.4964018066002,2020-12-12 +501,5131.700000000001,4.0,20.000000000000014,345.4284898022333,2020-12-12 +502,5141.700000000001,4.0,20.000000000000014,352.7071264304627,2020-12-12 +496,5081.6,4.0,20.2857142857143,327.4684729725541,2020-12-12 +503,5151.8,4.0,20.000000000000014,355.9372883162712,2020-12-12 +487,4990.0,4.0,18.80952380952382,341.5512039779604,2020-12-12 +485,4968.5,4.0,18.047619047619058,357.6480172130716,2020-12-12 +471,4815.400000000001,4.0,18.2857142857143,346.39541244252297,2020-12-12 +472,4826.7,4.0,18.142857142857153,353.1974869725499,2020-12-12 +473,4837.3,4.0,17.90476190476192,354.91274161910223,2020-12-12 +474,4848.900000000001,4.0,18.000000000000014,352.08598095230053,2020-12-12 +475,4859.8,4.0,18.000000000000014,349.2878126794516,2020-12-12 +476,4870.400000000001,4.0,18.000000000000014,346.33400049934676,2020-12-12 +486,4979.200000000001,4.0,18.238095238095248,352.63275692175614,2020-12-12 +477,4881.6,4.0,17.90476190476192,343.54046342418474,2020-12-12 +479,4903.1,4.0,18.2857142857143,335.61604549238683,2020-12-12 +480,4913.0,4.0,18.333333333333346,329.84404435487625,2020-12-12 +481,4923.8,4.0,18.2857142857143,328.6442737662997,2020-12-12 +482,4935.0,4.0,18.142857142857153,332.6291124360273,2020-12-12 +483,4945.400000000001,4.0,17.90476190476192,340.92836904857484,2020-12-12 +484,4957.0,4.0,17.90476190476192,352.2374698034265,2020-12-12 +478,4892.400000000001,4.0,18.142857142857153,340.0983036278646,2020-12-12 +504,5162.0,4.0,20.000000000000014,358.1365828793738,2020-12-12 +505,5172.400000000001,4.0,20.000000000000014,359.45676305617485,2020-12-12 +506,5182.700000000001,4.0,19.90476190476192,357.5845017807445,2020-12-12 +526,5388.6,4.0,20.000000000000014,335.01396671950585,2020-12-12 +527,5398.5,4.0,20.09523809523811,333.4251364631707,2020-12-12 +528,5408.6,4.0,19.857142857142872,332.2485274175119,2020-12-12 +529,5418.8,4.0,19.71428571428573,332.4782028346584,2020-12-12 +530,5429.0,4.0,19.66666666666668,333.31264298011945,2020-12-12 +531,5439.200000000001,4.0,19.71428571428573,330.48285672310857,2020-12-12 +525,5378.8,4.0,20.000000000000014,334.8406623191647,2020-12-12 +532,5448.6,4.0,19.857142857142872,325.5833636756388,2020-12-12 +534,5468.8,4.0,19.952380952380967,320.0008441082125,2020-12-12 +535,5478.8,4.0,19.66666666666668,323.92273183674945,2020-12-12 +536,5489.0,4.0,19.52380952380954,333.0383676256446,2020-12-12 +537,5499.6,4.0,18.85714285714287,339.86360126833847,2020-12-12 +538,5509.6,4.0,18.2857142857143,340.2427051682273,2020-12-12 +539,5521.400000000001,4.0,18.00000000000001,334.45625270539927,2020-12-12 +533,5458.700000000001,4.0,20.190476190476204,321.58857266372155,2020-12-12 +524,5368.6,4.0,20.000000000000014,332.5167390862657,2020-12-12 +523,5358.200000000001,4.0,20.000000000000014,329.6436852406084,2020-12-12 +522,5347.900000000001,4.0,20.000000000000014,331.2279084485799,2020-12-12 +507,5193.0,4.0,20.04761904761906,353.73185277682614,2020-12-12 +508,5203.0,4.0,20.42857142857144,347.68300035972777,2020-12-12 +509,5213.400000000001,4.0,20.61904761904763,338.9515455107699,2020-12-12 +510,5223.200000000001,4.0,20.61904761904763,334.1458357449795,2020-12-12 +511,5233.3,4.0,20.42857142857144,335.5088904086462,2020-12-12 +512,5243.8,4.0,20.04761904761906,339.74201077964005,2020-12-12 +513,5254.200000000001,4.0,19.90476190476192,344.8241771405196,2020-12-12 +514,5264.900000000001,4.0,20.000000000000014,349.3719002898486,2020-12-12 +515,5275.5,4.0,20.09523809523811,351.8329148655787,2020-12-12 +516,5286.0,4.0,19.857142857142872,354.8071248268943,2020-12-12 +517,5295.900000000001,4.0,19.71428571428573,358.517163200837,2020-12-12 +518,5307.1,4.0,19.66666666666668,359.7345378021733,2020-12-12 +519,5317.700000000001,4.0,19.71428571428573,355.6612316641531,2020-12-12 +520,5327.400000000001,4.0,19.857142857142872,347.75380753021705,2020-12-12 +521,5338.400000000001,4.0,20.09523809523811,338.19827600878284,2020-12-12 +469,4794.6,4.0,18.2857142857143,331.58760597827074,2020-12-12 +325,3222.7000000000003,4.0,19.380952380952394,375.9779599578417,2020-12-12 +174,1567.4,4.0,18.190476190476204,370.42246241966177,2020-12-12 +323,3201.4,4.0,19.90476190476192,366.9310469254219,2020-12-12 +114,1055.3,4.0,17.047619047619058,325.7183379538518,2020-12-12 +115,1066.5,4.0,16.904761904761916,329.76240680676676,2020-12-12 +116,1077.5,4.0,17.00000000000001,330.2085246236013,2020-12-12 +117,1088.5,4.0,17.00000000000001,329.08350557977053,2020-12-12 +118,1099.1000000000001,4.0,17.00000000000001,330.08283537407885,2020-12-12 +119,1110.3,4.0,16.904761904761916,332.58992602152057,2020-12-12 +113,1044.4,4.0,17.42857142857144,318.0922486509898,2020-12-12 +120,1121.8,4.0,17.047619047619058,333.5961005502669,2020-12-12 +122,1143.6000000000001,4.0,17.61904761904763,328.78982166600747,2020-12-12 +123,1154.4,4.0,17.61904761904763,325.83232099658005,2020-12-12 +124,1165.5,4.0,17.42857142857144,324.5347533666429,2020-12-12 +125,1176.6000000000001,4.0,17.047619047619058,323.46096005385954,2020-12-12 +126,1187.4,4.0,16.904761904761916,322.43786494383824,2020-12-12 +127,1198.7,4.0,17.00000000000001,320.99316962566627,2020-12-12 +121,1133.0,4.0,17.42857142857144,332.2935955265874,2020-12-12 +128,1209.8,4.0,17.00000000000001,318.15032666170754,2020-12-12 +112,1033.6000000000001,4.0,17.61904761904763,307.50722526480945,2020-12-12 +110,1012.0,4.0,17.42857142857144,298.2837079383985,2020-12-12 +96,859.2,4.0,17.333333333333343,305.5468809756393,2020-12-12 +97,870.2,4.0,17.761904761904773,308.2906274220949,2020-12-12 +98,880.6,4.0,17.904761904761916,314.3387677017671,2020-12-12 +99,891.7,4.0,17.761904761904773,320.912521540215,2020-12-12 +100,902.6,4.0,17.333333333333343,325.4573028183605,2020-12-12 +101,913.4000000000001,4.0,17.047619047619058,324.4508581906975,2020-12-12 +111,1022.3000000000001,4.0,17.61904761904763,299.45890424833397,2020-12-12 +102,924.0,4.0,16.904761904761916,319.0439684436941,2020-12-12 +104,946.1,4.0,17.00000000000001,304.81481671190136,2020-12-12 +105,956.8000000000001,4.0,17.00000000000001,301.35960578452887,2020-12-12 +106,968.0,4.0,17.00000000000001,302.55977461888017,2020-12-12 +107,978.7,4.0,17.00000000000001,303.6781095029332,2020-12-12 +108,989.9000000000001,4.0,16.904761904761916,302.75915439300877,2020-12-12 +109,1001.1,4.0,17.047619047619058,300.5874652858761,2020-12-12 +103,935.0,4.0,17.00000000000001,311.67339193566204,2020-12-12 +95,848.2,4.0,17.047619047619058,305.94759330640926,2020-12-12 +129,1220.1000000000001,4.0,17.00000000000001,315.6946480949741,2020-12-12 +131,1242.3000000000002,4.0,17.00000000000001,311.2855728644912,2020-12-12 +150,1448.7,4.0,17.00000000000001,305.68735436027174,2020-12-12 +151,1459.5,4.0,17.00000000000001,304.7359550455571,2020-12-12 +152,1470.4,4.0,17.00000000000001,309.1713258989696,2020-12-12 +153,1470.4,4.0,17.00000000000001,340.46205628576035,2020-12-12 +154,1470.4,4.0,17.761904761904773,348.17420681226406,2020-12-12 +155,1470.4,4.0,15.38095238095239,299.7233701660248,2020-12-12 +149,1437.9,4.0,17.00000000000001,307.37896013007764,2020-12-12 +156,1470.4,4.0,15.428571428571438,210.84130929757322,2020-12-12 +171,1534.7,4.0,15.38095238095239,118.20172874717863,2020-12-12 +172,1545.2,4.0,18.714285714285726,220.66028849497414,2020-12-12 +173,1556.6000000000001,4.0,18.42857142857144,316.9918217883342,2020-12-12 +175,1579.1000000000001,4.0,18.190476190476204,380.2355113606071,2020-12-12 +176,1589.9,4.0,18.333333333333343,364.4460719759471,2020-12-12 +177,1600.8000000000002,4.0,18.61904761904763,354.9967233002692,2020-12-12 +157,1494.6000000000001,4.0,15.095238095238106,107.1402680032358,2020-12-12 +130,1231.5,4.0,17.00000000000001,313.09668357798057,2020-12-12 +148,1427.2,4.0,17.00000000000001,307.30447835164864,2020-12-12 +146,1405.8000000000002,4.0,17.238095238095248,300.17428663327644,2020-12-12 +132,1252.7,4.0,17.095238095238106,312.29084443269085,2020-12-12 +133,1263.8000000000002,4.0,16.85714285714287,315.8174729556756,2020-12-12 +134,1275.1000000000001,4.0,16.714285714285726,317.4713948473835,2020-12-12 +135,1286.4,4.0,16.66666666666668,314.55026313060483,2020-12-12 +136,1296.8000000000002,4.0,16.714285714285726,306.5923768726017,2020-12-12 +137,1307.4,4.0,16.85714285714287,299.12326691167857,2020-12-12 +147,1416.5,4.0,16.904761904761916,304.83377644226823,2020-12-12 +138,1318.5,4.0,17.095238095238106,294.89589315413815,2020-12-12 +140,1340.5,4.0,17.095238095238106,305.37119022014815,2020-12-12 +141,1351.2,4.0,16.761904761904773,307.96312453867415,2020-12-12 +142,1362.5,4.0,16.85714285714287,305.06634793014314,2020-12-12 +143,1374.2,4.0,16.952380952380963,299.2786829404428,2020-12-12 +144,1384.0,4.0,17.047619047619058,292.34288433902407,2020-12-12 +145,1394.7,4.0,17.142857142857153,293.8463737456518,2020-12-12 +139,1329.6000000000001,4.0,17.00000000000001,298.6925077741878,2020-12-12 +94,837.3000000000001,4.0,16.904761904761916,308.99797596298237,2020-12-12 +93,827.0,4.0,17.00000000000001,312.47105652512363,2020-12-12 +92,815.8000000000001,4.0,16.904761904761916,311.6717908870319,2020-12-12 +33,218.8,4.0,17.2857142857143,337.04032806222904,2020-12-12 +34,229.9,4.0,17.142857142857153,347.64876395582803,2020-12-12 +35,241.3,4.0,16.904761904761916,351.19917873491755,2020-12-12 +36,252.9,4.0,17.00000000000001,344.83916299571877,2020-12-12 +37,264.0,4.0,17.00000000000001,335.16448766143844,2020-12-12 +38,275.2,4.0,17.00000000000001,328.2526799946678,2020-12-12 +32,207.20000000000002,4.0,17.619047619047628,323.05545252099466,2020-12-12 +39,287.0,4.0,17.095238095238106,327.9249219807498,2020-12-12 +41,308.90000000000003,4.0,16.714285714285726,332.45507449848157,2020-12-12 +42,320.5,4.0,16.571428571428584,323.35281374206477,2020-12-12 +43,331.6,4.0,16.85714285714287,318.682530739664,2020-12-12 +44,341.70000000000005,4.0,17.142857142857153,318.9439603759435,2020-12-12 +45,352.5,4.0,16.285714285714295,299.3843695512519,2020-12-12 +46,362.8,4.0,17.66666666666668,250.05703198248216,2020-12-12 +40,297.90000000000003,4.0,16.85714285714287,331.224497652481,2020-12-12 +47,362.8,4.0,21.428571428571445,175.83616090489062,2020-12-12 +31,196.10000000000002,4.0,16.761904761904773,311.14416571756095,2020-12-12 +29,174.8,4.0,16.2857142857143,294.7333601954062,2020-12-12 +626,6308.3,4.0,20.000000000000014,328.9513757537532,2020-12-12 +16,64.60000000000001,4.0,24.2857142857143,140.6256570741062,2020-12-12 +17,71.60000000000001,4.0,24.190476190476208,159.27491241087165,2020-12-12 +18,78.7,4.0,24.190476190476208,168.4376032103628,2020-12-12 +19,85.9,4.0,23.761904761904777,169.26462712838065,2020-12-12 +20,93.7,4.0,23.571428571428587,167.68319926374562,2020-12-12 +30,185.5,4.0,16.238095238095248,301.92155483583366,2020-12-12 +21,101.2,4.0,23.809523809523824,166.0181911027057,2020-12-12 +23,115.60000000000001,4.0,23.71428571428573,181.7893874666695,2020-12-12 +24,123.30000000000001,4.0,22.2857142857143,197.49298815789348,2020-12-12 +25,131.9,4.0,20.809523809523824,218.35904923392167,2020-12-12 +26,141.4,4.0,19.71428571428573,240.1557318181038,2020-12-12 +27,151.3,4.0,17.952380952380963,260.45357950672064,2020-12-12 +28,161.8,4.0,17.047619047619058,279.1789071287752,2020-12-12 +22,108.4,4.0,24.09523809523811,169.93669973146947,2020-12-12 +56,423.70000000000005,4.0,18.23809523809525,125.84641861055766,2020-12-12 +57,434.20000000000005,4.0,15.952380952380963,189.79125715943255,2020-12-12 +58,445.20000000000005,4.0,16.428571428571438,248.68098096237497,2020-12-12 +78,664.3000000000001,4.0,16.61904761904763,299.2834917180059,2020-12-12 +79,675.4000000000001,4.0,16.523809523809536,303.83368058390295,2020-12-12 +80,686.4000000000001,4.0,16.571428571428584,308.9278088892801,2020-12-12 +81,698.3000000000001,4.0,16.238095238095248,308.2977968704571,2020-12-12 +82,708.8000000000001,4.0,16.2857142857143,302.6332865515667,2020-12-12 +83,719.8000000000001,4.0,16.619047619047628,300.5409123517653,2020-12-12 +77,653.2,4.0,16.42857142857144,298.69584472336027,2020-12-12 +84,730.8000000000001,4.0,16.80952380952382,301.2683050436016,2020-12-12 +86,752.2,4.0,17.142857142857153,303.770116392686,2020-12-12 +87,762.8000000000001,4.0,17.42857142857144,296.8193328520941,2020-12-12 +88,773.3000000000001,4.0,17.61904761904763,288.1869437572374,2020-12-12 +89,784.1,4.0,17.61904761904763,287.825748590989,2020-12-12 +90,793.9000000000001,4.0,17.42857142857144,294.89412821210215,2020-12-12 +91,805.6,4.0,17.047619047619058,304.62941277514403,2020-12-12 +85,741.5,4.0,16.761904761904773,304.2991084289466,2020-12-12 +76,642.5,4.0,16.047619047619058,299.5548235236946,2020-12-12 +75,630.9000000000001,4.0,15.904761904761916,302.46333811455224,2020-12-12 +74,619.7,4.0,16.00000000000001,303.49354579184217,2020-12-12 +59,455.90000000000003,4.0,16.85714285714287,286.4041789578048,2020-12-12 +60,466.40000000000003,4.0,17.095238095238106,299.92782148742714,2020-12-12 +61,477.20000000000005,4.0,17.095238095238106,302.5598514051759,2020-12-12 +62,488.3,4.0,16.85714285714287,303.5402352554007,2020-12-12 +63,499.3,4.0,16.61904761904763,306.57186072705815,2020-12-12 +64,509.8,4.0,16.80952380952382,307.8800378815854,2020-12-12 +65,520.3000000000001,4.0,17.095238095238106,304.7556691412707,2020-12-12 +66,530.9,4.0,17.047619047619058,299.7486535410892,2020-12-12 +67,541.5,4.0,17.095238095238106,297.6733908502342,2020-12-12 +68,552.3000000000001,4.0,16.904761904761916,299.5899709628952,2020-12-12 +69,564.0,4.0,16.571428571428584,303.45192414692394,2020-12-12 +70,574.8000000000001,4.0,16.523809523809536,306.87097777104174,2020-12-12 +71,585.9,4.0,16.42857142857144,307.59552040745734,2020-12-12 +72,597.4,4.0,16.047619047619058,305.46015112845436,2020-12-12 +73,608.2,4.0,15.904761904761916,303.5459566938007,2020-12-12 +178,1611.8000000000002,4.0,18.61904761904763,358.2148818816143,2020-12-12 +324,3211.9,4.0,19.619047619047635,371.1451470483472,2020-12-12 +179,1622.8000000000002,4.0,18.428571428571438,367.32660288701584,2020-12-12 +181,1644.9,4.0,17.90476190476192,370.3233939702609,2020-12-12 +273,2647.6000000000004,4.0,17.00000000000001,363.38297841076985,2020-12-12 +274,2658.7000000000003,4.0,17.00000000000001,365.1888708894995,2020-12-12 +275,2670.0,4.0,17.00000000000001,360.7824767266305,2020-12-12 +276,2681.8,4.0,17.00000000000001,353.27514934802343,2020-12-12 +277,2692.9,4.0,17.00000000000001,346.9624523699003,2020-12-12 +278,2704.0,4.0,17.00000000000001,343.89531975832,2020-12-12 +272,2635.3,4.0,17.00000000000001,357.3613467404294,2020-12-12 +279,2716.0,4.0,16.904761904761916,345.21953222769974,2020-12-12 +281,2739.0,4.0,17.42857142857144,347.82261180263174,2020-12-12 +282,2749.6000000000004,4.0,17.61904761904763,345.8319541904089,2020-12-12 +283,2760.8,4.0,17.61904761904763,345.0032988551071,2020-12-12 +284,2772.2000000000003,4.0,17.42857142857144,346.51423377207885,2020-12-12 +285,2783.5,4.0,17.047619047619058,351.8694807238536,2020-12-12 +286,2795.3,4.0,16.904761904761916,359.22654948620084,2020-12-12 +280,2727.7000000000003,4.0,17.047619047619058,347.77281351605177,2020-12-12 +287,2806.6000000000004,4.0,16.904761904761916,364.496241739221,2020-12-12 +271,2624.8,4.0,17.00000000000001,353.19806482205763,2020-12-12 +269,2601.8,4.0,17.00000000000001,359.213316423562,2020-12-12 +255,2446.0,4.0,19.2857142857143,353.2785546614417,2020-12-12 +256,2456.4,4.0,19.333333333333346,351.71890462426654,2020-12-12 +257,2466.9,4.0,19.2857142857143,355.9327515110699,2020-12-12 +258,2477.9,4.0,19.333333333333346,365.1685698284879,2020-12-12 +259,2488.4,4.0,18.809523809523824,376.2227049400751,2020-12-12 +260,2499.6000000000004,4.0,18.23809523809525,385.94018806565475,2020-12-12 +270,2613.7000000000003,4.0,17.00000000000001,354.0266708205874,2020-12-12 +261,2511.0,4.0,17.80952380952382,391.2515637982137,2020-12-12 +263,2534.1000000000004,4.0,17.142857142857153,379.4511488011287,2020-12-12 +264,2545.6000000000004,4.0,17.2857142857143,373.3729488166076,2020-12-12 +265,2556.6000000000004,4.0,17.142857142857153,370.242729781638,2020-12-12 +266,2568.3,4.0,16.904761904761916,371.0825529570352,2020-12-12 +267,2579.5,4.0,17.00000000000001,371.8247215094879,2020-12-12 +268,2590.6000000000004,4.0,17.00000000000001,366.9239213938023,2020-12-12 +262,2522.6000000000004,4.0,17.380952380952394,387.4173372292997,2020-12-12 +254,2435.9,4.0,19.142857142857157,356.142602577418,2020-12-12 +288,2818.1000000000004,4.0,17.142857142857153,365.0322029517839,2020-12-12 +290,2840.7000000000003,4.0,17.333333333333343,356.77364374078854,2020-12-12 +309,3051.7000000000003,4.0,20.000000000000014,362.4726106050389,2020-12-12 +310,3062.0,4.0,19.619047619047635,365.48199995498214,2020-12-12 +311,3072.5,4.0,19.380952380952394,363.78592840489625,2020-12-12 +312,3083.1000000000004,4.0,19.09523809523811,360.89774028711236,2020-12-12 +313,3094.6000000000004,4.0,19.2857142857143,355.9258496936852,2020-12-12 +314,3104.5,4.0,19.09523809523811,351.5458291831859,2020-12-12 +308,3040.4,4.0,19.66666666666668,356.4357152916105,2020-12-12 +315,3114.9,4.0,19.380952380952394,346.79250523963435,2020-12-12 +317,3136.5,4.0,19.761904761904773,348.88090605853324,2020-12-12 +318,3146.6000000000004,4.0,19.42857142857144,356.2158484210156,2020-12-12 +319,3157.7000000000003,4.0,19.47619047619049,364.34326273736247,2020-12-12 +320,3169.4,4.0,19.380952380952394,369.68092798990995,2020-12-12 +321,3179.4,4.0,19.66666666666668,368.33919582296426,2020-12-12 +322,3190.1000000000004,4.0,19.809523809523824,366.2742528362162,2020-12-12 +316,3125.5,4.0,19.71428571428573,346.28463687287336,2020-12-12 +289,2829.3,4.0,17.2857142857143,361.4928266854421,2020-12-12 +307,3029.7000000000003,4.0,19.47619047619049,347.4050055504291,2020-12-12 +305,3008.8,4.0,18.80952380952382,334.33731898996643,2020-12-12 +291,2852.0,4.0,17.2857142857143,355.32935219229375,2020-12-12 +292,2863.4,4.0,17.142857142857153,357.1463874460139,2020-12-12 +293,2874.7000000000003,4.0,16.904761904761916,361.28586339542517,2020-12-12 +294,2886.6000000000004,4.0,16.904761904761916,363.05117891121205,2020-12-12 +295,2897.9,4.0,17.047619047619058,360.656123190011,2020-12-12 +296,2909.4,4.0,17.42857142857144,356.31258511676083,2020-12-12 +306,3019.7000000000003,4.0,19.09523809523811,340.20774951793885,2020-12-12 +297,2920.0,4.0,17.61904761904763,353.49156239895433,2020-12-12 +299,2943.1000000000004,4.0,17.42857142857144,365.8098438079562,2020-12-12 +300,2953.9,4.0,16.952380952380963,372.2542521136125,2020-12-12 +301,2965.5,4.0,16.85714285714287,370.11549771738856,2020-12-12 +302,2976.7000000000003,4.0,17.380952380952394,360.43393095118597,2020-12-12 +303,2988.0,4.0,18.09523809523811,345.78734715008403,2020-12-12 +304,2998.0,4.0,18.380952380952394,335.54651373540173,2020-12-12 +15,57.6,4.0,27.76190476190478,116.12195168659126,2020-12-12 +253,2425.0,4.0,18.90476190476192,359.052716308665,2020-12-12 +252,2414.4,4.0,19.000000000000014,360.38997665368925,2020-12-12 +251,2403.7000000000003,4.0,19.000000000000014,361.7053054474066,2020-12-12 +200,1854.1000000000001,4.0,18.000000000000014,363.20021400369075,2020-12-12 +201,1864.8000000000002,4.0,18.000000000000014,357.83855066406295,2020-12-12 +202,1876.2,4.0,18.09523809523811,352.9631821814231,2020-12-12 +203,1886.9,4.0,17.952380952380963,351.21323086991595,2020-12-12 +204,1898.2,4.0,17.66666666666668,351.6816857082712,2020-12-12 +205,1909.6000000000001,4.0,17.238095238095248,357.4902593374954,2020-12-12 +199,1843.3000000000002,4.0,18.000000000000014,365.0514780824643,2020-12-12 +206,1920.7,4.0,17.095238095238106,364.119247628833,2020-12-12 +208,1944.2,4.0,17.80952380952382,366.8186236561763,2020-12-12 +209,1955.1000000000001,4.0,18.238095238095248,361.9111380540734,2020-12-12 +210,1965.7,4.0,18.42857142857144,357.18214209080054,2020-12-12 +211,1976.6000000000001,4.0,18.190476190476204,358.0345017065605,2020-12-12 +212,1987.6000000000001,4.0,18.09523809523811,360.0790572066247,2020-12-12 +213,1999.3000000000002,4.0,18.2857142857143,360.8446012909808,2020-12-12 +207,1932.7,4.0,17.142857142857153,368.19745574485626,2020-12-12 +214,2009.8000000000002,4.0,19.000000000000014,357.6310821945258,2020-12-12 +198,1832.4,4.0,18.000000000000014,361.87220131664344,2020-12-12 +196,1809.6000000000001,4.0,18.000000000000014,346.58139566820284,2020-12-12 +182,1656.2,4.0,18.000000000000014,362.11933630587646,2020-12-12 +183,1666.5,4.0,18.000000000000014,355.7733952200898,2020-12-12 +184,1677.3000000000002,4.0,18.000000000000014,354.95192242337214,2020-12-12 +185,1688.6000000000001,4.0,17.90476190476192,359.38725198598956,2020-12-12 +186,1700.0,4.0,18.142857142857153,363.90074822365506,2020-12-12 +187,1711.0,4.0,18.190476190476204,363.2042552516225,2020-12-12 +197,1821.0,4.0,18.000000000000014,353.69797254221083,2020-12-12 +188,1721.1000000000001,4.0,18.380952380952394,359.96785924041745,2020-12-12 +190,1743.3000000000002,4.0,18.61904761904763,364.77341404723944,2020-12-12 +191,1754.3000000000002,4.0,18.23809523809525,371.7685067087375,2020-12-12 +192,1765.1000000000001,4.0,18.095238095238106,375.6744957662685,2020-12-12 +193,1776.6000000000001,4.0,17.761904761904773,369.0149667716092,2020-12-12 +194,1788.1000000000001,4.0,17.761904761904773,357.4264587911715,2020-12-12 +195,1798.7,4.0,18.09523809523811,348.2348666074606,2020-12-12 +189,1732.2,4.0,18.80952380952382,360.64191639017395,2020-12-12 +215,2020.5,4.0,19.619047619047635,354.1618513187484,2020-12-12 +216,2031.3000000000002,4.0,20.142857142857157,355.3829545622041,2020-12-12 +217,2041.9,4.0,20.04761904761906,361.3930523178626,2020-12-12 +237,2254.3,4.0,19.142857142857157,358.56168479908786,2020-12-12 +238,2264.9,4.0,19.2857142857143,357.8818218632731,2020-12-12 +239,2275.9,4.0,19.333333333333346,359.1618589244739,2020-12-12 +240,2286.6,4.0,19.2857142857143,365.2820181822931,2020-12-12 +241,2297.0,4.0,19.047619047619058,370.44664946240476,2020-12-12 +242,2307.7000000000003,4.0,19.047619047619058,374.2961585499851,2020-12-12 +236,2243.8,4.0,18.80952380952382,359.6918695424366,2020-12-12 +243,2318.2000000000003,4.0,19.2857142857143,377.0376202413208,2020-12-12 +245,2339.2000000000003,4.0,19.2857142857143,382.80310421704945,2020-12-12 +246,2349.8,4.0,19.142857142857157,386.82679901638994,2020-12-12 +247,2360.8,4.0,18.90476190476192,386.6309707249252,2020-12-12 +248,2371.6,4.0,19.000000000000014,381.4979685733206,2020-12-12 +249,2382.6,4.0,19.000000000000014,373.31985131724105,2020-12-12 +250,2393.5,4.0,19.000000000000014,365.1604332341616,2020-12-12 +244,2328.5,4.0,19.333333333333346,378.8253430616784,2020-12-12 +235,2233.3,4.0,19.142857142857157,361.690188137018,2020-12-12 +234,2222.2000000000003,4.0,19.190476190476204,363.3490335656862,2020-12-12 +233,2211.5,4.0,19.380952380952394,361.77954533538036,2020-12-12 +218,2052.4,4.0,19.571428571428584,366.7317919609254,2020-12-12 +219,2063.0,4.0,19.380952380952394,369.38445170716193,2020-12-12 +220,2074.0,4.0,19.47619047619049,365.8544831026127,2020-12-12 +221,2084.6,4.0,19.42857142857144,359.38757443199756,2020-12-12 +222,2094.6,4.0,19.761904761904773,356.74045736395294,2020-12-12 +223,2105.8,4.0,19.71428571428573,356.64266359140515,2020-12-12 +224,2116.3,4.0,19.2857142857143,356.38948144667273,2020-12-12 +225,2126.8,4.0,19.333333333333346,356.71570067168244,2020-12-12 +226,2137.2000000000003,4.0,19.333333333333346,353.5131101257217,2020-12-12 +227,2148.1,4.0,19.2857142857143,347.7566297604421,2020-12-12 +228,2158.6,4.0,19.619047619047635,345.7979116205585,2020-12-12 +229,2169.3,4.0,19.90476190476192,345.7480045142506,2020-12-12 +230,2179.0,4.0,19.71428571428573,348.8865440750218,2020-12-12 +231,2189.6,4.0,19.90476190476192,355.3678687787003,2020-12-12 +232,2200.9,4.0,19.619047619047635,360.5979155898856,2020-12-12 +180,1633.9,4.0,18.047619047619058,372.8525974332251,2020-12-12 +627,6318.400000000001,4.0,20.000000000000014,329.1073530299454,2020-12-12 +298,2931.6000000000004,4.0,17.61904761904763,356.5620376504575,2020-12-12 +629,6338.8,4.0,19.90476190476192,328.46794550076504,2020-12-12 +1035,10284.800000000001,4.0,19.47619047619049,275.5378768354127,2020-12-12 +1036,10295.0,4.0,19.380952380952394,271.79611084711365,2020-12-12 +1037,10304.7,4.0,19.47619047619049,266.0950993284873,2020-12-12 +1038,10314.400000000001,4.0,20.09523809523811,263.0847868135554,2020-12-12 +1039,10323.7,4.0,20.380952380952394,262.9418741151119,2020-12-12 +1040,10332.6,4.0,20.333333333333346,265.3370313078332,2020-12-12 +1034,10274.900000000001,4.0,19.42857142857144,276.4108413348992,2020-12-12 +1041,10342.400000000001,4.0,20.2857142857143,271.1487668938877,2020-12-12 +1043,10362.0,4.0,19.90476190476192,277.0364051093625,2020-12-12 +1044,10371.800000000001,4.0,20.000000000000014,278.75419941459654,2020-12-12 +1045,10381.0,4.0,20.000000000000014,281.3420648709298,2020-12-12 +1046,10390.900000000001,4.0,20.000000000000014,286.46469204920595,2020-12-12 +1047,10401.0,4.0,20.09523809523811,293.310258755082,2020-12-12 +1048,10410.400000000001,4.0,19.857142857142872,297.8771442579141,2020-12-12 +1042,10352.2,4.0,20.142857142857157,275.34529636972525,2020-12-12 +1049,10420.5,4.0,19.809523809523824,298.3808641253547,2020-12-12 +1033,10265.1,4.0,19.66666666666668,277.03570829307296,2020-12-12 +1031,10245.6,4.0,19.71428571428573,276.9092228906626,2020-12-12 +1017,10109.900000000001,4.0,20.000000000000014,307.4568729924223,2020-12-12 +1018,10119.900000000001,4.0,20.000000000000014,304.2246101708709,2020-12-12 +1019,10129.800000000001,4.0,20.000000000000014,301.4073353413245,2020-12-12 +1020,10139.7,4.0,20.000000000000014,298.47998862855303,2020-12-12 +1021,10149.300000000001,4.0,20.000000000000014,296.0430800019948,2020-12-12 +1022,10159.0,4.0,20.09523809523811,292.71395673993953,2020-12-12 +1032,10255.400000000001,4.0,19.761904761904773,276.91191661336455,2020-12-12 +1023,10168.6,4.0,19.857142857142872,287.58297992416533,2020-12-12 +1025,10187.900000000001,4.0,19.66666666666668,278.655762460336,2020-12-12 +1026,10197.1,4.0,19.71428571428573,275.9764008028803,2020-12-12 +1027,10207.0,4.0,19.857142857142872,275.6041307767053,2020-12-12 +1028,10216.7,4.0,20.09523809523811,276.6437435984859,2020-12-12 +1029,10226.5,4.0,20.09523809523811,277.83285509930016,2020-12-12 +1030,10235.900000000001,4.0,19.857142857142872,277.93831796019504,2020-12-12 +1024,10177.900000000001,4.0,19.71428571428573,282.3095778520422,2020-12-12 +1016,10100.300000000001,4.0,20.000000000000014,309.5115080637342,2020-12-12 +1050,10430.5,4.0,19.52380952380954,295.07932863413134,2020-12-12 +1052,10449.2,4.0,19.619047619047635,284.96316204449806,2020-12-12 +1071,10643.2,4.0,17.952380952380963,282.25611054427,2020-12-12 +1072,10653.900000000001,4.0,17.952380952380963,281.09807491510213,2020-12-12 +1073,10664.1,4.0,17.714285714285726,277.60468071211903,2020-12-12 +1074,10674.1,4.0,17.761904761904773,274.58024896016514,2020-12-12 +1075,10684.5,4.0,17.66666666666668,271.8405936967062,2020-12-12 +1076,10694.300000000001,4.0,17.523809523809533,272.9349214895564,2020-12-12 +1070,10633.1,4.0,17.61904761904763,279.7379126897406,2020-12-12 +1077,10704.800000000001,4.0,17.42857142857144,277.8897645824277,2020-12-12 +1079,10726.0,4.0,17.142857142857153,294.468943399805,2020-12-12 +1080,10736.5,4.0,17.047619047619058,297.26009707598166,2020-12-12 +1081,10747.2,4.0,17.00000000000001,293.336692350627,2020-12-12 +1082,10758.0,4.0,17.42857142857144,287.6294840191631,2020-12-12 +1083,10767.900000000001,4.0,17.80952380952382,278.10657921193376,2020-12-12 +1084,10778.1,4.0,18.047619047619058,269.89313236023634,2020-12-12 +1078,10714.900000000001,4.0,16.952380952380963,286.0243121691062,2020-12-12 +1051,10439.5,4.0,19.42857142857144,288.81817055796574,2020-12-12 +1069,10622.2,4.0,17.80952380952382,273.51157046204196,2020-12-12 +1067,10602.2,4.0,18.2857142857143,261.5520871195848,2020-12-12 +1053,10458.900000000001,4.0,19.761904761904773,282.7712797339575,2020-12-12 +1054,10469.0,4.0,19.523809523809536,284.6113621182277,2020-12-12 +1055,10478.800000000001,4.0,19.619047619047635,288.03729285097,2020-12-12 +1056,10489.0,4.0,18.85714285714287,288.3566336007501,2020-12-12 +1057,10498.800000000001,4.0,18.2857142857143,283.657539684488,2020-12-12 +1058,10509.300000000001,4.0,18.00000000000001,278.54071306564435,2020-12-12 +1068,10612.1,4.0,18.000000000000014,265.985636041397,2020-12-12 +1059,10519.2,4.0,17.85714285714287,272.9818245735965,2020-12-12 +1061,10540.1,4.0,17.904761904761916,282.14668736961335,2020-12-12 +1062,10550.800000000001,4.0,17.523809523809536,289.64487570633173,2020-12-12 +1063,10561.2,4.0,17.428571428571438,291.18994290624414,2020-12-12 +1064,10571.900000000001,4.0,17.42857142857144,286.4119632484248,2020-12-12 +1065,10582.5,4.0,17.952380952380963,275.0847490910052,2020-12-12 +1066,10592.6,4.0,18.238095238095248,265.61288319451785,2020-12-12 +1060,10529.5,4.0,17.61904761904763,274.90204728456615,2020-12-12 +1085,10788.2,4.0,18.47619047619049,265.1582805078114,2020-12-12 +1015,10090.5,4.0,20.000000000000014,310.846465188141,2020-12-12 +1013,10070.6,4.0,19.90476190476192,311.4284921693313,2020-12-12 +951,9521.2,4.0,16.85714285714287,121.98088358625381,2020-12-12 +964,9571.5,4.0,19.571428571428584,171.08763249450914,2020-12-12 +965,9581.0,4.0,16.952380952380963,244.05987171968147,2020-12-12 +966,9591.2,4.0,18.714285714285726,291.8924565294187,2020-12-12 +967,9602.1,4.0,18.428571428571438,305.96156147094314,2020-12-12 +968,9612.300000000001,4.0,18.047619047619058,299.85315481768737,2020-12-12 +950,9489.7,4.0,16.2857142857143,243.31314516243103,2020-12-12 +969,9622.5,4.0,17.90476190476192,296.2476244428145,2020-12-12 +971,9643.300000000001,4.0,18.000000000000014,285.2177009163821,2020-12-12 +972,9653.5,4.0,18.000000000000014,287.55589523196954,2020-12-12 +973,9664.300000000001,4.0,18.000000000000014,292.71214543517056,2020-12-12 +974,9674.5,4.0,17.90476190476192,295.3406699632794,2020-12-12 +975,9685.300000000001,4.0,18.142857142857153,296.20490265122487,2020-12-12 +976,9695.6,4.0,18.380952380952394,296.4258192282719,2020-12-12 +970,9633.0,4.0,18.000000000000014,288.816493893612,2020-12-12 +977,9705.6,4.0,18.190476190476204,294.34446159935464,2020-12-12 +949,9489.7,4.0,17.2857142857143,347.9893842355434,2020-12-12 +947,9489.7,4.0,19.047619047619058,390.80563736213435,2020-12-12 +933,9355.0,4.0,20.09523809523811,335.3735268554061,2020-12-12 +934,9365.300000000001,4.0,20.000000000000014,330.4629856616416,2020-12-12 +935,9375.6,4.0,20.000000000000014,328.20291106214233,2020-12-12 +936,9385.5,4.0,20.000000000000014,330.12439105259136,2020-12-12 +937,9395.800000000001,4.0,20.000000000000014,333.46253046519985,2020-12-12 +938,9406.300000000001,4.0,20.000000000000014,337.35921549101886,2020-12-12 +948,9489.7,4.0,19.85714285714287,403.27074428415597,2020-12-12 +939,9416.5,4.0,20.000000000000014,340.66024492775375,2020-12-12 +941,9437.5,4.0,20.000000000000014,336.72671208530755,2020-12-12 +942,9447.800000000001,4.0,20.000000000000014,332.72928082390536,2020-12-12 +943,9458.4,4.0,20.09523809523811,331.18546044204294,2020-12-12 +944,9468.6,4.0,19.952380952380967,334.86816255113047,2020-12-12 +945,9479.0,4.0,19.66666666666668,340.53833815803773,2020-12-12 +946,9489.7,4.0,19.333333333333346,352.27598880123765,2020-12-12 +940,9427.0,4.0,20.000000000000014,340.51804132918204,2020-12-12 +1014,10080.6,4.0,20.000000000000014,311.167837440746,2020-12-12 +978,9715.6,4.0,18.000000000000014,290.2163155040192,2020-12-12 +980,9736.0,4.0,17.571428571428584,270.7678343669484,2020-12-12 +999,9932.0,4.0,18.333333333333346,286.4294060614161,2020-12-12 +1000,9942.1,4.0,18.2857142857143,285.9567709609929,2020-12-12 +1001,9952.300000000001,4.0,18.142857142857153,287.5343081198446,2020-12-12 +1002,9962.5,4.0,17.90476190476192,288.6103824666003,2020-12-12 +1003,9972.6,4.0,17.90476190476192,288.3649158511522,2020-12-12 +1004,9982.900000000001,4.0,17.952380952380963,287.38673354684886,2020-12-12 +998,9921.5,4.0,18.2857142857143,291.6650818271647,2020-12-12 +1005,9993.400000000001,4.0,18.380952380952394,288.1917566807251,2020-12-12 +1007,10013.2,4.0,19.523809523809536,291.9445220233148,2020-12-12 +1008,10023.2,4.0,20.190476190476204,296.2926158978206,2020-12-12 +1009,10032.6,4.0,20.380952380952394,301.0789859376564,2020-12-12 +1010,10041.800000000001,4.0,20.333333333333346,305.1844184096234,2020-12-12 +1011,10051.2,4.0,20.2857142857143,309.8775990177544,2020-12-12 +1012,10060.900000000001,4.0,20.142857142857157,311.68897629345634,2020-12-12 +1006,10003.5,4.0,19.000000000000014,289.6834757086488,2020-12-12 +979,9726.1,4.0,17.90476190476192,282.632287563297,2020-12-12 +997,9911.5,4.0,18.047619047619058,298.5662121356951,2020-12-12 +995,9890.800000000001,4.0,18.428571428571438,307.6474659099555,2020-12-12 +981,9746.2,4.0,17.428571428571438,261.9315373099032,2020-12-12 +982,9756.0,4.0,17.571428571428584,259.7887577237548,2020-12-12 +983,9766.6,4.0,17.238095238095248,262.841920079901,2020-12-12 +984,9777.0,4.0,17.285714285714295,269.4710750670605,2020-12-12 +985,9787.5,4.0,17.61904761904763,277.6915612080006,2020-12-12 +986,9797.5,4.0,17.80952380952382,282.41625695214793,2020-12-12 +996,9901.300000000001,4.0,17.952380952380963,304.66041075054335,2020-12-12 +987,9808.1,4.0,17.85714285714287,285.671838893867,2020-12-12 +989,9829.2,4.0,18.000000000000014,293.7343856864825,2020-12-12 +990,9839.5,4.0,17.90476190476192,297.21539353525526,2020-12-12 +991,9849.400000000001,4.0,18.047619047619058,300.95369585462083,2020-12-12 +992,9860.6,4.0,18.428571428571438,303.18348395730146,2020-12-12 +993,9870.300000000001,4.0,18.61904761904763,303.8542931116083,2020-12-12 +994,9880.5,4.0,18.61904761904763,306.0657348336055,2020-12-12 +988,9818.4,4.0,18.09523809523811,289.4651593434627,2020-12-12 +1086,10797.6,4.0,18.142857142857153,261.0853451949308,2020-12-12 +1087,10807.0,4.0,17.90476190476192,260.0662576727824,2020-12-12 +1088,10818.300000000001,4.0,18.000000000000014,264.86190252915316,2020-12-12 +1181,11737.300000000001,4.0,17.66666666666668,301.0392223230778,2020-12-12 +1182,11747.5,4.0,17.428571428571438,299.07927793256573,2020-12-12 +1183,11758.300000000001,4.0,17.47619047619049,296.1679344488374,2020-12-12 +1184,11768.5,4.0,17.47619047619049,293.1393866232801,2020-12-12 +1185,11779.2,4.0,17.523809523809533,292.58437223024055,2020-12-12 +1186,11789.800000000001,4.0,17.61904761904763,294.62526630337396,2020-12-12 +1180,11726.6,4.0,17.761904761904773,302.243358600799,2020-12-12 +1187,11800.0,4.0,17.333333333333343,295.1836306066431,2020-12-12 +1189,11820.900000000001,4.0,17.238095238095248,280.8173030361346,2020-12-12 +1190,11831.400000000001,4.0,17.761904761904773,269.45694270303824,2020-12-12 +1191,11841.6,4.0,17.904761904761916,264.8533368416305,2020-12-12 +1192,11851.7,4.0,17.761904761904773,271.060349195938,2020-12-12 +1193,11861.7,4.0,17.333333333333343,285.2548265821912,2020-12-12 +1194,11872.900000000001,4.0,17.047619047619058,298.066620427,2020-12-12 +1188,11810.5,4.0,17.095238095238106,290.58416646405647,2020-12-12 +1195,11883.5,4.0,16.904761904761916,302.0220391359884,2020-12-12 +1179,11715.7,4.0,17.80952380952382,300.6906668540244,2020-12-12 +1177,11694.900000000001,4.0,17.80952380952382,294.5908195266403,2020-12-12 +1163,11549.800000000001,4.0,17.80952380952382,288.35444351271667,2020-12-12 +1164,11560.1,4.0,17.85714285714287,290.24283920225326,2020-12-12 +1165,11570.0,4.0,18.09523809523811,296.2920727596669,2020-12-12 +1166,11581.1,4.0,18.000000000000014,301.87713725353757,2020-12-12 +1167,11591.2,4.0,18.000000000000014,302.604305058708,2020-12-12 +1168,11601.7,4.0,18.000000000000014,299.43420673958263,2020-12-12 +1178,11705.400000000001,4.0,17.714285714285726,298.20474153913244,2020-12-12 +1169,11612.0,4.0,18.000000000000014,294.3728431923429,2020-12-12 +1171,11632.6,4.0,18.000000000000014,285.0815245819341,2020-12-12 +1172,11643.300000000001,4.0,18.000000000000014,281.24788104276587,2020-12-12 +1173,11653.7,4.0,18.09523809523811,278.93537820910154,2020-12-12 +1174,11664.1,4.0,17.85714285714287,279.0337099707402,2020-12-12 +1175,11673.7,4.0,17.714285714285726,282.40684797132616,2020-12-12 +1176,11684.800000000001,4.0,17.66666666666668,289.2129489585384,2020-12-12 +1170,11622.0,4.0,18.000000000000014,289.8713168328834,2020-12-12 +1162,11539.1,4.0,17.523809523809536,290.8694753953636,2020-12-12 +1196,11893.900000000001,4.0,17.00000000000001,297.38375202137627,2020-12-12 +1198,11915.300000000001,4.0,16.85714285714287,281.38833463360703,2020-12-12 +1244,12315.2,4.0,15.714285714285722,265.83365598676795,2020-12-12 +1245,12315.2,4.0,16.047619047619058,260.2700873474315,2020-12-12 +1246,12315.2,4.0,16.095238095238106,260.1891750026189,2020-12-12 +1247,12315.2,4.0,16.00000000000001,260.4749257781805,2020-12-12 +1248,12315.2,4.0,16.00000000000001,261.4228731939323,2020-12-12 +1249,12315.2,4.0,16.00000000000001,261.717464364806,2020-12-12 +1243,12304.6,4.0,15.142857142857153,283.8588651252385,2020-12-12 +1250,12315.2,4.0,16.00000000000001,261.5700594285262,2020-12-12 +1252,12315.2,4.0,16.00000000000001,252.56109417358445,2020-12-12 +1253,12315.2,4.0,16.00000000000001,278.6950328073749,2020-12-12 +1254,12315.2,4.0,16.00000000000001,301.07377932123353,2020-12-12 +1256,12315.2,4.0,16.761904761904773,211.02378334133076,2020-12-12 +1257,12315.2,4.0,23.33333333333335,121.01587882929333,2020-12-12 +628,6328.5,4.0,20.000000000000014,328.9670110143529,2020-12-12 +1251,12315.2,4.0,16.00000000000001,261.5700594285262,2020-12-12 +1197,11904.300000000001,4.0,17.095238095238106,289.2224733009648,2020-12-12 +1237,12225.900000000001,4.0,15.047619047619058,312.7143804670767,2020-12-12 +1230,12140.1,4.0,15.523809523809533,308.6135129522884,2020-12-12 +1199,11925.7,4.0,16.714285714285726,277.14274086358523,2020-12-12 +1200,11936.5,4.0,16.66666666666668,275.7403044153597,2020-12-12 +1201,11947.300000000001,4.0,16.61904761904763,274.3304663907167,2020-12-12 +1202,11957.5,4.0,17.00000000000001,274.52700087704716,2020-12-12 +1203,11968.1,4.0,17.380952380952394,273.6915252549974,2020-12-12 +1204,11978.300000000001,4.0,17.333333333333343,276.62880953707736,2020-12-12 +1231,12151.5,4.0,15.00000000000001,313.85858511624303,2020-12-12 +1205,11989.1,4.0,17.2857142857143,304.7570683585692,2020-12-12 +1207,11989.1,4.0,15.428571428571438,267.0426143289236,2020-12-12 +1208,11989.1,4.0,15.523809523809533,186.91064836938205,2020-12-12 +1226,12092.900000000001,4.0,15.047619047619058,288.33187783373694,2020-12-12 +1227,12104.900000000001,4.0,15.428571428571438,301.3031006000027,2020-12-12 +1228,12116.300000000001,4.0,15.619047619047628,303.97946816675346,2020-12-12 +1229,12127.7,4.0,15.619047619047628,304.397287880195,2020-12-12 +1206,11989.1,4.0,17.80952380952382,312.0010526694284,2020-12-12 +1161,11528.5,4.0,17.238095238095248,291.7970691750452,2020-12-12 +1160,11518.6,4.0,17.523809523809536,287.88184624861753,2020-12-12 +1159,11508.1,4.0,18.61904761904763,273.8150083876128,2020-12-12 +1108,11021.2,4.0,19.47619047619049,273.269718013048,2020-12-12 +1109,11030.400000000001,4.0,19.571428571428584,284.97283129675077,2020-12-12 +1110,11040.7,4.0,19.23809523809525,295.01082372137637,2020-12-12 +1111,11050.400000000001,4.0,19.47619047619049,298.19472940868434,2020-12-12 +1112,11059.900000000001,4.0,19.571428571428584,295.5217661086599,2020-12-12 +1113,11069.1,4.0,19.952380952380967,290.68357561119467,2020-12-12 +1107,11011.0,4.0,18.809523809523824,265.61888571969695,2020-12-12 +1114,11078.800000000001,4.0,20.09523809523811,285.51777562775044,2020-12-12 +1116,11097.7,4.0,20.000000000000014,271.27044239730503,2020-12-12 +1117,11106.6,4.0,20.09523809523811,268.8918345570165,2020-12-12 +1118,11116.2,4.0,19.857142857142872,274.3544743388014,2020-12-12 +1119,11125.900000000001,4.0,19.71428571428573,284.909390913954,2020-12-12 +1120,11135.6,4.0,19.571428571428584,293.25855755265786,2020-12-12 +1121,11145.2,4.0,19.85714285714287,293.9301991711667,2020-12-12 +1115,11088.300000000001,4.0,20.000000000000014,277.6656921965353,2020-12-12 +1122,11154.800000000001,4.0,20.142857142857157,289.56131222883397,2020-12-12 +1106,11002.1,4.0,17.85714285714287,268.61259417501253,2020-12-12 +1104,10980.7,4.0,16.85714285714287,280.9080035109437,2020-12-12 +1089,10828.400000000001,4.0,18.000000000000014,270.0367226490427,2020-12-12 +1090,10839.2,4.0,18.000000000000014,276.8499685965579,2020-12-12 +1091,10849.2,4.0,18.09523809523811,281.5548357933731,2020-12-12 +1093,10869.300000000001,4.0,17.85714285714287,270.12493916435454,2020-12-12 +1094,10879.300000000001,4.0,17.952380952380963,258.7430246576375,2020-12-12 +1095,10888.900000000001,4.0,18.047619047619058,249.6323616506404,2020-12-12 +1105,10991.300000000001,4.0,17.142857142857153,276.0471088665885,2020-12-12 +1096,10899.400000000001,4.0,18.142857142857153,250.58487679292148,2020-12-12 +1098,10919.2,4.0,18.000000000000014,268.1913109975353,2020-12-12 +1099,10929.5,4.0,17.85714285714287,272.34709217824536,2020-12-12 +1100,10939.0,4.0,17.80952380952382,271.29429350903337,2020-12-12 +1101,10949.2,4.0,17.61904761904763,269.547554241747,2020-12-12 +1102,10959.7,4.0,17.380952380952394,273.36364678490025,2020-12-12 +1103,10970.1,4.0,17.190476190476204,279.07894914753456,2020-12-12 +1097,10908.800000000001,4.0,18.238095238095248,259.1026350561166,2020-12-12 +1123,11163.7,4.0,20.428571428571445,283.34352299264975,2020-12-12 +1124,11173.2,4.0,20.2857142857143,281.3743556493939,2020-12-12 +1125,11182.900000000001,4.0,20.142857142857157,281.70027760438234,2020-12-12 +1145,11376.6,4.0,20.000000000000014,290.55501324611254,2020-12-12 +1146,11386.6,4.0,20.000000000000014,295.29518754701985,2020-12-12 +1147,11395.900000000001,4.0,20.000000000000014,297.194003712375,2020-12-12 +1148,11405.800000000001,4.0,19.90476190476192,297.1939321536222,2020-12-12 +1149,11415.6,4.0,20.142857142857157,294.1130245207348,2020-12-12 +1150,11425.0,4.0,20.190476190476204,289.57801986991706,2020-12-12 +1144,11366.5,4.0,20.000000000000014,286.2123699589527,2020-12-12 +1151,11434.2,4.0,20.47619047619049,283.6066200838844,2020-12-12 +1153,11452.800000000001,4.0,20.619047619047635,270.5208437850007,2020-12-12 +1154,11461.7,4.0,20.380952380952394,261.54682296950426,2020-12-12 +1155,11471.0,4.0,20.619047619047635,250.06946824914263,2020-12-12 +1156,11479.5,4.0,20.66666666666668,243.46814530709912,2020-12-12 +1157,11488.800000000001,4.0,20.47619047619049,244.45382943833062,2020-12-12 +1158,11497.5,4.0,19.380952380952394,256.29403580746737,2020-12-12 +1152,11443.6,4.0,20.47619047619049,277.9102076951307,2020-12-12 +1143,11357.2,4.0,20.09523809523811,283.1853474870788,2020-12-12 +1142,11347.400000000001,4.0,19.857142857142872,282.0846903389558,2020-12-12 +1141,11337.7,4.0,19.71428571428573,281.88464915968643,2020-12-12 +1126,11192.6,4.0,19.90476190476192,283.21133574586463,2020-12-12 +1127,11202.400000000001,4.0,20.09523809523811,284.27329488856253,2020-12-12 +1128,11211.6,4.0,19.857142857142872,284.7695308878838,2020-12-12 +1129,11221.300000000001,4.0,19.71428571428573,283.6476674226083,2020-12-12 +1130,11231.2,4.0,19.66666666666668,281.57856922336697,2020-12-12 +1131,11240.900000000001,4.0,19.71428571428573,276.40837908924266,2020-12-12 +1132,11250.300000000001,4.0,19.857142857142872,271.37561735831565,2020-12-12 +1133,11260.1,4.0,20.09523809523811,268.25479727145444,2020-12-12 +1134,11269.800000000001,4.0,20.000000000000014,267.8438413220331,2020-12-12 +1135,11278.900000000001,4.0,20.000000000000014,269.3404993455776,2020-12-12 +1136,11288.7,4.0,20.000000000000014,271.9518007797567,2020-12-12 +1137,11298.400000000001,4.0,20.09523809523811,274.2635337798298,2020-12-12 +1138,11308.2,4.0,19.857142857142872,276.92213429029863,2020-12-12 +1139,11317.7,4.0,19.71428571428573,279.47968644497416,2020-12-12 +1140,11327.6,4.0,19.66666666666668,281.640748376145,2020-12-12 +932,9344.4,4.0,19.857142857142872,341.6920807113471,2020-12-12 +931,9333.9,4.0,19.71428571428573,348.4796928040914,2020-12-12 +1092,10859.300000000001,4.0,17.761904761904773,279.08481525525553,2020-12-12 +929,9313.4,4.0,19.71428571428573,352.5193598562023,2020-12-12 +721,7285.5,4.0,19.047619047619058,294.58949794053444,2020-12-12 +722,7295.700000000001,4.0,18.90476190476192,291.87313966503956,2020-12-12 +723,7305.3,4.0,18.90476190476192,292.64375973839634,2020-12-12 +724,7315.6,4.0,19.142857142857157,295.6008792719271,2020-12-12 +725,7325.6,4.0,19.190476190476204,299.8234672525797,2020-12-12 +726,7335.5,4.0,19.47619047619049,301.7576149282097,2020-12-12 +720,7275.8,4.0,19.428571428571445,297.95416817227425,2020-12-12 +727,7345.5,4.0,19.47619047619049,300.1315741638109,2020-12-12 +729,7365.0,4.0,19.619047619047635,291.54795718273635,2020-12-12 +730,7374.700000000001,4.0,19.761904761904773,289.17353587257594,2020-12-12 +731,7384.400000000001,4.0,19.523809523809536,291.47936846357527,2020-12-12 +732,7394.900000000001,4.0,19.428571428571445,296.38506854044454,2020-12-12 +733,7404.700000000001,4.0,18.952380952380963,299.3856751300832,2020-12-12 +734,7414.5,4.0,19.047619047619058,299.01356651641515,2020-12-12 +728,7355.200000000001,4.0,19.523809523809536,295.0140769202888,2020-12-12 +735,7424.8,4.0,19.2857142857143,295.5653030954347,2020-12-12 +719,7265.400000000001,4.0,19.619047619047635,300.95294671164186,2020-12-12 +717,7246.5,4.0,19.428571428571445,311.04020872196827,2020-12-12 +703,7105.700000000001,4.0,19.380952380952394,306.8417607815784,2020-12-12 +704,7115.400000000001,4.0,19.66666666666668,301.9156990214576,2020-12-12 +705,7125.400000000001,4.0,19.90476190476192,301.695012195258,2020-12-12 +706,7135.3,4.0,19.761904761904773,305.51079685886543,2020-12-12 +707,7145.200000000001,4.0,19.23809523809525,308.98232689924737,2020-12-12 +708,7155.6,4.0,19.09523809523811,308.05997498503973,2020-12-12 +718,7255.6,4.0,19.619047619047635,304.6896260390521,2020-12-12 +709,7165.5,4.0,19.23809523809525,303.9585685978725,2020-12-12 +711,7185.200000000001,4.0,19.90476190476192,302.81086060684544,2020-12-12 +712,7195.5,4.0,19.761904761904773,310.2223208001898,2020-12-12 +713,7205.6,4.0,19.333333333333346,319.0299614921604,2020-12-12 +714,7216.0,4.0,19.047619047619058,324.11967069498536,2020-12-12 +715,7226.0,4.0,18.80952380952382,323.2399303157147,2020-12-12 +716,7236.200000000001,4.0,19.047619047619058,317.7621493967415,2020-12-12 +710,7175.3,4.0,19.761904761904773,300.27087956176007,2020-12-12 +702,7095.700000000001,4.0,19.380952380952394,310.02945138804466,2020-12-12 +736,7434.400000000001,4.0,19.238095238095248,286.3858929583023,2020-12-12 +738,7453.6,4.0,19.571428571428584,272.08166974081155,2020-12-12 +757,7652.700000000001,4.0,17.714285714285726,310.8449304784859,2020-12-12 +758,7663.3,4.0,17.380952380952394,306.88754213997714,2020-12-12 +759,7674.1,4.0,17.095238095238106,303.11488045508554,2020-12-12 +760,7684.700000000001,4.0,17.190476190476204,298.77275552633824,2020-12-12 +761,7695.5,4.0,17.238095238095248,294.4327014083028,2020-12-12 +762,7705.900000000001,4.0,17.66666666666668,293.3513421444139,2020-12-12 +756,7641.900000000001,4.0,17.761904761904773,312.2631785543567,2020-12-12 +763,7716.0,4.0,17.952380952380963,296.9059153410818,2020-12-12 +765,7737.0,4.0,18.142857142857153,306.07841884385834,2020-12-12 +766,7747.8,4.0,18.2857142857143,307.4715899766495,2020-12-12 +767,7757.700000000001,4.0,18.23809523809525,304.45796065454175,2020-12-12 +768,7768.6,4.0,18.333333333333343,300.2043919812772,2020-12-12 +769,7778.900000000001,4.0,18.571428571428584,296.83158544351033,2020-12-12 +770,7789.3,4.0,18.523809523809536,295.6002050209544,2020-12-12 +764,7726.6,4.0,18.000000000000014,301.60321997090057,2020-12-12 +737,7443.900000000001,4.0,19.333333333333346,277.9683342595277,2020-12-12 +755,7631.6,4.0,17.523809523809533,310.362033663137,2020-12-12 +753,7609.8,4.0,17.190476190476204,294.90541887920085,2020-12-12 +739,7463.8,4.0,19.42857142857144,269.4675297708617,2020-12-12 +740,7473.700000000001,4.0,19.66666666666668,271.5331353120658,2020-12-12 +741,7483.8,4.0,19.761904761904773,274.8708423382694,2020-12-12 +742,7493.400000000001,4.0,19.809523809523824,275.52543872524086,2020-12-12 +743,7503.200000000001,4.0,20.000000000000014,276.6797449508685,2020-12-12 +744,7512.700000000001,4.0,19.66666666666668,281.0359529483201,2020-12-12 +754,7620.8,4.0,17.333333333333343,304.0011236914569,2020-12-12 +745,7523.3,4.0,18.66666666666668,289.81754949603703,2020-12-12 +747,7544.5,4.0,17.00000000000001,307.67737825455345,2020-12-12 +748,7556.0,4.0,16.714285714285722,307.6301677179906,2020-12-12 +749,7567.3,4.0,17.142857142857153,301.36696973082866,2020-12-12 +750,7578.200000000001,4.0,17.2857142857143,293.16120729134866,2020-12-12 +751,7588.1,4.0,17.333333333333343,287.6720626973108,2020-12-12 +752,7598.900000000001,4.0,17.190476190476204,288.576547166614,2020-12-12 +746,7534.0,4.0,17.714285714285726,300.98966893530127,2020-12-12 +701,7085.900000000001,4.0,19.571428571428584,311.18284300553717,2020-12-12 +700,7075.900000000001,4.0,20.04761904761906,312.3403498476258,2020-12-12 +698,7055.900000000001,4.0,19.71428571428573,319.3397412734454,2020-12-12 +647,6520.1,4.0,17.952380952380963,337.41639838014606,2020-12-12 +648,6530.900000000001,4.0,17.80952380952382,334.9929095290886,2020-12-12 +649,6541.700000000001,4.0,18.047619047619058,329.65144821445585,2020-12-12 +650,6552.0,4.0,18.42857142857144,324.4930236105653,2020-12-12 +651,6562.5,4.0,18.2857142857143,321.58143303050076,2020-12-12 +652,6573.200000000001,4.0,18.142857142857153,318.94755650310657,2020-12-12 +646,6508.900000000001,4.0,18.714285714285726,333.93315509918165,2020-12-12 +653,6584.1,4.0,18.000000000000014,314.6477205899182,2020-12-12 +655,6605.6,4.0,17.714285714285726,301.54543064627387,2020-12-12 +656,6616.0,4.0,17.66666666666668,301.5325800429571,2020-12-12 +657,6626.900000000001,4.0,17.714285714285726,304.0656544974562,2020-12-12 +658,6637.5,4.0,17.761904761904773,307.10327914020684,2020-12-12 +659,6648.0,4.0,18.238095238095248,307.7882661417549,2020-12-12 +660,6658.3,4.0,18.190476190476204,306.2442370793592,2020-12-12 +654,6594.900000000001,4.0,17.85714285714287,307.3564408864354,2020-12-12 +661,6668.700000000001,4.0,18.47619047619049,304.671418574365,2020-12-12 +645,6499.0,4.0,19.47619047619049,330.02420786084656,2020-12-12 +643,6479.1,4.0,20.09523809523811,329.251575920481,2020-12-12 +630,6349.200000000001,4.0,20.142857142857157,327.693813192036,2020-12-12 +930,9323.4,4.0,19.66666666666668,352.324181227281,2020-12-12 +631,6359.400000000001,4.0,20.2857142857143,326.7129218776271,2020-12-12 +632,6368.5,4.0,20.333333333333346,326.56335067153765,2020-12-12 +633,6378.8,4.0,20.2857142857143,330.03137991447454,2020-12-12 +634,6389.1,4.0,20.142857142857157,334.7274414534517,2020-12-12 +644,6489.3,4.0,20.142857142857157,328.3599971339006,2020-12-12 +635,6398.6,4.0,19.90476190476192,339.1882758970079,2020-12-12 +637,6418.3,4.0,20.000000000000014,344.5989573483896,2020-12-12 +638,6428.400000000001,4.0,20.000000000000014,344.2495094135871,2020-12-12 +639,6438.700000000001,4.0,20.000000000000014,342.2042270613142,2020-12-12 +640,6448.700000000001,4.0,20.000000000000014,338.99372859390985,2020-12-12 +641,6458.8,4.0,20.000000000000014,335.73999174388894,2020-12-12 +642,6469.0,4.0,20.000000000000014,331.9527532265172,2020-12-12 +636,6408.200000000001,4.0,20.000000000000014,342.79554689391966,2020-12-12 +662,6679.0,4.0,18.571428571428584,306.19304429571196,2020-12-12 +663,6689.200000000001,4.0,18.47619047619049,306.5143019365874,2020-12-12 +664,6700.1,4.0,18.190476190476204,306.4901831497072,2020-12-12 +684,6911.900000000001,4.0,18.000000000000014,298.24792295021876,2020-12-12 +685,6922.200000000001,4.0,18.09523809523811,296.99869264707536,2020-12-12 +686,6933.0,4.0,17.85714285714287,296.92025854410065,2020-12-12 +687,6943.3,4.0,17.61904761904763,297.1467172769457,2020-12-12 +688,6954.0,4.0,17.80952380952382,296.14882800489033,2020-12-12 +689,6964.200000000001,4.0,18.000000000000014,292.75587985069205,2020-12-12 +683,6901.1,4.0,17.90476190476192,302.3978832477036,2020-12-12 +690,6973.8,4.0,18.09523809523811,290.9514017681886,2020-12-12 +692,6995.5,4.0,18.380952380952394,291.7572179957876,2020-12-12 +693,7005.400000000001,4.0,18.61904761904763,291.31087201209107,2020-12-12 +694,7015.1,4.0,19.380952380952394,295.1508192322613,2020-12-12 +695,7025.3,4.0,19.619047619047635,302.65284682244925,2020-12-12 +696,7035.400000000001,4.0,19.66666666666668,312.8242920336462,2020-12-12 +697,7045.700000000001,4.0,19.761904761904773,320.2948137884504,2020-12-12 +691,6984.700000000001,4.0,18.428571428571438,292.1065772270108,2020-12-12 +682,6890.8,4.0,18.142857142857153,307.8607230158358,2020-12-12 +681,6880.200000000001,4.0,18.2857142857143,311.0235852782729,2020-12-12 +680,6869.400000000001,4.0,18.333333333333346,311.4123633352215,2020-12-12 +665,6710.400000000001,4.0,18.142857142857153,303.86482926604947,2020-12-12 +666,6721.0,4.0,17.90476190476192,299.89946338508264,2020-12-12 +667,6732.0,4.0,18.000000000000014,298.9110099166802,2020-12-12 +668,6742.1,4.0,18.09523809523811,303.88693442643205,2020-12-12 +669,6753.0,4.0,17.85714285714287,312.58064739821714,2020-12-12 +670,6764.1,4.0,17.714285714285726,322.25915962517456,2020-12-12 +671,6774.900000000001,4.0,17.66666666666668,328.7161107021627,2020-12-12 +672,6785.8,4.0,17.714285714285726,328.8428570071869,2020-12-12 +673,6796.400000000001,4.0,17.85714285714287,324.96360271425254,2020-12-12 +674,6807.0,4.0,18.09523809523811,318.7492843638049,2020-12-12 +675,6817.3,4.0,18.000000000000014,313.34948337993256,2020-12-12 +676,6828.400000000001,4.0,18.000000000000014,309.63848679172116,2020-12-12 +677,6839.0,4.0,17.90476190476192,308.7822455985802,2020-12-12 +678,6849.400000000001,4.0,18.142857142857153,309.8281546214673,2020-12-12 +679,6859.8,4.0,18.2857142857143,311.4202731340621,2020-12-12 +771,7799.700000000001,4.0,18.523809523809536,297.25685512522995,2020-12-12 +772,7810.1,4.0,18.47619047619049,299.86515636122806,2020-12-12 +699,7065.900000000001,4.0,19.952380952380967,315.15860031944703,2020-12-12 +774,7831.400000000001,4.0,18.61904761904763,305.6040631595456,2020-12-12 +878,8774.9,4.0,17.238095238095248,352.7192108882247,2020-12-12 +879,8786.300000000001,4.0,17.190476190476204,354.32813333644583,2020-12-12 +880,8797.1,4.0,17.190476190476204,356.0300632264841,2020-12-12 +881,8808.7,4.0,17.238095238095248,355.31121964354224,2020-12-12 +882,8819.7,4.0,17.42857142857144,356.7220215932339,2020-12-12 +883,8830.7,4.0,17.42857142857144,358.74413562366465,2020-12-12 +877,8763.5,4.0,17.66666666666668,351.6220698397906,2020-12-12 +884,8842.1,4.0,17.142857142857153,361.6204480078892,2020-12-12 +886,8865.1,4.0,17.380952380952394,360.94211329534687,2020-12-12 +887,8876.2,4.0,17.714285714285726,354.2565509408358,2020-12-12 +888,8887.0,4.0,18.238095238095248,351.31099539289767,2020-12-12 +889,8897.300000000001,4.0,18.42857142857144,352.90518648157797,2020-12-12 +890,8908.4,4.0,18.2857142857143,359.0911831182505,2020-12-12 +891,8919.800000000001,4.0,18.142857142857153,365.16787062528715,2020-12-12 +885,8853.6,4.0,17.333333333333343,363.79915573788435,2020-12-12 +893,8942.0,4.0,17.90476190476192,362.38553730656054,2020-12-12 +876,8752.7,4.0,17.85714285714287,349.78407063172097,2020-12-12 +874,8730.1,4.0,18.428571428571438,344.0458142421977,2020-12-12 +860,8578.300000000001,4.0,18.2857142857143,335.4052807856858,2020-12-12 +861,8589.0,4.0,18.142857142857153,343.7486684853561,2020-12-12 +862,8599.5,4.0,17.90476190476192,336.0365046010336,2020-12-12 +863,8609.9,4.0,18.000000000000014,327.7511422250354,2020-12-12 +864,8621.1,4.0,18.000000000000014,323.83787028160054,2020-12-12 +865,8632.0,4.0,18.000000000000014,321.9045647931337,2020-12-12 +875,8741.6,4.0,18.142857142857153,346.47623941879965,2020-12-12 +866,8643.5,4.0,18.000000000000014,324.08476661737933,2020-12-12 +868,8665.0,4.0,18.000000000000014,337.42040226194183,2020-12-12 +869,8675.9,4.0,17.90476190476192,345.5149480156395,2020-12-12 +870,8687.2,4.0,18.047619047619058,350.8589157169325,2020-12-12 +871,8698.4,4.0,18.428571428571438,350.51007611534374,2020-12-12 +872,8709.4,4.0,18.61904761904763,346.93013870546395,2020-12-12 +873,8719.300000000001,4.0,18.61904761904763,343.7991967074129,2020-12-12 +867,8654.2,4.0,18.000000000000014,329.81569060735603,2020-12-12 +894,8953.1,4.0,18.047619047619058,356.4569702409149,2020-12-12 +895,8964.0,4.0,18.333333333333343,350.57083207860967,2020-12-12 +896,8975.0,4.0,18.571428571428584,344.1265731383095,2020-12-12 +916,9180.5,4.0,19.90476190476192,368.6373031652724,2020-12-12 +917,9191.1,4.0,20.000000000000014,368.146281373226,2020-12-12 +918,9201.0,4.0,20.000000000000014,372.8863587268912,2020-12-12 +919,9210.9,4.0,20.000000000000014,381.70924808996904,2020-12-12 +920,9221.5,4.0,20.000000000000014,388.31447036302757,2020-12-12 +921,9231.5,4.0,20.000000000000014,386.9065749803071,2020-12-12 +915,9170.6,4.0,20.04761904761906,372.11464475711114,2020-12-12 +922,9241.6,4.0,20.000000000000014,379.72585336915773,2020-12-12 +924,9262.5,4.0,20.000000000000014,363.92961356601745,2020-12-12 +925,9272.5,4.0,20.000000000000014,359.9463634030444,2020-12-12 +926,9282.800000000001,4.0,20.000000000000014,356.6866032944692,2020-12-12 +773,7820.8,4.0,18.47619047619049,302.5385273759225,2020-12-12 +927,9292.7,4.0,20.09523809523811,354.2593539526292,2020-12-12 +928,9303.0,4.0,19.857142857142872,353.2624839344867,2020-12-12 +923,9251.9,4.0,20.000000000000014,370.39931723360246,2020-12-12 +914,9160.1,4.0,20.42857142857144,374.160910548748,2020-12-12 +913,9150.0,4.0,20.61904761904763,369.50043808202497,2020-12-12 +912,9139.2,4.0,20.523809523809536,361.9723817631714,2020-12-12 +897,8985.2,4.0,19.000000000000014,336.7837446068256,2020-12-12 +898,8995.7,4.0,19.428571428571445,329.3805333316112,2020-12-12 +899,9006.0,4.0,19.66666666666668,323.364431905536,2020-12-12 +900,9016.4,4.0,19.952380952380967,323.8574862844359,2020-12-12 +901,9026.300000000001,4.0,20.09523809523811,332.23958986860816,2020-12-12 +902,9036.800000000001,4.0,20.000000000000014,345.20465397629687,2020-12-12 +903,9047.0,4.0,20.000000000000014,360.01889911495357,2020-12-12 +904,9057.7,4.0,20.000000000000014,373.24194088071545,2020-12-12 +905,9067.9,4.0,20.000000000000014,379.9544662595683,2020-12-12 +906,9078.7,4.0,19.90476190476192,379.2322350926547,2020-12-12 +907,9089.0,4.0,20.142857142857157,372.76394324749845,2020-12-12 +908,9099.1,4.0,20.2857142857143,363.33095499903834,2020-12-12 +909,9108.9,4.0,20.23809523809525,354.3105063591137,2020-12-12 +910,9118.800000000001,4.0,20.333333333333346,351.8233481537959,2020-12-12 +911,9129.300000000001,4.0,20.571428571428584,355.434932537554,2020-12-12 +859,8567.0,4.0,18.42857142857144,302.7374725731863,2020-12-12 +858,8556.7,4.0,18.047619047619058,239.53728352066076,2020-12-12 +892,8931.0,4.0,17.90476190476192,366.44791539535015,2020-12-12 +793,8029.0,4.0,19.2857142857143,279.47432264901835,2020-12-12 +794,8038.700000000001,4.0,19.428571428571445,293.5187661950258,2020-12-12 +795,8048.900000000001,4.0,19.571428571428584,303.8022673335257,2020-12-12 +796,8058.8,4.0,19.42857142857144,308.04122383694664,2020-12-12 +797,8068.6,4.0,19.66666666666668,308.6560065938894,2020-12-12 +798,8078.400000000001,4.0,19.761904761904773,309.89881701845013,2020-12-12 +799,8088.3,4.0,19.71428571428573,310.9869012710773,2020-12-12 +792,8019.400000000001,4.0,18.809523809523824,269.51041807667275,2020-12-12 +800,8097.700000000001,4.0,19.857142857142872,313.2324246468261,2020-12-12 +803,8127.400000000001,4.0,20.000000000000014,309.4530211621813,2020-12-12 +804,8137.200000000001,4.0,20.000000000000014,304.8702095784741,2020-12-12 +805,8146.900000000001,4.0,20.000000000000014,297.76895071771844,2020-12-12 +806,8156.200000000001,4.0,19.90476190476192,291.0885797923063,2020-12-12 +807,8166.1,4.0,20.142857142857157,286.46358260378076,2020-12-12 +808,8176.1,4.0,20.2857142857143,283.7136817076628,2020-12-12 +801,8107.6,4.0,20.09523809523811,314.2644196256299,2020-12-12 +809,8185.5,4.0,20.333333333333346,283.0649546091098,2020-12-12 +791,8009.8,4.0,18.2857142857143,267.88149151767385,2020-12-12 +789,7989.6,4.0,17.285714285714295,288.2390056490616,2020-12-12 +776,7851.3,4.0,18.238095238095248,313.59532505578966,2020-12-12 +777,7862.6,4.0,17.66666666666668,315.50527354673807,2020-12-12 +857,8545.9,4.0,16.285714285714295,158.34987336632338,2020-12-12 +778,7872.8,4.0,17.285714285714295,312.3832247955286,2020-12-12 +779,7883.6,4.0,17.190476190476204,308.24681303778834,2020-12-12 +780,7894.200000000001,4.0,17.142857142857153,301.9233151585165,2020-12-12 +790,8000.0,4.0,17.571428571428584,275.70369258574374,2020-12-12 +781,7904.8,4.0,16.80952380952382,295.22349506942174,2020-12-12 +783,7926.1,4.0,17.2857142857143,288.08439585904864,2020-12-12 +784,7936.1,4.0,17.333333333333343,290.10588623497125,2020-12-12 +785,7947.0,4.0,17.2857142857143,297.60635516580203,2020-12-12 +786,7957.700000000001,4.0,17.047619047619058,303.9166389329996,2020-12-12 +787,7968.400000000001,4.0,17.047619047619058,305.31569345183505,2020-12-12 +788,7979.200000000001,4.0,17.190476190476204,300.28094469582066,2020-12-12 +782,7915.400000000001,4.0,17.142857142857153,290.57546571596293,2020-12-12 +810,8195.2,4.0,20.2857142857143,283.52196809896674,2020-12-12 +802,8117.5,4.0,20.000000000000014,312.72913034363773,2020-12-12 +811,8204.800000000001,4.0,20.04761904761906,282.2168203369305,2020-12-12 +829,8379.7,4.0,20.09523809523811,280.9696051882595,2020-12-12 +830,8388.9,4.0,20.000000000000014,274.7791059054985,2020-12-12 +831,8398.6,4.0,20.000000000000014,272.0125911382946,2020-12-12 +832,8408.300000000001,4.0,20.09523809523811,274.79775505117107,2020-12-12 +833,8417.9,4.0,19.952380952380967,280.39292431578934,2020-12-12 +835,8437.7,4.0,19.47619047619049,291.9237683829233,2020-12-12 +828,8370.0,4.0,19.857142857142872,288.4659730848414,2020-12-12 +836,8447.2,4.0,19.333333333333346,292.4303358928888,2020-12-12 +838,8466.9,4.0,19.2857142857143,285.14985052551697,2020-12-12 +839,8476.6,4.0,19.142857142857157,280.21620980875264,2020-12-12 +840,8486.7,4.0,18.90476190476192,283.09910190115045,2020-12-12 +841,8486.7,4.0,19.000000000000014,300.22601988081203,2020-12-12 +842,8486.7,4.0,19.85714285714287,307.5598069022699,2020-12-12 +843,8486.7,4.0,18.571428571428584,266.7447874094444,2020-12-12 +837,8456.9,4.0,19.238095238095248,288.6084726351608,2020-12-12 +827,8360.4,4.0,19.71428571428573,295.0602593691818,2020-12-12 +834,8427.800000000001,4.0,19.571428571428584,286.7695932855886,2020-12-12 +775,7841.0,4.0,18.47619047619049,309.35299517407657,2020-12-12 +813,8223.9,4.0,20.2857142857143,279.75352798127426,2020-12-12 +814,8233.1,4.0,20.333333333333346,280.7461850133419,2020-12-12 +826,8350.6,4.0,19.66666666666668,297.99279481110386,2020-12-12 +815,8242.9,4.0,20.2857142857143,283.8169197157135,2020-12-12 +816,8252.6,4.0,20.142857142857157,287.151797154894,2020-12-12 +818,8272.300000000001,4.0,20.000000000000014,292.29227703021934,2020-12-12 +819,8282.4,4.0,20.000000000000014,297.7474395018752,2020-12-12 +817,8262.4,4.0,19.90476190476192,289.39444928489337,2020-12-12 +820,8291.9,4.0,20.000000000000014,303.6405631223505,2020-12-12 +821,8301.800000000001,4.0,20.000000000000014,305.681533110294,2020-12-12 +822,8311.7,4.0,20.000000000000014,303.1482364282841,2020-12-12 +823,8321.4,4.0,20.09523809523811,298.5923465842804,2020-12-12 +824,8330.800000000001,4.0,19.857142857142872,295.556924325491,2020-12-12 +825,8340.800000000001,4.0,19.71428571428573,296.20447447550265,2020-12-12 +812,8214.0,4.0,20.04761904761906,280.2629810201281,2020-12-12 +437,4081.8,4.0,19.142857142857157,364.31598579924935,2020-12-16 +442,4133.900000000001,4.0,19.952380952380967,364.78746622343334,2020-12-16 +438,4092.1000000000004,4.0,18.952380952380963,356.8637722054377,2020-12-16 +439,4103.2,4.0,19.333333333333346,351.40154086663154,2020-12-16 +440,4112.900000000001,4.0,19.66666666666668,350.8993013653522,2020-12-16 +441,4123.400000000001,4.0,20.04761904761906,356.0473298248923,2020-12-16 +436,4071.1000000000004,4.0,19.142857142857153,356.1736115404377,2020-12-16 +450,4216.0,4.0,19.857142857142872,384.6372950826671,2020-12-16 +444,4154.900000000001,4.0,19.809523809523824,370.51167084855933,2020-12-16 +445,4164.8,4.0,20.000000000000014,364.99533622136806,2020-12-16 +446,4174.400000000001,4.0,20.190476190476204,359.0877284112608,2020-12-16 +448,4195.0,4.0,20.142857142857157,363.5724362636911,2020-12-16 +449,4205.5,4.0,20.000000000000014,374.0984440262762,2020-12-16 +435,4060.4,4.0,19.142857142857153,325.1862248334193,2020-12-16 +451,4226.8,4.0,19.71428571428573,390.1512443468139,2020-12-16 +443,4143.900000000001,4.0,19.619047619047635,370.3280407488634,2020-12-16 +447,4184.900000000001,4.0,20.380952380952394,358.32218125797294,2020-12-16 +488,4613.0,4.0,19.571428571428584,356.7645085794913,2020-12-16 +433,4039.4,4.0,18.000000000000014,245.71760879758628,2020-12-16 +419,3897.6000000000004,4.0,20.000000000000014,344.16815265887885,2020-12-16 +452,4237.3,4.0,19.66666666666668,388.2109419096622,2020-12-16 +420,3907.9,4.0,20.000000000000014,343.75690062887384,2020-12-16 +421,3918.4,4.0,20.000000000000014,342.9007851354594,2020-12-16 +422,3928.8,4.0,19.90476190476192,343.77676710745607,2020-12-16 +423,3938.8,4.0,20.142857142857157,345.74148839941313,2020-12-16 +424,3949.1000000000004,4.0,20.2857142857143,348.04078254168235,2020-12-16 +425,3958.9,4.0,20.333333333333346,348.6088921999556,2020-12-16 +426,3968.7000000000003,4.0,20.2857142857143,350.4649667685727,2020-12-16 +427,3978.9,4.0,20.23809523809525,358.97363960286265,2020-12-16 +428,3989.3,4.0,20.23809523809525,364.08319462931456,2020-12-16 +429,3999.7000000000003,4.0,19.190476190476204,350.95819653483954,2020-12-16 +430,4010.7000000000003,4.0,18.047619047619058,318.5890860968012,2020-12-16 +431,4020.1000000000004,4.0,17.523809523809533,273.5109703389627,2020-12-16 +432,4029.6000000000004,4.0,17.1904761904762,238.96150195674713,2020-12-16 +434,4049.6000000000004,4.0,19.190476190476204,283.27975076837146,2020-12-16 +453,4247.5,4.0,19.71428571428573,378.08594346325987,2020-12-16 +485,4581.6,4.0,19.09523809523811,349.35657989954666,2020-12-16 +455,4268.1,4.0,20.04761904761906,366.070414886673,2020-12-16 +475,4476.2,4.0,19.000000000000014,382.5672449732099,2020-12-16 +476,4487.1,4.0,19.000000000000014,381.79179999580134,2020-12-16 +477,4498.2,4.0,19.000000000000014,374.7655990547296,2020-12-16 +478,4509.0,4.0,19.000000000000014,365.3779220830532,2020-12-16 +479,4519.2,4.0,18.90476190476192,356.5972985214263,2020-12-16 +480,4529.5,4.0,19.047619047619058,349.7681808597263,2020-12-16 +474,4465.1,4.0,18.90476190476192,376.9180209545866,2020-12-16 +481,4540.400000000001,4.0,19.428571428571445,343.77993533780096,2020-12-16 +483,4560.8,4.0,19.619047619047635,340.0928162310273,2020-12-16 +484,4571.2,4.0,19.333333333333346,344.20742080702007,2020-12-16 +486,4592.0,4.0,19.333333333333346,354.5832345836662,2020-12-16 +487,4602.5,4.0,19.523809523809536,356.6892022723056,2020-12-16 +489,4623.5,4.0,19.90476190476192,357.7892817199874,2020-12-16 +418,3887.3,4.0,20.000000000000014,344.00737094262445,2020-12-16 +482,4550.5,4.0,19.619047619047635,339.4714721578449,2020-12-16 +473,4454.6,4.0,19.047619047619058,369.493775294609,2020-12-16 +472,4444.1,4.0,19.333333333333346,362.38502626003697,2020-12-16 +471,4434.1,4.0,19.571428571428584,357.40346700140844,2020-12-16 +456,4278.6,4.0,19.571428571428584,368.67425045876263,2020-12-16 +457,4289.1,4.0,19.47619047619049,374.82027716229436,2020-12-16 +458,4299.5,4.0,19.23809523809525,378.9782109598633,2020-12-16 +459,4310.1,4.0,19.2857142857143,379.36922729855763,2020-12-16 +460,4320.7,4.0,19.71428571428573,380.4318663094169,2020-12-16 +461,4331.0,4.0,19.66666666666668,377.6737794105372,2020-12-16 +462,4341.400000000001,4.0,19.571428571428584,372.2819856646031,2020-12-16 +463,4351.7,4.0,19.857142857142872,369.204697554467,2020-12-16 +464,4362.1,4.0,19.66666666666668,367.18010933513506,2020-12-16 +465,4372.400000000001,4.0,19.333333333333346,367.4274845928211,2020-12-16 +466,4383.400000000001,4.0,19.619047619047635,369.0669187751576,2020-12-16 +467,4393.7,4.0,19.66666666666668,365.9677847090029,2020-12-16 +468,4403.400000000001,4.0,19.90476190476192,359.34513748920244,2020-12-16 +469,4413.400000000001,4.0,20.333333333333346,356.2136997004418,2020-12-16 +470,4423.7,4.0,20.190476190476204,355.60839096001655,2020-12-16 +454,4257.8,4.0,19.952380952380967,369.07337227677,2020-12-16 +417,3876.8,4.0,20.09523809523811,342.2453215292925,2020-12-16 +347,3166.4,4.0,21.04761904761906,342.4921124457326,2020-12-16 +415,3856.7000000000003,4.0,19.71428571428573,343.9431768154007,2020-12-16 +362,3318.1000000000004,4.0,20.000000000000014,352.8745105760444,2020-12-16 +363,3328.7000000000003,4.0,20.000000000000014,357.10904657054346,2020-12-16 +364,3339.2000000000003,4.0,20.000000000000014,354.6080408033262,2020-12-16 +365,3349.5,4.0,20.000000000000014,346.6621367895225,2020-12-16 +366,3359.1000000000004,4.0,20.000000000000014,338.67378203712326,2020-12-16 +367,3369.3,4.0,20.000000000000014,333.0599169219032,2020-12-16 +368,3379.4,4.0,20.000000000000014,331.02666620603344,2020-12-16 +369,3389.7000000000003,4.0,20.000000000000014,333.01492109252877,2020-12-16 +370,3400.2000000000003,4.0,20.000000000000014,337.5978367866602,2020-12-16 +371,3410.4,4.0,20.000000000000014,341.6477473484775,2020-12-16 +372,3420.1000000000004,4.0,20.000000000000014,342.241716655047,2020-12-16 +373,3430.5,4.0,20.000000000000014,338.8885230580064,2020-12-16 +374,3440.6000000000004,4.0,20.000000000000014,333.73639662979156,2020-12-16 +375,3450.8,4.0,20.000000000000014,330.97707741128215,2020-12-16 +376,3461.0,4.0,20.09523809523811,331.95436130058397,2020-12-16 +361,3308.0,4.0,20.09523809523811,346.06376580016536,2020-12-16 +377,3471.3,4.0,19.857142857142872,336.2140358787911,2020-12-16 +360,3297.5,4.0,19.952380952380967,339.7598165832534,2020-12-16 +358,3276.5,4.0,19.428571428571445,337.1106082422473,2020-12-16 +343,3125.8,4.0,19.952380952380967,368.09000625385715,2020-12-16 +490,4633.900000000001,4.0,20.09523809523811,357.72225558578356,2020-12-16 +344,3136.1000000000004,4.0,19.952380952380967,363.58929688060687,2020-12-16 +345,3146.7000000000003,4.0,20.333333333333346,353.9630866957374,2020-12-16 +346,3156.5,4.0,20.66666666666668,345.7679501030162,2020-12-16 +348,3176.2000000000003,4.0,20.952380952380967,344.269437702198,2020-12-16 +349,3186.0,4.0,20.71428571428573,350.00261427485634,2020-12-16 +350,3195.9,4.0,20.66666666666668,357.874212886585,2020-12-16 +351,3205.8,4.0,20.71428571428573,362.3587797481829,2020-12-16 +352,3216.1000000000004,4.0,20.85714285714287,360.88664738118223,2020-12-16 +353,3226.0,4.0,21.09523809523811,353.1186494201751,2020-12-16 +354,3236.3,4.0,21.190476190476204,342.871329180148,2020-12-16 +355,3246.1000000000004,4.0,20.90476190476192,335.4368447421955,2020-12-16 +356,3255.9,4.0,20.23809523809525,333.6518391340094,2020-12-16 +357,3266.2000000000003,4.0,19.71428571428573,336.0206193327733,2020-12-16 +359,3287.0,4.0,19.47619047619049,336.68554406912284,2020-12-16 +416,3866.5,4.0,19.857142857142872,341.14745918825076,2020-12-16 +378,3481.7000000000003,4.0,19.71428571428573,340.5158404014286,2020-12-16 +380,3501.7000000000003,4.0,19.71428571428573,344.6694625943218,2020-12-16 +400,3705.5,4.0,19.90476190476192,360.0740005666407,2020-12-16 +401,3715.7000000000003,4.0,20.142857142857157,355.8479339368666,2020-12-16 +402,3725.5,4.0,20.2857142857143,352.79525442256204,2020-12-16 +403,3735.2000000000003,4.0,20.333333333333346,351.0473333450997,2020-12-16 +404,3745.4,4.0,20.2857142857143,350.7628014373477,2020-12-16 +405,3755.6000000000004,4.0,20.04761904761906,348.4925074222849,2020-12-16 +406,3765.7000000000003,4.0,19.952380952380967,340.10339722548173,2020-12-16 +407,3775.4,4.0,20.333333333333346,326.3364944183542,2020-12-16 +408,3784.8,4.0,20.761904761904773,313.23047933939637,2020-12-16 +409,3794.4,4.0,20.90476190476192,307.08047644391155,2020-12-16 +410,3804.6000000000004,4.0,20.761904761904773,312.49402906774526,2020-12-16 +411,3815.0,4.0,20.42857142857144,327.4023295054002,2020-12-16 +412,3825.6000000000004,4.0,19.90476190476192,341.5480499651188,2020-12-16 +413,3835.4,4.0,19.619047619047635,348.54014829301565,2020-12-16 +414,3846.4,4.0,19.66666666666668,348.5174235650111,2020-12-16 +399,3695.7000000000003,4.0,19.90476190476192,363.3595689896458,2020-12-16 +379,3492.0,4.0,19.66666666666668,343.58727872321765,2020-12-16 +398,3685.3,4.0,20.04761904761906,363.7309001243166,2020-12-16 +396,3664.9,4.0,20.61904761904763,354.0499132252547,2020-12-16 +381,3512.0,4.0,19.857142857142872,346.1814184803739,2020-12-16 +382,3522.5,4.0,20.09523809523811,347.1624717490114,2020-12-16 +383,3532.9,4.0,20.000000000000014,348.0650337093524,2020-12-16 +384,3543.1000000000004,4.0,20.000000000000014,348.7712821022732,2020-12-16 +385,3553.5,4.0,20.000000000000014,349.29819282733183,2020-12-16 +386,3563.9,4.0,20.000000000000014,348.6907932731914,2020-12-16 +387,3574.2000000000003,4.0,20.000000000000014,347.63028494716343,2020-12-16 +388,3583.9,4.0,20.000000000000014,345.1792100287049,2020-12-16 +389,3594.2000000000003,4.0,20.000000000000014,342.44313804856404,2020-12-16 +390,3604.5,4.0,20.000000000000014,340.81807282050727,2020-12-16 +391,3614.7000000000003,4.0,20.000000000000014,340.30579507547156,2020-12-16 +392,3624.5,4.0,19.90476190476192,339.96445216930135,2020-12-16 +393,3634.8,4.0,20.04761904761906,340.30157116222404,2020-12-16 +394,3644.6000000000004,4.0,20.42857142857144,342.3410628087328,2020-12-16 +395,3655.0,4.0,20.61904761904763,346.95645925541146,2020-12-16 +397,3675.4,4.0,20.42857142857144,360.33376860014613,2020-12-16 +491,4643.7,4.0,20.04761904761906,359.755668365436,2020-12-16 +647,6189.700000000001,4.0,19.000000000000014,347.39943885881837,2020-12-16 +493,4665.3,4.0,19.761904761904773,374.5000515974891,2020-12-16 +589,5691.900000000001,4.0,19.190476190476204,364.5253060938581,2020-12-16 +590,5702.3,4.0,18.952380952380963,366.08358510932203,2020-12-16 +591,5713.200000000001,4.0,18.66666666666668,369.3894508282327,2020-12-16 +592,5724.700000000001,4.0,18.333333333333343,373.80789567077187,2020-12-16 +593,5735.6,4.0,18.047619047619058,372.1234647930479,2020-12-16 +594,5735.6,4.0,17.90476190476192,376.2279507941474,2020-12-16 +595,5735.6,4.0,18.000000000000014,398.52878568876645,2020-12-16 +596,5735.6,4.0,18.85714285714287,406.36641712253817,2020-12-16 +597,5735.6,4.0,17.47619047619049,356.28267971056505,2020-12-16 +611,5817.0,4.0,18.09523809523811,103.50828765451075,2020-12-16 +612,5827.1,4.0,16.142857142857153,178.5397414743611,2020-12-16 +613,5837.0,4.0,18.761904761904773,248.20922623443917,2020-12-16 +614,5848.0,4.0,18.47619047619049,297.72856496391967,2020-12-16 +615,5858.0,4.0,18.619047619047635,319.9250563031307,2020-12-16 +616,5868.1,4.0,18.380952380952394,330.002103048123,2020-12-16 +588,5680.700000000001,4.0,18.85714285714287,363.056845897418,2020-12-16 +617,5879.1,4.0,18.619047619047635,332.17952132186633,2020-12-16 +587,5669.6,4.0,18.714285714285726,361.625316280015,2020-12-16 +585,5647.6,4.0,18.714285714285726,358.74205817002553,2020-12-16 +570,5485.8,4.0,18.000000000000014,347.9068601686869,2020-12-16 +571,5496.700000000001,4.0,18.000000000000014,352.18256705812473,2020-12-16 +572,5507.400000000001,4.0,17.90476190476192,357.61205746047153,2020-12-16 +573,5518.5,4.0,18.142857142857153,361.87352467033435,2020-12-16 +574,5529.5,4.0,18.2857142857143,362.3436264013513,2020-12-16 +575,5540.5,4.0,18.333333333333346,358.3562586733112,2020-12-16 +576,5551.5,4.0,18.2857142857143,354.2998377996774,2020-12-16 +577,5562.200000000001,4.0,18.047619047619058,348.95983173570335,2020-12-16 +578,5573.6,4.0,17.85714285714287,343.50493040559377,2020-12-16 +579,5583.900000000001,4.0,18.47619047619049,340.4275137279711,2020-12-16 +580,5594.700000000001,4.0,18.952380952380963,340.11196030391733,2020-12-16 +581,5604.6,4.0,19.2857142857143,341.4202398117849,2020-12-16 +582,5615.400000000001,4.0,19.380952380952394,347.43319719779834,2020-12-16 +583,5626.3,4.0,19.23809523809525,353.009145070946,2020-12-16 +584,5636.6,4.0,18.761904761904773,356.17230075294765,2020-12-16 +586,5658.6,4.0,18.66666666666668,361.5292075982504,2020-12-16 +569,5474.5,4.0,18.000000000000014,345.6299221538345,2020-12-16 +618,5889.400000000001,4.0,18.380952380952394,331.113390080271,2020-12-16 +620,5910.3,4.0,18.428571428571438,314.0781591871138,2020-12-16 +640,6116.5,4.0,19.000000000000014,322.0319093941895,2020-12-16 +641,6127.3,4.0,19.000000000000014,318.20033040975295,2020-12-16 +642,6138.0,4.0,19.000000000000014,317.67827980393656,2020-12-16 +643,6148.3,4.0,19.000000000000014,321.95908004125425,2020-12-16 +644,6158.5,4.0,19.000000000000014,328.96569329701646,2020-12-16 +645,6168.8,4.0,19.000000000000014,337.14577001068164,2020-12-16 +646,6179.0,4.0,19.000000000000014,344.1433689600175,2020-12-16 +648,6200.400000000001,4.0,19.000000000000014,346.8686685729174,2020-12-16 +649,6211.6,4.0,19.000000000000014,345.8466007523572,2020-12-16 +650,6221.8,4.0,19.09523809523811,346.30630562067336,2020-12-16 +651,6232.6,4.0,18.85714285714287,347.40827057924355,2020-12-16 +652,6243.6,4.0,18.61904761904763,348.288366743621,2020-12-16 +653,6254.5,4.0,18.80952380952382,347.15556241011734,2020-12-16 +654,6265.200000000001,4.0,19.000000000000014,343.0447205412159,2020-12-16 +342,3115.9,4.0,20.23809523809525,366.14449981066264,2020-12-16 +639,6106.3,4.0,18.90476190476192,325.74517521471796,2020-12-16 +619,5899.8,4.0,18.523809523809536,322.5807142352405,2020-12-16 +638,6095.6,4.0,19.047619047619058,326.6634472379832,2020-12-16 +636,6074.6,4.0,19.761904761904773,318.5344168476807,2020-12-16 +621,5920.6,4.0,18.952380952380963,305.82532404089375,2020-12-16 +622,5930.6,4.0,19.142857142857153,303.7597048739758,2020-12-16 +623,5940.3,4.0,19.523809523809536,306.64906116224915,2020-12-16 +624,5951.0,4.0,19.142857142857153,315.1302929206215,2020-12-16 +625,5961.6,4.0,18.85714285714287,323.9600406653201,2020-12-16 +626,5972.3,4.0,18.571428571428584,330.85217795306113,2020-12-16 +627,5982.400000000001,4.0,18.61904761904763,329.4227575402321,2020-12-16 +628,5993.0,4.0,18.90476190476192,323.44056655582926,2020-12-16 +629,6003.700000000001,4.0,19.52380952380954,317.3018226793847,2020-12-16 +630,6013.8,4.0,19.619047619047635,314.96006479915155,2020-12-16 +631,6023.900000000001,4.0,19.523809523809536,318.06917202338883,2020-12-16 +632,6034.1,4.0,19.47619047619049,322.7670203459639,2020-12-16 +633,6044.8,4.0,19.380952380952394,322.72749128714963,2020-12-16 +634,6054.5,4.0,19.66666666666668,319.6903978464016,2020-12-16 +635,6064.3,4.0,19.90476190476192,317.4661417569916,2020-12-16 +637,6085.200000000001,4.0,19.333333333333346,323.34797545630545,2020-12-16 +492,4654.2,4.0,20.190476190476204,366.9332346409964,2020-12-16 +568,5463.900000000001,4.0,17.90476190476192,344.47504756774504,2020-12-16 +566,5442.3,4.0,18.333333333333343,330.3289093592989,2020-12-16 +513,4875.900000000001,4.0,19.619047619047635,365.3977374436389,2020-12-16 +514,4886.2,4.0,19.52380952380954,364.6846532334048,2020-12-16 +515,4896.6,4.0,18.80952380952382,363.37666859796417,2020-12-16 +516,4907.7,4.0,18.66666666666668,363.32256765158,2020-12-16 +517,4918.3,4.0,19.09523809523811,361.48670775165635,2020-12-16 +518,4928.700000000001,4.0,19.333333333333346,356.38672042382336,2020-12-16 +519,4939.400000000001,4.0,19.47619047619049,357.17058925880826,2020-12-16 +520,4950.0,4.0,19.52380952380954,363.2156471821162,2020-12-16 +521,4960.6,4.0,19.047619047619058,367.8496288197234,2020-12-16 +522,4971.5,4.0,18.90476190476192,369.21970359271694,2020-12-16 +523,4981.900000000001,4.0,19.000000000000014,367.8332524423597,2020-12-16 +524,4992.3,4.0,19.09523809523811,364.332923925782,2020-12-16 +525,5003.6,4.0,18.85714285714287,364.8301821844326,2020-12-16 +526,5015.0,4.0,18.80952380952382,367.6970513925961,2020-12-16 +527,5025.3,4.0,18.61904761904763,369.30983681012714,2020-12-16 +512,4865.5,4.0,19.523809523809536,368.82550686299675,2020-12-16 +528,5036.1,4.0,18.380952380952394,366.2029452023742,2020-12-16 +511,4854.8,4.0,19.571428571428584,372.0827967417488,2020-12-16 +509,4833.8,4.0,19.380952380952394,367.23483581718267,2020-12-16 +494,4675.900000000001,4.0,19.190476190476204,377.2307238152195,2020-12-16 +495,4686.2,4.0,19.142857142857157,374.7258460104215,2020-12-16 +496,4696.7,4.0,19.619047619047635,367.9096705484495,2020-12-16 +497,4707.3,4.0,19.952380952380967,362.6828458132325,2020-12-16 +498,4717.3,4.0,20.142857142857157,364.2106136970756,2020-12-16 +499,4727.8,4.0,20.190476190476204,368.5200414312639,2020-12-16 +500,4739.1,4.0,19.66666666666668,369.5541847224786,2020-12-16 +501,4749.400000000001,4.0,19.42857142857144,365.08849789547617,2020-12-16 +502,4759.6,4.0,19.380952380952394,360.73883350737833,2020-12-16 +503,4770.0,4.0,19.61904761904763,359.60810355354056,2020-12-16 +504,4781.3,4.0,19.380952380952394,365.96565109384755,2020-12-16 +505,4791.2,4.0,19.61904761904763,372.6118989485062,2020-12-16 +506,4801.900000000001,4.0,19.380952380952394,375.46170938148384,2020-12-16 +507,4812.900000000001,4.0,19.61904761904763,372.2664675752146,2020-12-16 +508,4823.2,4.0,19.47619047619049,369.1103569873791,2020-12-16 +510,4844.3,4.0,19.23809523809525,370.64478944212726,2020-12-16 +567,5452.8,4.0,18.047619047619058,339.4874267882825,2020-12-16 +529,5047.1,4.0,18.095238095238106,361.07304131267995,2020-12-16 +531,5069.1,4.0,18.238095238095248,353.16930245190485,2020-12-16 +551,5282.900000000001,4.0,18.380952380952394,345.5187205504826,2020-12-16 +552,5293.400000000001,4.0,18.190476190476204,349.85784432247846,2020-12-16 +553,5304.700000000001,4.0,18.047619047619058,349.47111337878835,2020-12-16 +554,5315.900000000001,4.0,18.047619047619058,343.50319826584615,2020-12-16 +555,5326.400000000001,4.0,18.190476190476204,335.8640665185832,2020-12-16 +556,5336.6,4.0,18.47619047619049,330.3921776620256,2020-12-16 +557,5348.0,4.0,18.571428571428584,329.76890245106256,2020-12-16 +558,5358.0,4.0,18.47619047619049,333.1890969180908,2020-12-16 +559,5368.5,4.0,18.190476190476204,338.02823129005606,2020-12-16 +560,5379.8,4.0,18.047619047619058,338.3293219716566,2020-12-16 +561,5390.400000000001,4.0,17.952380952380963,331.9283776892403,2020-12-16 +562,5400.8,4.0,18.333333333333343,321.9768003440733,2020-12-16 +563,5411.6,4.0,18.761904761904773,313.7460676799408,2020-12-16 +564,5421.700000000001,4.0,18.90476190476192,312.4450814643949,2020-12-16 +565,5432.200000000001,4.0,18.761904761904773,319.3824371400567,2020-12-16 +550,5272.8,4.0,18.714285714285726,340.1509023649436,2020-12-16 +530,5058.200000000001,4.0,18.190476190476204,355.2384587914573,2020-12-16 +549,5262.0,4.0,18.761904761904773,334.3838027037634,2020-12-16 +547,5240.6,4.0,18.571428571428584,336.09463004532313,2020-12-16 +532,5079.6,4.0,18.66666666666668,354.09124293367586,2020-12-16 +533,5089.900000000001,4.0,18.952380952380963,359.7739094834418,2020-12-16 +534,5100.900000000001,4.0,19.190476190476204,366.0468598430664,2020-12-16 +535,5111.8,4.0,18.85714285714287,369.8439072759711,2020-12-16 +536,5123.400000000001,4.0,18.714285714285726,368.1366572234818,2020-12-16 +537,5134.200000000001,4.0,18.66666666666668,363.3575985302669,2020-12-16 +538,5144.200000000001,4.0,18.80952380952382,354.22258891082237,2020-12-16 +539,5154.400000000001,4.0,18.714285714285726,345.85605433053234,2020-12-16 +540,5165.1,4.0,18.80952380952382,339.98260142487527,2020-12-16 +541,5175.900000000001,4.0,18.761904761904773,335.81866734345726,2020-12-16 +542,5186.8,4.0,18.571428571428584,333.2360965535938,2020-12-16 +543,5197.6,4.0,18.66666666666668,335.62298632351855,2020-12-16 +544,5208.400000000001,4.0,18.714285714285726,339.0053726184067,2020-12-16 +545,5219.200000000001,4.0,18.2857142857143,339.51732753914223,2020-12-16 +546,5229.8,4.0,18.238095238095248,339.07052780852354,2020-12-16 +548,5251.5,4.0,18.42857142857144,332.57614567071863,2020-12-16 +341,3105.3,4.0,20.809523809523824,360.5861238167071,2020-12-16 +26,127.0,4.0,24.90476190476192,204.39009476510432,2020-12-16 +339,3085.4,4.0,21.33333333333335,348.5631311187419,2020-12-16 +125,993.9000000000001,4.0,18.80952380952382,299.54811524921945,2020-12-16 +126,1004.2,4.0,19.23809523809525,298.6915974330853,2020-12-16 +127,1013.5,4.0,19.42857142857144,299.41796686093517,2020-12-16 +128,1024.0,4.0,19.2857142857143,302.052885798969,2020-12-16 +129,1033.9,4.0,19.142857142857157,302.20352734213293,2020-12-16 +130,1044.3,4.0,18.90476190476192,299.94611687713154,2020-12-16 +124,983.5,4.0,18.142857142857153,301.2354032269502,2020-12-16 +131,1054.4,4.0,19.000000000000014,296.35845877810476,2020-12-16 +133,1074.8,4.0,19.000000000000014,289.15435657880903,2020-12-16 +134,1085.0,4.0,19.09523809523811,288.49217859278826,2020-12-16 +135,1094.6000000000001,4.0,18.85714285714287,286.15523571038887,2020-12-16 +136,1104.1000000000001,4.0,18.714285714285726,283.72532746341324,2020-12-16 +137,1113.9,4.0,18.761904761904773,282.7018502972905,2020-12-16 +138,1124.3,4.0,18.571428571428584,282.8422324371037,2020-12-16 +132,1064.8,4.0,19.000000000000014,291.97411410793285,2020-12-16 +123,973.1,4.0,18.09523809523811,299.1134668429462,2020-12-16 +122,962.7,4.0,18.238095238095248,292.9968885489742,2020-12-16 +121,952.4000000000001,4.0,18.761904761904773,284.8192294284678,2020-12-16 +106,801.6,4.0,16.714285714285722,264.8977462279691,2020-12-16 +107,811.3000000000001,4.0,17.095238095238106,255.7679727949619,2020-12-16 +108,822.1,4.0,17.761904761904773,249.68723787838874,2020-12-16 +109,830.9000000000001,4.0,18.380952380952394,247.56515499444257,2020-12-16 +110,840.6,4.0,18.523809523809536,254.65181692528432,2020-12-16 +111,851.0,4.0,18.190476190476204,267.30161170791274,2020-12-16 +112,861.5,4.0,17.380952380952394,276.21107548303206,2020-12-16 +113,871.8000000000001,4.0,16.85714285714287,276.82795176801113,2020-12-16 +114,882.0,4.0,16.952380952380963,273.0532486129577,2020-12-16 +115,892.6,4.0,17.333333333333343,269.52231874504645,2020-12-16 +116,902.0,4.0,17.571428571428584,270.4616192580854,2020-12-16 +117,912.6,4.0,18.000000000000014,275.16809513484384,2020-12-16 +118,923.1,4.0,18.428571428571438,278.136176781363,2020-12-16 +119,932.2,4.0,18.761904761904773,277.21163377941195,2020-12-16 +120,942.4000000000001,4.0,18.90476190476192,278.9187127211671,2020-12-16 +139,1134.0,4.0,18.571428571428584,287.5562131337482,2020-12-16 +140,1144.3,4.0,18.761904761904773,294.81283974756303,2020-12-16 +141,1154.4,4.0,18.714285714285726,298.9172305573443,2020-12-16 +142,1164.9,4.0,18.85714285714287,301.8105538803229,2020-12-16 +162,1368.7,4.0,19.000000000000014,296.95052405326857,2020-12-16 +163,1378.5,4.0,19.000000000000014,306.97488009728534,2020-12-16 +164,1378.5,4.0,19.000000000000014,330.43357055040235,2020-12-16 +165,1378.5,4.0,18.80952380952382,326.55801785469544,2020-12-16 +166,1378.5,4.0,19.09523809523811,271.1448614172235,2020-12-16 +167,1378.5,4.0,19.47619047619049,181.13250399040032,2020-12-16 +178,1424.8000000000002,4.0,15.904761904761912,160.96332280518857,2020-12-16 +179,1435.0,4.0,19.85714285714287,255.57815518045538,2020-12-16 +180,1445.1000000000001,4.0,19.85714285714287,334.4860958162444,2020-12-16 +181,1455.9,4.0,19.90476190476192,378.8034124583096,2020-12-16 +182,1466.8000000000002,4.0,19.66666666666668,396.2266906409069,2020-12-16 +183,1477.5,4.0,19.809523809523824,386.23991680619554,2020-12-16 +184,1487.2,4.0,19.71428571428573,372.1410339360874,2020-12-16 +185,1497.6000000000001,4.0,19.809523809523824,362.8089323792773,2020-12-16 +186,1508.8000000000002,4.0,19.761904761904773,364.26228777986194,2020-12-16 +161,1358.4,4.0,19.09523809523811,298.77228630148966,2020-12-16 +105,790.7,4.0,17.047619047619058,273.92684635224515,2020-12-16 +160,1348.6000000000001,4.0,18.952380952380963,297.62292925089935,2020-12-16 +158,1328.7,4.0,18.380952380952394,298.98535389002507,2020-12-16 +143,1174.7,4.0,19.09523809523811,301.8326766372977,2020-12-16 +144,1184.6000000000001,4.0,18.90476190476192,297.7941157485119,2020-12-16 +145,1195.0,4.0,19.142857142857157,292.8052038588369,2020-12-16 +146,1204.6000000000001,4.0,19.380952380952394,288.97277129419103,2020-12-16 +147,1214.2,4.0,19.2857142857143,287.33677829064425,2020-12-16 +148,1224.5,4.0,18.85714285714287,289.8039950578262,2020-12-16 +149,1234.8000000000002,4.0,18.523809523809536,297.9442974914773,2020-12-16 +150,1245.1000000000001,4.0,18.66666666666668,306.7999808931916,2020-12-16 +151,1255.4,4.0,18.00000000000001,311.9848095282099,2020-12-16 +152,1265.4,4.0,17.80952380952382,311.6555226490069,2020-12-16 +153,1277.7,4.0,17.761904761904773,305.65686992219844,2020-12-16 +154,1287.5,4.0,17.952380952380963,294.03001492357714,2020-12-16 +155,1298.2,4.0,18.380952380952394,289.53963188346677,2020-12-16 +156,1308.5,4.0,18.952380952380963,291.2063023837253,2020-12-16 +157,1318.6000000000001,4.0,18.380952380952394,295.5067951892253,2020-12-16 +159,1338.5,4.0,18.571428571428584,299.64231951210024,2020-12-16 +104,781.0,4.0,17.333333333333343,280.4678307789965,2020-12-16 +103,770.6,4.0,17.66666666666668,285.55843060621737,2020-12-16 +102,760.6,4.0,17.952380952380963,286.8960414473135,2020-12-16 +32,173.5,4.0,23.52380952380954,249.11312328632658,2020-12-16 +33,181.8,4.0,22.857142857142872,252.8026173636656,2020-12-16 +34,190.20000000000002,4.0,22.52380952380954,255.3337849025075,2020-12-16 +35,199.20000000000002,4.0,22.047619047619065,259.519827825123,2020-12-16 +36,207.70000000000002,4.0,21.809523809523824,265.86588116512075,2020-12-16 +37,216.20000000000002,4.0,21.33333333333335,274.51235689313927,2020-12-16 +38,225.5,4.0,21.000000000000014,281.1372966435323,2020-12-16 +39,235.10000000000002,4.0,20.66666666666668,283.3250124129884,2020-12-16 +40,244.60000000000002,4.0,20.380952380952394,281.04527975938754,2020-12-16 +41,254.10000000000002,4.0,19.66666666666668,276.8711810623076,2020-12-16 +42,263.6,4.0,18.80952380952382,276.1199596918128,2020-12-16 +43,273.8,4.0,18.523809523809536,279.9801755460364,2020-12-16 +44,284.3,4.0,18.238095238095248,284.8014878698419,2020-12-16 +45,294.5,4.0,18.333333333333346,289.9626712506678,2020-12-16 +46,304.7,4.0,18.238095238095248,299.70501853850647,2020-12-16 +31,165.70000000000002,4.0,24.14285714285716,243.13595374406825,2020-12-16 +47,315.6,4.0,17.714285714285726,311.41200537097654,2020-12-16 +30,157.3,4.0,24.857142857142875,233.60181544089903,2020-12-16 +27,134.5,4.0,24.619047619047635,207.98624394831995,2020-12-16 +12,46.5,4.0,36.095238095238116,107.02448394135403,2020-12-16 +13,51.1,4.0,36.5714285714286,110.80195591492145,2020-12-16 +14,55.7,4.0,36.19047619047622,109.71882544214486,2020-12-16 +15,60.300000000000004,4.0,34.19047619047621,113.1829162249691,2020-12-16 +16,65.60000000000001,4.0,32.904761904761926,114.50546754568231,2020-12-16 +17,71.0,4.0,32.666666666666686,112.65328442869351,2020-12-16 +18,76.10000000000001,4.0,33.666666666666686,108.76378587236123,2020-12-16 +19,80.80000000000001,4.0,35.5714285714286,107.75129882892897,2020-12-16 +20,86.0,4.0,34.904761904761926,111.73744681469859,2020-12-16 +21,90.80000000000001,4.0,31.666666666666686,122.67203651458502,2020-12-16 +22,97.2,4.0,28.57142857142859,142.0419424250652,2020-12-16 +23,105.0,4.0,25.95238095238097,163.98071748869313,2020-12-16 +24,112.10000000000001,4.0,24.33333333333335,183.22368546945313,2020-12-16 +25,119.10000000000001,4.0,24.666666666666682,197.37131795337345,2020-12-16 +655,6275.400000000001,4.0,19.190476190476204,341.74247723819246,2020-12-16 +28,142.20000000000002,4.0,24.952380952380967,214.12451834772395,2020-12-16 +187,1518.9,4.0,19.66666666666668,371.8518519150889,2020-12-16 +48,326.3,4.0,17.190476190476204,311.2303286375932,2020-12-16 +50,348.70000000000005,4.0,17.90476190476192,359.92198534786996,2020-12-16 +87,614.2,4.0,17.571428571428584,149.79811970984386,2020-12-16 +88,624.7,4.0,16.095238095238106,201.94019480845628,2020-12-16 +89,634.6,4.0,15.666666666666679,245.14829872401373,2020-12-16 +90,645.8000000000001,4.0,16.47619047619049,270.253327267312,2020-12-16 +91,656.0,4.0,16.380952380952394,274.8975622925934,2020-12-16 +92,666.8000000000001,4.0,16.333333333333343,274.82566902336816,2020-12-16 +93,677.8000000000001,4.0,16.904761904761916,277.8473911323209,2020-12-16 +94,687.6,4.0,17.333333333333343,275.0356492409592,2020-12-16 +95,697.9000000000001,4.0,17.095238095238106,271.2050586178204,2020-12-16 +96,697.9000000000001,4.0,17.190476190476204,270.8388323683759,2020-12-16 +97,709.2,4.0,17.09523809523811,273.15718575155904,2020-12-16 +98,718.8000000000001,4.0,17.142857142857153,274.6875579166319,2020-12-16 +99,729.3000000000001,4.0,17.571428571428584,278.61130521793683,2020-12-16 +100,739.4000000000001,4.0,18.2857142857143,281.77853815044176,2020-12-16 +101,750.0,4.0,18.09523809523811,284.5955291091477,2020-12-16 +86,603.3000000000001,4.0,16.380952380952394,110.60009754365574,2020-12-16 +49,338.20000000000005,4.0,17.428571428571438,349.8178415824354,2020-12-16 +81,562.1,4.0,15.857142857142868,299.66187568771795,2020-12-16 +79,552.4,4.0,18.380952380952394,233.2980172039205,2020-12-16 +52,358.1,4.0,24.571428571428587,248.7846778282065,2020-12-16 +53,358.1,4.0,31.761904761904788,150.71271886169922,2020-12-16 +66,433.3,4.0,23.619047619047635,124.10187663460275,2020-12-16 +67,442.70000000000005,4.0,19.09523809523811,187.20735204286848,2020-12-16 +68,452.40000000000003,4.0,16.380952380952394,233.96072741078763,2020-12-16 +69,462.8,4.0,18.000000000000014,256.8031446647083,2020-12-16 +70,472.1,4.0,18.000000000000014,259.85597587558544,2020-12-16 +71,482.3,4.0,18.000000000000014,257.01107937706985,2020-12-16 +72,492.5,4.0,18.000000000000014,259.89526532216524,2020-12-16 +73,502.70000000000005,4.0,18.000000000000014,258.61405369984453,2020-12-16 +74,512.5,4.0,18.190476190476204,256.8288959535655,2020-12-16 +75,522.8000000000001,4.0,17.714285714285726,253.83401739620558,2020-12-16 +76,522.8000000000001,4.0,17.428571428571438,250.3948171561259,2020-12-16 +77,533.1,4.0,17.333333333333346,243.78254228140682,2020-12-16 +78,542.6,4.0,17.428571428571438,234.2237224249336,2020-12-16 +80,562.1,4.0,17.85714285714287,259.8522839241898,2020-12-16 +188,1529.6000000000001,4.0,19.42857142857144,380.1075465574882,2020-12-16 +189,1540.8000000000002,4.0,19.47619047619049,381.64879520967884,2020-12-16 +190,1551.5,4.0,19.47619047619049,374.59852399074043,2020-12-16 +286,2546.3,4.0,21.52380952380954,387.6303674063986,2020-12-16 +287,2556.8,4.0,21.04761904761906,401.6479372348151,2020-12-16 +288,2567.6000000000004,4.0,20.809523809523824,406.84872919921065,2020-12-16 +289,2577.9,4.0,21.142857142857157,399.67766702372876,2020-12-16 +290,2588.0,4.0,21.190476190476204,383.93432511645767,2020-12-16 +291,2597.6000000000004,4.0,21.47619047619049,371.4503140335303,2020-12-16 +292,2608.4,4.0,21.666666666666682,367.3290360335192,2020-12-16 +293,2618.5,4.0,21.238095238095255,365.0019801231352,2020-12-16 +294,2627.9,4.0,21.04761904761906,362.53680882835226,2020-12-16 +295,2638.3,4.0,21.190476190476204,357.961052519037,2020-12-16 +296,2648.3,4.0,20.90476190476192,351.5078721903317,2020-12-16 +297,2657.8,4.0,20.71428571428573,349.67191843181195,2020-12-16 +298,2667.9,4.0,20.714285714285726,353.23557839356044,2020-12-16 +299,2678.4,4.0,20.23809523809525,361.0194299726665,2020-12-16 +300,2688.4,4.0,20.333333333333346,369.61951316077966,2020-12-16 +285,2536.6000000000004,4.0,21.571428571428587,370.0479844785565,2020-12-16 +301,2699.1000000000004,4.0,20.04761904761906,376.783458731423,2020-12-16 +284,2526.5,4.0,21.2857142857143,358.60694173423235,2020-12-16 +282,2506.6000000000004,4.0,20.09523809523811,352.54018538386185,2020-12-16 +267,2352.3,4.0,20.85714285714287,341.3516121661344,2020-12-16 +268,2362.3,4.0,21.190476190476204,333.9411657400307,2020-12-16 +269,2372.2000000000003,4.0,20.952380952380967,336.66683935938585,2020-12-16 +270,2382.7000000000003,4.0,20.571428571428584,345.92698654659307,2020-12-16 +271,2392.7000000000003,4.0,20.47619047619049,356.7367778877159,2020-12-16 +272,2403.5,4.0,20.333333333333346,363.2728889948229,2020-12-16 +273,2412.6,4.0,20.23809523809525,367.40862432453025,2020-12-16 +274,2423.3,4.0,20.2857142857143,374.7273637086522,2020-12-16 +275,2433.4,4.0,20.142857142857157,383.67027569272676,2020-12-16 +276,2444.2000000000003,4.0,19.90476190476192,389.5819968968174,2020-12-16 +277,2454.9,4.0,20.000000000000014,388.1827498065617,2020-12-16 +278,2465.5,4.0,20.000000000000014,377.23003353040906,2020-12-16 +279,2475.8,4.0,20.000000000000014,363.41699911009323,2020-12-16 +280,2486.1000000000004,4.0,20.000000000000014,354.2578558274812,2020-12-16 +281,2496.1000000000004,4.0,19.809523809523824,351.1984819651723,2020-12-16 +283,2517.1000000000004,4.0,20.761904761904773,354.97792398392596,2020-12-16 +266,2341.8,4.0,20.71428571428573,356.6463282742543,2020-12-16 +302,2709.8,4.0,20.000000000000014,378.78467773839407,2020-12-16 +304,2730.2000000000003,4.0,20.047619047619058,371.9626154425797,2020-12-16 +324,2933.9,4.0,20.61904761904763,331.9185782867912,2020-12-16 +325,2943.8,4.0,20.85714285714287,333.6999936849277,2020-12-16 +326,2953.9,4.0,21.380952380952394,342.05462276560246,2020-12-16 +327,2964.1000000000004,4.0,21.238095238095255,358.20740523323036,2020-12-16 +328,2974.2000000000003,4.0,20.952380952380967,373.1777655609283,2020-12-16 +329,2984.6000000000004,4.0,20.428571428571445,383.48578261627654,2020-12-16 +330,2994.6000000000004,4.0,20.52380952380954,384.4709773540021,2020-12-16 +331,3005.1000000000004,4.0,20.47619047619049,380.6465394374857,2020-12-16 +332,3015.5,4.0,20.47619047619049,370.83995936722687,2020-12-16 +333,3025.3,4.0,20.000000000000014,359.5200384816583,2020-12-16 +334,3035.7000000000003,4.0,20.333333333333346,347.8822293969222,2020-12-16 +335,3045.4,4.0,20.52380952380954,339.54005883004425,2020-12-16 +336,3055.4,4.0,20.90476190476192,335.8731211569864,2020-12-16 +337,3065.4,4.0,21.380952380952397,339.853172707442,2020-12-16 +338,3076.2000000000003,4.0,21.52380952380954,344.34563046888366,2020-12-16 +323,2924.2000000000003,4.0,20.142857142857157,334.92683290634454,2020-12-16 +303,2720.5,4.0,19.85714285714287,377.0148389120277,2020-12-16 +322,2913.6000000000004,4.0,20.2857142857143,338.5226773093995,2020-12-16 +320,2893.7000000000003,4.0,20.90476190476192,349.67276613628167,2020-12-16 +305,2740.1000000000004,4.0,20.142857142857157,370.7860614078496,2020-12-16 +306,2750.5,4.0,20.142857142857157,372.90862268745093,2020-12-16 +307,2760.1000000000004,4.0,20.04761904761906,378.078229895334,2020-12-16 +308,2770.6000000000004,4.0,20.2857142857143,384.10061484305504,2020-12-16 +309,2781.3,4.0,20.333333333333346,388.33015363054096,2020-12-16 +310,2792.0,4.0,20.190476190476204,389.85189842802686,2020-12-16 +311,2802.8,4.0,20.190476190476204,387.73279971768306,2020-12-16 +312,2813.0,4.0,20.23809523809525,380.1356132864684,2020-12-16 +313,2823.0,4.0,20.66666666666668,369.64871990519066,2020-12-16 +314,2833.0,4.0,21.04761904761906,361.0844431356394,2020-12-16 +315,2843.5,4.0,20.952380952380967,356.947525969539,2020-12-16 +316,2853.7000000000003,4.0,20.71428571428573,357.71274760451615,2020-12-16 +317,2863.7000000000003,4.0,20.66666666666668,360.46838320648624,2020-12-16 +318,2874.2000000000003,4.0,20.809523809523824,359.9812671327619,2020-12-16 +319,2884.1000000000004,4.0,20.71428571428573,355.78771614058496,2020-12-16 +321,2903.9,4.0,20.619047619047635,344.3557983976513,2020-12-16 +340,3095.5,4.0,21.238095238095255,354.2291176495093,2020-12-16 +265,2332.2000000000003,4.0,20.66666666666668,371.3840951473877,2020-12-16 +263,2311.7000000000003,4.0,20.809523809523824,376.97282630289067,2020-12-16 +210,1765.5,4.0,19.809523809523824,363.4680059572158,2020-12-16 +211,1776.2,4.0,19.761904761904773,370.20616233236933,2020-12-16 +212,1786.8000000000002,4.0,19.66666666666668,374.59420118262835,2020-12-16 +213,1798.0,4.0,19.428571428571445,377.51406405564376,2020-12-16 +214,1808.5,4.0,19.809523809523824,376.0799325337229,2020-12-16 +215,1818.6000000000001,4.0,19.857142857142872,373.274477234746,2020-12-16 +216,1829.2,4.0,20.09523809523811,371.6883654306172,2020-12-16 +217,1839.0,4.0,20.000000000000014,373.43340465490917,2020-12-16 +218,1849.6000000000001,4.0,20.000000000000014,375.0517423034703,2020-12-16 +219,1860.2,4.0,20.000000000000014,376.080110061039,2020-12-16 +220,1870.1000000000001,4.0,20.000000000000014,373.066767554893,2020-12-16 +221,1880.7,4.0,20.000000000000014,371.7362700896193,2020-12-16 +222,1891.2,4.0,20.09523809523811,372.9927850148487,2020-12-16 +223,1901.2,4.0,19.761904761904777,375.2588256636887,2020-12-16 +224,1911.7,4.0,19.85714285714287,379.8758499815706,2020-12-16 +209,1755.0,4.0,19.47619047619049,363.8478839242847,2020-12-16 +225,1923.1000000000001,4.0,20.047619047619058,384.5379428906507,2020-12-16 +208,1744.6000000000001,4.0,19.380952380952394,368.6679136378358,2020-12-16 +206,1723.0,4.0,18.714285714285726,384.36809195140233,2020-12-16 +191,1561.9,4.0,19.523809523809536,365.59207295763633,2020-12-16 +192,1571.6000000000001,4.0,19.619047619047635,360.1138600299412,2020-12-16 +193,1582.6000000000001,4.0,19.333333333333346,357.9270108238925,2020-12-16 +194,1593.2,4.0,19.190476190476204,357.1889760603573,2020-12-16 +195,1604.2,4.0,19.190476190476204,355.3395905286326,2020-12-16 +196,1614.7,4.0,19.333333333333346,351.5478766059015,2020-12-16 +197,1625.2,4.0,19.2857142857143,350.6522214310139,2020-12-16 +198,1636.2,4.0,19.142857142857157,351.1050478822997,2020-12-16 +199,1647.2,4.0,18.90476190476192,351.1935500355467,2020-12-16 +200,1657.7,4.0,19.000000000000014,350.0858227124751,2020-12-16 +201,1668.7,4.0,19.000000000000014,351.54079889278074,2020-12-16 +202,1679.4,4.0,19.09523809523811,358.4264682159702,2020-12-16 +203,1689.7,4.0,18.85714285714287,370.49815153112115,2020-12-16 +204,1700.3000000000002,4.0,18.714285714285726,381.1239692367054,2020-12-16 +205,1711.4,4.0,18.66666666666668,387.8531227863382,2020-12-16 +207,1733.5,4.0,18.66666666666668,376.6586815856351,2020-12-16 +264,2322.1,4.0,20.809523809523824,378.7717400471962,2020-12-16 +226,1932.5,4.0,19.90476190476192,385.9361202242193,2020-12-16 +228,1953.7,4.0,19.90476190476192,393.2129081486295,2020-12-16 +248,2164.1,4.0,19.380952380952394,356.17401363428525,2020-12-16 +249,2174.7000000000003,4.0,19.523809523809536,351.4658604153185,2020-12-16 +250,2185.0,4.0,19.952380952380967,336.3730768256172,2020-12-16 +251,2194.3,4.0,21.2857142857143,311.52304550002725,2020-12-16 +252,2204.0,4.0,21.71428571428573,289.71662198451327,2020-12-16 +253,2211.5,4.0,21.90476190476192,277.35721728453984,2020-12-16 +254,2221.5,4.0,21.428571428571445,285.41094453716374,2020-12-16 +255,2231.0,4.0,20.71428571428573,304.12587224235483,2020-12-16 +256,2241.4,4.0,19.90476190476192,326.7146220273812,2020-12-16 +257,2251.3,4.0,20.809523809523824,345.7928256099344,2020-12-16 +258,2261.8,4.0,20.619047619047635,356.9609267937593,2020-12-16 +259,2271.0,4.0,20.47619047619049,358.98709849298973,2020-12-16 +260,2281.0,4.0,20.619047619047635,362.30706054354147,2020-12-16 +261,2291.6,4.0,20.61904761904763,365.2336619561895,2020-12-16 +262,2301.6,4.0,20.571428571428584,370.35506911390416,2020-12-16 +247,2153.6,4.0,19.90476190476192,353.0437875688855,2020-12-16 +227,1943.2,4.0,19.857142857142872,390.1468192340842,2020-12-16 +246,2143.0,4.0,20.000000000000014,347.9260813015751,2020-12-16 +244,2122.8,4.0,20.380952380952394,349.3301577252065,2020-12-16 +229,1964.2,4.0,19.619047619047635,392.55176864315956,2020-12-16 +230,1974.8000000000002,4.0,19.857142857142872,391.51775706343227,2020-12-16 +231,1985.4,4.0,20.000000000000014,389.628493598614,2020-12-16 +232,1995.9,4.0,20.142857142857157,387.07404559088275,2020-12-16 +233,2006.6000000000001,4.0,20.2857142857143,386.86133809289674,2020-12-16 +234,2017.2,4.0,20.333333333333346,385.0801733239482,2020-12-16 +235,2027.9,4.0,20.2857142857143,381.512833480093,2020-12-16 +236,2038.0,4.0,20.142857142857157,377.3242845482922,2020-12-16 +237,2048.8,4.0,19.90476190476192,373.8985391941575,2020-12-16 +238,2059.4,4.0,20.000000000000014,372.6957314841028,2020-12-16 +239,2070.0,4.0,20.000000000000014,373.23391376925144,2020-12-16 +240,2080.8,4.0,20.000000000000014,373.8059609600391,2020-12-16 +241,2090.9,4.0,20.000000000000014,371.6130527588669,2020-12-16 +242,2101.6,4.0,19.90476190476192,364.43264693394315,2020-12-16 +243,2112.2000000000003,4.0,20.142857142857157,355.8811749377177,2020-12-16 +245,2132.7000000000003,4.0,20.190476190476204,345.1011478569149,2020-12-16 +656,6285.700000000001,4.0,19.380952380952394,347.1077559737472,2020-12-16 +29,150.0,4.0,25.047619047619065,223.47532064172879,2020-12-16 +658,6307.0,4.0,18.80952380952382,354.3968885574701,2020-12-16 +1086,10284.7,4.0,18.142857142857153,338.06290293165574,2020-12-16 +1087,10295.2,4.0,18.047619047619058,337.4571922775659,2020-12-16 +1088,10306.2,4.0,17.952380952380963,336.28116071731074,2020-12-16 +1089,10317.300000000001,4.0,17.85714285714287,331.2644553588833,2020-12-16 +1090,10327.800000000001,4.0,17.761904761904773,324.92965326488064,2020-12-16 +1091,10338.400000000001,4.0,18.09523809523811,320.6409075912269,2020-12-16 +1085,10274.0,4.0,18.238095238095248,335.81541791661425,2020-12-16 +1092,10349.7,4.0,18.000000000000014,320.49307467293374,2020-12-16 +1094,10371.5,4.0,18.000000000000014,337.0906022236922,2020-12-16 +1095,10382.6,4.0,17.90476190476192,345.93560681419467,2020-12-16 +1096,10393.5,4.0,18.142857142857153,350.67833806432645,2020-12-16 +1097,10404.400000000001,4.0,18.2857142857143,350.3486534894818,2020-12-16 +1098,10415.0,4.0,18.333333333333346,345.87847445026017,2020-12-16 +1099,10425.6,4.0,18.2857142857143,342.86838663321214,2020-12-16 +1093,10360.1,4.0,18.000000000000014,326.5112346111174,2020-12-16 +1084,10263.300000000001,4.0,18.000000000000014,331.27658999624515,2020-12-16 +1083,10252.1,4.0,17.85714285714287,325.05310309809124,2020-12-16 +1082,10241.1,4.0,17.714285714285726,319.0269565436737,2020-12-16 +1067,10080.400000000001,4.0,18.047619047619058,333.2869248203698,2020-12-16 +1068,10091.6,4.0,17.90476190476192,327.46591187126626,2020-12-16 +1069,10102.300000000001,4.0,18.000000000000014,320.34855746266993,2020-12-16 +1070,10113.1,4.0,18.09523809523811,310.611891555223,2020-12-16 +1071,10124.2,4.0,17.952380952380963,301.1903883929518,2020-12-16 +1072,10134.5,4.0,17.571428571428584,296.80905059851636,2020-12-16 +1073,10144.800000000001,4.0,17.47619047619049,299.3430026293226,2020-12-16 +1074,10155.6,4.0,17.238095238095248,304.7989036439635,2020-12-16 +1075,10166.400000000001,4.0,17.285714285714295,306.7527027101934,2020-12-16 +1076,10177.400000000001,4.0,17.61904761904763,304.3815113055349,2020-12-16 +1077,10187.5,4.0,17.80952380952382,300.07284741771207,2020-12-16 +1078,10198.400000000001,4.0,17.952380952380963,298.6442399274205,2020-12-16 +1079,10208.6,4.0,17.952380952380963,301.87126163947164,2020-12-16 +1080,10219.300000000001,4.0,17.714285714285726,307.7706473978757,2020-12-16 +1081,10230.5,4.0,17.66666666666668,313.2772719310654,2020-12-16 +1100,10436.1,4.0,18.142857142857153,341.421313901782,2020-12-16 +1101,10447.400000000001,4.0,17.90476190476192,341.2281480618836,2020-12-16 +1102,10458.1,4.0,18.000000000000014,339.61067368136116,2020-12-16 +1103,10469.5,4.0,18.000000000000014,334.6428241363717,2020-12-16 +1123,10682.5,4.0,18.000000000000014,324.18835475185915,2020-12-16 +1124,10693.300000000001,4.0,17.90476190476192,316.36843481790174,2020-12-16 +1125,10703.800000000001,4.0,18.142857142857153,305.1049302680599,2020-12-16 +1126,10714.1,4.0,18.2857142857143,295.82953459106756,2020-12-16 +1127,10724.5,4.0,18.333333333333346,294.86930431021494,2020-12-16 +1128,10734.300000000001,4.0,18.2857142857143,306.20088744839006,2020-12-16 +1129,10745.2,4.0,18.142857142857153,318.9110649167312,2020-12-16 +1130,10755.6,4.0,17.80952380952382,326.7536074046821,2020-12-16 +1131,10766.6,4.0,18.142857142857153,326.17618288834,2020-12-16 +1132,10777.1,4.0,18.190476190476204,319.90564608925837,2020-12-16 +1133,10787.0,4.0,18.47619047619049,312.9309522296219,2020-12-16 +1134,10797.6,4.0,18.571428571428584,311.62832421502105,2020-12-16 +1135,10808.300000000001,4.0,18.47619047619049,311.52177165181456,2020-12-16 +1136,10819.2,4.0,18.095238095238106,313.5670039028163,2020-12-16 +1137,10829.1,4.0,18.190476190476204,313.82182863820753,2020-12-16 +1122,10671.800000000001,4.0,18.000000000000014,325.9668293818249,2020-12-16 +1066,10069.7,4.0,18.333333333333343,337.42791487647105,2020-12-16 +1121,10661.1,4.0,17.90476190476192,325.36728784117287,2020-12-16 +1119,10639.7,4.0,18.2857142857143,330.5942603098009,2020-12-16 +1104,10480.2,4.0,18.000000000000014,326.93663495396055,2020-12-16 +1105,10490.1,4.0,17.90476190476192,321.8607253710009,2020-12-16 +1106,10501.5,4.0,18.142857142857153,320.73580204802386,2020-12-16 +1107,10512.1,4.0,18.2857142857143,322.0368573948797,2020-12-16 +1108,10522.7,4.0,18.333333333333346,325.0407109428219,2020-12-16 +1109,10533.2,4.0,18.380952380952394,326.7489212127606,2020-12-16 +1110,10544.2,4.0,18.000000000000014,324.6057493695418,2020-12-16 +1111,10554.7,4.0,17.714285714285726,319.2917927953475,2020-12-16 +1112,10565.400000000001,4.0,17.523809523809536,311.73208265841095,2020-12-16 +1113,10576.400000000001,4.0,17.428571428571438,304.2400998034235,2020-12-16 +1114,10587.1,4.0,17.523809523809536,301.5986951349567,2020-12-16 +1115,10597.2,4.0,17.714285714285726,304.6060129451149,2020-12-16 +1116,10607.6,4.0,18.000000000000014,313.8808290948998,2020-12-16 +1117,10618.6,4.0,18.380952380952394,324.076423411361,2020-12-16 +1118,10629.2,4.0,18.333333333333346,329.4763673236343,2020-12-16 +1120,10650.1,4.0,18.142857142857153,328.23397978433377,2020-12-16 +1065,10058.7,4.0,18.761904761904773,325.48033446607985,2020-12-16 +1064,10048.5,4.0,19.09523809523811,276.82079958909765,2020-12-16 +1063,10038.7,4.0,18.190476190476204,196.17404078128502,2020-12-16 +996,9493.0,4.0,18.85714285714287,325.2743450627696,2020-12-16 +997,9503.2,4.0,18.714285714285726,325.2483501552074,2020-12-16 +998,9513.9,4.0,18.66666666666668,326.6158451535712,2020-12-16 +999,9524.7,4.0,18.714285714285726,325.3817673975606,2020-12-16 +1000,9534.9,4.0,18.85714285714287,324.1963371419868,2020-12-16 +1001,9545.4,4.0,19.09523809523811,323.72444472540064,2020-12-16 +1002,9555.7,4.0,19.000000000000014,324.4031899122389,2020-12-16 +1003,9566.4,4.0,19.000000000000014,326.28144002701697,2020-12-16 +1004,9576.800000000001,4.0,19.000000000000014,328.07150248484527,2020-12-16 +1005,9587.300000000001,4.0,19.000000000000014,327.76430735109534,2020-12-16 +1006,9597.6,4.0,19.000000000000014,326.42945379975225,2020-12-16 +1007,9607.9,4.0,19.000000000000014,326.35944994993775,2020-12-16 +1008,9618.4,4.0,19.000000000000014,326.0391141858207,2020-12-16 +1009,9629.2,4.0,18.90476190476192,323.1531254868788,2020-12-16 +1010,9639.300000000001,4.0,19.142857142857157,317.4475869751497,2020-12-16 +995,9482.4,4.0,19.09523809523811,326.59337257033906,2020-12-16 +1011,9649.800000000001,4.0,19.2857142857143,310.2099851606091,2020-12-16 +994,9471.300000000001,4.0,18.90476190476192,327.493475111724,2020-12-16 +992,9450.9,4.0,19.2857142857143,324.1016239080393,2020-12-16 +977,9296.6,4.0,19.619047619047635,326.38685586916404,2020-12-16 +978,9307.0,4.0,19.90476190476192,328.3717470988952,2020-12-16 +979,9316.7,4.0,19.90476190476192,331.3316246708644,2020-12-16 +980,9327.300000000001,4.0,19.619047619047635,332.7616859043238,2020-12-16 +981,9337.5,4.0,19.047619047619058,333.7890233485266,2020-12-16 +982,9348.1,4.0,18.714285714285726,331.79396546103135,2020-12-16 +983,9358.7,4.0,18.61904761904763,324.3328295147492,2020-12-16 +984,9368.7,4.0,18.85714285714287,313.2797649989766,2020-12-16 +985,9379.2,4.0,19.09523809523811,303.14274225100667,2020-12-16 +986,9389.300000000001,4.0,19.000000000000014,296.9885243498635,2020-12-16 +987,9399.9,4.0,19.000000000000014,297.09367018996153,2020-12-16 +988,9410.6,4.0,18.90476190476192,302.208771497042,2020-12-16 +989,9420.7,4.0,19.142857142857157,308.12961222893404,2020-12-16 +990,9431.0,4.0,19.2857142857143,313.9734056202617,2020-12-16 +991,9440.9,4.0,19.333333333333346,319.0742151064484,2020-12-16 +993,9461.2,4.0,19.142857142857157,326.5222751988976,2020-12-16 +1138,10840.0,4.0,18.238095238095248,310.2366259796428,2020-12-16 +1012,9659.1,4.0,19.333333333333346,303.32611427916737,2020-12-16 +1014,9679.7,4.0,19.190476190476204,299.0003267388034,2020-12-16 +1034,9883.5,4.0,19.000000000000014,330.17650414063246,2020-12-16 +1035,9894.300000000001,4.0,19.000000000000014,329.8965102093136,2020-12-16 +1036,9905.2,4.0,19.000000000000014,330.4829513033438,2020-12-16 +1037,9915.6,4.0,19.000000000000014,328.7961187939714,2020-12-16 +1038,9925.7,4.0,19.000000000000014,325.5895388683719,2020-12-16 +1039,9936.400000000001,4.0,19.000000000000014,321.45261615387926,2020-12-16 +1040,9946.2,4.0,19.000000000000014,317.4907945941957,2020-12-16 +1041,9956.300000000001,4.0,18.90476190476192,314.6337414057414,2020-12-16 +1042,9966.5,4.0,19.047619047619058,307.8283048917807,2020-12-16 +1043,9976.800000000001,4.0,19.333333333333346,311.6079718961787,2020-12-16 +1044,9986.800000000001,4.0,19.66666666666668,327.4416995208471,2020-12-16 +1045,9986.800000000001,4.0,19.761904761904777,320.35366543315365,2020-12-16 +1046,9986.800000000001,4.0,20.2857142857143,265.38381229893287,2020-12-16 +1047,9986.800000000001,4.0,20.23809523809525,177.9091065571241,2020-12-16 +1062,10028.1,4.0,18.66666666666668,110.1947038497851,2020-12-16 +1033,9873.1,4.0,19.000000000000014,330.7897520531499,2020-12-16 +1013,9669.5,4.0,19.190476190476204,300.57707111158874,2020-12-16 +1032,9862.300000000001,4.0,18.90476190476192,327.73627529879326,2020-12-16 +1030,9841.2,4.0,19.2857142857143,310.2552214876699,2020-12-16 +1015,9689.800000000001,4.0,19.333333333333346,295.9365408124275,2020-12-16 +1016,9699.9,4.0,19.619047619047635,292.53033161692974,2020-12-16 +1017,9709.9,4.0,19.619047619047635,289.8679817462969,2020-12-16 +1018,9720.4,4.0,19.333333333333346,288.7970078448599,2020-12-16 +1019,9730.4,4.0,19.190476190476204,289.9680108297262,2020-12-16 +1020,9740.300000000001,4.0,19.190476190476204,290.605130252561,2020-12-16 +1021,9750.2,4.0,19.333333333333346,289.58247784199176,2020-12-16 +1022,9760.300000000001,4.0,19.2857142857143,289.6059108761106,2020-12-16 +1023,9770.2,4.0,19.142857142857157,291.14061039135373,2020-12-16 +1024,9780.7,4.0,18.90476190476192,294.73051113975725,2020-12-16 +1025,9791.4,4.0,19.000000000000014,297.8040492268444,2020-12-16 +1026,9801.6,4.0,18.90476190476192,298.73291433905933,2020-12-16 +1027,9811.300000000001,4.0,19.142857142857157,297.27052907015945,2020-12-16 +1028,9820.6,4.0,19.2857142857143,296.34742731566814,2020-12-16 +1029,9831.0,4.0,19.333333333333346,300.2050461628498,2020-12-16 +1031,9852.1,4.0,19.142857142857157,320.1147964161186,2020-12-16 +1139,10850.2,4.0,18.761904761904773,303.0935506127024,2020-12-16 +1140,10860.6,4.0,18.90476190476192,296.14996244283174,2020-12-16 +1141,10870.800000000001,4.0,18.66666666666668,293.8463957764176,2020-12-16 +1238,11846.6,4.0,20.42857142857144,290.2970608051229,2020-12-16 +1239,11856.6,4.0,20.04761904761906,292.5970957787287,2020-12-16 +1240,11865.900000000001,4.0,19.90476190476192,290.1258459432431,2020-12-16 +1241,11875.7,4.0,20.000000000000014,286.8002414603882,2020-12-16 +1242,11884.800000000001,4.0,20.000000000000014,287.40154582157845,2020-12-16 +1243,11894.7,4.0,20.000000000000014,291.16975036237994,2020-12-16 +1244,11904.5,4.0,20.000000000000014,293.49293830411233,2020-12-16 +1245,11913.7,4.0,20.000000000000014,292.4093657143326,2020-12-16 +1246,11923.400000000001,4.0,20.000000000000014,287.39035026653073,2020-12-16 +1247,11933.1,4.0,20.000000000000014,281.8732171098029,2020-12-16 +1248,11942.800000000001,4.0,20.09523809523811,279.44016184530085,2020-12-16 +1249,11952.1,4.0,19.952380952380967,278.925431362568,2020-12-16 +1250,11961.300000000001,4.0,19.571428571428584,277.75043468298156,2020-12-16 +1251,11970.6,4.0,19.380952380952394,276.3990793843527,2020-12-16 +1252,11980.1,4.0,19.47619047619049,273.5996390539177,2020-12-16 +1237,11836.7,4.0,20.61904761904763,282.8059923786781,2020-12-16 +1253,11990.400000000001,4.0,19.42857142857144,271.22465379207074,2020-12-16 +1236,11827.400000000001,4.0,20.61904761904763,273.76172016923226,2020-12-16 +1234,11808.2,4.0,20.04761904761906,274.25819594320217,2020-12-16 +1219,11661.900000000001,4.0,19.190476190476204,286.8669794835857,2020-12-16 +1220,11672.0,4.0,19.142857142857157,288.91412962871743,2020-12-16 +1221,11681.800000000001,4.0,18.90476190476192,289.1078912357405,2020-12-16 +1222,11692.1,4.0,19.000000000000014,287.7436532988006,2020-12-16 +1223,11702.400000000001,4.0,19.000000000000014,286.12463005849276,2020-12-16 +1224,11712.1,4.0,18.90476190476192,282.072944238377,2020-12-16 +1225,11722.400000000001,4.0,19.047619047619058,274.58593714391105,2020-12-16 +1226,11732.0,4.0,19.333333333333346,263.61970008695914,2020-12-16 +1227,11741.400000000001,4.0,19.66666666666668,252.4587878287142,2020-12-16 +1228,11750.2,4.0,19.952380952380967,247.4211388620517,2020-12-16 +1229,11760.1,4.0,20.09523809523811,252.82996710770166,2020-12-16 +1230,11769.300000000001,4.0,20.000000000000014,266.29480529392185,2020-12-16 +1231,11778.900000000001,4.0,20.000000000000014,279.40343223416346,2020-12-16 +1232,11788.900000000001,4.0,20.000000000000014,284.8569663654399,2020-12-16 +1233,11798.300000000001,4.0,19.90476190476192,281.4617770976844,2020-12-16 +1235,11817.800000000001,4.0,20.42857142857144,270.07373571939917,2020-12-16 +1218,11652.300000000001,4.0,19.47619047619049,284.6606094032926,2020-12-16 +1254,11999.5,4.0,19.66666666666668,271.31984147321435,2020-12-16 +1256,12018.800000000001,4.0,19.809523809523824,279.68425649269557,2020-12-16 +1276,12208.0,4.0,19.761904761904773,257.3074032941828,2020-12-16 +1277,12216.6,4.0,19.47619047619049,259.67209670517127,2020-12-16 +1278,12226.800000000001,4.0,19.190476190476204,262.73574229333525,2020-12-16 +1279,12236.900000000001,4.0,18.238095238095248,260.8796579460728,2020-12-16 +1280,12246.0,4.0,17.47619047619049,249.0998771530676,2020-12-16 +1281,12255.6,4.0,17.761904761904773,230.05550014687967,2020-12-16 +1282,12264.800000000001,4.0,18.428571428571438,207.7277893337889,2020-12-16 +1283,12272.900000000001,4.0,18.80952380952382,188.54703722157836,2020-12-16 +1284,12280.7,4.0,19.000000000000014,178.292798875318,2020-12-16 +1285,12289.800000000001,4.0,18.571428571428584,174.11226126915338,2020-12-16 +1286,12298.1,4.0,17.952380952380963,171.037405111846,2020-12-16 +1287,12307.1,4.0,17.952380952380963,168.31145896568117,2020-12-16 +1288,12315.6,4.0,18.023809523809547,165.15877532976728,2020-12-16 +1289,12315.6,4.0,18.000000000000036,160.5723484901785,2020-12-16 +657,6296.6,4.0,19.142857142857157,352.7815970562118,2020-12-16 +1275,12199.0,4.0,19.857142857142872,255.27797425198864,2020-12-16 +1255,12009.6,4.0,19.761904761904773,274.57133873178157,2020-12-16 +1274,12188.900000000001,4.0,19.571428571428584,254.2701771073959,2020-12-16 +1272,12171.2,4.0,19.66666666666668,259.7754649438014,2020-12-16 +1257,12028.5,4.0,19.71428571428573,288.4713911775399,2020-12-16 +1258,12038.2,4.0,19.809523809523824,297.2691132253332,2020-12-16 +1259,12047.900000000001,4.0,19.571428571428584,302.82487179863176,2020-12-16 +1260,12057.300000000001,4.0,19.85714285714287,305.30120690408944,2020-12-16 +1261,12067.1,4.0,20.23809523809525,307.2717148087391,2020-12-16 +1262,12076.6,4.0,20.2857142857143,307.86550532099176,2020-12-16 +1263,12086.5,4.0,20.000000000000014,308.41985621320345,2020-12-16 +1264,12096.5,4.0,19.809523809523824,306.6037615952531,2020-12-16 +1265,12106.0,4.0,19.619047619047635,300.2725571130041,2020-12-16 +1266,12115.7,4.0,19.761904761904777,293.84950951681327,2020-12-16 +1267,12125.5,4.0,20.23809523809525,289.3863202909129,2020-12-16 +1268,12135.400000000001,4.0,20.2857142857143,285.7349178951499,2020-12-16 +1269,12143.7,4.0,20.428571428571445,281.4077451083739,2020-12-16 +1270,12153.1,4.0,20.142857142857157,275.03698715162227,2020-12-16 +1271,12161.7,4.0,19.85714285714287,266.17906400110667,2020-12-16 +1273,12179.800000000001,4.0,19.571428571428584,255.89730782662133,2020-12-16 +976,9286.2,4.0,19.47619047619049,325.0752083573725,2020-12-16 +1217,11642.6,4.0,19.571428571428584,285.82568674929905,2020-12-16 +1215,11622.800000000001,4.0,19.09523809523811,292.4105793768556,2020-12-16 +1162,11086.7,4.0,18.714285714285726,292.6797347869013,2020-12-16 +1163,11096.6,4.0,18.85714285714287,300.3652178019878,2020-12-16 +1164,11106.800000000001,4.0,19.09523809523811,309.89987669006234,2020-12-16 +1165,11116.6,4.0,18.90476190476192,316.57631772427044,2020-12-16 +1166,11127.2,4.0,19.047619047619058,320.64883002365633,2020-12-16 +1167,11137.7,4.0,19.52380952380954,322.55118223936614,2020-12-16 +1168,11147.800000000001,4.0,19.47619047619049,323.3859607711582,2020-12-16 +1169,11157.800000000001,4.0,19.333333333333346,327.39806645443525,2020-12-16 +1170,11168.400000000001,4.0,19.09523809523811,331.53927052156865,2020-12-16 +1171,11179.0,4.0,18.761904761904773,329.01068032363446,2020-12-16 +1172,11189.2,4.0,18.761904761904773,322.58715803942437,2020-12-16 +1173,11199.6,4.0,19.09523809523811,314.24371111286047,2020-12-16 +1174,11209.900000000001,4.0,19.000000000000014,307.2754103413862,2020-12-16 +1175,11219.900000000001,4.0,19.000000000000014,305.6993008173654,2020-12-16 +1176,11230.6,4.0,19.000000000000014,308.80040803304405,2020-12-16 +1161,11076.900000000001,4.0,18.571428571428584,290.10931574198776,2020-12-16 +1177,11240.5,4.0,18.90476190476192,311.51196879824795,2020-12-16 +1160,11066.800000000001,4.0,18.85714285714287,289.11000349475296,2020-12-16 +1158,11046.1,4.0,19.42857142857144,291.226008859636,2020-12-16 +1142,10881.2,4.0,18.47619047619049,301.67042187704385,2020-12-16 +1143,10891.300000000001,4.0,18.333333333333343,315.3916115522771,2020-12-16 +1144,10902.400000000001,4.0,18.23809523809525,326.9458991915934,2020-12-16 +1145,10912.800000000001,4.0,18.2857142857143,330.3213942814093,2020-12-16 +1146,10923.6,4.0,18.142857142857153,323.65466478452083,2020-12-16 +1147,10934.0,4.0,17.90476190476192,312.7969991851499,2020-12-16 +1148,10944.5,4.0,18.000000000000014,306.13319126809864,2020-12-16 +1149,10955.5,4.0,18.000000000000014,304.07318025492134,2020-12-16 +1150,10965.7,4.0,17.80952380952382,300.9354221552886,2020-12-16 +1151,10976.1,4.0,18.09523809523811,294.14823253155214,2020-12-16 +1153,10996.2,4.0,19.2857142857143,275.35687234564637,2020-12-16 +1154,11005.900000000001,4.0,19.571428571428584,274.1053356693489,2020-12-16 +1155,11016.400000000001,4.0,19.428571428571445,279.71408354445475,2020-12-16 +1156,11026.2,4.0,19.190476190476204,285.86353562981407,2020-12-16 +1157,11036.2,4.0,19.190476190476204,290.35839133065133,2020-12-16 +1159,11056.900000000001,4.0,19.142857142857153,289.96073481385343,2020-12-16 +1216,11632.300000000001,4.0,19.47619047619049,288.6696999860478,2020-12-16 +1178,11250.7,4.0,19.047619047619058,312.9710106380046,2020-12-16 +1180,11271.400000000001,4.0,19.619047619047635,309.74607282364866,2020-12-16 +1200,11473.7,4.0,19.000000000000014,315.34638363384397,2020-12-16 +1201,11484.7,4.0,18.80952380952382,320.5547908140062,2020-12-16 +1202,11494.7,4.0,18.61904761904763,314.71406665833626,2020-12-16 +1203,11503.900000000001,4.0,18.85714285714287,296.66161466547345,2020-12-16 +1204,11514.1,4.0,19.09523809523811,275.9455187460474,2020-12-16 +1205,11523.5,4.0,19.000000000000014,263.96801749601207,2020-12-16 +1206,11533.400000000001,4.0,18.90476190476192,266.07671854864157,2020-12-16 +1207,11544.0,4.0,19.142857142857157,277.9370907186068,2020-12-16 +1208,11553.900000000001,4.0,19.190476190476204,289.37570779801695,2020-12-16 +1209,11563.900000000001,4.0,19.380952380952394,293.5767283098462,2020-12-16 +1210,11573.6,4.0,19.71428571428573,292.72554479110454,2020-12-16 +1211,11583.400000000001,4.0,19.761904761904773,290.3308521807307,2020-12-16 +1212,11593.0,4.0,19.523809523809536,290.0170847132138,2020-12-16 +1213,11602.800000000001,4.0,19.333333333333346,293.0848017080077,2020-12-16 +1214,11613.1,4.0,19.190476190476204,294.51300265449686,2020-12-16 +1199,11462.900000000001,4.0,19.190476190476204,306.80723545969533,2020-12-16 +1179,11261.1,4.0,19.428571428571445,312.15491781071023,2020-12-16 +1198,11453.1,4.0,19.380952380952394,302.05560152207465,2020-12-16 +1196,11432.900000000001,4.0,18.90476190476192,301.44828329061545,2020-12-16 +1181,11281.300000000001,4.0,19.619047619047635,308.5138328006791,2020-12-16 +1182,11291.300000000001,4.0,19.428571428571445,309.101345925325,2020-12-16 +1183,11301.900000000001,4.0,19.047619047619058,308.73189672599915,2020-12-16 +1184,11312.0,4.0,18.90476190476192,306.76901679679753,2020-12-16 +1185,11322.400000000001,4.0,19.000000000000014,302.69690852774363,2020-12-16 +1186,11332.2,4.0,19.000000000000014,297.435702992471,2020-12-16 +1187,11342.7,4.0,19.000000000000014,291.73868136465455,2020-12-16 +1188,11352.6,4.0,18.90476190476192,286.72399866064535,2020-12-16 +1189,11362.800000000001,4.0,19.142857142857157,282.81138470315375,2020-12-16 +1190,11372.800000000001,4.0,19.2857142857143,281.0602368117894,2020-12-16 +1191,11382.5,4.0,19.333333333333346,282.1728407818497,2020-12-16 +1192,11392.400000000001,4.0,19.2857142857143,287.08137348693083,2020-12-16 +1193,11402.800000000001,4.0,19.142857142857157,291.6933187809026,2020-12-16 +1194,11412.800000000001,4.0,18.90476190476192,296.3321842372598,2020-12-16 +1195,11423.2,4.0,19.000000000000014,300.18292124594797,2020-12-16 +1197,11442.900000000001,4.0,19.142857142857157,300.77894875588186,2020-12-16 +975,9275.5,4.0,19.047619047619058,326.2138278110157,2020-12-16 +1152,10986.6,4.0,18.761904761904773,284.14485321065,2020-12-16 +973,9254.4,4.0,18.66666666666668,338.9822213458847,2020-12-16 +754,7234.200000000001,4.0,20.09523809523811,261.14374333696753,2020-12-16 +755,7243.200000000001,4.0,20.380952380952394,254.0217542589211,2020-12-16 +756,7252.200000000001,4.0,21.04761904761906,250.63002124280612,2020-12-16 +757,7261.1,4.0,21.14285714285716,253.34469430333638,2020-12-16 +758,7270.3,4.0,21.09523809523811,261.9471594144698,2020-12-16 +759,7279.700000000001,4.0,20.809523809523824,271.17558975884344,2020-12-16 +760,7289.200000000001,4.0,20.71428571428573,276.8648639056896,2020-12-16 +761,7298.3,4.0,20.71428571428573,275.3069845457088,2020-12-16 +762,7307.0,4.0,20.71428571428573,259.8070287959167,2020-12-16 +763,7316.3,4.0,20.71428571428573,234.20193878556282,2020-12-16 +764,7323.6,4.0,21.238095238095255,208.3672677719581,2020-12-16 +765,7330.900000000001,4.0,21.428571428571445,194.85259547833033,2020-12-16 +766,7340.200000000001,4.0,21.2857142857143,207.50136619347762,2020-12-16 +767,7350.0,4.0,20.809523809523824,242.40956728016369,2020-12-16 +768,7359.700000000001,4.0,20.42857142857144,276.80444511121067,2020-12-16 +753,7224.700000000001,4.0,20.190476190476204,268.3508011720962,2020-12-16 +769,7369.200000000001,4.0,20.47619047619049,297.1401274273096,2020-12-16 +752,7215.6,4.0,20.333333333333346,272.68456910763547,2020-12-16 +750,7196.8,4.0,20.142857142857157,276.32235746206993,2020-12-16 +735,7060.3,4.0,20.61904761904763,258.0201850254521,2020-12-16 +736,7069.200000000001,4.0,20.61904761904763,260.5620215003968,2020-12-16 +737,7078.200000000001,4.0,20.42857142857144,265.32031557550124,2020-12-16 +738,7087.6,4.0,20.04761904761906,268.4072069291905,2020-12-16 +739,7096.6,4.0,19.809523809523824,269.89876018838333,2020-12-16 +740,7106.1,4.0,20.142857142857157,269.94669763571704,2020-12-16 +741,7115.700000000001,4.0,20.2857142857143,267.970192216638,2020-12-16 +742,7124.5,4.0,20.23809523809525,263.3967835017375,2020-12-16 +743,7133.1,4.0,20.333333333333346,256.92607776970624,2020-12-16 +744,7142.3,4.0,20.571428571428584,248.22128245439933,2020-12-16 +745,7151.200000000001,4.0,20.523809523809536,240.96513552351348,2020-12-16 +746,7159.900000000001,4.0,20.61904761904763,239.95910674591929,2020-12-16 +747,7169.0,4.0,20.42857142857144,248.04564730115231,2020-12-16 +748,7177.8,4.0,20.04761904761906,259.88905700864103,2020-12-16 +749,7187.5,4.0,19.809523809523824,270.5169052344945,2020-12-16 +751,7206.200000000001,4.0,20.2857142857143,276.1323582820515,2020-12-16 +734,7051.200000000001,4.0,20.42857142857144,257.7814860353591,2020-12-16 +770,7379.0,4.0,20.952380952380967,298.08235959470096,2020-12-16 +772,7397.8,4.0,21.09523809523811,273.2594837768527,2020-12-16 +792,7583.0,4.0,21.52380952380954,290.4831914967925,2020-12-16 +793,7592.400000000001,4.0,21.428571428571445,290.5971300843063,2020-12-16 +794,7601.200000000001,4.0,21.04761904761906,294.2951319298232,2020-12-16 +795,7610.3,4.0,20.809523809523824,300.3500252357974,2020-12-16 +796,7620.1,4.0,21.04761904761906,303.92672171313245,2020-12-16 +797,7629.400000000001,4.0,21.33333333333335,300.2809378007572,2020-12-16 +798,7638.700000000001,4.0,21.666666666666682,291.21884661216865,2020-12-16 +799,7647.900000000001,4.0,21.952380952380967,284.5051581625511,2020-12-16 +800,7657.1,4.0,22.09523809523811,284.677875137927,2020-12-16 +801,7666.6,4.0,22.000000000000014,291.40042400768596,2020-12-16 +802,7675.700000000001,4.0,22.000000000000014,299.77796873384915,2020-12-16 +803,7685.200000000001,4.0,22.000000000000014,303.1483983980893,2020-12-16 +804,7694.6,4.0,22.000000000000014,300.92075648682714,2020-12-16 +805,7703.5,4.0,22.09523809523811,299.5626644428644,2020-12-16 +806,7712.5,4.0,21.952380952380967,301.7091151971283,2020-12-16 +791,7573.6,4.0,21.666666666666682,291.93649287394635,2020-12-16 +771,7388.5,4.0,21.09523809523811,285.5112867840555,2020-12-16 +790,7564.5,4.0,21.857142857142872,288.9635241456962,2020-12-16 +788,7546.1,4.0,21.52380952380954,277.2358263013721,2020-12-16 +773,7407.1,4.0,20.85714285714287,267.7650468293908,2020-12-16 +774,7417.0,4.0,20.619047619047635,266.44425900084497,2020-12-16 +775,7426.3,4.0,20.809523809523824,267.10099065950004,2020-12-16 +776,7435.900000000001,4.0,21.000000000000014,266.63705333893586,2020-12-16 +777,7444.900000000001,4.0,21.190476190476204,266.93529027504616,2020-12-16 +778,7454.1,4.0,21.380952380952397,272.44415115488437,2020-12-16 +779,7463.5,4.0,21.04761904761906,280.7896901833401,2020-12-16 +780,7473.0,4.0,20.85714285714287,288.735897953036,2020-12-16 +781,7482.5,4.0,21.476190476190492,294.8591913382047,2020-12-16 +782,7491.400000000001,4.0,22.04761904761906,297.2317224151615,2020-12-16 +783,7499.6,4.0,22.23809523809525,297.9443327706108,2020-12-16 +784,7509.400000000001,4.0,22.04761904761906,299.4699480322695,2020-12-16 +785,7518.900000000001,4.0,21.380952380952394,296.09134686241043,2020-12-16 +786,7527.400000000001,4.0,21.000000000000014,287.1015006077974,2020-12-16 +787,7536.700000000001,4.0,21.33333333333335,279.534353462936,2020-12-16 +789,7555.0,4.0,21.666666666666682,281.5428519682228,2020-12-16 +807,7722.0,4.0,21.571428571428587,305.5166646498446,2020-12-16 +733,7041.8,4.0,20.04761904761906,257.96523192266216,2020-12-16 +731,7023.1,4.0,20.000000000000014,257.062176585975,2020-12-16 +677,6501.5,4.0,19.000000000000014,279.9077433743171,2020-12-16 +678,6511.900000000001,4.0,19.000000000000014,282.98996903880766,2020-12-16 +679,6521.5,4.0,19.000000000000014,290.29189901410246,2020-12-16 +680,6531.3,4.0,19.000000000000014,301.0028853854681,2020-12-16 +681,6541.400000000001,4.0,19.000000000000014,314.7219107887068,2020-12-16 +682,6551.3,4.0,19.000000000000014,327.31563144773247,2020-12-16 +683,6561.3,4.0,19.000000000000014,333.8387091853288,2020-12-16 +684,6571.700000000001,4.0,19.000000000000014,333.37716249359164,2020-12-16 +685,6581.6,4.0,19.000000000000014,328.4015038234122,2020-12-16 +686,6591.900000000001,4.0,19.000000000000014,321.9928031588454,2020-12-16 +687,6602.200000000001,4.0,19.000000000000014,316.37847409876747,2020-12-16 +688,6612.400000000001,4.0,19.000000000000014,310.7774765317897,2020-12-16 +689,6622.200000000001,4.0,19.000000000000014,304.9747247977588,2020-12-16 +690,6632.5,4.0,19.000000000000014,300.60704068738767,2020-12-16 +691,6642.5,4.0,19.000000000000014,298.78890688832416,2020-12-16 +676,6491.700000000001,4.0,19.000000000000014,280.292738099245,2020-12-16 +692,6652.3,4.0,19.000000000000014,298.15760087198885,2020-12-16 +675,6481.400000000001,4.0,18.90476190476192,285.85996161865575,2020-12-16 +673,6461.900000000001,4.0,19.2857142857143,309.3045206311572,2020-12-16 +659,6317.8,4.0,19.142857142857157,348.84622077788015,2020-12-16 +974,9265.2,4.0,18.85714285714287,331.0152272488265,2020-12-16 +660,6327.900000000001,4.0,19.2857142857143,337.25143802973895,2020-12-16 +661,6337.900000000001,4.0,19.333333333333346,327.44667408074815,2020-12-16 +662,6348.1,4.0,19.190476190476204,326.50469235263427,2020-12-16 +663,6358.700000000001,4.0,19.190476190476204,328.2068126201108,2020-12-16 +664,6369.0,4.0,19.23809523809525,328.69632302493096,2020-12-16 +665,6379.3,4.0,19.761904761904773,326.6945643131677,2020-12-16 +666,6389.5,4.0,19.90476190476192,324.56534890658935,2020-12-16 +667,6399.8,4.0,19.761904761904773,326.0942074440359,2020-12-16 +668,6410.0,4.0,19.333333333333346,332.0167236630401,2020-12-16 +669,6420.400000000001,4.0,18.952380952380963,336.21282961416443,2020-12-16 +670,6431.1,4.0,19.047619047619058,336.1972026750444,2020-12-16 +671,6441.3,4.0,19.2857142857143,331.1060693253862,2020-12-16 +672,6451.400000000001,4.0,19.333333333333346,321.04701596547415,2020-12-16 +674,6471.8,4.0,19.142857142857157,296.68774373275346,2020-12-16 +732,7032.1,4.0,19.90476190476192,258.14045408710786,2020-12-16 +693,6662.700000000001,4.0,19.000000000000014,297.15644687564554,2020-12-16 +695,6682.1,4.0,19.000000000000014,290.64130271634787,2020-12-16 +715,6874.3,4.0,20.000000000000014,282.83211874491064,2020-12-16 +716,6883.700000000001,4.0,20.000000000000014,286.0529559267272,2020-12-16 +717,6893.3,4.0,19.90476190476192,288.7733593711698,2020-12-16 +718,6902.6,4.0,20.04761904761906,290.7775398453451,2020-12-16 +719,6911.900000000001,4.0,20.333333333333346,292.39938899043455,2020-12-16 +720,6920.8,4.0,20.761904761904773,292.97103549191877,2020-12-16 +721,6930.6,4.0,20.90476190476192,293.8366783018629,2020-12-16 +722,6940.3,4.0,20.761904761904773,290.9022582899647,2020-12-16 +723,6949.5,4.0,20.23809523809525,282.728117610162,2020-12-16 +724,6958.900000000001,4.0,20.190476190476204,269.80033792184645,2020-12-16 +725,6968.3,4.0,20.190476190476204,255.64900620956365,2020-12-16 +726,6977.1,4.0,20.333333333333346,243.7065068776434,2020-12-16 +727,6986.0,4.0,20.2857142857143,239.24970303621743,2020-12-16 +729,7004.3,4.0,19.90476190476192,246.0487033420171,2020-12-16 +730,7013.700000000001,4.0,20.000000000000014,252.3098390636068,2020-12-16 +714,6864.700000000001,4.0,20.000000000000014,280.4669407803074,2020-12-16 +694,6672.400000000001,4.0,19.000000000000014,294.1947739987663,2020-12-16 +713,6855.0,4.0,20.000000000000014,280.904538327175,2020-12-16 +711,6836.200000000001,4.0,20.000000000000014,289.1641866041764,2020-12-16 +696,6692.1,4.0,19.000000000000014,287.9167566354351,2020-12-16 +697,6701.8,4.0,18.90476190476192,285.38374372799706,2020-12-16 +698,6712.0,4.0,19.047619047619058,282.8122805012519,2020-12-16 +699,6721.6,4.0,19.428571428571445,279.2516139360983,2020-12-16 +700,6731.1,4.0,19.523809523809536,273.4428026919124,2020-12-16 +701,6740.700000000001,4.0,19.66666666666668,269.3715451966551,2020-12-16 +702,6750.8,4.0,19.761904761904773,268.45807404130693,2020-12-16 +703,6759.700000000001,4.0,19.619047619047635,269.31213955941,2020-12-16 +704,6769.400000000001,4.0,20.000000000000014,273.5354445991514,2020-12-16 +705,6779.3,4.0,20.380952380952394,279.6551289582615,2020-12-16 +706,6788.400000000001,4.0,20.333333333333346,285.3696612907727,2020-12-16 +707,6797.8,4.0,20.2857142857143,291.90074021966325,2020-12-16 +708,6807.700000000001,4.0,20.142857142857157,296.71596978272595,2020-12-16 +709,6816.900000000001,4.0,19.90476190476192,297.3788490274492,2020-12-16 +710,6826.5,4.0,20.000000000000014,294.52397608167564,2020-12-16 +712,6845.8,4.0,20.000000000000014,283.7585160626729,2020-12-16 +808,7731.3,4.0,21.476190476190492,307.41954003160805,2020-12-16 +728,6995.200000000001,4.0,20.142857142857157,240.77681827037247,2020-12-16 +810,7750.200000000001,4.0,21.190476190476204,294.96327256835946,2020-12-16 +920,8699.800000000001,4.0,20.000000000000014,355.7164726189928,2020-12-16 +921,8710.1,4.0,20.000000000000014,345.9311909020995,2020-12-16 +922,8719.7,4.0,20.000000000000014,337.50019386094755,2020-12-16 +923,8730.0,4.0,20.000000000000014,333.21033364815924,2020-12-16 +924,8740.300000000001,4.0,20.09523809523811,334.1388500329932,2020-12-16 +925,8750.2,4.0,19.857142857142872,338.0299635504375,2020-12-16 +926,8760.6,4.0,19.71428571428573,343.7634234838183,2020-12-16 +927,8771.0,4.0,19.66666666666668,347.06639955220567,2020-12-16 +928,8781.1,4.0,19.619047619047635,344.9832588516093,2020-12-16 +929,8791.300000000001,4.0,20.000000000000014,342.9129255957239,2020-12-16 +930,8801.800000000001,4.0,20.380952380952394,343.1986973270758,2020-12-16 +931,8811.6,4.0,20.333333333333346,345.3574351423341,2020-12-16 +932,8822.2,4.0,20.2857142857143,350.20500956895023,2020-12-16 +933,8832.9,4.0,20.142857142857157,353.09342418835377,2020-12-16 +934,8842.5,4.0,19.90476190476192,351.10449381684776,2020-12-16 +919,8689.800000000001,4.0,20.000000000000014,366.72942762436367,2020-12-16 +935,8852.7,4.0,20.000000000000014,346.9984259681605,2020-12-16 +918,8679.4,4.0,19.90476190476192,378.3410725839351,2020-12-16 +916,8658.4,4.0,20.190476190476204,389.3708994762,2020-12-16 +887,8481.2,4.0,20.142857142857157,283.50214829356753,2020-12-16 +888,8491.2,4.0,20.2857142857143,284.41725782715434,2020-12-16 +889,8500.6,4.0,20.333333333333346,286.4598485296496,2020-12-16 +890,8510.6,4.0,20.2857142857143,290.932743782215,2020-12-16 +891,8519.800000000001,4.0,20.142857142857157,290.65814799556426,2020-12-16 +892,8529.800000000001,4.0,19.90476190476192,302.3309483484976,2020-12-16 +893,8539.6,4.0,20.000000000000014,324.9081539616544,2020-12-16 +894,8539.6,4.0,19.809523809523824,321.34803305738143,2020-12-16 +895,8539.6,4.0,20.380952380952394,266.4598062285899,2020-12-16 +896,8539.6,4.0,19.952380952380967,177.87167608405528,2020-12-16 +911,8608.7,4.0,21.857142857142875,135.4571343690023,2020-12-16 +912,8617.9,4.0,20.571428571428584,223.47990565352308,2020-12-16 +913,8627.800000000001,4.0,21.000000000000014,306.6295754099195,2020-12-16 +914,8637.800000000001,4.0,20.619047619047635,365.47162783511703,2020-12-16 +915,8647.800000000001,4.0,20.380952380952394,386.51801202206093,2020-12-16 +917,8669.0,4.0,20.142857142857157,385.8896210163049,2020-12-16 +886,8471.800000000001,4.0,19.90476190476192,284.1029789191785,2020-12-16 +937,8873.6,4.0,20.000000000000014,339.5046404765902,2020-12-16 +939,8894.4,4.0,20.000000000000014,339.27038081372336,2020-12-16 +959,9105.7,4.0,18.85714285714287,321.40605869973,2020-12-16 +960,9115.9,4.0,18.714285714285726,324.1017770576695,2020-12-16 +961,9126.7,4.0,18.761904761904773,332.71555595617946,2020-12-16 +962,9137.0,4.0,18.571428571428584,342.78106894533147,2020-12-16 +963,9147.7,4.0,18.571428571428584,351.6715699615426,2020-12-16 +964,9158.7,4.0,18.66666666666668,355.70591600544185,2020-12-16 +965,9170.0,4.0,18.85714285714287,351.7753374071808,2020-12-16 +966,9180.7,4.0,19.142857142857153,347.0160542944784,2020-12-16 +967,9190.300000000001,4.0,19.523809523809536,344.26726661400176,2020-12-16 +968,9201.1,4.0,19.142857142857153,345.16463151396306,2020-12-16 +969,9211.7,4.0,18.85714285714287,348.93457901222257,2020-12-16 +970,9222.5,4.0,18.66666666666668,352.26056561226363,2020-12-16 +809,7740.900000000001,4.0,21.428571428571445,302.94226799430527,2020-12-16 +971,9233.0,4.0,18.571428571428584,350.7029736394411,2020-12-16 +972,9243.7,4.0,18.571428571428584,345.9650381297883,2020-12-16 +958,9094.9,4.0,19.09523809523811,325.93483366847573,2020-12-16 +938,8883.9,4.0,20.000000000000014,338.8347779979104,2020-12-16 +957,9084.7,4.0,19.000000000000014,332.78510112512254,2020-12-16 +955,9062.7,4.0,19.09523809523811,348.82913521540524,2020-12-16 +940,8904.7,4.0,20.000000000000014,340.3675899903164,2020-12-16 +941,8915.300000000001,4.0,20.000000000000014,342.9378712376954,2020-12-16 +942,8925.6,4.0,20.000000000000014,346.6545528077743,2020-12-16 +943,8936.1,4.0,20.000000000000014,350.85667717558397,2020-12-16 +944,8946.1,4.0,20.000000000000014,355.10733074281177,2020-12-16 +945,8956.5,4.0,20.000000000000014,357.1668070465074,2020-12-16 +946,8967.1,4.0,20.000000000000014,358.40164647207774,2020-12-16 +947,8977.800000000001,4.0,20.09523809523811,359.30352360884837,2020-12-16 +948,8987.6,4.0,19.952380952380967,361.1160774225524,2020-12-16 +949,8998.2,4.0,19.761904761904773,364.5842622044722,2020-12-16 +950,9009.300000000001,4.0,19.190476190476204,368.5882336332936,2020-12-16 +951,9019.5,4.0,18.761904761904773,368.8956243113523,2020-12-16 +952,9030.4,4.0,18.571428571428584,366.6227283103241,2020-12-16 +953,9041.4,4.0,18.714285714285726,360.78607145369864,2020-12-16 +954,9051.800000000001,4.0,18.85714285714287,354.61797052238364,2020-12-16 +956,9073.800000000001,4.0,19.000000000000014,341.2675928014635,2020-12-16 +885,8461.9,4.0,20.000000000000014,285.83116749744886,2020-12-16 +936,8863.2,4.0,20.000000000000014,342.67774701708584,2020-12-16 +883,8442.800000000001,4.0,20.000000000000014,293.87609210829646,2020-12-16 +831,7946.3,4.0,20.90476190476192,276.547272622395,2020-12-16 +832,7955.400000000001,4.0,20.90476190476192,266.8572174734668,2020-12-16 +833,7964.6,4.0,21.142857142857157,259.9422290144222,2020-12-16 +834,7973.700000000001,4.0,21.380952380952397,256.8190483345049,2020-12-16 +835,7982.8,4.0,21.2857142857143,256.90835330476955,2020-12-16 +836,7991.3,4.0,20.952380952380967,258.5104406953244,2020-12-16 +837,8001.0,4.0,20.380952380952394,259.2409635049708,2020-12-16 +838,8010.200000000001,4.0,20.000000000000014,259.6360682557956,2020-12-16 +839,8019.6,4.0,20.23809523809525,259.8718238727609,2020-12-16 +840,8028.700000000001,4.0,20.66666666666668,258.042090476991,2020-12-16 +841,8037.8,4.0,20.952380952380967,257.3673022888069,2020-12-16 +842,8046.8,4.0,21.190476190476204,259.43927987297144,2020-12-16 +843,8056.3,4.0,20.85714285714287,263.7451727046738,2020-12-16 +844,8065.200000000001,4.0,20.71428571428573,270.2709914189702,2020-12-16 +845,8075.0,4.0,20.66666666666668,277.54691225802617,2020-12-16 +829,7927.6,4.0,21.380952380952397,288.8370897003716,2020-12-16 +846,8083.6,4.0,20.809523809523824,281.05428768272554,2020-12-16 +828,7917.900000000001,4.0,21.2857142857143,286.83750940975165,2020-12-16 +826,7899.6,4.0,20.380952380952394,277.6457715687172,2020-12-16 +812,7768.900000000001,4.0,20.47619047619049,288.1196349504143,2020-12-16 +813,7778.6,4.0,19.952380952380967,284.9700996422988,2020-12-16 +884,8452.9,4.0,20.000000000000014,289.03264136479726,2020-12-16 +814,7788.3,4.0,19.90476190476192,280.3447095828924,2020-12-16 +815,7797.8,4.0,20.000000000000014,273.0267588656906,2020-12-16 +816,7807.5,4.0,19.90476190476192,266.36166223759943,2020-12-16 +817,7817.0,4.0,20.04761904761906,264.5034848390292,2020-12-16 +818,7826.0,4.0,20.333333333333346,266.26453879643657,2020-12-16 +819,7835.200000000001,4.0,20.66666666666668,269.0029481463223,2020-12-16 +820,7844.6,4.0,20.952380952380967,272.8542621233977,2020-12-16 +821,7853.700000000001,4.0,21.190476190476204,274.9727906937907,2020-12-16 +822,7863.3,4.0,20.952380952380967,274.83929013421704,2020-12-16 +823,7871.900000000001,4.0,20.66666666666668,274.28919400181155,2020-12-16 +824,7881.200000000001,4.0,20.23809523809525,273.9005063841628,2020-12-16 +825,7890.900000000001,4.0,20.000000000000014,274.28786646536247,2020-12-16 +827,7908.8,4.0,20.952380952380967,282.3750450790985,2020-12-16 +811,7759.6,4.0,20.952380952380967,290.34094810447755,2020-12-16 +830,7937.0,4.0,21.142857142857157,285.3602174085713,2020-12-16 +848,8102.700000000001,4.0,20.761904761904773,281.11412439141225,2020-12-16 +868,8295.800000000001,4.0,20.61904761904763,313.81972796602406,2020-12-16 +869,8305.9,4.0,20.61904761904763,315.1285626559652,2020-12-16 +870,8315.4,4.0,20.42857142857144,317.1555289121603,2020-12-16 +871,8324.9,4.0,19.952380952380967,317.134561742879,2020-12-16 +872,8334.800000000001,4.0,20.04761904761906,315.5468521103844,2020-12-16 +874,8353.6,4.0,20.333333333333346,312.3002177036782,2020-12-16 +875,8363.6,4.0,20.2857142857143,314.3553950817592,2020-12-16 +876,8373.4,4.0,20.142857142857157,316.5002130099475,2020-12-16 +877,8383.300000000001,4.0,19.90476190476192,317.1928554841903,2020-12-16 +878,8393.2,4.0,20.000000000000014,316.40410895644817,2020-12-16 +879,8403.4,4.0,20.000000000000014,314.1803315909327,2020-12-16 +847,8093.1,4.0,20.809523809523824,282.45063295073624,2020-12-16 +880,8413.300000000001,4.0,20.000000000000014,310.70743530141647,2020-12-16 +881,8423.300000000001,4.0,20.000000000000014,306.2354047057445,2020-12-16 +882,8432.9,4.0,20.000000000000014,300.31349608214754,2020-12-16 +867,8286.300000000001,4.0,20.42857142857144,315.3544250744823,2020-12-16 +866,8276.2,4.0,20.04761904761906,318.04880108423845,2020-12-16 +873,8344.2,4.0,20.2857142857143,313.5528503163905,2020-12-16 +852,8140.5,4.0,20.000000000000014,271.73824730293586,2020-12-16 +851,8130.6,4.0,19.90476190476192,272.614473697294,2020-12-16 +865,8266.7,4.0,19.90476190476192,320.44169462635523,2020-12-16 +849,8111.6,4.0,20.333333333333346,277.4581332077957,2020-12-16 +853,8150.3,4.0,20.000000000000014,273.2442940301471,2020-12-16 +854,8159.700000000001,4.0,20.000000000000014,276.2997457078775,2020-12-16 +855,8169.5,4.0,19.90476190476192,280.25453978805183,2020-12-16 +857,8189.200000000001,4.0,20.333333333333346,290.62801926706925,2020-12-16 +858,8198.6,4.0,20.66666666666668,292.57437663774937,2020-12-16 +856,8179.1,4.0,20.04761904761906,285.739217106258,2020-12-16 +859,8208.7,4.0,21.04761904761906,294.26526914046036,2020-12-16 +860,8218.1,4.0,21.04761904761906,296.78773712097575,2020-12-16 +861,8227.6,4.0,20.66666666666668,301.66723186031356,2020-12-16 +862,8237.1,4.0,20.333333333333346,309.28477085216537,2020-12-16 +863,8247.2,4.0,20.04761904761906,316.1815163779445,2020-12-16 +864,8256.9,4.0,19.90476190476192,320.09225127013804,2020-12-16 +850,8121.200000000001,4.0,20.04761904761906,273.94034304906165,2020-12-16 +725,7077.1,4.0,19.52380952380954,488.2857142857146,2020-12-28 +719,7018.6,4.0,19.21428571428573,489.52380952380986,2020-12-28 +723,7058.0,4.0,19.59523809523811,484.714285714286,2020-12-28 +722,7048.0,4.0,19.333333333333346,476.33333333333366,2020-12-28 +721,7038.1,4.0,19.21428571428573,476.0000000000003,2020-12-28 +720,7028.4,4.0,19.190476190476204,473.714285714286,2020-12-28 +724,7067.4,4.0,19.571428571428584,486.52380952380986,2020-12-28 +710,6930.8,4.0,19.238095238095248,458.1904761904765,2020-12-28 +717,6998.7,4.0,19.500000000000014,518.9047619047622,2020-12-28 +716,6988.7,4.0,19.619047619047635,516.4285714285718,2020-12-28 +715,6978.9,4.0,19.90476190476192,509.8095238095242,2020-12-28 +714,6968.7,4.0,19.92857142857144,488.9523809523813,2020-12-28 +713,6959.9,4.0,19.690476190476204,463.9047619047622,2020-12-28 +712,6950.3,4.0,19.571428571428584,448.66666666666697,2020-12-28 +711,6940.6,4.0,19.40476190476192,449.42857142857173,2020-12-28 +726,7087.1,4.0,19.190476190476204,495.4761904761908,2020-12-28 +718,7008.9,4.0,19.333333333333346,509.0476190476194,2020-12-28 +727,7097.0,4.0,19.047619047619058,494.2857142857147,2020-12-28 +742,7247.5,4.0,19.35714285714287,481.2380952380955,2020-12-28 +729,7117.0,4.0,19.21428571428573,473.14285714285745,2020-12-28 +709,6920.6,4.0,19.333333333333346,470.9523809523813,2020-12-28 +744,7267.8,4.0,19.142857142857157,472.33333333333366,2020-12-28 +745,7277.9,4.0,19.023809523809536,471.0476190476194,2020-12-28 +743,7257.9,4.0,19.071428571428584,472.28571428571456,2020-12-28 +741,7237.3,4.0,19.7857142857143,477.33333333333366,2020-12-28 +740,7227.4,4.0,19.761904761904773,467.714285714286,2020-12-28 +739,7217.8,4.0,19.452380952380963,468.57142857142884,2020-12-28 +728,7107.2,4.0,19.09523809523811,485.5238095238098,2020-12-28 +738,7207.8,4.0,19.23809523809525,466.8571428571432,2020-12-28 +736,7187.1,4.0,19.190476190476204,477.90476190476227,2020-12-28 +735,7177.2,4.0,19.333333333333346,465.9047619047622,2020-12-28 +734,7167.5,4.0,19.000000000000014,461.8571428571432,2020-12-28 +733,7157.1,4.0,18.714285714285726,463.42857142857173,2020-12-28 +732,7146.9,4.0,18.59523809523811,462.0476190476194,2020-12-28 +731,7136.9,4.0,18.85714285714287,461.2380952380956,2020-12-28 +730,7126.9,4.0,19.11904761904763,466.2380952380955,2020-12-28 +737,7197.3,4.0,19.11904761904763,470.0952380952384,2020-12-28 +708,6911.0,4.0,19.35714285714287,481.0476190476194,2020-12-28 +673,6566.7,4.0,20.04761904761906,474.0476190476194,2020-12-28 +706,6891.0,4.0,19.11904761904763,484.52380952380986,2020-12-28 +684,6673.7,4.0,20.380952380952394,459.14285714285745,2020-12-28 +683,6664.0,4.0,20.40476190476192,446.47619047619077,2020-12-28 +682,6654.9,4.0,20.452380952380967,444.4285714285718,2020-12-28 +681,6644.9,4.0,20.261904761904773,452.4761904761908,2020-12-28 +680,6634.8,4.0,20.21428571428573,467.0952380952384,2020-12-28 +679,6625.3,4.0,20.35714285714287,484.2380952380955,2020-12-28 +678,6615.4,4.0,20.309523809523824,486.3809523809527,2020-12-28 +677,6605.7,4.0,20.119047619047635,487.714285714286,2020-12-28 +676,6596.4,4.0,20.04761904761906,481.14285714285745,2020-12-28 +675,6586.2,4.0,19.880952380952394,475.80952380952414,2020-12-28 +674,6576.5,4.0,19.880952380952394,469.52380952380986,2020-12-28 +672,6557.4,4.0,20.000000000000014,470.0952380952384,2020-12-28 +671,6547.7,4.0,20.04761904761906,477.2380952380955,2020-12-28 +670,6538.1,4.0,19.92857142857144,480.42857142857173,2020-12-28 +668,6518.4,4.0,19.833333333333346,491.14285714285745,2020-12-28 +746,7287.5,4.0,19.023809523809536,464.1904761904765,2020-12-28 +669,6528.3,4.0,19.85714285714287,486.42857142857173,2020-12-28 +685,6682.9,4.0,20.21428571428573,478.1904761904765,2020-12-28 +707,6900.8,4.0,19.142857142857153,481.0952380952384,2020-12-28 +686,6692.8,4.0,20.000000000000014,478.3333333333336,2020-12-28 +688,6712.6,4.0,19.73809523809525,443.4285714285717,2020-12-28 +705,6880.8,4.0,19.2857142857143,490.28571428571456,2020-12-28 +704,6871.0,4.0,19.261904761904773,491.71428571428606,2020-12-28 +703,6860.7,4.0,19.261904761904773,496.0476190476194,2020-12-28 +702,6850.9,4.0,19.190476190476204,500.85714285714323,2020-12-28 +701,6840.9,4.0,19.261904761904773,506.71428571428606,2020-12-28 +700,6830.6,4.0,19.42857142857144,499.2380952380956,2020-12-28 +699,6820.7,4.0,19.59523809523811,487.4761904761908,2020-12-28 +698,6811.3,4.0,19.71428571428573,484.52380952380986,2020-12-28 +697,6801.3,4.0,19.73809523809525,489.61904761904793,2020-12-28 +696,6790.9,4.0,19.833333333333346,499.85714285714323,2020-12-28 +695,6781.0,4.0,19.90476190476192,509.3809523809527,2020-12-28 +694,6770.9,4.0,19.952380952380963,511.90476190476227,2020-12-28 +693,6761.3,4.0,19.761904761904777,495.00000000000034,2020-12-28 +692,6751.7,4.0,19.761904761904773,468.28571428571456,2020-12-28 +691,6742.6,4.0,19.738095238095255,438.57142857142884,2020-12-28 +690,6732.3,4.0,19.690476190476204,418.76190476190504,2020-12-28 +689,6722.3,4.0,19.619047619047635,417.3333333333336,2020-12-28 +687,6702.9,4.0,19.738095238095248,465.4761904761908,2020-12-28 +747,7297.2,4.0,18.97619047619049,461.5238095238098,2020-12-28 +820,8037.3,4.0,18.261904761904773,480.9523809523813,2020-12-28 +749,7317.1,4.0,18.833333333333346,462.0476190476194,2020-12-28 +807,7906.1,4.0,17.66666666666668,441.714285714286,2020-12-28 +806,7895.8,4.0,17.7857142857143,456.9047619047622,2020-12-28 +805,7885.3,4.0,17.714285714285726,476.42857142857173,2020-12-28 +804,7874.7,4.0,17.833333333333343,488.4285714285718,2020-12-28 +803,7864.6,4.0,17.92857142857144,482.42857142857173,2020-12-28 +802,7853.5,4.0,17.785714285714295,468.66666666666697,2020-12-28 +801,7842.8,4.0,17.833333333333343,474.14285714285745,2020-12-28 +808,7916.3,4.0,17.61904761904763,433.4285714285717,2020-12-28 +800,7832.8,4.0,17.85714285714287,483.5714285714289,2020-12-28 +798,7812.2,4.0,17.595238095238106,485.7619047619051,2020-12-28 +797,7801.5,4.0,17.61904761904763,477.8571428571432,2020-12-28 +796,7790.9,4.0,17.380952380952394,468.66666666666697,2020-12-28 +795,7780.2,4.0,17.404761904761916,462.2857142857146,2020-12-28 +794,7769.3,4.0,17.261904761904773,463.3333333333336,2020-12-28 +793,7758.9,4.0,17.214285714285722,449.76190476190504,2020-12-28 +792,7749.1,4.0,17.261904761904773,447.47619047619077,2020-12-28 +799,7822.8,4.0,17.690476190476204,490.90476190476227,2020-12-28 +809,7926.7,4.0,17.595238095238106,452.0476190476193,2020-12-28 +810,7937.2,4.0,17.547619047619058,473.7619047619051,2020-12-28 +811,7948.2,4.0,17.6904761904762,476.9047619047622,2020-12-28 +828,8117.6,4.0,17.452380952380963,463.8571428571432,2020-12-28 +667,6508.5,4.0,19.85714285714287,493.7619047619051,2020-12-28 +827,8107.2,4.0,17.59523809523811,464.2857142857146,2020-12-28 +826,8095.0,4.0,17.85714285714287,460.2380952380956,2020-12-28 +825,8084.6,4.0,17.928571428571438,461.5714285714289,2020-12-28 +824,8075.2,4.0,17.97619047619049,468.3809523809527,2020-12-28 +823,8065.6,4.0,17.952380952380963,479.8571428571432,2020-12-28 +822,8056.4,4.0,17.761904761904773,483.80952380952414,2020-12-28 +821,8047.4,4.0,17.952380952380963,486.1904761904765,2020-12-28 +819,8028.1,4.0,18.35714285714287,464.71428571428606,2020-12-28 +818,8018.9,4.0,18.190476190476204,458.66666666666697,2020-12-28 +817,8009.7,4.0,18.142857142857153,460.52380952380986,2020-12-28 +816,7999.5,4.0,17.952380952380963,462.3809523809527,2020-12-28 +815,7989.1,4.0,18.047619047619058,462.90476190476227,2020-12-28 +814,7978.9,4.0,18.261904761904773,473.8095238095242,2020-12-28 +813,7968.5,4.0,18.261904761904773,472.00000000000034,2020-12-28 +812,7958.4,4.0,17.92857142857144,478.1428571428575,2020-12-28 +791,7738.3,4.0,17.35714285714287,449.5238095238098,2020-12-28 +790,7727.8,4.0,17.50000000000001,457.4761904761908,2020-12-28 +789,7717.4,4.0,17.642857142857153,465.52380952380986,2020-12-28 +788,7706.9,4.0,17.690476190476204,462.90476190476215,2020-12-28 +766,7485.9,4.0,18.35714285714287,447.66666666666697,2020-12-28 +765,7475.7,4.0,18.452380952380963,441.61904761904793,2020-12-28 +764,7465.5,4.0,18.261904761904773,442.5238095238098,2020-12-28 +763,7455.5,4.0,18.261904761904773,453.4761904761908,2020-12-28 +762,7446.0,4.0,18.190476190476204,463.80952380952414,2020-12-28 +761,7435.8,4.0,18.261904761904773,466.8571428571432,2020-12-28 +760,7425.8,4.0,18.261904761904773,463.61904761904793,2020-12-28 +759,7415.4,4.0,18.30952380952382,464.5238095238098,2020-12-28 +758,7405.3,4.0,18.523809523809536,464.80952380952414,2020-12-28 +757,7395.6,4.0,18.85714285714287,458.1904761904765,2020-12-28 +756,7385.9,4.0,18.952380952380967,447.1428571428574,2020-12-28 +755,7376.8,4.0,19.142857142857153,446.9523809523812,2020-12-28 +754,7366.8,4.0,19.333333333333346,455.9047619047622,2020-12-28 +753,7356.7,4.0,19.261904761904773,467.2380952380956,2020-12-28 +752,7346.8,4.0,19.30952380952382,477.5238095238098,2020-12-28 +751,7336.7,4.0,19.214285714285726,482.3809523809527,2020-12-28 +750,7327.3,4.0,19.071428571428584,473.47619047619077,2020-12-28 +767,7495.8,4.0,18.452380952380963,464.61904761904793,2020-12-28 +748,7307.2,4.0,18.92857142857144,459.0952380952384,2020-12-28 +768,7505.5,4.0,18.261904761904773,467.28571428571456,2020-12-28 +770,7525.6,4.0,18.2857142857143,473.0476190476194,2020-12-28 +787,7696.7,4.0,17.80952380952382,454.28571428571456,2020-12-28 +786,7686.0,4.0,17.904761904761916,460.0000000000003,2020-12-28 +785,7676.4,4.0,17.92857142857144,468.66666666666697,2020-12-28 +784,7666.3,4.0,18.047619047619058,474.14285714285745,2020-12-28 +783,7656.1,4.0,17.952380952380963,484.66666666666697,2020-12-28 +782,7646.2,4.0,18.071428571428584,492.52380952380986,2020-12-28 +781,7635.9,4.0,18.142857142857153,487.90476190476227,2020-12-28 +780,7626.0,4.0,18.11904761904763,483.5714285714289,2020-12-28 +779,7616.0,4.0,18.214285714285726,481.2857142857146,2020-12-28 +778,7605.7,4.0,18.214285714285726,478.76190476190504,2020-12-28 +777,7595.5,4.0,18.023809523809536,485.33333333333366,2020-12-28 +776,7585.2,4.0,18.190476190476204,495.714285714286,2020-12-28 +775,7575.6,4.0,18.404761904761916,488.33333333333366,2020-12-28 +774,7565.1,4.0,18.66666666666668,480.90476190476227,2020-12-28 +773,7555.2,4.0,18.97619047619049,481.28571428571456,2020-12-28 +772,7545.6,4.0,18.85714285714287,479.95238095238125,2020-12-28 +771,7535.7,4.0,18.571428571428584,478.0952380952384,2020-12-28 +769,7515.4,4.0,18.16666666666668,466.5714285714289,2020-12-28 +666,6498.8,4.0,19.92857142857144,489.47619047619077,2020-12-28 +484,4932.9,4.0,18.500000000000014,478.14285714285745,2020-12-28 +664,6478.9,4.0,20.02380952380954,478.9523809523813,2020-12-28 +546,5398.1,4.0,20.2857142857143,482.5714285714289,2020-12-28 +545,5388.0,4.0,20.119047619047635,493.4285714285718,2020-12-28 +544,5377.7,4.0,20.142857142857157,488.4285714285718,2020-12-28 +543,5367.5,4.0,20.40476190476192,476.61904761904793,2020-12-28 +542,5357.9,4.0,20.261904761904773,476.5714285714289,2020-12-28 +541,5347.6,4.0,20.09523809523811,483.2857142857146,2020-12-28 +540,5337.9,4.0,20.380952380952394,496.4761904761908,2020-12-28 +547,5408.1,4.0,20.261904761904773,481.28571428571456,2020-12-28 +539,5327.6,4.0,20.261904761904773,515.4761904761908,2020-12-28 +537,5307.6,4.0,20.190476190476204,488.714285714286,2020-12-28 +536,5297.4,4.0,19.97619047619049,486.666666666667,2020-12-28 +535,5286.9,4.0,20.000000000000014,495.714285714286,2020-12-28 +534,5276.4,4.0,20.333333333333346,514.4285714285718,2020-12-28 +533,5266.4,4.0,20.500000000000014,528.2380952380956,2020-12-28 +532,5255.9,4.0,20.761904761904773,525.5238095238099,2020-12-28 +531,5245.9,4.0,20.809523809523824,513.1904761904766,2020-12-28 +538,5317.2,4.0,20.21428571428573,501.4285714285718,2020-12-28 +548,5418.3,4.0,20.309523809523824,490.66666666666697,2020-12-28 +549,5428.4,4.0,20.16666666666668,479.90476190476227,2020-12-28 +550,5438.7,4.0,20.142857142857157,473.1428571428575,2020-12-28 +567,5609.7,4.0,21.09523809523811,481.95238095238125,2020-12-28 +566,5600.0,4.0,21.309523809523824,469.2380952380955,2020-12-28 +565,5590.4,4.0,21.476190476190492,471.66666666666697,2020-12-28 +564,5580.7,4.0,21.261904761904777,478.00000000000034,2020-12-28 +563,5570.8,4.0,20.809523809523824,477.14285714285745,2020-12-28 +562,5560.5,4.0,20.380952380952394,481.66666666666697,2020-12-28 +561,5550.6,4.0,19.97619047619049,484.66666666666697,2020-12-28 +560,5540.4,4.0,20.16666666666668,490.5714285714289,2020-12-28 +559,5530.1,4.0,20.23809523809525,489.33333333333366,2020-12-28 +558,5519.9,4.0,20.333333333333346,485.2380952380956,2020-12-28 +557,5510.3,4.0,20.2857142857143,478.0952380952384,2020-12-28 +556,5500.1,4.0,20.190476190476204,476.52380952380986,2020-12-28 +555,5489.7,4.0,19.7857142857143,497.80952380952414,2020-12-28 +554,5479.4,4.0,19.92857142857144,519.3809523809527,2020-12-28 +553,5469.1,4.0,19.97619047619049,503.6666666666671,2020-12-28 +552,5459.0,4.0,20.023809523809536,491.0476190476194,2020-12-28 +551,5449.0,4.0,20.023809523809536,478.8095238095242,2020-12-28 +530,5235.5,4.0,20.857142857142872,502.714285714286,2020-12-28 +568,5619.6,4.0,20.952380952380963,499.714285714286,2020-12-28 +529,5226.3,4.0,20.64285714285716,499.5714285714289,2020-12-28 +527,5205.1,4.0,20.261904761904773,516.0476190476194,2020-12-28 +486,4932.9,4.0,18.61904761904763,163.33333333333343,2020-12-28 +485,4932.9,4.0,18.1904761904762,328.38095238095264,2020-12-28 +483,4921.6,4.0,19.047619047619058,558.0952380952385,2020-12-28 +482,4910.3,4.0,19.690476190476204,518.5714285714289,2020-12-28 +481,4899.6,4.0,20.071428571428584,514.8095238095241,2020-12-28 +480,4889.2,4.0,20.47619047619049,503.80952380952414,2020-12-28 +479,4878.8,4.0,20.59523809523811,501.3333333333337,2020-12-28 +506,4985.6,4.0,21.83333333333335,428.5714285714289,2020-12-28 +478,4869.1,4.0,20.380952380952394,504.8095238095242,2020-12-28 +476,4848.8,4.0,19.761904761904773,506.7619047619051,2020-12-28 +475,4838.6,4.0,19.11904761904763,499.71428571428606,2020-12-28 +474,4827.6,4.0,19.16666666666668,497.76190476190516,2020-12-28 +473,4817.2,4.0,18.97619047619049,501.4761904761908,2020-12-28 +472,4806.1,4.0,18.833333333333346,503.714285714286,2020-12-28 +471,4795.2,4.0,18.500000000000014,493.5714285714289,2020-12-28 +829,8129.2,4.0,17.380952380952394,464.95238095238125,2020-12-28 +477,4859.1,4.0,20.000000000000014,505.2380952380955,2020-12-28 +507,4990.6,4.0,20.380952380952394,541.3333333333337,2020-12-28 +508,5000.4,4.0,19.619047619047635,567.5714285714289,2020-12-28 +509,5010.6,4.0,20.2857142857143,508.666666666667,2020-12-28 +526,5194.9,4.0,20.642857142857157,534.0000000000003,2020-12-28 +525,5184.3,4.0,20.928571428571445,548.5714285714289,2020-12-28 +524,5173.9,4.0,20.95238095238097,560.8095238095242,2020-12-28 +523,5163.9,4.0,20.809523809523824,574.9047619047623,2020-12-28 +522,5153.2,4.0,20.380952380952394,576.3333333333337,2020-12-28 +521,5143.1,4.0,19.97619047619049,571.3333333333337,2020-12-28 +520,5132.4,4.0,19.738095238095255,562.3809523809527,2020-12-28 +519,5121.3,4.0,19.380952380952394,554.7619047619052,2020-12-28 +518,5109.8,4.0,19.047619047619058,540.0952380952384,2020-12-28 +517,5098.6,4.0,19.30952380952382,528.0000000000003,2020-12-28 +516,5087.1,4.0,19.309523809523824,513.4285714285718,2020-12-28 +515,5076.0,4.0,19.523809523809536,520.714285714286,2020-12-28 +514,5065.1,4.0,19.642857142857157,544.0000000000003,2020-12-28 +513,5053.5,4.0,19.833333333333346,533.714285714286,2020-12-28 +512,5042.1,4.0,19.952380952380967,525.714285714286,2020-12-28 +511,5031.2,4.0,20.380952380952394,506.5714285714289,2020-12-28 +510,5021.0,4.0,20.11904761904763,494.1904761904765,2020-12-28 +528,5215.6,4.0,20.333333333333346,507.3333333333337,2020-12-28 +569,5629.5,4.0,20.95238095238097,493.9523809523813,2020-12-28 +570,5639.5,4.0,21.309523809523824,487.9523809523813,2020-12-28 +571,5649.5,4.0,21.690476190476204,474.95238095238125,2020-12-28 +642,6260.2,4.0,20.380952380952394,479.76190476190504,2020-12-28 +641,6250.4,4.0,20.500000000000014,479.0000000000003,2020-12-28 +640,6240.4,4.0,20.61904761904763,479.714285714286,2020-12-28 +639,6230.8,4.0,20.52380952380954,481.0476190476194,2020-12-28 +638,6220.6,4.0,20.59523809523811,482.8095238095241,2020-12-28 +637,6210.9,4.0,20.619047619047635,480.9047619047622,2020-12-28 +636,6200.8,4.0,20.59523809523811,484.9047619047622,2020-12-28 +643,6270.5,4.0,20.333333333333346,455.42857142857173,2020-12-28 +635,6190.5,4.0,20.47619047619049,485.52380952380986,2020-12-28 +633,6170.5,4.0,20.619047619047635,493.52380952380986,2020-12-28 +632,6160.2,4.0,20.880952380952394,494.71428571428606,2020-12-28 +631,6150.9,4.0,20.952380952380967,499.52380952380986,2020-12-28 +630,6141.4,4.0,20.880952380952394,502.7142857142861,2020-12-28 +629,6131.6,4.0,20.619047619047635,503.2380952380956,2020-12-28 +628,6121.5,4.0,20.54761904761906,503.5714285714289,2020-12-28 +627,6111.9,4.0,20.619047619047635,499.5714285714289,2020-12-28 +634,6180.3,4.0,20.642857142857157,487.714285714286,2020-12-28 +644,6280.8,4.0,20.619047619047635,448.8571428571432,2020-12-28 +645,6290.4,4.0,20.857142857142872,449.5238095238098,2020-12-28 +646,6299.6,4.0,20.83333333333335,461.4285714285717,2020-12-28 +663,6469.0,4.0,20.21428571428573,471.9047619047622,2020-12-28 +662,6459.2,4.0,20.35714285714287,460.57142857142884,2020-12-28 +661,6449.5,4.0,20.2857142857143,448.61904761904793,2020-12-28 +660,6440.3,4.0,20.04761904761906,446.5714285714289,2020-12-28 +659,6430.4,4.0,19.642857142857153,448.714285714286,2020-12-28 +658,6420.2,4.0,19.500000000000014,453.00000000000034,2020-12-28 +657,6410.2,4.0,19.66666666666668,467.14285714285745,2020-12-28 +656,6400.1,4.0,19.71428571428573,472.0952380952384,2020-12-28 +655,6390.1,4.0,19.952380952380963,473.90476190476227,2020-12-28 +654,6380.0,4.0,19.952380952380967,475.714285714286,2020-12-28 +653,6369.9,4.0,19.880952380952394,482.4761904761908,2020-12-28 +652,6359.7,4.0,19.857142857142872,479.714285714286,2020-12-28 +651,6349.6,4.0,20.047619047619058,481.14285714285745,2020-12-28 +650,6339.6,4.0,19.97619047619049,478.0000000000003,2020-12-28 +649,6329.6,4.0,20.142857142857157,475.61904761904793,2020-12-28 +648,6319.5,4.0,20.40476190476192,482.2380952380955,2020-12-28 +647,6309.8,4.0,20.809523809523824,473.7619047619051,2020-12-28 +626,6101.8,4.0,20.880952380952394,493.71428571428606,2020-12-28 +625,6092.2,4.0,20.90476190476192,491.0476190476193,2020-12-28 +624,6082.5,4.0,20.90476190476192,486.2857142857146,2020-12-28 +623,6072.9,4.0,20.880952380952394,490.00000000000034,2020-12-28 +601,5859.9,4.0,21.071428571428584,484.66666666666697,2020-12-28 +600,5850.7,4.0,20.952380952380967,474.7619047619051,2020-12-28 +599,5841.2,4.0,20.523809523809536,503.0952380952384,2020-12-28 +598,5831.7,4.0,19.642857142857153,519.0000000000003,2020-12-28 +597,5823.7,4.0,18.642857142857157,432.33333333333366,2020-12-28 +583,5759.1,4.0,21.23809523809525,297.0000000000002,2020-12-28 +582,5759.1,4.0,20.690476190476204,360.57142857142884,2020-12-28 +581,5749.0,4.0,20.04761904761906,429.28571428571456,2020-12-28 +580,5738.8,4.0,20.23809523809525,469.0476190476194,2020-12-28 +579,5728.7,4.0,20.071428571428584,463.7619047619051,2020-12-28 +578,5718.8,4.0,20.21428571428573,476.38095238095264,2020-12-28 +577,5708.6,4.0,20.452380952380967,467.0476190476193,2020-12-28 +576,5698.4,4.0,20.47619047619049,461.3809523809527,2020-12-28 +575,5688.7,4.0,20.571428571428584,464.5714285714289,2020-12-28 +574,5678.9,4.0,21.02380952380954,470.4761904761908,2020-12-28 +573,5669.0,4.0,21.309523809523824,468.28571428571456,2020-12-28 +572,5659.1,4.0,21.54761904761906,471.00000000000034,2020-12-28 +602,5869.8,4.0,20.97619047619049,489.23809523809564,2020-12-28 +665,6488.9,4.0,20.000000000000014,486.2380952380956,2020-12-28 +603,5879.1,4.0,20.90476190476192,492.19047619047655,2020-12-28 +605,5898.2,4.0,20.761904761904773,472.714285714286,2020-12-28 +622,6062.7,4.0,20.7857142857143,491.14285714285745,2020-12-28 +621,6053.1,4.0,20.83333333333335,484.9047619047622,2020-12-28 +620,6043.4,4.0,20.809523809523824,486.7619047619051,2020-12-28 +619,6033.8,4.0,20.809523809523824,484.0952380952384,2020-12-28 +618,6023.6,4.0,20.66666666666668,484.714285714286,2020-12-28 +617,6014.2,4.0,20.59523809523811,491.0952380952384,2020-12-28 +616,6004.8,4.0,20.380952380952394,484.95238095238125,2020-12-28 +615,5994.7,4.0,20.452380952380967,484.8571428571432,2020-12-28 +614,5984.6,4.0,20.54761904761906,471.42857142857173,2020-12-28 +613,5975.2,4.0,20.928571428571445,458.95238095238125,2020-12-28 +612,5965.5,4.0,20.952380952380967,457.5714285714289,2020-12-28 +611,5955.5,4.0,20.880952380952394,448.52380952380986,2020-12-28 +610,5945.5,4.0,20.619047619047635,443.2857142857146,2020-12-28 +609,5936.0,4.0,20.59523809523811,465.7619047619051,2020-12-28 +608,5927.1,4.0,20.54761904761906,467.9047619047622,2020-12-28 +607,5917.1,4.0,20.73809523809525,474.9523809523813,2020-12-28 +606,5907.7,4.0,20.73809523809525,471.1904761904765,2020-12-28 +604,5889.1,4.0,20.761904761904773,476.714285714286,2020-12-28 +830,8138.4,4.0,17.428571428571438,466.71428571428606,2020-12-28 +1194,11155.3,4.0,19.190476190476204,437.714285714286,2020-12-28 +832,8160.9,4.0,17.47619047619049,460.2380952380955,2020-12-28 +1118,10398.8,4.0,18.7857142857143,460.2380952380956,2020-12-28 +1117,10388.0,4.0,19.071428571428584,461.2857142857146,2020-12-28 +1116,10377.8,4.0,19.66666666666668,450.5238095238098,2020-12-28 +1115,10367.2,4.0,19.92857142857144,445.3333333333336,2020-12-28 +1114,10357.3,4.0,19.97619047619049,446.4761904761907,2020-12-28 +1113,10347.8,4.0,19.833333333333346,440.90476190476215,2020-12-28 +1112,10337.4,4.0,19.833333333333346,436.3333333333336,2020-12-28 +1119,10409.3,4.0,18.80952380952382,453.7619047619051,2020-12-28 +1111,10327.5,4.0,19.833333333333346,437.2380952380955,2020-12-28 +1109,10307.2,4.0,20.35714285714287,445.95238095238125,2020-12-28 +1108,10297.8,4.0,20.40476190476192,456.52380952380986,2020-12-28 +1107,10287.9,4.0,20.47619047619049,452.9047619047622,2020-12-28 +1106,10278.5,4.0,20.47619047619049,448.0476190476193,2020-12-28 +1105,10268.4,4.0,20.40476190476192,443.714285714286,2020-12-28 +1104,10258.2,4.0,20.309523809523824,446.0476190476193,2020-12-28 +1103,10248.1,4.0,20.09523809523811,456.714285714286,2020-12-28 +1110,10317.4,4.0,20.16666666666668,434.714285714286,2020-12-28 +1120,10420.1,4.0,19.071428571428584,446.52380952380986,2020-12-28 +1121,10430.8,4.0,19.23809523809525,440.0476190476194,2020-12-28 +1122,10440.0,4.0,19.35714285714287,438.57142857142884,2020-12-28 +1139,10614.8,4.0,19.52380952380954,459.7619047619051,2020-12-28 +1138,10604.3,4.0,19.52380952380954,462.66666666666697,2020-12-28 +1137,10594.3,4.0,19.59523809523811,453.2857142857146,2020-12-28 +1136,10583.8,4.0,19.880952380952394,441.3333333333336,2020-12-28 +1135,10573.7,4.0,19.571428571428584,453.42857142857173,2020-12-28 +1134,10563.7,4.0,19.35714285714287,436.00000000000034,2020-12-28 +1133,10553.7,4.0,19.071428571428584,414.4285714285717,2020-12-28 +1132,10543.2,4.0,18.92857142857144,407.38095238095264,2020-12-28 +1131,10534.0,4.0,18.97619047619049,397.4761904761907,2020-12-28 +1130,10523.4,4.0,19.261904761904773,398.14285714285745,2020-12-28 +1129,10512.7,4.0,19.190476190476204,440.42857142857173,2020-12-28 +1128,10502.1,4.0,19.2857142857143,443.76190476190504,2020-12-28 +1127,10492.0,4.0,19.23809523809525,445.14285714285745,2020-12-28 +1126,10481.7,4.0,19.09523809523811,442.1428571428574,2020-12-28 +1125,10471.5,4.0,19.023809523809536,439.3809523809527,2020-12-28 +1124,10460.9,4.0,18.97619047619049,436.0952380952384,2020-12-28 +1123,10450.5,4.0,19.214285714285726,439.76190476190504,2020-12-28 +1102,10238.5,4.0,20.190476190476204,462.0476190476194,2020-12-28 +1101,10228.2,4.0,20.42857142857144,457.3809523809527,2020-12-28 +1100,10218.1,4.0,20.380952380952394,453.66666666666697,2020-12-28 +1099,10208.6,4.0,20.523809523809536,452.1904761904765,2020-12-28 +1015,9912.8,4.0,21.04761904761906,494.80952380952414,2020-12-28 +1014,9903.8,4.0,20.928571428571445,496.00000000000034,2020-12-28 +1013,9894.5,4.0,20.809523809523824,497.3333333333337,2020-12-28 +1012,9885.5,4.0,20.85714285714287,484.3809523809527,2020-12-28 +1011,9875.8,4.0,21.02380952380954,480.4285714285718,2020-12-28 +1010,9866.9,4.0,21.16666666666668,461.90476190476215,2020-12-28 +1009,9858.5,4.0,21.71428571428573,462.1904761904765,2020-12-28 +1008,9848.9,4.0,21.809523809523824,460.0476190476193,2020-12-28 +1007,9839.8,4.0,21.619047619047635,467.714285714286,2020-12-28 +1006,9831.3,4.0,21.52380952380954,473.61904761904793,2020-12-28 +1005,9822.0,4.0,21.309523809523824,480.00000000000034,2020-12-28 +1004,9813.0,4.0,21.071428571428584,479.714285714286,2020-12-28 +1003,9803.6,4.0,21.02380952380954,475.52380952380986,2020-12-28 +1002,9794.2,4.0,20.952380952380967,459.52380952380986,2020-12-28 +1001,9785.3,4.0,21.047619047619058,449.47619047619077,2020-12-28 +1000,9776.8,4.0,21.142857142857157,460.9047619047622,2020-12-28 +999,9767.8,4.0,21.071428571428584,467.5238095238098,2020-12-28 +1016,9922.4,4.0,21.000000000000014,484.9047619047622,2020-12-28 +1140,10624.8,4.0,19.642857142857157,456.2857142857146,2020-12-28 +1017,9931.1,4.0,21.14285714285716,470.61904761904793,2020-12-28 +1019,9949.4,4.0,20.642857142857157,450.47619047619077,2020-12-28 +1098,10198.9,4.0,20.571428571428584,457.5238095238098,2020-12-28 +1097,10188.2,4.0,20.166666666666682,467.42857142857173,2020-12-28 +1096,10178.7,4.0,19.690476190476204,477.0476190476194,2020-12-28 +1095,10168.8,4.0,18.47619047619049,480.4285714285718,2020-12-28 +1094,10158.5,4.0,18.16666666666668,489.9523809523813,2020-12-28 +1093,10147.9,4.0,16.047619047619058,464.2857142857146,2020-12-28 +1092,10136.9,4.0,15.142857142857153,448.5238095238098,2020-12-28 +1089,10114.7,4.0,22.42857142857144,387.3333333333336,2020-12-28 +1028,10032.1,4.0,19.880952380952394,341.8095238095241,2020-12-28 +1027,10023.1,4.0,20.761904761904773,442.8095238095241,2020-12-28 +1026,10014.0,4.0,21.14285714285716,486.5714285714289,2020-12-28 +1025,10004.6,4.0,20.90476190476192,445.00000000000034,2020-12-28 +1024,9995.7,4.0,20.952380952380967,438.66666666666697,2020-12-28 +1023,9986.6,4.0,21.309523809523824,443.66666666666697,2020-12-28 +1022,9977.2,4.0,21.119047619047635,456.3809523809527,2020-12-28 +1021,9968.2,4.0,20.809523809523824,462.33333333333366,2020-12-28 +1020,9959.0,4.0,20.59523809523811,456.5714285714289,2020-12-28 +1018,9940.4,4.0,20.738095238095255,448.66666666666697,2020-12-28 +998,9758.9,4.0,20.97619047619049,481.47619047619077,2020-12-28 +1141,10634.8,4.0,19.619047619047635,449.8095238095241,2020-12-28 +1143,10655.3,4.0,19.66666666666668,444.76190476190504,2020-12-28 +1201,11221.4,4.0,19.428571428571445,468.3333333333336,2020-12-28 +1200,11212.1,4.0,19.16666666666668,473.66666666666697,2020-12-28 +1199,11203.0,4.0,19.35714285714287,466.9047619047622,2020-12-28 +1198,11193.3,4.0,19.30952380952382,457.714285714286,2020-12-28 +1197,11184.3,4.0,19.071428571428584,449.1904761904765,2020-12-28 +1196,11174.5,4.0,19.071428571428584,442.3333333333336,2020-12-28 +1195,11164.9,4.0,19.09523809523811,441.95238095238125,2020-12-28 +1202,11230.6,4.0,19.500000000000014,451.8571428571431,2020-12-28 +470,4784.0,4.0,18.333333333333346,483.52380952380986,2020-12-28 +1192,11136.6,4.0,19.11904761904763,430.09523809523836,2020-12-28 +1191,11126.7,4.0,19.214285714285726,431.8095238095241,2020-12-28 +1190,11116.6,4.0,19.119047619047635,440.8571428571431,2020-12-28 +1189,11107.3,4.0,19.214285714285726,451.0476190476194,2020-12-28 +1188,11098.5,4.0,19.2857142857143,462.1904761904765,2020-12-28 +1187,11089.3,4.0,19.333333333333346,466.4285714285717,2020-12-28 +1186,11080.1,4.0,19.309523809523824,478.33333333333366,2020-12-28 +1193,11145.7,4.0,19.35714285714287,433.4285714285717,2020-12-28 +1203,11239.8,4.0,19.261904761904773,441.52380952380986,2020-12-28 +1204,11249.2,4.0,18.97619047619049,434.00000000000034,2020-12-28 +1205,11258.4,4.0,18.690476190476204,437.8095238095241,2020-12-28 +1222,11391.2,4.0,17.011904761904788,373.428571428572,2020-12-28 +1221,11391.2,4.0,16.964285714285737,373.7857142857147,2020-12-28 +1220,11391.2,4.0,17.00000000000002,365.214285714286,2020-12-28 +1219,11391.2,4.0,17.11904761904763,352.71428571428595,2020-12-28 +1218,11382.1,4.0,17.35714285714287,339.85714285714306,2020-12-28 +1217,11372.2,4.0,17.642857142857153,341.38095238095264,2020-12-28 +1216,11362.9,4.0,17.880952380952394,339.04761904761926,2020-12-28 +1215,11353.5,4.0,17.92857142857144,364.90476190476215,2020-12-28 +1214,11344.3,4.0,18.11904761904763,370.14285714285734,2020-12-28 +1213,11334.2,4.0,18.09523809523811,401.9047619047622,2020-12-28 +1212,11324.7,4.0,18.190476190476204,399.28571428571456,2020-12-28 +1211,11314.9,4.0,18.30952380952382,405.57142857142884,2020-12-28 +1210,11306.0,4.0,18.35714285714287,400.04761904761926,2020-12-28 +1209,11296.9,4.0,18.50000000000001,414.61904761904793,2020-12-28 +1208,11287.2,4.0,18.690476190476204,433.8571428571431,2020-12-28 +1207,11277.8,4.0,18.66666666666668,453.8571428571431,2020-12-28 +1206,11268.4,4.0,18.500000000000014,446.9047619047622,2020-12-28 +1185,11071.4,4.0,19.59523809523811,491.38095238095275,2020-12-28 +1184,11062.3,4.0,19.452380952380967,499.52380952380986,2020-12-28 +1183,11052.8,4.0,19.571428571428584,491.0476190476194,2020-12-28 +1182,11043.7,4.0,19.642857142857157,494.95238095238125,2020-12-28 +1160,10831.0,4.0,18.261904761904773,451.14285714285745,2020-12-28 +1159,10819.9,4.0,18.190476190476204,452.5238095238098,2020-12-28 +1158,10809.5,4.0,18.500000000000014,449.95238095238125,2020-12-28 +1157,10798.9,4.0,18.880952380952394,447.1904761904765,2020-12-28 +1156,10788.4,4.0,19.023809523809536,432.9523809523813,2020-12-28 +1155,10778.6,4.0,19.30952380952382,428.95238095238125,2020-12-28 +1154,10768.0,4.0,19.16666666666668,432.14285714285745,2020-12-28 +1153,10757.4,4.0,19.142857142857153,431.90476190476215,2020-12-28 +1152,10747.3,4.0,19.261904761904773,440.2380952380955,2020-12-28 +1151,10736.6,4.0,19.42857142857144,459.8095238095241,2020-12-28 +1150,10726.4,4.0,19.59523809523811,463.14285714285745,2020-12-28 +1149,10715.8,4.0,19.880952380952394,466.33333333333366,2020-12-28 +1148,10706.3,4.0,20.02380952380954,463.95238095238125,2020-12-28 +1147,10696.4,4.0,19.97619047619049,457.1428571428574,2020-12-28 +1146,10685.7,4.0,19.90476190476192,449.9523809523812,2020-12-28 +1145,10676.0,4.0,19.809523809523824,456.0952380952384,2020-12-28 +1144,10665.5,4.0,19.642857142857153,448.1904761904765,2020-12-28 +1161,10841.5,4.0,18.333333333333346,443.95238095238125,2020-12-28 +1142,10645.2,4.0,19.71428571428573,444.76190476190504,2020-12-28 +1162,10852.0,4.0,18.238095238095248,442.47619047619077,2020-12-28 +1164,10873.2,4.0,18.547619047619058,479.38095238095264,2020-12-28 +1181,11034.5,4.0,19.66666666666668,489.42857142857173,2020-12-28 +1180,11025.6,4.0,19.59523809523811,498.90476190476227,2020-12-28 +1179,11016.1,4.0,19.59523809523811,503.4761904761908,2020-12-28 +1178,11007.1,4.0,19.619047619047635,506.5714285714289,2020-12-28 +1177,10997.8,4.0,19.833333333333346,495.0952380952384,2020-12-28 +1176,10988.7,4.0,20.02380952380954,499.0000000000003,2020-12-28 +1175,10979.6,4.0,19.97619047619049,502.33333333333366,2020-12-28 +1174,10971.0,4.0,19.85714285714287,505.666666666667,2020-12-28 +1173,10961.1,4.0,19.833333333333346,506.52380952380986,2020-12-28 +1172,10951.7,4.0,19.85714285714287,524.1428571428576,2020-12-28 +1171,10942.2,4.0,19.880952380952394,529.9523809523813,2020-12-28 +1170,10932.6,4.0,20.16666666666668,538.0000000000003,2020-12-28 +1169,10923.0,4.0,20.119047619047635,538.5238095238099,2020-12-28 +1168,10913.8,4.0,20.047619047619058,540.2380952380956,2020-12-28 +1167,10904.0,4.0,19.83333333333335,536.6190476190479,2020-12-28 +1166,10894.0,4.0,19.452380952380963,533.0476190476194,2020-12-28 +1165,10883.7,4.0,18.833333333333346,507.80952380952414,2020-12-28 +1163,10862.8,4.0,18.35714285714287,450.8571428571431,2020-12-28 +831,8150.3,4.0,17.47619047619049,465.0952380952384,2020-12-28 +997,9750.0,4.0,20.523809523809536,487.0000000000003,2020-12-28 +995,9731.1,4.0,20.21428571428573,482.0952380952384,2020-12-28 +890,8745.0,4.0,19.333333333333346,432.28571428571456,2020-12-28 +889,8735.6,4.0,19.047619047619058,440.38095238095264,2020-12-28 +888,8725.8,4.0,18.90476190476192,451.95238095238125,2020-12-28 +887,8716.0,4.0,18.952380952380963,441.61904761904793,2020-12-28 +886,8705.8,4.0,19.190476190476204,445.66666666666697,2020-12-28 +885,8695.6,4.0,19.35714285714287,453.5238095238098,2020-12-28 +884,8686.0,4.0,19.761904761904773,454.14285714285745,2020-12-28 +891,8754.4,4.0,19.54761904761906,440.5238095238098,2020-12-28 +883,8676.4,4.0,19.500000000000014,469.33333333333366,2020-12-28 +881,8656.9,4.0,19.238095238095248,457.0952380952384,2020-12-28 +880,8647.5,4.0,19.190476190476204,459.90476190476227,2020-12-28 +879,8637.3,4.0,19.119047619047635,457.0476190476193,2020-12-28 +878,8627.6,4.0,19.2857142857143,455.2857142857146,2020-12-28 +877,8618.9,4.0,19.047619047619058,448.7619047619051,2020-12-28 +876,8609.5,4.0,19.047619047619058,440.52380952380986,2020-12-28 +875,8599.5,4.0,19.190476190476204,434.9047619047622,2020-12-28 +882,8666.8,4.0,19.42857142857144,466.80952380952414,2020-12-28 +892,8763.5,4.0,19.73809523809525,454.00000000000034,2020-12-28 +893,8773.2,4.0,19.59523809523811,465.42857142857173,2020-12-28 +894,8782.8,4.0,19.54761904761906,477.0476190476194,2020-12-28 +911,8945.1,4.0,20.59523809523811,495.52380952380986,2020-12-28 +910,8935.9,4.0,20.857142857142872,497.80952380952414,2020-12-28 +909,8926.4,4.0,20.809523809523824,492.9047619047622,2020-12-28 +908,8917.2,4.0,20.857142857142872,490.0952380952384,2020-12-28 +907,8907.9,4.0,20.40476190476192,486.0476190476194,2020-12-28 +906,8898.3,4.0,20.023809523809536,487.2380952380955,2020-12-28 +905,8888.6,4.0,19.59523809523811,482.3333333333337,2020-12-28 +904,8879.1,4.0,19.261904761904773,472.47619047619077,2020-12-28 +903,8869.2,4.0,19.16666666666668,456.95238095238125,2020-12-28 +902,8859.8,4.0,19.35714285714287,446.2380952380955,2020-12-28 +901,8850.3,4.0,19.500000000000014,447.1904761904765,2020-12-28 +900,8840.5,4.0,19.73809523809525,452.0476190476193,2020-12-28 +899,8831.0,4.0,19.59523809523811,450.61904761904793,2020-12-28 +898,8821.5,4.0,19.54761904761906,453.00000000000034,2020-12-28 +897,8812.1,4.0,19.333333333333346,450.5714285714289,2020-12-28 +896,8802.2,4.0,19.11904761904763,447.14285714285745,2020-12-28 +895,8792.1,4.0,19.333333333333346,457.4761904761908,2020-12-28 +874,8589.9,4.0,19.47619047619049,433.8095238095241,2020-12-28 +873,8579.7,4.0,19.59523809523811,441.76190476190504,2020-12-28 +872,8569.9,4.0,19.71428571428573,462.2857142857146,2020-12-28 +871,8559.9,4.0,19.73809523809525,458.5714285714289,2020-12-28 +849,8338.6,4.0,19.761904761904773,475.00000000000034,2020-12-28 +848,8328.8,4.0,19.66666666666668,486.00000000000034,2020-12-28 +847,8318.7,4.0,19.333333333333346,493.52380952380986,2020-12-28 +846,8308.5,4.0,18.7857142857143,495.0476190476194,2020-12-28 +845,8298.4,4.0,18.214285714285726,485.42857142857173,2020-12-28 +844,8288.1,4.0,17.80952380952382,477.52380952380986,2020-12-28 +843,8277.3,4.0,17.547619047619058,464.4285714285718,2020-12-28 +842,8266.9,4.0,17.785714285714295,471.76190476190504,2020-12-28 +841,8256.2,4.0,18.023809523809536,477.9523809523813,2020-12-28 +840,8245.6,4.0,18.023809523809536,478.14285714285745,2020-12-28 +839,8235.4,4.0,17.833333333333343,478.0476190476194,2020-12-28 +838,8225.4,4.0,17.619047619047628,478.61904761904793,2020-12-28 +837,8214.0,4.0,17.59523809523811,472.95238095238125,2020-12-28 +836,8203.4,4.0,17.595238095238106,472.1904761904765,2020-12-28 +835,8192.2,4.0,17.61904761904763,466.90476190476227,2020-12-28 +834,8182.2,4.0,17.761904761904773,457.3809523809527,2020-12-28 +833,8172.2,4.0,17.642857142857153,455.61904761904793,2020-12-28 +850,8348.6,4.0,20.071428571428584,483.61904761904793,2020-12-28 +912,8954.7,4.0,20.40476190476192,487.33333333333366,2020-12-28 +851,8358.4,4.0,20.02380952380954,478.2857142857146,2020-12-28 +853,8378.5,4.0,19.73809523809525,478.3333333333336,2020-12-28 +870,8549.9,4.0,19.833333333333346,456.7619047619051,2020-12-28 +869,8539.3,4.0,20.000000000000014,452.6190476190479,2020-12-28 +868,8529.9,4.0,19.809523809523824,452.714285714286,2020-12-28 +867,8519.9,4.0,19.47619047619049,457.5714285714289,2020-12-28 +866,8509.6,4.0,19.380952380952394,461.8571428571432,2020-12-28 +865,8499.6,4.0,19.52380952380954,462.2380952380955,2020-12-28 +864,8489.8,4.0,19.642857142857153,454.5238095238098,2020-12-28 +863,8480.0,4.0,20.000000000000014,466.2380952380955,2020-12-28 +862,8469.6,4.0,20.04761904761906,485.5714285714289,2020-12-28 +861,8459.6,4.0,19.7857142857143,497.33333333333366,2020-12-28 +860,8450.4,4.0,19.642857142857157,499.5714285714289,2020-12-28 +859,8439.7,4.0,19.40476190476192,487.14285714285745,2020-12-28 +858,8429.6,4.0,19.071428571428584,464.1904761904765,2020-12-28 +857,8419.1,4.0,19.333333333333346,457.6666666666669,2020-12-28 +856,8409.2,4.0,19.54761904761906,461.1904761904765,2020-12-28 +855,8398.5,4.0,19.547619047619058,460.4285714285717,2020-12-28 +854,8388.5,4.0,19.71428571428573,469.2380952380955,2020-12-28 +852,8368.5,4.0,19.7857142857143,482.0476190476194,2020-12-28 +996,9740.5,4.0,20.142857142857157,487.3333333333337,2020-12-28 +913,8964.3,4.0,20.452380952380963,475.52380952380986,2020-12-28 +915,8982.5,4.0,20.90476190476192,465.8571428571432,2020-12-28 +973,9526.4,4.0,21.690476190476204,518.0476190476194,2020-12-28 +972,9517.0,4.0,21.880952380952394,510.666666666667,2020-12-28 +971,9507.6,4.0,22.238095238095255,499.00000000000034,2020-12-28 +970,9498.9,4.0,22.64285714285716,496.52380952380986,2020-12-28 +969,9489.8,4.0,22.33333333333335,507.00000000000034,2020-12-28 +968,9480.7,4.0,21.83333333333335,503.85714285714323,2020-12-28 +967,9471.5,4.0,21.357142857142872,507.4285714285718,2020-12-28 +974,9535.9,4.0,21.666666666666682,508.0952380952384,2020-12-28 +966,9462.2,4.0,21.04761904761906,496.80952380952414,2020-12-28 +964,9443.8,4.0,20.857142857142872,481.14285714285745,2020-12-28 +963,9434.1,4.0,20.7857142857143,488.8571428571432,2020-12-28 +962,9424.7,4.0,20.928571428571445,486.5714285714289,2020-12-28 +961,9415.2,4.0,21.071428571428584,480.38095238095275,2020-12-28 +960,9406.0,4.0,21.261904761904777,478.00000000000034,2020-12-28 +959,9396.9,4.0,21.119047619047635,474.80952380952414,2020-12-28 +958,9387.4,4.0,20.809523809523824,471.76190476190504,2020-12-28 +965,9453.0,4.0,20.83333333333335,485.0476190476194,2020-12-28 +975,9545.4,4.0,21.809523809523824,497.2380952380956,2020-12-28 +976,9554.7,4.0,22.21428571428573,484.4285714285718,2020-12-28 +977,9563.6,4.0,22.119047619047635,486.1904761904765,2020-12-28 +994,9722.2,4.0,20.40476190476192,489.42857142857173,2020-12-28 +993,9712.7,4.0,20.54761904761906,483.76190476190504,2020-12-28 +992,9703.5,4.0,20.761904761904777,483.66666666666697,2020-12-28 +991,9694.0,4.0,21.000000000000014,480.1904761904765,2020-12-28 +990,9684.8,4.0,20.952380952380967,476.80952380952414,2020-12-28 +989,9675.2,4.0,21.119047619047635,481.33333333333366,2020-12-28 +988,9665.7,4.0,21.357142857142872,486.0952380952384,2020-12-28 +987,9656.2,4.0,21.35714285714287,493.9523809523813,2020-12-28 +986,9646.8,4.0,21.500000000000014,506.61904761904793,2020-12-28 +985,9637.4,4.0,21.642857142857157,499.4761904761908,2020-12-28 +984,9628.1,4.0,21.690476190476208,480.2857142857146,2020-12-28 +983,9618.9,4.0,21.857142857142872,476.66666666666697,2020-12-28 +982,9609.2,4.0,21.880952380952397,473.8571428571432,2020-12-28 +981,9600.8,4.0,21.666666666666682,481.7619047619051,2020-12-28 +980,9591.8,4.0,21.809523809523824,500.9523809523813,2020-12-28 +979,9582.3,4.0,21.833333333333346,506.1428571428575,2020-12-28 +978,9573.0,4.0,21.952380952380967,492.9523809523813,2020-12-28 +957,9377.7,4.0,20.761904761904773,481.4285714285718,2020-12-28 +956,9367.8,4.0,20.809523809523824,487.38095238095275,2020-12-28 +955,9358.0,4.0,20.73809523809525,480.80952380952414,2020-12-28 +954,9349.2,4.0,20.809523809523824,481.7619047619051,2020-12-28 +932,9143.7,4.0,20.333333333333346,476.71428571428606,2020-12-28 +931,9134.6,4.0,20.16666666666668,478.14285714285745,2020-12-28 +930,9124.8,4.0,20.071428571428584,484.8571428571431,2020-12-28 +929,9115.2,4.0,19.880952380952394,492.66666666666697,2020-12-28 +928,9105.4,4.0,19.85714285714287,484.14285714285745,2020-12-28 +927,9095.8,4.0,19.73809523809525,476.85714285714323,2020-12-28 +926,9086.1,4.0,20.000000000000014,483.5714285714289,2020-12-28 +925,9076.4,4.0,20.16666666666668,486.33333333333366,2020-12-28 +924,9066.7,4.0,20.452380952380967,493.5714285714289,2020-12-28 +923,9057.2,4.0,20.428571428571445,492.52380952380986,2020-12-28 +922,9047.4,4.0,20.21428571428573,485.00000000000034,2020-12-28 +921,9037.8,4.0,20.09523809523811,476.5714285714289,2020-12-28 +920,9028.1,4.0,20.40476190476192,474.2380952380955,2020-12-28 +919,9018.5,4.0,20.619047619047635,468.8095238095241,2020-12-28 +918,9009.3,4.0,20.952380952380967,469.90476190476227,2020-12-28 +917,9000.7,4.0,21.09523809523811,467.9523809523813,2020-12-28 +916,8991.5,4.0,21.09523809523811,469.00000000000034,2020-12-28 +933,9153.2,4.0,20.523809523809536,470.5714285714289,2020-12-28 +914,8973.5,4.0,20.690476190476204,473.66666666666697,2020-12-28 +934,9162.0,4.0,20.523809523809536,483.95238095238125,2020-12-28 +936,9181.2,4.0,20.119047619047635,499.52380952380986,2020-12-28 +953,9340.0,4.0,20.809523809523824,484.61904761904793,2020-12-28 +952,9330.9,4.0,20.738095238095255,483.52380952380986,2020-12-28 +951,9321.3,4.0,21.02380952380954,482.2380952380955,2020-12-28 +950,9312.2,4.0,20.97619047619049,476.7619047619051,2020-12-28 +949,9303.0,4.0,20.809523809523824,474.42857142857173,2020-12-28 +948,9293.9,4.0,20.952380952380967,472.14285714285745,2020-12-28 +947,9284.4,4.0,20.928571428571445,478.85714285714323,2020-12-28 +946,9275.2,4.0,20.952380952380967,483.14285714285745,2020-12-28 +945,9266.2,4.0,21.071428571428584,485.0476190476194,2020-12-28 +944,9257.2,4.0,20.90476190476192,481.66666666666697,2020-12-28 +943,9247.5,4.0,20.71428571428573,479.2380952380956,2020-12-28 +942,9238.4,4.0,20.71428571428573,472.61904761904793,2020-12-28 +941,9228.7,4.0,20.571428571428584,468.4761904761908,2020-12-28 +940,9219.5,4.0,20.42857142857144,469.0476190476194,2020-12-28 +939,9209.8,4.0,20.333333333333346,478.7619047619051,2020-12-28 +938,9200.5,4.0,20.119047619047635,493.666666666667,2020-12-28 +937,9190.8,4.0,20.04761904761906,498.76190476190504,2020-12-28 +935,9171.5,4.0,20.333333333333346,496.5714285714289,2020-12-28 +469,4773.2,4.0,18.047619047619058,469.95238095238125,2020-12-28 +382,3811.0,4.0,19.09523809523811,497.85714285714323,2020-12-28 +467,4750.6,4.0,17.80952380952382,468.3809523809527,2020-12-28 +18,177.4,4.0,18.023809523809536,373.8571428571431,2020-12-28 +17,167.1,4.0,17.047619047619058,470.00000000000034,2020-12-28 +16,155.4,4.0,17.85714285714287,513.8095238095242,2020-12-28 +15,145.1,4.0,18.40476190476192,521.2380952380956,2020-12-28 +14,136.3,4.0,18.61904761904763,498.666666666667,2020-12-28 +13,103.7,4.0,18.42857142857144,496.0476190476194,2020-12-28 +12,103.7,4.0,17.523809523809536,506.619047619048,2020-12-28 +19,188.5,4.0,18.2857142857143,301.0000000000002,2020-12-28 +11,103.7,4.0,16.714285714285726,554.6190476190479,2020-12-28 +9,92.3,4.0,17.61904761904763,434.5238095238098,2020-12-28 +8,83.3,4.0,17.261904761904773,414.38095238095264,2020-12-28 +7,72.2,4.0,17.023809523809533,417.90476190476215,2020-12-28 +6,59.5,4.0,16.904761904761916,430.1904761904765,2020-12-28 +5,48.7,4.0,18.00000000000001,461.00000000000034,2020-12-28 +4,38.6,4.0,21.21428571428573,405.66666666666697,2020-12-28 +3,29.1,4.0,21.000000000000014,396.2380952380955,2020-12-28 +10,103.7,4.0,17.90476190476192,482.38095238095275,2020-12-28 +20,199.2,4.0,18.333333333333346,239.80952380952397,2020-12-28 +21,209.5,4.0,18.452380952380963,229.857142857143,2020-12-28 +22,220.1,4.0,19.261904761904773,234.85714285714303,2020-12-28 +39,367.9,4.0,17.85714285714287,487.4285714285718,2020-12-28 +38,357.4,4.0,18.190476190476204,501.4285714285718,2020-12-28 +37,346.8,4.0,18.54761904761906,482.38095238095275,2020-12-28 +36,336.7,4.0,18.7857142857143,472.33333333333366,2020-12-28 +35,327.7,4.0,18.761904761904773,401.2380952380955,2020-12-28 +34,317.6,4.0,19.261904761904773,318.52380952380975,2020-12-28 +33,308.8,4.0,18.880952380952394,232.19047619047635,2020-12-28 +32,299.6,4.0,17.61904761904763,259.6666666666668,2020-12-28 +31,290.9,4.0,16.428571428571438,327.66666666666686,2020-12-28 +30,279.7,4.0,19.500000000000014,393.38095238095264,2020-12-28 +29,270.1,4.0,24.690476190476208,411.2380952380955,2020-12-28 +28,264.9,4.0,32.3809523809524,374.28571428571456,2020-12-28 +27,261.5,4.0,31.904761904761926,288.85714285714306,2020-12-28 +26,257.5,4.0,26.95238095238097,270.9047619047621,2020-12-28 +25,254.6,4.0,20.2857142857143,288.85714285714306,2020-12-28 +24,239.7,4.0,16.904761904761916,265.857142857143,2020-12-28 +23,229.4,4.0,16.16666666666668,245.57142857142875,2020-12-28 +2,20.6,4.0,19.785714285714306,373.38095238095235,2020-12-28 +40,379.0,4.0,17.738095238095248,507.33333333333366,2020-12-28 +1,13.3,4.0,16.464285714285737,265.8809523809527,2020-12-28 +349,10793.0,4.0,17.67183673469388,100.00000000000003,2020-12-28 +311,9828.0,4.0,18.88163265306123,100.00000000000003,2020-12-28 +310,9792.0,4.0,19.093877551020416,100.00000000000003,2020-12-28 +309,9761.0,4.0,19.121632653061233,100.00000000000003,2020-12-28 +308,9723.0,4.0,19.755102040816332,100.00000000000003,2020-12-28 +307,9697.0,4.0,18.83428571428572,100.00000000000003,2020-12-28 +306,9659.0,4.0,16.362448979591846,100.00000000000003,2020-12-28 +305,9634.0,4.0,16.013061224489803,100.00000000000003,2020-12-28 +312,9853.0,4.0,18.829387755102047,100.00000000000003,2020-12-28 +301,9496.0,4.0,17.231020408163275,100.00000000000003,2020-12-28 +299,9432.0,4.0,21.229387755102046,100.00000000000003,2020-12-28 +298,9395.0,4.0,18.166530612244905,100.00000000000003,2020-12-28 +297,9359.0,4.0,18.377142857142857,100.00000000000003,2020-12-28 +296,9326.0,4.0,19.500408163265313,100.00000000000003,2020-12-28 +295,9289.0,4.0,20.083265306122453,100.00000000000003,2020-12-28 +294,9264.0,4.0,19.58857142857143,100.00000000000003,2020-12-28 +293,9225.0,4.0,18.499591836734698,100.00000000000003,2020-12-28 +300,9466.0,4.0,21.52000000000001,100.00000000000003,2020-12-28 +313,9892.0,4.0,17.430204081632663,100.00000000000003,2020-12-28 +314,9916.0,4.0,16.163265306122454,100.00000000000003,2020-12-28 +329,10130.0,4.0,20.791836734693888,100.00000000000003,2020-12-28 +348,10758.0,4.0,17.520000000000003,100.00000000000003,2020-12-28 +347,10721.0,4.0,16.45061224489796,100.00000000000003,2020-12-28 +346,10687.0,4.0,16.50448979591837,100.00000000000003,2020-12-28 +345,10653.0,4.0,18.13714285714286,100.00000000000003,2020-12-28 +344,10627.0,4.0,19.103673469387758,100.00000000000003,2020-12-28 +343,10577.0,4.0,17.534693877551025,100.00000000000003,2020-12-28 +340,10492.0,4.0,15.960816326530619,100.00000000000003,2020-12-28 +339,10467.0,4.0,16.981224489795924,100.00000000000003,2020-12-28 +338,10433.0,4.0,16.000000000000007,100.00000000000003,2020-12-28 +337,10400.0,4.0,15.048163265306126,100.00000000000003,2020-12-28 +336,10359.0,4.0,15.833469387755109,100.00000000000003,2020-12-28 +335,10329.0,4.0,17.549387755102046,100.00000000000003,2020-12-28 +334,10298.0,4.0,18.06857142857143,100.00000000000003,2020-12-28 +333,10263.0,4.0,17.701224489795926,100.00000000000003,2020-12-28 +332,10229.0,4.0,16.592653061224496,100.00000000000003,2020-12-28 +331,10195.0,4.0,16.976326530612248,100.00000000000003,2020-12-28 +330,10164.0,4.0,19.531428571428577,100.00000000000003,2020-12-28 +350,10819.0,4.0,16.137142857142862,100.00000000000003,2020-12-28 +41,389.9,4.0,17.452380952380963,535.5714285714289,2020-12-28 +42,400.9,4.0,17.571428571428584,562.4761904761908,2020-12-28 +43,412.0,4.0,17.547619047619058,554.7619047619052,2020-12-28 +105,1027.6,4.0,19.142857142857153,533.714285714286,2020-12-28 +104,1017.4,4.0,19.071428571428584,545.6190476190479,2020-12-28 +103,1006.6,4.0,18.90476190476192,547.7619047619052,2020-12-28 +102,995.8,4.0,19.071428571428584,551.3333333333337,2020-12-28 +101,985.8,4.0,19.142857142857153,546.5714285714289,2020-12-28 +100,975.3,4.0,19.16666666666668,542.4285714285718,2020-12-28 +99,964.9,4.0,19.09523809523811,542.761904761905,2020-12-28 +106,1037.9,4.0,19.16666666666668,529.4285714285718,2020-12-28 +98,954.9,4.0,19.142857142857157,545.666666666667,2020-12-28 +96,934.0,4.0,19.16666666666668,547.4285714285718,2020-12-28 +95,924.2,4.0,19.09523809523811,549.3809523809527,2020-12-28 +94,913.5,4.0,19.142857142857157,545.9047619047623,2020-12-28 +93,903.0,4.0,19.142857142857153,543.9523809523813,2020-12-28 +92,892.6,4.0,19.09523809523811,523.3333333333337,2020-12-28 +91,882.1,4.0,19.000000000000014,517.3333333333337,2020-12-28 +90,872.4,4.0,18.904761904761916,520.8571428571431,2020-12-28 +97,944.4,4.0,19.09523809523811,543.8095238095242,2020-12-28 +107,1048.0,4.0,19.142857142857153,528.0476190476194,2020-12-28 +108,1058.5,4.0,19.16666666666668,537.2857142857147,2020-12-28 +109,1069.2,4.0,18.761904761904773,541.0952380952385,2020-12-28 +126,1244.5,4.0,18.7857142857143,496.2380952380956,2020-12-28 +125,1235.0,4.0,18.690476190476204,490.52380952380986,2020-12-28 +124,1224.7,4.0,18.642857142857157,493.0000000000003,2020-12-28 +123,1213.8,4.0,18.85714285714287,510.00000000000034,2020-12-28 +122,1203.9,4.0,19.11904761904763,534.1904761904766,2020-12-28 +121,1193.5,4.0,19.309523809523824,544.4285714285718,2020-12-28 +120,1182.8,4.0,19.047619047619058,537.4285714285718,2020-12-28 +119,1172.8,4.0,18.761904761904773,534.8095238095241,2020-12-28 +118,1162.6,4.0,18.452380952380963,527.8571428571432,2020-12-28 +117,1152.0,4.0,18.380952380952394,529.6190476190479,2020-12-28 +116,1141.0,4.0,18.333333333333343,531.9523809523813,2020-12-28 +115,1130.9,4.0,18.523809523809536,532.4285714285718,2020-12-28 +114,1120.6,4.0,18.833333333333346,523.0952380952384,2020-12-28 +113,1110.0,4.0,18.833333333333346,528.0000000000003,2020-12-28 +112,1100.1,4.0,18.85714285714287,537.5714285714289,2020-12-28 +111,1090.1,4.0,18.85714285714287,542.4285714285718,2020-12-28 +110,1079.7,4.0,18.7857142857143,547.0952380952384,2020-12-28 +89,862.2,4.0,18.809523809523824,522.9523809523813,2020-12-28 +88,851.8,4.0,18.92857142857144,533.6190476190479,2020-12-28 +87,841.2,4.0,19.047619047619058,550.4285714285718,2020-12-28 +86,830.5,4.0,18.952380952380963,545.9047619047623,2020-12-28 +64,601.1,4.0,17.880952380952394,543.0000000000003,2020-12-28 +63,590.4,4.0,18.09523809523811,543.8571428571432,2020-12-28 +62,579.2,4.0,17.642857142857153,553.1428571428576,2020-12-28 +61,569.1,4.0,17.333333333333343,562.4761904761908,2020-12-28 +60,558.8,4.0,17.428571428571438,566.5714285714289,2020-12-28 +59,546.4,4.0,17.50000000000001,558.5714285714289,2020-12-28 +58,535.8,4.0,17.761904761904773,557.0476190476194,2020-12-28 +57,525.2,4.0,18.42857142857144,556.0000000000003,2020-12-28 +56,514.3,4.0,16.2857142857143,561.714285714286,2020-12-28 +55,503.4,4.0,18.714285714285726,572.9523809523813,2020-12-28 +54,492.2,4.0,26.380952380952397,567.7142857142861,2020-12-28 +53,482.5,4.0,28.404761904761926,549.9047619047623,2020-12-28 +52,479.5,4.0,25.738095238095255,536.666666666667,2020-12-28 +51,452.2,4.0,19.2857142857143,535.3809523809527,2020-12-28 +46,433.4,4.0,17.190476190476204,566.6190476190479,2020-12-28 +45,433.4,4.0,18.42857142857144,560.1904761904766,2020-12-28 +44,422.6,4.0,17.47619047619049,557.666666666667,2020-12-28 +65,611.4,4.0,18.023809523809536,548.4761904761908,2020-12-28 +292,9202.0,4.0,17.96571428571429,100.00000000000003,2020-12-28 +66,622.3,4.0,18.190476190476204,546.2857142857147,2020-12-28 +68,643.3,4.0,18.642857142857153,528.761904761905,2020-12-28 +85,820.5,4.0,19.023809523809536,549.5714285714289,2020-12-28 +84,810.0,4.0,19.35714285714287,550.5714285714289,2020-12-28 +83,799.5,4.0,19.09523809523811,549.4761904761908,2020-12-28 +82,789.5,4.0,18.880952380952394,550.1904761904766,2020-12-28 +81,779.1,4.0,18.714285714285726,554.6190476190479,2020-12-28 +80,768.3,4.0,18.547619047619058,559.0952380952385,2020-12-28 +79,757.6,4.0,18.80952380952382,566.7619047619052,2020-12-28 +78,747.1,4.0,19.2857142857143,569.8571428571432,2020-12-28 +77,737.0,4.0,19.16666666666668,579.3333333333337,2020-12-28 +76,726.3,4.0,19.238095238095248,585.0476190476195,2020-12-28 +75,716.2,4.0,19.023809523809536,572.0476190476195,2020-12-28 +74,705.8,4.0,18.66666666666668,554.2380952380956,2020-12-28 +73,695.6,4.0,18.214285714285726,551.3333333333337,2020-12-28 +72,684.9,4.0,17.880952380952394,549.5238095238099,2020-12-28 +71,674.6,4.0,17.97619047619049,557.2857142857147,2020-12-28 +70,663.8,4.0,18.380952380952394,551.5714285714289,2020-12-28 +69,653.5,4.0,18.50000000000001,539.6190476190479,2020-12-28 +67,632.8,4.0,18.380952380952394,534.5714285714289,2020-12-28 +127,1254.9,4.0,18.97619047619049,513.5238095238099,2020-12-28 +291,9164.0,4.0,17.89714285714286,100.00000000000003,2020-12-28 +289,9102.0,4.0,17.89714285714286,100.00000000000003,2020-12-28 +105,3456.0,4.0,17.50367346938776,100.00000000000003,2020-12-28 +104,3415.0,4.0,17.123265306122455,100.00000000000003,2020-12-28 +103,3383.0,4.0,16.337959183673476,100.00000000000003,2020-12-28 +99,3245.0,4.0,17.06938775510205,100.00000000000003,2020-12-28 +98,3213.0,4.0,17.549387755102053,100.00000000000003,2020-12-28 +97,3171.0,4.0,15.62285714285715,100.00000000000003,2020-12-28 +94,3073.0,4.0,16.357551020408167,100.00000000000003,2020-12-28 +106,3487.0,4.0,19.363265306122457,100.00000000000003,2020-12-28 +93,3041.0,4.0,16.672653061224494,100.00000000000003,2020-12-28 +91,2967.0,4.0,15.485714285714295,100.00000000000003,2020-12-28 +90,2934.0,4.0,16.298775510204088,100.00000000000003,2020-12-28 +89,2899.0,4.0,17.808979591836742,100.00000000000003,2020-12-28 +88,2855.0,4.0,18.176326530612254,100.00000000000003,2020-12-28 +87,2822.0,4.0,17.255510204081638,100.00000000000003,2020-12-28 +82,2654.0,4.0,16.426122448979598,100.00000000000003,2020-12-28 +81,2623.0,4.0,17.745306122448987,100.00000000000003,2020-12-28 +92,2999.0,4.0,15.444897959183677,100.00000000000003,2020-12-28 +107,3519.0,4.0,19.96571428571429,100.00000000000003,2020-12-28 +108,3561.0,4.0,18.56979591836735,100.00000000000003,2020-12-28 +109,3593.0,4.0,15.773061224489801,100.00000000000003,2020-12-28 +132,4383.0,4.0,17.08897959183674,100.00000000000003,2020-12-28 +131,4352.0,4.0,18.10285714285715,100.00000000000003,2020-12-28 +130,4317.0,4.0,17.706122448979603,100.00000000000003,2020-12-28 +129,4283.0,4.0,16.352653061224494,100.00000000000003,2020-12-28 +128,4252.0,4.0,16.137142857142862,100.00000000000003,2020-12-28 +127,4210.0,4.0,16.480000000000004,100.00000000000003,2020-12-28 +126,4177.0,4.0,16.501224489795923,100.00000000000003,2020-12-28 +122,4044.0,4.0,16.501224489795923,100.00000000000003,2020-12-28 +121,4002.0,4.0,16.465306122448986,100.00000000000003,2020-12-28 +120,3976.0,4.0,16.210612244897966,100.00000000000003,2020-12-28 +119,3931.0,4.0,16.622040816326535,100.00000000000003,2020-12-28 +118,3897.0,4.0,17.06938775510205,100.00000000000003,2020-12-28 +117,3866.0,4.0,15.461224489795924,100.00000000000003,2020-12-28 +113,3730.0,4.0,19.191836734693883,100.00000000000003,2020-12-28 +112,3697.0,4.0,20.844081632653072,100.00000000000003,2020-12-28 +111,3665.0,4.0,18.568163265306136,100.00000000000003,2020-12-28 +110,3624.0,4.0,15.887346938775515,100.00000000000003,2020-12-28 +80,2581.0,4.0,18.71020408163266,100.00000000000003,2020-12-28 +136,4520.0,4.0,15.417142857142863,100.00000000000003,2020-12-28 +79,2549.0,4.0,19.642448979591848,100.00000000000003,2020-12-28 +77,2476.0,4.0,16.930612244897965,100.00000000000003,2020-12-28 +53,1612.0,4.0,16.484897959183677,100.00000000000003,2020-12-28 +50,1502.0,4.0,15.324081632653066,100.00000000000003,2020-12-28 +49,1459.0,4.0,15.882448979591842,100.00000000000003,2020-12-28 +48,1426.0,4.0,16.74448979591837,100.00000000000003,2020-12-28 +47,1393.0,4.0,18.34775510204082,100.00000000000003,2020-12-28 +46,1350.0,4.0,18.682448979591847,100.00000000000003,2020-12-28 +45,1319.0,4.0,15.715918367346944,100.00000000000003,2020-12-28 +54,1644.0,4.0,19.260408163265318,100.00000000000003,2020-12-28 +29,881.0,4.0,15.172244897959192,100.00000000000003,2020-12-28 +27,818.0,4.0,17.338775510204087,100.00000000000003,2020-12-28 +26,785.0,4.0,15.709387755102046,100.00000000000003,2020-12-28 +25,749.0,4.0,15.14285714285715,100.00000000000003,2020-12-28 +19,554.0,4.0,15.157551020408171,100.00000000000003,2020-12-28 +6,179.0,4.0,17.211428571428577,100.00000000000003,2020-12-28 +5,142.0,4.0,20.845714285714294,100.00000000000003,2020-12-28 +4,116.0,4.0,20.620408163265317,100.00000000000003,2020-12-28 +28,845.0,4.0,17.760000000000012,100.00000000000003,2020-12-28 +55,1677.0,4.0,19.755102040816336,100.00000000000003,2020-12-28 +56,1722.0,4.0,17.500408163265313,100.00000000000003,2020-12-28 +59,1822.0,4.0,17.91183673469388,100.00000000000003,2020-12-28 +76,2444.0,4.0,15.568979591836737,100.00000000000003,2020-12-28 +75,2412.0,4.0,15.185306122448985,100.00000000000003,2020-12-28 +74,2369.0,4.0,16.001632653061233,100.00000000000003,2020-12-28 +73,2338.0,4.0,15.836734693877556,100.00000000000003,2020-12-28 +72,2305.0,4.0,16.657959183673476,100.00000000000003,2020-12-28 +71,2261.0,4.0,17.322448979591844,100.00000000000003,2020-12-28 +70,2228.0,4.0,18.52081632653062,100.00000000000003,2020-12-28 +69,2196.0,4.0,18.93061224489797,100.00000000000003,2020-12-28 +68,2152.0,4.0,20.171428571428578,100.00000000000003,2020-12-28 +67,2120.0,4.0,21.490612244897967,100.00000000000003,2020-12-28 +66,2088.0,4.0,22.186122448979596,100.00000000000003,2020-12-28 +65,2043.0,4.0,21.588571428571434,100.00000000000003,2020-12-28 +64,2011.0,4.0,20.396734693877555,100.00000000000003,2020-12-28 +63,1944.0,4.0,19.902040816326537,100.00000000000003,2020-12-28 +62,1933.0,4.0,20.587755102040823,100.00000000000003,2020-12-28 +61,1901.0,4.0,21.774693877551027,100.00000000000003,2020-12-28 +60,1866.0,4.0,21.103673469387758,100.00000000000003,2020-12-28 +78,2518.0,4.0,19.123265306122462,100.00000000000003,2020-12-28 +137,4557.0,4.0,15.691428571428577,100.00000000000003,2020-12-28 +138,4587.0,4.0,15.185306122448985,100.00000000000003,2020-12-28 +144,4798.0,4.0,16.137142857142862,100.00000000000003,2020-12-28 +240,7551.0,4.0,15.936326530612252,100.00000000000003,2020-12-28 +234,7367.0,4.0,15.082448979591845,100.00000000000003,2020-12-28 +233,7342.0,4.0,17.196734693877556,100.00000000000003,2020-12-28 +232,7305.0,4.0,17.730612244897966,100.00000000000003,2020-12-28 +231,7279.0,4.0,16.788571428571437,100.00000000000003,2020-12-28 +224,7057.0,4.0,15.097142857142863,100.00000000000003,2020-12-28 +223,7018.0,4.0,16.574693877551027,100.00000000000003,2020-12-28 +241,7588.0,4.0,17.828571428571433,100.00000000000003,2020-12-28 +222,6993.0,4.0,16.465306122448986,100.00000000000003,2020-12-28 +220,6930.0,4.0,16.382040816326537,100.00000000000003,2020-12-28 +219,6891.0,4.0,17.500408163265313,100.00000000000003,2020-12-28 +218,6865.0,4.0,18.019591836734698,100.00000000000003,2020-12-28 +217,6826.0,4.0,18.205714285714286,100.00000000000003,2020-12-28 +216,6792.0,4.0,18.019591836734698,100.00000000000003,2020-12-28 +215,6765.0,4.0,17.48571428571429,100.00000000000003,2020-12-28 +214,6725.0,4.0,16.52897959183674,100.00000000000003,2020-12-28 +221,6955.0,4.0,16.137142857142862,100.00000000000003,2020-12-28 +242,7612.0,4.0,18.244897959183675,100.00000000000003,2020-12-28 +243,7649.0,4.0,17.593469387755103,100.00000000000003,2020-12-28 +244,7674.0,4.0,16.102857142857147,100.00000000000003,2020-12-28 +288,9063.0,4.0,17.96571428571429,100.00000000000003,2020-12-28 +287,9037.0,4.0,18.484897959183677,100.00000000000003,2020-12-28 +286,8998.0,4.0,19.676734693877556,100.00000000000003,2020-12-28 +285,8973.0,4.0,20.191020408163272,100.00000000000003,2020-12-28 +284,8934.0,4.0,19.211428571428584,100.00000000000003,2020-12-28 +283,8910.0,4.0,16.548571428571435,100.00000000000003,2020-12-28 +277,8710.0,4.0,15.676734693877556,100.00000000000003,2020-12-28 +276,8686.0,4.0,16.156734693877556,100.00000000000003,2020-12-28 +275,8649.0,4.0,15.62285714285715,100.00000000000003,2020-12-28 +269,8464.0,4.0,16.137142857142862,100.00000000000003,2020-12-28 +268,8428.0,4.0,17.65714285714286,100.00000000000003,2020-12-28 +267,8402.0,4.0,17.593469387755107,100.00000000000003,2020-12-28 +266,8365.0,4.0,16.705306122448984,100.00000000000003,2020-12-28 +265,8332.0,4.0,15.985306122448986,100.00000000000003,2020-12-28 +264,8301.0,4.0,15.397551020408166,100.00000000000003,2020-12-28 +260,8165.0,4.0,15.671836734693883,100.00000000000003,2020-12-28 +259,8139.0,4.0,15.054693877551024,100.00000000000003,2020-12-28 +213,6700.0,4.0,15.862857142857148,100.00000000000003,2020-12-28 +212,6663.0,4.0,15.877551020408166,100.00000000000003,2020-12-28 +211,6628.0,4.0,16.411428571428576,100.00000000000003,2020-12-28 +210,6606.0,4.0,17.524897959183683,100.00000000000003,2020-12-28 +174,5574.0,4.0,18.435918367346947,100.00000000000003,2020-12-28 +173,5540.0,4.0,16.671020408163272,100.00000000000003,2020-12-28 +172,5509.0,4.0,16.77877551020409,100.00000000000003,2020-12-28 +171,5474.0,4.0,18.50122448979593,100.00000000000003,2020-12-28 +170,5437.0,4.0,18.528979591836745,100.00000000000003,2020-12-28 +169,5406.0,4.0,17.622857142857153,100.00000000000003,2020-12-28 +168,5366.0,4.0,16.89632653061225,100.00000000000003,2020-12-28 +167,5335.0,4.0,17.466122448979597,100.00000000000003,2020-12-28 +166,5304.0,4.0,17.902040816326533,100.00000000000003,2020-12-28 +165,5263.0,4.0,18.32326530612245,100.00000000000003,2020-12-28 +164,5231.0,4.0,18.068571428571435,100.00000000000003,2020-12-28 +163,5196.0,4.0,16.897959183673475,100.00000000000003,2020-12-28 +160,5087.0,4.0,16.631836734693877,100.00000000000003,2020-12-28 +159,5054.0,4.0,18.96163265306123,100.00000000000003,2020-12-28 +158,5011.0,4.0,19.064489795918377,100.00000000000003,2020-12-28 +157,4975.0,4.0,16.72816326530613,100.00000000000003,2020-12-28 +145,4831.0,4.0,15.843265306122454,100.00000000000003,2020-12-28 +175,5606.0,4.0,20.158367346938782,100.00000000000003,2020-12-28 +290,9126.0,4.0,18.029387755102043,100.00000000000003,2020-12-28 +176,5648.0,4.0,19.371428571428577,100.00000000000003,2020-12-28 +186,5796.0,4.0,19.714285714285726,100.00000000000003,2020-12-28 +209,6572.0,4.0,18.759183673469398,100.00000000000003,2020-12-28 +208,6532.0,4.0,19.34857142857144,100.00000000000003,2020-12-28 +207,6497.0,4.0,17.617959183673477,100.00000000000003,2020-12-28 +203,6366.0,4.0,15.064489795918377,100.00000000000003,2020-12-28 +202,6340.0,4.0,16.951836734693885,100.00000000000003,2020-12-28 +201,6306.0,4.0,15.87755102040817,100.00000000000003,2020-12-28 +197,6170.0,4.0,15.500408163265313,100.00000000000003,2020-12-28 +468,4761.7,4.0,18.000000000000014,462.42857142857173,2020-12-28 +195,6097.0,4.0,19.60816326530613,100.00000000000003,2020-12-28 +194,6066.0,4.0,21.245714285714296,100.00000000000003,2020-12-28 +193,6034.0,4.0,20.720000000000013,100.00000000000003,2020-12-28 +192,5993.0,4.0,19.005714285714298,100.00000000000003,2020-12-28 +191,5959.0,4.0,17.190204081632658,100.00000000000003,2020-12-28 +190,5932.0,4.0,17.613061224489797,100.00000000000003,2020-12-28 +189,5898.0,4.0,18.528979591836737,100.00000000000003,2020-12-28 +188,5863.0,4.0,20.501224489795927,100.00000000000003,2020-12-28 +187,5832.0,4.0,21.448163265306135,100.00000000000003,2020-12-28 +177,5682.0,4.0,15.813877551020415,100.00000000000003,2020-12-28 +128,1265.4,4.0,19.000000000000014,529.8571428571432,2020-12-28 +196,6138.0,4.0,16.99918367346939,100.00000000000003,2020-12-28 +130,1285.4,4.0,19.16666666666668,539.2857142857147,2020-12-28 +361,3583.2,4.0,19.571428571428584,527.0952380952384,2020-12-28 +360,3572.4,4.0,19.47619047619049,518.9047619047623,2020-12-28 +359,3561.8,4.0,19.16666666666668,514.4761904761908,2020-12-28 +358,3550.6,4.0,19.2857142857143,510.9523809523813,2020-12-28 +357,3540.1,4.0,19.40476190476192,510.00000000000034,2020-12-28 +356,3529.3,4.0,19.61904761904763,505.7619047619051,2020-12-28 +355,3518.8,4.0,19.547619047619058,498.3333333333337,2020-12-28 +362,3593.6,4.0,19.71428571428573,526.2857142857147,2020-12-28 +354,3508.5,4.0,19.40476190476192,494.00000000000034,2020-12-28 +352,3487.4,4.0,19.261904761904773,503.76190476190504,2020-12-28 +351,3476.6,4.0,19.42857142857144,511.52380952380986,2020-12-28 +350,3466.2,4.0,19.642857142857153,507.4285714285718,2020-12-28 +349,3455.6,4.0,19.73809523809525,500.33333333333366,2020-12-28 +348,3445.1,4.0,19.500000000000014,499.71428571428606,2020-12-28 +347,3434.3,4.0,19.309523809523824,504.3333333333337,2020-12-28 +346,3423.9,4.0,19.428571428571445,505.9523809523813,2020-12-28 +353,3498.2,4.0,19.09523809523811,501.666666666667,2020-12-28 +363,3604.0,4.0,19.642857142857157,529.4285714285718,2020-12-28 +364,3614.6,4.0,19.571428571428584,526.8095238095242,2020-12-28 +365,3625.4,4.0,19.500000000000014,520.1904761904766,2020-12-28 +383,3821.5,4.0,19.190476190476204,498.5714285714289,2020-12-28 +381,3800.0,4.0,19.11904761904763,498.14285714285745,2020-12-28 +380,3789.3,4.0,18.880952380952394,512.3333333333337,2020-12-28 +379,3778.2,4.0,18.90476190476192,515.714285714286,2020-12-28 +378,3767.0,4.0,18.761904761904773,520.8095238095242,2020-12-28 +377,3756.2,4.0,18.761904761904773,517.9523809523813,2020-12-28 +376,3745.5,4.0,18.690476190476204,519.0000000000003,2020-12-28 +375,3734.5,4.0,18.80952380952382,506.61904761904793,2020-12-28 +374,3723.4,4.0,18.690476190476204,508.85714285714323,2020-12-28 +373,3711.4,4.0,18.714285714285726,502.4761904761908,2020-12-28 +372,3701.0,4.0,18.738095238095248,500.1428571428575,2020-12-28 +371,3690.5,4.0,19.190476190476204,495.14285714285745,2020-12-28 +370,3679.5,4.0,19.33333333333335,500.0476190476194,2020-12-28 +369,3668.9,4.0,19.547619047619058,502.0952380952384,2020-12-28 +368,3658.4,4.0,19.52380952380954,505.52380952380986,2020-12-28 +367,3647.2,4.0,19.42857142857144,511.9047619047622,2020-12-28 +366,3636.5,4.0,19.380952380952394,516.3333333333337,2020-12-28 +345,3412.8,4.0,19.214285714285726,508.00000000000034,2020-12-28 +384,3832.4,4.0,19.309523809523824,499.9523809523813,2020-12-28 +344,3402.2,4.0,19.142857142857153,507.4761904761908,2020-12-28 +342,3380.6,4.0,19.190476190476204,509.19047619047655,2020-12-28 +320,3144.4,4.0,19.809523809523824,491.0476190476193,2020-12-28 +319,3133.8,4.0,20.16666666666668,491.7619047619051,2020-12-28 +318,3123.2,4.0,20.23809523809525,500.5714285714289,2020-12-28 +317,3112.6,4.0,20.40476190476192,499.76190476190504,2020-12-28 +316,3102.0,4.0,20.309523809523824,496.19047619047655,2020-12-28 +315,3091.9,4.0,20.02380952380954,489.4285714285718,2020-12-28 +314,3081.4,4.0,20.190476190476204,487.80952380952414,2020-12-28 +321,3154.8,4.0,19.261904761904773,496.2380952380956,2020-12-28 +313,3071.0,4.0,20.16666666666668,491.3333333333337,2020-12-28 +311,3050.6,4.0,20.309523809523824,501.61904761904793,2020-12-28 +310,3039.8,4.0,19.92857142857144,502.52380952380986,2020-12-28 +309,3029.0,4.0,19.642857142857153,500.3333333333337,2020-12-28 +308,3018.5,4.0,19.66666666666668,509.4285714285718,2020-12-28 +307,3007.3,4.0,19.619047619047635,519.0476190476194,2020-12-28 +306,2996.7,4.0,19.642857142857157,521.1428571428575,2020-12-28 +305,2986.2,4.0,19.47619047619049,522.0476190476194,2020-12-28 +312,3060.4,4.0,20.261904761904777,500.2380952380955,2020-12-28 +322,3166.0,4.0,19.09523809523811,498.66666666666697,2020-12-28 +323,3176.9,4.0,18.97619047619049,501.0476190476194,2020-12-28 +324,3187.3,4.0,19.000000000000014,506.0476190476194,2020-12-28 +341,3369.6,4.0,19.190476190476204,511.0476190476194,2020-12-28 +340,3358.9,4.0,19.261904761904773,508.4285714285718,2020-12-28 +339,3347.9,4.0,18.97619047619049,509.2857142857146,2020-12-28 +338,3336.8,4.0,19.023809523809536,511.33333333333366,2020-12-28 +337,3326.4,4.0,19.09523809523811,509.80952380952414,2020-12-28 +336,3315.9,4.0,19.142857142857153,507.52380952380986,2020-12-28 +335,3304.8,4.0,19.333333333333346,506.85714285714323,2020-12-28 +334,3294.2,4.0,19.619047619047635,499.714285714286,2020-12-28 +333,3283.1,4.0,19.738095238095248,501.00000000000034,2020-12-28 +332,3272.6,4.0,19.90476190476192,500.2380952380956,2020-12-28 +331,3262.1,4.0,19.690476190476204,492.52380952380986,2020-12-28 +330,3251.7,4.0,19.309523809523824,492.4285714285718,2020-12-28 +329,3241.1,4.0,19.190476190476204,496.0476190476194,2020-12-28 +328,3230.6,4.0,19.16666666666668,501.90476190476227,2020-12-28 +327,3219.7,4.0,19.071428571428584,508.33333333333366,2020-12-28 +326,3208.8,4.0,19.214285714285726,509.4285714285718,2020-12-28 +325,3198.0,4.0,19.261904761904773,506.2857142857146,2020-12-28 +343,3391.7,4.0,19.261904761904773,509.2857142857146,2020-12-28 +385,3843.0,4.0,19.40476190476192,502.52380952380986,2020-12-28 +386,3853.8,4.0,19.47619047619049,500.52380952380986,2020-12-28 +387,3864.2,4.0,19.52380952380954,499.61904761904793,2020-12-28 +446,4515.5,4.0,18.61904761904763,490.90476190476227,2020-12-28 +445,4503.9,4.0,18.50000000000001,490.4761904761908,2020-12-28 +444,4493.0,4.0,18.380952380952394,493.61904761904793,2020-12-28 +443,4481.9,4.0,18.380952380952394,493.0952380952384,2020-12-28 +442,4470.8,4.0,18.547619047619058,492.0952380952384,2020-12-28 +441,4459.2,4.0,18.61904761904763,495.9523809523813,2020-12-28 +440,4448.1,4.0,18.85714285714287,496.0476190476194,2020-12-28 +447,4526.6,4.0,18.571428571428584,480.8571428571431,2020-12-28 +439,4437.6,4.0,18.833333333333346,503.90476190476227,2020-12-28 +437,4415.0,4.0,18.500000000000014,510.00000000000034,2020-12-28 +436,4403.5,4.0,18.523809523809536,502.7619047619051,2020-12-28 +435,4392.9,4.0,18.571428571428584,507.90476190476227,2020-12-28 +434,4381.8,4.0,18.85714285714287,493.9523809523813,2020-12-28 +433,4370.6,4.0,18.952380952380963,489.0476190476194,2020-12-28 +432,4360.2,4.0,18.90476190476192,492.47619047619077,2020-12-28 +431,4349.1,4.0,18.92857142857144,490.0476190476194,2020-12-28 +438,4426.5,4.0,18.500000000000014,510.9047619047622,2020-12-28 +448,4537.5,4.0,18.523809523809536,469.5714285714289,2020-12-28 +449,4547.9,4.0,18.523809523809536,464.85714285714323,2020-12-28 +450,4558.9,4.0,18.452380952380963,466.71428571428606,2020-12-28 +129,1275.3,4.0,19.023809523809536,522.2380952380956,2020-12-28 +466,4739.4,4.0,17.833333333333346,479.0000000000003,2020-12-28 +465,4728.1,4.0,17.904761904761916,484.5714285714289,2020-12-28 +464,4716.8,4.0,17.85714285714287,489.1428571428575,2020-12-28 +463,4705.4,4.0,17.904761904761916,493.90476190476227,2020-12-28 +462,4694.4,4.0,17.738095238095248,486.3333333333336,2020-12-28 +461,4682.7,4.0,18.00000000000001,483.42857142857173,2020-12-28 +460,4671.1,4.0,18.214285714285726,478.9523809523813,2020-12-28 +459,4659.2,4.0,18.42857142857144,480.2857142857146,2020-12-28 +458,4649.0,4.0,18.214285714285726,484.4761904761908,2020-12-28 +457,4638.1,4.0,18.00000000000001,483.1428571428575,2020-12-28 +456,4627.2,4.0,17.7857142857143,484.4761904761908,2020-12-28 +455,4616.1,4.0,17.785714285714295,486.2857142857146,2020-12-28 +454,4604.3,4.0,17.738095238095248,480.0000000000003,2020-12-28 +453,4593.1,4.0,17.904761904761916,481.2380952380955,2020-12-28 +452,4581.7,4.0,18.071428571428584,484.2380952380956,2020-12-28 +451,4571.1,4.0,18.142857142857153,466.80952380952414,2020-12-28 +430,4338.0,4.0,18.59523809523811,492.0476190476194,2020-12-28 +429,4327.1,4.0,18.380952380952394,502.2380952380955,2020-12-28 +428,4315.9,4.0,18.2857142857143,492.8571428571432,2020-12-28 +427,4304.7,4.0,18.404761904761916,488.33333333333366,2020-12-28 +404,4050.8,4.0,18.452380952380963,502.2857142857146,2020-12-28 +403,4039.7,4.0,18.452380952380963,508.38095238095275,2020-12-28 +402,4028.7,4.0,18.66666666666668,511.9047619047622,2020-12-28 +401,4017.7,4.0,18.500000000000014,519.714285714286,2020-12-28 +400,4006.2,4.0,18.333333333333346,531.0952380952384,2020-12-28 +399,3995.8,4.0,18.380952380952394,533.0000000000003,2020-12-28 +398,3984.2,4.0,18.42857142857144,519.1428571428575,2020-12-28 +397,3973.1,4.0,18.42857142857144,513.8095238095242,2020-12-28 +396,3962.1,4.0,18.761904761904773,496.1904761904765,2020-12-28 +395,3950.6,4.0,18.73809523809525,493.61904761904793,2020-12-28 +394,3939.0,4.0,18.7857142857143,499.3333333333337,2020-12-28 +393,3928.6,4.0,18.97619047619049,505.00000000000034,2020-12-28 +392,3918.1,4.0,19.047619047619058,505.9523809523813,2020-12-28 +391,3907.1,4.0,18.952380952380963,515.5714285714289,2020-12-28 +390,3896.5,4.0,19.023809523809536,513.4285714285718,2020-12-28 +389,3885.5,4.0,19.16666666666668,511.666666666667,2020-12-28 +388,3874.5,4.0,19.333333333333346,504.9523809523813,2020-12-28 +405,4061.9,4.0,18.571428571428584,507.19047619047655,2020-12-28 +304,2975.8,4.0,19.547619047619058,519.1904761904765,2020-12-28 +406,4072.9,4.0,18.642857142857153,503.8571428571432,2020-12-28 +408,4094.5,4.0,18.571428571428584,487.80952380952414,2020-12-28 +426,4293.0,4.0,18.30952380952382,489.76190476190504,2020-12-28 +425,4281.8,4.0,18.47619047619049,490.9523809523813,2020-12-28 +424,4270.7,4.0,18.42857142857144,495.3333333333337,2020-12-28 +423,4259.3,4.0,18.547619047619058,495.0952380952384,2020-12-28 +422,4248.4,4.0,18.7857142857143,497.7619047619051,2020-12-28 +421,4237.1,4.0,18.880952380952394,495.66666666666697,2020-12-28 +420,4226.4,4.0,18.833333333333346,496.52380952380986,2020-12-28 +419,4215.1,4.0,18.90476190476192,508.0952380952384,2020-12-28 +418,4203.9,4.0,18.571428571428584,516.1904761904766,2020-12-28 +417,4192.9,4.0,18.523809523809536,504.33333333333366,2020-12-28 +416,4181.7,4.0,18.547619047619058,497.38095238095275,2020-12-28 +415,4171.1,4.0,18.428571428571438,484.4761904761908,2020-12-28 +414,4160.6,4.0,18.642857142857153,475.4285714285718,2020-12-28 +413,4149.8,4.0,18.809523809523824,475.0476190476194,2020-12-28 +412,4138.3,4.0,18.547619047619058,483.714285714286,2020-12-28 +411,4128.0,4.0,18.50000000000001,482.71428571428606,2020-12-28 +409,4105.8,4.0,18.380952380952394,482.61904761904793,2020-12-28 +407,4083.4,4.0,18.714285714285726,489.52380952380986,2020-12-28 +303,2964.9,4.0,19.809523809523824,514.8571428571431,2020-12-28 +410,4117.1,4.0,18.35714285714287,481.0476190476194,2020-12-28 +301,2942.8,4.0,20.142857142857157,508.09523809523847,2020-12-28 +196,1871.2,4.0,22.452380952380967,540.2857142857147,2020-12-28 +195,1861.3,4.0,22.09523809523811,536.1428571428576,2020-12-28 +194,1851.1,4.0,21.571428571428584,544.0952380952384,2020-12-28 +193,1841.2,4.0,21.142857142857157,532.2380952380956,2020-12-28 +192,1831.0,4.0,21.2857142857143,525.8571428571432,2020-12-28 +191,1820.2,4.0,22.357142857142872,527.666666666667,2020-12-28 +190,1810.3,4.0,20.428571428571445,588.4285714285718,2020-12-28 +197,1881.6,4.0,22.547619047619065,535.6190476190479,2020-12-28 +189,1800.0,4.0,19.142857142857153,467.76190476190504,2020-12-28 +187,1775.3,4.0,18.7857142857143,362.3809523809526,2020-12-28 +186,1775.3,4.0,19.833333333333346,379.0952380952383,2020-12-28 +185,1765.2,4.0,22.21428571428573,454.5714285714289,2020-12-28 +184,1755.1,4.0,21.309523809523824,591.8571428571432,2020-12-28 +183,1744.6,4.0,21.2857142857143,551.0000000000003,2020-12-28 +182,1734.5,4.0,21.33333333333335,547.6190476190479,2020-12-28 +181,1724.3,4.0,21.071428571428584,543.714285714286,2020-12-28 +188,1791.2,4.0,18.59523809523811,396.19047619047643,2020-12-28 +198,1891.5,4.0,22.666666666666682,532.0476190476194,2020-12-28 +199,1900.7,4.0,22.500000000000014,531.4285714285718,2020-12-28 +200,1911.1,4.0,22.428571428571445,533.2380952380956,2020-12-28 +217,2082.6,4.0,21.761904761904777,541.6190476190479,2020-12-28 +216,2072.8,4.0,21.619047619047635,541.6190476190479,2020-12-28 +215,2062.4,4.0,21.71428571428573,540.6190476190479,2020-12-28 +214,2052.1,4.0,21.95238095238097,541.8095238095241,2020-12-28 +213,2041.7,4.0,22.119047619047635,536.5238095238099,2020-12-28 +212,2031.9,4.0,22.000000000000014,528.5714285714289,2020-12-28 +211,2021.6,4.0,21.928571428571445,525.2380952380955,2020-12-28 +210,2011.5,4.0,21.857142857142872,519.5238095238099,2020-12-28 +209,2000.7,4.0,21.952380952380967,518.9523809523813,2020-12-28 +208,1990.8,4.0,22.119047619047635,522.3333333333337,2020-12-28 +207,1981.2,4.0,22.357142857142872,523.3809523809527,2020-12-28 +206,1971.5,4.0,22.40476190476192,519.666666666667,2020-12-28 +205,1961.3,4.0,22.47619047619049,522.3809523809527,2020-12-28 +204,1951.7,4.0,22.47619047619049,523.0476190476195,2020-12-28 +203,1941.7,4.0,22.357142857142875,531.1428571428576,2020-12-28 +202,1931.3,4.0,22.33333333333335,534.4285714285718,2020-12-28 +201,1921.4,4.0,22.357142857142875,530.8571428571432,2020-12-28 +180,1714.3,4.0,20.809523809523824,530.5714285714289,2020-12-28 +179,1704.1,4.0,20.761904761904773,518.3809523809527,2020-12-28 +178,1693.2,4.0,20.619047619047635,521.2380952380956,2020-12-28 +177,1682.9,4.0,20.761904761904773,528.2857142857147,2020-12-28 +154,1441.7,4.0,20.52380952380954,499.52380952380986,2020-12-28 +153,1431.2,4.0,20.42857142857144,505.0476190476194,2020-12-28 +152,1420.5,4.0,20.2857142857143,505.8571428571432,2020-12-28 +151,1410.2,4.0,20.357142857142872,502.4761904761908,2020-12-28 +150,1399.7,4.0,20.42857142857144,495.9047619047622,2020-12-28 +149,1390.1,4.0,20.54761904761906,494.5714285714289,2020-12-28 +148,1380.0,4.0,20.40476190476192,498.85714285714323,2020-12-28 +147,1369.4,4.0,20.500000000000014,497.61904761904793,2020-12-28 +146,1358.9,4.0,20.809523809523824,518.714285714286,2020-12-28 +145,1348.8,4.0,19.214285714285726,561.7619047619052,2020-12-28 +144,1340.2,4.0,23.309523809523824,487.71428571428606,2020-12-28 +143,1333.1,4.0,29.857142857142875,375.5714285714288,2020-12-28 +134,1316.9,4.0,21.571428571428584,285.66666666666686,2020-12-28 +133,1295.0,4.0,19.66666666666668,333.76190476190493,2020-12-28 +132,1295.0,4.0,19.642857142857157,408.76190476190504,2020-12-28 +302,2953.7,4.0,19.952380952380963,508.4285714285718,2020-12-28 +131,1295.0,4.0,19.190476190476204,491.9523809523813,2020-12-28 +155,1452.0,4.0,20.7857142857143,494.8571428571432,2020-12-28 +218,2093.2,4.0,21.547619047619065,536.1904761904766,2020-12-28 +156,1462.4,4.0,20.83333333333335,491.0000000000003,2020-12-28 +158,1483.2,4.0,20.42857142857144,507.2380952380956,2020-12-28 +176,1672.2,4.0,21.40476190476192,532.8095238095241,2020-12-28 +175,1661.2,4.0,21.690476190476204,551.4761904761908,2020-12-28 +174,1651.8,4.0,21.928571428571445,550.2380952380956,2020-12-28 +173,1642.0,4.0,21.47619047619049,549.5714285714289,2020-12-28 +172,1631.9,4.0,20.85714285714287,547.0952380952384,2020-12-28 +171,1622.0,4.0,20.2857142857143,539.1428571428576,2020-12-28 +170,1611.1,4.0,20.23809523809525,530.2380952380956,2020-12-28 +169,1600.6,4.0,20.21428571428573,535.666666666667,2020-12-28 +167,1579.5,4.0,20.47619047619049,530.9523809523813,2020-12-28 +166,1569.5,4.0,20.47619047619049,528.0476190476194,2020-12-28 +165,1558.5,4.0,20.40476190476192,527.7619047619052,2020-12-28 +164,1547.6,4.0,20.309523809523824,523.2857142857147,2020-12-28 +163,1536.8,4.0,20.190476190476204,527.5238095238099,2020-12-28 +162,1526.4,4.0,20.09523809523811,526.8571428571431,2020-12-28 +161,1515.7,4.0,20.02380952380954,528.5714285714289,2020-12-28 +160,1504.9,4.0,19.928571428571445,524.0476190476195,2020-12-28 +159,1494.2,4.0,20.23809523809525,520.2857142857147,2020-12-28 +157,1472.6,4.0,20.71428571428573,496.8571428571432,2020-12-28 +219,2103.5,4.0,21.54761904761906,536.5714285714289,2020-12-28 +168,1590.3,4.0,20.40476190476192,530.8095238095242,2020-12-28 +221,2123.5,4.0,21.2857142857143,533.0000000000003,2020-12-28 +278,2705.5,4.0,20.119047619047635,503.3333333333336,2020-12-28 +277,2695.6,4.0,20.21428571428573,504.5714285714289,2020-12-28 +276,2685.3,4.0,20.261904761904773,506.38095238095275,2020-12-28 +275,2675.1,4.0,20.04761904761906,491.52380952380986,2020-12-28 +274,2664.8,4.0,20.04761904761906,486.3333333333337,2020-12-28 +273,2654.4,4.0,19.833333333333346,483.33333333333366,2020-12-28 +272,2643.9,4.0,19.619047619047635,486.4761904761908,2020-12-28 +279,2716.0,4.0,20.142857142857157,505.95238095238125,2020-12-28 +271,2633.3,4.0,19.833333333333346,496.0952380952384,2020-12-28 +269,2612.1,4.0,20.09523809523811,503.76190476190516,2020-12-28 +268,2601.8,4.0,20.190476190476204,505.4285714285718,2020-12-28 +267,2591.0,4.0,20.071428571428584,516.666666666667,2020-12-28 +266,2580.5,4.0,19.952380952380967,528.5238095238099,2020-12-28 +265,2570.3,4.0,20.04761904761906,508.1428571428575,2020-12-28 +264,2559.9,4.0,19.880952380952394,481.4761904761908,2020-12-28 +263,2549.9,4.0,19.833333333333346,471.714285714286,2020-12-28 +270,2622.7,4.0,20.04761904761906,503.1428571428575,2020-12-28 +280,2726.4,4.0,20.071428571428584,504.76190476190516,2020-12-28 +281,2737.0,4.0,19.952380952380967,505.61904761904793,2020-12-28 +282,2747.4,4.0,20.04761904761906,506.4285714285718,2020-12-28 +299,2921.5,4.0,20.2857142857143,501.0476190476194,2020-12-28 +220,2113.8,4.0,21.2857142857143,537.666666666667,2020-12-28 +298,2910.9,4.0,20.47619047619049,511.09523809523847,2020-12-28 +297,2900.8,4.0,20.54761904761906,513.8571428571432,2020-12-28 +296,2890.1,4.0,20.54761904761906,508.9523809523813,2020-12-28 +295,2879.8,4.0,20.523809523809536,514.5714285714289,2020-12-28 +294,2869.1,4.0,20.309523809523824,511.8095238095242,2020-12-28 +293,2859.6,4.0,20.04761904761906,512.5238095238099,2020-12-28 +292,2850.8,4.0,19.619047619047635,502.8095238095242,2020-12-28 +291,2839.8,4.0,19.333333333333346,489.5714285714289,2020-12-28 +290,2830.1,4.0,19.2857142857143,483.14285714285745,2020-12-28 +289,2819.5,4.0,19.35714285714287,486.85714285714323,2020-12-28 +288,2809.2,4.0,19.42857142857144,486.61904761904793,2020-12-28 +287,2799.4,4.0,19.500000000000014,485.28571428571456,2020-12-28 +286,2789.1,4.0,19.52380952380954,470.80952380952414,2020-12-28 +284,2768.2,4.0,19.833333333333346,485.3333333333336,2020-12-28 +283,2757.6,4.0,19.97619047619049,495.52380952380986,2020-12-28 +262,2539.2,4.0,20.02380952380954,474.4761904761908,2020-12-28 +261,2528.6,4.0,20.40476190476192,492.2857142857146,2020-12-28 +285,2778.9,4.0,19.66666666666668,475.4761904761908,2020-12-28 +259,2508.0,4.0,20.928571428571445,487.0952380952384,2020-12-28 +238,2295.7,4.0,21.809523809523824,504.76190476190516,2020-12-28 +237,2286.4,4.0,21.952380952380967,496.1904761904765,2020-12-28 +236,2276.1,4.0,21.809523809523824,496.61904761904793,2020-12-28 +235,2266.2,4.0,21.785714285714302,499.33333333333366,2020-12-28 +234,2256.2,4.0,21.500000000000014,495.2380952380955,2020-12-28 +233,2246.7,4.0,21.309523809523824,502.38095238095275,2020-12-28 +232,2236.6,4.0,20.880952380952394,509.1428571428575,2020-12-28 +231,2225.8,4.0,20.73809523809525,510.0952380952384,2020-12-28 +239,2306.4,4.0,21.976190476190492,512.3333333333337,2020-12-28 +230,2215.6,4.0,20.71428571428573,505.38095238095275,2020-12-28 +228,2195.3,4.0,20.809523809523824,502.9523809523813,2020-12-28 +227,2185.3,4.0,20.97619047619049,508.4761904761908,2020-12-28 +226,2175.3,4.0,20.880952380952394,513.3333333333337,2020-12-28 +225,2164.8,4.0,21.16666666666668,515.0476190476194,2020-12-28 +224,2154.6,4.0,21.309523809523824,513.9523809523813,2020-12-28 +260,2518.1,4.0,20.66666666666668,501.0952380952384,2020-12-28 +223,2144.4,4.0,21.52380952380954,520.714285714286,2020-12-28 +222,2133.9,4.0,21.33333333333335,524.0476190476194,2020-12-28 +229,2205.1,4.0,20.95238095238097,504.8571428571432,2020-12-28 +240,2316.9,4.0,22.02380952380954,521.8095238095241,2020-12-28 +300,2932.6,4.0,20.2857142857143,499.33333333333366,2020-12-28 +242,2336.4,4.0,21.928571428571445,540.3809523809527,2020-12-28 +241,2327.1,4.0,22.047619047619065,535.5238095238099,2020-12-28 +257,2487.4,4.0,20.952380952380967,481.33333333333366,2020-12-28 +256,2477.5,4.0,21.190476190476204,495.66666666666697,2020-12-28 +255,2467.5,4.0,21.66666666666668,501.57142857142895,2020-12-28 +254,2457.6,4.0,21.73809523809525,496.4761904761908,2020-12-28 +253,2447.2,4.0,21.571428571428584,492.85714285714323,2020-12-28 +252,2437.7,4.0,21.2857142857143,489.85714285714323,2020-12-28 +251,2428.2,4.0,21.309523809523824,483.71428571428606,2020-12-28 +250,2417.7,4.0,21.21428571428573,482.66666666666697,2020-12-28 +258,2498.0,4.0,20.7857142857143,475.2380952380956,2020-12-28 +249,2407.7,4.0,21.261904761904773,482.52380952380986,2020-12-28 +248,2397.6,4.0,21.333333333333346,483.4761904761908,2020-12-28 +247,2387.8,4.0,21.09523809523811,475.0476190476194,2020-12-28 +246,2377.5,4.0,20.928571428571445,479.4761904761908,2020-12-28 +245,2367.5,4.0,20.952380952380963,489.90476190476227,2020-12-28 +244,2356.8,4.0,21.071428571428584,509.71428571428606,2020-12-28 +243,2346.6,4.0,21.500000000000014,528.0952380952384,2020-12-28 +622,5554.6,4.0,31.285714285714306,562.5576036866363,2020-12-31 +623,5562.4,4.0,31.333333333333357,568.0069124423967,2020-12-31 +624,5570.7,4.0,31.285714285714306,541.3594470046087,2020-12-31 +627,5594.7,4.0,31.285714285714306,520.4896313364059,2020-12-31 +626,5587.0,4.0,31.047619047619065,528.0558755760371,2020-12-31 +588,5249.9,4.0,30.04761904761907,464.59058090049473,2020-12-31 +628,5603.1,4.0,31.333333333333357,529.5420506912445,2020-12-31 +629,5611.5,4.0,31.285714285714306,552.8398617511524,2020-12-31 +625,5579.0,4.0,31.047619047619065,529.2108294930879,2020-12-31 +621,5546.4,4.0,31.142857142857167,570.5414746543784,2020-12-31 +618,5522.1,4.0,31.238095238095255,539.9151305683566,2020-12-31 +619,5530.5,4.0,30.904761904761923,567.0161290322585,2020-12-31 +609,5447.8,4.0,25.857142857142875,634.8411102260404,2020-12-31 +617,5514.3,4.0,31.142857142857167,532.5552995391708,2020-12-31 +616,5505.4,4.0,31.047619047619065,532.2361751152076,2020-12-31 +608,5439.8,4.0,22.642857142857157,592.3456491007989,2020-12-31 +615,5497.4,4.0,31.00000000000002,552.8037949182849,2020-12-31 +614,5489.7,4.0,30.8809523809524,579.3365503261065,2020-12-31 +630,5619.2,4.0,31.047619047619065,564.1733870967746,2020-12-31 +612,5472.6,4.0,30.714285714285737,592.8601955423337,2020-12-31 +611,5464.1,4.0,30.666666666666686,603.2351473941249,2020-12-31 +610,5455.8,4.0,28.92857142857145,648.8539535672082,2020-12-31 +620,5538.0,4.0,30.904761904761923,578.2258064516132,2020-12-31 +613,5480.3,4.0,30.619047619047638,594.7377209235033,2020-12-31 +661,5890.5,4.0,30.833333333333353,562.7028569217853,2020-12-31 +632,5635.8,4.0,31.285714285714306,533.5599078341018,2020-12-31 +679,6035.4,4.0,31.333333333333357,540.6192396313368,2020-12-31 +587,5241.8,4.0,31.142857142857167,508.6871553954066,2020-12-31 +678,6027.1,4.0,31.285714285714306,552.3329493087562,2020-12-31 +677,6018.6,4.0,31.714285714285737,566.5408986175119,2020-12-31 +676,6010.8,4.0,31.761904761904788,588.6981566820281,2020-12-31 +675,6003.0,4.0,31.428571428571452,572.1860599078345,2020-12-31 +674,5994.8,4.0,31.476190476190496,547.0794930875579,2020-12-31 +673,5987.2,4.0,31.476190476190496,528.1797235023046,2020-12-31 +672,5979.5,4.0,31.523809523809547,533.9458525345626,2020-12-31 +670,5963.2,4.0,31.333333333333357,575.0806451612907,2020-12-31 +669,5954.9,4.0,31.19047619047621,574.8531105990787,2020-12-31 +631,5627.3,4.0,31.047619047619065,540.0576036866363,2020-12-31 +668,5946.3,4.0,31.19047619047621,551.0887096774197,2020-12-31 +666,5930.6,4.0,31.285714285714306,528.6635944700465,2020-12-31 +665,5923.4,4.0,31.142857142857167,548.2949308755764,2020-12-31 +664,5915.1,4.0,31.047619047619065,556.6835897836448,2020-12-31 +663,5906.6,4.0,30.833333333333353,570.592957849275,2020-12-31 +662,5898.9,4.0,30.69047619047621,564.4892998907172,2020-12-31 +660,5882.1,4.0,29.69047619047621,600.7399558060226,2020-12-31 +659,5873.8,4.0,27.19047619047621,624.8953417188916,2020-12-31 +658,5865.6,4.0,24.476190476190492,599.20704048814,2020-12-31 +635,5659.9,4.0,31.00000000000002,546.8743861902246,2020-12-31 +634,5651.5,4.0,31.214285714285737,589.6209488554812,2020-12-31 +633,5643.5,4.0,31.3809523809524,534.4059265694648,2020-12-31 +667,5939.4,4.0,31.333333333333357,528.3870967741939,2020-12-31 +671,5971.1,4.0,31.61904761904764,553.2747695852538,2020-12-31 +529,4738.5,4.0,30.285714285714306,525.4636929783793,2020-12-31 +585,5225.6,4.0,30.619047619047638,469.20928709929274,2020-12-31 +537,4805.1,4.0,30.35714285714288,574.3785418989646,2020-12-31 +536,4796.9,4.0,29.904761904761923,542.7447042167802,2020-12-31 +535,4788.2,4.0,29.619047619047638,537.5476521255908,2020-12-31 +534,4780.7,4.0,29.523809523809543,535.1848264729624,2020-12-31 +533,4772.5,4.0,29.357142857142875,543.2268222654445,2020-12-31 +532,4763.8,4.0,29.595238095238116,538.8046415009464,2020-12-31 +531,4756.1,4.0,29.714285714285737,534.7436525506961,2020-12-31 +530,4747.9,4.0,30.19047619047621,522.1756734781683,2020-12-31 +528,4731.6,4.0,30.3809523809524,524.4379813645114,2020-12-31 +527,4723.3,4.0,30.166666666666686,546.2962522871821,2020-12-31 +526,4714.3,4.0,30.14285714285716,553.788230132197,2020-12-31 +525,4706.6,4.0,30.166666666666686,559.1242779932472,2020-12-31 +524,4698.3,4.0,30.714285714285737,557.9349768176776,2020-12-31 +523,4690.0,4.0,30.523809523809543,570.3444511596288,2020-12-31 +522,4682.3,4.0,30.8809523809524,555.0193963889103,2020-12-31 +521,4673.9,4.0,31.00000000000002,566.0823071692985,2020-12-31 +520,4665.6,4.0,30.95238095238097,563.2580645161294,2020-12-31 +519,4657.2,4.0,31.285714285714306,566.0213133640557,2020-12-31 +518,4649.4,4.0,31.428571428571452,579.0887096774197,2020-12-31 +517,4640.9,4.0,31.3809523809524,588.5080645161294,2020-12-31 +516,4633.1,4.0,31.57142857142859,580.9331797235027,2020-12-31 +680,6043.0,4.0,31.333333333333357,538.9343317972355,2020-12-31 +515,4624.5,4.0,31.3809523809524,601.4573732718898,2020-12-31 +538,4812.7,4.0,30.761904761904784,499.8971285357751,2020-12-31 +586,5233.7,4.0,30.452380952380974,476.24255244138936,2020-12-31 +559,5013.0,4.0,22.40476190476192,554.0587842575396,2020-12-31 +561,5028.9,4.0,28.166666666666686,632.3127700355055,2020-12-31 +584,5217.6,4.0,30.833333333333353,479.38284102641614,2020-12-31 +583,5210.0,4.0,30.619047619047638,506.2604819823226,2020-12-31 +582,5201.6,4.0,30.666666666666686,513.9419304474834,2020-12-31 +581,5193.3,4.0,30.285714285714306,546.8973332326059,2020-12-31 +580,5185.0,4.0,30.214285714285737,560.17012918335,2020-12-31 +579,5176.7,4.0,30.04761904761907,551.779859484778,2020-12-31 +578,5169.1,4.0,30.523809523809547,552.538641686183,2020-12-31 +577,5160.9,4.0,30.476190476190496,570.7944964871199,2020-12-31 +576,5152.5,4.0,31.023809523809547,568.3203551912572,2020-12-31 +575,5144.1,4.0,30.904761904761926,577.3975409836069,2020-12-31 +574,5135.9,4.0,31.238095238095262,569.0059523809527,2020-12-31 +573,5128.4,4.0,31.00000000000002,556.8827683615823,2020-12-31 +572,5119.6,4.0,30.785714285714306,552.9223912364293,2020-12-31 +571,5111.8,4.0,30.42857142857145,553.8888606836942,2020-12-31 +570,5103.6,4.0,30.3809523809524,520.5741297612542,2020-12-31 +569,5094.8,4.0,29.785714285714306,524.074344554662,2020-12-31 +568,5087.8,4.0,29.952380952380974,527.4827254029008,2020-12-31 +567,5079.4,4.0,29.857142857142875,536.3789736780445,2020-12-31 +566,5069.9,4.0,29.428571428571445,566.8115353769974,2020-12-31 +565,5062.2,4.0,29.738095238095255,587.3246272112627,2020-12-31 +564,5053.8,4.0,30.023809523809547,579.1761649191055,2020-12-31 +563,5044.9,4.0,30.07142857142859,592.6256375524417,2020-12-31 +562,5037.2,4.0,30.095238095238113,615.7316610795385,2020-12-31 +560,5020.5,4.0,25.285714285714306,606.6635371481525,2020-12-31 +681,6051.2,4.0,31.3809523809524,544.6889400921663,2020-12-31 +852,7490.4,4.0,24.047619047619065,558.657184986892,2020-12-31 +683,6067.0,4.0,31.476190476190496,520.0691244239634,2020-12-31 +825,7263.5,4.0,30.952380952380974,513.5206148707931,2020-12-31 +824,7255.7,4.0,30.54761904761907,514.6059824605661,2020-12-31 +823,7247.9,4.0,30.19047619047621,538.2662507805338,2020-12-31 +822,7240.5,4.0,30.11904761904764,554.1286865399122,2020-12-31 +821,7232.5,4.0,29.904761904761926,535.3352915492402,2020-12-31 +820,7224.4,4.0,29.80952380952383,512.2980722158275,2020-12-31 +819,7216.3,4.0,29.8809523809524,513.26961192924,2020-12-31 +818,7208.4,4.0,29.785714285714306,523.1063390624383,2020-12-31 +817,7200.6,4.0,29.857142857142875,521.8744915062175,2020-12-31 +816,7192.3,4.0,30.30952380952383,520.9942538228536,2020-12-31 +815,7184.6,4.0,30.3809523809524,531.6568811356973,2020-12-31 +814,7176.7,4.0,30.119047619047638,533.232833493175,2020-12-31 +813,7168.6,4.0,29.904761904761926,530.6154807467003,2020-12-31 +812,7160.8,4.0,29.69047619047621,531.1697258455054,2020-12-31 +811,7153.1,4.0,29.57142857142859,532.4211512926661,2020-12-31 +810,7145.0,4.0,29.809523809523824,538.3841807909608,2020-12-31 +809,7136.8,4.0,30.047619047619065,560.2277822616809,2020-12-31 +808,7128.6,4.0,30.166666666666686,599.6122064645072,2020-12-31 +807,7120.8,4.0,28.45238095238097,623.1648054564259,2020-12-31 +806,7112.9,4.0,25.857142857142875,597.202930816349,2020-12-31 +805,7106.0,4.0,23.000000000000014,525.4395019835288,2020-12-31 +780,6888.5,4.0,28.714285714285733,461.23068633125195,2020-12-31 +779,6881.2,4.0,29.833333333333353,490.487011152753,2020-12-31 +853,7497.7,4.0,27.428571428571445,623.1794945921919,2020-12-31 +778,6873.5,4.0,30.047619047619065,513.5929146391007,2020-12-31 +854,7505.0,4.0,30.14285714285716,639.072517952083,2020-12-31 +856,7521.1,4.0,31.333333333333357,575.1837658662789,2020-12-31 +514,4616.6,4.0,31.428571428571452,599.9719662058376,2020-12-31 +878,7691.5,4.0,30.976190476190496,528.1301465588883,2020-12-31 +877,7683.5,4.0,30.76190476190478,521.9284958827533,2020-12-31 +876,7675.2,4.0,30.738095238095255,523.4672697741183,2020-12-31 +875,7668.6,4.0,30.904761904761926,520.0534958827533,2020-12-31 +874,7660.6,4.0,31.214285714285737,522.2881579023835,2020-12-31 +873,7652.6,4.0,31.785714285714306,531.3651587043314,2020-12-31 +872,7645.2,4.0,32.095238095238116,527.3790765685931,2020-12-31 +871,7637.4,4.0,32.357142857142875,506.82368840836614,2020-12-31 +870,7630.5,4.0,32.00000000000002,509.91939914923813,2020-12-31 +869,7623.0,4.0,31.785714285714306,507.5187433534211,2020-12-31 +868,7615.0,4.0,31.714285714285737,517.9339330024817,2020-12-31 +867,7607.6,4.0,31.666666666666686,542.8657834101386,2020-12-31 +866,7600.1,4.0,31.523809523809547,548.8076036866363,2020-12-31 +865,7592.1,4.0,31.333333333333357,556.126152073733,2020-12-31 +864,7584.7,4.0,31.19047619047621,558.7788018433183,2020-12-31 +863,7576.7,4.0,31.238095238095255,544.0418901563802,2020-12-31 +862,7569.5,4.0,31.357142857142875,541.5900065473047,2020-12-31 +861,7561.3,4.0,31.000000000000014,543.6531313741789,2020-12-31 +860,7553.3,4.0,30.69047619047621,552.8026932084313,2020-12-31 +859,7545.9,4.0,30.428571428571445,572.1723326030575,2020-12-31 +858,7537.5,4.0,30.642857142857164,571.89453803732,2020-12-31 +857,7529.4,4.0,30.904761904761923,572.6202311702051,2020-12-31 +855,7513.6,4.0,31.404761904761926,591.6919929557417,2020-12-31 +777,6865.0,4.0,29.92857142857145,509.78336231278155,2020-12-31 +776,6857.6,4.0,29.809523809523828,514.3681522730544,2020-12-31 +775,6849.6,4.0,29.714285714285737,529.0636236640238,2020-12-31 +725,6430.9,4.0,32.07142857142859,540.9778111673277,2020-12-31 +724,6422.7,4.0,32.64285714285717,555.851553016876,2020-12-31 +723,6415.1,4.0,32.69047619047621,564.5377847958497,2020-12-31 +722,6407.0,4.0,32.404761904761926,571.7125294060781,2020-12-31 +721,6400.0,4.0,31.69047619047621,575.5267085065476,2020-12-31 +720,6391.7,4.0,31.50000000000002,567.7225717830561,2020-12-31 +719,6384.0,4.0,31.285714285714306,571.0405441332864,2020-12-31 +718,6375.8,4.0,31.14285714285716,560.4291474654382,2020-12-31 +717,6368.3,4.0,31.333333333333357,548.5800691244244,2020-12-31 +716,6360.1,4.0,31.476190476190496,543.2949308755765,2020-12-31 +715,6351.8,4.0,31.666666666666686,555.3139400921664,2020-12-31 +714,6343.3,4.0,32.047619047619065,576.3434839490749,2020-12-31 +713,6336.0,4.0,31.595238095238116,612.9910774306231,2020-12-31 +712,6327.5,4.0,30.976190476190496,612.6443541344695,2020-12-31 +711,6319.0,4.0,30.714285714285733,597.6210679487315,2020-12-31 +710,6311.1,4.0,29.952380952380974,613.2900772125105,2020-12-31 +709,6303.0,4.0,28.3809523809524,608.6419869090581,2020-12-31 +708,6294.7,4.0,25.690476190476208,579.3292359972652,2020-12-31 +707,6286.9,4.0,22.428571428571445,534.1686732926132,2020-12-31 +687,6099.1,4.0,30.166666666666686,483.81689192314786,2020-12-31 +686,6091.0,4.0,31.69047619047621,553.7823237884417,2020-12-31 +685,6082.2,4.0,31.285714285714306,518.0580235101152,2020-12-31 +684,6075.1,4.0,31.19047619047621,514.2396313364059,2020-12-31 +726,6438.4,4.0,31.952380952380977,531.4043819084145,2020-12-31 +727,6446.1,4.0,31.857142857142875,540.0022692361406,2020-12-31 +728,6453.6,4.0,32.04761904761907,550.8476469766797,2020-12-31 +729,6461.9,4.0,32.238095238095255,552.939359028069,2020-12-31 +774,6840.8,4.0,29.976190476190496,532.3285039495102,2020-12-31 +773,6833.4,4.0,29.80952380952383,538.779679796701,2020-12-31 +772,6825.6,4.0,29.95238095238097,538.9837371620129,2020-12-31 +771,6817.0,4.0,29.976190476190496,527.2648188244818,2020-12-31 +770,6809.7,4.0,30.095238095238113,521.5036059256948,2020-12-31 +769,6801.8,4.0,30.095238095238116,530.7346715613533,2020-12-31 +768,6793.2,4.0,29.857142857142875,542.1954229477469,2020-12-31 +767,6785.7,4.0,29.42857142857145,556.9447785675236,2020-12-31 +766,6777.2,4.0,29.45238095238097,554.0532687651337,2020-12-31 +765,6769.1,4.0,29.45238095238097,544.4326069410819,2020-12-31 +764,6761.1,4.0,29.57142857142859,539.2832929782086,2020-12-31 +682,6059.0,4.0,31.57142857142859,537.1198156682032,2020-12-31 +763,6753.0,4.0,29.83333333333335,546.305084745763,2020-12-31 +761,6737.0,4.0,29.26190476190478,593.9844254611585,2020-12-31 +760,6729.1,4.0,27.523809523809543,617.487967989719,2020-12-31 +759,6720.9,4.0,24.857142857142875,589.8671926124689,2020-12-31 +737,6523.3,4.0,30.69047619047621,486.88493227202935,2020-12-31 +736,6516.1,4.0,32.14285714285717,547.5062083973378,2020-12-31 +735,6507.8,4.0,31.761904761904788,528.0529953917054,2020-12-31 +734,6499.9,4.0,31.80952380952383,528.384216589862,2020-12-31 +733,6492.5,4.0,31.80952380952383,538.6261520737331,2020-12-31 +732,6485.0,4.0,31.666666666666686,542.8974654377884,2020-12-31 +731,6476.8,4.0,31.61904761904764,550.9057743331941,2020-12-31 +730,6468.7,4.0,32.095238095238116,555.7150712191038,2020-12-31 +762,6745.1,4.0,29.76190476190478,567.1334567725398,2020-12-31 +513,4608.1,4.0,31.904761904761926,605.6004537759808,2020-12-31 +131,1325.4,4.0,30.428571428571445,586.9280637350624,2020-12-31 +511,4592.1,4.0,28.619047619047635,645.4707200852695,2020-12-31 +175,1739.0,4.0,28.404761904761926,558.5951627914166,2020-12-31 +174,1729.9,4.0,28.357142857142875,558.1035176539194,2020-12-31 +173,1721.5,4.0,28.309523809523828,567.6437627195883,2020-12-31 +172,1713.2,4.0,28.69047619047621,566.217639630664,2020-12-31 +171,1704.3,4.0,28.642857142857164,567.8860633865097,2020-12-31 +170,1695.7,4.0,28.595238095238116,566.7542971450201,2020-12-31 +169,1686.6,4.0,28.785714285714306,566.3253356812684,2020-12-31 +168,1678.1,4.0,28.69047619047621,554.1684720275268,2020-12-31 +167,1669.4,4.0,28.833333333333353,540.4222420457927,2020-12-31 +166,1660.0,4.0,29.023809523809543,537.9839429081181,2020-12-31 +165,1651.3,4.0,29.214285714285733,542.2332570174709,2020-12-31 +164,1642.6,4.0,29.285714285714302,555.8816679337156,2020-12-31 +163,1633.2,4.0,29.023809523809543,580.7561569030704,2020-12-31 +162,1624.3,4.0,29.142857142857164,582.0576624633061,2020-12-31 +161,1615.1,4.0,29.26190476190478,597.6648293818746,2020-12-31 +160,1606.9,4.0,27.26190476190478,621.088503567166,2020-12-31 +159,1598.5,4.0,24.19047619047621,589.0453162674795,2020-12-31 +139,1392.0,4.0,28.357142857142875,421.8268837068318,2020-12-31 +138,1384.3,4.0,30.523809523809543,531.8496056367508,2020-12-31 +137,1375.8,4.0,31.452380952380977,603.4949466416604,2020-12-31 +136,1367.3,4.0,30.309523809523828,587.733625443832,2020-12-31 +135,1358.7,4.0,30.357142857142875,581.539623781824,2020-12-31 +134,1350.3,4.0,30.19047619047621,581.7232001208737,2020-12-31 +176,1748.3,4.0,28.119047619047638,556.1816405420334,2020-12-31 +133,1342.5,4.0,30.3809523809524,590.5631492618922,2020-12-31 +177,1757.4,4.0,28.404761904761926,563.5832438238458,2020-12-31 +179,1775.3,4.0,28.45238095238097,516.3475862909557,2020-12-31 +249,2463.0,4.0,21.619047619047635,590.0181882209388,2020-12-31 +225,2212.3,4.0,29.595238095238116,506.13124728379006,2020-12-31 +224,2203.8,4.0,30.119047619047638,580.5489338436308,2020-12-31 +223,2195.0,4.0,29.785714285714306,548.0676139344052,2020-12-31 +222,2186.5,4.0,30.166666666666686,554.2119952248217,2020-12-31 +221,2177.8,4.0,30.333333333333357,562.6678634490127,2020-12-31 +220,2168.9,4.0,30.452380952380974,569.105709087138,2020-12-31 +219,2160.3,4.0,30.523809523809543,566.9995130068991,2020-12-31 +218,2151.7,4.0,29.9761904761905,578.405824454566,2020-12-31 +217,2142.8,4.0,30.095238095238116,573.9333028589188,2020-12-31 +216,2134.8,4.0,30.095238095238116,578.1034294813933,2020-12-31 +215,2126.0,4.0,30.33333333333335,577.7917393848526,2020-12-31 +214,2117.3,4.0,30.476190476190496,588.8075190710514,2020-12-31 +213,2108.5,4.0,30.357142857142875,590.3616339920335,2020-12-31 +212,2100.3,4.0,29.85714285714288,593.1047410763106,2020-12-31 +211,2092.0,4.0,29.666666666666686,584.4224009997661,2020-12-31 +210,2083.3,4.0,29.214285714285733,585.837694290401,2020-12-31 +209,2074.6,4.0,29.714285714285733,576.288369913302,2020-12-31 +208,2065.9,4.0,30.119047619047638,582.1501494678098,2020-12-31 +207,2057.3,4.0,30.476190476190496,596.8009142941694,2020-12-31 +206,2048.6,4.0,29.166666666666686,638.497205906313,2020-12-31 +205,2040.3,4.0,26.3809523809524,641.9703701510768,2020-12-31 +204,2031.7,4.0,22.7857142857143,617.2883703167633,2020-12-31 +178,1765.9,4.0,29.00000000000002,595.5711162404496,2020-12-31 +250,2471.4,4.0,25.166666666666686,645.0933498327171,2020-12-31 +132,1333.3,4.0,30.07142857142859,594.9386862454116,2020-12-31 +129,1307.8,4.0,30.33333333333335,578.7147223435085,2020-12-31 +84,888.4,4.0,29.642857142857164,610.630403236084,2020-12-31 +83,880.7,4.0,30.214285714285733,600.1279206585156,2020-12-31 +82,871.9,4.0,30.45238095238097,600.8774736453934,2020-12-31 +81,863.4,4.0,30.523809523809547,604.3019024315088,2020-12-31 +80,855.4,4.0,30.333333333333357,608.4196429371706,2020-12-31 +79,846.8,4.0,30.166666666666686,605.324579408259,2020-12-31 +78,837.8,4.0,29.976190476190492,599.1529299186627,2020-12-31 +77,829.8,4.0,29.976190476190496,595.8898541965707,2020-12-31 +76,821.1,4.0,30.238095238095255,592.0829493087562,2020-12-31 +75,811.8,4.0,30.547619047619065,596.9831029185873,2020-12-31 +74,804.0,4.0,30.76190476190478,605.1866359447009,2020-12-31 +73,795.4,4.0,31.14285714285716,615.0548504256819,2020-12-31 +72,786.9,4.0,31.404761904761926,625.2682478476129,2020-12-31 +71,778.9,4.0,30.69047619047621,639.7609883785466,2020-12-31 +70,771.0,4.0,30.00000000000002,632.0510715005123,2020-12-31 +69,762.7,4.0,29.476190476190496,619.6674316326632,2020-12-31 +68,753.6,4.0,28.833333333333353,611.2326366764372,2020-12-31 +67,745.3,4.0,29.30952380952383,593.1484077425205,2020-12-31 +66,736.8,4.0,29.809523809523828,603.7590586636086,2020-12-31 +65,728.7,4.0,28.14285714285716,645.7878594792069,2020-12-31 +64,719.5,4.0,25.500000000000018,633.030985572939,2020-12-31 +63,710.6,4.0,22.21428571428573,621.9457692086652,2020-12-31 +879,7698.9,4.0,31.380952380952408,575.7242955352425,2020-12-31 +85,898.4,4.0,29.42857142857145,594.5358201408391,2020-12-31 +130,1316.9,4.0,30.07142857142859,595.3792079981258,2020-12-31 +86,906.9,4.0,29.02380952380954,588.6408750142172,2020-12-31 +88,923.8,4.0,29.428571428571445,566.7274117497136,2020-12-31 +128,1299.8,4.0,30.309523809523828,561.6304341238331,2020-12-31 +127,1291.5,4.0,30.57142857142859,553.554184918238,2020-12-31 +126,1282.3,4.0,30.119047619047638,558.2800854820148,2020-12-31 +125,1275.1,4.0,30.23809523809526,562.7237024792264,2020-12-31 +124,1265.7,4.0,30.142857142857164,579.179029505124,2020-12-31 +123,1257.1,4.0,30.476190476190496,575.9409974352839,2020-12-31 +122,1249.1,4.0,30.8809523809524,569.1401494441411,2020-12-31 +121,1240.7,4.0,31.14285714285716,569.9086151683204,2020-12-31 +120,1232.1,4.0,31.095238095238116,572.6697388632876,2020-12-31 +119,1224.2,4.0,31.00000000000002,590.8149652425217,2020-12-31 +118,1215.6,4.0,30.595238095238116,589.9956780962799,2020-12-31 +117,1207.0,4.0,30.23809523809526,585.5364107370673,2020-12-31 +116,1198.5,4.0,29.85714285714288,576.0343669452476,2020-12-31 +115,1189.8,4.0,29.595238095238116,566.2571793069337,2020-12-31 +114,1181.3,4.0,29.785714285714302,564.2767627852377,2020-12-31 +113,1172.9,4.0,30.19047619047621,602.8778340303768,2020-12-31 +112,1164.5,4.0,28.61904761904764,647.1807420451493,2020-12-31 +111,1155.6,4.0,25.666666666666682,664.2573664288525,2020-12-31 +110,1147.8,4.0,21.880952380952394,626.0119943200706,2020-12-31 +92,958.5,4.0,29.3809523809524,503.4682441255409,2020-12-31 +91,949.6,4.0,30.500000000000018,591.9340931908114,2020-12-31 +90,940.9,4.0,29.666666666666686,581.5577078288948,2020-12-31 +89,932.3,4.0,29.738095238095255,572.4319272758171,2020-12-31 +87,914.8,4.0,29.166666666666686,568.3539356866747,2020-12-31 +251,2479.2,4.0,28.26190476190478,654.5150076330126,2020-12-31 +252,2488.3,4.0,29.8809523809524,621.0582009742293,2020-12-31 +253,2496.9,4.0,29.95238095238097,603.5113114703369,2020-12-31 +405,3843.7,4.0,29.80952380952383,531.2932953725494,2020-12-31 +404,3835.7,4.0,29.547619047619065,526.6176423902912,2020-12-31 +403,3828.4,4.0,29.785714285714306,529.2640103238008,2020-12-31 +402,3819.6,4.0,30.00000000000002,545.0554368109124,2020-12-31 +401,3811.3,4.0,29.83333333333335,568.2954444635141,2020-12-31 +400,3803.1,4.0,30.26190476190478,574.725989252478,2020-12-31 +399,3795.0,4.0,30.3809523809524,578.1236979550134,2020-12-31 +398,3786.8,4.0,30.285714285714306,570.808514397881,2020-12-31 +397,3778.5,4.0,30.26190476190478,566.3660301611349,2020-12-31 +396,3771.0,4.0,30.26190476190478,569.2305150474897,2020-12-31 +395,3762.8,4.0,30.00000000000002,579.0143549859604,2020-12-31 +394,3754.6,4.0,29.95238095238097,581.9731671496054,2020-12-31 +393,3746.2,4.0,29.904761904761926,593.7324389049872,2020-12-31 +392,3737.9,4.0,29.64285714285716,592.129621259362,2020-12-31 +391,3729.7,4.0,29.69047619047621,584.7883807970215,2020-12-31 +390,3721.5,4.0,30.07142857142859,581.7965580983628,2020-12-31 +389,3713.4,4.0,30.714285714285733,570.9834290482909,2020-12-31 +388,3705.2,4.0,28.857142857142875,613.0959931266113,2020-12-31 +387,3697.7,4.0,25.59523809523811,606.3530726984445,2020-12-31 +386,3689.7,4.0,21.809523809523824,548.0907549660683,2020-12-31 +362,3464.6,4.0,31.928571428571445,477.0746308118085,2020-12-31 +361,3456.6,4.0,33.619047619047635,595.7157111636093,2020-12-31 +360,3448.3,4.0,32.88095238095241,626.6282747103647,2020-12-31 +406,3852.4,4.0,30.357142857142875,573.0008183680516,2020-12-31 +359,3440.4,4.0,32.83333333333336,598.4830965054849,2020-12-31 +407,3860.6,4.0,28.76190476190478,513.4731451408953,2020-12-31 +433,4100.8,4.0,27.547619047619065,645.196299364806,2020-12-31 +510,4584.3,4.0,25.500000000000014,621.316651474486,2020-12-31 +509,4575.7,4.0,22.119047619047635,584.8067204903944,2020-12-31 +454,4263.6,4.0,32.095238095238116,395.3597652347655,2020-12-31 +453,4256.4,4.0,32.357142857142875,543.0601898101902,2020-12-31 +452,4248.6,4.0,32.19047619047621,613.9010691689267,2020-12-31 +451,4240.1,4.0,32.83333333333336,555.8894676751822,2020-12-31 +450,4231.9,4.0,33.07142857142859,556.3187556047368,2020-12-31 +449,4224.3,4.0,33.19047619047621,552.8615998429436,2020-12-31 +448,4216.4,4.0,33.5714285714286,558.7031473324121,2020-12-31 +447,4208.5,4.0,33.5714285714286,590.2258663511333,2020-12-31 +446,4200.9,4.0,32.71428571428574,610.8915333067789,2020-12-31 +445,4193.1,4.0,32.976190476190496,615.165245202559,2020-12-31 +444,4185.2,4.0,32.50000000000002,614.188986386748,2020-12-31 +443,4177.6,4.0,32.64285714285717,614.2946531080863,2020-12-31 +442,4169.9,4.0,32.904761904761926,615.7291039485314,2020-12-31 +441,4162.2,4.0,32.57142857142859,629.3678210330838,2020-12-31 +440,4154.5,4.0,32.00000000000002,630.3387870555061,2020-12-31 +439,4146.5,4.0,31.785714285714306,641.5976204023873,2020-12-31 +438,4138.8,4.0,31.666666666666686,633.2246250980608,2020-12-31 +437,4131.4,4.0,32.21428571428574,626.7118687763854,2020-12-31 +436,4122.7,4.0,32.80952380952383,625.8629371130058,2020-12-31 +435,4115.6,4.0,33.095238095238116,626.8462117307214,2020-12-31 +434,4108.0,4.0,31.26190476190478,657.1404463687677,2020-12-31 +432,4092.7,4.0,23.571428571428587,594.4719791770445,2020-12-31 +358,3432.5,4.0,33.19047619047621,580.8270870920128,2020-12-31 +357,3424.8,4.0,33.166666666666686,579.6102181400693,2020-12-31 +356,3416.8,4.0,33.07142857142859,587.2216663933086,2020-12-31 +301,2934.3,4.0,30.61904761904764,603.144314280849,2020-12-31 +300,2925.4,4.0,30.809523809523828,607.6280123895147,2020-12-31 +299,2916.6,4.0,31.285714285714306,607.8201917948088,2020-12-31 +298,2908.3,4.0,31.45238095238097,629.8173439463766,2020-12-31 +297,2899.8,4.0,29.50000000000002,681.394762767053,2020-12-31 +296,2891.6,4.0,25.8809523809524,670.7693824986268,2020-12-31 +295,2883.8,4.0,22.000000000000014,624.9212034632452,2020-12-31 +269,2634.0,4.0,29.547619047619065,555.6499027507646,2020-12-31 +268,2625.0,4.0,29.76190476190478,598.6219981740965,2020-12-31 +267,2616.6,4.0,29.904761904761926,564.1057436589532,2020-12-31 +266,2607.9,4.0,30.14285714285716,565.857658873497,2020-12-31 +265,2600.0,4.0,30.26190476190478,570.8573016314059,2020-12-31 +264,2591.5,4.0,30.11904761904764,581.1898082288607,2020-12-31 +263,2582.9,4.0,30.142857142857164,587.5204914831696,2020-12-31 +262,2574.1,4.0,30.023809523809543,597.6654617748832,2020-12-31 +261,2565.3,4.0,30.095238095238113,599.0442711301018,2020-12-31 +260,2556.8,4.0,30.309523809523828,576.3546607288511,2020-12-31 +259,2547.7,4.0,30.666666666666686,558.4204829042377,2020-12-31 +258,2539.1,4.0,30.476190476190496,564.1453578374949,2020-12-31 +257,2530.3,4.0,30.857142857142875,558.8410093433536,2020-12-31 +256,2522.5,4.0,30.523809523809543,586.9438976264532,2020-12-31 +255,2513.8,4.0,30.26190476190478,604.8173750260894,2020-12-31 +254,2504.7,4.0,29.85714285714288,608.2897758337893,2020-12-31 +302,2942.7,4.0,30.166666666666686,584.9290172342637,2020-12-31 +303,2951.6,4.0,30.047619047619065,583.066566109634,2020-12-31 +304,2960.2,4.0,30.26190476190478,577.4647950083424,2020-12-31 +305,2967.7,4.0,30.595238095238116,574.5511421716823,2020-12-31 +355,3408.9,4.0,32.95238095238098,600.9937674266037,2020-12-31 +354,3400.8,4.0,32.80952380952383,631.9246555683128,2020-12-31 +353,3392.9,4.0,32.54761904761907,628.7224796347934,2020-12-31 +352,3385.2,4.0,31.976190476190496,623.898394636178,2020-12-31 +351,3377.5,4.0,31.238095238095255,622.281269344522,2020-12-31 +350,3369.0,4.0,30.904761904761926,608.9491167434719,2020-12-31 +349,3359.7,4.0,30.904761904761926,598.1491935483875,2020-12-31 +348,3351.6,4.0,31.047619047619065,602.5725806451617,2020-12-31 +347,3343.8,4.0,31.428571428571445,606.1996927803383,2020-12-31 +346,3335.1,4.0,31.428571428571452,615.4354448176214,2020-12-31 +345,3327.4,4.0,31.166666666666686,623.8021242280116,2020-12-31 +512,4599.1,4.0,30.976190476190496,651.4102009467385,2020-12-31 +344,3318.8,4.0,30.928571428571452,630.118383255387,2020-12-31 +342,3302.2,4.0,26.76190476190478,647.2372076339736,2020-12-31 +341,3294.6,4.0,23.04761904761906,602.9020361700289,2020-12-31 +314,3043.4,4.0,30.404761904761926,570.8782393470797,2020-12-31 +313,3034.9,4.0,30.595238095238116,613.328208168424,2020-12-31 +312,3025.7,4.0,30.333333333333353,582.3154844599694,2020-12-31 +311,3017.9,4.0,30.54761904761907,587.3845499838028,2020-12-31 +310,3009.4,4.0,30.45238095238097,581.8322882828438,2020-12-31 +309,3001.1,4.0,30.69047619047621,574.662839011861,2020-12-31 +308,2993.2,4.0,30.904761904761923,567.2619173528749,2020-12-31 +307,2984.6,4.0,31.238095238095255,566.8877606810909,2020-12-31 +306,2976.2,4.0,30.833333333333353,573.9626854873926,2020-12-31 +343,3310.4,4.0,29.76190476190478,643.3212200184089,2020-12-31 +880,7706.7,4.0,31.666666666666686,517.8398617511525,2020-12-31 diff --git a/rowers/views/analysisviews.py b/rowers/views/analysisviews.py index 769958cc..02aebe95 100644 --- a/rowers/views/analysisviews.py +++ b/rowers/views/analysisviews.py @@ -780,8 +780,6 @@ def boxplotdata(workouts,options): # prepare data frame datadf,extracols = dataprep.read_cols_df_sql(ids,fieldlist) - - datadf = dataprep.clean_df_stats(datadf,workstrokesonly=workstrokesonly) datadf = dataprep.filter_df(datadf,'spm',spmmin, @@ -1686,7 +1684,7 @@ def performancemanager_view(request,userid=0,mode='rower', dofatigue = dofatigue, showtests = True, ) - + ids = pd.Series(ids).dropna().values bestworkouts = Workout.objects.filter(id__in=ids).order_by('date') @@ -5248,16 +5246,19 @@ def history_view_data(request,userid=0): time_min = datetime.time(hour=0,minute=0,second=0) time_max = datetime.time(hour=23,minute=59,second=59) + startdate = timezone.now()-datetime.timedelta(days=14) + enddate = timezone.now() + activity_enddate = usertimezone.localize(timezone.datetime.combine(enddate.date(),time_max)) + activity_startdate = usertimezone.localize(timezone.datetime.combine(startdate.date(),time_min)) + + if request.GET.get('startdate'): startdate = datetime.datetime.strptime(request.GET.get('startdate'),"%Y-%m-%d") - enddate = datetime.datetime.strptime(request.GET.get('enddate'),"%Y-%m-%d") activity_startdate = usertimezone.localize(timezone.datetime.combine(startdate,time_min)) + + if request.GET.get('enddate'): + enddate = datetime.datetime.strptime(request.GET.get('enddate'),"%Y-%m-%d") activity_enddate = usertimezone.localize(timezone.datetime.combine(enddate,time_max)) - else: - activity_enddate = timezone.now() - activity_enddate = usertimezone.localize(timezone.datetime.combine(activity_enddate.date(),time_max)) - startdate = timezone.now()-datetime.timedelta(days=14) - activity_startdate = usertimezone.localize(timezone.datetime.combine(startdate.date(),time_min)) typeselect = 'All' @@ -5386,7 +5387,6 @@ def history_view_data(request,userid=0): ddf = dataprep.clean_df_stats(ddf,workstrokesonly=True, ignoreadvanced=True) - totalscript, totaldiv = interactive_hr_piechart( ddf,r,mytypes.workouttypes_ordered[typeselect], totalseconds=totalseconds) From 82b5ece732c912086bb2123f6d66339a2a64cba7 Mon Sep 17 00:00:00 2001 From: Sander Roosendaal Date: Mon, 11 Jan 2021 13:16:24 +0100 Subject: [PATCH 03/30] removed print statement --- rowers/tests/test_unit_tests.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/rowers/tests/test_unit_tests.py b/rowers/tests/test_unit_tests.py index 463d04c1..810bd625 100644 --- a/rowers/tests/test_unit_tests.py +++ b/rowers/tests/test_unit_tests.py @@ -43,10 +43,9 @@ class InteractivePlotTests(TestCase): def test_interactive_boxchart(self): df = pd.read_csv('rowers/tests/testdata/boxplotdata.csv') - print(df.info()) script, div = interactiveplots.interactive_boxchart(df, 'spm') - + self.assertFalse(len(script)==0) self.assertFalse(len(div)==0) From e153e6348127827917adea448b50becdd5a98b3f Mon Sep 17 00:00:00 2001 From: Sander Roosendaal Date: Mon, 11 Jan 2021 17:43:18 +0100 Subject: [PATCH 04/30] more unit tests --- rowers/dataprep.py | 2 +- rowers/interactiveplots.py | 2 + rowers/tests/test_analysis.py | 3 + rowers/tests/test_unit_tests.py | 41 + rowers/tests/testdata/otwcp.csv | 36 + rowers/tests/testdata/videodata.csv | 1194 +++++++++++++++++++++++++++ rowers/tests/viewnames.csv | 1 + 7 files changed, 1278 insertions(+), 1 deletion(-) create mode 100644 rowers/tests/testdata/otwcp.csv create mode 100644 rowers/tests/testdata/videodata.csv diff --git a/rowers/dataprep.py b/rowers/dataprep.py index f12241b8..f09aff2f 100644 --- a/rowers/dataprep.py +++ b/rowers/dataprep.py @@ -236,7 +236,7 @@ def get_video_data(w,groups=['basic'],mode='water'): metrics = collections.OrderedDict(sorted(metrics.items())) maxtime = coordinates['time'].max() - + return data, metrics, maxtime diff --git a/rowers/interactiveplots.py b/rowers/interactiveplots.py index fe956508..51fbd38c 100644 --- a/rowers/interactiveplots.py +++ b/rowers/interactiveplots.py @@ -3476,6 +3476,7 @@ def interactive_agegroupcpchart(age,normalized=False): def interactive_otwcpchart(powerdf,promember=0,rowername="",r=None,cpfit='data', title='',type='water'): + powerdf = powerdf[~(powerdf == 0).any(axis=1)] # plot tools if (promember==1): @@ -4136,6 +4137,7 @@ def interactive_streamchart(id=0,promember=0): return [script,div] def interactive_chart(id=0,promember=0,intervaldata = {}): + # Add hover to this comma-separated string and see what changes if (promember==1): TOOLS = 'save,pan,box_zoom,wheel_zoom,reset,tap,hover,crosshair' diff --git a/rowers/tests/test_analysis.py b/rowers/tests/test_analysis.py index eb4ed3da..a4527159 100644 --- a/rowers/tests/test_analysis.py +++ b/rowers/tests/test_analysis.py @@ -1000,6 +1000,9 @@ class GoldMedalScores(TestCase): self.c = Client() self.user_workouts = WorkoutFactory.create_batch(20, user=self.r) + ws = Workout.objects.all().order_by('date') + ws[0].rankingpiece = True + ws[0].save() self.factory = RequestFactory() self.password = faker.word() self.u.set_password(self.password) diff --git a/rowers/tests/test_unit_tests.py b/rowers/tests/test_unit_tests.py index 810bd625..8b5db9f6 100644 --- a/rowers/tests/test_unit_tests.py +++ b/rowers/tests/test_unit_tests.py @@ -4,6 +4,7 @@ from __future__ import print_function from __future__ import unicode_literals from .statements import * +from rowers.mytypes import rowtypes nu = datetime.datetime.now() @@ -58,3 +59,43 @@ class InteractivePlotTests(TestCase): script, div = interactiveplots.interactive_activitychart(workouts,startdate,enddate) self.assertFalse(len(script)==0) self.assertFalse(len(div)==0) + + def test_interactive_otwcpchart(self): + df = pd.read_csv('rowers/tests/testdata/otwcp.csv') + + script, div, p1, ratio, message = interactiveplots.interactive_otwcpchart(df,r=self.r,cpfit='data') + self.assertFalse(len(script)==0) + self.assertFalse(len(div)==0) + + script, div, p1, ratio, message = interactiveplots.interactive_otwcpchart(df,r=self.r,cpfit='automatic') + self.assertFalse(len(script)==0) + self.assertFalse(len(div)==0) + + def test_interactive_chart(self): + workout = Workout.objects.filter(user=self.r,workouttype__in=mytypes.rowtypes)[0] + id = workout.id + + script, div = interactiveplots.interactive_chart(id=id) + self.assertFalse(len(script)==0) + self.assertFalse(len(div)==0) + + intervaldata = { + 'itime': [0.0, 234.0, 61.2, 59.7, 60.5, 61.0, 44.2, 74.7, 44.8, 75.1, 43.4, 78.0, 40.1, 79.4, 42.4, 76.1, 45.4, 75.2, 43.2, 255.0, 60.0, 60.6, 60.7, 60.7, 55.3, 65.4, 58.2, 60.2, 59.7, 62.0, 44.7, 72.5, 43.2, 78.5, 56.4, 889.5], + 'idist': [0, 700, 257, 179, 254, 197, 185, 246, 190, 240, 181, 240, 169, 241, 179, 215, 180, 223, 179, 302, 247, 190, 246, 180, 229, 197, 242, 179, 245, 189, 175, 208, 166, 218, 224, 2399], + 'itype': [4, 3, 4.0, 3, 4.0, 3, 4.0, 3, 4.0, 3, 4.0, 3, 4.0, 3, 4.0, 3, 4.0, 3, 4.0, 3, 4.0, 3, 4.0, 3, 4.0, 3, 4.0, 3, 4.0, 3, 4.0, 3, 4.0, 3, 4.0, 3], + 'selector': 'power', + 'normp': 203, + 'normv': 3.557050625695544 + } + + script, div = interactiveplots.interactive_chart(id=id,intervaldata=intervaldata) + self.assertFalse(len(script)==0) + self.assertFalse(len(div)==0) + + def test_interactive_chart_video(self): + datadf = pd.read_csv('rowers/tests/testdata/videodata.csv') + data = datadf.to_dict() + + script, div = interactiveplots.interactive_chart_video(data) + self.assertFalse(len(script)==0) + self.assertFalse(len(div)==0) diff --git a/rowers/tests/testdata/otwcp.csv b/rowers/tests/testdata/otwcp.csv new file mode 100644 index 00000000..e877c090 --- /dev/null +++ b/rowers/tests/testdata/otwcp.csv @@ -0,0 +1,36 @@ +,Delta,CP,workout,url +0,6.0,340.1333334878639,2020-12-31 Sprintervals 10106m 00:54:42 water 1x Sander Roosendaal,http://localhost:8000/rowers/workout/4df830f9/ +1,7.0,338.96666679029113,2020-12-31 Sprintervals 10106m 00:54:42 water 1x Sander Roosendaal,http://localhost:8000/rowers/workout/4df830f9/ +2,8.0,338.71428568590255,2020-12-31 Sprintervals 10106m 00:54:42 water 1x Sander Roosendaal,http://localhost:8000/rowers/workout/4df830f9/ +3,10.0,339.43571423334737,2020-12-31 Sprintervals 10106m 00:54:42 water 1x Sander Roosendaal,http://localhost:8000/rowers/workout/4df830f9/ +4,11.0,339.80178561827967,2020-12-31 Sprintervals 10106m 00:54:42 water 1x Sander Roosendaal,http://localhost:8000/rowers/workout/4df830f9/ +5,12.0,339.2885803634247,2020-12-31 Sprintervals 10106m 00:54:42 water 1x Sander Roosendaal,http://localhost:8000/rowers/workout/4df830f9/ +6,15.0,338.8528139864973,2020-12-31 Sprintervals 10106m 00:54:42 water 1x Sander Roosendaal,http://localhost:8000/rowers/workout/4df830f9/ +7,17.0,337.4631313049432,2020-12-31 Sprintervals 10106m 00:54:42 water 1x Sander Roosendaal,http://localhost:8000/rowers/workout/4df830f9/ +8,20.0,337.8169515282718,2020-12-31 Sprintervals 10106m 00:54:42 water 1x Sander Roosendaal,http://localhost:8000/rowers/workout/4df830f9/ +9,24.0,335.4814812361949,2020-12-31 Sprintervals 10106m 00:54:42 water 1x Sander Roosendaal,http://localhost:8000/rowers/workout/4df830f9/ +10,30.0,330.284275590586,2020-12-31 Sprintervals 10106m 00:54:42 water 1x Sander Roosendaal,http://localhost:8000/rowers/workout/4df830f9/ +11,36.0,326.1298700713836,2020-12-31 Sprintervals 10106m 00:54:42 water 1x Sander Roosendaal,http://localhost:8000/rowers/workout/4df830f9/ +12,44.0,306.14423090749636,2020-12-31 Sprintervals 10106m 00:54:42 water 1x Sander Roosendaal,http://localhost:8000/rowers/workout/4df830f9/ +13,55.0,297.21960064902305,2020-12-31 Sprintervals 10106m 00:54:42 water 1x Sander Roosendaal,http://localhost:8000/rowers/workout/4df830f9/ +14,68.0,279.2818076545548,2020-12-31 Sprintervals 10106m 00:54:42 water 1x Sander Roosendaal,http://localhost:8000/rowers/workout/4df830f9/ +15,84.0,261.9537069142544,2020-12-31 Sprintervals 10106m 00:54:42 water 1x Sander Roosendaal,http://localhost:8000/rowers/workout/4df830f9/ +16,105.0,245.38402312135386,2020-12-31 Sprintervals 10106m 00:54:42 water 1x Sander Roosendaal,http://localhost:8000/rowers/workout/4df830f9/ +17,130.0,236.2756178973642,2020-12-31 Sprintervals 10106m 00:54:42 water 1x Sander Roosendaal,http://localhost:8000/rowers/workout/4df830f9/ +18,163.0,249.37083678010336,2020-12-31 Sprintervals 10106m 00:54:42 water 1x Sander Roosendaal,http://localhost:8000/rowers/workout/4df830f9/ +19,204.0,240.90711703539813,2020-12-31 Sprintervals 10106m 00:54:42 water 1x Sander Roosendaal,http://localhost:8000/rowers/workout/4df830f9/ +20,256.0,229.8622390192616,2020-12-31 Sprintervals 10106m 00:54:42 water 1x Sander Roosendaal,http://localhost:8000/rowers/workout/4df830f9/ +21,321.0,227.8746514703743,2020-12-31 Sprintervals 10106m 00:54:42 water 1x Sander Roosendaal,http://localhost:8000/rowers/workout/4df830f9/ +22,403.0,225.8329855924891,2020-12-31 Sprintervals 10106m 00:54:42 water 1x Sander Roosendaal,http://localhost:8000/rowers/workout/4df830f9/ +23,506.0,221.91079812206573,2020-12-31 Sprintervals 10106m 00:54:42 water 1x Sander Roosendaal,http://localhost:8000/rowers/workout/4df830f9/ +24,635.0,220.762340476955,2020-12-31 Sprintervals 10106m 00:54:42 water 1x Sander Roosendaal,http://localhost:8000/rowers/workout/4df830f9/ +25,799.0,212.73512266030042,2020-12-31 Sprintervals 10106m 00:54:42 water 1x Sander Roosendaal,http://localhost:8000/rowers/workout/4df830f9/ +26,1005.0,212.8565037482774,2020-12-31 Sprintervals 10106m 00:54:42 water 1x Sander Roosendaal,http://localhost:8000/rowers/workout/4df830f9/ +27,1263.0,139.9511726253205,2020-12-11 C2 Import Workout from 2020-12-11 10:06:06+00:00 11427m 01:00:08 water 1x Sander Roosendaal,http://localhost:8000/rowers/workout/db9b0a94/ +28,1589.0,138.8309130746855,2020-11-23 Morning water 20314m 01:49:33 water 1x Sander Roosendaal,http://localhost:8000/rowers/workout/16ffc190/ +30,2000.0,137.5323799240252,2020-11-23 Morning water 20314m 01:49:33 water 1x Sander Roosendaal,http://localhost:8000/rowers/workout/16ffc190/ +32,2516.0,135.5675172186318,2020-11-23 Morning water 20314m 01:49:33 water 1x Sander Roosendaal,http://localhost:8000/rowers/workout/16ffc190/ +34,3167.0,134.68660138671376,2020-11-23 Morning water 20314m 01:49:33 water 1x Sander Roosendaal,http://localhost:8000/rowers/workout/16ffc190/ +36,3986.0,134.2073467308539,2020-11-23 Morning water 20314m 01:49:33 water 1x Sander Roosendaal,http://localhost:8000/rowers/workout/16ffc190/ +38,5016.0,133.822526821714,2020-11-23 Morning water 20314m 01:49:33 water 1x Sander Roosendaal,http://localhost:8000/rowers/workout/16ffc190/ +40,6314.0,133.7172039237248,2020-11-23 Morning water 20314m 01:49:33 water 1x Sander Roosendaal,http://localhost:8000/rowers/workout/16ffc190/ diff --git a/rowers/tests/testdata/videodata.csv b/rowers/tests/testdata/videodata.csv new file mode 100644 index 00000000..bf6cec2f --- /dev/null +++ b/rowers/tests/testdata/videodata.csv @@ -0,0 +1,1194 @@ +,boatspeed,latitude,longitude,distanceperstroke,distance,pace,spm,cumdist,velo +0,3.83,0.0,0.0,12.7,29.0,02:10.6,18.0,29.0,3.8 +1,3.83,0.0,0.0,12.7,29.0,02:10.6,18.0,29.0,3.8 +2,3.83,0.0,0.0,12.7,29.0,02:10.6,18.0,29.0,3.8 +3,3.83,0.0,0.0,12.7,29.0,02:10.6,18.0,29.0,3.8 +4,3.83,0.0,0.0,12.7,29.0,02:10.6,18.0,29.0,3.8 +5,3.83,0.0,0.0,12.7,29.0,02:10.6,18.0,29.0,3.8 +6,3.83,0.0,0.0,12.7,29.0,02:10.6,18.0,29.0,3.8 +7,3.77,0.0,0.0,13.3,56.0,02:12.5,17.0,56.0,3.7 +8,3.77,0.0,0.0,13.3,56.0,02:12.5,17.0,56.0,3.7 +9,3.77,0.0,0.0,13.3,56.0,02:12.5,17.0,56.0,3.7 +10,3.77,0.0,0.0,13.3,56.0,02:12.5,17.0,56.0,3.7 +11,3.77,0.0,0.0,13.3,56.0,02:12.5,17.0,56.0,3.7 +12,3.77,0.0,0.0,13.3,56.0,02:12.5,17.0,56.0,3.7 +13,3.77,0.0,0.0,13.3,56.0,02:12.5,17.0,56.0,3.7 +14,3.83,0.0,0.0,13.5,83.0,02:10.4,17.0,83.0,3.8 +15,3.83,0.0,0.0,13.5,83.0,02:10.4,17.0,83.0,3.8 +16,3.83,0.0,0.0,13.5,83.0,02:10.4,17.0,83.0,3.8 +17,3.83,0.0,0.0,13.5,83.0,02:10.4,17.0,83.0,3.8 +18,3.82,0.0,0.0,13.6,99.0,02:10.9,16.7,99.0,3.8 +19,3.82,0.0,0.0,13.6,99.0,02:10.9,16.7,99.0,3.8 +20,3.82,0.0,0.0,13.6,99.0,02:10.9,16.7,99.0,3.8 +21,3.82,0.0,0.0,13.6,99.0,02:10.9,16.7,99.0,3.8 +22,3.82,0.0,0.0,13.6,99.0,02:10.9,16.7,99.0,3.8 +23,3.82,0.0,0.0,13.6,99.0,02:10.9,16.7,99.0,3.8 +24,3.82,0.0,0.0,13.6,99.0,02:10.9,16.7,99.0,3.8 +25,3.8,0.0,0.0,14.0,125.0,02:11.5,16.2,125.0,3.8 +26,3.8,0.0,0.0,14.0,125.0,02:11.5,16.2,125.0,3.8 +27,3.8,0.0,0.0,14.0,125.0,02:11.5,16.2,125.0,3.8 +28,3.8,0.0,0.0,14.0,125.0,02:11.5,16.2,125.0,3.8 +29,3.78,0.0,0.0,14.2,140.0,02:12.4,15.9,140.0,3.7 +30,3.78,0.0,0.0,14.2,140.0,02:12.4,15.9,140.0,3.7 +31,3.78,0.0,0.0,14.2,140.0,02:12.4,15.9,140.0,3.7 +32,3.78,0.0,0.0,14.2,140.0,02:12.4,15.9,140.0,3.7 +33,3.79,0.0,0.0,14.2,156.0,02:11.8,16.0,156.0,3.7 +34,3.79,0.0,0.0,14.2,156.0,02:11.8,16.0,156.0,3.7 +35,3.79,0.0,0.0,14.2,156.0,02:11.8,16.0,156.0,3.7 +36,3.79,0.0,0.0,14.2,156.0,02:11.8,16.0,156.0,3.7 +37,3.79,0.0,0.0,14.2,156.0,02:11.8,16.0,156.0,3.7 +38,3.79,0.0,0.0,14.2,156.0,02:11.8,16.0,156.0,3.7 +39,3.79,0.0,0.0,14.2,156.0,02:11.8,16.0,156.0,3.7 +40,3.77,0.0,0.0,14.1,182.0,02:12.7,16.0,182.0,3.7 +41,3.77,0.0,0.0,14.1,182.0,02:12.7,16.0,182.0,3.7 +42,3.77,0.0,0.0,14.1,182.0,02:12.7,16.0,182.0,3.7 +43,3.77,0.0,0.0,14.1,182.0,02:12.7,16.0,182.0,3.7 +44,3.72,0.0,0.0,13.9,197.0,02:14.2,16.0,197.0,3.7 +45,3.72,0.0,0.0,13.9,197.0,02:14.2,16.0,197.0,3.7 +46,3.72,0.0,0.0,13.9,197.0,02:14.2,16.0,197.0,3.7 +47,3.72,0.0,0.0,13.9,197.0,02:14.2,16.0,197.0,3.7 +48,3.74,0.0,0.0,14.0,212.0,02:13.7,16.0,212.0,3.7 +49,3.74,0.0,0.0,14.0,212.0,02:13.7,16.0,212.0,3.7 +50,3.74,0.0,0.0,14.0,212.0,02:13.7,16.0,212.0,3.7 +51,3.74,0.0,0.0,14.0,212.0,02:13.7,16.0,212.0,3.7 +52,3.74,0.0,0.0,14.0,212.0,02:13.7,16.0,212.0,3.7 +53,3.74,0.0,0.0,14.0,212.0,02:13.7,16.0,212.0,3.7 +54,3.74,0.0,0.0,14.0,212.0,02:13.7,16.0,212.0,3.7 +55,3.76,0.0,0.0,14.0,238.0,02:13.0,16.0,238.0,3.7 +56,3.76,0.0,0.0,14.0,238.0,02:13.0,16.0,238.0,3.7 +57,3.76,0.0,0.0,14.0,238.0,02:13.0,16.0,238.0,3.7 +58,3.76,0.0,0.0,14.0,238.0,02:13.0,16.0,238.0,3.7 +59,3.77,0.0,0.0,14.1,254.0,02:12.6,16.0,254.0,3.7 +60,3.77,0.0,0.0,14.1,254.0,02:12.6,16.0,254.0,3.7 +61,3.77,0.0,0.0,14.1,254.0,02:12.6,16.0,254.0,3.7 +62,3.77,0.0,0.0,14.1,254.0,02:12.6,16.0,254.0,3.7 +63,3.77,0.0,0.0,14.1,269.0,02:12.5,16.0,269.0,3.7 +64,3.77,0.0,0.0,14.1,269.0,02:12.5,16.0,269.0,3.7 +65,3.77,0.0,0.0,14.1,269.0,02:12.5,16.0,269.0,3.7 +66,3.77,0.0,0.0,14.1,269.0,02:12.5,16.0,269.0,3.7 +67,3.77,0.0,0.0,14.1,269.0,02:12.5,16.0,269.0,3.7 +68,3.77,0.0,0.0,14.1,269.0,02:12.5,16.0,269.0,3.7 +69,3.77,0.0,0.0,14.1,269.0,02:12.5,16.0,269.0,3.7 +70,3.77,0.0,0.0,14.1,269.0,02:12.5,16.0,269.0,3.7 +71,3.81,0.0,0.0,14.2,300.0,02:11.2,16.0,300.0,3.8 +72,3.81,0.0,0.0,14.2,300.0,02:11.2,16.0,300.0,3.8 +73,3.81,0.0,0.0,14.2,300.0,02:11.2,16.0,300.0,3.8 +74,3.81,0.0,0.0,14.2,311.0,02:11.2,16.0,311.0,3.8 +75,3.81,0.0,0.0,14.2,311.0,02:11.2,16.0,311.0,3.8 +76,3.81,0.0,0.0,14.2,311.0,02:11.2,16.0,311.0,3.8 +77,3.81,0.0,0.0,14.2,311.0,02:11.2,16.0,311.0,3.8 +78,3.78,0.0,0.0,14.1,326.0,02:12.2,16.0,326.0,3.7 +79,3.78,0.0,0.0,14.1,326.0,02:12.2,16.0,326.0,3.7 +80,3.78,0.0,0.0,14.1,326.0,02:12.2,16.0,326.0,3.7 +81,3.78,0.0,0.0,14.1,326.0,02:12.2,16.0,326.0,3.7 +82,3.78,0.0,0.0,14.1,326.0,02:12.2,16.0,326.0,3.7 +83,3.78,0.0,0.0,14.1,326.0,02:12.2,16.0,326.0,3.7 +84,3.78,0.0,0.0,14.1,326.0,02:12.2,16.0,326.0,3.7 +85,3.79,0.0,0.0,14.2,352.0,02:11.9,16.0,352.0,3.7 +86,3.79,0.0,0.0,14.2,352.0,02:11.9,16.0,352.0,3.7 +87,3.79,0.0,0.0,14.2,352.0,02:11.9,16.0,352.0,3.7 +88,3.79,0.0,0.0,14.2,352.0,02:11.9,16.0,352.0,3.7 +89,3.77,0.0,0.0,14.1,368.0,02:12.5,16.0,368.0,3.7 +90,3.77,0.0,0.0,14.1,368.0,02:12.5,16.0,368.0,3.7 +91,3.77,0.0,0.0,14.1,368.0,02:12.5,16.0,368.0,3.7 +92,3.77,0.0,0.0,14.1,368.0,02:12.5,16.0,368.0,3.7 +93,3.77,0.0,0.0,14.1,368.0,02:12.5,16.0,368.0,3.7 +94,3.77,0.0,0.0,14.1,368.0,02:12.5,16.0,368.0,3.7 +95,3.77,0.0,0.0,14.1,368.0,02:12.5,16.0,368.0,3.7 +96,3.8,0.0,0.0,14.2,394.0,02:11.4,16.0,394.0,3.8 +97,3.8,0.0,0.0,14.2,394.0,02:11.4,16.0,394.0,3.8 +98,3.8,0.0,0.0,14.2,394.0,02:11.4,16.0,394.0,3.8 +99,3.8,0.0,0.0,14.2,394.0,02:11.4,16.0,394.0,3.8 +100,3.8,0.0,0.0,14.2,410.0,02:11.4,16.0,410.0,3.8 +101,3.8,0.0,0.0,14.2,410.0,02:11.4,16.0,410.0,3.8 +102,3.8,0.0,0.0,14.2,410.0,02:11.4,16.0,410.0,3.8 +103,3.8,0.0,0.0,14.2,410.0,02:11.4,16.0,410.0,3.8 +104,3.81,0.0,0.0,14.3,425.0,02:11.3,15.9,425.0,3.8 +105,3.81,0.0,0.0,14.3,425.0,02:11.3,15.9,425.0,3.8 +106,3.81,0.0,0.0,14.3,425.0,02:11.3,15.9,425.0,3.8 +107,3.81,0.0,0.0,14.3,425.0,02:11.3,15.9,425.0,3.8 +108,3.81,0.0,0.0,14.3,425.0,02:11.3,15.9,425.0,3.8 +109,3.81,0.0,0.0,14.3,425.0,02:11.3,15.9,425.0,3.8 +110,3.81,0.0,0.0,14.3,425.0,02:11.3,15.9,425.0,3.8 +111,3.81,0.0,0.0,14.3,425.0,02:11.3,15.9,425.0,3.8 +112,3.8,0.0,0.0,14.1,456.0,02:11.4,16.1,456.0,3.8 +113,3.8,0.0,0.0,14.1,456.0,02:11.4,16.1,456.0,3.8 +114,3.8,0.0,0.0,14.1,456.0,02:11.4,16.1,456.0,3.8 +115,3.8,0.0,0.0,14.1,456.0,02:11.4,16.1,456.0,3.8 +116,3.8,0.0,0.0,14.1,456.0,02:11.4,16.1,456.0,3.8 +117,3.8,0.0,0.0,14.1,456.0,02:11.4,16.1,456.0,3.8 +118,3.84,0.0,0.0,13.5,479.0,02:10.2,17.0,479.0,3.8 +119,3.84,0.0,0.0,13.5,479.0,02:10.2,17.0,479.0,3.8 +120,3.84,0.0,0.0,13.5,479.0,02:10.2,17.0,479.0,3.8 +121,3.84,0.0,0.0,13.5,479.0,02:10.2,17.0,479.0,3.8 +122,3.94,0.0,0.0,13.2,495.0,02:06.8,17.8,495.0,3.9 +123,3.94,0.0,0.0,13.2,495.0,02:06.8,17.8,495.0,3.9 +124,3.94,0.0,0.0,13.2,495.0,02:06.8,17.8,495.0,3.9 +125,3.94,0.0,0.0,13.2,495.0,02:06.8,17.8,495.0,3.9 +126,3.94,0.0,0.0,13.2,495.0,02:06.8,17.8,495.0,3.9 +127,3.94,0.0,0.0,13.2,495.0,02:06.8,17.8,495.0,3.9 +128,3.94,0.0,0.0,13.2,495.0,02:06.8,17.8,495.0,3.9 +129,3.92,0.0,0.0,13.0,523.0,02:07.4,18.0,523.0,3.9 +130,3.92,0.0,0.0,13.0,523.0,02:07.4,18.0,523.0,3.9 +131,3.92,0.0,0.0,13.0,523.0,02:07.4,18.0,523.0,3.9 +132,3.92,0.0,0.0,13.0,523.0,02:07.4,18.0,523.0,3.9 +133,3.92,0.0,0.0,13.0,523.0,02:07.4,18.0,523.0,3.9 +134,3.92,0.0,0.0,13.0,523.0,02:07.4,18.0,523.0,3.9 +135,3.92,0.0,0.0,13.0,545.0,02:07.6,18.0,545.0,3.9 +136,3.92,0.0,0.0,13.0,545.0,02:07.6,18.0,545.0,3.9 +137,3.92,0.0,0.0,13.0,545.0,02:07.6,18.0,545.0,3.9 +138,3.92,0.0,0.0,13.0,545.0,02:07.6,18.0,545.0,3.9 +139,3.94,0.0,0.0,13.1,562.0,02:06.8,18.0,562.0,3.9 +140,3.94,0.0,0.0,13.1,562.0,02:06.8,18.0,562.0,3.9 +141,3.94,0.0,0.0,13.1,562.0,02:06.8,18.0,562.0,3.9 +142,3.94,0.0,0.0,13.1,562.0,02:06.8,18.0,562.0,3.9 +143,3.94,0.0,0.0,13.1,562.0,02:06.8,18.0,562.0,3.9 +144,3.94,0.0,0.0,13.1,562.0,02:06.8,18.0,562.0,3.9 +145,3.92,0.0,0.0,13.0,585.0,02:07.4,18.0,585.0,3.9 +146,3.92,0.0,0.0,13.0,585.0,02:07.4,18.0,585.0,3.9 +147,3.92,0.0,0.0,13.0,585.0,02:07.4,18.0,585.0,3.9 +148,3.92,0.0,0.0,13.0,585.0,02:07.4,18.0,585.0,3.9 +149,3.92,0.0,0.0,13.0,585.0,02:07.4,18.0,585.0,3.9 +150,3.92,0.0,0.0,13.0,585.0,02:07.4,18.0,585.0,3.9 +151,3.92,0.0,0.0,13.0,585.0,02:07.4,18.0,585.0,3.9 +152,3.91,0.0,0.0,13.3,612.0,02:07.7,17.6,612.0,3.9 +153,3.91,0.0,0.0,13.3,612.0,02:07.7,17.6,612.0,3.9 +154,3.91,0.0,0.0,13.3,612.0,02:07.7,17.6,612.0,3.9 +155,3.91,0.0,0.0,13.3,612.0,02:07.7,17.6,612.0,3.9 +156,3.93,0.0,0.0,13.4,629.0,02:07.1,17.5,629.0,3.9 +157,3.93,0.0,0.0,13.4,629.0,02:07.1,17.5,629.0,3.9 +158,3.93,0.0,0.0,13.4,629.0,02:07.1,17.5,629.0,3.9 +159,3.93,0.0,0.0,13.4,629.0,02:07.1,17.5,629.0,3.9 +160,3.93,0.0,0.0,13.4,629.0,02:07.1,17.5,629.0,3.9 +161,3.93,0.0,0.0,13.4,629.0,02:07.1,17.5,629.0,3.9 +162,3.93,0.0,0.0,13.3,652.0,02:07.1,17.6,652.0,3.9 +163,3.93,0.0,0.0,13.3,652.0,02:07.1,17.6,652.0,3.9 +164,3.93,0.0,0.0,13.3,652.0,02:07.1,17.6,652.0,3.9 +165,3.93,0.0,0.0,13.3,652.0,02:07.1,17.6,652.0,3.9 +166,3.96,0.0,0.0,13.1,669.0,02:06.1,18.0,669.0,3.9 +167,3.96,0.0,0.0,13.1,669.0,02:06.1,18.0,669.0,3.9 +168,3.96,0.0,0.0,13.1,669.0,02:06.1,18.0,669.0,3.9 +169,3.96,0.0,0.0,13.1,669.0,02:06.1,18.0,669.0,3.9 +170,3.96,0.0,0.0,13.1,669.0,02:06.1,18.0,669.0,3.9 +171,3.96,0.0,0.0,13.1,669.0,02:06.1,18.0,669.0,3.9 +172,3.97,0.0,0.0,13.2,692.0,02:06.1,18.0,692.0,3.9 +173,3.97,0.0,0.0,13.2,692.0,02:06.1,18.0,692.0,3.9 +174,3.97,0.0,0.0,13.2,692.0,02:06.1,18.0,692.0,3.9 +175,3.97,0.0,0.0,13.2,692.0,02:06.1,18.0,692.0,3.9 +176,3.97,0.0,0.0,13.2,708.0,02:06.1,18.0,708.0,3.9 +177,3.97,0.0,0.0,13.2,708.0,02:06.1,18.0,708.0,3.9 +178,3.97,0.0,0.0,13.2,708.0,02:06.1,18.0,708.0,3.9 +179,3.97,0.0,0.0,13.2,708.0,02:06.1,18.0,708.0,3.9 +180,3.97,0.0,0.0,13.2,708.0,02:06.1,18.0,708.0,3.9 +181,3.97,0.0,0.0,13.2,708.0,02:06.1,18.0,708.0,3.9 +182,3.95,0.0,0.0,13.1,731.0,02:06.5,18.0,731.0,3.9 +183,3.95,0.0,0.0,13.1,731.0,02:06.5,18.0,731.0,3.9 +184,3.95,0.0,0.0,13.1,731.0,02:06.5,18.0,731.0,3.9 +185,3.95,0.0,0.0,13.1,731.0,02:06.5,18.0,731.0,3.9 +186,3.91,0.0,0.0,13.0,748.0,02:07.8,18.0,748.0,3.9 +187,3.91,0.0,0.0,13.0,748.0,02:07.8,18.0,748.0,3.9 +188,3.91,0.0,0.0,13.0,748.0,02:07.8,18.0,748.0,3.9 +189,3.91,0.0,0.0,13.0,748.0,02:07.8,18.0,748.0,3.9 +190,3.91,0.0,0.0,13.0,748.0,02:07.8,18.0,748.0,3.9 +191,3.91,0.0,0.0,13.0,748.0,02:07.8,18.0,748.0,3.9 +192,3.91,0.0,0.0,13.0,770.0,02:08.0,18.0,770.0,3.9 +193,3.91,0.0,0.0,13.0,770.0,02:08.0,18.0,770.0,3.9 +194,3.91,0.0,0.0,13.0,770.0,02:08.0,18.0,770.0,3.9 +195,3.91,0.0,0.0,13.0,770.0,02:08.0,18.0,770.0,3.9 +196,3.95,0.0,0.0,13.1,787.0,02:06.5,18.0,787.0,3.9 +197,3.95,0.0,0.0,13.1,787.0,02:06.5,18.0,787.0,3.9 +198,3.95,0.0,0.0,13.1,787.0,02:06.5,18.0,787.0,3.9 +199,3.95,0.0,0.0,13.1,787.0,02:06.5,18.0,787.0,3.9 +200,3.95,0.0,0.0,13.1,787.0,02:06.5,18.0,787.0,3.9 +201,3.95,0.0,0.0,13.1,787.0,02:06.5,18.0,787.0,3.9 +202,3.92,0.0,0.0,13.0,810.0,02:07.5,18.0,810.0,3.9 +203,3.92,0.0,0.0,13.0,810.0,02:07.5,18.0,810.0,3.9 +204,3.92,0.0,0.0,13.0,810.0,02:07.5,18.0,810.0,3.9 +205,3.92,0.0,0.0,13.0,810.0,02:07.5,18.0,810.0,3.9 +206,3.89,0.0,0.0,12.9,826.0,02:08.4,18.0,826.0,3.8 +207,3.89,0.0,0.0,12.9,826.0,02:08.4,18.0,826.0,3.8 +208,3.89,0.0,0.0,12.9,826.0,02:08.4,18.0,826.0,3.8 +209,3.89,0.0,0.0,12.9,826.0,02:08.4,18.0,826.0,3.8 +210,3.89,0.0,0.0,12.9,826.0,02:08.4,18.0,826.0,3.8 +211,3.89,0.0,0.0,12.9,826.0,02:08.4,18.0,826.0,3.8 +212,3.89,0.0,0.0,12.9,826.0,02:08.4,18.0,826.0,3.8 +213,3.89,0.0,0.0,12.9,826.0,02:08.4,18.0,826.0,3.8 +214,3.89,0.0,0.0,12.9,826.0,02:08.4,18.0,826.0,3.8 +215,3.89,0.0,0.0,12.9,826.0,02:08.4,18.0,826.0,3.8 +216,3.95,0.0,0.0,13.1,866.0,02:06.4,18.0,866.0,3.9 +217,3.95,0.0,0.0,13.1,866.0,02:06.4,18.0,866.0,3.9 +218,3.95,0.0,0.0,13.1,866.0,02:06.4,18.0,866.0,3.9 +219,3.95,0.0,0.0,13.1,878.0,02:06.4,18.0,878.0,3.9 +220,3.95,0.0,0.0,13.1,878.0,02:06.4,18.0,878.0,3.9 +221,3.95,0.0,0.0,13.1,878.0,02:06.4,18.0,878.0,3.9 +222,3.95,0.0,0.0,13.1,878.0,02:06.4,18.0,878.0,3.9 +223,3.95,0.0,0.0,13.1,878.0,02:06.4,18.0,878.0,3.9 +224,3.95,0.0,0.0,13.1,878.0,02:06.4,18.0,878.0,3.9 +225,3.95,0.0,0.0,13.1,878.0,02:06.4,18.0,878.0,3.9 +226,3.95,0.0,0.0,13.1,878.0,02:06.4,18.0,878.0,3.9 +227,3.95,0.0,0.0,13.1,878.0,02:06.4,18.0,878.0,3.9 +228,3.93,0.0,0.0,13.2,908.0,02:07.2,17.7,908.0,3.9 +229,3.93,0.0,0.0,13.2,908.0,02:07.2,17.7,908.0,3.9 +230,3.93,0.0,0.0,13.2,908.0,02:07.2,17.7,908.0,3.9 +231,3.93,0.0,0.0,13.2,908.0,02:07.2,17.7,908.0,3.9 +232,3.78,0.0,0.0,13.0,924.0,02:12.2,17.3,924.0,3.7 +233,3.78,0.0,0.0,13.0,924.0,02:12.2,17.3,924.0,3.7 +234,3.78,0.0,0.0,13.0,924.0,02:12.2,17.3,924.0,3.7 +235,3.78,0.0,0.0,13.0,924.0,02:12.2,17.3,924.0,3.7 +236,3.78,0.0,0.0,13.6,940.0,02:12.2,16.6,940.0,3.7 +237,3.78,0.0,0.0,13.6,940.0,02:12.2,16.6,940.0,3.7 +238,3.78,0.0,0.0,13.6,940.0,02:12.2,16.6,940.0,3.7 +239,3.78,0.0,0.0,13.6,940.0,02:12.2,16.6,940.0,3.7 +240,3.78,0.0,0.0,13.6,940.0,02:12.2,16.6,940.0,3.7 +241,3.78,0.0,0.0,13.6,940.0,02:12.2,16.6,940.0,3.7 +242,3.78,0.0,0.0,13.6,940.0,02:12.2,16.6,940.0,3.7 +243,3.88,0.0,0.0,14.3,966.0,02:09.0,16.1,966.0,3.8 +244,3.88,0.0,0.0,14.3,966.0,02:09.0,16.1,966.0,3.8 +245,3.88,0.0,0.0,14.3,966.0,02:09.0,16.1,966.0,3.8 +246,3.88,0.0,0.0,14.3,966.0,02:09.0,16.1,966.0,3.8 +247,3.81,0.0,0.0,14.0,982.0,02:11.1,16.2,982.0,3.8 +248,3.81,0.0,0.0,14.0,982.0,02:11.1,16.2,982.0,3.8 +249,3.81,0.0,0.0,14.0,982.0,02:11.1,16.2,982.0,3.8 +250,3.81,0.0,0.0,14.0,982.0,02:11.1,16.2,982.0,3.8 +251,3.81,0.0,0.0,14.0,982.0,02:11.1,16.2,982.0,3.8 +252,3.81,0.0,0.0,14.0,982.0,02:11.1,16.2,982.0,3.8 +253,3.81,0.0,0.0,14.0,982.0,02:11.1,16.2,982.0,3.8 +254,3.83,0.0,0.0,14.0,1008.0,02:10.6,16.4,1008.0,3.8 +255,3.83,0.0,0.0,14.0,1008.0,02:10.6,16.4,1008.0,3.8 +256,3.83,0.0,0.0,14.0,1008.0,02:10.6,16.4,1008.0,3.8 +257,3.83,0.0,0.0,14.0,1008.0,02:10.6,16.4,1008.0,3.8 +258,3.8,0.0,0.0,13.6,1024.0,02:11.5,16.6,1024.0,3.8 +259,3.8,0.0,0.0,13.6,1024.0,02:11.5,16.6,1024.0,3.8 +260,3.8,0.0,0.0,13.6,1024.0,02:11.5,16.6,1024.0,3.8 +261,3.8,0.0,0.0,13.6,1024.0,02:11.5,16.6,1024.0,3.8 +262,3.8,0.0,0.0,13.6,1024.0,02:11.5,16.6,1024.0,3.8 +263,3.8,0.0,0.0,13.6,1024.0,02:11.5,16.6,1024.0,3.8 +264,3.8,0.0,0.0,13.6,1024.0,02:11.5,16.6,1024.0,3.8 +265,3.8,0.0,0.0,13.9,1050.0,02:11.5,16.4,1050.0,3.8 +266,3.8,0.0,0.0,13.9,1050.0,02:11.5,16.4,1050.0,3.8 +267,3.8,0.0,0.0,13.9,1050.0,02:11.5,16.4,1050.0,3.8 +268,3.8,0.0,0.0,13.9,1050.0,02:11.5,16.4,1050.0,3.8 +269,3.78,0.0,0.0,13.8,1066.0,02:12.3,16.3,1066.0,3.7 +270,3.78,0.0,0.0,13.8,1066.0,02:12.3,16.3,1066.0,3.7 +271,3.78,0.0,0.0,13.8,1066.0,02:12.3,16.3,1066.0,3.7 +272,3.78,0.0,0.0,13.8,1066.0,02:12.3,16.3,1066.0,3.7 +273,3.78,0.0,0.0,13.8,1066.0,02:12.3,16.3,1066.0,3.7 +274,3.78,0.0,0.0,13.8,1066.0,02:12.3,16.3,1066.0,3.7 +275,3.78,0.0,0.0,13.8,1066.0,02:12.3,16.3,1066.0,3.7 +276,3.78,0.0,0.0,13.8,1066.0,02:12.3,16.3,1066.0,3.7 +277,3.78,0.0,0.0,13.8,1066.0,02:12.3,16.3,1066.0,3.7 +278,3.78,0.0,0.0,13.8,1066.0,02:12.3,16.3,1066.0,3.7 +279,3.78,0.0,0.0,13.8,1066.0,02:12.3,16.3,1066.0,3.7 +280,3.75,0.0,0.0,14.1,1106.0,02:13.2,15.9,1106.0,3.7 +281,3.75,0.0,0.0,14.1,1106.0,02:13.2,15.9,1106.0,3.7 +282,3.75,0.0,0.0,14.1,1106.0,02:13.2,15.9,1106.0,3.7 +283,3.75,0.0,0.0,14.1,1106.0,02:13.2,15.9,1106.0,3.7 +284,3.76,0.0,0.0,14.1,1122.0,02:12.8,16.0,1122.0,3.7 +285,3.76,0.0,0.0,14.1,1122.0,02:12.8,16.0,1122.0,3.7 +286,3.76,0.0,0.0,14.1,1122.0,02:12.8,16.0,1122.0,3.7 +287,3.76,0.0,0.0,14.1,1122.0,02:12.8,16.0,1122.0,3.7 +288,3.76,0.0,0.0,14.1,1122.0,02:12.8,16.0,1122.0,3.7 +289,3.76,0.0,0.0,14.1,1122.0,02:12.8,16.0,1122.0,3.7 +290,3.76,0.0,0.0,14.1,1122.0,02:12.8,16.0,1122.0,3.7 +291,3.75,0.0,0.0,14.1,1148.0,02:13.1,15.9,1148.0,3.7 +292,3.75,0.0,0.0,14.1,1148.0,02:13.1,15.9,1148.0,3.7 +293,3.75,0.0,0.0,14.1,1148.0,02:13.1,15.9,1148.0,3.7 +294,3.75,0.0,0.0,14.1,1148.0,02:13.1,15.9,1148.0,3.7 +295,3.74,0.0,0.0,13.7,1164.0,02:13.5,16.3,1164.0,3.7 +296,3.74,0.0,0.0,13.7,1164.0,02:13.5,16.3,1164.0,3.7 +297,3.74,0.0,0.0,13.7,1164.0,02:13.5,16.3,1164.0,3.7 +298,3.74,0.0,0.0,13.7,1164.0,02:13.5,16.3,1164.0,3.7 +299,3.77,0.0,0.0,13.7,1179.0,02:12.7,16.4,1179.0,3.7 +300,3.77,0.0,0.0,13.7,1179.0,02:12.7,16.4,1179.0,3.7 +301,3.77,0.0,0.0,13.7,1179.0,02:12.7,16.4,1179.0,3.7 +302,3.77,0.0,0.0,13.7,1179.0,02:12.7,16.4,1179.0,3.7 +303,3.77,0.0,0.0,13.7,1179.0,02:12.7,16.4,1179.0,3.7 +304,3.77,0.0,0.0,13.7,1179.0,02:12.7,16.4,1179.0,3.7 +305,3.77,0.0,0.0,13.7,1179.0,02:12.7,16.4,1179.0,3.7 +306,3.73,0.0,0.0,13.7,1205.0,02:14.0,16.3,1205.0,3.7 +307,3.73,0.0,0.0,13.7,1205.0,02:14.0,16.3,1205.0,3.7 +308,3.73,0.0,0.0,13.7,1205.0,02:14.0,16.3,1205.0,3.7 +309,3.73,0.0,0.0,13.7,1205.0,02:14.0,16.3,1205.0,3.7 +310,3.73,0.0,0.0,13.7,1205.0,02:14.0,16.3,1205.0,3.7 +311,3.73,0.0,0.0,13.7,1205.0,02:14.0,16.3,1205.0,3.7 +312,3.73,0.0,0.0,13.7,1205.0,02:14.0,16.3,1205.0,3.7 +313,3.73,0.0,0.0,13.7,1205.0,02:14.0,16.3,1205.0,3.7 +314,3.73,0.0,0.0,13.7,1205.0,02:14.0,16.3,1205.0,3.7 +315,3.73,0.0,0.0,13.7,1205.0,02:14.0,16.3,1205.0,3.7 +316,3.73,0.0,0.0,13.7,1205.0,02:14.0,16.3,1205.0,3.7 +317,3.75,0.0,0.0,14.1,1245.0,02:13.2,15.9,1245.0,3.7 +318,3.75,0.0,0.0,14.1,1245.0,02:13.2,15.9,1245.0,3.7 +319,3.75,0.0,0.0,14.1,1245.0,02:13.2,15.9,1245.0,3.7 +320,3.75,0.0,0.0,14.1,1245.0,02:13.2,15.9,1245.0,3.7 +321,3.72,0.0,0.0,13.9,1261.0,02:14.3,16.0,1261.0,3.7 +322,3.72,0.0,0.0,13.9,1261.0,02:14.3,16.0,1261.0,3.7 +323,3.72,0.0,0.0,13.9,1261.0,02:14.3,16.0,1261.0,3.7 +324,3.72,0.0,0.0,13.9,1261.0,02:14.3,16.0,1261.0,3.7 +325,3.72,0.0,0.0,13.9,1261.0,02:14.3,16.0,1261.0,3.7 +326,3.72,0.0,0.0,13.9,1261.0,02:14.3,16.0,1261.0,3.7 +327,3.72,0.0,0.0,13.9,1261.0,02:14.3,16.0,1261.0,3.7 +328,3.69,0.0,0.0,13.8,1287.0,02:15.6,16.0,1287.0,3.6 +329,3.69,0.0,0.0,13.8,1287.0,02:15.6,16.0,1287.0,3.6 +330,3.69,0.0,0.0,13.8,1287.0,02:15.6,16.0,1287.0,3.6 +331,3.69,0.0,0.0,13.8,1287.0,02:15.6,16.0,1287.0,3.6 +332,3.69,0.0,0.0,13.8,1302.0,02:15.6,16.0,1302.0,3.6 +333,3.69,0.0,0.0,13.8,1302.0,02:15.6,16.0,1302.0,3.6 +334,3.69,0.0,0.0,13.8,1302.0,02:15.6,16.0,1302.0,3.6 +335,3.69,0.0,0.0,13.8,1302.0,02:15.6,16.0,1302.0,3.6 +336,3.72,0.0,0.0,13.9,1317.0,02:14.2,16.0,1317.0,3.7 +337,3.72,0.0,0.0,13.9,1317.0,02:14.2,16.0,1317.0,3.7 +338,3.72,0.0,0.0,13.9,1317.0,02:14.2,16.0,1317.0,3.7 +339,3.72,0.0,0.0,13.9,1317.0,02:14.2,16.0,1317.0,3.7 +340,3.72,0.0,0.0,13.9,1317.0,02:14.2,16.0,1317.0,3.7 +341,3.72,0.0,0.0,13.9,1317.0,02:14.2,16.0,1317.0,3.7 +342,3.72,0.0,0.0,13.9,1317.0,02:14.2,16.0,1317.0,3.7 +343,3.72,0.0,0.0,13.9,1343.0,02:14.4,16.0,1343.0,3.7 +344,3.72,0.0,0.0,13.9,1343.0,02:14.4,16.0,1343.0,3.7 +345,3.72,0.0,0.0,13.9,1343.0,02:14.4,16.0,1343.0,3.7 +346,3.72,0.0,0.0,13.9,1343.0,02:14.4,16.0,1343.0,3.7 +347,3.74,0.0,0.0,14.0,1358.0,02:13.7,16.0,1358.0,3.7 +348,3.74,0.0,0.0,14.0,1358.0,02:13.7,16.0,1358.0,3.7 +349,3.74,0.0,0.0,14.0,1358.0,02:13.7,16.0,1358.0,3.7 +350,3.74,0.0,0.0,14.0,1358.0,02:13.7,16.0,1358.0,3.7 +351,3.73,0.0,0.0,14.1,1373.0,02:14.0,15.8,1373.0,3.7 +352,3.73,0.0,0.0,14.1,1373.0,02:14.0,15.8,1373.0,3.7 +353,3.73,0.0,0.0,14.1,1373.0,02:14.0,15.8,1373.0,3.7 +354,3.71,0.0,0.0,13.4,1385.0,02:14.7,16.6,1385.0,3.7 +355,3.71,0.0,0.0,13.4,1385.0,02:14.7,16.6,1385.0,3.7 +356,3.71,0.0,0.0,13.4,1385.0,02:14.7,16.6,1385.0,3.7 +357,3.71,0.0,0.0,13.4,1385.0,02:14.7,16.6,1385.0,3.7 +358,3.84,0.0,0.0,13.4,1401.0,02:10.0,17.1,1401.0,3.8 +359,3.84,0.0,0.0,13.4,1401.0,02:10.0,17.1,1401.0,3.8 +360,3.84,0.0,0.0,13.4,1401.0,02:10.0,17.1,1401.0,3.8 +361,3.84,0.0,0.0,13.4,1401.0,02:10.0,17.1,1401.0,3.8 +362,3.84,0.0,0.0,13.4,1401.0,02:10.0,17.1,1401.0,3.8 +363,3.84,0.0,0.0,13.4,1401.0,02:10.0,17.1,1401.0,3.8 +364,3.86,0.0,0.0,13.1,1423.0,02:09.3,17.6,1423.0,3.8 +365,3.86,0.0,0.0,13.1,1423.0,02:09.3,17.6,1423.0,3.8 +366,3.86,0.0,0.0,13.1,1423.0,02:09.3,17.6,1423.0,3.8 +367,3.86,0.0,0.0,13.1,1423.0,02:09.3,17.6,1423.0,3.8 +368,3.87,0.0,0.0,13.1,1440.0,02:09.1,17.6,1440.0,3.8 +369,3.87,0.0,0.0,13.1,1440.0,02:09.1,17.6,1440.0,3.8 +370,3.87,0.0,0.0,13.1,1440.0,02:09.1,17.6,1440.0,3.8 +371,3.87,0.0,0.0,13.1,1440.0,02:09.1,17.6,1440.0,3.8 +372,3.87,0.0,0.0,13.1,1440.0,02:09.1,17.6,1440.0,3.8 +373,3.87,0.0,0.0,13.1,1440.0,02:09.1,17.6,1440.0,3.8 +374,3.87,0.0,0.0,13.1,1440.0,02:09.1,17.6,1440.0,3.8 +375,3.88,0.0,0.0,12.8,1467.0,02:08.9,18.0,1467.0,3.8 +376,3.88,0.0,0.0,12.8,1467.0,02:08.9,18.0,1467.0,3.8 +377,3.88,0.0,0.0,12.8,1467.0,02:08.9,18.0,1467.0,3.8 +378,3.88,0.0,0.0,12.8,1467.0,02:08.9,18.0,1467.0,3.8 +379,3.88,0.0,0.0,12.8,1467.0,02:08.9,18.0,1467.0,3.8 +380,3.88,0.0,0.0,12.8,1467.0,02:08.9,18.0,1467.0,3.8 +381,3.85,0.0,0.0,12.7,1489.0,02:09.7,18.0,1489.0,3.8 +382,3.85,0.0,0.0,12.7,1489.0,02:09.7,18.0,1489.0,3.8 +383,3.85,0.0,0.0,12.7,1489.0,02:09.7,18.0,1489.0,3.8 +384,3.85,0.0,0.0,12.7,1489.0,02:09.7,18.0,1489.0,3.8 +385,3.89,0.0,0.0,13.2,1506.0,02:08.4,17.6,1506.0,3.8 +386,3.89,0.0,0.0,13.2,1506.0,02:08.4,17.6,1506.0,3.8 +387,3.89,0.0,0.0,13.2,1506.0,02:08.4,17.6,1506.0,3.8 +388,3.88,0.0,0.0,13.2,1517.0,02:09.0,17.6,1517.0,3.8 +389,3.88,0.0,0.0,13.2,1517.0,02:09.0,17.6,1517.0,3.8 +390,3.88,0.0,0.0,13.2,1517.0,02:09.0,17.6,1517.0,3.8 +391,3.88,0.0,0.0,13.2,1517.0,02:09.0,17.6,1517.0,3.8 +392,3.87,0.0,0.0,13.4,1533.0,02:09.3,17.3,1533.0,3.8 +393,3.87,0.0,0.0,13.4,1533.0,02:09.3,17.3,1533.0,3.8 +394,3.87,0.0,0.0,13.4,1533.0,02:09.3,17.3,1533.0,3.8 +395,3.86,0.0,0.0,13.1,1545.0,02:09.3,17.6,1545.0,3.8 +396,3.86,0.0,0.0,13.1,1545.0,02:09.3,17.6,1545.0,3.8 +397,3.86,0.0,0.0,13.1,1545.0,02:09.3,17.6,1545.0,3.8 +398,3.86,0.0,0.0,13.1,1545.0,02:09.3,17.6,1545.0,3.8 +399,3.86,0.0,0.0,13.1,1545.0,02:09.3,17.6,1545.0,3.8 +400,3.86,0.0,0.0,13.1,1545.0,02:09.3,17.6,1545.0,3.8 +401,3.86,0.0,0.0,13.1,1545.0,02:09.3,17.6,1545.0,3.8 +402,3.89,0.0,0.0,13.2,1572.0,02:08.3,17.6,1572.0,3.8 +403,3.89,0.0,0.0,13.2,1572.0,02:08.3,17.6,1572.0,3.8 +404,3.89,0.0,0.0,13.2,1572.0,02:08.3,17.6,1572.0,3.8 +405,3.89,0.0,0.0,13.2,1572.0,02:08.3,17.6,1572.0,3.8 +406,3.89,0.0,0.0,13.2,1572.0,02:08.3,17.6,1572.0,3.8 +407,3.89,0.0,0.0,13.2,1572.0,02:08.3,17.6,1572.0,3.8 +408,3.9,0.0,0.0,12.8,1595.0,02:08.1,18.1,1595.0,3.9 +409,3.9,0.0,0.0,12.8,1595.0,02:08.1,18.1,1595.0,3.9 +410,3.9,0.0,0.0,12.8,1595.0,02:08.1,18.1,1595.0,3.9 +411,3.9,0.0,0.0,12.8,1595.0,02:08.1,18.1,1595.0,3.9 +412,3.9,0.0,0.0,12.8,1595.0,02:08.1,18.1,1595.0,3.9 +413,3.9,0.0,0.0,12.8,1595.0,02:08.1,18.1,1595.0,3.9 +414,3.9,0.0,0.0,12.8,1595.0,02:08.1,18.1,1595.0,3.9 +415,3.88,0.0,0.0,13.1,1621.0,02:08.8,17.6,1621.0,3.8 +416,3.88,0.0,0.0,13.1,1621.0,02:08.8,17.6,1621.0,3.8 +417,3.88,0.0,0.0,13.1,1621.0,02:08.8,17.6,1621.0,3.8 +418,3.88,0.0,0.0,13.1,1621.0,02:08.8,17.6,1621.0,3.8 +419,3.87,0.0,0.0,13.1,1638.0,02:09.3,17.6,1638.0,3.8 +420,3.87,0.0,0.0,13.1,1638.0,02:09.3,17.6,1638.0,3.8 +421,3.87,0.0,0.0,13.1,1638.0,02:09.3,17.6,1638.0,3.8 +422,3.87,0.0,0.0,13.1,1638.0,02:09.3,17.6,1638.0,3.8 +423,3.87,0.0,0.0,13.1,1638.0,02:09.3,17.6,1638.0,3.8 +424,3.87,0.0,0.0,13.1,1638.0,02:09.3,17.6,1638.0,3.8 +425,3.88,0.0,0.0,13.3,1661.0,02:08.9,17.4,1661.0,3.8 +426,3.88,0.0,0.0,13.3,1661.0,02:08.9,17.4,1661.0,3.8 +427,3.88,0.0,0.0,13.3,1661.0,02:08.9,17.4,1661.0,3.8 +428,3.88,0.0,0.0,13.3,1661.0,02:08.9,17.4,1661.0,3.8 +429,3.86,0.0,0.0,13.4,1677.0,02:09.5,17.2,1677.0,3.8 +430,3.86,0.0,0.0,13.4,1677.0,02:09.5,17.2,1677.0,3.8 +431,3.86,0.0,0.0,13.4,1677.0,02:09.5,17.2,1677.0,3.8 +432,3.86,0.0,0.0,13.4,1677.0,02:09.5,17.2,1677.0,3.8 +433,3.86,0.0,0.0,13.4,1677.0,02:09.5,17.2,1677.0,3.8 +434,3.86,0.0,0.0,13.4,1677.0,02:09.5,17.2,1677.0,3.8 +435,3.86,0.0,0.0,13.4,1677.0,02:09.5,17.2,1677.0,3.8 +436,3.85,0.0,0.0,13.4,1704.0,02:09.7,17.1,1704.0,3.8 +437,3.85,0.0,0.0,13.4,1704.0,02:09.7,17.1,1704.0,3.8 +438,3.85,0.0,0.0,13.4,1704.0,02:09.7,17.1,1704.0,3.8 +439,3.85,0.0,0.0,13.4,1704.0,02:09.7,17.1,1704.0,3.8 +440,3.85,0.0,0.0,13.4,1704.0,02:09.7,17.1,1704.0,3.8 +441,3.85,0.0,0.0,13.4,1704.0,02:09.7,17.1,1704.0,3.8 +442,3.88,0.0,0.0,13.0,1727.0,02:09.0,17.8,1727.0,3.8 +443,3.88,0.0,0.0,13.0,1727.0,02:09.0,17.8,1727.0,3.8 +444,3.88,0.0,0.0,13.0,1727.0,02:09.0,17.8,1727.0,3.8 +445,3.88,0.0,0.0,13.0,1727.0,02:09.0,17.8,1727.0,3.8 +446,3.88,0.0,0.0,13.0,1727.0,02:09.0,17.8,1727.0,3.8 +447,3.88,0.0,0.0,13.0,1727.0,02:09.0,17.8,1727.0,3.8 +448,3.88,0.0,0.0,13.0,1727.0,02:09.0,17.8,1727.0,3.8 +449,3.88,0.0,0.0,13.1,1754.0,02:08.9,17.7,1754.0,3.8 +450,3.88,0.0,0.0,13.1,1754.0,02:08.9,17.7,1754.0,3.8 +451,3.88,0.0,0.0,13.1,1754.0,02:08.9,17.7,1754.0,3.8 +452,3.88,0.0,0.0,13.1,1754.0,02:08.9,17.7,1754.0,3.8 +453,3.87,0.0,0.0,13.2,1770.0,02:09.2,17.5,1770.0,3.8 +454,3.87,0.0,0.0,13.2,1770.0,02:09.2,17.5,1770.0,3.8 +455,3.87,0.0,0.0,13.2,1770.0,02:09.2,17.5,1770.0,3.8 +456,3.87,0.0,0.0,13.2,1770.0,02:09.2,17.5,1770.0,3.8 +457,3.87,0.0,0.0,13.2,1770.0,02:09.2,17.5,1770.0,3.8 +458,3.87,0.0,0.0,13.2,1770.0,02:09.2,17.5,1770.0,3.8 +459,3.87,0.0,0.0,13.2,1770.0,02:09.2,17.5,1770.0,3.8 +460,3.88,0.0,0.0,13.1,1798.0,02:08.9,17.6,1798.0,3.8 +461,3.88,0.0,0.0,13.1,1798.0,02:08.9,17.6,1798.0,3.8 +462,3.88,0.0,0.0,13.1,1798.0,02:08.9,17.6,1798.0,3.8 +463,3.88,0.0,0.0,12.8,1809.0,02:08.9,18.0,1809.0,3.8 +464,3.88,0.0,0.0,12.8,1809.0,02:08.9,18.0,1809.0,3.8 +465,3.88,0.0,0.0,12.8,1809.0,02:08.9,18.0,1809.0,3.8 +466,3.88,0.0,0.0,12.8,1809.0,02:08.9,18.0,1809.0,3.8 +467,3.88,0.0,0.0,12.8,1809.0,02:08.9,18.0,1809.0,3.8 +468,3.88,0.0,0.0,12.8,1809.0,02:08.9,18.0,1809.0,3.8 +469,3.94,0.0,0.0,13.0,1833.0,02:06.9,18.1,1833.0,3.9 +470,3.94,0.0,0.0,13.0,1833.0,02:06.9,18.1,1833.0,3.9 +471,3.94,0.0,0.0,13.0,1833.0,02:06.9,18.1,1833.0,3.9 +472,3.94,0.0,0.0,13.0,1833.0,02:06.9,18.1,1833.0,3.9 +473,3.94,0.0,0.0,13.0,1833.0,02:06.9,18.1,1833.0,3.9 +474,3.94,0.0,0.0,13.0,1833.0,02:06.9,18.1,1833.0,3.9 +475,3.94,0.0,0.0,13.0,1833.0,02:06.9,18.1,1833.0,3.9 +476,3.92,0.0,0.0,13.4,1860.0,02:07.7,17.4,1860.0,3.9 +477,3.92,0.0,0.0,13.4,1860.0,02:07.7,17.4,1860.0,3.9 +478,3.92,0.0,0.0,13.4,1860.0,02:07.7,17.4,1860.0,3.9 +479,3.92,0.0,0.0,13.4,1860.0,02:07.7,17.4,1860.0,3.9 +480,3.84,0.0,0.0,13.9,1876.0,02:10.1,16.5,1876.0,3.8 +481,3.84,0.0,0.0,13.9,1876.0,02:10.1,16.5,1876.0,3.8 +482,3.84,0.0,0.0,13.9,1876.0,02:10.1,16.5,1876.0,3.8 +483,3.84,0.0,0.0,13.9,1876.0,02:10.1,16.5,1876.0,3.8 +484,3.84,0.0,0.0,13.9,1876.0,02:10.1,16.5,1876.0,3.8 +485,3.84,0.0,0.0,13.9,1876.0,02:10.1,16.5,1876.0,3.8 +486,3.84,0.0,0.0,13.9,1876.0,02:10.1,16.5,1876.0,3.8 +487,3.84,0.0,0.0,13.9,1876.0,02:10.1,16.5,1876.0,3.8 +488,3.77,0.0,0.0,14.2,1906.0,02:12.7,15.8,1906.0,3.7 +489,3.77,0.0,0.0,14.2,1906.0,02:12.7,15.8,1906.0,3.7 +490,3.77,0.0,0.0,14.2,1906.0,02:12.7,15.8,1906.0,3.7 +491,3.77,0.0,0.0,14.1,1917.0,02:12.7,16.0,1917.0,3.7 +492,3.77,0.0,0.0,14.1,1917.0,02:12.7,16.0,1917.0,3.7 +493,3.77,0.0,0.0,14.1,1917.0,02:12.7,16.0,1917.0,3.7 +494,3.77,0.0,0.0,14.1,1917.0,02:12.7,16.0,1917.0,3.7 +495,3.73,0.0,0.0,14.0,1932.0,02:13.9,16.0,1932.0,3.7 +496,3.73,0.0,0.0,14.0,1932.0,02:13.9,16.0,1932.0,3.7 +497,3.73,0.0,0.0,14.0,1932.0,02:13.9,16.0,1932.0,3.7 +498,3.73,0.0,0.0,14.0,1932.0,02:13.9,16.0,1932.0,3.7 +499,3.73,0.0,0.0,14.0,1932.0,02:13.9,16.0,1932.0,3.7 +500,3.73,0.0,0.0,14.0,1932.0,02:13.9,16.0,1932.0,3.7 +501,3.73,0.0,0.0,14.0,1932.0,02:13.9,16.0,1932.0,3.7 +502,3.73,0.0,0.0,14.0,1932.0,02:13.9,16.0,1932.0,3.7 +503,3.72,0.0,0.0,14.0,1962.0,02:14.5,15.9,1962.0,3.7 +504,3.72,0.0,0.0,14.0,1962.0,02:14.5,15.9,1962.0,3.7 +505,3.72,0.0,0.0,14.0,1962.0,02:14.5,15.9,1962.0,3.7 +506,3.72,0.0,0.0,13.7,1973.0,02:14.5,16.2,1973.0,3.7 +507,3.72,0.0,0.0,13.7,1973.0,02:14.5,16.2,1973.0,3.7 +508,3.72,0.0,0.0,13.7,1973.0,02:14.5,16.2,1973.0,3.7 +509,3.72,0.0,0.0,13.7,1973.0,02:14.5,16.2,1973.0,3.7 +510,3.72,0.0,0.0,13.7,1973.0,02:14.5,16.2,1973.0,3.7 +511,3.72,0.0,0.0,13.7,1973.0,02:14.5,16.2,1973.0,3.7 +512,3.72,0.0,0.0,13.7,1973.0,02:14.5,16.2,1973.0,3.7 +513,3.72,0.0,0.0,13.2,2000.0,02:14.4,16.8,2000.0,3.7 +514,3.72,0.0,0.0,13.2,2000.0,02:14.4,16.8,2000.0,3.7 +515,3.72,0.0,0.0,13.2,2000.0,02:14.4,16.8,2000.0,3.7 +516,3.72,0.0,0.0,13.2,2000.0,02:14.4,16.8,2000.0,3.7 +517,3.72,0.0,0.0,13.2,2015.0,02:14.4,16.8,2015.0,3.7 +518,3.72,0.0,0.0,13.2,2015.0,02:14.4,16.8,2015.0,3.7 +519,3.72,0.0,0.0,13.2,2015.0,02:14.4,16.8,2015.0,3.7 +520,3.72,0.0,0.0,13.2,2015.0,02:14.4,16.8,2015.0,3.7 +521,3.72,0.0,0.0,13.2,2015.0,02:14.4,16.8,2015.0,3.7 +522,3.72,0.0,0.0,13.2,2015.0,02:14.4,16.8,2015.0,3.7 +523,3.72,0.0,0.0,13.2,2015.0,02:14.4,16.8,2015.0,3.7 +524,3.72,0.0,0.0,13.2,2015.0,02:14.4,16.8,2015.0,3.7 +525,3.72,0.0,0.0,13.2,2015.0,02:14.4,16.8,2015.0,3.7 +526,3.72,0.0,0.0,13.2,2015.0,02:14.4,16.8,2015.0,3.7 +527,3.72,0.0,0.0,13.2,2015.0,02:14.4,16.8,2015.0,3.7 +528,3.72,0.0,0.0,13.7,2055.0,02:14.4,16.2,2055.0,3.7 +529,3.72,0.0,0.0,13.7,2055.0,02:14.4,16.2,2055.0,3.7 +530,3.72,0.0,0.0,13.7,2055.0,02:14.4,16.2,2055.0,3.7 +531,3.72,0.0,0.0,13.7,2055.0,02:14.4,16.2,2055.0,3.7 +532,3.73,0.0,0.0,14.0,2071.0,02:13.9,16.0,2071.0,3.7 +533,3.73,0.0,0.0,14.0,2071.0,02:13.9,16.0,2071.0,3.7 +534,3.73,0.0,0.0,14.0,2071.0,02:13.9,16.0,2071.0,3.7 +535,3.73,0.0,0.0,14.0,2071.0,02:13.9,16.0,2071.0,3.7 +536,3.73,0.0,0.0,14.0,2071.0,02:13.9,16.0,2071.0,3.7 +537,3.73,0.0,0.0,14.0,2071.0,02:13.9,16.0,2071.0,3.7 +538,3.73,0.0,0.0,14.0,2071.0,02:13.9,16.0,2071.0,3.7 +539,3.73,0.0,0.0,14.0,2071.0,02:13.9,16.0,2071.0,3.7 +540,3.73,0.0,0.0,14.0,2071.0,02:13.9,16.0,2071.0,3.7 +541,3.73,0.0,0.0,14.0,2071.0,02:13.9,16.0,2071.0,3.7 +542,3.73,0.0,0.0,14.0,2071.0,02:13.9,16.0,2071.0,3.7 +543,3.73,0.0,0.0,14.0,2071.0,02:13.9,16.0,2071.0,3.7 +544,3.73,0.0,0.0,14.0,2071.0,02:13.9,16.0,2071.0,3.7 +545,3.73,0.0,0.0,14.0,2071.0,02:13.9,16.0,2071.0,3.7 +546,3.73,0.0,0.0,14.0,2071.0,02:13.9,16.0,2071.0,3.7 +547,3.74,0.0,0.0,14.4,2127.0,02:13.6,15.5,2127.0,3.7 +548,3.74,0.0,0.0,14.4,2127.0,02:13.6,15.5,2127.0,3.7 +549,3.74,0.0,0.0,14.4,2127.0,02:13.6,15.5,2127.0,3.7 +550,3.74,0.0,0.0,14.4,2127.0,02:13.6,15.5,2127.0,3.7 +551,3.72,0.0,0.0,14.1,2142.0,02:14.5,15.7,2142.0,3.7 +552,3.72,0.0,0.0,14.1,2142.0,02:14.5,15.7,2142.0,3.7 +553,3.72,0.0,0.0,14.1,2142.0,02:14.5,15.7,2142.0,3.7 +554,3.72,0.0,0.0,14.1,2142.0,02:14.5,15.7,2142.0,3.7 +555,3.72,0.0,0.0,14.1,2142.0,02:14.5,15.7,2142.0,3.7 +556,3.72,0.0,0.0,14.1,2142.0,02:14.5,15.7,2142.0,3.7 +557,3.72,0.0,0.0,14.1,2142.0,02:14.5,15.7,2142.0,3.7 +558,3.74,0.0,0.0,13.6,2168.0,02:13.5,16.4,2168.0,3.7 +559,3.74,0.0,0.0,13.6,2168.0,02:13.5,16.4,2168.0,3.7 +560,3.74,0.0,0.0,13.6,2168.0,02:13.5,16.4,2168.0,3.7 +561,3.74,0.0,0.0,13.6,2168.0,02:13.5,16.4,2168.0,3.7 +562,3.74,0.0,0.0,13.2,2183.0,02:13.5,16.9,2183.0,3.7 +563,3.74,0.0,0.0,13.2,2183.0,02:13.5,16.9,2183.0,3.7 +564,3.74,0.0,0.0,13.2,2183.0,02:13.5,16.9,2183.0,3.7 +565,3.74,0.0,0.0,13.2,2183.0,02:13.5,16.9,2183.0,3.7 +566,3.74,0.0,0.0,13.2,2183.0,02:13.5,16.9,2183.0,3.7 +567,3.74,0.0,0.0,13.2,2183.0,02:13.5,16.9,2183.0,3.7 +568,3.74,0.0,0.0,13.2,2183.0,02:13.5,16.9,2183.0,3.7 +569,3.74,0.0,0.0,13.2,2183.0,02:13.5,16.9,2183.0,3.7 +570,3.7,0.0,0.0,13.7,2214.0,02:15.0,16.1,2214.0,3.7 +571,3.7,0.0,0.0,13.7,2214.0,02:15.0,16.1,2214.0,3.7 +572,3.7,0.0,0.0,13.7,2214.0,02:15.0,16.1,2214.0,3.7 +573,3.7,0.0,0.0,13.6,2225.0,02:15.0,16.2,2225.0,3.7 +574,3.7,0.0,0.0,13.6,2225.0,02:15.0,16.2,2225.0,3.7 +575,3.7,0.0,0.0,13.6,2225.0,02:15.0,16.2,2225.0,3.7 +576,3.7,0.0,0.0,13.6,2225.0,02:15.0,16.2,2225.0,3.7 +577,3.69,0.0,0.0,13.5,2240.0,02:15.6,16.3,2240.0,3.6 +578,3.69,0.0,0.0,13.5,2240.0,02:15.6,16.3,2240.0,3.6 +579,3.69,0.0,0.0,13.5,2240.0,02:15.6,16.3,2240.0,3.6 +580,3.69,0.0,0.0,13.5,2240.0,02:15.6,16.3,2240.0,3.6 +581,3.69,0.0,0.0,13.5,2240.0,02:15.6,16.3,2240.0,3.6 +582,3.69,0.0,0.0,13.5,2240.0,02:15.6,16.3,2240.0,3.6 +583,3.69,0.0,0.0,13.5,2240.0,02:15.6,16.3,2240.0,3.6 +584,3.69,0.0,0.0,13.5,2240.0,02:15.6,16.3,2240.0,3.6 +585,3.69,0.0,0.0,13.5,2240.0,02:15.6,16.3,2240.0,3.6 +586,3.69,0.0,0.0,13.5,2240.0,02:15.6,16.3,2240.0,3.6 +587,3.69,0.0,0.0,13.5,2240.0,02:15.6,16.3,2240.0,3.6 +588,3.69,0.0,0.0,13.1,2280.0,02:15.4,16.8,2280.0,3.6 +589,3.69,0.0,0.0,13.1,2280.0,02:15.4,16.8,2280.0,3.6 +590,3.69,0.0,0.0,13.1,2280.0,02:15.4,16.8,2280.0,3.6 +591,3.69,0.0,0.0,13.1,2280.0,02:15.4,16.8,2280.0,3.6 +592,3.69,0.0,0.0,13.1,2280.0,02:15.4,16.8,2280.0,3.6 +593,3.69,0.0,0.0,13.1,2280.0,02:15.4,16.8,2280.0,3.6 +594,3.69,0.0,0.0,13.1,2280.0,02:15.4,16.8,2280.0,3.6 +595,3.83,0.0,0.0,13.2,2307.0,02:10.4,17.4,2307.0,3.8 +596,3.83,0.0,0.0,13.2,2307.0,02:10.4,17.4,2307.0,3.8 +597,3.83,0.0,0.0,13.2,2307.0,02:10.4,17.4,2307.0,3.8 +598,3.83,0.0,0.0,13.2,2307.0,02:10.4,17.4,2307.0,3.8 +599,3.83,0.0,0.0,13.2,2307.0,02:10.4,17.4,2307.0,3.8 +600,3.83,0.0,0.0,13.2,2307.0,02:10.4,17.4,2307.0,3.8 +601,3.83,0.0,0.0,13.2,2307.0,02:10.4,17.4,2307.0,3.8 +602,3.83,0.0,0.0,13.2,2307.0,02:10.4,17.4,2307.0,3.8 +603,3.83,0.0,0.0,13.2,2307.0,02:10.4,17.4,2307.0,3.8 +604,3.83,0.0,0.0,13.2,2307.0,02:10.4,17.4,2307.0,3.8 +605,3.83,0.0,0.0,13.2,2307.0,02:10.4,17.4,2307.0,3.8 +606,3.89,0.0,0.0,12.8,2350.0,02:08.6,18.1,2350.0,3.8 +607,3.89,0.0,0.0,12.8,2350.0,02:08.6,18.1,2350.0,3.8 +608,3.89,0.0,0.0,12.8,2350.0,02:08.6,18.1,2350.0,3.8 +609,3.89,0.0,0.0,12.8,2350.0,02:08.6,18.1,2350.0,3.8 +610,3.89,0.0,0.0,12.8,2350.0,02:08.6,18.1,2350.0,3.8 +611,3.89,0.0,0.0,12.8,2350.0,02:08.6,18.1,2350.0,3.8 +612,3.9,0.0,0.0,13.0,2372.0,02:08.2,18.0,2372.0,3.9 +613,3.9,0.0,0.0,13.0,2372.0,02:08.2,18.0,2372.0,3.9 +614,3.9,0.0,0.0,13.0,2372.0,02:08.2,18.0,2372.0,3.9 +615,3.9,0.0,0.0,13.0,2372.0,02:08.2,18.0,2372.0,3.9 +616,3.89,0.0,0.0,12.9,2389.0,02:08.6,18.0,2389.0,3.8 +617,3.89,0.0,0.0,12.9,2389.0,02:08.6,18.0,2389.0,3.8 +618,3.89,0.0,0.0,12.9,2389.0,02:08.6,18.0,2389.0,3.8 +619,3.89,0.0,0.0,12.9,2389.0,02:08.6,18.0,2389.0,3.8 +620,3.89,0.0,0.0,12.9,2389.0,02:08.6,18.0,2389.0,3.8 +621,3.89,0.0,0.0,12.9,2389.0,02:08.6,18.0,2389.0,3.8 +622,3.89,0.0,0.0,12.9,2389.0,02:08.6,18.0,2389.0,3.8 +623,3.89,0.0,0.0,12.9,2389.0,02:08.6,18.0,2389.0,3.8 +624,3.89,0.0,0.0,12.9,2389.0,02:08.6,18.0,2389.0,3.8 +625,3.89,0.0,0.0,12.9,2389.0,02:08.6,18.0,2389.0,3.8 +626,3.91,0.0,0.0,12.9,2428.0,02:07.8,18.0,2428.0,3.9 +627,3.91,0.0,0.0,12.9,2428.0,02:07.8,18.0,2428.0,3.9 +628,3.91,0.0,0.0,12.9,2428.0,02:07.8,18.0,2428.0,3.9 +629,3.91,0.0,0.0,12.9,2428.0,02:07.8,18.0,2428.0,3.9 +630,3.91,0.0,0.0,12.9,2428.0,02:07.8,18.0,2428.0,3.9 +631,3.91,0.0,0.0,12.9,2428.0,02:07.8,18.0,2428.0,3.9 +632,3.91,0.0,0.0,13.2,2451.0,02:07.9,17.6,2451.0,3.9 +633,3.91,0.0,0.0,13.2,2451.0,02:07.9,17.6,2451.0,3.9 +634,3.91,0.0,0.0,13.2,2451.0,02:07.9,17.6,2451.0,3.9 +635,3.91,0.0,0.0,13.2,2451.0,02:07.9,17.6,2451.0,3.9 +636,3.88,0.0,0.0,13.2,2467.0,02:08.9,17.6,2467.0,3.8 +637,3.88,0.0,0.0,13.2,2467.0,02:08.9,17.6,2467.0,3.8 +638,3.88,0.0,0.0,13.2,2467.0,02:08.9,17.6,2467.0,3.8 +639,3.88,0.0,0.0,13.2,2467.0,02:08.9,17.6,2467.0,3.8 +640,3.88,0.0,0.0,13.2,2467.0,02:08.9,17.6,2467.0,3.8 +641,3.88,0.0,0.0,13.2,2467.0,02:08.9,17.6,2467.0,3.8 +642,3.88,0.0,0.0,13.2,2467.0,02:08.9,17.6,2467.0,3.8 +643,3.89,0.0,0.0,13.4,2494.0,02:08.5,17.3,2494.0,3.8 +644,3.89,0.0,0.0,13.4,2494.0,02:08.5,17.3,2494.0,3.8 +645,3.89,0.0,0.0,13.4,2494.0,02:08.5,17.3,2494.0,3.8 +646,3.89,0.0,0.0,13.4,2494.0,02:08.5,17.3,2494.0,3.8 +647,3.89,0.0,0.0,13.4,2494.0,02:08.5,17.3,2494.0,3.8 +648,3.89,0.0,0.0,13.4,2494.0,02:08.5,17.3,2494.0,3.8 +649,3.9,0.0,0.0,13.3,2517.0,02:08.0,17.6,2517.0,3.9 +650,3.9,0.0,0.0,13.3,2517.0,02:08.0,17.6,2517.0,3.9 +651,3.9,0.0,0.0,13.3,2517.0,02:08.0,17.6,2517.0,3.9 +652,3.9,0.0,0.0,13.3,2517.0,02:08.0,17.6,2517.0,3.9 +653,3.91,0.0,0.0,13.2,2534.0,02:07.9,17.7,2534.0,3.9 +654,3.91,0.0,0.0,13.2,2534.0,02:07.9,17.7,2534.0,3.9 +655,3.91,0.0,0.0,13.2,2534.0,02:07.9,17.7,2534.0,3.9 +656,3.91,0.0,0.0,13.2,2534.0,02:07.9,17.7,2534.0,3.9 +657,3.91,0.0,0.0,13.2,2534.0,02:07.9,17.7,2534.0,3.9 +658,3.91,0.0,0.0,13.2,2534.0,02:07.9,17.7,2534.0,3.9 +659,3.91,0.0,0.0,13.2,2534.0,02:07.9,17.7,2534.0,3.9 +660,3.87,0.0,0.0,13.0,2561.0,02:09.0,17.8,2561.0,3.8 +661,3.87,0.0,0.0,13.0,2561.0,02:09.0,17.8,2561.0,3.8 +662,3.87,0.0,0.0,13.0,2561.0,02:09.0,17.8,2561.0,3.8 +663,3.87,0.0,0.0,13.0,2561.0,02:09.0,17.8,2561.0,3.8 +664,3.87,0.0,0.0,13.0,2561.0,02:09.0,17.8,2561.0,3.8 +665,3.87,0.0,0.0,13.0,2561.0,02:09.0,17.8,2561.0,3.8 +666,3.85,0.0,0.0,13.4,2584.0,02:09.9,17.1,2584.0,3.8 +667,3.85,0.0,0.0,13.4,2584.0,02:09.9,17.1,2584.0,3.8 +668,3.85,0.0,0.0,13.4,2584.0,02:09.9,17.1,2584.0,3.8 +669,3.85,0.0,0.0,13.4,2584.0,02:09.9,17.1,2584.0,3.8 +670,3.85,0.0,0.0,13.4,2600.0,02:09.9,17.1,2600.0,3.8 +671,3.85,0.0,0.0,13.4,2600.0,02:09.9,17.1,2600.0,3.8 +672,3.85,0.0,0.0,13.4,2600.0,02:09.9,17.1,2600.0,3.8 +673,3.85,0.0,0.0,13.0,2611.0,02:09.7,17.7,2611.0,3.8 +674,3.85,0.0,0.0,13.0,2611.0,02:09.7,17.7,2611.0,3.8 +675,3.85,0.0,0.0,13.0,2611.0,02:09.7,17.7,2611.0,3.8 +676,3.85,0.0,0.0,13.0,2611.0,02:09.7,17.7,2611.0,3.8 +677,3.85,0.0,0.0,13.0,2611.0,02:09.7,17.7,2611.0,3.8 +678,3.85,0.0,0.0,13.0,2611.0,02:09.7,17.7,2611.0,3.8 +679,3.85,0.0,0.0,13.0,2611.0,02:09.7,17.7,2611.0,3.8 +680,3.88,0.0,0.0,12.9,2639.0,02:09.0,18.0,2639.0,3.8 +681,3.88,0.0,0.0,12.9,2639.0,02:09.0,18.0,2639.0,3.8 +682,3.88,0.0,0.0,12.9,2639.0,02:09.0,18.0,2639.0,3.8 +683,3.88,0.0,0.0,12.9,2639.0,02:09.0,18.0,2639.0,3.8 +684,3.88,0.0,0.0,12.9,2639.0,02:09.0,18.0,2639.0,3.8 +685,3.88,0.0,0.0,12.9,2639.0,02:09.0,18.0,2639.0,3.8 +686,3.87,0.0,0.0,12.6,2661.0,02:09.2,18.3,2661.0,3.8 +687,3.87,0.0,0.0,12.6,2661.0,02:09.2,18.3,2661.0,3.8 +688,3.87,0.0,0.0,12.6,2661.0,02:09.2,18.3,2661.0,3.8 +689,3.87,0.0,0.0,12.6,2661.0,02:09.2,18.3,2661.0,3.8 +690,3.9,0.0,0.0,12.6,2677.0,02:08.1,18.4,2677.0,3.9 +691,3.9,0.0,0.0,12.6,2677.0,02:08.1,18.4,2677.0,3.9 +692,3.9,0.0,0.0,12.6,2677.0,02:08.1,18.4,2677.0,3.9 +693,3.88,0.0,0.0,12.6,2689.0,02:08.9,18.3,2689.0,3.8 +694,3.88,0.0,0.0,12.6,2689.0,02:08.9,18.3,2689.0,3.8 +695,3.88,0.0,0.0,12.6,2689.0,02:08.9,18.3,2689.0,3.8 +696,3.88,0.0,0.0,12.6,2689.0,02:08.9,18.3,2689.0,3.8 +697,3.88,0.0,0.0,12.6,2689.0,02:08.9,18.3,2689.0,3.8 +698,3.88,0.0,0.0,12.6,2689.0,02:08.9,18.3,2689.0,3.8 +699,3.88,0.0,0.0,12.6,2689.0,02:08.9,18.3,2689.0,3.8 +700,3.9,0.0,0.0,13.0,2717.0,02:08.2,17.9,2717.0,3.9 +701,3.9,0.0,0.0,13.0,2717.0,02:08.2,17.9,2717.0,3.9 +702,3.9,0.0,0.0,13.0,2717.0,02:08.2,17.9,2717.0,3.9 +703,3.9,0.0,0.0,12.8,2728.0,02:08.2,18.1,2728.0,3.9 +704,3.9,0.0,0.0,12.8,2728.0,02:08.2,18.1,2728.0,3.9 +705,3.9,0.0,0.0,12.8,2728.0,02:08.2,18.1,2728.0,3.9 +706,3.9,0.0,0.0,12.8,2728.0,02:08.2,18.1,2728.0,3.9 +707,3.9,0.0,0.0,12.8,2728.0,02:08.2,18.1,2728.0,3.9 +708,3.9,0.0,0.0,12.8,2728.0,02:08.2,18.1,2728.0,3.9 +709,3.91,0.0,0.0,13.4,2751.0,02:07.8,17.4,2751.0,3.9 +710,3.91,0.0,0.0,13.4,2751.0,02:07.8,17.4,2751.0,3.9 +711,3.91,0.0,0.0,13.4,2751.0,02:07.8,17.4,2751.0,3.9 +712,3.91,0.0,0.0,13.4,2751.0,02:07.8,17.4,2751.0,3.9 +713,3.91,0.0,0.0,13.4,2751.0,02:07.8,17.4,2751.0,3.9 +714,3.91,0.0,0.0,13.4,2751.0,02:07.8,17.4,2751.0,3.9 +715,3.91,0.0,0.0,13.4,2751.0,02:07.8,17.4,2751.0,3.9 +716,3.91,0.0,0.0,13.4,2751.0,02:07.8,17.4,2751.0,3.9 +717,3.91,0.0,0.0,13.4,2751.0,02:07.8,17.4,2751.0,3.9 +718,3.91,0.0,0.0,13.4,2751.0,02:07.8,17.4,2751.0,3.9 +719,3.91,0.0,0.0,13.4,2751.0,02:07.8,17.4,2751.0,3.9 +720,3.8,0.0,0.0,13.8,2793.0,02:11.4,16.5,2793.0,3.8 +721,3.8,0.0,0.0,13.8,2793.0,02:11.4,16.5,2793.0,3.8 +722,3.8,0.0,0.0,13.8,2793.0,02:11.4,16.5,2793.0,3.8 +723,3.8,0.0,0.0,13.8,2793.0,02:11.4,16.5,2793.0,3.8 +724,3.8,0.0,0.0,13.8,2793.0,02:11.4,16.5,2793.0,3.8 +725,3.77,0.0,0.0,14.3,2809.0,02:12.5,15.8,2809.0,3.7 +726,3.77,0.0,0.0,14.3,2809.0,02:12.5,15.8,2809.0,3.7 +727,3.77,0.0,0.0,14.3,2809.0,02:12.5,15.8,2809.0,3.7 +728,3.77,0.0,0.0,14.3,2809.0,02:12.5,15.8,2809.0,3.7 +729,3.77,0.0,0.0,14.3,2809.0,02:12.5,15.8,2809.0,3.7 +730,3.77,0.0,0.0,14.3,2809.0,02:12.5,15.8,2809.0,3.7 +731,3.77,0.0,0.0,14.3,2809.0,02:12.5,15.8,2809.0,3.7 +732,3.76,0.0,0.0,14.0,2835.0,02:13.1,16.0,2835.0,3.7 +733,3.76,0.0,0.0,14.0,2835.0,02:13.1,16.0,2835.0,3.7 +734,3.76,0.0,0.0,14.0,2835.0,02:13.1,16.0,2835.0,3.7 +735,3.76,0.0,0.0,14.0,2835.0,02:13.1,16.0,2835.0,3.7 +736,3.76,0.0,0.0,14.0,2851.0,02:13.1,16.0,2851.0,3.7 +737,3.76,0.0,0.0,14.0,2851.0,02:13.1,16.0,2851.0,3.7 +738,3.76,0.0,0.0,14.0,2851.0,02:13.1,16.0,2851.0,3.7 +739,3.76,0.0,0.0,14.0,2851.0,02:13.1,16.0,2851.0,3.7 +740,3.76,0.0,0.0,14.0,2851.0,02:13.1,16.0,2851.0,3.7 +741,3.76,0.0,0.0,14.0,2851.0,02:13.1,16.0,2851.0,3.7 +742,3.76,0.0,0.0,14.0,2851.0,02:13.1,16.0,2851.0,3.7 +743,3.76,0.0,0.0,14.0,2851.0,02:13.1,16.0,2851.0,3.7 +744,3.74,0.0,0.0,14.0,2881.0,02:13.5,16.0,2881.0,3.7 +745,3.74,0.0,0.0,14.0,2881.0,02:13.5,16.0,2881.0,3.7 +746,3.74,0.0,0.0,14.0,2881.0,02:13.5,16.0,2881.0,3.7 +747,3.74,0.0,0.0,14.0,2892.0,02:13.5,16.0,2892.0,3.7 +748,3.74,0.0,0.0,14.0,2892.0,02:13.5,16.0,2892.0,3.7 +749,3.74,0.0,0.0,14.0,2892.0,02:13.5,16.0,2892.0,3.7 +750,3.74,0.0,0.0,14.0,2892.0,02:13.5,16.0,2892.0,3.7 +751,3.73,0.0,0.0,14.0,2907.0,02:13.9,16.0,2907.0,3.7 +752,3.73,0.0,0.0,14.0,2907.0,02:13.9,16.0,2907.0,3.7 +753,3.73,0.0,0.0,14.0,2907.0,02:13.9,16.0,2907.0,3.7 +754,3.73,0.0,0.0,14.0,2907.0,02:13.9,16.0,2907.0,3.7 +755,3.73,0.0,0.0,14.0,2907.0,02:13.9,16.0,2907.0,3.7 +756,3.73,0.0,0.0,14.0,2907.0,02:13.9,16.0,2907.0,3.7 +757,3.73,0.0,0.0,14.0,2907.0,02:13.9,16.0,2907.0,3.7 +758,3.73,0.0,0.0,14.0,2907.0,02:13.9,16.0,2907.0,3.7 +759,3.73,0.0,0.0,14.0,2907.0,02:13.9,16.0,2907.0,3.7 +760,3.73,0.0,0.0,14.0,2907.0,02:13.9,16.0,2907.0,3.7 +761,3.74,0.0,0.0,14.0,2947.0,02:13.8,16.0,2947.0,3.7 +762,3.74,0.0,0.0,14.0,2947.0,02:13.8,16.0,2947.0,3.7 +763,3.74,0.0,0.0,14.0,2947.0,02:13.8,16.0,2947.0,3.7 +764,3.74,0.0,0.0,14.0,2947.0,02:13.8,16.0,2947.0,3.7 +765,3.74,0.0,0.0,14.0,2947.0,02:13.8,16.0,2947.0,3.7 +766,3.72,0.0,0.0,13.9,2963.0,02:14.2,16.0,2963.0,3.7 +767,3.72,0.0,0.0,13.9,2963.0,02:14.2,16.0,2963.0,3.7 +768,3.72,0.0,0.0,13.9,2963.0,02:14.2,16.0,2963.0,3.7 +769,3.72,0.0,0.0,13.9,2963.0,02:14.2,16.0,2963.0,3.7 +770,3.72,0.0,0.0,13.9,2963.0,02:14.2,16.0,2963.0,3.7 +771,3.72,0.0,0.0,13.9,2963.0,02:14.2,16.0,2963.0,3.7 +772,3.72,0.0,0.0,13.9,2963.0,02:14.2,16.0,2963.0,3.7 +773,3.72,0.0,0.0,13.9,2963.0,02:14.2,16.0,2963.0,3.7 +774,3.72,0.0,0.0,13.9,2963.0,02:14.2,16.0,2963.0,3.7 +775,3.72,0.0,0.0,13.9,2963.0,02:14.2,16.0,2963.0,3.7 +776,3.74,0.0,0.0,14.0,3003.0,02:13.6,16.0,3003.0,3.7 +777,3.74,0.0,0.0,14.0,3003.0,02:13.6,16.0,3003.0,3.7 +778,3.74,0.0,0.0,14.0,3003.0,02:13.6,16.0,3003.0,3.7 +779,3.74,0.0,0.0,14.0,3003.0,02:13.6,16.0,3003.0,3.7 +780,3.74,0.0,0.0,14.0,3003.0,02:13.6,16.0,3003.0,3.7 +781,3.71,0.0,0.0,13.9,3019.0,02:14.7,16.0,3019.0,3.7 +782,3.71,0.0,0.0,13.9,3019.0,02:14.7,16.0,3019.0,3.7 +783,3.71,0.0,0.0,13.9,3019.0,02:14.7,16.0,3019.0,3.7 +784,3.71,0.0,0.0,13.9,3019.0,02:14.7,16.0,3019.0,3.7 +785,3.71,0.0,0.0,13.9,3019.0,02:14.7,16.0,3019.0,3.7 +786,3.71,0.0,0.0,13.9,3019.0,02:14.7,16.0,3019.0,3.7 +787,3.71,0.0,0.0,13.9,3019.0,02:14.7,16.0,3019.0,3.7 +788,3.71,0.0,0.0,13.9,3019.0,02:14.7,16.0,3019.0,3.7 +789,3.71,0.0,0.0,13.9,3019.0,02:14.7,16.0,3019.0,3.7 +790,3.71,0.0,0.0,13.9,3019.0,02:14.7,16.0,3019.0,3.7 +791,3.73,0.0,0.0,14.0,3059.0,02:13.9,16.0,3059.0,3.7 +792,3.73,0.0,0.0,14.0,3059.0,02:13.9,16.0,3059.0,3.7 +793,3.73,0.0,0.0,14.0,3059.0,02:13.9,16.0,3059.0,3.7 +794,3.73,0.0,0.0,14.0,3059.0,02:13.9,16.0,3059.0,3.7 +795,3.73,0.0,0.0,14.0,3059.0,02:13.9,16.0,3059.0,3.7 +796,3.73,0.0,0.0,13.9,3075.0,02:14.0,16.0,3075.0,3.7 +797,3.73,0.0,0.0,13.9,3075.0,02:14.0,16.0,3075.0,3.7 +798,3.73,0.0,0.0,13.9,3075.0,02:14.0,16.0,3075.0,3.7 +799,3.73,0.0,0.0,13.9,3075.0,02:14.0,16.0,3075.0,3.7 +800,3.69,0.0,0.0,13.7,3090.0,02:15.5,16.0,3090.0,3.6 +801,3.69,0.0,0.0,13.7,3090.0,02:15.5,16.0,3090.0,3.6 +802,3.69,0.0,0.0,13.7,3090.0,02:15.5,16.0,3090.0,3.6 +803,3.69,0.0,0.0,13.7,3090.0,02:15.5,16.0,3090.0,3.6 +804,3.71,0.0,0.0,14.2,3105.0,02:14.9,15.6,3105.0,3.7 +805,3.71,0.0,0.0,14.2,3105.0,02:14.9,15.6,3105.0,3.7 +806,3.71,0.0,0.0,14.2,3105.0,02:14.9,15.6,3105.0,3.7 +807,3.71,0.0,0.0,14.2,3105.0,02:14.9,15.6,3105.0,3.7 +808,3.69,0.0,0.0,14.2,3119.0,02:15.6,15.5,3119.0,3.6 +809,3.69,0.0,0.0,14.2,3119.0,02:15.6,15.5,3119.0,3.6 +810,3.69,0.0,0.0,14.2,3119.0,02:15.6,15.5,3119.0,3.6 +811,3.69,0.0,0.0,14.2,3119.0,02:15.6,15.5,3119.0,3.6 +812,3.69,0.0,0.0,14.2,3119.0,02:15.6,15.5,3119.0,3.6 +813,3.69,0.0,0.0,14.2,3119.0,02:15.6,15.5,3119.0,3.6 +814,3.69,0.0,0.0,14.2,3119.0,02:15.6,15.5,3119.0,3.6 +815,3.7,0.0,0.0,14.1,3145.0,02:15.2,15.6,3145.0,3.7 +816,3.7,0.0,0.0,14.1,3145.0,02:15.2,15.6,3145.0,3.7 +817,3.7,0.0,0.0,14.1,3145.0,02:15.2,15.6,3145.0,3.7 +818,3.7,0.0,0.0,14.1,3145.0,02:15.2,15.6,3145.0,3.7 +819,3.71,0.0,0.0,13.8,3160.0,02:14.6,16.0,3160.0,3.7 +820,3.71,0.0,0.0,13.8,3160.0,02:14.6,16.0,3160.0,3.7 +821,3.71,0.0,0.0,13.8,3160.0,02:14.6,16.0,3160.0,3.7 +822,3.71,0.0,0.0,13.8,3160.0,02:14.6,16.0,3160.0,3.7 +823,3.74,0.0,0.0,14.0,3176.0,02:13.6,16.0,3176.0,3.7 +824,3.74,0.0,0.0,14.0,3176.0,02:13.6,16.0,3176.0,3.7 +825,3.74,0.0,0.0,14.0,3176.0,02:13.6,16.0,3176.0,3.7 +826,3.74,0.0,0.0,14.0,3176.0,02:13.6,16.0,3176.0,3.7 +827,3.74,0.0,0.0,14.0,3176.0,02:13.6,16.0,3176.0,3.7 +828,3.74,0.0,0.0,14.0,3176.0,02:13.6,16.0,3176.0,3.7 +829,3.74,0.0,0.0,14.0,3176.0,02:13.6,16.0,3176.0,3.7 +830,3.71,0.0,0.0,14.1,3201.0,02:14.6,15.7,3201.0,3.7 +831,3.71,0.0,0.0,14.1,3201.0,02:14.6,15.7,3201.0,3.7 +832,3.71,0.0,0.0,14.1,3201.0,02:14.6,15.7,3201.0,3.7 +833,3.71,0.0,0.0,14.1,3201.0,02:14.6,15.7,3201.0,3.7 +834,3.71,0.0,0.0,14.1,3201.0,02:14.6,15.7,3201.0,3.7 +835,3.71,0.0,0.0,14.1,3201.0,02:14.6,15.7,3201.0,3.7 +836,3.76,0.0,0.0,13.3,3228.0,02:13.0,16.8,3228.0,3.7 +837,3.76,0.0,0.0,13.3,3228.0,02:13.0,16.8,3228.0,3.7 +838,3.76,0.0,0.0,13.3,3228.0,02:13.0,16.8,3228.0,3.7 +839,3.76,0.0,0.0,13.3,3228.0,02:13.0,16.8,3228.0,3.7 +840,3.76,0.0,0.0,13.3,3228.0,02:13.0,16.8,3228.0,3.7 +841,3.92,0.0,0.0,13.0,3244.0,02:07.5,17.9,3244.0,3.9 +842,3.92,0.0,0.0,13.0,3244.0,02:07.5,17.9,3244.0,3.9 +843,3.92,0.0,0.0,13.0,3244.0,02:07.5,17.9,3244.0,3.9 +844,3.92,0.0,0.0,12.6,3256.0,02:07.6,18.5,3256.0,3.9 +845,3.92,0.0,0.0,12.6,3256.0,02:07.6,18.5,3256.0,3.9 +846,3.92,0.0,0.0,12.6,3256.0,02:07.6,18.5,3256.0,3.9 +847,3.92,0.0,0.0,12.6,3256.0,02:07.6,18.5,3256.0,3.9 +848,3.92,0.0,0.0,12.6,3256.0,02:07.6,18.5,3256.0,3.9 +849,3.92,0.0,0.0,12.6,3256.0,02:07.6,18.5,3256.0,3.9 +850,3.92,0.0,0.0,12.6,3256.0,02:07.6,18.5,3256.0,3.9 +851,3.9,0.0,0.0,13.1,3284.0,02:08.3,17.8,3284.0,3.9 +852,3.9,0.0,0.0,13.1,3284.0,02:08.3,17.8,3284.0,3.9 +853,3.9,0.0,0.0,13.1,3284.0,02:08.3,17.8,3284.0,3.9 +854,3.9,0.0,0.0,12.7,3295.0,02:08.3,18.3,3295.0,3.9 +855,3.9,0.0,0.0,12.7,3295.0,02:08.3,18.3,3295.0,3.9 +856,3.9,0.0,0.0,12.7,3295.0,02:08.3,18.3,3295.0,3.9 +857,3.9,0.0,0.0,12.7,3295.0,02:08.3,18.3,3295.0,3.9 +858,3.9,0.0,0.0,12.7,3295.0,02:08.3,18.3,3295.0,3.9 +859,3.9,0.0,0.0,12.7,3295.0,02:08.3,18.3,3295.0,3.9 +860,3.9,0.0,0.0,12.6,3319.0,02:08.2,18.4,3319.0,3.9 +861,3.9,0.0,0.0,12.6,3319.0,02:08.2,18.4,3319.0,3.9 +862,3.9,0.0,0.0,12.6,3319.0,02:08.2,18.4,3319.0,3.9 +863,3.9,0.0,0.0,12.6,3319.0,02:08.2,18.4,3319.0,3.9 +864,3.92,0.0,0.0,12.8,3335.0,02:07.5,18.3,3335.0,3.9 +865,3.92,0.0,0.0,12.8,3335.0,02:07.5,18.3,3335.0,3.9 +866,3.92,0.0,0.0,12.8,3335.0,02:07.5,18.3,3335.0,3.9 +867,3.92,0.0,0.0,12.8,3335.0,02:07.5,18.3,3335.0,3.9 +868,3.92,0.0,0.0,12.8,3335.0,02:07.5,18.3,3335.0,3.9 +869,3.92,0.0,0.0,12.8,3335.0,02:07.5,18.3,3335.0,3.9 +870,3.92,0.0,0.0,12.8,3335.0,02:07.5,18.3,3335.0,3.9 +871,3.92,0.0,0.0,12.8,3335.0,02:07.5,18.3,3335.0,3.9 +872,3.92,0.0,0.0,12.8,3335.0,02:07.5,18.3,3335.0,3.9 +873,3.92,0.0,0.0,12.8,3335.0,02:07.5,18.3,3335.0,3.9 +874,3.89,0.0,0.0,13.1,3374.0,02:08.3,17.8,3374.0,3.8 +875,3.89,0.0,0.0,13.1,3374.0,02:08.3,17.8,3374.0,3.8 +876,3.89,0.0,0.0,13.1,3374.0,02:08.3,17.8,3374.0,3.8 +877,3.89,0.0,0.0,12.7,3386.0,02:08.3,18.3,3386.0,3.8 +878,3.89,0.0,0.0,12.7,3386.0,02:08.3,18.3,3386.0,3.8 +879,3.89,0.0,0.0,12.7,3386.0,02:08.3,18.3,3386.0,3.8 +880,3.89,0.0,0.0,12.7,3386.0,02:08.3,18.3,3386.0,3.8 +881,3.89,0.0,0.0,12.7,3386.0,02:08.3,18.3,3386.0,3.8 +882,3.89,0.0,0.0,12.7,3386.0,02:08.3,18.3,3386.0,3.8 +883,3.89,0.0,0.0,12.6,3409.0,02:08.6,18.4,3409.0,3.8 +884,3.89,0.0,0.0,12.6,3409.0,02:08.6,18.4,3409.0,3.8 +885,3.89,0.0,0.0,12.6,3409.0,02:08.6,18.4,3409.0,3.8 +886,3.89,0.0,0.0,12.6,3409.0,02:08.6,18.4,3409.0,3.8 +887,3.9,0.0,0.0,12.7,3425.0,02:08.3,18.3,3425.0,3.9 +888,3.9,0.0,0.0,12.7,3425.0,02:08.3,18.3,3425.0,3.9 +889,3.9,0.0,0.0,12.7,3425.0,02:08.3,18.3,3425.0,3.9 +890,3.92,0.0,0.0,13.1,3437.0,02:07.6,17.9,3437.0,3.9 +891,3.92,0.0,0.0,13.1,3437.0,02:07.6,17.9,3437.0,3.9 +892,3.92,0.0,0.0,13.1,3437.0,02:07.6,17.9,3437.0,3.9 +893,3.92,0.0,0.0,13.1,3437.0,02:07.6,17.9,3437.0,3.9 +894,3.92,0.0,0.0,13.1,3437.0,02:07.6,17.9,3437.0,3.9 +895,3.92,0.0,0.0,13.1,3437.0,02:07.6,17.9,3437.0,3.9 +896,3.92,0.0,0.0,13.1,3437.0,02:07.6,17.9,3437.0,3.9 +897,3.92,0.0,0.0,13.1,3464.0,02:07.7,17.9,3464.0,3.9 +898,3.92,0.0,0.0,13.1,3464.0,02:07.7,17.9,3464.0,3.9 +899,3.92,0.0,0.0,13.1,3464.0,02:07.7,17.9,3464.0,3.9 +900,3.92,0.0,0.0,12.8,3476.0,02:07.7,18.2,3476.0,3.9 +901,3.92,0.0,0.0,12.8,3476.0,02:07.7,18.2,3476.0,3.9 +902,3.92,0.0,0.0,12.8,3476.0,02:07.7,18.2,3476.0,3.9 +903,3.92,0.0,0.0,12.8,3476.0,02:07.7,18.2,3476.0,3.9 +904,3.92,0.0,0.0,12.8,3476.0,02:07.7,18.2,3476.0,3.9 +905,3.92,0.0,0.0,12.8,3476.0,02:07.7,18.2,3476.0,3.9 +906,3.92,0.0,0.0,12.8,3476.0,02:07.7,18.2,3476.0,3.9 +907,3.92,0.0,0.0,12.8,3476.0,02:07.7,18.2,3476.0,3.9 +908,3.92,0.0,0.0,12.8,3476.0,02:07.7,18.2,3476.0,3.9 +909,3.92,0.0,0.0,12.8,3476.0,02:07.7,18.2,3476.0,3.9 +910,3.9,0.0,0.0,12.4,3515.0,02:08.1,18.8,3515.0,3.9 +911,3.9,0.0,0.0,12.4,3515.0,02:08.1,18.8,3515.0,3.9 +912,3.9,0.0,0.0,12.4,3515.0,02:08.1,18.8,3515.0,3.9 +913,3.9,0.0,0.0,12.4,3527.0,02:08.1,18.8,3527.0,3.9 +914,3.9,0.0,0.0,12.4,3527.0,02:08.1,18.8,3527.0,3.9 +915,3.9,0.0,0.0,12.4,3527.0,02:08.1,18.8,3527.0,3.9 +916,3.9,0.0,0.0,12.4,3527.0,02:08.1,18.8,3527.0,3.9 +917,3.9,0.0,0.0,12.4,3527.0,02:08.1,18.8,3527.0,3.9 +918,3.9,0.0,0.0,12.4,3527.0,02:08.1,18.8,3527.0,3.9 +919,3.9,0.0,0.0,12.4,3527.0,02:08.1,18.8,3527.0,3.9 +920,3.87,0.0,0.0,12.7,3554.0,02:09.1,18.2,3554.0,3.8 +921,3.87,0.0,0.0,12.7,3554.0,02:09.1,18.2,3554.0,3.8 +922,3.87,0.0,0.0,12.7,3554.0,02:09.1,18.2,3554.0,3.8 +923,3.87,0.0,0.0,12.9,3566.0,02:09.1,17.9,3566.0,3.8 +924,3.87,0.0,0.0,12.9,3566.0,02:09.1,17.9,3566.0,3.8 +925,3.87,0.0,0.0,12.9,3566.0,02:09.1,17.9,3566.0,3.8 +926,3.87,0.0,0.0,12.9,3566.0,02:09.1,17.9,3566.0,3.8 +927,3.87,0.0,0.0,12.9,3566.0,02:09.1,17.9,3566.0,3.8 +928,3.87,0.0,0.0,12.9,3566.0,02:09.1,17.9,3566.0,3.8 +929,3.87,0.0,0.0,12.9,3566.0,02:09.1,17.9,3566.0,3.8 +930,3.86,0.0,0.0,12.9,3593.0,02:09.6,17.9,3593.0,3.8 +931,3.86,0.0,0.0,12.9,3593.0,02:09.6,17.9,3593.0,3.8 +932,3.86,0.0,0.0,12.9,3593.0,02:09.6,17.9,3593.0,3.8 +933,3.86,0.0,0.0,12.6,3605.0,02:09.6,18.3,3605.0,3.8 +934,3.86,0.0,0.0,12.6,3605.0,02:09.6,18.3,3605.0,3.8 +935,3.86,0.0,0.0,12.6,3605.0,02:09.6,18.3,3605.0,3.8 +936,3.86,0.0,0.0,12.6,3605.0,02:09.6,18.3,3605.0,3.8 +937,3.86,0.0,0.0,12.6,3605.0,02:09.6,18.3,3605.0,3.8 +938,3.86,0.0,0.0,12.6,3605.0,02:09.6,18.3,3605.0,3.8 +939,3.88,0.0,0.0,12.6,3628.0,02:08.7,18.4,3628.0,3.8 +940,3.88,0.0,0.0,12.6,3628.0,02:08.7,18.4,3628.0,3.8 +941,3.88,0.0,0.0,12.6,3628.0,02:08.7,18.4,3628.0,3.8 +942,3.88,0.0,0.0,12.6,3628.0,02:08.7,18.4,3628.0,3.8 +943,3.88,0.0,0.0,12.6,3644.0,02:08.9,18.3,3644.0,3.8 +944,3.88,0.0,0.0,12.6,3644.0,02:08.9,18.3,3644.0,3.8 +945,3.88,0.0,0.0,12.6,3644.0,02:08.9,18.3,3644.0,3.8 +946,3.88,0.0,0.0,12.6,3644.0,02:08.9,18.3,3644.0,3.8 +947,3.88,0.0,0.0,12.6,3644.0,02:08.9,18.3,3644.0,3.8 +948,3.88,0.0,0.0,12.6,3644.0,02:08.9,18.3,3644.0,3.8 +949,3.88,0.0,0.0,12.6,3644.0,02:08.9,18.3,3644.0,3.8 +950,3.88,0.0,0.0,12.6,3644.0,02:08.9,18.3,3644.0,3.8 +951,3.88,0.0,0.0,12.6,3644.0,02:08.9,18.3,3644.0,3.8 +952,3.89,0.0,0.0,12.9,3680.0,02:08.4,18.0,3680.0,3.8 +953,3.89,0.0,0.0,12.9,3680.0,02:08.4,18.0,3680.0,3.8 +954,3.89,0.0,0.0,12.9,3680.0,02:08.4,18.0,3680.0,3.8 +955,3.89,0.0,0.0,12.9,3680.0,02:08.4,18.0,3680.0,3.8 +956,3.89,0.0,0.0,13.3,3694.0,02:08.4,17.4,3694.0,3.8 +957,3.89,0.0,0.0,13.3,3694.0,02:08.4,17.4,3694.0,3.8 +958,3.89,0.0,0.0,13.3,3694.0,02:08.4,17.4,3694.0,3.8 +959,3.89,0.0,0.0,13.3,3694.0,02:08.4,17.4,3694.0,3.8 +960,3.82,0.0,0.0,13.8,3709.0,02:10.9,16.5,3709.0,3.8 +961,3.82,0.0,0.0,13.8,3709.0,02:10.9,16.5,3709.0,3.8 +962,3.82,0.0,0.0,13.8,3709.0,02:10.9,16.5,3709.0,3.8 +963,3.82,0.0,0.0,13.8,3709.0,02:10.9,16.5,3709.0,3.8 +964,3.82,0.0,0.0,13.8,3709.0,02:10.9,16.5,3709.0,3.8 +965,3.82,0.0,0.0,13.8,3709.0,02:10.9,16.5,3709.0,3.8 +966,3.82,0.0,0.0,13.8,3709.0,02:10.9,16.5,3709.0,3.8 +967,3.82,0.0,0.0,13.8,3709.0,02:10.9,16.5,3709.0,3.8 +968,3.73,0.0,0.0,14.1,3740.0,02:14.1,15.8,3740.0,3.7 +969,3.73,0.0,0.0,14.1,3740.0,02:14.1,15.8,3740.0,3.7 +970,3.73,0.0,0.0,14.1,3740.0,02:14.1,15.8,3740.0,3.7 +971,3.73,0.0,0.0,13.9,3751.0,02:14.1,16.0,3751.0,3.7 +972,3.73,0.0,0.0,13.9,3751.0,02:14.1,16.0,3751.0,3.7 +973,3.73,0.0,0.0,13.9,3751.0,02:14.1,16.0,3751.0,3.7 +974,3.73,0.0,0.0,13.9,3751.0,02:14.1,16.0,3751.0,3.7 +975,3.73,0.0,0.0,13.9,3751.0,02:14.1,16.0,3751.0,3.7 +976,3.73,0.0,0.0,13.9,3751.0,02:14.1,16.0,3751.0,3.7 +977,3.73,0.0,0.0,13.9,3751.0,02:14.1,16.0,3751.0,3.7 +978,3.73,0.0,0.0,13.9,3751.0,02:14.1,16.0,3751.0,3.7 +979,3.73,0.0,0.0,13.9,3751.0,02:14.1,16.0,3751.0,3.7 +980,3.73,0.0,0.0,13.9,3751.0,02:14.1,16.0,3751.0,3.7 +981,3.73,0.0,0.0,13.9,3751.0,02:14.1,16.0,3751.0,3.7 +982,3.71,0.0,0.0,13.9,3791.0,02:14.6,16.0,3791.0,3.7 +983,3.71,0.0,0.0,13.9,3791.0,02:14.6,16.0,3791.0,3.7 +984,3.71,0.0,0.0,13.9,3791.0,02:14.6,16.0,3791.0,3.7 +985,3.71,0.0,0.0,13.9,3791.0,02:14.6,16.0,3791.0,3.7 +986,3.69,0.0,0.0,13.8,3807.0,02:15.4,16.0,3807.0,3.6 +987,3.69,0.0,0.0,13.8,3807.0,02:15.4,16.0,3807.0,3.6 +988,3.69,0.0,0.0,13.8,3807.0,02:15.4,16.0,3807.0,3.6 +989,3.69,0.0,0.0,13.8,3807.0,02:15.4,16.0,3807.0,3.6 +990,3.69,0.0,0.0,13.8,3807.0,02:15.4,16.0,3807.0,3.6 +991,3.69,0.0,0.0,13.8,3807.0,02:15.4,16.0,3807.0,3.6 +992,3.69,0.0,0.0,13.8,3807.0,02:15.4,16.0,3807.0,3.6 +993,3.69,0.0,0.0,13.8,3807.0,02:15.4,16.0,3807.0,3.6 +994,3.69,0.0,0.0,13.8,3807.0,02:15.4,16.0,3807.0,3.6 +995,3.69,0.0,0.0,13.8,3807.0,02:15.4,16.0,3807.0,3.6 +996,3.69,0.0,0.0,13.8,3807.0,02:15.4,16.0,3807.0,3.6 +997,3.7,0.0,0.0,13.8,3847.0,02:15.0,16.0,3847.0,3.7 +998,3.7,0.0,0.0,13.8,3847.0,02:15.0,16.0,3847.0,3.7 +999,3.7,0.0,0.0,13.8,3847.0,02:15.0,16.0,3847.0,3.7 +1000,3.7,0.0,0.0,13.8,3847.0,02:15.0,16.0,3847.0,3.7 +1001,3.71,0.0,0.0,13.9,3863.0,02:14.8,16.0,3863.0,3.7 +1002,3.71,0.0,0.0,13.9,3863.0,02:14.8,16.0,3863.0,3.7 +1003,3.71,0.0,0.0,13.9,3863.0,02:14.8,16.0,3863.0,3.7 +1004,3.71,0.0,0.0,13.9,3863.0,02:14.8,16.0,3863.0,3.7 +1005,3.71,0.0,0.0,13.9,3863.0,02:14.8,16.0,3863.0,3.7 +1006,3.71,0.0,0.0,13.9,3863.0,02:14.8,16.0,3863.0,3.7 +1007,3.71,0.0,0.0,13.9,3863.0,02:14.8,16.0,3863.0,3.7 +1008,3.71,0.0,0.0,13.9,3863.0,02:14.8,16.0,3863.0,3.7 +1009,3.71,0.0,0.0,13.9,3863.0,02:14.8,16.0,3863.0,3.7 +1010,3.71,0.0,0.0,13.9,3863.0,02:14.8,16.0,3863.0,3.7 +1011,3.71,0.0,0.0,13.9,3863.0,02:14.8,16.0,3863.0,3.7 +1012,3.71,0.0,0.0,13.9,3903.0,02:14.6,16.0,3903.0,3.7 +1013,3.71,0.0,0.0,13.9,3903.0,02:14.6,16.0,3903.0,3.7 +1014,3.71,0.0,0.0,13.9,3903.0,02:14.6,16.0,3903.0,3.7 +1015,3.71,0.0,0.0,13.9,3903.0,02:14.6,16.0,3903.0,3.7 +1016,3.69,0.0,0.0,13.8,3918.0,02:15.6,16.0,3918.0,3.6 +1017,3.69,0.0,0.0,13.8,3918.0,02:15.6,16.0,3918.0,3.6 +1018,3.69,0.0,0.0,13.8,3918.0,02:15.6,16.0,3918.0,3.6 +1019,3.69,0.0,0.0,13.8,3918.0,02:15.6,16.0,3918.0,3.6 +1020,3.7,0.0,0.0,13.8,3933.0,02:15.2,16.0,3933.0,3.7 +1021,3.7,0.0,0.0,13.8,3933.0,02:15.2,16.0,3933.0,3.7 +1022,3.7,0.0,0.0,13.8,3933.0,02:15.2,16.0,3933.0,3.7 +1023,3.7,0.0,0.0,13.8,3933.0,02:15.2,16.0,3933.0,3.7 +1024,3.7,0.0,0.0,13.8,3933.0,02:15.2,16.0,3933.0,3.7 +1025,3.7,0.0,0.0,13.8,3933.0,02:15.2,16.0,3933.0,3.7 +1026,3.7,0.0,0.0,13.8,3933.0,02:15.2,16.0,3933.0,3.7 +1027,3.71,0.0,0.0,13.9,3959.0,02:14.8,16.0,3959.0,3.7 +1028,3.71,0.0,0.0,13.9,3959.0,02:14.8,16.0,3959.0,3.7 +1029,3.71,0.0,0.0,13.9,3959.0,02:14.8,16.0,3959.0,3.7 +1030,3.71,0.0,0.0,13.9,3959.0,02:14.8,16.0,3959.0,3.7 +1031,3.72,0.0,0.0,13.9,3974.0,02:14.3,16.0,3974.0,3.7 +1032,3.72,0.0,0.0,13.9,3974.0,02:14.3,16.0,3974.0,3.7 +1033,3.72,0.0,0.0,13.9,3974.0,02:14.3,16.0,3974.0,3.7 +1034,3.72,0.0,0.0,13.9,3974.0,02:14.3,16.0,3974.0,3.7 +1035,3.72,0.0,0.0,13.9,3989.0,02:14.4,16.0,3989.0,3.7 +1036,3.72,0.0,0.0,13.9,3989.0,02:14.4,16.0,3989.0,3.7 +1037,3.72,0.0,0.0,13.9,3989.0,02:14.4,16.0,3989.0,3.7 +1038,3.72,0.0,0.0,13.9,3989.0,02:14.4,16.0,3989.0,3.7 +1039,3.73,0.0,0.0,13.9,4005.0,02:14.0,16.0,4005.0,3.7 +1040,3.73,0.0,0.0,13.9,4005.0,02:14.0,16.0,4005.0,3.7 +1041,3.73,0.0,0.0,13.9,4005.0,02:14.0,16.0,4005.0,3.7 +1042,3.73,0.0,0.0,13.9,4005.0,02:14.0,16.0,4005.0,3.7 +1043,3.73,0.0,0.0,13.9,4005.0,02:14.0,16.0,4005.0,3.7 +1044,3.73,0.0,0.0,13.9,4005.0,02:14.0,16.0,4005.0,3.7 +1045,3.73,0.0,0.0,13.9,4005.0,02:14.0,16.0,4005.0,3.7 +1046,3.73,0.0,0.0,13.9,4005.0,02:14.0,16.0,4005.0,3.7 +1047,3.73,0.0,0.0,13.9,4005.0,02:14.0,16.0,4005.0,3.7 +1048,3.73,0.0,0.0,13.9,4005.0,02:14.0,16.0,4005.0,3.7 +1049,3.73,0.0,0.0,13.9,4005.0,02:14.0,16.0,4005.0,3.7 +1050,3.73,0.0,0.0,13.9,4045.0,02:14.2,16.0,4045.0,3.7 +1051,3.73,0.0,0.0,13.9,4045.0,02:14.2,16.0,4045.0,3.7 +1052,3.73,0.0,0.0,13.9,4045.0,02:14.2,16.0,4045.0,3.7 +1053,3.73,0.0,0.0,13.9,4045.0,02:14.2,16.0,4045.0,3.7 +1054,3.73,0.0,0.0,13.9,4045.0,02:14.2,16.0,4045.0,3.7 +1055,3.73,0.0,0.0,13.9,4045.0,02:14.2,16.0,4045.0,3.7 +1056,3.73,0.0,0.0,13.9,4045.0,02:14.2,16.0,4045.0,3.7 +1057,3.73,0.0,0.0,13.9,4045.0,02:14.2,16.0,4045.0,3.7 +1058,3.78,0.0,0.0,14.2,4076.0,02:12.3,15.9,4076.0,3.7 +1059,3.78,0.0,0.0,14.2,4076.0,02:12.3,15.9,4076.0,3.7 +1060,3.78,0.0,0.0,14.2,4076.0,02:12.3,15.9,4076.0,3.7 +1061,3.78,0.0,0.0,13.9,4087.0,02:12.3,16.2,4087.0,3.7 +1062,3.78,0.0,0.0,13.9,4087.0,02:12.3,16.2,4087.0,3.7 +1063,3.78,0.0,0.0,13.9,4087.0,02:12.3,16.2,4087.0,3.7 +1064,3.78,0.0,0.0,13.9,4087.0,02:12.3,16.2,4087.0,3.7 +1065,3.78,0.0,0.0,13.9,4087.0,02:12.3,16.2,4087.0,3.7 +1066,3.78,0.0,0.0,13.9,4087.0,02:12.3,16.2,4087.0,3.7 +1067,3.78,0.0,0.0,13.9,4087.0,02:12.3,16.2,4087.0,3.7 +1068,3.77,0.0,0.0,13.3,4113.0,02:12.6,16.9,4113.0,3.7 +1069,3.77,0.0,0.0,13.3,4113.0,02:12.6,16.9,4113.0,3.7 +1070,3.77,0.0,0.0,13.3,4113.0,02:12.6,16.9,4113.0,3.7 +1071,3.77,0.0,0.0,13.3,4113.0,02:12.6,16.9,4113.0,3.7 +1072,3.79,0.0,0.0,13.8,4129.0,02:12.0,16.4,4129.0,3.7 +1073,3.79,0.0,0.0,13.8,4129.0,02:12.0,16.4,4129.0,3.7 +1074,3.79,0.0,0.0,13.8,4129.0,02:12.0,16.4,4129.0,3.7 +1075,3.79,0.0,0.0,13.8,4129.0,02:12.0,16.4,4129.0,3.7 +1076,3.7,0.0,0.0,13.9,4144.0,02:15.0,15.9,4144.0,3.7 +1077,3.7,0.0,0.0,13.9,4144.0,02:15.0,15.9,4144.0,3.7 +1078,3.7,0.0,0.0,13.9,4144.0,02:15.0,15.9,4144.0,3.7 +1079,3.84,0.0,0.0,13.9,4156.0,02:10.2,16.5,4156.0,3.8 +1080,3.84,0.0,0.0,13.9,4156.0,02:10.2,16.5,4156.0,3.8 +1081,3.84,0.0,0.0,13.9,4156.0,02:10.2,16.5,4156.0,3.8 +1082,3.84,0.0,0.0,13.9,4156.0,02:10.2,16.5,4156.0,3.8 +1083,3.84,0.0,0.0,13.9,4156.0,02:10.2,16.5,4156.0,3.8 +1084,3.84,0.0,0.0,13.9,4156.0,02:10.2,16.5,4156.0,3.8 +1085,3.93,0.0,0.0,13.1,4180.0,02:07.0,17.9,4180.0,3.9 +1086,3.93,0.0,0.0,13.1,4180.0,02:07.0,17.9,4180.0,3.9 +1087,3.93,0.0,0.0,13.1,4180.0,02:07.0,17.9,4180.0,3.9 +1088,3.93,0.0,0.0,13.1,4180.0,02:07.0,17.9,4180.0,3.9 +1089,3.93,0.0,0.0,13.0,4196.0,02:07.0,18.0,4196.0,3.9 +1090,3.93,0.0,0.0,13.0,4196.0,02:07.0,18.0,4196.0,3.9 +1091,3.93,0.0,0.0,13.0,4196.0,02:07.0,18.0,4196.0,3.9 +1092,3.93,0.0,0.0,13.0,4196.0,02:07.0,18.0,4196.0,3.9 +1093,3.93,0.0,0.0,13.0,4196.0,02:07.0,18.0,4196.0,3.9 +1094,3.93,0.0,0.0,13.0,4196.0,02:07.0,18.0,4196.0,3.9 +1095,3.93,0.0,0.0,13.0,4196.0,02:07.0,18.0,4196.0,3.9 +1096,3.93,0.0,0.0,13.0,4196.0,02:07.0,18.0,4196.0,3.9 +1097,3.93,0.0,0.0,13.0,4196.0,02:07.0,18.0,4196.0,3.9 +1098,3.93,0.0,0.0,13.0,4196.0,02:07.0,18.0,4196.0,3.9 +1099,3.92,0.0,0.0,13.0,4235.0,02:07.4,18.0,4235.0,3.9 +1100,3.92,0.0,0.0,13.0,4235.0,02:07.4,18.0,4235.0,3.9 +1101,3.92,0.0,0.0,13.0,4235.0,02:07.4,18.0,4235.0,3.9 +1102,3.92,0.0,0.0,13.0,4247.0,02:07.4,18.0,4247.0,3.9 +1103,3.92,0.0,0.0,13.0,4247.0,02:07.4,18.0,4247.0,3.9 +1104,3.92,0.0,0.0,13.0,4247.0,02:07.4,18.0,4247.0,3.9 +1105,3.92,0.0,0.0,13.0,4247.0,02:07.4,18.0,4247.0,3.9 +1106,3.92,0.0,0.0,13.0,4247.0,02:07.4,18.0,4247.0,3.9 +1107,3.92,0.0,0.0,13.0,4247.0,02:07.4,18.0,4247.0,3.9 +1108,3.92,0.0,0.0,13.0,4270.0,02:07.5,18.0,4270.0,3.9 +1109,3.92,0.0,0.0,13.0,4270.0,02:07.5,18.0,4270.0,3.9 +1110,3.92,0.0,0.0,13.0,4270.0,02:07.5,18.0,4270.0,3.9 +1111,3.92,0.0,0.0,13.0,4270.0,02:07.5,18.0,4270.0,3.9 +1112,3.91,0.0,0.0,13.0,4286.0,02:07.7,18.0,4286.0,3.9 +1113,3.91,0.0,0.0,13.0,4286.0,02:07.7,18.0,4286.0,3.9 +1114,3.91,0.0,0.0,13.0,4286.0,02:07.7,18.0,4286.0,3.9 +1115,3.91,0.0,0.0,13.0,4286.0,02:07.7,18.0,4286.0,3.9 +1116,3.91,0.0,0.0,13.0,4286.0,02:07.7,18.0,4286.0,3.9 +1117,3.91,0.0,0.0,13.0,4286.0,02:07.7,18.0,4286.0,3.9 +1118,3.92,0.0,0.0,13.0,4309.0,02:07.4,18.0,4309.0,3.9 +1119,3.92,0.0,0.0,13.0,4309.0,02:07.4,18.0,4309.0,3.9 +1120,3.92,0.0,0.0,13.0,4309.0,02:07.4,18.0,4309.0,3.9 +1121,3.92,0.0,0.0,13.0,4309.0,02:07.4,18.0,4309.0,3.9 +1122,3.91,0.0,0.0,13.0,4325.0,02:07.8,18.0,4325.0,3.9 +1123,3.91,0.0,0.0,13.0,4325.0,02:07.8,18.0,4325.0,3.9 +1124,3.91,0.0,0.0,13.0,4325.0,02:07.8,18.0,4325.0,3.9 +1125,3.91,0.0,0.0,13.0,4325.0,02:07.8,18.0,4325.0,3.9 +1126,3.91,0.0,0.0,13.0,4325.0,02:07.8,18.0,4325.0,3.9 +1127,3.91,0.0,0.0,13.0,4325.0,02:07.8,18.0,4325.0,3.9 +1128,3.91,0.0,0.0,13.0,4348.0,02:07.8,18.0,4348.0,3.9 +1129,3.91,0.0,0.0,13.0,4348.0,02:07.8,18.0,4348.0,3.9 +1130,3.91,0.0,0.0,13.0,4348.0,02:07.8,18.0,4348.0,3.9 +1131,3.91,0.0,0.0,13.0,4348.0,02:07.8,18.0,4348.0,3.9 +1132,3.9,0.0,0.0,13.0,4365.0,02:08.2,18.0,4365.0,3.9 +1133,3.9,0.0,0.0,13.0,4365.0,02:08.2,18.0,4365.0,3.9 +1134,3.9,0.0,0.0,13.0,4365.0,02:08.2,18.0,4365.0,3.9 +1135,3.9,0.0,0.0,13.0,4365.0,02:08.2,18.0,4365.0,3.9 +1136,3.9,0.0,0.0,13.0,4365.0,02:08.2,18.0,4365.0,3.9 +1137,3.9,0.0,0.0,13.0,4365.0,02:08.2,18.0,4365.0,3.9 +1138,3.88,0.0,0.0,12.9,4387.0,02:08.7,18.0,4387.0,3.8 +1139,3.88,0.0,0.0,12.9,4387.0,02:08.7,18.0,4387.0,3.8 +1140,3.88,0.0,0.0,12.9,4387.0,02:08.7,18.0,4387.0,3.8 +1141,3.88,0.0,0.0,12.9,4387.0,02:08.7,18.0,4387.0,3.8 +1142,3.9,0.0,0.0,12.9,4404.0,02:08.1,18.0,4404.0,3.9 +1143,3.9,0.0,0.0,12.9,4404.0,02:08.1,18.0,4404.0,3.9 +1144,3.9,0.0,0.0,12.9,4404.0,02:08.1,18.0,4404.0,3.9 +1145,3.9,0.0,0.0,12.9,4404.0,02:08.1,18.0,4404.0,3.9 +1146,3.9,0.0,0.0,12.9,4404.0,02:08.1,18.0,4404.0,3.9 +1147,3.9,0.0,0.0,12.9,4404.0,02:08.1,18.0,4404.0,3.9 +1148,3.9,0.0,0.0,12.9,4404.0,02:08.1,18.0,4404.0,3.9 +1149,3.87,0.0,0.0,13.1,4431.0,02:09.1,17.6,4431.0,3.8 +1150,3.87,0.0,0.0,13.1,4431.0,02:09.1,17.6,4431.0,3.8 +1151,3.87,0.0,0.0,13.1,4431.0,02:09.1,17.6,4431.0,3.8 +1152,3.87,0.0,0.0,13.1,4431.0,02:09.1,17.6,4431.0,3.8 +1153,3.87,0.0,0.0,13.1,4431.0,02:09.1,17.6,4431.0,3.8 +1154,3.87,0.0,0.0,13.1,4431.0,02:09.1,17.6,4431.0,3.8 +1155,3.85,0.0,0.0,13.1,4454.0,02:09.8,17.6,4454.0,3.8 +1156,3.85,0.0,0.0,13.1,4454.0,02:09.8,17.6,4454.0,3.8 +1157,3.85,0.0,0.0,13.1,4454.0,02:09.8,17.6,4454.0,3.8 +1158,3.85,0.0,0.0,13.1,4454.0,02:09.8,17.6,4454.0,3.8 +1159,3.85,0.0,0.0,13.1,4454.0,02:09.8,17.6,4454.0,3.8 +1160,3.85,0.0,0.0,13.1,4454.0,02:09.8,17.6,4454.0,3.8 +1161,3.85,0.0,0.0,13.1,4454.0,02:09.8,17.6,4454.0,3.8 +1162,3.89,0.0,0.0,13.4,4480.0,02:08.6,17.4,4480.0,3.8 +1163,3.89,0.0,0.0,13.4,4480.0,02:08.6,17.4,4480.0,3.8 +1164,3.89,0.0,0.0,13.4,4480.0,02:08.6,17.4,4480.0,3.8 +1165,3.89,0.0,0.0,13.4,4480.0,02:08.6,17.4,4480.0,3.8 +1166,3.89,0.0,0.0,13.4,4480.0,02:08.6,17.4,4480.0,3.8 +1167,3.89,0.0,0.0,13.4,4480.0,02:08.6,17.4,4480.0,3.8 +1168,3.89,0.0,0.0,13.4,4480.0,02:08.6,17.4,4480.0,3.8 +1169,3.86,0.0,0.0,13.4,4507.0,02:09.4,17.2,4507.0,3.8 +1170,3.86,0.0,0.0,13.4,4507.0,02:09.4,17.2,4507.0,3.8 +1171,3.86,0.0,0.0,13.4,4507.0,02:09.4,17.2,4507.0,3.8 +1172,3.86,0.0,0.0,13.4,4507.0,02:09.4,17.2,4507.0,3.8 +1173,3.86,0.0,0.0,13.4,4524.0,02:09.6,17.1,4524.0,3.8 +1174,3.86,0.0,0.0,13.4,4524.0,02:09.6,17.1,4524.0,3.8 +1175,3.86,0.0,0.0,13.4,4524.0,02:09.6,17.1,4524.0,3.8 +1176,3.86,0.0,0.0,13.4,4524.0,02:09.6,17.1,4524.0,3.8 +1177,3.86,0.0,0.0,13.4,4524.0,02:09.6,17.1,4524.0,3.8 +1178,3.86,0.0,0.0,13.4,4524.0,02:09.6,17.1,4524.0,3.8 +1179,3.9,0.0,0.0,13.1,4547.0,02:08.3,17.7,4547.0,3.9 +1180,3.9,0.0,0.0,13.1,4547.0,02:08.3,17.7,4547.0,3.9 +1181,3.9,0.0,0.0,13.1,4547.0,02:08.3,17.7,4547.0,3.9 +1182,3.9,0.0,0.0,13.1,4547.0,02:08.3,17.7,4547.0,3.9 +1183,3.92,0.0,0.0,12.9,4564.0,02:07.6,18.1,4564.0,3.9 +1184,3.92,0.0,0.0,12.9,4564.0,02:07.6,18.1,4564.0,3.9 +1185,3.92,0.0,0.0,12.9,4564.0,02:07.6,18.1,4564.0,3.9 +1186,3.92,0.0,0.0,12.9,4564.0,02:07.6,18.1,4564.0,3.9 +1187,3.92,0.0,0.0,12.9,4564.0,02:07.6,18.1,4564.0,3.9 +1188,3.92,0.0,0.0,12.9,4564.0,02:07.6,18.1,4564.0,3.9 +1189,3.92,0.0,0.0,12.9,4564.0,02:07.6,18.1,4564.0,3.9 +1190,3.92,0.0,0.0,12.9,4564.0,02:07.6,18.1,4564.0,3.9 +1191,3.92,0.0,0.0,12.9,4564.0,02:07.6,18.1,4564.0,3.9 +1192,3.88,0.0,0.0,12.9,4598.0,02:08.8,17.9,4598.0,3.8 diff --git a/rowers/tests/viewnames.csv b/rowers/tests/viewnames.csv index 51d4ab66..b7fbf9d7 100644 --- a/rowers/tests/viewnames.csv +++ b/rowers/tests/viewnames.csv @@ -309,3 +309,4 @@ 309,604,failed_queue_empty,Other Apps views,TRUE,200,basic,200,302,basic,200,302,coach,200,302,FALSE,FALSE,FALSE,FALSE,FALSE, 310,605,failed_job_view,Other Apps views,TRUE,200,basic,200,302,basic,200,302,coach,200,302,FALSE,FALSE,TRUE,FALSE,FALSE, 311,49,performancemanager_view,Performance Manager,TRUE,302,pro,200,302,pro,200,302,coach,200,302,FALSE,FALSE,FALSE,TRUE,TRUE, +312,606,workout_flexchart_stacked_view,flex chart,TRUE,302,basic,200,403,basic,200,200,coach,200,200,FALSE,FALSE,TRUE,TRUE,TRUE, From 394d80d040ceda53212c3b0f4c19ded97dd9b0b2 Mon Sep 17 00:00:00 2001 From: Sander Roosendaal Date: Mon, 11 Jan 2021 20:43:37 +0100 Subject: [PATCH 05/30] a few more tests and removing old code --- rowers/interactiveplots.py | 420 -------------------------------- rowers/tests/test_analysis.py | 28 ++- rowers/tests/test_unit_tests.py | 16 +- rowers/tests/test_units.py | 7 +- rowers/urls.py | 6 +- rowers/views/analysisviews.py | 57 ----- 6 files changed, 47 insertions(+), 487 deletions(-) diff --git a/rowers/interactiveplots.py b/rowers/interactiveplots.py index 51fbd38c..8e5287cf 100644 --- a/rowers/interactiveplots.py +++ b/rowers/interactiveplots.py @@ -312,12 +312,6 @@ def mapcolors(x): except KeyError: return mytypes.colors[-1] -def maptypes(x): - try: - return mytypes.workouttypes_ordered[x] - except KeyError: - return 'Other' - def interactive_workouttype_piechart(workouts): if len(workouts) == 0: return "","Not enough workouts to make a chart" @@ -2092,171 +2086,6 @@ def performance_chart(user,startdate=None,enddate=None,kfitness=42,kfatigue=7, -def fitnessmetric_chart(fitnessmetrics,user,workoutmode='rower',startdate=None, - enddate=None): - - power4min = [int(m.PowerFourMin) for m in fitnessmetrics] - power2k = [int(m.PowerTwoK) for m in fitnessmetrics] - power1hr = [int(m.PowerOneHour) for m in fitnessmetrics] - dates = [m.date for m in fitnessmetrics] - - - mode = [m.workoutmode for m in fitnessmetrics] - - if len(power4min) == 0: - return ['',''] - - df = pd.DataFrame( - {'power4min':power4min, - 'power2k':power2k, - 'power1hr':power1hr, - 'date':dates, - 'dates':dates, - 'mode':mode - }) - - - delta = df['power4min'].astype('int').diff() - - mask = delta == 0 - - df.loc[mask,'power4min'] = np.nan - df.dropna(inplace=True,axis=0,how='any') - - - df = df[df['power2k']>0] - try: - df = df[df['mode']==workoutmode] - except TypeError: - df = pd.DataFrame() - - if df.empty: - return ["","no data"] - - groups = df.groupby(by='date').max() - - power4min = groups['power4min'] - date = groups['dates'] - power2k = groups['power2k'] - power1hr = groups['power1hr'] - - source = ColumnDataSource( - data = dict( - power4min = power4min, - power2k = power2k, - date = date, - power1hr = power1hr, - fdate=groups['dates'].map(lambda x: x.strftime('%Y-%m-%d')) - ) - ) - - # fit - - resampled = groups.set_index('dates') - resampled.index = pd.to_datetime(resampled.index) - resampled = resampled.resample('D').interpolate( - method='linear',order=2) - - power4min = resampled['power4min'] - date = resampled.index.values - power2k = resampled['power2k'] - power1hr = resampled['power1hr'] - - source2 = ColumnDataSource( - data = dict( - power4min = power4min, - power2k = power2k, - date = date, - power1hr = power1hr, - fdate=resampled.index.map(lambda x: x.strftime('%d-%m-%Y')) ) - ) - - - - TOOLS = 'save,pan,box_zoom,wheel_zoom,reset,tap,hover,crosshair' - - plot = Figure(tools=TOOLS,toolbar_location="above", - toolbar_sticky=False,width=900, - x_axis_type='datetime') - - # add watermark - watermarkurl = "/static/img/logo7.png" - watermarksource = ColumnDataSource(dict( - url = [watermarkurl],)) - - watermarkrange = Range1d(start=0,end=1) - watermarkalpha = 0.6 - watermarkx = 0.99 - watermarky = 0.01 - watermarkw = 184 - watermarkh = 35 - watermarkanchor = 'bottom_right' - plot.extra_y_ranges = {"watermark": watermarkrange} - plot.extra_x_ranges = {"watermark": watermarkrange} - - plot.image_url([watermarkurl],watermarkx,watermarky, - watermarkw,watermarkh, - global_alpha=watermarkalpha, - w_units='screen', - h_units='screen', - anchor=watermarkanchor, - dilate=True, - x_range_name = "watermark", - y_range_name = "watermark", - ) - - plot.circle('date','power2k',source=source,fill_color='red',size=10, - legend_label='2k power') - - - plot.circle('date','power1hr',source=source,fill_color='blue',size=10, - legend_label='1 hr power') - - plot.circle('date','power4min',source=source,fill_color='green',size=10, - legend_label='4 min power') - - plot.line('date','power4min',source=source2,color='green') - plot.line('date','power2k',source=source2,color='red') - plot.line('date','power1hr',source=source2,color='blue') - - plot.xaxis.axis_label = 'Date' - plot.yaxis.axis_label = 'Power (W)' - - plot.xaxis.formatter = DatetimeTickFormatter( - days=["%d %B %Y"], - months=["%d %B %Y"], - years=["%d %B %Y"], - ) - - plot.xaxis.major_label_orientation = pi/4 - plot.sizing_mode = 'stretch_both' - - plot.y_range = Range1d(0,1.5*max(power4min)) - startdate = datetime.datetime.combine(startdate,datetime.datetime.min.time()) - enddate = datetime.datetime.combine(enddate,datetime.datetime.min.time()) - if not startdate: - startdate = datetime.datetime.combine(min(date), datetime.datetime.min.time()) - - if not enddate: - enddate = datetime.datetime.combine(max(date), datetime.datetime.min.time()) - - plot.x_range = Range1d( - startdate,enddate, - ) - plot.title.text = 'Power levels ('+workoutmode+') from workouts '+user.first_name - - hover = plot.select(dict(type=HoverTool)) - - hover.tooltips = OrderedDict([ - ('Power 4 minutes','@power4min'), - ('Power 2000 m','@power2k'), - ('Power 1 hour','@power1hr'), - ('Date','@fdate'), - ]) - - script,div = components(plot) - - return [script,div] def interactive_histoall(theworkouts,histoparam,includereststrokes, spmmin=0,spmmax=55, @@ -6678,255 +6507,6 @@ def interactive_multiple_compare_chart(ids,xparam,yparam,plottype='line', -def interactive_comparison_chart(id1=0,id2=0,xparam='distance',yparam='spm', - promember=0,plottype='line'): - - - - - columns = [xparam,yparam, - 'ftime','distance','fpace', - 'power','hr','spm', - 'time','pace','workoutstate'] - - # check if valid ID exists (workout exists) - #rowdata1,row1 = dataprep.getrowdata_db(id=id1) - #rowdata2,row2 = dataprep.getrowdata_db(id=id2) - - rowdata1 = dataprep.getsmallrowdata_db(columns,ids=[id1]) - rowdata2 = dataprep.getsmallrowdata_db(columns,ids=[id2]) - for n in ['distance','power','hr','spm','time','pace','workoutstate']: - try: - rowdata1[n].fillna(value=0,inplace=True) - except KeyError: - pass - try: - rowdata2[n].fillna(value=0,inplace=True) - except KeyError: - pass - - rowdata1.dropna(axis=1,how='all',inplace=True) - rowdata1.dropna(axis=0,how='any',inplace=True) - rowdata2.dropna(axis=1,how='all',inplace=True) - rowdata2.dropna(axis=0,how='any',inplace=True) - - row1 = Workout.objects.get(id=id1) - row2 = Workout.objects.get(id=id2) - - if rowdata1.empty: - return "","No Valid Data Available" -# else: -# rowdata1.sort_values(by='time',ascending=True,inplace=True) - - if rowdata2.empty: - return "","No Valid Data Available" -# else: -# rowdata2.sort_values(by='time',ascending=True,inplace=True) - - try: - x1 = rowdata1.loc[:,xparam] - x2 = rowdata2.loc[:,xparam] - - y1 = rowdata1.loc[:,yparam] - y2 = rowdata2.loc[:,yparam] - except KeyError: - return "","No valid Data Available" - - x_axis_type = 'linear' - y_axis_type = 'linear' - if xparam == 'time': - x_axis_type = 'datetime' - - if yparam == 'pace': - y_axis_type = 'datetime' - ymax = 1.0e3*90 - ymin = 1.0e3*180 - - if row1.workouttype == 'water': - ymax = 1.0e3*90 - ymin = 1.0e3*210 - - ftime1 = rowdata1.loc[:,'ftime'] - ftime2 = rowdata2.loc[:,'ftime'] - - hr1 = rowdata1.loc[:,'hr'] - hr2 = rowdata2.loc[:,'hr'] - - - fpace1 = rowdata1.loc[:,'fpace'] - fpace2 = rowdata2.loc[:,'fpace'] - - distance1 = rowdata1.loc[:,'distance'] - distance2 = rowdata2.loc[:,'distance'] - - spm1 = rowdata1.loc[:,'spm'] - spm2 = rowdata2.loc[:,'spm'] - - if (promember==1): - TOOLS = 'save,pan,box_zoom,wheel_zoom,reset,tap,hover,crosshair' - else: - TOOLS = 'pan,box_zoom,wheel_zoom,reset,tap,hover,crosshair' - - - data1 = pd.DataFrame( - dict( - x1=x1, - y1=y1, - ftime1=ftime1, - fpace1=fpace1, - hr1 = hr1, - spm1 = spm1, - distance1=distance1, - ) - ).dropna() - - data2 = pd.DataFrame( - dict( - x2=x2, - y2=y2, - ftime2=ftime2, - fpace2=fpace2, - hr2 = hr2, - spm2 = spm2, - distance2=distance2, - ) - ).dropna() - - - - source1 = ColumnDataSource( - data1 - ) - - source2 = ColumnDataSource( - data2 - ) - - ymean1 = data1['y1'].mean() - ymean2 = data2['y2'].mean() - - # create interactive plot - plot = Figure(x_axis_type=x_axis_type,y_axis_type=y_axis_type, - tools=TOOLS, - plot_width=920, - toolbar_sticky=False) - - # add watermark - watermarkurl = "/static/img/logo7.png" - watermarksource = ColumnDataSource(dict( - url = [watermarkurl],)) - - watermarkrange = Range1d(start=0,end=1) - watermarkalpha = 0.6 - watermarkx = 0.99 - watermarky = 0.01 - watermarkw = 184 - watermarkh = 35 - watermarkanchor = 'bottom_right' - plot.extra_y_ranges = {"watermark": watermarkrange} - plot.extra_x_ranges = {"watermark": watermarkrange} - plot.sizing_mode = 'stretch_both' - - plot.image_url([watermarkurl],0.05,watermarky, - watermarkw,watermarkh, - global_alpha=watermarkalpha, - w_units='screen', - h_units='screen', - anchor='bottom_left', - dilate=True, - x_range_name = "watermark", - y_range_name = "watermark", - ) - - TIPS = OrderedDict([ - ('time','@ftime1'), - ('pace','@fpace1'), - ('hr','@hr1'), - ('spm','@spm1{1.1}'), - ('distance','@distance1{5}'), - ]) - TIPS2 = OrderedDict([ - ('time','@ftime2'), - ('pace','@fpace2'), - ('hr','@hr2'), - ('spm','@spm2{1.1}'), - ('distance','@distance2{5}'), - ]) - - - - hover1 = plot.select(type=HoverTool) - hover1.tooltips = TIPS - hover2 = plot.select(type=HoverTool) - hover2.tooltips = TIPS2 - - - if plottype=='line': - l1 = plot.line('x1','y1',source=source1, - color="blue",legend_label=row1.name, - ) - l2 = plot.line('x2','y2',source=source2, - color="red",legend_label=row2.name, - ) - elif plottype=='scatter': - l1 = plot.scatter('x1','y1',source=source1,legend_label=row1.name, - fill_alpha=0.4, - line_color=None) - l2 = plot.scatter('x2','y2',source=source2,legend_label=row2.name, - fill_alpha=0.4, - line_color=None,color="red") - - plot.add_tools(HoverTool(renderers=[l1],tooltips=TIPS)) - plot.add_tools(HoverTool(renderers=[l2],tooltips=TIPS2)) - plot.legend.location = "bottom_right" - - plot.title.text = row1.name+' vs '+row2.name - plot.title.text_font_size=value("1.2em") - plot.xaxis.axis_label = axlabels[xparam] - plot.yaxis.axis_label = axlabels[yparam] - - ylabel1 = Label(x=100,y=90,x_units='screen',y_units='screen', - text=axlabels[yparam]+": {ymean1:6.2f}".format( - ymean1=ymean1 - ), - background_fill_alpha=.7, - background_fill_color='white', - text_color='blue' - ) - ylabel2 = Label(x=100,y=110,x_units='screen',y_units='screen', - text=axlabels[yparam]+": {ymean2:6.2f}".format( - ymean2=ymean2 - ), - background_fill_alpha=.7, - background_fill_color='white', - text_color='red' - ) - plot.add_layout(ylabel1) - plot.add_layout(ylabel2) - - if xparam == 'time': - plot.xaxis[0].formatter = DatetimeTickFormatter( - hours = ["%H"], - minutes = ["%M"], - seconds = ["%S"], - days = ["0"], - months = [""], - years = [""] - ) - - - if yparam == 'pace': - plot.yaxis[0].formatter = DatetimeTickFormatter( - seconds = ["%S"], - minutes = ["%M"] - ) - - plot.y_range = Range1d(ymin,ymax) - - - script, div = components(plot) - - return [script,div] def interactive_otw_advanced_pace_chart(id=0,promember=0): # check if valid ID exists (workout exists) diff --git a/rowers/tests/test_analysis.py b/rowers/tests/test_analysis.py index a4527159..e7696316 100644 --- a/rowers/tests/test_analysis.py +++ b/rowers/tests/test_analysis.py @@ -1000,9 +1000,28 @@ class GoldMedalScores(TestCase): self.c = Client() self.user_workouts = WorkoutFactory.create_batch(20, user=self.r) - ws = Workout.objects.all().order_by('date') - ws[0].rankingpiece = True - ws[0].save() + result = get_random_file(filename='rowers/tests/testdata/onwater2.csv') + self.w1 = WorkoutFactory(user=self.r, + csvfilename=result['filename'], + starttime=result['starttime'], + startdatetime=result['startdatetime'], + duration=result['duration'], + distance=result['totaldist'], + workouttype = 'water', + rankingpiece=True + ) + + result = get_random_file(filename='rowers/tests/testdata/onwater2.csv') + self.w2 = WorkoutFactory(user=self.r, + csvfilename=result['filename'], + starttime=result['starttime'], + startdatetime=result['startdatetime'], + duration=result['duration'], + distance=result['totaldist'], + workouttype = 'water', + rankingpiece=True + ) + self.factory = RequestFactory() self.password = faker.word() self.u.set_password(self.password) @@ -1020,6 +1039,9 @@ class GoldMedalScores(TestCase): def test_workouts_goldmedalscores(self, mocked_sqlalchemy, mocked_getsmallrowdata_db): + ws = Workout.objects.filter(rankingpiece=True) + self.assertEqual(ws.count(),2) + login = self.c.login(username=self.u.username, password=self.password) self.assertTrue(login) diff --git a/rowers/tests/test_unit_tests.py b/rowers/tests/test_unit_tests.py index 8b5db9f6..c1e2c9f3 100644 --- a/rowers/tests/test_unit_tests.py +++ b/rowers/tests/test_unit_tests.py @@ -71,7 +71,10 @@ class InteractivePlotTests(TestCase): self.assertFalse(len(script)==0) self.assertFalse(len(div)==0) - def test_interactive_chart(self): + @patch('rowers.dataprep.create_engine') + @patch('rowers.dataprep.getsmallrowdata_db', side_effect=mocked_getsmallrowdata_db) + def test_interactive_chart(self, mocked_sqlalchemy, + mocked_getsmallrowdata_db): workout = Workout.objects.filter(user=self.r,workouttype__in=mytypes.rowtypes)[0] id = workout.id @@ -99,3 +102,14 @@ class InteractivePlotTests(TestCase): script, div = interactiveplots.interactive_chart_video(data) self.assertFalse(len(script)==0) self.assertFalse(len(div)==0) + + @patch('rowers.dataprep.create_engine') + @patch('rowers.dataprep.getsmallrowdata_db', side_effect=mocked_getsmallrowdata_db) + def test_interactive_flexchart_stacked(self, mocked_sqlalchemy, + mocked_getsmallrowdata_db): + workout = Workout.objects.filter(user=self.r,workouttype__in=mytypes.rowtypes)[0] + id = workout.id + + script, div, js_res, css_res, comment = interactiveplots.interactive_flexchart_stacked(id,self.r) + self.assertFalse(len(script)==0) + self.assertFalse(len(div)==0) diff --git a/rowers/tests/test_units.py b/rowers/tests/test_units.py index 544e7e8c..98ceba85 100644 --- a/rowers/tests/test_units.py +++ b/rowers/tests/test_units.py @@ -205,9 +205,10 @@ class TestForceUnit(TestCase): average_N = int(row.df[' AverageDriveForce (N)'].mean()) self.assertEqual(average_N,398) - - df = dataprep.getsmallrowdata_db(['averageforce'],ids=[w[0].id],doclean=False, - compute=False) + rowdata = dataprep.rdata('rowers/tests/testdata/PainsledForce.csv') + df = dataprep.dataprep(rowdata.df) + #df = dataprep.getsmallrowdata_db(['averageforce'],ids=[w[0].id],doclean=False, + # compute=False) try: average_N = int(df['averageforce'].mean()) if average_N != 0: diff --git a/rowers/urls.py b/rowers/urls.py index 15f336fc..c7525dcd 100644 --- a/rowers/urls.py +++ b/rowers/urls.py @@ -349,9 +349,9 @@ urlpatterns = [ re_path(r'^record-progress/$',views.post_progress), re_path(r'^list-graphs/$',views.graphs_view,name='graphs_view'), re_path(r'^list-graphs/user/(?P\d+)/$',views.graphs_view,name='graphs_view'), - re_path(r'^fitness-progress/$',views.fitnessmetric_view,name='fitnessmetric_view'), - re_path(r'^fitness-progress/user/(?P\d+)/$',views.fitnessmetric_view,name='fitnessmetric_view'), - re_path(r'^fitness-progress/user/(?P\d+)/(?P\w+.*)/$',views.fitnessmetric_view,name='fitnessmetric_view'), + #re_path(r'^fitness-progress/$',views.fitnessmetric_view,name='fitnessmetric_view'), + #re_path(r'^fitness-progress/user/(?P\d+)/$',views.fitnessmetric_view,name='fitnessmetric_view'), + #re_path(r'^fitness-progress/user/(?P\d+)/(?P\w+.*)/$',views.fitnessmetric_view,name='fitnessmetric_view'), re_path(r'^createmarkerworkouts/user/(?P\d+)/$',views.create_marker_workouts_view, name='create_marker_workouts_view'), re_path(r'^createmarkerworkouts/$',views.create_marker_workouts_view, diff --git a/rowers/views/analysisviews.py b/rowers/views/analysisviews.py index 02aebe95..1f641793 100644 --- a/rowers/views/analysisviews.py +++ b/rowers/views/analysisviews.py @@ -1484,63 +1484,6 @@ def planrequired_view(request): return HttpResponseRedirect(reverse('paidplans_view')) -@user_passes_test(isplanmember,login_url="/rowers/paidplans", - message="This functionality requires a Coach or Self-Coach plan", - redirect_field_name=None) -@permission_required('rower.is_coach',fn=get_user_by_userid,raise_exception=True) -def fitnessmetric_view(request,userid=0,mode='rower', - startdate=timezone.now()-timezone.timedelta(days=365), - enddate=timezone.now()): - - - therower = getrequestrower(request,userid=userid) - theuser = therower.user - - - if request.method == 'POST': - form = FitnessMetricForm(request.POST) - if form.is_valid(): - startdate = form.cleaned_data['startdate'] - enddate = form.cleaned_data['enddate'] - mode = form.cleaned_data['mode'] - else: - form = FitnessMetricForm() - - fitnessmetrics = PowerTimeFitnessMetric.objects.filter( - user=theuser, - workoutmode=mode, - date__gte=startdate, - date__lte=enddate) - - - script,thediv = fitnessmetric_chart( - fitnessmetrics,theuser, - workoutmode=mode,startdate=startdate, - enddate=enddate, - ) - - breadcrumbs = [ - { - 'url':'/rowers/analysis', - 'name':'Analysis' - }, - { - 'url':reverse('fitnessmetric_view'), - 'name': 'Power Progress' - } - ] - - - return render(request,'fitnessmetric.html', - { - 'rower':therower, - 'active':'nav-analysis', - 'chartscript':script, - 'breadcrumbs':breadcrumbs, - 'the_div':thediv, - 'mode':mode, - 'form':form, - }) @user_passes_test(ispromember, login_url="/rowers/paidplans", message="This functionality requires a Pro plan or higher. If you are already a Pro user, please log in to access this functionality", From 6eeb42d488d5961b4c0a3af8b5e27d40ddbb8b11 Mon Sep 17 00:00:00 2001 From: Sander Roosendaal Date: Mon, 11 Jan 2021 20:46:02 +0100 Subject: [PATCH 06/30] removing fitnessmetric from views --- rowers/tests/viewnames.csv | 1 - 1 file changed, 1 deletion(-) diff --git a/rowers/tests/viewnames.csv b/rowers/tests/viewnames.csv index b7fbf9d7..f918c67a 100644 --- a/rowers/tests/viewnames.csv +++ b/rowers/tests/viewnames.csv @@ -35,7 +35,6 @@ 33,35,kill_async_job,kill job,TRUE,302,basic,200,302,basic,200,302,coach,200,302,FALSE,FALSE,FALSE,FALSE,FALSE, 34,36,post_progress,post progress,TRUE,200,basic,200,302,basic,200,302,coach,200,302,FALSE,FALSE,FALSE,FALSE,FALSE, 35,37,graphs_view,view charts,TRUE,302,basic,200,302,basic,200,302,coach,200,302,FALSE,TRUE,FALSE,TRUE,TRUE, -36,38,fitnessmetric_view,view fitness metric,TRUE,302,plan,200,302,plan,403,302,coach,200,302,FALSE,TRUE,FALSE,TRUE,TRUE, 37,39,rankings_view,view ranking,TRUE,302,pro,200,302,pro,403,302,coach,200,302,FALSE,TRUE,FALSE,TRUE,TRUE, 38,40,rankings_view2,view ranking,TRUE,302,pro,200,302,pro,403,302,coach,200,302,FALSE,TRUE,FALSE,TRUE,TRUE, 39,41,otwrankings_view,view ranking,TRUE,302,pro,200,302,pro,403,302,coach,200,302,FALSE,TRUE,FALSE,TRUE,TRUE, From db35d3bf96fa2f8b61a9f41664302c4d49724930 Mon Sep 17 00:00:00 2001 From: Sander Roosendaal Date: Mon, 11 Jan 2021 20:52:00 +0100 Subject: [PATCH 07/30] remove fitness-metric from tests --- rowers/tests/test_urls.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/rowers/tests/test_urls.py b/rowers/tests/test_urls.py index b18df532..23145109 100644 --- a/rowers/tests/test_urls.py +++ b/rowers/tests/test_urls.py @@ -93,9 +93,9 @@ class URLTests(TestCase): '/rowers/developers/', '/rowers/email/', '/rowers/email/thankyou/', - '/rowers/fitness-progress/', - '/rowers/fitness-progress/user/1/', - '/rowers/fitness-progress/user/1/rower/', +# '/rowers/fitness-progress/', +# '/rowers/fitness-progress/user/1/', +# '/rowers/fitness-progress/user/1/rower/', '/rowers/flexall/', '/rowers/flexall/spm/hr/None/', # '/rowers/flexall/spm/hr/None/2016-01-01/2016-12-31/', From d64ce3183c1dcc3bd042e2ac6e341d2a9f4eaa06 Mon Sep 17 00:00:00 2001 From: Sander Roosendaal Date: Tue, 12 Jan 2021 20:36:12 +0100 Subject: [PATCH 08/30] testing on video analysis creation and view --- rowers/dataprep.py | 13 +- rowers/tests/mocks.py | 12 + rowers/tests/test_aworkouts.py | 51 + rowers/tests/testdata/testvideodata.csv | 3284 +++++++++++++++++ .../tests/testdata/testvideodata_metrics.csv | 4 + 5 files changed, 3352 insertions(+), 12 deletions(-) create mode 100644 rowers/tests/testdata/testvideodata.csv create mode 100644 rowers/tests/testdata/testvideodata_metrics.csv diff --git a/rowers/dataprep.py b/rowers/dataprep.py index f09aff2f..f1c806a7 100644 --- a/rowers/dataprep.py +++ b/rowers/dataprep.py @@ -190,10 +190,6 @@ def get_video_data(w,groups=['basic'],mode='water'): latitude = coordinates['latitude'] longitude = coordinates['longitude'] - - - - # bundle data data = { 'boatspeed':boatspeed.values.tolist(), @@ -201,13 +197,6 @@ def get_video_data(w,groups=['basic'],mode='water'): 'longitude':longitude.values.tolist(), } - # metrics = { - # 'boatspeed': { - # 'unit': 'm/s', - # 'metric': 'boatspeed', - # 'name': 'Boat Speed' - # }, - # } metrics = {} @@ -236,7 +225,7 @@ def get_video_data(w,groups=['basic'],mode='water'): metrics = collections.OrderedDict(sorted(metrics.items())) maxtime = coordinates['time'].max() - + return data, metrics, maxtime diff --git a/rowers/tests/mocks.py b/rowers/tests/mocks.py index 08e90110..a1a50614 100644 --- a/rowers/tests/mocks.py +++ b/rowers/tests/mocks.py @@ -183,6 +183,18 @@ def mocked_getsmallrowdata_forfusion(*args, **kwargs): return df +from collections import OrderedDict + +def mocked_videodata(*args, **kwargs): + df = pd.read_csv('rowers/tests/testdata/testvideodata.csv') + data = df .to_dict() + df = pd.read_csv('rowers/tests/testdata/testvideodata_metrics.csv') + metrics = OrderedDict(df.to_dict()) + + maxtime = 3282.4 + + return data, metrics, maxtime + def mocked_getsmallrowdata_db(*args, **kwargs): df = pd.read_csv('rowers/tests/testdata/colsfromdb.csv') diff --git a/rowers/tests/test_aworkouts.py b/rowers/tests/test_aworkouts.py index 3417c53f..14266e9f 100644 --- a/rowers/tests/test_aworkouts.py +++ b/rowers/tests/test_aworkouts.py @@ -543,6 +543,57 @@ class WorkoutViewTest(TestCase): self.assertEqual(response.status_code,200) + + @patch('rowers.dataprep.create_engine') + @patch('rowers.dataprep.getsmallrowdata_db') + @patch('rowers.dataprep.get_video_data',side_effect=mocked_videodata) + def test_workout_video_view(self, mocked_sqlalchemy, mocked_getsmallrowdata_db, + mocked_videodata): + login = self.c.login(username=self.u.username, password=self.password) + self.assertTrue(login) + + url = reverse('workout_video_create_view',kwargs={'id':encoder.encode_hex(self.wwater.id)}) + url2 = reverse('workout_video_view',kwargs={'id':encoder.encode_hex(1)}) + + + yturl = 'https://youtu.be/6UzaWm1Ybrw' + + response = self.c.get(url) + + self.assertEqual(response.status_code,200) + + form_data = { + 'url': yturl, + 'delay': -119, + 'groups': ['basic'], + 'name': 'Video A', + 'save_button':'Save', + } + + response = self.c.post(url,form_data) + self.assertRedirects(response, + expected_url=url2, + status_code=302, + target_status_code=200) + + response = self.c.get(url2) + self.assertEqual(response.status_code,200) + + form_data = { + 'url': yturl, + 'delay': -119, + 'groups': ['basic'], + 'name': 'Video A', + } + + response = self.c.post(url2,form_data) + self.assertEqual(response.status_code,200) + + url = reverse('workout_video_view_mini',kwargs={'id':encoder.encode_hex(1)}) + response = self.c.get(url) + self.assertEqual(response.status_code,200) + + @patch('rowers.dataprep.create_engine') @patch('rowers.dataprep.getsmallrowdata_db') def test_editsummaryview(self, mocked_sqlalchemy, mocked_getsmallrowdata_db): diff --git a/rowers/tests/testdata/testvideodata.csv b/rowers/tests/testdata/testvideodata.csv new file mode 100644 index 00000000..b6e7e1b6 --- /dev/null +++ b/rowers/tests/testdata/testvideodata.csv @@ -0,0 +1,3284 @@ +,boatspeed,latitude,longitude,pace,velo,distance,distanceperstroke,spm,cumdist +0,0.17,52.2219074,6.8570438,50:00.0,0.1,0.0,0.2,46.1,0.0 +1,0.17,52.2219074,6.8570438,50:00.0,0.1,0.0,0.2,46.1,0.0 +2,0.17,52.2219074,6.8570438,50:00.0,0.1,0.0,0.2,46.1,0.0 +3,0.17,52.2219074,6.8570438,48:16.0,0.1,0.0,0.2,39.7,0.0 +4,0.17,52.22192856666667,6.857008066666666,48:16.0,0.1,0.0,0.2,39.7,0.0 +5,0.17,52.22194973333333,6.856972333333334,48:16.0,0.1,0.0,0.2,39.7,0.0 +6,0.56,52.2219709,6.856936600000001,14:56.4,0.5,9.0,1.1,30.0,9.0 +7,0.56,52.221985775,6.856912050000001,14:56.4,0.5,9.0,1.1,30.0,9.0 +8,0.56,52.22200065,6.856887500000001,14:56.4,0.5,9.0,1.1,30.0,9.0 +9,0.56,52.222015525,6.856862950000001,14:56.4,0.5,9.0,1.1,30.0,9.0 +10,1.76,52.2220304,6.856838400000001,04:44.5,1.7,19.0,7.7,13.6,19.0 +11,1.76,52.222044180000005,6.856817,04:44.5,1.7,19.0,7.7,13.6,19.0 +12,1.76,52.22205796,6.856795600000001,04:44.5,1.7,19.0,7.7,13.6,19.0 +13,1.76,52.222071740000004,6.8567742,04:44.5,1.7,19.0,7.7,13.6,19.0 +14,1.76,52.22208552,6.856752800000001,04:44.5,1.7,19.0,7.7,13.6,19.0 +15,2.25,52.2220993,6.8567314,03:42.0,2.2,30.0,10.8,12.4,30.0 +16,2.25,52.222126,6.8566940333333335,03:42.0,2.2,30.0,10.8,12.4,30.0 +17,2.25,52.2221527,6.856656666666667,03:42.0,2.2,30.0,10.8,12.4,30.0 +18,2.57,52.2221794,6.8566193,03:14.6,2.5,42.0,10.3,14.8,42.0 +19,2.57,52.22219594,6.85659728,03:14.6,2.5,42.0,10.3,14.8,42.0 +20,2.57,52.22221248,6.8565752600000005,03:14.6,2.5,42.0,10.3,14.8,42.0 +21,2.57,52.22222902,6.85655324,03:14.6,2.5,42.0,10.3,14.8,42.0 +22,2.57,52.222245560000005,6.856531220000001,03:14.6,2.5,42.0,10.3,14.8,42.0 +23,2.72,52.2222621,6.8565092000000005,03:03.4,2.7,54.0,11.2,14.4,54.0 +24,2.72,52.2222791,6.856484050000001,03:03.4,2.7,54.0,11.2,14.4,54.0 +25,2.72,52.2222961,6.8564589,03:03.4,2.7,54.0,11.2,14.4,54.0 +26,2.72,52.2223131,6.85643375,03:03.4,2.7,54.0,11.2,14.4,54.0 +27,2.79,52.2223301,6.8564086,02:59.3,2.7,64.0,11.2,14.8,64.0 +28,2.79,52.222350675,6.85638305,02:59.3,2.7,64.0,11.2,14.8,64.0 +29,2.79,52.22237125,6.8563575,02:59.3,2.7,64.0,11.2,14.8,64.0 +30,2.79,52.222391825,6.85633195,02:59.3,2.7,64.0,11.2,14.8,64.0 +31,2.83,52.2224124,6.8563064,02:56.8,2.8,75.0,11.1,15.1,75.0 +32,2.83,52.2224383,6.8562726000000005,02:56.8,2.8,75.0,11.1,15.1,75.0 +33,2.83,52.222464200000005,6.8562388,02:56.8,2.8,75.0,11.1,15.1,75.0 +34,2.87,52.2224901,6.856205,02:54.0,2.8,86.0,10.9,15.7,86.0 +35,2.87,52.222505500000004,6.856184,02:54.0,2.8,86.0,10.9,15.7,86.0 +36,2.87,52.222520900000006,6.856163,02:54.0,2.8,86.0,10.9,15.7,86.0 +37,2.87,52.2225363,6.856142,02:54.0,2.8,86.0,10.9,15.7,86.0 +38,2.87,52.222551700000004,6.856121,02:54.0,2.8,86.0,10.9,15.7,86.0 +39,2.93,52.222567100000006,6.8561,02:50.8,2.9,98.0,11.2,15.6,98.0 +40,2.93,52.22259336666667,6.856062833333333,02:50.8,2.9,98.0,11.2,15.6,98.0 +41,2.93,52.22261963333334,6.856025666666667,02:50.8,2.9,98.0,11.2,15.6,98.0 +42,2.98,52.2226459,6.8559885,02:47.8,2.9,109.0,11.2,15.9,109.0 +43,2.98,52.22266625,6.855961,02:47.8,2.9,109.0,11.2,15.9,109.0 +44,2.98,52.2226866,6.8559335,02:47.8,2.9,109.0,11.2,15.9,109.0 +45,2.98,52.22270695,6.855906,02:47.8,2.9,109.0,11.2,15.9,109.0 +46,3.02,52.2227273,6.8558785,02:45.6,3.0,121.0,11.4,15.8,121.0 +47,3.02,52.222752533333335,6.855843733333334,02:45.6,3.0,121.0,11.4,15.8,121.0 +48,3.02,52.222777766666674,6.855808966666666,02:45.6,3.0,121.0,11.4,15.8,121.0 +49,3.04,52.222803000000006,6.8557742,02:44.2,3.0,132.0,11.5,15.8,132.0 +50,3.04,52.222818960000005,6.85575228,02:44.2,3.0,132.0,11.5,15.8,132.0 +51,3.04,52.222834920000004,6.85573036,02:44.2,3.0,132.0,11.5,15.8,132.0 +52,3.04,52.22285088,6.855708439999999,02:44.2,3.0,132.0,11.5,15.8,132.0 +53,3.04,52.22286684,6.855686519999999,02:44.2,3.0,132.0,11.5,15.8,132.0 +54,3.05,52.2228828,6.855664599999999,02:43.9,3.0,144.0,11.5,15.8,144.0 +55,3.05,52.222910266666666,6.855625233333333,02:43.9,3.0,144.0,11.5,15.8,144.0 +56,3.05,52.22293773333333,6.855585866666666,02:43.9,3.0,144.0,11.5,15.8,144.0 +57,3.04,52.2229652,6.8555465,02:44.2,3.0,156.0,11.6,15.7,156.0 +58,3.04,52.222983424999995,6.855519825,02:44.2,3.0,156.0,11.6,15.7,156.0 +59,3.04,52.22300165,6.85549315,02:44.2,3.0,156.0,11.6,15.7,156.0 +60,3.04,52.223019875,6.855466475,02:44.2,3.0,156.0,11.6,15.7,156.0 +61,3.03,52.2230381,6.8554398,02:45.1,3.0,167.0,11.6,15.5,167.0 +62,3.03,52.223058249999994,6.855409825000001,02:45.1,3.0,167.0,11.6,15.5,167.0 +63,3.03,52.2230784,6.85537985,02:45.1,3.0,167.0,11.6,15.5,167.0 +64,3.03,52.22309855,6.855349875,02:45.1,3.0,167.0,11.6,15.5,167.0 +65,3.01,52.2231187,6.8553199000000005,02:46.3,3.0,179.0,11.7,15.3,179.0 +66,3.01,52.22313825,6.855290625,02:46.3,3.0,179.0,11.7,15.3,179.0 +67,3.01,52.223157799999996,6.855261349999999,02:46.3,3.0,179.0,11.7,15.3,179.0 +68,3.01,52.22317735,6.855232074999999,02:46.3,3.0,179.0,11.7,15.3,179.0 +69,2.99,52.2231969,6.855202799999999,02:47.3,2.9,191.0,12.0,14.9,191.0 +70,2.99,52.223217425,6.855171649999999,02:47.3,2.9,191.0,12.0,14.9,191.0 +71,2.99,52.22323795,6.855140499999999,02:47.3,2.9,191.0,12.0,14.9,191.0 +72,2.99,52.223258474999994,6.85510935,02:47.3,2.9,191.0,12.0,14.9,191.0 +73,2.98,52.223279,6.8550782,02:47.7,2.9,203.0,12.2,14.6,203.0 +74,2.98,52.223299175,6.855048125,02:47.7,2.9,203.0,12.2,14.6,203.0 +75,2.98,52.22331935,6.85501805,02:47.7,2.9,203.0,12.2,14.6,203.0 +76,2.98,52.223339525,6.854987975,02:47.7,2.9,203.0,12.2,14.6,203.0 +77,2.99,52.2233597,6.8549579,02:47.0,2.9,215.0,11.9,15.0,215.0 +78,2.99,52.223379125,6.854928875,02:47.0,2.9,215.0,11.9,15.0,215.0 +79,2.99,52.22339855,6.854899850000001,02:47.0,2.9,215.0,11.9,15.0,215.0 +80,2.99,52.223417975000004,6.854870825000001,02:47.0,2.9,215.0,11.9,15.0,215.0 +81,3.03,52.2234374,6.854841800000001,02:45.2,3.0,227.0,11.7,15.4,227.0 +82,3.03,52.2234563,6.8548122750000005,02:45.2,3.0,227.0,11.7,15.4,227.0 +83,3.03,52.223475199999996,6.854782750000001,02:45.2,3.0,227.0,11.7,15.4,227.0 +84,3.03,52.223494099999996,6.854753225000001,02:45.2,3.0,227.0,11.7,15.4,227.0 +85,3.07,52.223513,6.854723700000001,02:42.8,3.0,239.0,11.4,16.1,239.0 +86,3.07,52.223538266666665,6.8546829,02:42.8,3.0,239.0,11.4,16.1,239.0 +87,3.07,52.22356353333333,6.8546420999999995,02:42.8,3.0,239.0,11.4,16.1,239.0 +88,3.12,52.2235888,6.854601299999999,02:40.5,3.1,251.0,11.4,16.3,251.0 +89,3.12,52.223606875,6.854571549999999,02:40.5,3.1,251.0,11.4,16.3,251.0 +90,3.12,52.22362495,6.8545418,02:40.5,3.1,251.0,11.4,16.3,251.0 +91,3.12,52.223643025,6.85451205,02:40.5,3.1,251.0,11.4,16.3,251.0 +92,3.14,52.2236611,6.854482300000001,02:39.3,3.1,262.0,11.4,16.4,262.0 +93,3.14,52.223677925000004,6.854454050000001,02:39.3,3.1,262.0,11.4,16.4,262.0 +94,3.14,52.22369475,6.8544258000000005,02:39.3,3.1,262.0,11.4,16.4,262.0 +95,3.14,52.223711574999996,6.85439755,02:39.3,3.1,262.0,11.4,16.4,262.0 +96,3.13,52.2237284,6.8543693,02:39.6,3.1,273.0,11.5,16.2,273.0 +97,3.13,52.22375366666667,6.8543269,02:39.6,3.1,273.0,11.5,16.2,273.0 +98,3.13,52.22377893333333,6.8542844999999994,02:39.6,3.1,273.0,11.5,16.2,273.0 +99,3.11,52.2238042,6.8542421,02:40.9,3.1,285.0,11.6,15.9,285.0 +100,3.11,52.22382215,6.854212125,02:40.9,3.1,285.0,11.6,15.9,285.0 +101,3.11,52.2238401,6.85418215,02:40.9,3.1,285.0,11.6,15.9,285.0 +102,3.11,52.22385805,6.854152175,02:40.9,3.1,285.0,11.6,15.9,285.0 +103,3.08,52.223876,6.854122200000001,02:42.5,3.0,296.0,11.9,15.5,296.0 +104,3.08,52.22389495,6.854090125000001,02:42.5,3.0,296.0,11.9,15.5,296.0 +105,3.08,52.2239139,6.854058050000001,02:42.5,3.0,296.0,11.9,15.5,296.0 +106,3.08,52.22393285,6.854025975,02:42.5,3.0,296.0,11.9,15.5,296.0 +107,3.06,52.2239518,6.8539939,02:43.3,3.0,308.0,11.9,15.3,308.0 +108,3.06,52.22397035,6.853962474999999,02:43.3,3.0,308.0,11.9,15.3,308.0 +109,3.06,52.2239889,6.85393105,02:43.3,3.0,308.0,11.9,15.3,308.0 +110,3.06,52.22400745,6.853899625,02:43.3,3.0,308.0,11.9,15.3,308.0 +111,3.06,52.224026,6.8538682,02:43.1,3.0,320.0,11.9,15.4,320.0 +112,3.06,52.224045125,6.85383665,02:43.1,3.0,320.0,11.9,15.4,320.0 +113,3.06,52.22406425,6.8538051,02:43.1,3.0,320.0,11.9,15.4,320.0 +114,3.06,52.224083375,6.85377355,02:43.1,3.0,320.0,11.9,15.4,320.0 +115,3.07,52.2241025,6.853742,02:42.7,3.0,332.0,11.8,15.6,332.0 +116,3.07,52.22412045,6.853710875,02:42.7,3.0,332.0,11.8,15.6,332.0 +117,3.07,52.2241384,6.8536797499999995,02:42.7,3.0,332.0,11.8,15.6,332.0 +118,3.07,52.22415635,6.853648625,02:42.7,3.0,332.0,11.8,15.6,332.0 +119,3.07,52.2241743,6.8536175,02:42.6,3.0,344.0,11.7,15.6,344.0 +120,3.07,52.2241916,6.853587225,02:42.6,3.0,344.0,11.7,15.6,344.0 +121,3.07,52.2242089,6.853556950000001,02:42.6,3.0,344.0,11.7,15.6,344.0 +122,3.07,52.224226200000004,6.853526675000001,02:42.6,3.0,344.0,11.7,15.6,344.0 +123,3.06,52.2242435,6.853496400000001,02:43.3,3.0,355.0,11.6,15.7,355.0 +124,3.06,52.22426926666667,6.853451766666668,02:43.3,3.0,355.0,11.6,15.7,355.0 +125,3.06,52.224295033333334,6.8534071333333335,02:43.3,3.0,355.0,11.6,15.7,355.0 +126,3.04,52.2243208,6.8533625,02:44.4,3.0,368.0,11.9,15.2,368.0 +127,3.04,52.22433865,6.853331475,02:44.4,3.0,368.0,11.9,15.2,368.0 +128,3.04,52.2243565,6.853300450000001,02:44.4,3.0,368.0,11.9,15.2,368.0 +129,3.04,52.22437435,6.853269425000001,02:44.4,3.0,368.0,11.9,15.2,368.0 +130,3.02,52.2243922,6.8532384,02:45.3,3.0,380.0,11.7,15.4,380.0 +131,3.02,52.22440776,6.85321272,02:45.3,3.0,380.0,11.7,15.4,380.0 +132,3.02,52.22442332,6.853187040000001,02:45.3,3.0,380.0,11.7,15.4,380.0 +133,3.02,52.224438879999994,6.8531613600000005,02:45.3,3.0,380.0,11.7,15.4,380.0 +134,3.02,52.224454439999995,6.853135680000001,02:45.3,3.0,380.0,11.7,15.4,380.0 +135,3.01,52.22447,6.853110000000001,02:46.0,3.0,392.0,11.7,15.4,392.0 +136,3.01,52.224494066666665,6.853069700000001,02:46.0,3.0,392.0,11.7,15.4,392.0 +137,3.01,52.22451813333333,6.8530294000000005,02:46.0,3.0,392.0,11.7,15.4,392.0 +138,3.01,52.2245422,6.8529891,02:46.1,3.0,403.0,11.7,15.3,403.0 +139,3.01,52.22456145,6.8529575750000005,02:46.1,3.0,403.0,11.7,15.3,403.0 +140,3.01,52.224580700000004,6.852926050000001,02:46.1,3.0,403.0,11.7,15.3,403.0 +141,3.01,52.224599950000005,6.852894525,02:46.1,3.0,403.0,11.7,15.3,403.0 +142,3.02,52.22461920000001,6.852863,02:45.5,3.0,416.0,11.9,15.1,416.0 +143,3.02,52.224634800000004,6.852838080000001,02:45.5,3.0,416.0,11.9,15.1,416.0 +144,3.02,52.2246504,6.852813160000001,02:45.5,3.0,416.0,11.9,15.1,416.0 +145,3.02,52.224666000000006,6.852788240000001,02:45.5,3.0,416.0,11.9,15.1,416.0 +146,3.02,52.224681600000004,6.852763320000001,02:45.5,3.0,416.0,11.9,15.1,416.0 +147,3.03,52.2246972,6.852738400000002,02:44.9,3.0,428.0,11.8,15.3,428.0 +148,3.03,52.22472333333334,6.8526966666666675,02:44.9,3.0,428.0,11.8,15.3,428.0 +149,3.03,52.224749466666665,6.852654933333334,02:44.9,3.0,428.0,11.8,15.3,428.0 +150,3.04,52.2247756,6.8526132,02:44.3,3.0,440.0,12.2,14.9,440.0 +151,3.04,52.224795325,6.85258165,02:44.3,3.0,440.0,12.2,14.9,440.0 +152,3.04,52.224815050000004,6.8525501,02:44.3,3.0,440.0,12.2,14.9,440.0 +153,3.04,52.224834775,6.852518549999999,02:44.3,3.0,440.0,12.2,14.9,440.0 +154,3.05,52.2248545,6.852486999999999,02:44.0,3.0,452.0,12.2,14.9,452.0 +155,3.05,52.22487024,6.852462619999999,02:44.0,3.0,452.0,12.2,14.9,452.0 +156,3.05,52.22488598,6.85243824,02:44.0,3.0,452.0,12.2,14.9,452.0 +157,3.05,52.22490172,6.8524138599999995,02:44.0,3.0,452.0,12.2,14.9,452.0 +158,3.05,52.22491746,6.85238948,02:44.0,3.0,452.0,12.2,14.9,452.0 +159,3.04,52.2249332,6.8523651,02:44.3,3.0,464.0,12.3,14.7,464.0 +160,3.04,52.22496116666667,6.8523217333333335,02:44.3,3.0,464.0,12.3,14.7,464.0 +161,3.04,52.22498913333334,6.852278366666667,02:44.3,3.0,464.0,12.3,14.7,464.0 +162,3.03,52.2250171,6.852235,02:45.0,3.0,477.0,12.4,14.6,477.0 +163,3.03,52.2250374,6.8522037749999996,02:45.0,3.0,477.0,12.4,14.6,477.0 +164,3.03,52.225057699999994,6.85217255,02:45.0,3.0,477.0,12.4,14.6,477.0 +165,3.03,52.225077999999996,6.852141325,02:45.0,3.0,477.0,12.4,14.6,477.0 +166,3.02,52.22509829999999,6.852110099999999,02:45.3,3.0,490.0,12.2,14.8,490.0 +167,3.02,52.22511341999999,6.852086019999999,02:45.3,3.0,490.0,12.2,14.8,490.0 +168,3.02,52.22512853999999,6.85206194,02:45.3,3.0,490.0,12.2,14.8,490.0 +169,3.02,52.22514366,6.852037859999999,02:45.3,3.0,490.0,12.2,14.8,490.0 +170,3.02,52.22515878,6.85201378,02:45.3,3.0,490.0,12.2,14.8,490.0 +171,3.03,52.2251739,6.8519897,02:45.0,3.0,501.0,12.1,15.0,501.0 +172,3.03,52.2251992,6.851948866666667,02:45.0,3.0,501.0,12.1,15.0,501.0 +173,3.03,52.225224499999996,6.851908033333334,02:45.0,3.0,501.0,12.1,15.0,501.0 +174,3.05,52.22524979999999,6.851867200000001,02:43.9,3.0,513.0,11.8,15.3,513.0 +175,3.05,52.22526875,6.8518369,02:43.9,3.0,513.0,11.8,15.3,513.0 +176,3.05,52.225287699999996,6.851806600000001,02:43.9,3.0,513.0,11.8,15.3,513.0 +177,3.05,52.22530664999999,6.851776300000001,02:43.9,3.0,513.0,11.8,15.3,513.0 +178,3.07,52.2253256,6.851746,02:42.8,3.0,525.0,11.9,15.3,525.0 +179,3.07,52.225346275,6.85171325,02:42.8,3.0,525.0,11.9,15.3,525.0 +180,3.07,52.225366949999994,6.8516805000000005,02:42.8,3.0,525.0,11.9,15.3,525.0 +181,3.07,52.225387624999996,6.85164775,02:42.8,3.0,525.0,11.9,15.3,525.0 +182,3.08,52.2254083,6.851615,02:42.4,3.0,538.0,11.9,15.4,538.0 +183,3.08,52.2254278,6.8515828249999995,02:42.4,3.0,538.0,11.9,15.4,538.0 +184,3.08,52.2254473,6.85155065,02:42.4,3.0,538.0,11.9,15.4,538.0 +185,3.08,52.22546679999999,6.851518475000001,02:42.4,3.0,538.0,11.9,15.4,538.0 +186,3.07,52.22548629999999,6.8514863,02:42.7,3.0,550.0,12.0,15.3,550.0 +187,3.07,52.225503825,6.85145725,02:42.7,3.0,550.0,12.0,15.3,550.0 +188,3.07,52.225521349999994,6.851428200000001,02:42.7,3.0,550.0,12.0,15.3,550.0 +189,3.07,52.225538875,6.851399150000001,02:42.7,3.0,550.0,12.0,15.3,550.0 +190,3.06,52.2255564,6.8513701000000005,02:43.1,3.0,561.0,11.7,15.6,561.0 +191,3.06,52.22557535,6.851338125000001,02:43.1,3.0,561.0,11.7,15.6,561.0 +192,3.06,52.225594300000004,6.851306150000001,02:43.1,3.0,561.0,11.7,15.6,561.0 +193,3.06,52.22561325000001,6.851274175000001,02:43.1,3.0,561.0,11.7,15.6,561.0 +194,3.07,52.22563220000001,6.8512422000000015,02:42.7,3.0,573.0,11.7,15.7,573.0 +195,3.07,52.225650650000006,6.851211225000001,02:42.7,3.0,573.0,11.7,15.7,573.0 +196,3.07,52.225669100000005,6.8511802500000005,02:42.7,3.0,573.0,11.7,15.7,573.0 +197,3.07,52.22568755,6.851149275000001,02:42.7,3.0,573.0,11.7,15.7,573.0 +198,3.1,52.225706,6.8511183,02:41.2,3.1,585.0,11.6,15.9,585.0 +199,3.1,52.22573276666667,6.851074766666668,02:41.2,3.1,585.0,11.6,15.9,585.0 +200,3.1,52.22575953333334,6.851031233333334,02:41.2,3.1,585.0,11.6,15.9,585.0 +201,3.13,52.2257863,6.850987700000001,02:39.7,3.1,598.0,11.7,15.9,598.0 +202,3.13,52.225804800000006,6.850957725000001,02:39.7,3.1,598.0,11.7,15.9,598.0 +203,3.13,52.2258233,6.85092775,02:39.7,3.1,598.0,11.7,15.9,598.0 +204,3.13,52.2258418,6.850897775,02:39.7,3.1,598.0,11.7,15.9,598.0 +205,3.15,52.2258603,6.8508678,02:38.8,3.1,609.0,11.8,15.9,609.0 +206,3.15,52.225877575,6.850839775,02:38.8,3.1,609.0,11.8,15.9,609.0 +207,3.15,52.22589485,6.85081175,02:38.8,3.1,609.0,11.8,15.9,609.0 +208,3.15,52.225912125,6.850783724999999,02:38.8,3.1,609.0,11.8,15.9,609.0 +209,3.15,52.2259294,6.8507557,02:38.8,3.1,620.0,11.7,16.0,620.0 +210,3.15,52.2259479,6.8507262749999995,02:38.8,3.1,620.0,11.7,16.0,620.0 +211,3.15,52.225966400000004,6.85069685,02:38.8,3.1,620.0,11.7,16.0,620.0 +212,3.15,52.2259849,6.850667425000001,02:38.8,3.1,620.0,11.7,16.0,620.0 +213,3.14,52.2260034,6.850638000000001,02:39.0,3.1,632.0,11.4,16.4,632.0 +214,3.14,52.22602726666667,6.850599633333334,02:39.0,3.1,632.0,11.4,16.4,632.0 +215,3.14,52.226051133333335,6.850561266666667,02:39.0,3.1,632.0,11.4,16.4,632.0 +216,3.14,52.226075,6.8505229000000005,02:39.0,3.1,643.0,11.3,16.6,643.0 +217,3.14,52.2260937,6.8504927250000005,02:39.0,3.1,643.0,11.3,16.6,643.0 +218,3.14,52.226112400000005,6.8504625500000005,02:39.0,3.1,643.0,11.3,16.6,643.0 +219,3.14,52.2261311,6.8504323750000005,02:39.0,3.1,643.0,11.3,16.6,643.0 +220,3.15,52.2261498,6.8504022,02:38.8,3.1,655.0,11.4,16.5,655.0 +221,3.15,52.22617413333334,6.8503624,02:38.8,3.1,655.0,11.4,16.5,655.0 +222,3.15,52.226198466666666,6.8503226,02:38.8,3.1,655.0,11.4,16.5,655.0 +223,3.15,52.2262228,6.8502828,02:38.9,3.1,666.0,11.5,16.2,666.0 +224,3.15,52.226241675000004,6.8502534,02:38.9,3.1,666.0,11.5,16.2,666.0 +225,3.15,52.226260550000006,6.850224,02:38.9,3.1,666.0,11.5,16.2,666.0 +226,3.15,52.226279425,6.8501946,02:38.9,3.1,666.0,11.5,16.2,666.0 +227,3.15,52.2262983,6.8501652,02:38.6,3.1,678.0,11.5,16.3,678.0 +228,3.15,52.226316275,6.8501365750000005,02:38.6,3.1,678.0,11.5,16.3,678.0 +229,3.15,52.22633425000001,6.85010795,02:38.6,3.1,678.0,11.5,16.3,678.0 +230,3.15,52.226352225000014,6.850079324999999,02:38.6,3.1,678.0,11.5,16.3,678.0 +231,3.19,52.22637020000001,6.8500507,02:36.8,3.1,689.0,11.5,16.6,689.0 +232,3.19,52.22639440000001,6.8500124,02:36.8,3.1,689.0,11.5,16.6,689.0 +233,3.19,52.2264186,6.849974099999999,02:36.8,3.1,689.0,11.5,16.6,689.0 +234,3.28,52.2264428,6.849935799999999,02:32.2,3.2,700.0,10.5,18.7,700.0 +235,3.28,52.226464033333336,6.849901999999999,02:32.2,3.2,700.0,10.5,18.7,700.0 +236,3.28,52.226485266666664,6.8498681999999995,02:32.2,3.2,700.0,10.5,18.7,700.0 +237,3.45,52.2265065,6.8498344,02:24.7,3.4,710.0,9.3,22.2,710.0 +238,3.45,52.2265345,6.84978835,02:24.7,3.4,710.0,9.3,22.2,710.0 +239,3.68,52.2265625,6.8497423,02:16.0,3.6,719.0,8.6,25.5,719.0 +240,3.68,52.2265919,6.849694400000001,02:16.0,3.6,719.0,8.6,25.5,719.0 +241,3.9,52.2266213,6.8496465,02:08.1,3.9,728.0,8.3,28.1,728.0 +242,3.9,52.2266474,6.849604750000001,02:08.1,3.9,728.0,8.3,28.1,728.0 +243,4.08,52.2266735,6.8495630000000025,02:02.5,4.0,736.0,8.2,29.8,736.0 +244,4.08,52.22670065,6.849519900000001,02:02.5,4.0,736.0,8.2,29.8,736.0 +245,4.17,52.2267278,6.8494768,01:59.7,4.1,745.0,8.5,29.3,745.0 +246,4.17,52.226754650000004,6.8494348,01:59.7,4.1,745.0,8.5,29.3,745.0 +247,4.18,52.2267815,6.8493928,01:59.6,4.1,753.0,8.7,28.8,753.0 +248,4.18,52.22681085,6.8493458,01:59.6,4.1,753.0,8.7,28.8,753.0 +249,4.16,52.2268402,6.8492988,02:00.1,4.1,762.0,8.4,29.4,762.0 +250,4.16,52.22686645,6.8492554,02:00.1,4.1,762.0,8.4,29.4,762.0 +251,4.16,52.2268927,6.849212,02:00.0,4.1,771.0,8.3,30.0,771.0 +252,4.16,52.2269182,6.84917215,02:00.0,4.1,771.0,8.3,30.0,771.0 +253,4.2,52.22694370000001,6.849132300000001,01:59.1,4.2,778.0,8.2,30.6,778.0 +254,4.2,52.22696975,6.849091700000001,01:59.1,4.2,778.0,8.2,30.6,778.0 +255,4.26,52.2269958,6.8490511,01:57.4,4.2,786.0,8.1,31.4,786.0 +256,4.26,52.227022899999994,6.849007299999999,01:57.4,4.2,786.0,8.1,31.4,786.0 +257,4.3,52.22705,6.848963499999999,01:55.9,4.3,795.0,8.3,31.1,795.0 +258,4.3,52.2270771,6.84891885,01:55.9,4.3,795.0,8.3,31.1,795.0 +259,4.33,52.2271042,6.8488742,01:55.4,4.3,804.0,8.4,30.7,804.0 +260,4.33,52.22712935,6.8488338,01:55.4,4.3,804.0,8.4,30.7,804.0 +261,4.34,52.2271545,6.848793400000001,01:55.2,4.3,811.0,8.5,30.5,811.0 +262,4.34,52.22718415,6.84874555,01:55.2,4.3,811.0,8.5,30.5,811.0 +263,4.34,52.2272138,6.8486977,01:55.2,4.3,821.0,8.6,30.2,821.0 +264,4.34,52.2272416,6.8486534,01:55.2,4.3,821.0,8.6,30.2,821.0 +265,4.32,52.2272694,6.8486091,01:55.6,4.3,829.0,8.6,29.9,829.0 +266,4.32,52.22729545,6.848568500000001,01:55.6,4.3,829.0,8.6,29.9,829.0 +267,4.3,52.2273215,6.8485279000000014,01:56.0,4.3,837.0,8.6,29.9,837.0 +268,4.3,52.2273503,6.848481600000001,01:56.0,4.3,837.0,8.6,29.9,837.0 +269,4.3,52.2273791,6.8484353,01:56.3,4.3,846.0,8.5,30.1,846.0 +270,4.3,52.227407150000005,6.848391449999999,01:56.3,4.3,846.0,8.5,30.1,846.0 +271,4.28,52.2274352,6.8483475999999985,01:56.8,4.2,855.0,8.4,30.3,855.0 +272,4.28,52.22746085,6.8483066500000005,01:56.8,4.2,855.0,8.4,30.3,855.0 +273,4.26,52.2274865,6.8482657000000025,01:57.0,4.2,863.0,8.4,30.5,863.0 +274,4.28,52.2275407,6.848178599999999,01:56.9,4.2,871.0,8.4,30.4,871.0 +275,4.28,52.22756915,6.848134,01:56.9,4.2,871.0,8.4,30.4,871.0 +276,4.28,52.2275976,6.8480894,01:56.9,4.2,880.0,8.4,30.2,880.0 +277,4.28,52.22761413333333,6.8480625,01:56.9,4.2,880.0,8.4,30.2,880.0 +278,4.28,52.22763066666667,6.8480356,01:56.9,4.2,880.0,8.4,30.2,880.0 +279,4.28,52.2276472,6.8480087,01:56.8,4.2,888.0,8.6,29.6,888.0 +280,4.28,52.227678350000005,6.847956550000001,01:56.8,4.2,888.0,8.6,29.6,888.0 +281,4.26,52.2277095,6.847904400000001,01:56.9,4.2,898.0,8.7,29.4,898.0 +282,4.26,52.2277364,6.847860000000001,01:56.9,4.2,898.0,8.7,29.4,898.0 +283,4.25,52.2277633,6.8478156000000014,01:57.6,4.2,906.0,8.7,29.0,906.0 +284,4.25,52.2277878,6.8477741000000005,01:57.6,4.2,906.0,8.7,29.0,906.0 +285,4.23,52.2278123,6.8477326000000005,01:58.2,4.2,914.0,8.7,29.1,914.0 +286,4.23,52.22783925,6.84768265,01:58.2,4.2,914.0,8.7,29.1,914.0 +287,4.22,52.2278662,6.8476327,01:58.4,4.2,923.0,8.6,29.4,923.0 +288,4.22,52.22789175,6.84758635,01:58.4,4.2,923.0,8.6,29.4,923.0 +289,4.24,52.2279173,6.84754,01:57.9,4.2,932.0,8.5,29.7,932.0 +290,4.24,52.227943350000004,6.8474939500000005,01:57.9,4.2,932.0,8.5,29.7,932.0 +291,4.28,52.2279694,6.8474479000000015,01:56.7,4.2,940.0,8.6,29.6,940.0 +292,4.28,52.22799585,6.84740105,01:56.7,4.2,940.0,8.6,29.6,940.0 +293,4.32,52.2280223,6.8473542,01:55.6,4.3,949.0,8.5,30.5,949.0 +294,4.32,52.22804925,6.8473057,01:55.6,4.3,949.0,8.5,30.5,949.0 +295,4.3,52.2280762,6.8472572,01:56.1,4.3,958.0,8.7,29.3,958.0 +296,4.3,52.228099650000004,6.8472159999999995,01:56.1,4.3,958.0,8.7,29.3,958.0 +297,4.18,52.22812310000001,6.8471748,01:59.6,4.1,966.0,9.5,26.3,966.0 +298,4.18,52.22815196666667,6.847124966666667,01:59.6,4.1,966.0,9.5,26.3,966.0 +299,4.18,52.22818083333334,6.847075133333332,01:59.6,4.1,966.0,9.5,26.3,966.0 +300,3.94,52.2282097,6.8470252999999985,02:06.9,3.9,980.0,10.3,22.7,980.0 +301,3.94,52.22822623333333,6.846996766666666,02:06.9,3.9,980.0,10.3,22.7,980.0 +302,3.94,52.22824276666667,6.846968233333333,02:06.9,3.9,980.0,10.3,22.7,980.0 +303,3.6,52.2282593,6.8469397,02:18.8,3.6,988.0,11.3,19.1,988.0 +304,3.6,52.22828066666666,6.8469034,02:18.8,3.6,988.0,11.3,19.1,988.0 +305,3.6,52.228302033333335,6.8468671,02:18.8,3.6,988.0,11.3,19.1,988.0 +306,3.25,52.2283234,6.8468308,02:33.7,3.2,998.0,11.7,16.6,998.0 +307,3.25,52.2283399,6.84680285,02:33.7,3.2,998.0,11.7,16.6,998.0 +308,3.25,52.228356399999996,6.8467749,02:33.7,3.2,998.0,11.7,16.6,998.0 +309,3.25,52.2283729,6.84674695,02:33.7,3.2,998.0,11.7,16.6,998.0 +310,2.98,52.2283894,6.846719,02:47.9,2.9,1009.0,10.9,16.3,1009.0 +311,2.98,52.228405124999995,6.846690649999999,02:47.9,2.9,1009.0,10.9,16.3,1009.0 +312,2.98,52.22842085,6.846662299999998,02:47.9,2.9,1009.0,10.9,16.3,1009.0 +313,2.98,52.228436575,6.846633949999998,02:47.9,2.9,1009.0,10.9,16.3,1009.0 +314,2.8,52.2284523,6.8466055999999975,02:58.3,2.8,1019.0,10.6,15.7,1019.0 +315,2.8,52.228467975,6.846576849999998,02:58.3,2.8,1019.0,10.6,15.7,1019.0 +316,2.8,52.22848365,6.846548099999999,02:58.3,2.8,1019.0,10.6,15.7,1019.0 +317,2.8,52.228499325,6.8465193499999994,02:58.3,2.8,1019.0,10.6,15.7,1019.0 +318,2.73,52.228515,6.8464906,03:03.1,2.7,1030.0,10.4,15.6,1030.0 +319,2.73,52.228530875000004,6.846460400000001,03:03.1,2.7,1030.0,10.4,15.6,1030.0 +320,2.73,52.22854675,6.8464302,03:03.1,2.7,1030.0,10.4,15.6,1030.0 +321,2.73,52.228562624999995,6.846400000000001,03:03.1,2.7,1030.0,10.4,15.6,1030.0 +322,2.73,52.2285785,6.8463698000000015,03:03.3,2.7,1040.0,10.5,15.5,1040.0 +323,2.73,52.228597799999996,6.846333133333334,03:03.3,2.7,1040.0,10.5,15.5,1040.0 +324,2.73,52.2286171,6.846296466666668,03:03.3,2.7,1040.0,10.5,15.5,1040.0 +325,2.75,52.2286364,6.8462598,03:01.6,2.7,1050.0,10.5,15.6,1050.0 +326,2.75,52.22864964,6.846234920000001,03:01.6,2.7,1050.0,10.5,15.6,1050.0 +327,2.75,52.22866288,6.846210040000001,03:01.6,2.7,1050.0,10.5,15.6,1050.0 +328,2.75,52.228676119999996,6.84618516,03:01.6,2.7,1050.0,10.5,15.6,1050.0 +329,2.75,52.22868936,6.84616028,03:01.6,2.7,1050.0,10.5,15.6,1050.0 +330,2.79,52.2287026,6.8461354000000005,02:59.4,2.7,1062.0,10.5,15.8,1062.0 +331,2.79,52.22872373333333,6.846095733333334,02:59.4,2.7,1062.0,10.5,15.8,1062.0 +332,2.79,52.228744866666666,6.846056066666668,02:59.4,2.7,1062.0,10.5,15.8,1062.0 +333,2.83,52.228766,6.846016400000001,02:56.7,2.8,1072.0,10.9,15.4,1072.0 +334,2.83,52.228781975000004,6.8459857500000005,02:56.7,2.8,1072.0,10.9,15.4,1072.0 +335,2.83,52.22879795,6.8459551,02:56.7,2.8,1072.0,10.9,15.4,1072.0 +336,2.83,52.228813925,6.84592445,02:56.7,2.8,1072.0,10.9,15.4,1072.0 +337,2.87,52.2288299,6.8458938,02:54.0,2.8,1083.0,11.0,15.6,1083.0 +338,2.87,52.228846925,6.8458614749999995,02:54.0,2.8,1083.0,11.0,15.6,1083.0 +339,2.87,52.228863950000004,6.84582915,02:54.0,2.8,1083.0,11.0,15.6,1083.0 +340,2.87,52.228880975,6.845796825000001,02:54.0,2.8,1083.0,11.0,15.6,1083.0 +341,2.92,52.228898,6.8457645000000005,02:51.0,2.9,1095.0,10.7,16.2,1095.0 +342,2.92,52.22891335,6.845735550000001,02:51.0,2.9,1095.0,10.7,16.2,1095.0 +343,2.92,52.2289287,6.845706600000001,02:51.0,2.9,1095.0,10.7,16.2,1095.0 +344,2.92,52.22894405,6.845677650000001,02:51.0,2.9,1095.0,10.7,16.2,1095.0 +345,2.97,52.2289594,6.845648700000001,02:48.1,2.9,1105.0,10.8,16.5,1105.0 +346,2.97,52.228980633333336,6.845609733333334,02:48.1,2.9,1105.0,10.8,16.5,1105.0 +347,2.97,52.22900186666667,6.8455707666666665,02:48.1,2.9,1105.0,10.8,16.5,1105.0 +348,3.02,52.229023100000006,6.8455318,02:45.7,3.0,1116.0,10.6,16.9,1116.0 +349,3.02,52.22904516666667,6.8454926333333335,02:45.7,3.0,1116.0,10.6,16.9,1116.0 +350,3.02,52.22906723333333,6.845453466666666,02:45.7,3.0,1116.0,10.6,16.9,1116.0 +351,3.06,52.2290893,6.8454143,02:43.5,3.0,1127.0,10.8,16.9,1127.0 +352,3.06,52.229105775,6.845386575,02:43.5,3.0,1127.0,10.8,16.9,1127.0 +353,3.06,52.22912225,6.84535885,02:43.5,3.0,1127.0,10.8,16.9,1127.0 +354,3.06,52.229138725,6.8453311249999995,02:43.5,3.0,1127.0,10.8,16.9,1127.0 +355,3.13,52.2291552,6.8453034,02:39.6,3.1,1137.0,10.1,18.4,1137.0 +356,3.13,52.2291759,6.8452687333333335,02:39.6,3.1,1137.0,10.1,18.4,1137.0 +357,3.13,52.2291966,6.8452340666666665,02:39.6,3.1,1137.0,10.1,18.4,1137.0 +358,3.28,52.2292173,6.8451994,02:32.4,3.2,1147.0,9.0,21.8,1147.0 +359,3.28,52.22924155,6.845158400000001,02:32.4,3.2,1147.0,9.0,21.8,1147.0 +360,3.52,52.2292658,6.8451174,02:22.1,3.5,1155.0,8.2,25.6,1155.0 +361,3.52,52.22929335,6.8450703,02:22.1,3.5,1155.0,8.2,25.6,1155.0 +362,3.8,52.2293209,6.8450232,02:11.7,3.8,1164.0,7.9,28.6,1164.0 +363,3.8,52.2293472,6.8449788,02:11.7,3.8,1164.0,7.9,28.6,1164.0 +364,4.04,52.2293735,6.8449344,02:03.9,4.0,1172.0,8.0,30.1,1172.0 +365,4.04,52.22939905,6.8448891,02:03.9,4.0,1172.0,8.0,30.1,1172.0 +366,4.19,52.2294246,6.8448438,01:59.3,4.1,1181.0,8.4,29.7,1181.0 +367,4.19,52.229451100000006,6.8447984,01:59.3,4.1,1181.0,8.4,29.7,1181.0 +368,4.26,52.2294776,6.844753,01:57.3,4.2,1189.0,8.6,29.6,1189.0 +369,4.26,52.229504750000004,6.84470795,01:57.3,4.2,1189.0,8.6,29.6,1189.0 +370,4.28,52.2295319,6.8446629,01:56.9,4.2,1198.0,8.6,29.8,1198.0 +371,4.28,52.229558499999996,6.844617650000001,01:56.9,4.2,1198.0,8.6,29.8,1198.0 +372,4.28,52.2295851,6.8445724000000014,01:56.7,4.2,1207.0,8.5,30.2,1207.0 +373,4.28,52.2296121,6.844527450000001,01:56.7,4.2,1207.0,8.5,30.2,1207.0 +374,4.3,52.2296391,6.8444825,01:56.2,4.3,1215.0,8.4,30.6,1215.0 +375,4.3,52.2296665,6.84443825,01:56.2,4.3,1215.0,8.4,30.6,1215.0 +376,4.32,52.2296939,6.844394,01:55.7,4.3,1224.0,8.3,31.0,1224.0 +377,4.32,52.22971939999999,6.84435315,01:55.7,4.3,1224.0,8.3,31.0,1224.0 +378,4.34,52.22974489999999,6.8443123,01:55.3,4.3,1232.0,8.3,31.1,1232.0 +379,4.34,52.22977229999999,6.84426875,01:55.3,4.3,1232.0,8.3,31.1,1232.0 +380,4.34,52.2297997,6.8442252,01:54.9,4.3,1240.0,8.3,31.1,1240.0 +381,4.34,52.2298269,6.8441823,01:54.9,4.3,1240.0,8.3,31.1,1240.0 +382,4.34,52.2298541,6.8441394,01:54.9,4.3,1249.0,8.4,30.8,1249.0 +383,4.34,52.22988065,6.8440995,01:54.9,4.3,1249.0,8.4,30.8,1249.0 +384,4.34,52.22990720000001,6.844059599999999,01:55.0,4.3,1257.0,8.5,30.4,1257.0 +385,4.36,52.22996320000001,6.843972,01:54.7,4.3,1265.0,8.6,30.1,1265.0 +386,4.36,52.229983233333336,6.843939933333333,01:54.7,4.3,1265.0,8.6,30.1,1265.0 +387,4.36,52.230003266666664,6.843907866666667,01:54.7,4.3,1265.0,8.6,30.1,1265.0 +388,4.34,52.23002329999999,6.8438758,01:54.8,4.3,1275.0,8.6,30.2,1275.0 +389,4.34,52.2300462,6.84383895,01:54.8,4.3,1275.0,8.6,30.2,1275.0 +390,4.33,52.2300691,6.8438021,01:55.3,4.3,1282.0,8.6,30.1,1282.0 +391,4.33,52.2300987,6.84375495,01:55.3,4.3,1282.0,8.6,30.1,1282.0 +392,4.3,52.2301283,6.8437078,01:55.9,4.3,1291.0,8.4,30.5,1291.0 +393,4.28,52.2301823,6.8436233999999985,01:56.8,4.2,1299.0,8.4,30.3,1299.0 +394,4.28,52.23019936666667,6.843596233333333,01:56.8,4.2,1299.0,8.4,30.3,1299.0 +395,4.28,52.23021643333333,6.843569066666666,01:56.8,4.2,1299.0,8.4,30.3,1299.0 +396,4.26,52.2302335,6.843541900000001,01:57.2,4.2,1307.0,8.4,30.3,1307.0 +397,4.29,52.2302923,6.8434487000000015,01:56.6,4.2,1316.0,8.5,30.0,1316.0 +398,4.29,52.23031995,6.843405050000001,01:56.6,4.2,1316.0,8.5,30.0,1316.0 +399,4.32,52.2303476,6.8433614,01:55.8,4.3,1325.0,8.5,30.4,1325.0 +400,4.32,52.2303644,6.843334166666667,01:55.8,4.3,1325.0,8.5,30.4,1325.0 +401,4.32,52.230381200000004,6.843306933333334,01:55.8,4.3,1325.0,8.5,30.4,1325.0 +402,4.34,52.230398,6.843279700000001,01:55.3,4.3,1333.0,8.6,30.0,1333.0 +403,4.34,52.230427,6.843232500000001,01:55.3,4.3,1333.0,8.6,30.0,1333.0 +404,4.34,52.230456,6.8431853,01:55.1,4.3,1342.0,8.5,30.3,1342.0 +405,4.33,52.2305062,6.8431044000000005,01:55.5,4.3,1350.0,8.6,30.1,1350.0 +406,4.33,52.23052393333333,6.8430751333333335,01:55.5,4.3,1350.0,8.6,30.1,1350.0 +407,4.33,52.23054166666667,6.843045866666667,01:55.5,4.3,1350.0,8.6,30.1,1350.0 +408,4.3,52.2305594,6.8430166,01:56.0,4.3,1358.0,8.5,30.3,1358.0 +409,4.32,52.2306136,6.842927799999999,01:55.8,4.3,1367.0,8.5,30.3,1367.0 +410,4.32,52.230640650000005,6.8428834499999995,01:55.8,4.3,1367.0,8.5,30.3,1367.0 +411,4.34,52.23066770000001,6.8428391,01:55.2,4.3,1375.0,8.2,31.4,1375.0 +412,4.34,52.230685633333344,6.842809666666667,01:55.2,4.3,1375.0,8.2,31.4,1375.0 +413,4.34,52.23070356666667,6.842780233333333,01:55.2,4.3,1375.0,8.2,31.4,1375.0 +414,4.33,52.2307215,6.8427508,01:55.3,4.3,1384.0,8.5,30.5,1384.0 +415,4.25,52.2307691,6.842669,01:57.6,4.2,1392.0,8.9,28.3,1392.0 +416,4.25,52.2307935,6.8426266,01:57.6,4.2,1392.0,8.9,28.3,1392.0 +417,4.25,52.2308179,6.8425842,01:57.6,4.2,1392.0,8.9,28.3,1392.0 +418,4.05,52.23084229999999,6.8425418,02:03.0,4.0,1403.0,9.6,25.1,1403.0 +419,4.05,52.23086016666666,6.8425107333333335,02:03.0,4.0,1403.0,9.6,25.1,1403.0 +420,4.05,52.23087803333333,6.842479666666666,02:03.0,4.0,1403.0,9.6,25.1,1403.0 +421,3.78,52.2308959,6.842448599999999,02:12.3,3.7,1412.0,10.4,21.6,1412.0 +422,3.78,52.23091530000001,6.8424149666666665,02:12.3,3.7,1412.0,10.4,21.6,1412.0 +423,3.78,52.230934700000006,6.842381333333333,02:12.3,3.7,1412.0,10.4,21.6,1412.0 +424,3.48,52.23095410000001,6.8423477,02:23.6,3.4,1422.0,10.8,19.2,1422.0 +425,3.48,52.23097520000001,6.842312900000001,02:23.6,3.4,1422.0,10.8,19.2,1422.0 +426,3.48,52.2309963,6.8422781000000015,02:23.6,3.4,1422.0,10.8,19.2,1422.0 +427,3.25,52.2310174,6.8422433000000025,02:33.6,3.2,1432.0,10.3,18.8,1432.0 +428,3.25,52.231038033333334,6.842210200000002,02:33.6,3.2,1432.0,10.3,18.8,1432.0 +429,3.25,52.23105866666666,6.842177100000001,02:33.6,3.2,1432.0,10.3,18.8,1432.0 +430,3.13,52.2310793,6.842144,02:39.9,3.1,1441.0,10.2,18.3,1441.0 +431,3.13,52.2311011,6.8421083000000005,02:39.9,3.1,1441.0,10.2,18.3,1441.0 +432,3.13,52.2311229,6.842072600000001,02:39.9,3.1,1441.0,10.2,18.3,1441.0 +433,3.08,52.2311447,6.842036900000001,02:42.2,3.0,1452.0,10.2,17.9,1452.0 +434,3.08,52.231161,6.842010875000001,02:42.2,3.0,1452.0,10.2,17.9,1452.0 +435,3.08,52.2311773,6.841984850000001,02:42.2,3.0,1452.0,10.2,17.9,1452.0 +436,3.08,52.231193600000005,6.841958825000001,02:42.2,3.0,1452.0,10.2,17.9,1452.0 +437,3.09,52.2312099,6.8419328,02:41.8,3.0,1462.0,10.2,18.1,1462.0 +438,3.09,52.23123253333333,6.841896966666667,02:41.8,3.0,1462.0,10.2,18.1,1462.0 +439,3.09,52.23125516666667,6.8418611333333335,02:41.8,3.0,1462.0,10.2,18.1,1462.0 +440,3.11,52.2312778,6.8418253,02:40.8,3.1,1472.0,10.3,18.0,1472.0 +441,3.11,52.231294525,6.841799125,02:40.8,3.1,1472.0,10.3,18.0,1472.0 +442,3.11,52.231311250000005,6.84177295,02:40.8,3.1,1472.0,10.3,18.0,1472.0 +443,3.11,52.231327975,6.841746775000001,02:40.8,3.1,1472.0,10.3,18.0,1472.0 +444,3.13,52.2313447,6.8417206,02:39.6,3.1,1483.0,10.3,18.2,1483.0 +445,3.13,52.23136616666667,6.841686933333333,02:39.6,3.1,1483.0,10.3,18.2,1483.0 +446,3.13,52.231387633333334,6.8416532666666665,02:39.6,3.1,1483.0,10.3,18.2,1483.0 +447,3.16,52.2314091,6.8416196,02:38.2,3.1,1493.0,10.3,18.3,1493.0 +448,3.16,52.2314324,6.841582533333333,02:38.2,3.1,1493.0,10.3,18.3,1493.0 +449,3.16,52.2314557,6.841545466666667,02:38.2,3.1,1493.0,10.3,18.3,1493.0 +450,3.19,52.231479,6.8415084,02:36.9,3.1,1503.0,10.5,18.1,1503.0 +451,3.19,52.23150186666667,6.8414733000000005,02:36.9,3.1,1503.0,10.5,18.1,1503.0 +452,3.19,52.23152473333333,6.8414382,02:36.9,3.1,1503.0,10.5,18.1,1503.0 +453,3.2,52.2315476,6.8414031,02:36.0,3.2,1514.0,10.7,17.9,1514.0 +454,3.2,52.231566175,6.841375075,02:36.0,3.2,1514.0,10.7,17.9,1514.0 +455,3.2,52.231584749999996,6.8413470499999995,02:36.0,3.2,1514.0,10.7,17.9,1514.0 +456,3.2,52.231603325,6.841319025,02:36.0,3.2,1514.0,10.7,17.9,1514.0 +457,3.21,52.2316219,6.841291,02:35.6,3.2,1525.0,10.6,18.1,1525.0 +458,3.21,52.231645666666665,6.841257233333334,02:35.6,3.2,1525.0,10.6,18.1,1525.0 +459,3.21,52.23166943333334,6.8412234666666665,02:35.6,3.2,1525.0,10.6,18.1,1525.0 +460,3.22,52.2316932,6.8411897,02:35.3,3.2,1536.0,10.7,18.0,1536.0 +461,3.22,52.2317143,6.841153366666667,02:35.3,3.2,1536.0,10.7,18.0,1536.0 +462,3.22,52.231735400000005,6.841117033333333,02:35.3,3.2,1536.0,10.7,18.0,1536.0 +463,3.22,52.2317565,6.8410807,02:35.0,3.2,1546.0,10.6,18.1,1546.0 +464,3.22,52.23177525,6.841052325000001,02:35.0,3.2,1546.0,10.6,18.1,1546.0 +465,3.22,52.231794,6.84102395,02:35.0,3.2,1546.0,10.6,18.1,1546.0 +466,3.22,52.23181275,6.840995575000001,02:35.0,3.2,1546.0,10.6,18.1,1546.0 +467,3.22,52.2318315,6.8409672000000015,02:35.2,3.2,1557.0,10.6,18.1,1557.0 +468,3.22,52.2318562,6.840934100000001,02:35.2,3.2,1557.0,10.6,18.1,1557.0 +469,3.22,52.23188090000001,6.840901000000001,02:35.2,3.2,1557.0,10.6,18.1,1557.0 +470,3.21,52.23190560000001,6.8408679,02:35.6,3.2,1568.0,11.0,17.4,1568.0 +471,3.21,52.23192980000001,6.8408337333333336,02:35.6,3.2,1568.0,11.0,17.4,1568.0 +472,3.21,52.231954,6.840799566666668,02:35.6,3.2,1568.0,11.0,17.4,1568.0 +473,3.23,52.2319782,6.840765400000001,02:34.8,3.2,1579.0,10.5,18.3,1579.0 +474,3.23,52.2320026,6.840731600000001,02:34.8,3.2,1579.0,10.5,18.3,1579.0 +475,3.23,52.232027,6.840697800000001,02:34.8,3.2,1579.0,10.5,18.3,1579.0 +476,3.3,52.2320514,6.840664,02:31.3,3.3,1589.0,9.4,21.1,1589.0 +477,3.3,52.23207093333333,6.8406359000000005,02:31.3,3.3,1589.0,9.4,21.1,1589.0 +478,3.3,52.23209046666667,6.8406078,02:31.3,3.3,1589.0,9.4,21.1,1589.0 +479,3.47,52.23211,6.8405797,02:24.1,3.4,1598.0,8.6,24.1,1598.0 +480,3.47,52.23213815,6.840538649999999,02:24.1,3.4,1598.0,8.6,24.1,1598.0 +481,3.71,52.2321663,6.840497599999999,02:14.7,3.7,1606.0,8.1,27.2,1606.0 +482,3.71,52.2321942,6.840457599999999,02:14.7,3.7,1606.0,8.1,27.2,1606.0 +483,3.97,52.2322221,6.8404175999999985,02:05.8,3.9,1615.0,8.1,29.2,1615.0 +484,3.97,52.232252700000004,6.840372649999999,02:05.8,3.9,1615.0,8.1,29.2,1615.0 +485,4.18,52.2322833,6.8403277000000005,01:59.4,4.1,1624.0,8.6,29.1,1624.0 +486,4.18,52.2323133,6.840284350000001,01:59.4,4.1,1624.0,8.6,29.1,1624.0 +487,4.3,52.2323433,6.8402410000000025,01:56.2,4.3,1633.0,8.8,29.0,1633.0 +488,4.3,52.2323745,6.840194550000001,01:56.2,4.3,1633.0,8.8,29.0,1633.0 +489,4.34,52.2324057,6.8401481,01:55.3,4.3,1642.0,8.8,29.2,1642.0 +490,4.34,52.232434850000004,6.8401058,01:55.3,4.3,1642.0,8.8,29.2,1642.0 +491,4.32,52.232464,6.8400634999999985,01:55.6,4.3,1651.0,8.8,29.2,1651.0 +492,4.32,52.23249265,6.840020449999999,01:55.6,4.3,1651.0,8.8,29.2,1651.0 +493,4.3,52.2325213,6.8399774,01:56.3,4.3,1660.0,8.8,29.0,1660.0 +494,4.3,52.23255255,6.839931,01:56.3,4.3,1660.0,8.8,29.0,1660.0 +495,4.28,52.2325838,6.839884599999999,01:56.8,4.2,1669.0,8.9,28.8,1669.0 +496,4.28,52.2326136,6.839843599999999,01:56.8,4.2,1669.0,8.9,28.8,1669.0 +497,4.28,52.2326434,6.8398026,01:56.9,4.2,1678.0,8.9,28.6,1678.0 +498,4.28,52.2326725,6.83976195,01:56.9,4.2,1678.0,8.9,28.6,1678.0 +499,4.26,52.2327016,6.839721300000001,01:57.2,4.2,1686.0,8.8,28.7,1686.0 +500,4.26,52.2327325,6.839676850000001,01:57.2,4.2,1686.0,8.8,28.7,1686.0 +501,4.24,52.2327634,6.839632400000001,01:57.9,4.2,1695.0,8.8,28.6,1695.0 +502,4.24,52.232782666666665,6.839605166666668,01:57.9,4.2,1695.0,8.8,28.6,1695.0 +503,4.24,52.232801933333334,6.8395779333333335,01:57.9,4.2,1695.0,8.8,28.6,1695.0 +504,4.21,52.2328212,6.8395507,01:58.7,4.2,1704.0,8.8,28.6,1704.0 +505,4.21,52.232851700000005,6.83950765,01:58.7,4.2,1704.0,8.8,28.6,1704.0 +506,4.18,52.23288220000001,6.8394646,01:59.5,4.1,1713.0,8.7,28.6,1713.0 +507,4.18,52.23291040000001,6.8394248499999994,01:59.5,4.1,1713.0,8.7,28.6,1713.0 +508,4.16,52.2329386,6.8393850999999986,02:00.0,4.1,1721.0,8.8,28.3,1721.0 +509,4.16,52.23296690000001,6.8393441500000005,02:00.0,4.1,1721.0,8.8,28.3,1721.0 +510,4.17,52.23299520000001,6.8393032000000025,02:00.0,4.1,1729.0,8.8,28.3,1729.0 +511,4.17,52.23302550000001,6.8392589500000005,02:00.0,4.1,1729.0,8.8,28.3,1729.0 +512,4.18,52.2330558,6.8392146999999985,01:59.7,4.1,1739.0,8.8,28.4,1739.0 +513,4.18,52.233086400000005,6.8391684999999995,01:59.7,4.1,1739.0,8.8,28.4,1739.0 +514,4.18,52.233117,6.8391223,01:59.5,4.1,1748.0,8.9,28.1,1748.0 +515,4.18,52.2331477,6.8390777499999995,01:59.5,4.1,1748.0,8.9,28.1,1748.0 +516,4.2,52.2331784,6.8390331999999985,01:59.0,4.2,1757.0,8.8,28.4,1757.0 +517,4.2,52.23320645,6.838991099999999,01:59.0,4.2,1757.0,8.8,28.4,1757.0 +518,4.23,52.2332345,6.838949,01:58.1,4.2,1765.0,8.7,29.0,1765.0 +519,4.23,52.23326595,6.83890345,01:58.1,4.2,1765.0,8.7,29.0,1765.0 +520,4.24,52.2332974,6.8388579,01:57.9,4.2,1775.0,8.9,28.4,1775.0 +521,4.24,52.2333255,6.83881585,01:57.9,4.2,1775.0,8.9,28.4,1775.0 +522,4.19,52.2333536,6.8387737999999985,01:59.4,4.1,1783.0,9.5,26.4,1783.0 +523,4.19,52.233379633333335,6.838736066666666,01:59.4,4.1,1783.0,9.5,26.4,1783.0 +524,4.19,52.23340566666666,6.838698333333332,01:59.4,4.1,1783.0,9.5,26.4,1783.0 +525,4.04,52.2334317,6.8386606,02:03.7,4.0,1795.0,10.1,23.9,1795.0 +526,4.04,52.23345,6.838632766666666,02:03.7,4.0,1795.0,10.1,23.9,1795.0 +527,4.04,52.233468300000006,6.838604933333332,02:03.7,4.0,1795.0,10.1,23.9,1795.0 +528,3.8,52.233486600000006,6.8385770999999975,02:11.7,3.8,1803.0,10.5,21.5,1803.0 +529,3.8,52.23350836666667,6.8385442666666645,02:11.7,3.8,1803.0,10.5,21.5,1803.0 +530,3.8,52.23353013333334,6.838511433333331,02:11.7,3.8,1803.0,10.5,21.5,1803.0 +531,3.53,52.2335519,6.8384785999999975,02:21.6,3.5,1813.0,10.6,19.9,1813.0 +532,3.53,52.233573533333335,6.838446066666665,02:21.6,3.5,1813.0,10.6,19.9,1813.0 +533,3.53,52.23359516666666,6.838413533333332,02:21.6,3.5,1813.0,10.6,19.9,1813.0 +534,3.33,52.23361679999999,6.838381,02:30.0,3.3,1823.0,10.1,19.7,1823.0 +535,3.33,52.23363913333333,6.8383462,02:30.0,3.3,1823.0,10.1,19.7,1823.0 +536,3.33,52.23366146666667,6.8383114,02:30.0,3.3,1823.0,10.1,19.7,1823.0 +537,3.22,52.2336838,6.8382766,02:35.2,3.2,1833.0,9.9,19.4,1833.0 +538,3.22,52.233706133333335,6.838241966666667,02:35.2,3.2,1833.0,9.9,19.4,1833.0 +539,3.22,52.23372846666667,6.838207333333334,02:35.2,3.2,1833.0,9.9,19.4,1833.0 +540,3.18,52.2337508,6.8381727,02:37.0,3.1,1844.0,10.1,18.8,1844.0 +541,3.18,52.23377226666667,6.838138833333334,02:37.0,3.1,1844.0,10.1,18.8,1844.0 +542,3.18,52.233793733333336,6.838104966666666,02:37.0,3.1,1844.0,10.1,18.8,1844.0 +543,3.18,52.2338152,6.8380711,02:37.2,3.1,1854.0,10.3,18.3,1854.0 +544,3.18,52.233831675000005,6.83804415,02:37.2,3.1,1854.0,10.3,18.3,1854.0 +545,3.18,52.23384815,6.8380171999999995,02:37.2,3.1,1854.0,10.3,18.3,1854.0 +546,3.18,52.233864624999995,6.83799025,02:37.2,3.1,1854.0,10.3,18.3,1854.0 +547,3.17,52.2338811,6.8379633,02:37.5,3.1,1864.0,10.4,18.2,1864.0 +548,3.17,52.23390403333333,6.837926200000001,02:37.5,3.1,1864.0,10.4,18.2,1864.0 +549,3.17,52.233926966666665,6.837889100000002,02:37.5,3.1,1864.0,10.4,18.2,1864.0 +550,3.17,52.2339499,6.8378520000000025,02:37.8,3.1,1875.0,10.3,18.3,1875.0 +551,3.17,52.233971133333334,6.837818300000002,02:37.8,3.1,1875.0,10.3,18.3,1875.0 +552,3.17,52.23399236666666,6.837784600000001,02:37.8,3.1,1875.0,10.3,18.3,1875.0 +553,3.16,52.2340136,6.8377509000000005,02:38.0,3.1,1885.0,10.2,18.5,1885.0 +554,3.16,52.23403486666666,6.8377151000000005,02:38.0,3.1,1885.0,10.2,18.5,1885.0 +555,3.16,52.23405613333333,6.8376793000000005,02:38.0,3.1,1885.0,10.2,18.5,1885.0 +556,3.16,52.2340774,6.8376435,02:38.2,3.1,1895.0,10.1,18.6,1895.0 +557,3.16,52.23409395,6.83761705,02:38.2,3.1,1895.0,10.1,18.6,1895.0 +558,3.16,52.2341105,6.8375906,02:38.2,3.1,1895.0,10.1,18.6,1895.0 +559,3.16,52.23412705,6.83756415,02:38.2,3.1,1895.0,10.1,18.6,1895.0 +560,3.16,52.2341436,6.8375377,02:38.3,3.1,1905.0,10.2,18.5,1905.0 +561,3.16,52.234165833333336,6.837501633333334,02:38.3,3.1,1905.0,10.2,18.5,1905.0 +562,3.16,52.23418806666667,6.837465566666666,02:38.3,3.1,1905.0,10.2,18.5,1905.0 +563,3.17,52.2342103,6.8374295,02:37.9,3.1,1916.0,10.3,18.3,1916.0 +564,3.17,52.23423356666667,6.8373929,02:37.9,3.1,1916.0,10.3,18.3,1916.0 +565,3.17,52.23425683333334,6.8373563,02:37.9,3.1,1916.0,10.3,18.3,1916.0 +566,3.19,52.23428010000001,6.8373197,02:36.6,3.1,1926.0,10.4,18.3,1926.0 +567,3.19,52.234298225,6.8372911,02:36.6,3.1,1926.0,10.4,18.3,1926.0 +568,3.19,52.23431635,6.8372625,02:36.6,3.1,1926.0,10.4,18.3,1926.0 +569,3.19,52.234334475000004,6.8372339,02:36.6,3.1,1926.0,10.4,18.3,1926.0 +570,3.23,52.2343526,6.8372053,02:34.7,3.2,1938.0,10.6,18.2,1938.0 +571,3.23,52.234373500000004,6.8371708,02:34.7,3.2,1938.0,10.6,18.2,1938.0 +572,3.23,52.2343944,6.837136299999999,02:34.7,3.2,1938.0,10.6,18.2,1938.0 +573,3.27,52.2344153,6.837101799999999,02:33.0,3.2,1948.0,10.7,18.2,1948.0 +574,3.27,52.2344388,6.8370638999999995,02:33.0,3.2,1948.0,10.7,18.2,1948.0 +575,3.27,52.234462300000004,6.837025999999999,02:33.0,3.2,1948.0,10.7,18.2,1948.0 +576,3.29,52.2344858,6.836988099999999,02:32.0,3.2,1959.0,10.7,18.4,1959.0 +577,3.29,52.23450906666667,6.836950066666667,02:32.0,3.2,1959.0,10.7,18.4,1959.0 +578,3.29,52.23453233333334,6.836912033333333,02:32.0,3.2,1959.0,10.7,18.4,1959.0 +579,3.29,52.23455560000001,6.836874000000001,02:32.1,3.2,1970.0,10.7,18.3,1970.0 +580,3.29,52.2345776,6.8368381000000005,02:32.1,3.2,1970.0,10.7,18.3,1970.0 +581,3.29,52.2345996,6.8368022,02:32.1,3.2,1970.0,10.7,18.3,1970.0 +582,3.27,52.2346216,6.8367663,02:32.7,3.2,1980.0,10.7,18.2,1980.0 +583,3.27,52.234638375,6.836739249999999,02:32.7,3.2,1980.0,10.7,18.2,1980.0 +584,3.27,52.23465515,6.836712199999999,02:32.7,3.2,1980.0,10.7,18.2,1980.0 +585,3.27,52.234671925,6.836685149999998,02:32.7,3.2,1980.0,10.7,18.2,1980.0 +586,3.25,52.23468870000001,6.8366580999999975,02:33.9,3.2,1990.0,10.7,18.1,1990.0 +587,3.25,52.23471180000001,6.836619999999998,02:33.9,3.2,1990.0,10.7,18.1,1990.0 +588,3.25,52.2347349,6.836581899999998,02:33.9,3.2,1990.0,10.7,18.1,1990.0 +589,3.22,52.234758,6.8365437999999985,02:35.3,3.2,2001.0,10.7,18.0,2001.0 +590,3.22,52.2347805,6.8365090666666655,02:35.3,3.2,2001.0,10.7,18.0,2001.0 +591,3.22,52.234803,6.8364743333333315,02:35.3,3.2,2001.0,10.7,18.0,2001.0 +592,3.21,52.2348255,6.8364395999999985,02:35.9,3.2,2012.0,10.6,18.1,2012.0 +593,3.21,52.2348469,6.836406566666666,02:35.9,3.2,2012.0,10.6,18.1,2012.0 +594,3.21,52.234868299999995,6.836373533333333,02:35.9,3.2,2012.0,10.6,18.1,2012.0 +595,3.25,52.2348897,6.8363405,02:33.8,3.2,2022.0,9.7,19.9,2022.0 +596,3.25,52.23491083333333,6.8363078,02:33.8,3.2,2022.0,9.7,19.9,2022.0 +597,3.25,52.234931966666664,6.8362751,02:33.8,3.2,2022.0,9.7,19.9,2022.0 +598,3.37,52.2349531,6.8362424,02:28.2,3.3,2031.0,8.8,22.7,2031.0 +599,3.37,52.2349811,6.836199049999999,02:28.2,3.3,2031.0,8.8,22.7,2031.0 +600,3.59,52.2350091,6.8361557,02:19.4,3.5,2040.0,8.1,26.3,2040.0 +601,3.59,52.23503585,6.8361132,02:19.4,3.5,2040.0,8.1,26.3,2040.0 +602,3.84,52.2350626,6.8360707,02:10.0,3.8,2048.0,7.9,29.1,2048.0 +603,3.84,52.2350905,6.83602625,02:10.0,3.8,2048.0,7.9,29.1,2048.0 +604,4.07,52.2351184,6.8359818,02:02.8,4.0,2057.0,8.0,30.4,2057.0 +605,4.07,52.235146099999994,6.835937900000001,02:02.8,4.0,2057.0,8.0,30.4,2057.0 +606,4.22,52.2351738,6.8358940000000015,01:58.4,4.2,2065.0,8.4,30.1,2065.0 +607,4.22,52.2352022,6.835850850000001,01:58.4,4.2,2065.0,8.4,30.1,2065.0 +608,4.3,52.2352306,6.8358077,01:56.2,4.3,2074.0,8.6,29.7,2074.0 +609,4.3,52.23525885,6.835762800000001,01:56.2,4.3,2074.0,8.6,29.7,2074.0 +610,4.3,52.2352871,6.8357179000000015,01:55.8,4.3,2083.0,8.8,29.2,2083.0 +611,4.3,52.23531535,6.83567425,01:55.8,4.3,2083.0,8.8,29.2,2083.0 +612,4.3,52.2353436,6.8356306,01:56.1,4.3,2092.0,8.7,29.6,2092.0 +613,4.3,52.23537085000001,6.835589400000002,01:56.1,4.3,2092.0,8.7,29.6,2092.0 +614,4.29,52.23539810000001,6.8355482000000025,01:56.6,4.2,2100.0,8.6,29.8,2100.0 +615,4.29,52.2354253,6.835506900000001,01:56.6,4.2,2100.0,8.6,29.8,2100.0 +616,4.26,52.2354525,6.8354656,01:57.3,4.2,2108.0,8.4,30.3,2108.0 +617,4.26,52.23548075,6.83542105,01:57.3,4.2,2108.0,8.4,30.3,2108.0 +618,4.25,52.235509,6.8353765,01:57.5,4.2,2117.0,8.3,30.4,2117.0 +619,4.25,52.23553735,6.83533205,01:57.5,4.2,2117.0,8.3,30.4,2117.0 +620,4.26,52.2355657,6.835287599999999,01:57.0,4.2,2126.0,8.4,30.3,2126.0 +621,4.26,52.23559435,6.83524315,01:57.0,4.2,2126.0,8.4,30.3,2126.0 +622,4.3,52.235623,6.835198700000001,01:56.3,4.3,2134.0,8.5,30.1,2134.0 +623,4.3,52.235648749999996,6.835158550000002,01:56.3,4.3,2134.0,8.5,30.1,2134.0 +624,4.32,52.2356745,6.8351184000000025,01:55.6,4.3,2142.0,8.6,30.1,2142.0 +625,4.32,52.23570275,6.835072200000001,01:55.6,4.3,2142.0,8.6,30.1,2142.0 +626,4.34,52.235731,6.835025999999999,01:55.2,4.3,2151.0,8.6,29.9,2151.0 +627,4.34,52.23575875,6.8349812,01:55.2,4.3,2151.0,8.6,29.9,2151.0 +628,4.33,52.2357865,6.8349364,01:55.3,4.3,2160.0,8.5,30.5,2160.0 +629,4.33,52.23581385,6.834892300000001,01:55.3,4.3,2160.0,8.5,30.5,2160.0 +630,4.33,52.2358412,6.8348482000000015,01:55.3,4.3,2168.0,8.5,30.4,2168.0 +631,4.33,52.2358695,6.834802400000001,01:55.3,4.3,2168.0,8.5,30.4,2168.0 +632,4.34,52.2358978,6.8347566,01:55.2,4.3,2177.0,8.5,30.3,2177.0 +633,4.34,52.23592549999999,6.8347109,01:55.2,4.3,2177.0,8.5,30.3,2177.0 +634,4.34,52.2359532,6.8346652,01:55.2,4.3,2186.0,8.6,30.1,2186.0 +635,4.34,52.2359802,6.8346216,01:55.2,4.3,2186.0,8.6,30.1,2186.0 +636,4.33,52.2360072,6.834578,01:55.3,4.3,2195.0,8.7,29.7,2195.0 +637,4.33,52.23603535,6.8345328,01:55.3,4.3,2195.0,8.7,29.7,2195.0 +638,4.34,52.2360635,6.834487599999999,01:55.3,4.3,2203.0,8.6,30.1,2203.0 +639,4.34,52.2360903,6.8344433,01:55.3,4.3,2203.0,8.6,30.1,2203.0 +640,4.3,52.2361171,6.834399,01:55.9,4.3,2212.0,8.7,29.6,2212.0 +641,4.3,52.23614335,6.83435635,01:55.9,4.3,2212.0,8.7,29.6,2212.0 +642,4.22,52.2361696,6.8343137,01:58.4,4.2,2220.0,9.3,27.2,2220.0 +643,4.22,52.236197,6.8342694,01:58.4,4.2,2220.0,9.3,27.2,2220.0 +644,4.22,52.2362244,6.8342251,01:58.4,4.2,2220.0,9.3,27.2,2220.0 +645,4.01,52.2362518,6.8341808,02:04.3,4.0,2233.0,10.0,24.0,2233.0 +646,4.01,52.23626806666667,6.834155466666667,02:04.3,4.0,2233.0,10.0,24.0,2233.0 +647,4.01,52.23628433333333,6.834130133333334,02:04.3,4.0,2233.0,10.0,24.0,2233.0 +648,3.72,52.2363006,6.8341048,02:14.5,3.7,2240.0,10.8,20.6,2240.0 +649,3.72,52.23632176666667,6.8340714,02:14.5,3.7,2240.0,10.8,20.6,2240.0 +650,3.72,52.23634293333333,6.8340380000000005,02:14.5,3.7,2240.0,10.8,20.6,2240.0 +651,3.38,52.2363641,6.8340046,02:27.8,3.3,2250.0,11.1,18.2,2250.0 +652,3.38,52.23638596666667,6.8339691333333334,02:27.8,3.3,2250.0,11.1,18.2,2250.0 +653,3.38,52.23640783333334,6.833933666666667,02:27.8,3.3,2250.0,11.1,18.2,2250.0 +654,3.14,52.2364297,6.8338982,02:39.3,3.1,2261.0,10.5,17.8,2261.0 +655,3.14,52.23644605,6.833871225,02:39.3,3.1,2261.0,10.5,17.8,2261.0 +656,3.14,52.2364624,6.83384425,02:39.3,3.1,2261.0,10.5,17.8,2261.0 +657,3.14,52.23647875,6.833817275,02:39.3,3.1,2261.0,10.5,17.8,2261.0 +658,3.02,52.2364951,6.8337903,02:45.4,3.0,2271.0,10.2,17.7,2271.0 +659,3.02,52.236517766666665,6.8337539000000005,02:45.4,3.0,2271.0,10.2,17.7,2271.0 +660,3.02,52.23654043333333,6.8337175,02:45.4,3.0,2271.0,10.2,17.7,2271.0 +661,3.01,52.2365631,6.8336811,02:46.2,3.0,2282.0,10.3,17.5,2282.0 +662,3.01,52.236585399999996,6.833644733333333,02:46.2,3.0,2282.0,10.3,17.5,2282.0 +663,3.01,52.2366077,6.833608366666667,02:46.2,3.0,2282.0,10.3,17.5,2282.0 +664,3.04,52.23663,6.833572,02:44.4,3.0,2292.0,10.3,17.6,2292.0 +665,3.04,52.236646975,6.83354485,02:44.4,3.0,2292.0,10.3,17.6,2292.0 +666,3.04,52.23666395,6.8335177,02:44.4,3.0,2292.0,10.3,17.6,2292.0 +667,3.04,52.236680925,6.8334905500000005,02:44.4,3.0,2292.0,10.3,17.6,2292.0 +668,3.07,52.2366979,6.8334634,02:42.7,3.0,2303.0,10.3,17.8,2303.0 +669,3.07,52.2367196,6.833429233333334,02:42.7,3.0,2303.0,10.3,17.8,2303.0 +670,3.07,52.236741300000006,6.833395066666666,02:42.7,3.0,2303.0,10.3,17.8,2303.0 +671,3.09,52.236763,6.8333609,02:41.5,3.0,2313.0,10.3,17.9,2313.0 +672,3.09,52.23678085,6.83333285,02:41.5,3.0,2313.0,10.3,17.9,2313.0 +673,3.09,52.2367987,6.8333048000000005,02:41.5,3.0,2313.0,10.3,17.9,2313.0 +674,3.09,52.23681655,6.8332767500000005,02:41.5,3.0,2313.0,10.3,17.9,2313.0 +675,3.12,52.2368344,6.8332487,02:40.0,3.1,2324.0,10.4,18.0,2324.0 +676,3.12,52.23685773333333,6.833212066666667,02:40.0,3.1,2324.0,10.4,18.0,2324.0 +677,3.12,52.23688106666667,6.833175433333333,02:40.0,3.1,2324.0,10.4,18.0,2324.0 +678,3.16,52.2369044,6.8331388,02:38.3,3.1,2335.0,10.7,17.7,2335.0 +679,3.16,52.23692663333333,6.833102866666667,02:38.3,3.1,2335.0,10.7,17.7,2335.0 +680,3.16,52.236948866666665,6.833066933333334,02:38.3,3.1,2335.0,10.7,17.7,2335.0 +681,3.18,52.2369711,6.833031,02:37.4,3.1,2345.0,10.9,17.3,2345.0 +682,3.18,52.236989449999996,6.8330017,02:37.4,3.1,2345.0,10.9,17.3,2345.0 +683,3.18,52.2370078,6.832972399999999,02:37.4,3.1,2345.0,10.9,17.3,2345.0 +684,3.18,52.237026150000005,6.8329431,02:37.4,3.1,2345.0,10.9,17.3,2345.0 +685,3.17,52.2370445,6.832913799999999,02:37.8,3.1,2356.0,11.0,17.2,2356.0 +686,3.17,52.237067200000006,6.832878566666666,02:37.8,3.1,2356.0,11.0,17.2,2356.0 +687,3.17,52.2370899,6.832843333333332,02:37.8,3.1,2356.0,11.0,17.2,2356.0 +688,3.14,52.2371126,6.8328080999999985,02:39.0,3.1,2367.0,10.9,17.2,2367.0 +689,3.14,52.237129875,6.832781474999999,02:39.0,3.1,2367.0,10.9,17.2,2367.0 +690,3.14,52.23714715,6.832754849999999,02:39.0,3.1,2367.0,10.9,17.2,2367.0 +691,3.14,52.237164425,6.832728224999999,02:39.0,3.1,2367.0,10.9,17.2,2367.0 +692,3.12,52.2371817,6.8327016,02:40.2,3.1,2377.0,10.8,17.2,2377.0 +693,3.12,52.237205233333334,6.8326652333333335,02:40.2,3.1,2377.0,10.8,17.2,2377.0 +694,3.12,52.23722876666667,6.832628866666667,02:40.2,3.1,2377.0,10.8,17.2,2377.0 +695,3.11,52.2372523,6.8325925000000005,02:40.5,3.1,2388.0,10.9,17.1,2388.0 +696,3.11,52.2372697,6.832564775000001,02:40.5,3.1,2388.0,10.9,17.1,2388.0 +697,3.11,52.2372871,6.832537050000001,02:40.5,3.1,2388.0,10.9,17.1,2388.0 +698,3.11,52.2373045,6.832509325,02:40.5,3.1,2388.0,10.9,17.1,2388.0 +699,3.12,52.2373219,6.8324816,02:40.0,3.1,2399.0,10.9,17.1,2399.0 +700,3.12,52.23734593333333,6.832442933333334,02:40.0,3.1,2399.0,10.9,17.1,2399.0 +701,3.12,52.23736996666667,6.832404266666667,02:40.0,3.1,2399.0,10.9,17.1,2399.0 +702,3.15,52.237394,6.8323656,02:38.9,3.1,2410.0,10.8,17.4,2410.0 +703,3.15,52.23741763333334,6.8323305,02:38.9,3.1,2410.0,10.8,17.4,2410.0 +704,3.15,52.237441266666664,6.832295400000001,02:38.9,3.1,2410.0,10.8,17.4,2410.0 +705,3.16,52.2374649,6.8322603000000015,02:38.2,3.1,2421.0,10.7,17.5,2421.0 +706,3.16,52.23748125,6.832234500000001,02:38.2,3.1,2421.0,10.7,17.5,2421.0 +707,3.16,52.2374976,6.832208700000001,02:38.2,3.1,2421.0,10.7,17.5,2421.0 +708,3.16,52.23751395,6.8321829,02:38.2,3.1,2421.0,10.7,17.5,2421.0 +709,3.16,52.2375303,6.8321571,02:38.4,3.1,2431.0,10.5,17.8,2431.0 +710,3.16,52.237553500000004,6.8321203,02:38.4,3.1,2431.0,10.5,17.8,2431.0 +711,3.16,52.2375767,6.8320835,02:38.4,3.1,2431.0,10.5,17.8,2431.0 +712,3.14,52.2375999,6.8320467,02:39.0,3.1,2442.0,10.6,17.6,2442.0 +713,3.14,52.23762213333333,6.832012766666667,02:39.0,3.1,2442.0,10.6,17.6,2442.0 +714,3.14,52.237644366666665,6.831978833333334,02:39.0,3.1,2442.0,10.6,17.6,2442.0 +715,3.17,52.2376666,6.831944900000001,02:37.7,3.1,2452.0,10.1,18.7,2452.0 +716,3.17,52.23768903333333,6.8319098333333335,02:37.7,3.1,2452.0,10.1,18.7,2452.0 +717,3.17,52.23771146666667,6.831874766666667,02:37.7,3.1,2452.0,10.1,18.7,2452.0 +718,3.29,52.2377339,6.8318397,02:32.1,3.2,2463.0,9.1,21.6,2463.0 +719,3.29,52.237752300000004,6.831811166666666,02:32.1,3.2,2463.0,9.1,21.6,2463.0 +720,3.29,52.2377707,6.831782633333334,02:32.1,3.2,2463.0,9.1,21.6,2463.0 +721,3.52,52.2377891,6.8317541,02:22.2,3.5,2471.0,8.3,25.1,2471.0 +722,3.52,52.23781445,6.8317146,02:22.2,3.5,2471.0,8.3,25.1,2471.0 +723,3.81,52.2378398,6.831675099999999,02:11.0,3.8,2479.0,8.1,28.2,2479.0 +724,3.81,52.23786885,6.8316283,02:11.0,3.8,2479.0,8.1,28.2,2479.0 +725,4.09,52.2378979,6.8315815,02:02.3,4.0,2488.0,8.2,29.8,2488.0 +726,4.09,52.237925450000006,6.831537200000001,02:02.3,4.0,2488.0,8.2,29.8,2488.0 +727,4.25,52.23795300000001,6.8314929000000015,01:57.5,4.2,2496.0,8.5,29.9,2496.0 +728,4.25,52.23797805000001,6.83145325,01:57.5,4.2,2496.0,8.5,29.9,2496.0 +729,4.3,52.2380031,6.8314135999999985,01:56.0,4.3,2504.0,8.6,29.8,2504.0 +730,4.3,52.238031899999996,6.831366449999999,01:56.0,4.3,2504.0,8.6,29.8,2504.0 +731,4.3,52.2380607,6.8313193,01:56.0,4.3,2513.0,8.5,30.2,2513.0 +732,4.3,52.238088149999996,6.8312731499999995,01:56.0,4.3,2513.0,8.5,30.2,2513.0 +733,4.29,52.2381156,6.831227,01:56.4,4.2,2522.0,8.4,30.5,2522.0 +734,4.29,52.23814005,6.83118665,01:56.4,4.2,2522.0,8.4,30.5,2522.0 +735,4.29,52.2381645,6.8311463,01:56.6,4.2,2530.0,8.3,30.8,2530.0 +736,4.3,52.2382197,6.831053,01:56.2,4.3,2539.0,8.4,30.4,2539.0 +737,4.3,52.23824665000001,6.831007850000001,01:56.2,4.3,2539.0,8.4,30.4,2539.0 +738,4.3,52.23827360000001,6.8309627000000015,01:55.9,4.3,2547.0,8.4,30.6,2547.0 +739,4.3,52.23829296666667,6.830931866666668,01:55.9,4.3,2547.0,8.4,30.6,2547.0 +740,4.3,52.23831233333334,6.830901033333335,01:55.9,4.3,2547.0,8.4,30.6,2547.0 +741,4.32,52.2383317,6.8308702000000014,01:55.6,4.3,2556.0,8.5,30.3,2556.0 +742,4.34,52.2383845,6.8307796000000005,01:54.8,4.3,2565.0,8.6,30.1,2565.0 +743,4.34,52.2384125,6.8307339,01:54.8,4.3,2565.0,8.6,30.1,2565.0 +744,4.37,52.2384405,6.8306882,01:54.3,4.3,2574.0,8.7,30.0,2574.0 +745,4.37,52.23845923333334,6.830658166666667,01:54.3,4.3,2574.0,8.7,30.0,2574.0 +746,4.37,52.238477966666665,6.830628133333333,01:54.3,4.3,2574.0,8.7,30.0,2574.0 +747,4.38,52.2384967,6.8305981,01:54.1,4.3,2582.0,8.7,30.1,2582.0 +748,4.38,52.2385517,6.830508,01:53.9,4.3,2591.0,8.7,30.1,2591.0 +749,4.38,52.2385786,6.83046445,01:53.9,4.3,2591.0,8.7,30.1,2591.0 +750,4.38,52.2386055,6.8304209,01:54.2,4.3,2600.0,8.6,30.2,2600.0 +751,4.38,52.23863010000001,6.830379150000001,01:54.2,4.3,2600.0,8.6,30.2,2600.0 +752,4.34,52.23865470000001,6.830337400000001,01:54.8,4.3,2607.0,8.6,30.1,2607.0 +753,4.34,52.238682000000004,6.83029135,01:54.8,4.3,2607.0,8.6,30.1,2607.0 +754,4.33,52.2387093,6.8302453,01:55.6,4.3,2616.0,8.6,29.9,2616.0 +755,4.33,52.238735399999996,6.830201300000001,01:55.6,4.3,2616.0,8.6,29.9,2616.0 +756,4.29,52.2387615,6.8301573000000015,01:56.5,4.2,2625.0,8.6,29.7,2625.0 +757,4.29,52.23878036666667,6.830125500000001,01:56.5,4.2,2625.0,8.6,29.7,2625.0 +758,4.29,52.23879923333334,6.830093700000001,01:56.5,4.2,2625.0,8.6,29.7,2625.0 +759,4.23,52.2388181,6.8300619000000005,01:58.1,4.2,2634.0,8.6,29.5,2634.0 +760,4.23,52.2388679,6.8299739,01:58.3,4.2,2642.0,8.5,29.5,2642.0 +761,4.23,52.23889535,6.829928399999999,01:58.3,4.2,2642.0,8.5,29.5,2642.0 +762,4.24,52.2389228,6.8298828999999985,01:57.9,4.2,2650.0,8.6,29.4,2650.0 +763,4.24,52.238941374999996,6.829852283333332,01:57.9,4.2,2650.0,8.6,29.4,2650.0 +764,4.24,52.23895995,6.829821666666666,01:57.9,4.2,2650.0,8.6,29.4,2650.0 +765,4.24,52.238978525,6.829791049999999,01:57.9,4.2,2650.0,8.6,29.4,2650.0 +766,4.24,52.2389971,6.829760433333332,01:57.9,4.2,2650.0,8.6,29.4,2650.0 +767,4.24,52.239015675000005,6.829729816666666,01:57.9,4.2,2650.0,8.6,29.4,2650.0 +768,4.24,52.23903425,6.829699199999999,01:57.9,4.2,2650.0,8.6,29.4,2650.0 +769,4.24,52.239052825,6.829668583333333,01:57.9,4.2,2650.0,8.6,29.4,2650.0 +770,4.24,52.23907140000001,6.829637966666667,01:57.9,4.2,2650.0,8.6,29.4,2650.0 +771,4.24,52.239089975000006,6.82960735,01:57.9,4.2,2650.0,8.6,29.4,2650.0 +772,4.24,52.239108550000005,6.829576733333333,01:57.9,4.2,2650.0,8.6,29.4,2650.0 +773,4.24,52.23912712500001,6.829546116666667,01:57.9,4.2,2650.0,8.6,29.4,2650.0 +774,3.23,52.23914570000001,6.8295155,02:34.9,3.2,2686.0,5.9,32.4,2686.0 +775,2.88,52.2391641,6.8294849000000015,02:53.3,2.8,2689.0,5.9,28.9,2689.0 +776,2.88,52.239179050000004,6.829459950000001,02:53.3,2.8,2689.0,5.9,28.9,2689.0 +777,2.88,52.239194,6.829435,02:53.3,2.8,2689.0,5.9,28.9,2689.0 +778,2.88,52.23920895,6.82941005,02:53.3,2.8,2689.0,5.9,28.9,2689.0 +779,2.72,52.2392239,6.8293851,03:03.7,2.7,2698.0,6.8,23.6,2698.0 +780,2.72,52.23923965,6.829358924999999,03:03.7,2.7,2698.0,6.8,23.6,2698.0 +781,2.72,52.239255400000005,6.82933275,03:03.7,2.7,2698.0,6.8,23.6,2698.0 +782,2.72,52.23927115,6.829306575,03:03.7,2.7,2698.0,6.8,23.6,2698.0 +783,2.7,52.2392869,6.8292804,03:05.0,2.7,2708.0,8.9,18.1,2708.0 +784,2.7,52.23930786666667,6.8292467666666665,03:05.0,2.7,2708.0,8.9,18.1,2708.0 +785,2.7,52.23932883333333,6.829213133333334,03:05.0,2.7,2708.0,8.9,18.1,2708.0 +786,2.77,52.2393498,6.8291795,03:00.6,2.7,2718.0,11.0,15.0,2718.0 +787,2.77,52.239371033333335,6.8291445,03:00.6,2.7,2718.0,11.0,15.0,2718.0 +788,2.77,52.23939226666666,6.8291095,03:00.6,2.7,2718.0,11.0,15.0,2718.0 +789,2.84,52.2394135,6.8290745,02:56.0,2.8,2728.0,9.9,17.1,2728.0 +790,2.84,52.23942975,6.82904755,02:56.0,2.8,2728.0,9.9,17.1,2728.0 +791,2.84,52.239446,6.8290206,02:56.0,2.8,2728.0,9.9,17.1,2728.0 +792,2.84,52.239462249999995,6.82899365,02:56.0,2.8,2728.0,9.9,17.1,2728.0 +793,2.88,52.2394785,6.8289667000000005,02:53.6,2.8,2738.0,9.9,17.3,2738.0 +794,2.88,52.23950083333333,6.8289306000000005,02:53.6,2.8,2738.0,9.9,17.3,2738.0 +795,2.88,52.239523166666665,6.8288945000000005,02:53.6,2.8,2738.0,9.9,17.3,2738.0 +796,2.94,52.2395455,6.8288584000000006,02:50.3,2.9,2749.0,10.1,17.4,2749.0 +797,2.94,52.239561824999996,6.828832225,02:50.3,2.9,2749.0,10.1,17.4,2749.0 +798,2.94,52.23957815,6.828806050000001,02:50.3,2.9,2749.0,10.1,17.4,2749.0 +799,2.94,52.239594475000004,6.828779875,02:50.3,2.9,2749.0,10.1,17.4,2749.0 +800,2.99,52.2396108,6.8287537,02:47.1,2.9,2759.0,10.3,17.3,2759.0 +801,2.99,52.239633500000004,6.828717766666667,02:47.1,2.9,2759.0,10.3,17.3,2759.0 +802,2.99,52.2396562,6.828681833333334,02:47.1,2.9,2759.0,10.3,17.3,2759.0 +803,3.04,52.2396789,6.8286459000000015,02:44.6,3.0,2770.0,10.3,17.5,2770.0 +804,3.04,52.239696,6.8286192250000015,02:44.6,3.0,2770.0,10.3,17.5,2770.0 +805,3.04,52.2397131,6.8285925500000015,02:44.6,3.0,2770.0,10.3,17.5,2770.0 +806,3.04,52.2397302,6.8285658750000024,02:44.6,3.0,2770.0,10.3,17.5,2770.0 +807,3.07,52.2397473,6.8285392000000025,02:42.9,3.0,2780.0,10.3,17.7,2780.0 +808,3.07,52.239769933333335,6.828503200000003,02:42.9,3.0,2780.0,10.3,17.7,2780.0 +809,3.07,52.239792566666665,6.828467200000002,02:42.9,3.0,2780.0,10.3,17.7,2780.0 +810,3.09,52.2398152,6.8284312000000025,02:41.7,3.0,2791.0,10.4,17.7,2791.0 +811,3.09,52.23983763333334,6.828396233333335,02:41.7,3.0,2791.0,10.4,17.7,2791.0 +812,3.09,52.239860066666665,6.828361266666667,02:41.7,3.0,2791.0,10.4,17.7,2791.0 +813,3.11,52.2398825,6.828326299999999,02:40.7,3.1,2801.0,10.4,17.8,2801.0 +814,3.11,52.2398994,6.828299649999999,02:40.7,3.1,2801.0,10.4,17.8,2801.0 +815,3.11,52.239916300000004,6.828272999999999,02:40.7,3.1,2801.0,10.4,17.8,2801.0 +816,3.11,52.2399332,6.82824635,02:40.7,3.1,2801.0,10.4,17.8,2801.0 +817,3.13,52.2399501,6.8282197,02:39.9,3.1,2811.0,10.4,17.8,2811.0 +818,3.13,52.239972800000004,6.828184433333334,02:39.9,3.1,2811.0,10.4,17.8,2811.0 +819,3.13,52.2399955,6.828149166666667,02:39.9,3.1,2811.0,10.4,17.8,2811.0 +820,3.14,52.2400182,6.828113900000001,02:39.4,3.1,2822.0,10.5,17.8,2822.0 +821,3.14,52.24004083333334,6.8280786,02:39.4,3.1,2822.0,10.5,17.8,2822.0 +822,3.14,52.24006346666667,6.828043300000001,02:39.4,3.1,2822.0,10.5,17.8,2822.0 +823,3.14,52.240086100000006,6.8280080000000005,02:39.2,3.1,2832.0,10.5,17.8,2832.0 +824,3.14,52.240103725000004,6.82798065,02:39.2,3.1,2832.0,10.5,17.8,2832.0 +825,3.14,52.24012135,6.827953299999999,02:39.2,3.1,2832.0,10.5,17.8,2832.0 +826,3.14,52.240138975,6.827925949999998,02:39.2,3.1,2832.0,10.5,17.8,2832.0 +827,3.12,52.2401566,6.8278985999999975,02:40.1,3.1,2843.0,10.3,18.1,2843.0 +828,3.12,52.24017776666667,6.8278653999999985,02:40.1,3.1,2843.0,10.3,18.1,2843.0 +829,3.12,52.24019893333333,6.8278322000000005,02:40.1,3.1,2843.0,10.3,18.1,2843.0 +830,3.09,52.2402201,6.8277990000000015,02:42.0,3.0,2853.0,10.3,17.9,2853.0 +831,3.09,52.24024133333334,6.827766266666668,02:42.0,3.0,2853.0,10.3,17.9,2853.0 +832,3.09,52.240262566666665,6.827733533333335,02:42.0,3.0,2853.0,10.3,17.9,2853.0 +833,3.05,52.2402838,6.8277008000000015,02:43.8,3.0,2863.0,10.4,17.5,2863.0 +834,3.05,52.2403011,6.827672475000001,02:43.8,3.0,2863.0,10.4,17.5,2863.0 +835,3.05,52.24031840000001,6.827644150000001,02:43.8,3.0,2863.0,10.4,17.5,2863.0 +836,3.05,52.2403357,6.8276158250000005,02:43.8,3.0,2863.0,10.4,17.5,2863.0 +837,3.07,52.240353000000006,6.8275875,02:42.8,3.0,2874.0,9.7,18.8,2874.0 +838,3.07,52.2403732,6.8275535666666665,02:42.8,3.0,2874.0,9.7,18.8,2874.0 +839,3.07,52.2403934,6.827519633333334,02:42.8,3.0,2874.0,9.7,18.8,2874.0 +840,3.19,52.2404136,6.8274857,02:36.9,3.1,2883.0,8.6,22.0,2883.0 +841,3.41,52.24046129999999,6.8274027,02:26.4,3.4,2891.0,7.9,25.8,2891.0 +842,3.41,52.24048625,6.8273581,02:26.4,3.4,2891.0,7.9,25.8,2891.0 +843,3.72,52.2405112,6.8273135,02:14.4,3.7,2899.0,7.5,29.5,2899.0 +844,3.72,52.2405282,6.827282366666666,02:14.4,3.7,2899.0,7.5,29.5,2899.0 +845,3.72,52.24054520000001,6.8272512333333335,02:14.4,3.7,2899.0,7.5,29.5,2899.0 +846,4.01,52.24056220000001,6.8272201,02:04.3,4.0,2908.0,7.6,31.4,2908.0 +847,4.25,52.2406112,6.8271294000000005,01:57.6,4.2,2916.0,8.1,31.2,2916.0 +848,4.25,52.24063725,6.82708095,01:57.6,4.2,2916.0,8.1,31.2,2916.0 +849,4.36,52.2406633,6.8270325,01:54.5,4.3,2925.0,8.5,30.8,2925.0 +850,4.36,52.240689200000006,6.8269829,01:54.5,4.3,2925.0,8.5,30.8,2925.0 +851,4.38,52.2407151,6.8269333,01:54.2,4.3,2934.0,8.5,30.6,2934.0 +852,4.38,52.24073975,6.826886200000001,01:54.2,4.3,2934.0,8.5,30.6,2934.0 +853,4.33,52.2407644,6.8268391,01:55.4,4.3,2942.0,8.6,30.1,2942.0 +854,4.33,52.2407901,6.8267896,01:55.4,4.3,2942.0,8.6,30.1,2942.0 +855,4.26,52.2408158,6.8267400999999985,01:57.0,4.2,2951.0,8.5,30.0,2951.0 +856,4.26,52.240840250000005,6.8266908499999985,01:57.0,4.2,2951.0,8.5,30.0,2951.0 +857,4.23,52.2408647,6.8266415999999985,01:58.0,4.2,2960.0,8.4,30.2,2960.0 +858,4.23,52.240885950000006,6.82659855,01:58.0,4.2,2960.0,8.4,30.2,2960.0 +859,4.22,52.2409072,6.8265555,01:58.5,4.2,2967.0,8.2,30.6,2967.0 +860,4.22,52.24093115,6.82650765,01:58.5,4.2,2967.0,8.2,30.6,2967.0 +861,4.21,52.2409551,6.8264597999999985,01:58.7,4.2,2976.0,8.1,30.8,2976.0 +862,4.21,52.240978999999996,6.826411649999999,01:58.7,4.2,2976.0,8.1,30.8,2976.0 +863,4.22,52.2410029,6.8263634999999985,01:58.5,4.2,2984.0,8.1,31.2,2984.0 +864,4.22,52.241027450000004,6.826315299999999,01:58.5,4.2,2984.0,8.1,31.2,2984.0 +865,4.22,52.241052,6.8262671,01:58.3,4.2,2993.0,8.2,30.9,2993.0 +866,4.22,52.2410747,6.8262225999999995,01:58.3,4.2,2993.0,8.2,30.9,2993.0 +867,4.23,52.2410974,6.8261781,01:58.3,4.2,3001.0,8.2,30.6,3001.0 +868,4.23,52.241120800000004,6.826129849999999,01:58.3,4.2,3001.0,8.2,30.6,3001.0 +869,4.23,52.2411442,6.8260815999999975,01:58.1,4.2,3009.0,8.3,30.4,3009.0 +870,4.23,52.24116805,6.826033249999998,01:58.1,4.2,3009.0,8.3,30.4,3009.0 +871,4.22,52.2411919,6.8259849,01:58.3,4.2,3017.0,8.3,30.5,3017.0 +872,4.22,52.24121375,6.825940149999999,01:58.3,4.2,3017.0,8.3,30.5,3017.0 +873,4.22,52.2412356,6.8258953999999985,01:58.5,4.2,3025.0,8.3,30.3,3025.0 +874,4.22,52.24126095,6.825842,01:58.5,4.2,3025.0,8.3,30.3,3025.0 +875,4.22,52.2412863,6.8257886,01:58.4,4.2,3034.0,8.2,30.6,3034.0 +876,4.22,52.2413095,6.825738900000001,01:58.4,4.2,3034.0,8.2,30.6,3034.0 +877,4.23,52.24133270000001,6.825689200000001,01:58.3,4.2,3043.0,8.3,30.4,3043.0 +878,4.23,52.24135195000001,6.825648250000001,01:58.3,4.2,3043.0,8.3,30.4,3043.0 +879,4.26,52.2413712,6.8256073000000015,01:57.3,4.2,3050.0,8.4,30.1,3050.0 +880,4.26,52.2413961,6.825553350000002,01:57.3,4.2,3050.0,8.4,30.1,3050.0 +881,4.33,52.241421,6.825499400000001,01:55.5,4.3,3059.0,8.7,29.7,3059.0 +882,4.33,52.241438572727276,6.8254606727272735,01:55.5,4.3,3059.0,8.7,29.7,3059.0 +883,4.33,52.24145614545455,6.825421945454546,01:55.5,4.3,3059.0,8.7,29.7,3059.0 +884,4.33,52.24147371818182,6.825383218181819,01:55.5,4.3,3059.0,8.7,29.7,3059.0 +885,4.33,52.241491290909096,6.8253444909090915,01:55.5,4.3,3059.0,8.7,29.7,3059.0 +886,4.33,52.24150886363637,6.825305763636364,01:55.5,4.3,3059.0,8.7,29.7,3059.0 +887,4.33,52.241526436363635,6.825267036363637,01:55.5,4.3,3059.0,8.7,29.7,3059.0 +888,4.33,52.24154400909091,6.825228309090909,01:55.5,4.3,3059.0,8.7,29.7,3059.0 +889,4.33,52.24156158181818,6.825189581818182,01:55.5,4.3,3059.0,8.7,29.7,3059.0 +890,4.33,52.241579154545455,6.825150854545455,01:55.5,4.3,3059.0,8.7,29.7,3059.0 +891,4.33,52.24159672727273,6.825112127272727,01:55.5,4.3,3059.0,8.7,29.7,3059.0 +892,3.53,52.2416143,6.8250734,02:21.5,3.5,3095.0,6.3,33.5,3095.0 +893,3.17,52.2416297,6.8250410000000015,02:37.8,3.1,3098.0,6.3,30.1,3098.0 +894,3.17,52.24164395,6.825010450000001,02:37.8,3.1,3098.0,6.3,30.1,3098.0 +895,3.17,52.2416582,6.824979900000001,02:37.8,3.1,3098.0,6.3,30.1,3098.0 +896,3.17,52.24167245,6.824949350000001,02:37.8,3.1,3098.0,6.3,30.1,3098.0 +897,2.98,52.2416867,6.8249188,02:47.6,2.9,3109.0,7.2,24.8,3109.0 +898,2.98,52.24170553333334,6.8248775,02:47.6,2.9,3109.0,7.2,24.8,3109.0 +899,2.98,52.241724366666666,6.8248362,02:47.6,2.9,3109.0,7.2,24.8,3109.0 +900,2.93,52.2417432,6.8247949000000006,02:50.3,2.9,3119.0,9.0,19.4,3119.0 +901,2.93,52.24176093333333,6.824755700000001,02:50.3,2.9,3119.0,9.0,19.4,3119.0 +902,2.93,52.24177866666667,6.8247165,02:50.3,2.9,3119.0,9.0,19.4,3119.0 +903,2.94,52.2417964,6.8246773,02:49.7,2.9,3129.0,12.4,14.2,3129.0 +904,2.94,52.2417964,6.8246773,02:49.7,2.9,3129.0,12.4,14.2,3129.0 +905,2.94,52.2417964,6.8246773,02:49.7,2.9,3129.0,12.4,14.2,3129.0 +906,2.92,52.2417964,6.8246773,02:51.3,2.9,3129.0,11.4,15.2,3129.0 +907,2.92,52.241824433333335,6.824615933333334,02:51.3,2.9,3129.0,11.4,15.2,3129.0 +908,2.92,52.241852466666664,6.8245545666666665,02:51.3,2.9,3129.0,11.4,15.2,3129.0 +909,2.82,52.2418805,6.8244932,02:57.4,2.8,3145.0,11.2,15.0,3145.0 +910,2.82,52.24189195,6.8244677,02:57.4,2.8,3145.0,11.2,15.0,3145.0 +911,2.82,52.2419034,6.8244422,02:57.4,2.8,3145.0,11.2,15.0,3145.0 +912,2.82,52.24191485,6.8244167000000004,02:57.4,2.8,3145.0,11.2,15.0,3145.0 +913,2.72,52.2419263,6.8243912,03:03.5,2.7,3153.0,10.6,15.3,3153.0 +914,2.72,52.241943,6.8243537,03:03.5,2.7,3153.0,10.6,15.3,3153.0 +915,2.72,52.2419597,6.8243162,03:03.5,2.7,3153.0,10.6,15.3,3153.0 +916,2.71,52.2419764,6.8242787,03:04.2,2.7,3163.0,9.9,16.4,3163.0 +917,2.71,52.2419937,6.8242386,03:04.2,2.7,3163.0,9.9,16.4,3163.0 +918,2.71,52.242011,6.8241985,03:04.2,2.7,3163.0,9.9,16.4,3163.0 +919,2.77,52.2420283,6.8241584,03:00.4,2.7,3173.0,9.0,18.4,3173.0 +920,2.77,52.24204125,6.82412895,03:00.4,2.7,3173.0,9.0,18.4,3173.0 +921,2.77,52.2420542,6.8240995,03:00.4,2.7,3173.0,9.0,18.4,3173.0 +922,2.77,52.242067150000004,6.8240700499999996,03:00.4,2.7,3173.0,9.0,18.4,3173.0 +923,2.86,52.2420801,6.8240406,02:54.7,2.8,3183.0,9.6,17.8,3183.0 +924,2.86,52.242097533333336,6.823999933333333,02:54.7,2.8,3183.0,9.6,17.8,3183.0 +925,2.86,52.24211496666667,6.823959266666667,02:54.7,2.8,3183.0,9.6,17.8,3183.0 +926,2.94,52.2421324,6.8239186,02:49.9,2.9,3193.0,9.9,17.8,3193.0 +927,2.94,52.242144700000004,6.823888575,02:49.9,2.9,3193.0,9.9,17.8,3193.0 +928,2.94,52.242157000000006,6.82385855,02:49.9,2.9,3193.0,9.9,17.8,3193.0 +929,2.94,52.2421693,6.823828525,02:49.9,2.9,3193.0,9.9,17.8,3193.0 +930,3.0,52.2421816,6.8237985,02:46.9,3.0,3203.0,10.1,17.7,3203.0 +931,3.0,52.24219910000001,6.823755466666666,02:46.9,3.0,3203.0,10.1,17.7,3203.0 +932,3.0,52.242216600000006,6.823712433333333,02:46.9,3.0,3203.0,10.1,17.7,3203.0 +933,3.03,52.24223410000001,6.8236694,02:45.0,3.0,3213.0,10.4,17.4,3213.0 +934,3.03,52.242251800000005,6.823625,02:45.0,3.0,3213.0,10.4,17.4,3213.0 +935,3.03,52.242269500000006,6.8235806000000006,02:45.0,3.0,3213.0,10.4,17.4,3213.0 +936,3.05,52.2422872,6.8235362,02:43.7,3.0,3224.0,10.4,17.5,3224.0 +937,3.05,52.242300125,6.823504275,02:43.7,3.0,3224.0,10.4,17.5,3224.0 +938,3.05,52.24231305,6.82347235,02:43.7,3.0,3224.0,10.4,17.5,3224.0 +939,3.05,52.242325975,6.823440425,02:43.7,3.0,3224.0,10.4,17.5,3224.0 +940,3.06,52.2423389,6.8234085,02:43.2,3.0,3235.0,10.4,17.6,3235.0 +941,3.06,52.242355233333335,6.8233682,02:43.2,3.0,3235.0,10.4,17.6,3235.0 +942,3.06,52.24237156666666,6.823327899999999,02:43.2,3.0,3235.0,10.4,17.6,3235.0 +943,3.05,52.2423879,6.823287599999999,02:43.7,3.0,3245.0,10.3,17.6,3245.0 +944,3.05,52.24240483333333,6.823244899999999,02:43.7,3.0,3245.0,10.3,17.6,3245.0 +945,3.05,52.24242176666667,6.8232022,02:43.7,3.0,3245.0,10.3,17.6,3245.0 +946,3.03,52.24243870000001,6.8231595,02:45.1,3.0,3255.0,10.2,17.7,3255.0 +947,3.03,52.24245105000001,6.823128475000001,02:45.1,3.0,3255.0,10.2,17.7,3255.0 +948,3.03,52.242463400000005,6.823097450000001,02:45.1,3.0,3255.0,10.2,17.7,3255.0 +949,3.03,52.242475750000004,6.823066425,02:45.1,3.0,3255.0,10.2,17.7,3255.0 +950,2.99,52.2424881,6.823035400000001,02:47.1,2.9,3265.0,10.2,17.5,3265.0 +951,2.99,52.242504833333335,6.822992700000001,02:47.1,2.9,3265.0,10.2,17.5,3265.0 +952,2.99,52.24252156666667,6.822950000000002,02:47.1,2.9,3265.0,10.2,17.5,3265.0 +953,2.98,52.2425383,6.8229073000000025,02:47.9,2.9,3275.0,10.0,17.7,3275.0 +954,2.98,52.2425531,6.822869566666668,02:47.9,2.9,3275.0,10.0,17.7,3275.0 +955,2.98,52.242567900000004,6.822831833333333,02:47.9,2.9,3275.0,10.0,17.7,3275.0 +956,3.03,52.24258270000001,6.8227940999999985,02:45.2,3.0,3285.0,9.1,19.9,3285.0 +957,3.03,52.242597933333336,6.822754366666666,02:45.2,3.0,3285.0,9.1,19.9,3285.0 +958,3.03,52.24261316666667,6.822714633333334,02:45.2,3.0,3285.0,9.1,19.9,3285.0 +959,3.17,52.2426284,6.822674900000001,02:37.6,3.1,3294.0,8.2,23.0,3294.0 +960,3.17,52.24264655,6.822627749999999,02:37.6,3.1,3294.0,8.2,23.0,3294.0 +961,3.42,52.24266470000001,6.8225805999999976,02:26.3,3.4,3302.0,7.6,26.7,3302.0 +962,3.42,52.24268400000001,6.822529699999999,02:26.3,3.4,3302.0,7.6,26.7,3302.0 +963,3.71,52.2427033,6.8224788,02:14.7,3.7,3310.0,7.4,29.7,3310.0 +964,3.71,52.24272305,6.8224256,02:14.7,3.7,3310.0,7.4,29.7,3310.0 +965,3.98,52.2427428,6.8223724,02:05.6,3.9,3318.0,7.7,30.9,3318.0 +966,3.98,52.24276255,6.82231845,02:05.6,3.9,3318.0,7.7,30.9,3318.0 +967,4.16,52.2427823,6.8222645,02:00.1,4.1,3327.0,8.0,31.1,3327.0 +968,4.16,52.2428003,6.82221665,02:00.1,4.1,3327.0,8.0,31.1,3327.0 +969,4.26,52.2428183,6.822168799999999,01:57.4,4.2,3335.0,8.1,31.4,3335.0 +970,4.26,52.2428386,6.822114199999999,01:57.4,4.2,3335.0,8.1,31.4,3335.0 +971,4.29,52.2428589,6.8220595999999984,01:56.4,4.2,3343.0,8.2,31.4,3343.0 +972,4.29,52.2428769,6.822010249999999,01:56.4,4.2,3343.0,8.2,31.4,3343.0 +973,4.3,52.2428949,6.8219609,01:56.0,4.3,3351.0,8.3,31.0,3351.0 +974,4.3,52.24291305,6.821909549999999,01:56.0,4.3,3351.0,8.3,31.0,3351.0 +975,4.32,52.2429312,6.8218581999999985,01:55.7,4.3,3359.0,8.3,30.9,3359.0 +976,4.32,52.24295145,6.821798249999999,01:55.7,4.3,3359.0,8.3,30.9,3359.0 +977,4.33,52.2429717,6.8217383,01:55.3,4.3,3369.0,8.4,30.9,3369.0 +978,4.33,52.2429906,6.821684250000001,01:55.3,4.3,3369.0,8.4,30.9,3369.0 +979,4.33,52.2430095,6.8216302,01:55.4,4.3,3377.0,8.3,31.2,3377.0 +980,4.33,52.2430262,6.8215807999999996,01:55.4,4.3,3377.0,8.3,31.2,3377.0 +981,4.32,52.2430429,6.8215314,01:55.7,4.3,3385.0,8.1,31.9,3385.0 +982,4.3,52.2430767,6.8214323000000014,01:56.0,4.3,3392.0,7.9,32.5,3392.0 +983,4.3,52.2430941,6.821381850000001,01:56.0,4.3,3392.0,7.9,32.5,3392.0 +984,4.3,52.2431115,6.8213314,01:56.2,4.3,3400.0,7.8,32.8,3400.0 +985,4.3,52.243128799999994,6.82127895,01:56.2,4.3,3400.0,7.8,32.8,3400.0 +986,4.32,52.2431461,6.8212265,01:55.8,4.3,3408.0,7.8,32.9,3408.0 +987,4.32,52.2431629,6.8211757,01:55.8,4.3,3408.0,7.8,32.9,3408.0 +988,4.34,52.2431797,6.821124900000001,01:55.2,4.3,3416.0,7.8,33.0,3416.0 +989,4.34,52.2431974,6.821073700000001,01:55.2,4.3,3416.0,7.8,33.0,3416.0 +990,4.36,52.2432151,6.8210225000000015,01:54.7,4.3,3424.0,7.8,33.1,3424.0 +991,4.37,52.2432492,6.8209239,01:54.4,4.3,3432.0,7.9,33.1,3432.0 +992,4.37,52.243266500000004,6.8208739000000005,01:54.4,4.3,3432.0,7.9,33.1,3432.0 +993,4.38,52.2432838,6.8208239,01:54.2,4.3,3440.0,8.0,32.8,3440.0 +994,4.38,52.243300950000005,6.8207729,01:54.2,4.3,3440.0,8.0,32.8,3440.0 +995,4.41,52.2433181,6.8207219,01:53.4,4.4,3448.0,8.0,32.8,3448.0 +996,4.41,52.243336150000005,6.82066885,01:53.4,4.4,3448.0,8.0,32.8,3448.0 +997,4.47,52.2433542,6.8206158,01:51.8,4.4,3456.0,7.9,33.6,3456.0 +998,4.47,52.24337165,6.8205644,01:51.8,4.4,3456.0,7.9,33.6,3456.0 +999,4.5,52.2433891,6.820513,01:51.1,4.5,3464.0,8.4,31.9,3464.0 +1000,4.37,52.2434251,6.8204019,01:54.5,4.3,3473.0,9.1,28.6,3473.0 +1001,4.37,52.24343815,6.8203622,01:54.5,4.3,3473.0,9.1,28.6,3473.0 +1002,4.37,52.2434512,6.8203225,01:54.5,4.3,3473.0,9.1,28.6,3473.0 +1003,4.37,52.24346425,6.8202828,01:54.5,4.3,3473.0,9.1,28.6,3473.0 +1004,4.0,52.2434773,6.8202431,02:05.1,4.0,3485.0,10.0,23.9,3485.0 +1005,4.0,52.243491000000006,6.82019925,02:05.1,4.0,3485.0,10.0,23.9,3485.0 +1006,3.43,52.2435047,6.8201554,02:25.8,3.4,3492.0,10.5,19.4,3492.0 +1007,3.43,52.243512325,6.820129775,02:25.8,3.4,3492.0,10.5,19.4,3492.0 +1008,3.43,52.24351995,6.820104150000001,02:25.8,3.4,3492.0,10.5,19.4,3492.0 +1009,3.43,52.243527575,6.820078525000001,02:25.8,3.4,3492.0,10.5,19.4,3492.0 +1010,2.84,52.2435352,6.820052900000001,02:55.7,2.8,3499.0,10.1,16.8,3499.0 +1011,2.84,52.2435437,6.820026275000001,02:55.7,2.8,3499.0,10.1,16.8,3499.0 +1012,2.84,52.243552199999996,6.8199996500000015,02:55.7,2.8,3499.0,10.1,16.8,3499.0 +1013,2.84,52.2435607,6.819973025000001,02:55.7,2.8,3499.0,10.1,16.8,3499.0 +1014,2.44,52.2435692,6.819946400000001,03:25.0,2.4,3508.0,8.5,17.1,3508.0 +1015,2.44,52.24358,6.819912666666667,03:25.0,2.4,3508.0,8.5,17.1,3508.0 +1016,2.44,52.2435908,6.819878933333334,03:25.0,2.4,3508.0,8.5,17.1,3508.0 +1017,2.29,52.2436016,6.8198452000000005,03:38.7,2.2,3515.0,8.1,16.8,3515.0 +1018,2.29,52.243613466666666,6.819806066666667,03:38.7,2.2,3515.0,8.1,16.8,3515.0 +1019,2.29,52.243625333333334,6.819766933333333,03:38.7,2.2,3515.0,8.1,16.8,3515.0 +1020,2.31,52.2436372,6.819727799999999,03:35.3,2.3,3524.0,8.2,16.9,3524.0 +1021,2.31,52.243646150000004,6.819699824999999,03:35.3,2.3,3524.0,8.2,16.9,3524.0 +1022,2.31,52.2436551,6.819671849999999,03:35.3,2.3,3524.0,8.2,16.9,3524.0 +1023,2.31,52.24366405,6.819643875,03:35.3,2.3,3524.0,8.2,16.9,3524.0 +1024,2.43,52.243673,6.8196159,03:25.9,2.4,3533.0,8.5,17.0,3533.0 +1025,2.43,52.2436861,6.819575799999999,03:25.9,2.4,3533.0,8.5,17.0,3533.0 +1026,2.43,52.2436992,6.819535699999999,03:25.9,2.4,3533.0,8.5,17.0,3533.0 +1027,2.52,52.2437123,6.819495599999999,03:18.1,2.5,3542.0,8.9,16.9,3542.0 +1028,2.52,52.243721775,6.8194652,03:18.1,2.5,3542.0,8.9,16.9,3542.0 +1029,2.52,52.243731249999996,6.819434800000001,03:18.1,2.5,3542.0,8.9,16.9,3542.0 +1030,2.52,52.243740725,6.819404400000002,03:18.1,2.5,3542.0,8.9,16.9,3542.0 +1031,2.59,52.2437502,6.8193740000000025,03:12.7,2.5,3552.0,9.3,16.7,3552.0 +1032,2.59,52.2437601,6.819342700000002,03:12.7,2.5,3552.0,9.3,16.7,3552.0 +1033,2.59,52.24377,6.819311400000002,03:12.7,2.5,3552.0,9.3,16.7,3552.0 +1034,2.59,52.2437799,6.819280100000001,03:12.7,2.5,3552.0,9.3,16.7,3552.0 +1035,2.66,52.2437898,6.8192488,03:07.9,2.6,3561.0,9.3,17.0,3561.0 +1036,2.66,52.243803533333335,6.8192059333333335,03:07.9,2.6,3561.0,9.3,17.0,3561.0 +1037,2.66,52.24381726666667,6.819163066666667,03:07.9,2.6,3561.0,9.3,17.0,3561.0 +1038,2.74,52.243831,6.8191202,03:02.5,2.7,3571.0,9.4,17.3,3571.0 +1039,2.74,52.243843033333334,6.819077766666667,03:02.5,2.7,3571.0,9.4,17.3,3571.0 +1040,2.74,52.24385506666667,6.819035333333334,03:02.5,2.7,3571.0,9.4,17.3,3571.0 +1041,2.81,52.2438671,6.8189929000000005,02:57.8,2.8,3581.0,9.6,17.5,3581.0 +1042,2.81,52.243876650000004,6.818960650000001,02:57.8,2.8,3581.0,9.6,17.5,3581.0 +1043,2.81,52.243886200000006,6.818928400000001,02:57.8,2.8,3581.0,9.6,17.5,3581.0 +1044,2.81,52.24389575,6.8188961500000005,02:57.8,2.8,3581.0,9.6,17.5,3581.0 +1045,2.86,52.2439053,6.818863900000001,02:54.6,2.8,3590.0,9.7,17.6,3590.0 +1046,2.86,52.24391816666667,6.818819033333334,02:54.6,2.8,3590.0,9.7,17.6,3590.0 +1047,2.86,52.24393103333333,6.8187741666666675,02:54.6,2.8,3590.0,9.7,17.6,3590.0 +1048,2.89,52.2439439,6.8187293,02:53.0,2.8,3601.0,9.9,17.4,3601.0 +1049,2.89,52.24395395,6.818694325,02:53.0,2.8,3601.0,9.9,17.4,3601.0 +1050,2.89,52.243964,6.818659350000001,02:53.0,2.8,3601.0,9.9,17.4,3601.0 +1051,2.89,52.24397405,6.818624375000001,02:53.0,2.8,3601.0,9.9,17.4,3601.0 +1052,2.89,52.2439841,6.8185894000000005,02:52.8,2.8,3611.0,10.0,17.2,3611.0 +1053,2.89,52.2439963,6.8185476000000005,02:52.8,2.8,3611.0,10.0,17.2,3611.0 +1054,2.89,52.24400850000001,6.8185058,02:52.8,2.8,3611.0,10.0,17.2,3611.0 +1055,2.89,52.24402070000001,6.818464,02:52.7,2.8,3621.0,9.8,17.6,3621.0 +1056,2.89,52.244029725000004,6.81843125,02:52.7,2.8,3621.0,9.8,17.6,3621.0 +1057,2.89,52.24403875,6.8183985,02:52.7,2.8,3621.0,9.8,17.6,3621.0 +1058,2.89,52.244047775000006,6.81836575,02:52.7,2.8,3621.0,9.8,17.6,3621.0 +1059,2.91,52.2440568,6.818333,02:51.8,2.9,3630.0,9.8,17.8,3630.0 +1060,2.91,52.24406806666667,6.818289366666667,02:51.8,2.9,3630.0,9.8,17.8,3630.0 +1061,2.91,52.24407933333333,6.818245733333333,02:51.8,2.9,3630.0,9.8,17.8,3630.0 +1062,2.94,52.2440906,6.8182021,02:49.8,2.9,3640.0,9.9,17.7,3640.0 +1063,2.94,52.2441022,6.818154866666666,02:49.8,2.9,3640.0,9.9,17.7,3640.0 +1064,2.94,52.2441138,6.818107633333334,02:49.8,2.9,3640.0,9.9,17.7,3640.0 +1065,2.97,52.2441254,6.8180604,02:48.2,2.9,3650.0,9.9,17.8,3650.0 +1066,2.97,52.2441361,6.8180155000000005,02:48.2,2.9,3650.0,9.9,17.8,3650.0 +1067,2.97,52.2441468,6.8179706,02:48.2,2.9,3650.0,9.9,17.8,3650.0 +1068,2.97,52.2441575,6.8179257,02:48.0,2.9,3660.0,9.8,18.0,3660.0 +1069,2.97,52.24416525,6.817892875,02:48.0,2.9,3660.0,9.8,18.0,3660.0 +1070,2.97,52.244173,6.81786005,02:48.0,2.9,3660.0,9.8,18.0,3660.0 +1071,2.97,52.24418075,6.817827225,02:48.0,2.9,3660.0,9.8,18.0,3660.0 +1072,2.97,52.2441885,6.8177944,02:48.6,2.9,3670.0,10.1,17.6,3670.0 +1073,2.97,52.2441996,6.817751733333334,02:48.6,2.9,3670.0,10.1,17.6,3670.0 +1074,2.97,52.2442107,6.817709066666667,02:48.6,2.9,3670.0,10.1,17.6,3670.0 +1075,2.98,52.2442218,6.8176664,02:47.7,2.9,3679.0,9.3,19.0,3679.0 +1076,2.98,52.24423276666666,6.817621166666667,02:47.7,2.9,3679.0,9.3,19.0,3679.0 +1077,2.98,52.244243733333334,6.817575933333333,02:47.7,2.9,3679.0,9.3,19.0,3679.0 +1078,3.07,52.2442547,6.8175307,02:43.0,3.0,3689.0,8.4,21.8,3689.0 +1079,3.07,52.24426745000001,6.817476450000001,02:43.0,3.0,3689.0,8.4,21.8,3689.0 +1080,3.25,52.24428020000001,6.817422200000001,02:33.6,3.2,3697.0,7.6,25.6,3697.0 +1081,3.25,52.244292400000006,6.817370350000001,02:33.6,3.2,3697.0,7.6,25.6,3697.0 +1082,3.51,52.24430460000001,6.8173185,02:22.5,3.5,3705.0,7.2,28.8,3705.0 +1083,3.51,52.2443174,6.817262599999999,02:22.5,3.5,3705.0,7.2,28.8,3705.0 +1084,3.75,52.2443302,6.8172067,02:13.2,3.7,3713.0,7.3,30.7,3713.0 +1085,3.75,52.244342849999995,6.8171507,02:13.2,3.7,3713.0,7.3,30.7,3713.0 +1086,3.94,52.2443555,6.8170947,02:06.9,3.9,3721.0,7.8,30.0,3721.0 +1087,3.94,52.244367749999995,6.817037750000001,02:06.9,3.9,3721.0,7.8,30.0,3721.0 +1088,4.04,52.24438,6.8169808000000005,02:03.6,4.0,3729.0,8.1,29.6,3729.0 +1089,4.04,52.2443919,6.81692385,02:03.6,4.0,3729.0,8.1,29.6,3729.0 +1090,4.07,52.24440379999999,6.816866900000001,02:02.8,4.0,3737.0,8.2,29.6,3737.0 +1091,4.07,52.24441545,6.8168094,02:02.8,4.0,3737.0,8.2,29.6,3737.0 +1092,4.07,52.2444271,6.8167519,02:02.8,4.0,3746.0,8.1,29.9,3746.0 +1093,4.07,52.2444382,6.816693300000001,02:02.8,4.0,3746.0,8.1,29.9,3746.0 +1094,4.07,52.24444929999999,6.8166347000000025,02:02.9,4.0,3754.0,8.1,29.9,3754.0 +1095,4.07,52.24446035,6.816577250000002,02:02.9,4.0,3754.0,8.1,29.9,3754.0 +1096,4.07,52.2444714,6.8165198,02:02.8,4.0,3762.0,8.1,30.0,3762.0 +1097,4.07,52.2444822,6.81646175,02:02.8,4.0,3762.0,8.1,30.0,3762.0 +1098,4.08,52.244493,6.8164037,02:02.5,4.0,3771.0,8.0,30.2,3771.0 +1099,4.08,52.244502499999996,6.816351200000001,02:02.5,4.0,3771.0,8.0,30.2,3771.0 +1100,4.09,52.244512,6.816298700000001,02:02.3,4.0,3778.0,8.1,30.2,3778.0 +1101,4.09,52.244522,6.81623985,02:02.3,4.0,3778.0,8.1,30.2,3778.0 +1102,4.08,52.244532,6.8161809999999985,02:02.6,4.0,3786.0,8.0,30.2,3786.0 +1103,4.08,52.2445425,6.8161235,02:02.6,4.0,3786.0,8.0,30.2,3786.0 +1104,4.07,52.244553,6.816066,02:02.7,4.0,3795.0,8.0,30.3,3795.0 +1105,4.07,52.24456335,6.81600875,02:02.7,4.0,3795.0,8.0,30.3,3795.0 +1106,4.08,52.2445737,6.8159515,02:02.4,4.0,3803.0,8.0,30.2,3803.0 +1107,4.08,52.244583649999996,6.8158939,02:02.4,4.0,3803.0,8.0,30.2,3803.0 +1108,4.09,52.2445936,6.8158363,02:02.3,4.0,3811.0,8.2,29.8,3811.0 +1109,4.09,52.2446035,6.815777749999999,02:02.3,4.0,3811.0,8.2,29.8,3811.0 +1110,4.09,52.2446134,6.8157191999999975,02:02.2,4.0,3819.0,8.1,30.0,3819.0 +1111,4.09,52.24462355,6.815656749999999,02:02.2,4.0,3819.0,8.1,30.0,3819.0 +1112,4.08,52.24463370000001,6.8155943,02:02.6,4.0,3828.0,8.2,29.7,3828.0 +1113,4.08,52.2446415,6.81554185,02:02.6,4.0,3828.0,8.2,29.7,3828.0 +1114,4.04,52.2446493,6.8154894,02:03.6,4.0,3835.0,8.2,29.5,3835.0 +1115,4.04,52.24465825,6.8154331,02:03.6,4.0,3835.0,8.2,29.5,3835.0 +1116,4.03,52.2446672,6.815376799999999,02:04.1,4.0,3843.0,8.1,29.8,3843.0 +1117,4.03,52.2446772,6.815315099999999,02:04.1,4.0,3843.0,8.1,29.8,3843.0 +1118,4.04,52.2446872,6.8152534,02:03.6,4.0,3852.0,7.9,30.3,3852.0 +1119,4.04,52.24469625,6.815194699999999,02:03.6,4.0,3852.0,7.9,30.3,3852.0 +1120,4.05,52.24470529999999,6.815136,02:03.4,4.0,3860.0,8.4,28.7,3860.0 +1121,4.05,52.24471509999999,6.8150785,02:03.4,4.0,3860.0,8.4,28.7,3860.0 +1122,3.99,52.2447249,6.8150210000000015,02:05.3,3.9,3868.0,9.0,26.5,3868.0 +1123,3.99,52.244732375,6.814975275000001,02:05.3,3.9,3868.0,9.0,26.5,3868.0 +1124,3.99,52.24473985,6.8149295500000004,02:05.3,3.9,3868.0,9.0,26.5,3868.0 +1125,3.99,52.244747325000006,6.814883824999999,02:05.3,3.9,3868.0,9.0,26.5,3868.0 +1126,3.8,52.2447548,6.8148380999999985,02:11.6,3.8,3881.0,9.7,23.2,3881.0 +1127,3.8,52.24476235,6.8147945499999985,02:11.6,3.8,3881.0,9.7,23.2,3881.0 +1128,3.47,52.2447699,6.8147509999999984,02:24.0,3.4,3887.0,10.2,20.2,3887.0 +1129,3.47,52.24477876666667,6.814708166666666,02:24.0,3.4,3887.0,10.2,20.2,3887.0 +1130,3.47,52.24478763333333,6.814665333333333,02:24.0,3.4,3887.0,10.2,20.2,3887.0 +1131,3.11,52.2447965,6.8146225000000005,02:40.7,3.1,3897.0,10.0,18.5,3897.0 +1132,3.11,52.24480466666667,6.8145838,02:40.7,3.1,3897.0,10.0,18.5,3897.0 +1133,3.11,52.244812833333334,6.8145451,02:40.7,3.1,3897.0,10.0,18.5,3897.0 +1134,2.84,52.244821,6.8145064,02:56.0,2.8,3905.0,9.2,18.5,3905.0 +1135,2.84,52.244827375,6.814476975,02:56.0,2.8,3905.0,9.2,18.5,3905.0 +1136,2.84,52.24483375,6.814447550000001,02:56.0,2.8,3905.0,9.2,18.5,3905.0 +1137,2.84,52.244840125,6.814418125,02:56.0,2.8,3905.0,9.2,18.5,3905.0 +1138,2.71,52.2448465,6.8143887,03:04.6,2.7,3914.0,8.9,18.1,3914.0 +1139,2.71,52.244856166666665,6.8143453,03:04.6,2.7,3914.0,8.9,18.1,3914.0 +1140,2.71,52.244865833333336,6.8143019,03:04.6,2.7,3914.0,8.9,18.1,3914.0 +1141,2.7,52.2448755,6.8142585,03:05.0,2.7,3923.0,8.9,18.1,3923.0 +1142,2.7,52.2448851,6.814214300000001,03:05.0,2.7,3923.0,8.9,18.1,3923.0 +1143,2.7,52.2448947,6.8141701,03:05.0,2.7,3923.0,8.9,18.1,3923.0 +1144,2.75,52.2449043,6.8141259000000005,03:01.7,2.7,3933.0,9.1,18.0,3933.0 +1145,2.75,52.2449113,6.81409435,03:01.7,2.7,3933.0,9.1,18.0,3933.0 +1146,2.75,52.2449183,6.8140628,03:01.7,2.7,3933.0,9.1,18.0,3933.0 +1147,2.75,52.244925300000006,6.81403125,03:01.7,2.7,3933.0,9.1,18.0,3933.0 +1148,2.79,52.2449323,6.8139997,02:58.9,2.7,3942.0,9.3,18.0,3942.0 +1149,2.79,52.24494193333334,6.813956533333333,02:58.9,2.7,3942.0,9.3,18.0,3942.0 +1150,2.79,52.244951566666664,6.813913366666667,02:58.9,2.7,3942.0,9.3,18.0,3942.0 +1151,2.82,52.2449612,6.8138702,02:57.2,2.8,3951.0,9.4,17.9,3951.0 +1152,2.82,52.2449704,6.8138255333333335,02:57.2,2.8,3951.0,9.4,17.9,3951.0 +1153,2.82,52.2449796,6.813780866666668,02:57.2,2.8,3951.0,9.4,17.9,3951.0 +1154,2.85,52.2449888,6.813736200000001,02:55.4,2.8,3961.0,9.6,17.8,3961.0 +1155,2.85,52.244995775,6.813701975000001,02:55.4,2.8,3961.0,9.6,17.8,3961.0 +1156,2.85,52.24500275,6.8136677500000005,02:55.4,2.8,3961.0,9.6,17.8,3961.0 +1157,2.85,52.245009725,6.813633525,02:55.4,2.8,3961.0,9.6,17.8,3961.0 +1158,2.89,52.2450167,6.8135993,02:53.1,2.8,3971.0,9.7,17.7,3971.0 +1159,2.89,52.24502636666667,6.813553366666667,02:53.1,2.8,3971.0,9.7,17.7,3971.0 +1160,2.89,52.24503603333334,6.813507433333335,02:53.1,2.8,3971.0,9.7,17.7,3971.0 +1161,2.93,52.24504570000001,6.8134615000000025,02:50.6,2.9,3980.0,9.7,18.0,3980.0 +1162,2.93,52.245055033333344,6.8134165000000015,02:50.6,2.9,3980.0,9.7,18.0,3980.0 +1163,2.93,52.24506436666667,6.813371500000001,02:50.6,2.9,3980.0,9.7,18.0,3980.0 +1164,2.96,52.2450737,6.8133265,02:48.7,2.9,3990.0,9.5,18.6,3990.0 +1165,2.96,52.245082000000004,6.813284066666666,02:48.7,2.9,3990.0,9.5,18.6,3990.0 +1166,2.96,52.24509030000001,6.813241633333333,02:48.7,2.9,3990.0,9.5,18.6,3990.0 +1167,2.98,52.24509860000001,6.8131992,02:47.5,2.9,3999.0,9.3,19.1,3999.0 +1168,2.98,52.24510716666667,6.813157566666667,02:47.5,2.9,3999.0,9.3,19.1,3999.0 +1169,2.98,52.245115733333336,6.813115933333333,02:47.5,2.9,3999.0,9.3,19.1,3999.0 +1170,2.99,52.24512429999999,6.8130743,02:47.0,2.9,4008.0,9.2,19.3,4008.0 +1171,2.99,52.24513256666666,6.813030033333333,02:47.0,2.9,4008.0,9.2,19.3,4008.0 +1172,2.99,52.24514083333334,6.812985766666666,02:47.0,2.9,4008.0,9.2,19.3,4008.0 +1173,2.99,52.245149100000006,6.812941499999999,02:47.3,2.9,4018.0,9.3,19.1,4018.0 +1174,2.99,52.245155600000004,6.812908174999999,02:47.3,2.9,4018.0,9.3,19.1,4018.0 +1175,2.99,52.2451621,6.812874849999999,02:47.3,2.9,4018.0,9.3,19.1,4018.0 +1176,2.99,52.2451686,6.812841525,02:47.3,2.9,4018.0,9.3,19.1,4018.0 +1177,2.97,52.2451751,6.812808199999999,02:48.1,2.9,4027.0,9.4,18.8,4027.0 +1178,2.97,52.245182566666664,6.812764866666667,02:48.1,2.9,4027.0,9.4,18.8,4027.0 +1179,2.97,52.24519003333334,6.812721533333334,02:48.1,2.9,4027.0,9.4,18.8,4027.0 +1180,2.95,52.2451975,6.8126782000000015,02:49.2,2.9,4036.0,9.4,18.7,4036.0 +1181,2.95,52.2452047,6.812633900000001,02:49.2,2.9,4036.0,9.4,18.7,4036.0 +1182,2.95,52.2452119,6.8125896,02:49.2,2.9,4036.0,9.4,18.7,4036.0 +1183,2.94,52.2452191,6.812545299999999,02:50.2,2.9,4046.0,9.3,18.8,4046.0 +1184,2.94,52.2452257,6.8125000333333325,02:50.2,2.9,4046.0,9.3,18.8,4046.0 +1185,2.94,52.2452323,6.812454766666667,02:50.2,2.9,4046.0,9.3,18.8,4046.0 +1186,2.93,52.2452389,6.8124095,02:50.3,2.9,4055.0,9.2,19.1,4055.0 +1187,2.93,52.245245266666664,6.812366433333334,02:50.3,2.9,4055.0,9.2,19.1,4055.0 +1188,2.93,52.24525163333333,6.812323366666667,02:50.3,2.9,4055.0,9.2,19.1,4055.0 +1189,2.95,52.245258,6.8122803,02:49.6,2.9,4064.0,9.2,19.1,4064.0 +1190,2.95,52.2452649,6.812237266666667,02:49.6,2.9,4064.0,9.2,19.1,4064.0 +1191,2.95,52.2452718,6.812194233333335,02:49.6,2.9,4064.0,9.2,19.1,4064.0 +1192,2.98,52.2452787,6.8121512000000015,02:47.9,2.9,4074.0,9.5,18.8,4074.0 +1193,2.98,52.24528556666667,6.812102733333335,02:47.9,2.9,4074.0,9.5,18.8,4074.0 +1194,2.98,52.24529243333333,6.812054266666667,02:47.9,2.9,4074.0,9.5,18.8,4074.0 +1195,3.06,52.2452993,6.8120058000000006,02:43.6,3.0,4084.0,9.0,20.3,4084.0 +1196,3.06,52.24530556666667,6.811965466666667,02:43.6,3.0,4084.0,9.0,20.3,4084.0 +1197,3.06,52.24531183333334,6.811925133333333,02:43.6,3.0,4084.0,9.0,20.3,4084.0 +1198,3.2,52.24531810000001,6.8118848,02:36.2,3.2,4092.0,8.1,23.5,4092.0 +1199,3.2,52.24532660000001,6.81182665,02:36.2,3.2,4092.0,8.1,23.5,4092.0 +1200,3.42,52.24533510000001,6.8117685,02:26.2,3.4,4100.0,7.4,27.5,4100.0 +1201,3.42,52.24534170000001,6.81171685,02:26.2,3.4,4100.0,7.4,27.5,4100.0 +1202,3.7,52.2453483,6.8116652,02:15.1,3.7,4108.0,7.1,31.2,4108.0 +1203,3.7,52.2453548,6.8116102000000005,02:15.1,3.7,4108.0,7.1,31.2,4108.0 +1204,3.96,52.24536129999999,6.8115552,02:06.2,3.9,4115.0,7.1,33.1,4115.0 +1205,3.96,52.245367849999994,6.811504800000001,02:06.2,3.9,4115.0,7.1,33.1,4115.0 +1206,4.15,52.2453744,6.8114544000000015,02:00.5,4.1,4122.0,7.5,32.8,4122.0 +1207,4.15,52.245381550000005,6.811391500000001,02:00.5,4.1,4122.0,7.5,32.8,4122.0 +1208,4.23,52.24538870000001,6.8113286,01:58.2,4.2,4131.0,7.8,32.2,4131.0 +1209,4.22,52.2453974,6.8112205,01:58.3,4.2,4138.0,8.0,31.6,4138.0 +1210,4.22,52.2454025,6.8111651,01:58.3,4.2,4138.0,8.0,31.6,4138.0 +1211,4.2,52.2454076,6.811109700000001,01:59.1,4.2,4146.0,7.9,31.7,4146.0 +1212,4.2,52.245412900000005,6.811051450000001,01:59.1,4.2,4146.0,7.9,31.7,4146.0 +1213,4.19,52.2454182,6.8109932,01:59.3,4.1,4154.0,7.8,32.0,4154.0 +1214,4.19,52.245422700000006,6.8109369,01:59.3,4.1,4154.0,7.8,32.0,4154.0 +1215,4.2,52.24542720000001,6.8108806,01:58.9,4.2,4162.0,7.7,32.5,4162.0 +1216,4.2,52.24543095,6.81082445,01:58.9,4.2,4162.0,7.7,32.5,4162.0 +1217,4.22,52.2454347,6.8107683,01:58.4,4.2,4169.0,7.7,32.9,4169.0 +1218,4.22,52.245439,6.81071275,01:58.4,4.2,4169.0,7.7,32.9,4169.0 +1219,4.24,52.2454433,6.8106572,01:57.9,4.2,4177.0,7.7,32.6,4177.0 +1220,4.24,52.24544765,6.8106015,01:57.9,4.2,4177.0,7.7,32.6,4177.0 +1221,4.26,52.245452,6.8105458,01:57.4,4.2,4185.0,7.8,32.5,4185.0 +1222,4.29,52.2454595,6.810430800000002,01:56.6,4.2,4193.0,7.8,32.9,4193.0 +1223,4.29,52.2454631,6.810373850000001,01:56.6,4.2,4193.0,7.8,32.9,4193.0 +1224,4.3,52.2454667,6.810316900000001,01:55.9,4.3,4200.0,7.9,32.7,4200.0 +1225,4.3,52.24547020000001,6.810261200000001,01:55.9,4.3,4200.0,7.9,32.7,4200.0 +1226,4.32,52.24547370000001,6.8102055,01:55.7,4.3,4208.0,7.7,33.5,4208.0 +1227,4.32,52.24547685,6.81014765,01:55.7,4.3,4208.0,7.7,33.5,4208.0 +1228,4.3,52.24548,6.8100898,01:56.0,4.3,4216.0,7.7,33.5,4216.0 +1229,4.3,52.245484000000005,6.81003255,01:56.0,4.3,4216.0,7.7,33.5,4216.0 +1230,4.3,52.245488,6.8099753,01:56.4,4.3,4224.0,7.7,33.1,4224.0 +1231,4.29,52.2454947,6.8098645000000015,01:56.6,4.2,4231.0,7.7,33.0,4231.0 +1232,4.29,52.24549905,6.80980495,01:56.6,4.2,4231.0,7.7,33.0,4231.0 +1233,4.29,52.2455034,6.8097454,01:56.5,4.2,4240.0,7.8,32.8,4240.0 +1234,4.29,52.245509150000004,6.80968345,01:56.5,4.2,4240.0,7.8,32.8,4240.0 +1235,4.3,52.2455149,6.8096215,01:56.2,4.3,4248.0,8.0,32.1,4248.0 +1236,4.3,52.24551975,6.80956485,01:56.2,4.3,4248.0,8.0,32.1,4248.0 +1237,4.3,52.2455246,6.8095082,01:56.3,4.3,4256.0,7.9,32.3,4256.0 +1238,4.3,52.24552945000001,6.8094564,01:56.3,4.3,4256.0,7.9,32.3,4256.0 +1239,4.32,52.2455343,6.8094046000000015,01:55.6,4.3,4263.0,8.0,32.1,4263.0 +1240,4.26,52.2455452,6.8092839000000005,01:56.9,4.2,4271.0,8.1,31.3,4271.0 +1241,4.26,52.24554963846154,6.809243692307692,01:56.9,4.2,4271.0,8.1,31.3,4271.0 +1242,4.26,52.24555407692308,6.809203484615385,01:56.9,4.2,4271.0,8.1,31.3,4271.0 +1243,4.26,52.245558515384616,6.809163276923077,01:56.9,4.2,4271.0,8.1,31.3,4271.0 +1244,4.26,52.245562953846154,6.80912306923077,01:56.9,4.2,4271.0,8.1,31.3,4271.0 +1245,4.26,52.24556739230769,6.809082861538462,01:56.9,4.2,4271.0,8.1,31.3,4271.0 +1246,4.26,52.24557183076923,6.809042653846155,01:56.9,4.2,4271.0,8.1,31.3,4271.0 +1247,4.26,52.245576269230774,6.809002446153847,01:56.9,4.2,4271.0,8.1,31.3,4271.0 +1248,4.26,52.24558070769231,6.80896223846154,01:56.9,4.2,4271.0,8.1,31.3,4271.0 +1249,4.26,52.24558514615385,6.8089220307692315,01:56.9,4.2,4271.0,8.1,31.3,4271.0 +1250,4.26,52.24558958461539,6.808881823076924,01:56.9,4.2,4271.0,8.1,31.3,4271.0 +1251,4.26,52.245594023076926,6.808841615384616,01:56.9,4.2,4271.0,8.1,31.3,4271.0 +1252,4.26,52.245598461538464,6.808801407692309,01:56.9,4.2,4271.0,8.1,31.3,4271.0 +1253,3.25,52.2456029,6.808761200000001,02:33.8,3.2,4308.0,8.7,22.3,4308.0 +1254,3.25,52.245607033333336,6.8087246000000015,02:33.8,3.2,4308.0,8.7,22.3,4308.0 +1255,3.25,52.24561116666666,6.808688000000001,02:33.8,3.2,4308.0,8.7,22.3,4308.0 +1256,2.65,52.2456153,6.808651400000001,03:08.4,2.6,4315.0,8.8,17.9,4315.0 +1257,2.65,52.24561885,6.808621775000001,03:08.4,2.6,4315.0,8.8,17.9,4315.0 +1258,2.65,52.2456224,6.80859215,03:08.4,2.6,4315.0,8.8,17.9,4315.0 +1259,2.65,52.24562595,6.808562524999999,03:08.4,2.6,4315.0,8.8,17.9,4315.0 +1260,2.31,52.2456295,6.8085328999999986,03:35.6,2.3,4323.0,8.8,15.8,4323.0 +1261,2.31,52.2456344,6.808487366666665,03:35.6,2.3,4323.0,8.8,15.8,4323.0 +1262,2.31,52.2456393,6.808441833333333,03:35.6,2.3,4323.0,8.8,15.8,4323.0 +1263,2.25,52.2456442,6.8083963,03:42.0,2.2,4333.0,7.8,17.1,4333.0 +1264,2.25,52.24564805,6.80836525,03:42.0,2.2,4333.0,7.8,17.1,4333.0 +1265,2.25,52.2456519,6.808334199999999,03:42.0,2.2,4333.0,7.8,17.1,4333.0 +1266,2.25,52.245655750000005,6.8083031499999995,03:42.0,2.2,4333.0,7.8,17.1,4333.0 +1267,2.35,52.2456596,6.808272099999999,03:32.9,2.3,4342.0,8.0,17.4,4342.0 +1268,2.35,52.24566526666667,6.808231333333333,03:32.9,2.3,4342.0,8.0,17.4,4342.0 +1269,2.35,52.24567093333334,6.808190566666665,03:32.9,2.3,4342.0,8.0,17.4,4342.0 +1270,2.46,52.2456766,6.808149799999999,03:23.2,2.4,4350.0,8.5,17.2,4350.0 +1271,2.46,52.24568085,6.808117999999999,03:23.2,2.4,4350.0,8.5,17.2,4350.0 +1272,2.46,52.2456851,6.808086199999998,03:23.2,2.4,4350.0,8.5,17.2,4350.0 +1273,2.46,52.245689350000006,6.808054399999998,03:23.2,2.4,4350.0,8.5,17.2,4350.0 +1274,2.54,52.2456936,6.8080225999999975,03:17.2,2.5,4359.0,8.9,16.9,4359.0 +1275,2.54,52.24569785,6.807986099999998,03:17.2,2.5,4359.0,8.9,16.9,4359.0 +1276,2.54,52.2457021,6.807949599999999,03:17.2,2.5,4359.0,8.9,16.9,4359.0 +1277,2.54,52.245706350000006,6.8079130999999995,03:17.2,2.5,4359.0,8.9,16.9,4359.0 +1278,2.62,52.2457106,6.8078766,03:10.9,2.6,4369.0,9.4,16.6,4369.0 +1279,2.62,52.24571576666666,6.807831833333333,03:10.9,2.6,4369.0,9.4,16.6,4369.0 +1280,2.62,52.24572093333333,6.807787066666665,03:10.9,2.6,4369.0,9.4,16.6,4369.0 +1281,2.06,52.24572609999999,6.807742299999998,04:01.0,2.0,4378.0,6.9,17.9,4378.0 +1282,2.06,52.24572733333333,6.807725711111109,04:01.0,2.0,4378.0,6.9,17.9,4378.0 +1283,2.06,52.245728566666656,6.807709122222221,04:01.0,2.0,4378.0,6.9,17.9,4378.0 +1284,2.06,52.24572979999999,6.8076925333333325,04:01.0,2.0,4378.0,6.9,17.9,4378.0 +1285,2.06,52.24573103333333,6.807675944444443,04:01.0,2.0,4378.0,6.9,17.9,4378.0 +1286,2.06,52.245732266666664,6.807659355555554,04:01.0,2.0,4378.0,6.9,17.9,4378.0 +1287,2.06,52.24573349999999,6.807642766666666,04:01.0,2.0,4378.0,6.9,17.9,4378.0 +1288,2.06,52.24573473333333,6.807626177777777,04:01.0,2.0,4378.0,6.9,17.9,4378.0 +1289,2.06,52.245735966666665,6.807609588888888,04:01.0,2.0,4378.0,6.9,17.9,4378.0 +1290,2.06,52.24573719999999,6.807592999999999,04:01.0,2.0,4378.0,6.9,17.9,4378.0 +1291,2.06,52.24573843333333,6.807576411111111,04:01.0,2.0,4378.0,6.9,17.9,4378.0 +1292,2.06,52.245739666666665,6.807559822222222,04:01.0,2.0,4378.0,6.9,17.9,4378.0 +1293,2.06,52.2457409,6.807543233333333,04:01.0,2.0,4378.0,6.9,17.9,4378.0 +1294,2.06,52.24574213333333,6.807526644444444,04:01.0,2.0,4378.0,6.9,17.9,4378.0 +1295,2.06,52.245743366666666,6.807510055555555,04:01.0,2.0,4378.0,6.9,17.9,4378.0 +1296,2.06,52.2457446,6.807493466666667,04:01.0,2.0,4378.0,6.9,17.9,4378.0 +1297,2.06,52.24574583333334,6.807476877777778,04:01.0,2.0,4378.0,6.9,17.9,4378.0 +1298,2.06,52.24574706666667,6.807460288888889,04:01.0,2.0,4378.0,6.9,17.9,4378.0 +1299,1.4,52.2457483,6.8074437,05:56.5,1.4,4399.0,4.4,19.1,4399.0 +1300,0.73,52.24574970000001,6.807441099999999,11:23.1,0.7,4399.0,2.0,21.1,4399.0 +1301,0.73,52.24574742500001,6.807439049999999,11:23.1,0.7,4399.0,2.0,21.1,4399.0 +1302,0.73,52.24574515000001,6.807437,11:23.1,0.7,4399.0,2.0,21.1,4399.0 +1303,0.73,52.24574287500001,6.80743495,11:23.1,0.7,4399.0,2.0,21.1,4399.0 +1304,0.32,52.24574060000001,6.8074329,26:08.8,0.3,4400.0,0.8,21.4,4400.0 +1305,0.22,52.2457379,6.8074326,37:46.1,0.2,4400.0,0.5,24.4,4400.0 +1306,0.22,52.245734866666666,6.8074345,37:46.1,0.2,4400.0,0.5,24.4,4400.0 +1307,0.22,52.24573183333334,6.8074364,37:46.1,0.2,4400.0,0.5,24.4,4400.0 +1308,0.39,52.2457288,6.8074383,21:29.2,0.3,4400.0,0.8,28.8,4400.0 +1309,0.67,52.2457169,6.8074485000000005,12:26.7,0.6,4400.0,1.0,37.8,4400.0 +1310,0.67,52.24571185,6.8074546499999995,12:26.7,0.6,4400.0,1.0,37.8,4400.0 +1311,0.89,52.2457068,6.8074607999999985,09:22.5,0.8,4400.0,1.4,37.7,4400.0 +1312,0.89,52.24570022,6.807470499999999,09:22.5,0.8,4400.0,1.4,37.7,4400.0 +1313,0.89,52.24569364,6.8074802,09:22.5,0.8,4400.0,1.4,37.7,4400.0 +1314,0.89,52.24568706,6.807489899999999,09:22.5,0.8,4400.0,1.4,37.7,4400.0 +1315,0.89,52.24568048,6.8074996,09:22.5,0.8,4400.0,1.4,37.7,4400.0 +1316,0.98,52.2456739,6.8075093,08:31.7,0.9,4401.0,1.7,33.3,4401.0 +1317,0.98,52.245671800000004,6.807516100000001,08:31.7,0.9,4401.0,1.7,33.3,4401.0 +1318,0.94,52.24566970000001,6.8075229,08:50.9,0.9,4401.0,2.2,24.8,4401.0 +1319,0.94,52.2456684,6.8075328,08:50.9,0.9,4401.0,2.2,24.8,4401.0 +1320,0.94,52.2456671,6.807542699999999,08:50.9,0.9,4401.0,2.2,24.8,4401.0 +1321,0.5,52.24566579999999,6.807552599999998,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1322,0.5,52.24566546774193,6.807555708064514,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1323,0.5,52.24566513548386,6.80755881612903,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1324,0.5,52.2456648032258,6.807561924193547,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1325,0.5,52.24566447096773,6.807565032258063,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1326,0.5,52.24566413870967,6.807568140322579,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1327,0.5,52.2456638064516,6.807571248387095,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1328,0.5,52.24566347419354,6.807574356451611,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1329,0.5,52.245663141935474,6.807577464516127,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1330,0.5,52.24566280967741,6.807580572580644,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1331,0.5,52.245662477419344,6.80758368064516,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1332,0.5,52.24566214516128,6.807586788709676,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1333,0.5,52.245661812903215,6.807589896774192,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1334,0.5,52.245661480645154,6.807593004838708,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1335,0.5,52.245661148387086,6.807596112903225,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1336,0.5,52.245660816129025,6.807599220967741,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1337,0.5,52.245660483870964,6.807602329032257,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1338,0.5,52.245660151612896,6.807605437096773,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1339,0.5,52.245659819354834,6.807608545161289,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1340,0.5,52.245659487096766,6.8076116532258055,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1341,0.5,52.245659154838705,6.8076147612903215,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1342,0.5,52.24565882258064,6.8076178693548375,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1343,0.5,52.245658490322576,6.8076209774193535,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1344,0.5,52.24565815806451,6.807624085483869,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1345,0.5,52.24565782580645,6.807627193548385,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1346,0.5,52.24565749354838,6.807630301612902,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1347,0.5,52.24565716129032,6.807633409677418,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1348,0.5,52.24565682903225,6.807636517741934,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1349,0.5,52.24565649677419,6.80763962580645,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1350,0.5,52.24565616451612,6.807642733870966,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1351,0.5,52.24565583225806,6.807645841935483,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1352,0.5,52.2456555,6.807648949999999,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1353,0.5,52.24565516774193,6.807652058064515,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1354,0.5,52.24565483548387,6.807655166129031,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1355,0.5,52.2456545032258,6.807658274193547,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1356,0.5,52.24565417096774,6.807661382258063,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1357,0.5,52.24565383870967,6.80766449032258,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1358,0.5,52.24565350645161,6.807667598387096,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1359,0.5,52.24565317419354,6.807670706451612,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1360,0.5,52.24565284193548,6.807673814516128,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1361,0.5,52.24565250967741,6.807676922580644,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1362,0.5,52.24565217741935,6.807680030645161,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1363,0.5,52.245651845161284,6.807683138709677,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1364,0.5,52.24565151290322,6.8076862467741925,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1365,0.5,52.245651180645154,6.8076893548387085,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1366,0.5,52.24565084838709,6.8076924629032245,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1367,0.5,52.245650516129025,6.807695570967741,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1368,0.5,52.245650183870964,6.807698679032257,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1369,0.5,52.2456498516129,6.807701787096773,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1370,0.5,52.245649519354835,6.807704895161289,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1371,0.5,52.245649187096774,6.807708003225805,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1372,0.5,52.245648854838706,6.807711111290321,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1373,0.5,52.245648522580645,6.807714219354838,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1374,0.5,52.24564819032258,6.807717327419354,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1375,0.5,52.245647858064515,6.80772043548387,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1376,0.5,52.24564752580645,6.807723543548386,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1377,0.5,52.245647193548386,6.807726651612902,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1378,0.5,52.24564686129032,6.807729759677419,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1379,0.5,52.24564652903226,6.807732867741935,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1380,0.5,52.24564619677419,6.807735975806451,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1381,0.5,52.24564586451613,6.807739083870967,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1382,0.5,52.24564553225806,6.807742191935483,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1383,0.5,52.2456452,6.807745299999999,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1384,0.5,52.24564486774194,6.807748408064516,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1385,0.5,52.24564453548387,6.807751516129032,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1386,0.5,52.24564420322581,6.807754624193548,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1387,0.5,52.24564387096774,6.807757732258064,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1388,0.5,52.24564353870968,6.8077608403225796,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1389,0.5,52.24564320645161,6.807763948387096,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1390,0.5,52.24564287419355,6.807767056451612,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1391,0.5,52.24564254193548,6.807770164516128,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1392,0.5,52.24564220967742,6.807773272580644,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1393,0.5,52.24564187741935,6.80777638064516,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1394,0.5,52.24564154516129,6.807779488709677,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1395,0.5,52.24564121290322,6.807782596774193,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1396,0.5,52.24564088064516,6.807785704838709,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1397,0.5,52.245640548387094,6.807788812903225,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1398,0.5,52.24564021612903,6.807791920967741,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1399,0.5,52.24563988387097,6.807795029032257,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1400,0.5,52.2456395516129,6.807798137096774,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1401,0.5,52.24563921935484,6.80780124516129,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1402,0.5,52.245638887096774,6.807804353225806,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1403,0.5,52.24563855483871,6.807807461290322,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1404,0.5,52.245638222580645,6.807810569354838,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1405,0.5,52.245637890322584,6.807813677419355,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1406,0.5,52.245637558064516,6.807816785483871,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1407,0.5,52.245637225806455,6.807819893548387,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1408,0.5,52.24563689354839,6.807823001612903,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1409,0.5,52.245636561290326,6.807826109677419,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1410,0.5,52.24563622903226,6.8078292177419355,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1411,0.5,52.245635896774196,6.8078323258064515,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1412,0.5,52.24563556451613,6.8078354338709675,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1413,0.5,52.24563523225807,6.807838541935483,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1414,0.5,52.2456349,6.807841649999999,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1415,0.5,52.24563456774194,6.807844758064515,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1416,0.5,52.24563423548388,6.807847866129032,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1417,0.5,52.24563390322581,6.807850974193548,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1418,0.5,52.24563357096775,6.807854082258064,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1419,0.5,52.24563323870968,6.80785719032258,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1420,0.5,52.24563290645162,6.807860298387096,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1421,0.5,52.24563257419355,6.807863406451613,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1422,0.5,52.24563224193549,6.807866514516129,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1423,0.5,52.24563190967742,6.807869622580645,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1424,0.5,52.24563157741936,6.807872730645161,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1425,0.5,52.24563124516129,6.807875838709677,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1426,0.5,52.24563091290323,6.807878946774193,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1427,0.5,52.24563058064516,6.80788205483871,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1428,0.5,52.2456302483871,6.807885162903226,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1429,0.5,52.24562991612903,6.807888270967742,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1430,0.5,52.24562958387097,6.807891379032258,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1431,0.5,52.24562925161291,6.807894487096774,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1432,0.5,52.24562891935484,6.807897595161291,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1433,0.5,52.24562858709678,6.8079007032258065,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1434,0.5,52.245628254838714,6.8079038112903225,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1435,0.5,52.24562792258065,6.8079069193548385,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1436,0.5,52.245627590322584,6.8079100274193545,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1437,0.5,52.24562725806452,6.807913135483871,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1438,0.5,52.245626925806455,6.807916243548387,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1439,0.5,52.245626593548394,6.807919351612903,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1440,0.5,52.245626261290326,6.807922459677419,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1441,0.5,52.245625929032265,6.807925567741935,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1442,0.5,52.2456255967742,6.807928675806451,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1443,0.5,52.245625264516136,6.807931783870968,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1444,0.5,52.24562493225807,6.807934891935484,16:30.4,0.5,4401.0,1.3,21.8,4401.0 +1445,0.59,52.245624600000006,6.807938,14:06.1,0.5,4426.0,1.6,21.0,4426.0 +1446,0.59,52.245624750000005,6.807956975000001,14:06.1,0.5,4426.0,1.6,21.0,4426.0 +1447,0.59,52.24562490000001,6.807975950000001,14:06.1,0.5,4426.0,1.6,21.0,4426.0 +1448,0.59,52.24562505000001,6.807994925000001,14:06.1,0.5,4426.0,1.6,21.0,4426.0 +1449,0.98,52.245625200000006,6.8080139000000015,08:30.9,0.9,4431.0,3.0,19.4,4431.0 +1450,0.98,52.245624250000006,6.8080459000000015,08:30.9,0.9,4431.0,3.0,19.4,4431.0 +1451,0.98,52.245623300000005,6.8080779000000025,08:30.9,0.9,4431.0,3.0,19.4,4431.0 +1452,0.98,52.24562235,6.8081099000000025,08:30.9,0.9,4431.0,3.0,19.4,4431.0 +1453,1.61,52.2456214,6.8081419000000025,05:11.1,1.6,4440.0,5.4,17.6,4440.0 +1454,1.61,52.24561896666666,6.808191100000002,05:11.1,1.6,4440.0,5.4,17.6,4440.0 +1455,1.61,52.24561653333333,6.808240300000001,05:11.1,1.6,4440.0,5.4,17.6,4440.0 +1456,2.25,52.2456141,6.808289500000001,03:41.0,2.2,4450.0,8.4,16.0,4450.0 +1457,2.25,52.2456118,6.808323075000001,03:41.0,2.2,4450.0,8.4,16.0,4450.0 +1458,2.25,52.2456095,6.80835665,03:41.0,2.2,4450.0,8.4,16.0,4450.0 +1459,2.25,52.245607199999995,6.808390225,03:41.0,2.2,4450.0,8.4,16.0,4450.0 +1460,2.75,52.2456049,6.8084238,03:01.7,2.7,4459.0,9.3,17.7,4459.0 +1461,2.75,52.245600833333334,6.8084737,03:01.7,2.7,4459.0,9.3,17.7,4459.0 +1462,2.75,52.245596766666665,6.8085236,03:01.7,2.7,4459.0,9.3,17.7,4459.0 +1463,3.0,52.2455927,6.8085735000000005,02:46.7,3.0,4470.0,9.6,18.6,4470.0 +1464,3.0,52.245589175000006,6.80861225,02:46.7,3.0,4470.0,9.6,18.6,4470.0 +1465,3.0,52.24558565,6.808651,02:46.7,3.0,4470.0,9.6,18.6,4470.0 +1466,3.0,52.245582125,6.80868975,02:46.7,3.0,4470.0,9.6,18.6,4470.0 +1467,3.04,52.2455786,6.8087285,02:44.4,3.0,4480.0,11.0,16.4,4480.0 +1468,3.04,52.2455786,6.8087285,02:44.4,3.0,4480.0,11.0,16.4,4480.0 +1469,3.04,52.2455786,6.8087285,02:44.4,3.0,4480.0,11.0,16.4,4480.0 +1470,3.0,52.2455786,6.8087285,02:46.8,3.0,4480.0,11.7,15.2,4480.0 +1471,3.0,52.24557046666667,6.808811366666666,02:46.8,3.0,4480.0,11.7,15.2,4480.0 +1472,3.0,52.24556233333333,6.808894233333333,02:46.8,3.0,4480.0,11.7,15.2,4480.0 +1473,2.95,52.2455542,6.808977099999999,02:49.3,2.9,4498.0,11.6,15.2,4498.0 +1474,2.95,52.2455501,6.809019033333333,02:49.3,2.9,4498.0,11.6,15.2,4498.0 +1475,2.95,52.245546,6.809060966666667,02:49.3,2.9,4498.0,11.6,15.2,4498.0 +1476,2.95,52.2455419,6.809102900000001,02:49.4,2.9,4506.0,10.7,16.4,4506.0 +1477,2.95,52.24553626666667,6.809149800000001,02:49.4,2.9,4506.0,10.7,16.4,4506.0 +1478,2.95,52.24553063333333,6.8091967,02:49.4,2.9,4506.0,10.7,16.4,4506.0 +1479,3.02,52.245525,6.8092436,02:45.5,3.0,4516.0,9.8,18.4,4516.0 +1480,3.02,52.2455195,6.8092865,02:45.5,3.0,4516.0,9.8,18.4,4516.0 +1481,3.02,52.245514,6.8093294,02:45.5,3.0,4516.0,9.8,18.4,4516.0 +1482,3.14,52.2455085,6.8093723,02:39.2,3.1,4525.0,9.0,20.9,4525.0 +1483,3.14,52.245502566666666,6.8094199,02:39.2,3.1,4525.0,9.0,20.9,4525.0 +1484,3.14,52.24549663333333,6.809467499999999,02:39.2,3.1,4525.0,9.0,20.9,4525.0 +1485,3.27,52.2454907,6.8095151,02:33.1,3.2,4535.0,9.8,20.0,4535.0 +1486,3.27,52.245484166666664,6.8095634,02:33.1,3.2,4535.0,9.8,20.0,4535.0 +1487,3.27,52.24547763333334,6.8096117000000005,02:33.1,3.2,4535.0,9.8,20.0,4535.0 +1488,3.36,52.2454711,6.809660000000001,02:28.9,3.3,4545.0,10.0,20.0,4545.0 +1489,3.36,52.24546503333333,6.809707666666667,02:28.9,3.3,4545.0,10.0,20.0,4545.0 +1490,3.36,52.24545896666667,6.809755333333333,02:28.9,3.3,4545.0,10.0,20.0,4545.0 +1491,3.39,52.2454529,6.809803,02:27.4,3.3,4555.0,10.2,19.7,4555.0 +1492,3.39,52.2454463,6.809851166666667,02:27.4,3.3,4555.0,10.2,19.7,4555.0 +1493,3.39,52.2454397,6.809899333333335,02:27.4,3.3,4555.0,10.2,19.7,4555.0 +1494,3.39,52.2454331,6.8099475000000025,02:27.4,3.3,4565.0,10.0,20.1,4565.0 +1495,3.39,52.2454267,6.809995866666668,02:27.4,3.3,4565.0,10.0,20.1,4565.0 +1496,3.39,52.2454203,6.8100442333333335,02:27.4,3.3,4565.0,10.0,20.1,4565.0 +1497,3.42,52.2454139,6.810092599999999,02:26.1,3.4,4575.0,9.2,22.1,4575.0 +1498,3.42,52.2454058,6.8101540499999995,02:26.1,3.4,4575.0,9.2,22.1,4575.0 +1499,3.52,52.2453977,6.8102155,02:22.0,3.5,4584.0,8.2,25.5,4584.0 +1500,3.52,52.2453915,6.810272149999999,02:22.0,3.5,4584.0,8.2,25.5,4584.0 +1501,3.7,52.2453853,6.8103288,02:15.1,3.7,4592.0,7.7,28.6,4592.0 +1502,3.7,52.24537945,6.8103792,02:15.1,3.7,4592.0,7.7,28.6,4592.0 +1503,3.93,52.2453736,6.8104296,02:07.1,3.9,4599.0,7.6,30.9,4599.0 +1504,3.93,52.245365650000004,6.810494,02:07.1,3.9,4599.0,7.6,30.9,4599.0 +1505,4.15,52.24535770000001,6.8105584000000015,02:00.4,4.1,4608.0,7.8,31.9,4608.0 +1506,4.15,52.2453507,6.8106203,02:00.4,4.1,4608.0,7.8,31.9,4608.0 +1507,4.29,52.24534370000001,6.8106822,01:56.5,4.2,4616.0,8.1,31.4,4616.0 +1508,4.29,52.2453369,6.8107387,01:56.5,4.2,4616.0,8.1,31.4,4616.0 +1509,4.34,52.2453301,6.8107952,01:54.9,4.3,4624.0,8.3,31.3,4624.0 +1510,4.34,52.2453158,6.8109198000000015,01:54.9,4.3,4633.0,8.2,31.5,4633.0 +1511,4.34,52.24530885,6.8109757,01:54.9,4.3,4633.0,8.2,31.5,4633.0 +1512,4.32,52.2453019,6.811031599999999,01:55.8,4.3,4640.0,8.2,31.3,4640.0 +1513,4.32,52.24529435,6.811093,01:55.8,4.3,4640.0,8.2,31.3,4640.0 +1514,4.28,52.2452868,6.811154400000001,01:56.8,4.2,4649.0,8.1,31.4,4649.0 +1515,4.28,52.2452789,6.811210000000001,01:56.8,4.2,4649.0,8.1,31.4,4649.0 +1516,4.24,52.245271,6.8112656000000005,01:57.9,4.2,4657.0,8.1,31.2,4657.0 +1517,4.24,52.2452643,6.8113262,01:57.9,4.2,4657.0,8.1,31.2,4657.0 +1518,4.21,52.2452576,6.8113868,01:58.8,4.2,4665.0,8.1,30.9,4665.0 +1519,4.21,52.2452508,6.811446500000001,01:58.8,4.2,4665.0,8.1,30.9,4665.0 +1520,4.19,52.245244,6.8115062,01:59.3,4.1,4673.0,8.1,31.0,4673.0 +1521,4.19,52.24523585,6.81156605,01:59.3,4.1,4673.0,8.1,31.0,4673.0 +1522,4.18,52.2452277,6.8116259,01:59.5,4.1,4682.0,8.1,30.8,4682.0 +1523,4.18,52.2452205,6.811681200000001,01:59.5,4.1,4682.0,8.1,30.8,4682.0 +1524,4.18,52.2452133,6.8117365,01:59.5,4.1,4690.0,8.2,30.5,4690.0 +1525,4.18,52.245205850000005,6.8117967,01:59.5,4.1,4690.0,8.2,30.5,4690.0 +1526,4.18,52.2451984,6.8118569,01:59.5,4.1,4698.0,8.1,30.7,4698.0 +1527,4.18,52.245190449999996,6.8119164,01:59.5,4.1,4698.0,8.1,30.7,4698.0 +1528,4.18,52.2451825,6.8119759,01:59.7,4.1,4706.0,8.3,30.1,4706.0 +1529,4.18,52.2451753,6.81203105,01:59.7,4.1,4706.0,8.3,30.1,4706.0 +1530,4.17,52.2451681,6.8120862,01:59.9,4.1,4714.0,8.3,30.1,4714.0 +1531,4.17,52.24515945,6.8121505,01:59.9,4.1,4714.0,8.3,30.1,4714.0 +1532,4.17,52.2451508,6.8122148000000005,01:59.8,4.1,4723.0,8.3,30.1,4723.0 +1533,4.17,52.24514225,6.8122738,01:59.8,4.1,4723.0,8.3,30.1,4723.0 +1534,4.17,52.2451337,6.812332799999999,01:59.9,4.1,4731.0,8.2,30.3,4731.0 +1535,4.17,52.2451265,6.81238255,01:59.9,4.1,4731.0,8.2,30.3,4731.0 +1536,4.16,52.2451193,6.8124323,02:00.0,4.1,4738.0,8.2,30.2,4738.0 +1537,4.16,52.2451089,6.81249925,02:00.0,4.1,4738.0,8.2,30.2,4738.0 +1538,4.16,52.2450985,6.8125662,02:00.3,4.1,4747.0,8.2,30.1,4747.0 +1539,4.16,52.24508955,6.81262405,02:00.3,4.1,4747.0,8.2,30.1,4747.0 +1540,4.13,52.2450806,6.8126819,02:00.9,4.1,4756.0,8.3,29.7,4756.0 +1541,4.13,52.2450714,6.8127362,02:00.9,4.1,4756.0,8.3,29.7,4756.0 +1542,4.11,52.24506220000001,6.8127905,02:01.6,4.1,4763.0,8.3,29.6,4763.0 +1543,4.11,52.245053350000006,6.812852599999999,02:01.6,4.1,4763.0,8.3,29.6,4763.0 +1544,4.09,52.2450445,6.8129146999999985,02:01.8,4.1,4772.0,8.3,29.3,4772.0 +1545,4.09,52.24503575,6.81297335,02:01.8,4.1,4772.0,8.3,29.3,4772.0 +1546,4.09,52.245027,6.8130320000000015,02:02.1,4.0,4780.0,8.3,29.5,4780.0 +1547,4.09,52.245018200000004,6.81308555,02:02.1,4.0,4780.0,8.3,29.5,4780.0 +1548,4.09,52.2450094,6.8131391,02:02.3,4.0,4788.0,8.2,29.6,4788.0 +1549,4.09,52.24499835,6.81320035,02:02.3,4.0,4788.0,8.2,29.6,4788.0 +1550,4.09,52.2449873,6.8132616,02:01.9,4.1,4796.0,8.2,29.9,4796.0 +1551,4.09,52.244977649999996,6.81331945,02:01.9,4.1,4796.0,8.2,29.9,4796.0 +1552,4.12,52.244968,6.8133773,02:01.2,4.1,4805.0,8.1,30.3,4805.0 +1553,4.12,52.2449596,6.8134314,02:01.2,4.1,4805.0,8.1,30.3,4805.0 +1554,4.13,52.2449512,6.8134855,02:00.7,4.1,4812.0,8.0,30.7,4812.0 +1555,4.13,52.2449409,6.813546499999999,02:00.7,4.1,4812.0,8.0,30.7,4812.0 +1556,4.09,52.2449306,6.8136075,02:02.1,4.0,4821.0,8.4,29.0,4821.0 +1557,4.09,52.244918150000004,6.8136788,02:02.1,4.0,4821.0,8.4,29.0,4821.0 +1558,3.92,52.2449057,6.813750099999999,02:07.4,3.9,4831.0,8.9,26.1,4831.0 +1559,3.92,52.244898766666665,6.813787,02:07.4,3.9,4831.0,8.9,26.1,4831.0 +1560,3.92,52.244891833333334,6.813823899999999,02:07.4,3.9,4831.0,8.9,26.1,4831.0 +1561,3.62,52.2448849,6.8138608,02:18.0,3.6,4839.0,9.5,22.6,4839.0 +1562,3.62,52.24487786666667,6.813900866666667,02:18.0,3.6,4839.0,9.5,22.6,4839.0 +1563,3.62,52.24487083333333,6.813940933333333,02:18.0,3.6,4839.0,9.5,22.6,4839.0 +1564,3.28,52.2448638,6.813981,02:32.2,3.2,4847.0,9.9,19.7,4847.0 +1565,3.28,52.244855333333334,6.8140242,02:32.2,3.2,4847.0,9.9,19.7,4847.0 +1566,3.28,52.24484686666666,6.8140674,02:32.2,3.2,4847.0,9.9,19.7,4847.0 +1567,3.02,52.2448384,6.8141106,02:45.3,3.0,4857.0,9.8,18.3,4857.0 +1568,3.02,52.244829833333334,6.814153933333334,02:45.3,3.0,4857.0,9.8,18.3,4857.0 +1569,3.02,52.24482126666666,6.8141972666666675,02:45.3,3.0,4857.0,9.8,18.3,4857.0 +1570,2.9,52.2448127,6.8142406000000015,02:52.2,2.9,4866.0,9.4,18.4,4866.0 +1571,2.9,52.244805325,6.814274975000001,02:52.2,2.9,4866.0,9.4,18.4,4866.0 +1572,2.9,52.244797950000006,6.81430935,02:52.2,2.9,4866.0,9.4,18.4,4866.0 +1573,2.9,52.244790575,6.8143437250000005,02:52.2,2.9,4866.0,9.4,18.4,4866.0 +1574,2.9,52.24478320000001,6.8143781,02:52.5,2.9,4876.0,9.4,18.3,4876.0 +1575,2.9,52.24477373333334,6.814423466666667,02:52.5,2.9,4876.0,9.4,18.3,4876.0 +1576,2.9,52.24476426666667,6.814468833333334,02:52.5,2.9,4876.0,9.4,18.3,4876.0 +1577,2.94,52.2447548,6.8145142000000005,02:50.1,2.9,4886.0,9.4,18.6,4886.0 +1578,2.94,52.24474536666667,6.814559233333334,02:50.1,2.9,4886.0,9.4,18.6,4886.0 +1579,2.94,52.24473593333333,6.814604266666667,02:50.1,2.9,4886.0,9.4,18.6,4886.0 +1580,2.97,52.2447265,6.8146493,02:48.3,2.9,4895.0,9.4,18.8,4895.0 +1581,2.97,52.2447169,6.814693666666667,02:48.3,2.9,4895.0,9.4,18.8,4895.0 +1582,2.97,52.2447073,6.814738033333334,02:48.3,2.9,4895.0,9.4,18.8,4895.0 +1583,2.98,52.2446977,6.8147824,02:47.5,2.9,4905.0,9.4,18.9,4905.0 +1584,2.98,52.24468806666667,6.814825133333334,02:47.5,2.9,4905.0,9.4,18.9,4905.0 +1585,2.98,52.244678433333334,6.814867866666667,02:47.5,2.9,4905.0,9.4,18.9,4905.0 +1586,3.01,52.2446688,6.8149106,02:46.3,3.0,4914.0,9.4,19.0,4914.0 +1587,3.01,52.244661449999995,6.814944575,02:46.3,3.0,4914.0,9.4,19.0,4914.0 +1588,3.01,52.2446541,6.814978549999999,02:46.3,3.0,4914.0,9.4,19.0,4914.0 +1589,3.01,52.24464675,6.815012524999998,02:46.3,3.0,4914.0,9.4,19.0,4914.0 +1590,3.05,52.2446394,6.8150464999999985,02:44.1,3.0,4924.0,9.5,19.1,4924.0 +1591,3.05,52.24463016666667,6.8150906666666655,02:44.1,3.0,4924.0,9.5,19.1,4924.0 +1592,3.05,52.24462093333333,6.815134833333333,02:44.1,3.0,4924.0,9.5,19.1,4924.0 +1593,3.1,52.2446117,6.815179,02:41.3,3.1,4934.0,9.8,18.9,4934.0 +1594,3.1,52.2446012,6.815224633333333,02:41.3,3.1,4934.0,9.8,18.9,4934.0 +1595,3.1,52.2445907,6.8152702666666665,02:41.3,3.1,4934.0,9.8,18.9,4934.0 +1596,3.14,52.2445802,6.8153159,02:39.0,3.1,4944.0,10.1,18.6,4944.0 +1597,3.14,52.24456876666667,6.8153635999999995,02:39.0,3.1,4944.0,10.1,18.6,4944.0 +1598,3.14,52.24455733333333,6.8154113,02:39.0,3.1,4944.0,10.1,18.6,4944.0 +1599,3.17,52.2445459,6.815459,02:37.8,3.1,4954.0,10.2,18.4,4954.0 +1600,3.17,52.244535666666664,6.8155052,02:37.8,3.1,4954.0,10.2,18.4,4954.0 +1601,3.17,52.24452543333334,6.815551399999999,02:37.8,3.1,4954.0,10.2,18.4,4954.0 +1602,3.17,52.2445152,6.8155975999999985,02:37.8,3.1,4964.0,10.2,18.5,4964.0 +1603,3.17,52.244505833333335,6.8156436666666655,02:37.8,3.1,4964.0,10.2,18.5,4964.0 +1604,3.17,52.244496466666675,6.815689733333333,02:37.8,3.1,4964.0,10.2,18.5,4964.0 +1605,3.15,52.24448710000001,6.8157358,02:38.5,3.1,4974.0,10.0,18.7,4974.0 +1606,3.15,52.24447962500001,6.8157698,02:38.5,3.1,4974.0,10.0,18.7,4974.0 +1607,3.15,52.24447215000001,6.815803799999999,02:38.5,3.1,4974.0,10.0,18.7,4974.0 +1608,3.15,52.244464675,6.815837799999999,02:38.5,3.1,4974.0,10.0,18.7,4974.0 +1609,3.13,52.24445720000001,6.815871799999999,02:39.5,3.1,4984.0,9.6,19.4,4984.0 +1610,3.13,52.2444478,6.815916366666666,02:39.5,3.1,4984.0,9.6,19.4,4984.0 +1611,3.13,52.2444384,6.815960933333331,02:39.5,3.1,4984.0,9.6,19.4,4984.0 +1612,3.13,52.244429,6.8160054999999975,02:39.8,3.1,4994.0,9.7,19.2,4994.0 +1613,3.13,52.244415399999994,6.816068499999998,02:39.8,3.1,4994.0,9.7,19.2,4994.0 +1614,3.16,52.2444018,6.8161315,02:38.1,3.1,5003.0,9.3,20.3,5003.0 +1615,3.16,52.2443921,6.816176733333333,02:38.1,3.1,5003.0,9.3,20.3,5003.0 +1616,3.16,52.2443824,6.816221966666667,02:38.1,3.1,5003.0,9.3,20.3,5003.0 +1617,3.27,52.2443727,6.8162672,02:33.0,3.2,5013.0,8.7,22.4,5013.0 +1618,3.27,52.24436553333333,6.816301733333334,02:33.0,3.2,5013.0,8.7,22.4,5013.0 +1619,3.27,52.24435836666667,6.816336266666666,02:33.0,3.2,5013.0,8.7,22.4,5013.0 +1620,3.45,52.2443512,6.8163708,02:25.0,3.4,5020.0,8.1,25.2,5020.0 +1621,3.45,52.24433895,6.8164295500000005,02:25.0,3.4,5020.0,8.1,25.2,5020.0 +1622,3.69,52.2443267,6.8164883000000005,02:15.5,3.6,5028.0,7.8,28.1,5028.0 +1623,3.69,52.2443137,6.8165447,02:15.5,3.6,5028.0,7.8,28.1,5028.0 +1624,3.92,52.2443007,6.8166011,02:07.6,3.9,5037.0,7.8,30.1,5037.0 +1625,3.92,52.244288049999994,6.8166540000000015,02:07.6,3.9,5037.0,7.8,30.1,5037.0 +1626,4.08,52.24427539999999,6.8167069000000025,02:02.4,4.0,5044.0,8.1,30.0,5044.0 +1627,4.08,52.2442609,6.816767900000002,02:02.4,4.0,5044.0,8.1,30.0,5044.0 +1628,4.18,52.2442464,6.816828900000001,01:59.5,4.1,5053.0,8.3,30.0,5053.0 +1629,4.18,52.2442338,6.8168866,01:59.5,4.1,5053.0,8.3,30.0,5053.0 +1630,4.21,52.24422120000001,6.8169443,01:58.6,4.2,5062.0,8.5,29.7,5062.0 +1631,4.21,52.24420930000001,6.816997300000001,01:58.6,4.2,5062.0,8.5,29.7,5062.0 +1632,4.21,52.2441974,6.8170503,01:58.8,4.2,5069.0,8.5,29.4,5069.0 +1633,4.21,52.244183199999995,6.8171166,01:58.8,4.2,5069.0,8.5,29.4,5069.0 +1634,4.2,52.244169,6.8171829,01:59.0,4.2,5079.0,8.4,29.8,5079.0 +1635,4.2,52.2441558,6.817240649999999,01:59.0,4.2,5079.0,8.4,29.8,5079.0 +1636,4.18,52.2441426,6.8172983999999985,01:59.6,4.1,5087.0,8.3,29.9,5087.0 +1637,4.18,52.24413135,6.817346299999999,01:59.6,4.1,5087.0,8.3,29.9,5087.0 +1638,4.15,52.2441201,6.8173942,02:00.5,4.1,5094.0,8.3,29.7,5094.0 +1639,4.15,52.2441051,6.8174536,02:00.5,4.1,5094.0,8.3,29.7,5094.0 +1640,4.13,52.2440901,6.817513000000001,02:00.9,4.1,5103.0,8.1,30.3,5103.0 +1641,4.13,52.2440755,6.817568250000001,02:00.9,4.1,5103.0,8.1,30.3,5103.0 +1642,4.13,52.2440609,6.8176235,02:01.0,4.1,5111.0,8.1,30.4,5111.0 +1643,4.13,52.2440469,6.817675749999999,02:01.0,4.1,5111.0,8.1,30.4,5111.0 +1644,4.13,52.24403289999999,6.817728,02:00.6,4.1,5119.0,8.0,30.7,5119.0 +1645,4.13,52.244017799999995,6.8177878,02:00.6,4.1,5119.0,8.0,30.7,5119.0 +1646,4.17,52.2440027,6.8178476,01:59.8,4.1,5128.0,8.0,31.0,5128.0 +1647,4.19,52.243976,6.8179481,01:59.3,4.1,5135.0,8.0,31.2,5135.0 +1648,4.19,52.2439665,6.817985166666666,01:59.3,4.1,5135.0,8.0,31.2,5135.0 +1649,4.19,52.243957,6.818022233333332,01:59.3,4.1,5135.0,8.0,31.2,5135.0 +1650,4.2,52.2439475,6.818059299999999,01:59.0,4.2,5144.0,8.1,30.9,5144.0 +1651,4.2,52.24391729999999,6.818172099999999,01:59.0,4.2,5152.0,8.1,31.0,5152.0 +1652,4.2,52.24390179999999,6.818228199999998,01:59.0,4.2,5152.0,8.1,31.0,5152.0 +1653,4.18,52.24388629999999,6.8182842999999975,01:59.4,4.1,5160.0,8.2,30.4,5160.0 +1654,4.18,52.24387636666666,6.818321199999998,01:59.4,4.1,5160.0,8.2,30.4,5160.0 +1655,4.18,52.24386643333333,6.818358099999999,01:59.4,4.1,5160.0,8.2,30.4,5160.0 +1656,4.16,52.2438565,6.818395,02:00.2,4.1,5169.0,8.1,30.5,5169.0 +1657,4.13,52.2438291,6.8184964999999975,02:01.0,4.1,5176.0,8.2,30.0,5176.0 +1658,4.13,52.24381405,6.818552849999999,02:01.0,4.1,5176.0,8.2,30.0,5176.0 +1659,4.11,52.243799,6.8186092,02:01.5,4.1,5185.0,8.1,30.2,5185.0 +1660,4.11,52.2437842,6.81866455,02:01.5,4.1,5185.0,8.1,30.2,5185.0 +1661,4.11,52.2437694,6.8187199000000005,02:01.5,4.1,5193.0,8.1,30.2,5193.0 +1662,4.11,52.24375335,6.8187753,02:01.5,4.1,5193.0,8.1,30.2,5193.0 +1663,4.12,52.2437373,6.8188307,02:01.2,4.1,5201.0,8.0,30.6,5201.0 +1664,4.12,52.24372095,6.81888615,02:01.2,4.1,5201.0,8.0,30.6,5201.0 +1665,4.12,52.2437046,6.8189416,02:01.2,4.1,5210.0,8.0,30.6,5210.0 +1666,4.12,52.2436898,6.8189917,02:01.2,4.1,5210.0,8.0,30.6,5210.0 +1667,4.11,52.243675,6.819041800000001,02:01.7,4.1,5217.0,7.9,30.8,5217.0 +1668,4.11,52.243659300000004,6.81909495,02:01.7,4.1,5217.0,7.9,30.8,5217.0 +1669,4.07,52.2436436,6.8191481,02:02.9,4.0,5225.0,7.9,30.6,5225.0 +1670,4.07,52.24362845,6.81920195,02:02.9,4.0,5225.0,7.9,30.6,5225.0 +1671,4.04,52.2436133,6.8192558000000005,02:03.9,4.0,5233.0,7.9,30.4,5233.0 +1672,4.04,52.243596100000005,6.819308100000001,02:03.9,4.0,5233.0,7.9,30.4,5233.0 +1673,4.04,52.2435789,6.819360400000001,02:03.7,4.0,5241.0,7.7,31.1,5241.0 +1674,4.04,52.24356175,6.819412900000001,02:03.7,4.0,5241.0,7.7,31.1,5241.0 +1675,4.05,52.2435446,6.819465400000001,02:03.3,4.0,5249.0,8.1,30.0,5249.0 +1676,4.05,52.24352625,6.8195171000000006,02:03.3,4.0,5249.0,8.1,30.0,5249.0 +1677,4.01,52.2435079,6.8195688,02:04.3,4.0,5258.0,8.8,27.3,5258.0 +1678,4.01,52.24348866666667,6.819623166666667,02:04.3,4.0,5258.0,8.8,27.3,5258.0 +1679,4.01,52.24346943333334,6.819677533333335,02:04.3,4.0,5258.0,8.8,27.3,5258.0 +1680,3.86,52.24345020000001,6.8197319000000025,02:09.4,3.8,5270.0,9.7,23.8,5270.0 +1681,3.86,52.24344006666667,6.819762966666668,02:09.4,3.8,5270.0,9.7,23.8,5270.0 +1682,3.86,52.24342993333334,6.819794033333333,02:09.4,3.8,5270.0,9.7,23.8,5270.0 +1683,3.55,52.2434198,6.819825099999999,02:20.9,3.5,5278.0,10.5,20.1,5278.0 +1684,3.55,52.24340663333333,6.819865999999999,02:20.9,3.5,5278.0,10.5,20.1,5278.0 +1685,3.55,52.24339346666667,6.819906899999999,02:20.9,3.5,5278.0,10.5,20.1,5278.0 +1686,3.15,52.2433803,6.8199478,02:38.4,3.1,5287.0,10.6,17.7,5287.0 +1687,3.15,52.2433684,6.819983199999999,02:38.4,3.1,5287.0,10.6,17.7,5287.0 +1688,3.15,52.2433565,6.820018599999999,02:38.4,3.1,5287.0,10.6,17.7,5287.0 +1689,2.82,52.2433446,6.820053999999999,02:57.4,2.8,5295.0,9.5,17.6,5295.0 +1690,2.82,52.2433356,6.820082699999999,02:57.4,2.8,5295.0,9.5,17.6,5295.0 +1691,2.82,52.2433266,6.820111399999998,02:57.4,2.8,5295.0,9.5,17.6,5295.0 +1692,2.82,52.2433176,6.820140099999999,02:57.4,2.8,5295.0,9.5,17.6,5295.0 +1693,2.62,52.2433086,6.8201687999999985,03:10.8,2.6,5304.0,9.0,17.3,5304.0 +1694,2.62,52.2432961,6.820208233333332,03:10.8,2.6,5304.0,9.0,17.3,5304.0 +1695,2.62,52.2432836,6.820247666666666,03:10.8,2.6,5304.0,9.0,17.3,5304.0 +1696,2.58,52.2432711,6.8202871,03:14.1,2.5,5313.0,8.9,17.2,5313.0 +1697,2.58,52.243261725,6.820318224999999,03:14.1,2.5,5313.0,8.9,17.2,5313.0 +1698,2.58,52.243252350000006,6.820349349999999,03:14.1,2.5,5313.0,8.9,17.2,5313.0 +1699,2.58,52.243242975,6.820380474999999,03:14.1,2.5,5313.0,8.9,17.2,5313.0 +1700,2.63,52.2432336,6.820411599999999,03:09.9,2.6,5323.0,9.2,17.1,5323.0 +1701,2.63,52.24322003333334,6.820453966666666,03:09.9,2.6,5323.0,9.2,17.1,5323.0 +1702,2.63,52.24320646666666,6.820496333333333,03:09.9,2.6,5323.0,9.2,17.1,5323.0 +1703,2.72,52.2431929,6.8205387,03:03.5,2.7,5332.0,9.4,17.2,5332.0 +1704,2.72,52.243183425,6.8205699,03:03.5,2.7,5332.0,9.4,17.2,5332.0 +1705,2.72,52.24317395,6.820601099999999,03:03.5,2.7,5332.0,9.4,17.2,5332.0 +1706,2.72,52.243164475,6.820632299999998,03:03.5,2.7,5332.0,9.4,17.2,5332.0 +1707,2.82,52.243155,6.8206634999999975,02:57.6,2.8,5342.0,9.5,17.6,5342.0 +1708,2.82,52.2431419,6.8207040999999995,02:57.6,2.8,5342.0,9.5,17.6,5342.0 +1709,2.82,52.2431288,6.8207447000000005,02:57.6,2.8,5342.0,9.5,17.6,5342.0 +1710,2.89,52.2431157,6.8207853000000025,02:52.8,2.8,5351.0,9.5,18.1,5351.0 +1711,2.89,52.2431021,6.8208303666666685,02:52.8,2.8,5351.0,9.5,18.1,5351.0 +1712,2.89,52.2430885,6.8208754333333355,02:52.8,2.8,5351.0,9.5,18.1,5351.0 +1713,2.94,52.2430749,6.8209205000000015,02:49.9,2.9,5362.0,9.6,18.3,5362.0 +1714,2.94,52.24306163333333,6.820962766666668,02:49.9,2.9,5362.0,9.6,18.3,5362.0 +1715,2.94,52.24304836666667,6.821005033333334,02:49.9,2.9,5362.0,9.6,18.3,5362.0 +1716,2.96,52.2430351,6.8210473,02:48.9,2.9,5371.0,9.7,18.1,5371.0 +1717,2.96,52.243024475,6.8210796,02:48.9,2.9,5371.0,9.7,18.1,5371.0 +1718,2.96,52.24301385,6.8211119,02:48.9,2.9,5371.0,9.7,18.1,5371.0 +1719,2.96,52.243003225,6.8211442,02:48.9,2.9,5371.0,9.7,18.1,5371.0 +1720,2.95,52.2429926,6.8211765,02:49.2,2.9,5381.0,9.9,17.8,5381.0 +1721,2.95,52.242977966666665,6.821219766666666,02:49.2,2.9,5381.0,9.9,17.8,5381.0 +1722,2.95,52.242963333333336,6.8212630333333335,02:49.2,2.9,5381.0,9.9,17.8,5381.0 +1723,2.95,52.2429487,6.8213063,02:49.5,2.9,5391.0,9.9,17.7,5391.0 +1724,2.95,52.24293436666667,6.8213476,02:49.5,2.9,5391.0,9.9,17.7,5391.0 +1725,2.95,52.242920033333334,6.8213889,02:49.5,2.9,5391.0,9.9,17.7,5391.0 +1726,2.95,52.2429057,6.8214302,02:49.2,2.9,5401.0,9.7,18.1,5401.0 +1727,2.95,52.242894750000005,6.8214609,02:49.2,2.9,5401.0,9.7,18.1,5401.0 +1728,2.95,52.2428838,6.8214916,02:49.2,2.9,5401.0,9.7,18.1,5401.0 +1729,2.95,52.24287285,6.8215223,02:49.2,2.9,5401.0,9.7,18.1,5401.0 +1730,2.96,52.2428619,6.821553,02:48.8,2.9,5411.0,9.6,18.4,5411.0 +1731,2.96,52.24284766666667,6.821591866666666,02:48.8,2.9,5411.0,9.6,18.4,5411.0 +1732,2.96,52.24283343333334,6.8216307333333335,02:48.8,2.9,5411.0,9.6,18.4,5411.0 +1733,2.97,52.24281920000001,6.8216696,02:48.1,2.9,5420.0,9.7,18.3,5420.0 +1734,2.97,52.242803900000006,6.821711933333333,02:48.1,2.9,5420.0,9.7,18.3,5420.0 +1735,2.97,52.242788600000004,6.821754266666667,02:48.1,2.9,5420.0,9.7,18.3,5420.0 +1736,3.03,52.2427733,6.8217966,02:45.0,3.0,5430.0,9.1,19.8,5430.0 +1737,3.03,52.24275936666667,6.8218353333333335,02:45.0,3.0,5430.0,9.1,19.8,5430.0 +1738,3.03,52.24274543333333,6.821874066666666,02:45.0,3.0,5430.0,9.1,19.8,5430.0 +1739,3.17,52.2427315,6.8219128,02:37.6,3.1,5439.0,8.4,22.6,5439.0 +1740,3.17,52.2427134,6.821963350000001,02:37.6,3.1,5439.0,8.4,22.6,5439.0 +1741,3.41,52.2426953,6.822013900000001,02:26.5,3.4,5447.0,7.9,25.8,5447.0 +1742,3.41,52.2426763,6.8220641,02:26.5,3.4,5447.0,7.9,25.8,5447.0 +1743,3.71,52.2426573,6.8221143,02:14.7,3.7,5455.0,7.7,28.9,5455.0 +1744,3.71,52.242638299999996,6.822166749999999,02:14.7,3.7,5455.0,7.7,28.9,5455.0 +1745,3.98,52.2426193,6.8222191999999975,02:05.5,3.9,5464.0,7.7,30.6,5464.0 +1746,3.98,52.2425993,6.8222722499999975,02:05.5,3.9,5464.0,7.7,30.6,5464.0 +1747,4.16,52.2425793,6.8223252999999975,02:00.1,4.1,5472.0,8.1,30.7,5472.0 +1748,4.16,52.2425624,6.822374699999998,02:00.1,4.1,5472.0,8.1,30.7,5472.0 +1749,4.25,52.2425455,6.822424099999999,01:57.6,4.2,5480.0,8.3,30.6,5480.0 +1750,4.25,52.24252355,6.822482299999999,01:57.6,4.2,5480.0,8.3,30.6,5480.0 +1751,4.28,52.2425016,6.8225405,01:56.6,4.2,5489.0,8.3,30.8,5489.0 +1752,4.28,52.24248435,6.822589949999999,01:56.6,4.2,5489.0,8.3,30.8,5489.0 +1753,4.29,52.242467100000006,6.8226394,01:56.5,4.2,5497.0,8.3,31.0,5497.0 +1754,4.29,52.242449300000004,6.8226902,01:56.5,4.2,5497.0,8.3,31.0,5497.0 +1755,4.29,52.2424315,6.8227410000000015,01:56.6,4.2,5505.0,8.2,31.0,5505.0 +1756,4.29,52.242411700000005,6.822797750000001,01:56.6,4.2,5505.0,8.2,31.0,5505.0 +1757,4.26,52.2423919,6.8228545,01:57.0,4.2,5514.0,8.2,31.1,5514.0 +1758,4.24,52.2423547,6.8229509,01:57.9,4.2,5522.0,8.1,31.2,5522.0 +1759,4.24,52.2423412,6.822985433333334,01:57.9,4.2,5522.0,8.1,31.2,5522.0 +1760,4.24,52.242327700000004,6.823019966666666,01:57.9,4.2,5522.0,8.1,31.2,5522.0 +1761,4.21,52.2423142,6.8230545,01:58.7,4.2,5530.0,8.1,30.9,5530.0 +1762,4.2,52.2422799,6.8231506999999985,01:59.1,4.2,5538.0,8.1,30.9,5538.0 +1763,4.2,52.24225955,6.823202049999999,01:59.1,4.2,5538.0,8.1,30.9,5538.0 +1764,4.19,52.24223920000001,6.8232534,01:59.4,4.1,5546.0,8.0,31.1,5546.0 +1765,4.19,52.24221970000001,6.8233048499999995,01:59.4,4.1,5546.0,8.0,31.1,5546.0 +1766,4.18,52.242200200000006,6.8233563,01:59.6,4.1,5554.0,8.0,31.2,5554.0 +1767,4.18,52.242180950000005,6.823403449999999,01:59.6,4.1,5554.0,8.0,31.2,5554.0 +1768,4.18,52.2421617,6.8234505999999975,01:59.6,4.1,5562.0,8.0,31.3,5562.0 +1769,4.18,52.24214225,6.823502999999999,01:59.6,4.1,5562.0,8.0,31.3,5562.0 +1770,4.19,52.2421228,6.8235554,01:59.4,4.1,5570.0,8.0,31.2,5570.0 +1771,4.19,52.2421028,6.82360705,01:59.4,4.1,5570.0,8.0,31.2,5570.0 +1772,4.2,52.2420828,6.8236587,01:59.0,4.2,5579.0,8.1,31.0,5579.0 +1773,4.2,52.24206155,6.823705800000001,01:59.0,4.2,5579.0,8.1,31.0,5579.0 +1774,4.21,52.2420403,6.8237529000000015,01:58.6,4.2,5587.0,8.1,31.0,5587.0 +1775,4.21,52.24202135,6.823799950000001,01:58.6,4.2,5587.0,8.1,31.0,5587.0 +1776,4.22,52.2420024,6.823847,01:58.4,4.2,5594.0,8.0,31.2,5594.0 +1777,4.22,52.24198045,6.8238971,01:58.4,4.2,5594.0,8.0,31.2,5594.0 +1778,4.22,52.2419585,6.823947200000001,01:58.4,4.2,5603.0,8.0,31.3,5603.0 +1779,4.22,52.24193665,6.823997250000001,01:58.4,4.2,5603.0,8.0,31.3,5603.0 +1780,4.21,52.2419148,6.8240473,01:58.7,4.2,5611.0,8.0,31.2,5611.0 +1781,4.21,52.2418951,6.8240936,01:58.7,4.2,5611.0,8.0,31.2,5611.0 +1782,4.2,52.2418754,6.8241399000000005,01:59.0,4.2,5619.0,8.1,31.0,5619.0 +1783,4.2,52.2418334,6.8242385,01:59.1,4.2,5627.0,8.1,31.0,5627.0 +1784,4.2,52.24181135,6.82428915,01:59.1,4.2,5627.0,8.1,31.0,5627.0 +1785,4.19,52.2417893,6.8243398,01:59.4,4.1,5635.0,8.0,31.2,5635.0 +1786,4.19,52.24176935,6.82438555,01:59.4,4.1,5635.0,8.0,31.2,5635.0 +1787,4.18,52.2417494,6.8244313,01:59.5,4.1,5643.0,8.0,31.3,5643.0 +1788,4.18,52.24172815,6.82447865,01:59.5,4.1,5643.0,8.0,31.3,5643.0 +1789,4.18,52.2417069,6.824526,01:59.5,4.1,5651.0,8.0,31.2,5651.0 +1790,4.18,52.24168345,6.8245742499999995,01:59.5,4.1,5651.0,8.0,31.2,5651.0 +1791,4.17,52.24166,6.8246225,02:00.0,4.1,5659.0,8.0,31.0,5659.0 +1792,4.17,52.2416385,6.8246675,02:00.0,4.1,5659.0,8.0,31.0,5659.0 +1793,4.2,52.241617,6.8247125,01:58.9,4.2,5667.0,8.2,30.7,5667.0 +1794,4.2,52.2415947,6.824759950000001,01:58.9,4.2,5667.0,8.2,30.7,5667.0 +1795,3.67,52.2415724,6.824807400000001,02:16.1,3.6,5675.0,6.6,33.3,5675.0 +1796,3.67,52.24155678333334,6.824843291666667,02:16.1,3.6,5675.0,6.6,33.3,5675.0 +1797,3.67,52.24154116666667,6.8248791833333335,02:16.1,3.6,5675.0,6.6,33.3,5675.0 +1798,3.67,52.241525550000006,6.824915075000001,02:16.1,3.6,5675.0,6.6,33.3,5675.0 +1799,3.67,52.24150993333333,6.824950966666667,02:16.1,3.6,5675.0,6.6,33.3,5675.0 +1800,3.67,52.24149431666667,6.824986858333333,02:16.1,3.6,5675.0,6.6,33.3,5675.0 +1801,3.67,52.2414787,6.8250227500000005,02:16.1,3.6,5675.0,6.6,33.3,5675.0 +1802,3.67,52.241463083333336,6.825058641666667,02:16.1,3.6,5675.0,6.6,33.3,5675.0 +1803,3.67,52.24144746666667,6.825094533333333,02:16.1,3.6,5675.0,6.6,33.3,5675.0 +1804,3.67,52.24143185,6.825130424999999,02:16.1,3.6,5675.0,6.6,33.3,5675.0 +1805,3.67,52.24141623333333,6.825166316666666,02:16.1,3.6,5675.0,6.6,33.3,5675.0 +1806,3.67,52.24140061666667,6.825202208333333,02:16.1,3.6,5675.0,6.6,33.3,5675.0 +1807,3.14,52.241385,6.825238099999999,02:39.4,3.1,5711.0,5.9,31.8,5711.0 +1808,2.72,52.241372,6.825267,03:04.1,2.7,5714.0,5.8,27.7,5714.0 +1809,2.72,52.241359599999996,6.825296525,03:04.1,2.7,5714.0,5.8,27.7,5714.0 +1810,2.72,52.2413472,6.825326049999999,03:04.1,2.7,5714.0,5.8,27.7,5714.0 +1811,2.72,52.241334800000004,6.825355575,03:04.1,2.7,5714.0,5.8,27.7,5714.0 +1812,2.5,52.2413224,6.825385099999999,03:19.2,2.5,5724.0,6.6,22.7,5724.0 +1813,2.5,52.24130663333334,6.825420433333332,03:19.2,2.5,5724.0,6.6,22.7,5724.0 +1814,2.5,52.24129086666667,6.825455766666666,03:19.2,2.5,5724.0,6.6,22.7,5724.0 +1815,2.49,52.2412751,6.825491099999999,03:20.5,2.4,5733.0,8.1,18.2,5733.0 +1816,2.49,52.24126285,6.825518375,03:20.5,2.4,5733.0,8.1,18.2,5733.0 +1817,2.49,52.2412506,6.8255456500000005,03:20.5,2.4,5733.0,8.1,18.2,5733.0 +1818,2.49,52.24123835,6.825572925,03:20.5,2.4,5733.0,8.1,18.2,5733.0 +1819,2.61,52.2412261,6.825600200000001,03:11.5,2.6,5742.0,9.8,15.9,5742.0 +1820,2.61,52.241209,6.825636000000001,03:11.5,2.6,5742.0,9.8,15.9,5742.0 +1821,2.61,52.241191900000004,6.8256718,03:11.5,2.6,5742.0,9.8,15.9,5742.0 +1822,2.76,52.2411748,6.8257076,03:01.3,2.7,5751.0,9.0,18.3,5751.0 +1823,2.76,52.24115833333334,6.825743466666667,03:01.3,2.7,5751.0,9.0,18.3,5751.0 +1824,2.76,52.241141866666666,6.825779333333333,03:01.3,2.7,5751.0,9.0,18.3,5751.0 +1825,2.85,52.2411254,6.8258152,02:55.1,2.8,5760.0,9.2,18.6,5760.0 +1826,2.85,52.241107266666674,6.8258535,02:55.1,2.8,5760.0,9.2,18.6,5760.0 +1827,2.85,52.24108913333334,6.825891799999999,02:55.1,2.8,5760.0,9.2,18.6,5760.0 +1828,2.94,52.24107100000001,6.825930099999999,02:50.2,2.9,5770.0,9.3,18.8,5770.0 +1829,2.94,52.241058175000006,6.825958224999999,02:50.2,2.9,5770.0,9.3,18.8,5770.0 +1830,2.94,52.24104535000001,6.825986349999999,02:50.2,2.9,5770.0,9.3,18.8,5770.0 +1831,2.94,52.24103252500001,6.826014474999999,02:50.2,2.9,5770.0,9.3,18.8,5770.0 +1832,2.99,52.2410197,6.826042599999999,02:47.0,2.9,5780.0,9.5,18.7,5780.0 +1833,2.99,52.24100186666667,6.8260811666666665,02:47.0,2.9,5780.0,9.5,18.7,5780.0 +1834,2.99,52.24098403333333,6.826119733333333,02:47.0,2.9,5780.0,9.5,18.7,5780.0 +1835,3.01,52.2409662,6.8261583,02:46.1,3.0,5790.0,9.7,18.6,5790.0 +1836,3.01,52.24094803333334,6.826196133333333,02:46.1,3.0,5790.0,9.7,18.6,5790.0 +1837,3.01,52.240929866666676,6.826233966666667,02:46.1,3.0,5790.0,9.7,18.6,5790.0 +1838,3.01,52.24091170000001,6.8262718,02:46.1,3.0,5799.0,9.7,18.4,5799.0 +1839,3.01,52.240893266666674,6.826309566666667,02:46.1,3.0,5799.0,9.7,18.4,5799.0 +1840,3.01,52.240874833333336,6.8263473333333335,02:46.1,3.0,5799.0,9.7,18.4,5799.0 +1841,3.01,52.2408564,6.8263851,02:46.0,3.0,5809.0,9.6,18.6,5809.0 +1842,3.01,52.24084295,6.82641295,02:46.0,3.0,5809.0,9.6,18.6,5809.0 +1843,3.01,52.240829500000004,6.8264407999999985,02:46.0,3.0,5809.0,9.6,18.6,5809.0 +1844,3.01,52.24081605,6.826468649999998,02:46.0,3.0,5809.0,9.6,18.6,5809.0 +1845,3.03,52.2408026,6.8264964999999975,02:45.1,3.0,5819.0,9.6,18.8,5819.0 +1846,3.03,52.24078506666667,6.826531899999998,02:45.1,3.0,5819.0,9.6,18.8,5819.0 +1847,3.03,52.24076753333333,6.8265673,02:45.1,3.0,5819.0,9.6,18.8,5819.0 +1848,3.06,52.24075,6.8266027000000005,02:43.5,3.0,5828.0,9.4,19.4,5828.0 +1849,3.06,52.240731866666664,6.8266391,02:43.5,3.0,5828.0,9.4,19.4,5828.0 +1850,3.06,52.24071373333334,6.8266755,02:43.5,3.0,5828.0,9.4,19.4,5828.0 +1851,3.09,52.2406956,6.8267119,02:41.5,3.0,5838.0,9.4,19.6,5838.0 +1852,3.09,52.240678333333335,6.826746133333334,02:41.5,3.0,5838.0,9.4,19.6,5838.0 +1853,3.09,52.24066106666667,6.826780366666666,02:41.5,3.0,5838.0,9.4,19.6,5838.0 +1854,3.14,52.2406438,6.8268146,02:39.3,3.1,5847.0,9.5,19.6,5847.0 +1855,3.14,52.240624600000004,6.8268504666666665,02:39.3,3.1,5847.0,9.5,19.6,5847.0 +1856,3.14,52.2406054,6.826886333333334,02:39.3,3.1,5847.0,9.5,19.6,5847.0 +1857,3.21,52.2405862,6.826922200000001,02:35.5,3.2,5857.0,9.0,21.3,5857.0 +1858,3.21,52.24056125,6.826969100000001,02:35.5,3.2,5857.0,9.0,21.3,5857.0 +1859,3.36,52.2405363,6.827016,02:28.7,3.3,5865.0,8.2,24.4,5865.0 +1860,3.36,52.2405114,6.8270611500000005,02:28.7,3.3,5865.0,8.2,24.4,5865.0 +1861,3.58,52.2404865,6.8271063,02:19.8,3.5,5873.0,7.8,27.1,5873.0 +1862,3.58,52.2404622,6.82715235,02:19.8,3.5,5873.0,7.8,27.1,5873.0 +1863,3.82,52.2404379,6.8271984,02:10.8,3.8,5882.0,7.7,29.6,5882.0 +1864,3.82,52.240413200000006,6.827244650000001,02:10.8,3.8,5882.0,7.7,29.6,5882.0 +1865,4.04,52.2403885,6.8272909,02:03.8,4.0,5890.0,7.8,30.8,5890.0 +1866,4.04,52.2403636,6.8273377,02:03.8,4.0,5890.0,7.8,30.8,5890.0 +1867,4.17,52.2403387,6.8273845,01:59.9,4.1,5898.0,8.1,30.6,5898.0 +1868,4.17,52.24031545,6.82742605,01:59.9,4.1,5898.0,8.1,30.6,5898.0 +1869,4.23,52.2402922,6.8274675999999985,01:58.1,4.2,5906.0,8.2,30.8,5906.0 +1870,4.23,52.2402663,6.827513049999999,01:58.1,4.2,5906.0,8.2,30.8,5906.0 +1871,4.26,52.2402404,6.8275585,01:57.2,4.2,5915.0,8.2,31.0,5915.0 +1872,4.26,52.2402154,6.82760425,01:57.2,4.2,5915.0,8.2,31.0,5915.0 +1873,4.26,52.2401904,6.82765,01:57.3,4.2,5923.0,8.2,31.1,5923.0 +1874,4.26,52.2401687,6.8276886,01:57.3,4.2,5923.0,8.2,31.1,5923.0 +1875,4.24,52.240147,6.8277272,01:57.9,4.2,5930.0,8.1,31.2,5930.0 +1876,4.24,52.24011995,6.82777435,01:57.9,4.2,5930.0,8.1,31.2,5930.0 +1877,4.2,52.2400929,6.8278215,01:58.9,4.2,5939.0,8.0,31.3,5939.0 +1878,4.16,52.2400547,6.8279020999999975,02:00.1,4.1,5946.0,8.0,31.1,5946.0 +1879,4.16,52.24003746666667,6.827933033333332,02:00.1,4.1,5946.0,8.0,31.1,5946.0 +1880,4.16,52.24002023333333,6.827963966666666,02:00.1,4.1,5946.0,8.0,31.1,5946.0 +1881,4.15,52.240003,6.827994900000001,02:00.5,4.1,5954.0,7.9,31.1,5954.0 +1882,4.18,52.2399524,6.8280856,01:59.5,4.1,5963.0,8.0,31.3,5963.0 +1883,4.18,52.2399281,6.8281276,01:59.5,4.1,5963.0,8.0,31.3,5963.0 +1884,4.23,52.23990379999999,6.8281696,01:58.3,4.2,5971.0,8.0,31.6,5971.0 +1885,4.23,52.23987815,6.82821475,01:58.3,4.2,5971.0,8.0,31.6,5971.0 +1886,4.25,52.23985250000001,6.8282599,01:57.5,4.2,5979.0,8.1,31.5,5979.0 +1887,4.25,52.23982885000001,6.828301249999999,01:57.5,4.2,5979.0,8.1,31.5,5979.0 +1888,4.26,52.2398052,6.828342599999999,01:57.4,4.2,5987.0,8.1,31.4,5987.0 +1889,4.26,52.239781550000004,6.82838285,01:57.4,4.2,5987.0,8.1,31.4,5987.0 +1890,4.24,52.2397579,6.8284231,01:57.9,4.2,5994.0,8.0,31.4,5994.0 +1891,4.24,52.2397329,6.82846725,01:57.9,4.2,5994.0,8.0,31.4,5994.0 +1892,4.22,52.2397079,6.8285114,01:58.3,4.2,6003.0,8.0,31.4,6003.0 +1893,4.22,52.23968415,6.8285528499999995,01:58.3,4.2,6003.0,8.0,31.4,6003.0 +1894,4.23,52.2396604,6.8285943,01:58.3,4.2,6010.0,7.9,31.7,6010.0 +1895,4.23,52.239636000000004,6.8286352,01:58.3,4.2,6010.0,7.9,31.7,6010.0 +1896,4.24,52.2396116,6.8286761,01:57.9,4.2,6018.0,8.0,31.7,6018.0 +1897,4.25,52.2395578,6.8287644,01:57.7,4.2,6027.0,8.1,31.2,6027.0 +1898,4.25,52.23953185,6.8288091,01:57.7,4.2,6027.0,8.1,31.2,6027.0 +1899,4.24,52.2395059,6.8288538,01:57.9,4.2,6035.0,8.1,31.3,6035.0 +1900,4.24,52.239482200000005,6.8288934,01:57.9,4.2,6035.0,8.1,31.3,6035.0 +1901,4.21,52.23945850000001,6.828933,01:58.6,4.2,6043.0,8.0,31.3,6043.0 +1902,4.21,52.23943340000001,6.828976600000001,01:58.6,4.2,6043.0,8.0,31.3,6043.0 +1903,4.18,52.2394083,6.8290202,01:59.6,4.1,6051.0,7.9,31.3,6051.0 +1904,4.18,52.2393833,6.8290612,01:59.6,4.1,6051.0,7.9,31.3,6051.0 +1905,4.15,52.2393583,6.8291022,02:00.6,4.1,6059.0,7.8,31.5,6059.0 +1906,4.15,52.23933405,6.82914515,02:00.6,4.1,6059.0,7.8,31.5,6059.0 +1907,4.13,52.2393098,6.8291881,02:01.1,4.1,6067.0,7.8,31.4,6067.0 +1908,4.13,52.23928445,6.8292309499999995,02:01.1,4.1,6067.0,7.8,31.4,6067.0 +1909,4.11,52.2392591,6.8292738,02:01.7,4.1,6075.0,7.9,31.1,6075.0 +1910,4.11,52.2392366,6.8293099999999995,02:01.7,4.1,6075.0,7.9,31.1,6075.0 +1911,4.11,52.2392141,6.8293462,02:01.6,4.1,6082.0,7.8,31.2,6082.0 +1912,4.11,52.23918645,6.829392499999999,02:01.6,4.1,6082.0,7.8,31.2,6082.0 +1913,4.15,52.2391588,6.8294387999999975,02:00.5,4.1,6091.0,7.8,31.6,6091.0 +1914,4.15,52.2391327,6.8294802999999975,02:00.5,4.1,6091.0,7.8,31.6,6091.0 +1915,4.17,52.2391066,6.8295217999999975,02:00.0,4.1,6099.0,8.2,30.1,6099.0 +1916,4.17,52.2390814,6.829560249999999,02:00.0,4.1,6099.0,8.2,30.1,6099.0 +1917,4.09,52.2390562,6.829598700000001,02:02.0,4.1,6106.0,9.1,27.0,6106.0 +1918,4.09,52.23902666666667,6.829642600000001,02:02.0,4.1,6106.0,9.1,27.0,6106.0 +1919,4.09,52.238997133333335,6.829686500000001,02:02.0,4.1,6106.0,9.1,27.0,6106.0 +1920,3.9,52.2389676,6.829730400000001,02:08.1,3.9,6120.0,10.0,23.3,6120.0 +1921,3.9,52.2389525,6.829753433333334,02:08.1,3.9,6120.0,10.0,23.3,6120.0 +1922,3.9,52.2389374,6.829776466666666,02:08.1,3.9,6120.0,10.0,23.3,6120.0 +1923,3.56,52.2389223,6.829799499999999,02:20.4,3.5,6127.0,10.7,19.8,6127.0 +1924,3.56,52.23890133333333,6.829830733333333,02:20.4,3.5,6127.0,10.7,19.8,6127.0 +1925,3.56,52.23888036666667,6.829861966666666,02:20.4,3.5,6127.0,10.7,19.8,6127.0 +1926,3.18,52.2388594,6.8298932,02:37.0,3.1,6136.0,10.6,17.9,6136.0 +1927,3.18,52.238837133333334,6.8299241666666655,02:37.0,3.1,6136.0,10.6,17.9,6136.0 +1928,3.18,52.238814866666665,6.829955133333332,02:37.0,3.1,6136.0,10.6,17.9,6136.0 +1929,2.9,52.2387926,6.8299860999999975,02:52.2,2.9,6146.0,9.6,18.1,6146.0 +1930,2.9,52.238778249999996,6.830007274999998,02:52.2,2.9,6146.0,9.6,18.1,6146.0 +1931,2.9,52.238763899999995,6.830028449999999,02:52.2,2.9,6146.0,9.6,18.1,6146.0 +1932,2.9,52.23874955,6.830049624999999,02:52.2,2.9,6146.0,9.6,18.1,6146.0 +1933,2.76,52.2387352,6.8300708,03:01.4,2.7,6154.0,9.4,17.5,6154.0 +1934,2.76,52.238714333333334,6.830101699999999,03:01.4,2.7,6154.0,9.4,17.5,6154.0 +1935,2.76,52.23869346666667,6.830132599999999,03:01.4,2.7,6154.0,9.4,17.5,6154.0 +1936,2.72,52.2386726,6.8301634999999985,03:03.6,2.7,6164.0,9.4,17.3,6164.0 +1937,2.72,52.23865565,6.830187549999999,03:03.6,2.7,6164.0,9.4,17.3,6164.0 +1938,2.72,52.238638699999996,6.8302116,03:03.6,2.7,6164.0,9.4,17.3,6164.0 +1939,2.72,52.23862175,6.8302356500000005,03:03.6,2.7,6164.0,9.4,17.3,6164.0 +1940,2.75,52.2386048,6.830259700000001,03:01.8,2.7,6174.0,9.4,17.5,6174.0 +1941,2.75,52.2385856,6.830290700000001,03:01.8,2.7,6174.0,9.4,17.5,6174.0 +1942,2.75,52.238566399999996,6.830321700000002,03:01.8,2.7,6174.0,9.4,17.5,6174.0 +1943,2.78,52.2385472,6.8303527000000015,03:00.0,2.7,6183.0,9.4,17.7,6183.0 +1944,2.78,52.23852716666667,6.830385200000001,03:00.0,2.7,6183.0,9.4,17.7,6183.0 +1945,2.78,52.238507133333336,6.830417700000001,03:00.0,2.7,6183.0,9.4,17.7,6183.0 +1946,2.8,52.23848710000001,6.8304502000000005,02:58.5,2.8,6192.0,9.3,18.0,6192.0 +1947,2.8,52.238472325000004,6.8304738,02:58.5,2.8,6192.0,9.3,18.0,6192.0 +1948,2.8,52.23845755000001,6.8304974000000005,02:58.5,2.8,6192.0,9.3,18.0,6192.0 +1949,2.8,52.23844277500001,6.830521,02:58.5,2.8,6192.0,9.3,18.0,6192.0 +1950,2.84,52.238428000000006,6.8305446,02:56.1,2.8,6201.0,9.3,18.2,6201.0 +1951,2.84,52.238409133333334,6.830576233333333,02:56.1,2.8,6201.0,9.3,18.2,6201.0 +1952,2.84,52.23839026666667,6.830607866666667,02:56.1,2.8,6201.0,9.3,18.2,6201.0 +1953,2.88,52.2383714,6.8306395,02:53.3,2.8,6210.0,9.5,18.1,6210.0 +1954,2.88,52.238349766666666,6.830675333333334,02:53.3,2.8,6210.0,9.5,18.1,6210.0 +1955,2.88,52.23832813333333,6.830711166666666,02:53.3,2.8,6210.0,9.5,18.1,6210.0 +1956,2.93,52.2383065,6.830747,02:50.8,2.9,6221.0,9.7,18.0,6221.0 +1957,2.93,52.2382854,6.8307815666666665,02:50.8,2.9,6221.0,9.7,18.0,6221.0 +1958,2.93,52.2382643,6.830816133333333,02:50.8,2.9,6221.0,9.7,18.0,6221.0 +1959,2.96,52.2382432,6.8308507,02:49.0,2.9,6231.0,9.8,18.1,6231.0 +1960,2.96,52.238228425,6.83087585,02:49.0,2.9,6231.0,9.8,18.1,6231.0 +1961,2.96,52.23821365,6.830900999999999,02:49.0,2.9,6231.0,9.8,18.1,6231.0 +1962,2.96,52.238198874999995,6.830926149999999,02:49.0,2.9,6231.0,9.8,18.1,6231.0 +1963,2.98,52.2381841,6.830951299999999,02:47.7,2.9,6240.0,9.6,18.5,6240.0 +1964,2.98,52.2381647,6.830982233333332,02:47.7,2.9,6240.0,9.6,18.5,6240.0 +1965,2.98,52.23814529999999,6.831013166666666,02:47.7,2.9,6240.0,9.6,18.5,6240.0 +1966,3.0,52.23812589999999,6.831044099999999,02:46.8,3.0,6249.0,9.4,18.9,6249.0 +1967,3.0,52.23810543333333,6.8310773,02:46.8,3.0,6249.0,9.4,18.9,6249.0 +1968,3.0,52.23808496666666,6.831110499999999,02:46.8,3.0,6249.0,9.4,18.9,6249.0 +1969,3.0,52.2380645,6.8311437,02:46.4,3.0,6259.0,9.4,19.1,6259.0 +1970,3.0,52.2380459,6.8311762666666676,02:46.4,3.0,6259.0,9.4,19.1,6259.0 +1971,3.0,52.238027300000006,6.831208833333334,02:46.4,3.0,6259.0,9.4,19.1,6259.0 +1972,3.01,52.23800870000001,6.8312414000000015,02:45.8,3.0,6268.0,9.3,19.3,6268.0 +1973,3.01,52.23798813333334,6.831275500000001,02:45.8,3.0,6268.0,9.3,19.3,6268.0 +1974,3.01,52.23796756666667,6.831309600000002,02:45.8,3.0,6268.0,9.3,19.3,6268.0 +1975,3.05,52.237947,6.8313437000000015,02:43.6,3.0,6278.0,9.0,20.1,6278.0 +1976,3.05,52.23792863333333,6.831373433333334,02:43.6,3.0,6278.0,9.0,20.1,6278.0 +1977,3.05,52.23791026666667,6.831403166666666,02:43.6,3.0,6278.0,9.0,20.1,6278.0 +1978,3.16,52.2378919,6.8314328999999985,02:38.2,3.1,6286.0,8.4,22.4,6286.0 +1979,3.16,52.23786735,6.83147305,02:38.2,3.1,6286.0,8.4,22.4,6286.0 +1980,3.35,52.2378428,6.8315132,02:29.2,3.3,6294.0,7.8,25.6,6294.0 +1981,3.35,52.23781685,6.831557149999999,02:29.2,3.3,6294.0,7.8,25.6,6294.0 +1982,3.61,52.2377909,6.8316010999999985,02:18.5,3.6,6303.0,7.6,28.3,6303.0 +1983,3.61,52.237765800000005,6.831644149999999,02:18.5,3.6,6303.0,7.6,28.3,6303.0 +1984,3.87,52.2377407,6.8316872,02:09.2,3.8,6311.0,7.7,29.9,6311.0 +1985,3.87,52.23771525,6.83172725,02:09.2,3.8,6311.0,7.7,29.9,6311.0 +1986,4.08,52.2376898,6.831767299999999,02:02.6,4.0,6319.0,7.9,30.7,6319.0 +1987,4.08,52.237662799999995,6.831811399999999,02:02.6,4.0,6319.0,7.9,30.7,6319.0 +1988,4.23,52.23763579999999,6.8318555,01:58.3,4.2,6327.0,8.1,30.9,6327.0 +1989,4.23,52.23760885,6.8319,01:58.3,4.2,6327.0,8.1,30.9,6327.0 +1990,4.3,52.2375819,6.8319445000000005,01:55.9,4.3,6336.0,8.1,31.6,6336.0 +1991,4.3,52.2375587,6.831981799999999,01:55.9,4.3,6336.0,8.1,31.6,6336.0 +1992,4.34,52.2375355,6.832019099999999,01:54.9,4.3,6343.0,8.1,32.0,6343.0 +1993,4.34,52.2374809,6.8321065,01:54.9,4.3,6351.0,8.2,31.6,6351.0 +1994,4.34,52.2374542,6.8321489500000006,01:54.9,4.3,6351.0,8.2,31.6,6351.0 +1995,4.3,52.2374275,6.8321914,01:56.0,4.3,6360.0,8.2,31.4,6360.0 +1996,4.3,52.23740973333334,6.832219266666667,01:56.0,4.3,6360.0,8.2,31.4,6360.0 +1997,4.3,52.23739196666668,6.8322471333333334,01:56.0,4.3,6360.0,8.2,31.4,6360.0 +1998,4.25,52.23737420000001,6.832275,01:57.6,4.2,6368.0,8.1,31.3,6368.0 +1999,4.19,52.2373259,6.832351700000001,01:59.2,4.1,6375.0,8.0,31.1,6375.0 +2000,4.19,52.2372999,6.832394800000001,01:59.2,4.1,6375.0,8.0,31.1,6375.0 +2001,4.16,52.2372739,6.8324379,02:00.1,4.1,6384.0,7.9,31.2,6384.0 +2002,4.16,52.2372492,6.83247725,02:00.1,4.1,6384.0,7.9,31.2,6384.0 +2003,4.16,52.2372245,6.8325166,02:00.2,4.1,6391.0,7.9,31.5,6391.0 +2004,4.16,52.2371986,6.8325598,02:00.2,4.1,6391.0,7.9,31.5,6391.0 +2005,4.18,52.2371727,6.832603,01:59.7,4.1,6400.0,7.9,31.6,6400.0 +2006,4.18,52.237149900000006,6.83263885,01:59.7,4.1,6400.0,7.9,31.6,6400.0 +2007,4.2,52.2371271,6.8326747,01:59.0,4.2,6407.0,7.7,32.4,6407.0 +2008,4.2,52.23710225,6.8327184999999995,01:59.0,4.2,6407.0,7.7,32.4,6407.0 +2009,4.22,52.2370774,6.832762299999999,01:58.4,4.2,6415.0,7.7,32.6,6415.0 +2010,4.22,52.2370291,6.832840299999999,01:58.4,4.2,6422.0,7.7,32.6,6422.0 +2011,4.22,52.23701173333333,6.832868899999999,01:58.4,4.2,6422.0,7.7,32.6,6422.0 +2012,4.22,52.23699436666667,6.8328975,01:58.4,4.2,6422.0,7.7,32.6,6422.0 +2013,4.21,52.236977,6.8329261,01:58.8,4.2,6430.0,7.8,32.0,6430.0 +2014,4.19,52.23692929999999,6.8330038,01:59.3,4.1,6438.0,7.8,31.9,6438.0 +2015,4.19,52.23690505,6.83304345,01:59.3,4.1,6438.0,7.8,31.9,6438.0 +2016,4.18,52.2368808,6.833083099999999,01:59.6,4.1,6446.0,7.8,31.8,6446.0 +2017,4.18,52.23685655,6.833121599999999,01:59.6,4.1,6446.0,7.8,31.8,6446.0 +2018,4.19,52.2368323,6.8331601,01:59.4,4.1,6453.0,7.8,32.0,6453.0 +2019,4.19,52.23680575,6.833202699999999,01:59.4,4.1,6453.0,7.8,32.0,6453.0 +2020,4.21,52.2367792,6.8332453,01:58.7,4.2,6461.0,7.8,32.2,6461.0 +2021,4.21,52.2367582,6.833281250000001,01:58.7,4.2,6461.0,7.8,32.2,6461.0 +2022,4.23,52.2367372,6.8333172000000015,01:58.1,4.2,6468.0,7.9,32.1,6468.0 +2023,4.23,52.2366876,6.833404700000001,01:58.0,4.2,6476.0,8.0,31.6,6476.0 +2024,4.23,52.236660900000004,6.833446500000001,01:58.0,4.2,6476.0,8.0,31.6,6476.0 +2025,4.21,52.2366342,6.8334883,01:58.6,4.2,6485.0,7.9,31.6,6485.0 +2026,4.21,52.23661065,6.83352715,01:58.6,4.2,6485.0,7.9,31.6,6485.0 +2027,4.18,52.2365871,6.833566,01:59.6,4.1,6492.0,7.8,31.8,6492.0 +2028,4.18,52.2365638,6.83360495,01:59.6,4.1,6492.0,7.8,31.8,6492.0 +2029,4.13,52.2365405,6.8336439,02:00.6,4.1,6499.0,7.8,31.8,6499.0 +2030,4.13,52.23651605,6.8336863,02:00.6,4.1,6499.0,7.8,31.8,6499.0 +2031,4.12,52.2364916,6.8337287,02:01.3,4.1,6507.0,7.7,31.7,6507.0 +2032,4.12,52.236464749999996,6.8337705500000006,02:01.3,4.1,6507.0,7.7,31.7,6507.0 +2033,4.12,52.2364379,6.833812400000001,02:01.3,4.1,6516.0,7.6,32.1,6516.0 +2034,4.12,52.23641535,6.833850650000002,02:01.3,4.1,6516.0,7.6,32.1,6516.0 +2035,4.12,52.2363928,6.8338889000000025,02:01.5,4.1,6523.0,8.0,30.6,6523.0 +2036,4.12,52.236369700000004,6.833927750000001,02:01.5,4.1,6523.0,8.0,30.6,6523.0 +2037,4.05,52.23634660000001,6.8339666,02:03.3,4.0,6530.0,8.6,28.1,6530.0 +2038,4.05,52.236319166666675,6.8340092666666665,02:03.3,4.0,6530.0,8.6,28.1,6530.0 +2039,4.05,52.23629173333334,6.834051933333332,02:03.3,4.0,6530.0,8.6,28.1,6530.0 +2040,3.9,52.2362643,6.8340945999999985,02:08.3,3.9,6543.0,9.2,25.3,6543.0 +2041,3.9,52.2362413,6.834130199999999,02:08.3,3.9,6543.0,9.2,25.3,6543.0 +2042,3.63,52.2362183,6.834165799999999,02:17.8,3.6,6550.0,9.8,22.1,6550.0 +2043,3.63,52.23620026666667,6.8341935666666656,02:17.8,3.6,6550.0,9.8,22.1,6550.0 +2044,3.63,52.23618223333334,6.834221333333333,02:17.8,3.6,6550.0,9.8,22.1,6550.0 +2045,3.3,52.23616420000001,6.834249099999999,02:31.3,3.3,6558.0,9.7,20.2,6558.0 +2046,3.3,52.236142766666674,6.834278899999999,02:31.3,3.3,6558.0,9.7,20.2,6558.0 +2047,3.3,52.23612133333334,6.8343086999999985,02:31.3,3.3,6558.0,9.7,20.2,6558.0 +2048,3.03,52.2360999,6.8343384999999985,02:45.0,3.0,6568.0,9.0,20.1,6568.0 +2049,3.03,52.236082599999996,6.834363899999999,02:45.0,3.0,6568.0,9.0,20.1,6568.0 +2050,3.03,52.2360653,6.8343893,02:45.0,3.0,6568.0,9.0,20.1,6568.0 +2051,2.86,52.236048,6.8344147,02:54.8,2.8,6575.0,8.7,19.7,6575.0 +2052,2.86,52.23602693333333,6.834443766666666,02:54.8,2.8,6575.0,8.7,19.7,6575.0 +2053,2.86,52.236005866666666,6.834472833333334,02:54.8,2.8,6575.0,8.7,19.7,6575.0 +2054,2.81,52.2359848,6.8345019,02:58.2,2.8,6585.0,8.6,19.4,6585.0 +2055,2.81,52.2359651,6.8345297,02:58.2,2.8,6585.0,8.6,19.4,6585.0 +2056,2.81,52.2359454,6.834557500000001,02:58.2,2.8,6585.0,8.6,19.4,6585.0 +2057,2.84,52.2359257,6.8345853000000005,02:56.2,2.8,6593.0,8.7,19.4,6593.0 +2058,2.84,52.2359103,6.834607625,02:56.2,2.8,6593.0,8.7,19.4,6593.0 +2059,2.84,52.235894900000005,6.83462995,02:56.2,2.8,6593.0,8.7,19.4,6593.0 +2060,2.84,52.2358795,6.834652275,02:56.2,2.8,6593.0,8.7,19.4,6593.0 +2061,2.9,52.2358641,6.8346746,02:52.5,2.9,6603.0,9.0,19.1,6603.0 +2062,2.9,52.23584313333333,6.834703966666667,02:52.5,2.9,6603.0,9.0,19.1,6603.0 +2063,2.9,52.235822166666665,6.834733333333334,02:52.5,2.9,6603.0,9.0,19.1,6603.0 +2064,2.96,52.2358012,6.8347627000000015,02:49.0,2.9,6612.0,9.0,19.5,6612.0 +2065,2.96,52.2357812,6.834790933333334,02:49.0,2.9,6612.0,9.0,19.5,6612.0 +2066,2.96,52.2357612,6.8348191666666676,02:49.0,2.9,6612.0,9.0,19.5,6612.0 +2067,3.01,52.2357412,6.8348474,02:46.0,3.0,6621.0,9.2,19.4,6621.0 +2068,3.01,52.23572016666667,6.8348764,02:46.0,3.0,6621.0,9.2,19.4,6621.0 +2069,3.01,52.235699133333334,6.8349054,02:46.0,3.0,6621.0,9.2,19.4,6621.0 +2070,3.05,52.2356781,6.8349344,02:44.1,3.0,6630.0,9.3,19.6,6630.0 +2071,3.05,52.235657366666665,6.8349633,02:44.1,3.0,6630.0,9.3,19.6,6630.0 +2072,3.05,52.235636633333336,6.834992199999999,02:44.1,3.0,6630.0,9.3,19.6,6630.0 +2073,3.06,52.2356159,6.8350211,02:43.6,3.0,6639.0,9.3,19.6,6639.0 +2074,3.06,52.235595366666665,6.835051333333333,02:43.6,3.0,6639.0,9.3,19.6,6639.0 +2075,3.06,52.23557483333333,6.835081566666666,02:43.6,3.0,6639.0,9.3,19.6,6639.0 +2076,3.04,52.2355543,6.8351118,02:44.3,3.0,6648.0,9.4,19.3,6648.0 +2077,3.04,52.235534,6.835140633333333,02:44.3,3.0,6648.0,9.4,19.3,6648.0 +2078,3.04,52.2355137,6.835169466666666,02:44.3,3.0,6648.0,9.4,19.3,6648.0 +2079,3.02,52.2354934,6.835198299999999,02:45.4,3.0,6657.0,9.4,19.2,6657.0 +2080,3.02,52.23547236666667,6.835228333333333,02:45.4,3.0,6657.0,9.4,19.2,6657.0 +2081,3.02,52.23545133333333,6.835258366666666,02:45.4,3.0,6657.0,9.4,19.2,6657.0 +2082,3.01,52.2354303,6.8352884000000005,02:46.1,3.0,6666.0,9.3,19.3,6666.0 +2083,3.01,52.23540943333334,6.835319466666666,02:46.1,3.0,6666.0,9.3,19.3,6666.0 +2084,3.01,52.23538856666667,6.835350533333333,02:46.1,3.0,6666.0,9.3,19.3,6666.0 +2085,3.01,52.23536770000001,6.835381599999999,02:46.0,3.0,6676.0,9.3,19.3,6676.0 +2086,3.01,52.23534570000001,6.835413699999999,02:46.0,3.0,6676.0,9.3,19.3,6676.0 +2087,3.01,52.23532370000001,6.8354458000000005,02:46.0,3.0,6676.0,9.3,19.3,6676.0 +2088,3.02,52.23530170000001,6.835477900000001,02:45.3,3.0,6686.0,9.4,19.3,6686.0 +2089,3.02,52.23528123333334,6.835507766666668,02:45.3,3.0,6686.0,9.4,19.3,6686.0 +2090,3.02,52.23526076666667,6.8355376333333355,02:45.3,3.0,6686.0,9.4,19.3,6686.0 +2091,3.04,52.2352403,6.8355675000000025,02:44.5,3.0,6695.0,9.3,19.4,6695.0 +2092,3.04,52.23522103333333,6.8355957666666685,02:44.5,3.0,6695.0,9.3,19.4,6695.0 +2093,3.04,52.23520176666667,6.8356240333333345,02:44.5,3.0,6695.0,9.3,19.4,6695.0 +2094,3.06,52.2351825,6.8356523000000005,02:43.2,3.0,6704.0,9.0,20.3,6704.0 +2095,3.06,52.235162100000004,6.8356807,02:43.2,3.0,6704.0,9.0,20.3,6704.0 +2096,3.06,52.2351417,6.8357091,02:43.2,3.0,6704.0,9.0,20.3,6704.0 +2097,3.13,52.2351213,6.8357375,02:39.5,3.1,6712.0,8.4,22.2,6712.0 +2098,3.13,52.23509475,6.8357771,02:39.5,3.1,6712.0,8.4,22.2,6712.0 +2099,3.28,52.2350682,6.8358167000000005,02:32.3,3.2,6720.0,7.9,24.8,6720.0 +2100,3.28,52.2350407,6.8358565,02:32.3,3.2,6720.0,7.9,24.8,6720.0 +2101,3.5,52.2350132,6.8358963,02:22.8,3.5,6729.0,7.6,27.5,6729.0 +2102,3.5,52.23498755,6.8359358,02:22.8,3.5,6729.0,7.6,27.5,6729.0 +2103,3.74,52.2349619,6.8359752999999985,02:13.8,3.7,6737.0,7.6,29.2,6737.0 +2104,3.74,52.23494416666667,6.836002399999999,02:13.8,3.7,6737.0,7.6,29.2,6737.0 +2105,3.74,52.23492643333334,6.836029499999999,02:13.8,3.7,6737.0,7.6,29.2,6737.0 +2106,3.93,52.23490870000001,6.836056599999999,02:07.3,3.9,6745.0,7.9,29.7,6745.0 +2107,4.04,52.2348567,6.8361372000000005,02:03.8,4.0,6753.0,8.1,29.8,6753.0 +2108,4.04,52.2348312,6.836179100000001,02:03.8,4.0,6753.0,8.1,29.8,6753.0 +2109,4.07,52.2348057,6.836221000000001,02:02.9,4.0,6761.0,8.2,29.5,6761.0 +2110,4.07,52.23478853333334,6.8362484000000014,02:02.9,4.0,6761.0,8.2,29.5,6761.0 +2111,4.07,52.23477136666668,6.836275800000001,02:02.9,4.0,6761.0,8.2,29.5,6761.0 +2112,4.05,52.23475420000001,6.8363032000000015,02:03.3,4.0,6769.0,8.2,29.4,6769.0 +2113,4.04,52.2347023,6.8363857,02:03.8,4.0,6777.0,8.2,29.4,6777.0 +2114,4.04,52.234684433333335,6.8364153666666665,02:03.8,4.0,6777.0,8.2,29.4,6777.0 +2115,4.04,52.23466656666667,6.836445033333334,02:03.8,4.0,6777.0,8.2,29.4,6777.0 +2116,4.03,52.2346487,6.8364747,02:04.1,4.0,6785.0,8.2,29.4,6785.0 +2117,4.03,52.23462445,6.836513050000001,02:04.1,4.0,6785.0,8.2,29.4,6785.0 +2118,4.03,52.2346002,6.836551400000001,02:04.0,4.0,6793.0,8.1,29.8,6793.0 +2119,4.03,52.234572400000005,6.8365949000000015,02:04.0,4.0,6793.0,8.1,29.8,6793.0 +2120,4.04,52.2345446,6.836638400000001,02:03.7,4.0,6801.0,8.0,30.1,6801.0 +2121,4.04,52.23451995,6.836679850000001,02:03.7,4.0,6801.0,8.0,30.1,6801.0 +2122,4.03,52.2344953,6.8367213000000016,02:04.0,4.0,6809.0,8.0,30.1,6809.0 +2123,4.03,52.2344717,6.836759100000001,02:04.0,4.0,6809.0,8.0,30.1,6809.0 +2124,4.01,52.2344481,6.8367969,02:04.6,4.0,6817.0,8.0,29.9,6817.0 +2125,4.01,52.234420650000004,6.8368407,02:04.6,4.0,6817.0,8.0,29.9,6817.0 +2126,4.0,52.2343932,6.8368845,02:04.9,4.0,6825.0,8.0,29.9,6825.0 +2127,4.0,52.234368700000005,6.8369257,02:04.9,4.0,6825.0,8.0,29.9,6825.0 +2128,4.0,52.2343442,6.836966900000001,02:04.8,4.0,6833.0,8.0,29.8,6833.0 +2129,4.0,52.23432075,6.83700575,02:04.8,4.0,6833.0,8.0,29.8,6833.0 +2130,4.01,52.2342973,6.8370446,02:04.4,4.0,6840.0,8.0,29.9,6840.0 +2131,4.01,52.234269350000005,6.837089849999999,02:04.4,4.0,6840.0,8.0,29.9,6840.0 +2132,4.05,52.2342414,6.8371350999999985,02:03.4,4.0,6849.0,8.1,29.7,6849.0 +2133,4.05,52.23421615,6.837177149999999,02:03.4,4.0,6849.0,8.1,29.7,6849.0 +2134,4.05,52.2341909,6.8372192,02:03.0,4.0,6857.0,8.1,29.8,6857.0 +2135,4.05,52.23416855000001,6.8372588,02:03.0,4.0,6857.0,8.1,29.8,6857.0 +2136,4.05,52.23414620000001,6.8372984,02:03.3,4.0,6865.0,8.1,29.9,6865.0 +2137,4.05,52.234119500000006,6.83734325,02:03.3,4.0,6865.0,8.1,29.9,6865.0 +2138,4.04,52.2340928,6.837388099999999,02:03.8,4.0,6873.0,8.0,30.0,6873.0 +2139,4.04,52.2340691,6.837429700000001,02:03.8,4.0,6873.0,8.0,30.0,6873.0 +2140,4.0,52.2340454,6.8374713000000025,02:04.9,4.0,6881.0,8.0,29.8,6881.0 +2141,4.0,52.23402315,6.837510300000002,02:04.9,4.0,6881.0,8.0,29.8,6881.0 +2142,3.94,52.2340009,6.8375493,02:06.8,3.9,6888.0,8.2,28.7,6888.0 +2143,3.94,52.2339743,6.8375968,02:06.8,3.9,6888.0,8.2,28.7,6888.0 +2144,3.85,52.2339477,6.8376443,02:09.9,3.8,6897.0,8.6,26.6,6897.0 +2145,3.85,52.23392065,6.83769015,02:09.9,3.8,6897.0,8.6,26.6,6897.0 +2146,3.7,52.2338936,6.8377360000000005,02:15.2,3.7,6906.0,8.8,25.0,6906.0 +2147,3.7,52.233874,6.837766066666667,02:15.2,3.7,6906.0,8.8,25.0,6906.0 +2148,3.7,52.2338544,6.837796133333334,02:15.2,3.7,6906.0,8.8,25.0,6906.0 +2149,3.52,52.2338348,6.8378262,02:22.2,3.5,6914.0,8.9,23.5,6914.0 +2150,3.52,52.23380765,6.83786745,02:22.2,3.5,6914.0,8.9,23.5,6914.0 +2151,3.35,52.2337805,6.8379087,02:29.3,3.3,6923.0,8.8,22.6,6923.0 +2152,3.35,52.2337616,6.837936666666666,02:29.3,3.3,6923.0,8.8,22.6,6923.0 +2153,3.35,52.23374269999999,6.837964633333333,02:29.3,3.3,6923.0,8.8,22.6,6923.0 +2154,3.2,52.23372379999999,6.837992599999999,02:36.0,3.2,6931.0,8.6,22.2,6931.0 +2155,3.2,52.23370619999999,6.838020099999999,02:36.0,3.2,6931.0,8.6,22.2,6931.0 +2156,3.2,52.2336886,6.838047599999998,02:36.0,3.2,6931.0,8.6,22.2,6931.0 +2157,3.07,52.233671,6.8380750999999975,02:42.8,3.0,6939.0,8.7,21.1,6939.0 +2158,3.07,52.233651,6.8381054333333315,02:42.8,3.0,6939.0,8.7,21.1,6939.0 +2159,3.07,52.233631,6.838135766666666,02:42.8,3.0,6939.0,8.7,21.1,6939.0 +2160,2.92,52.233611,6.8381661,02:51.1,2.9,6949.0,8.8,19.7,6949.0 +2161,2.92,52.233592333333334,6.8381948999999995,02:51.1,2.9,6949.0,8.8,19.7,6949.0 +2162,2.92,52.23357366666667,6.838223699999999,02:51.1,2.9,6949.0,8.8,19.7,6949.0 +2163,2.75,52.233555,6.8382524999999985,03:01.6,2.7,6957.0,8.7,18.9,6957.0 +2164,2.75,52.233538200000005,6.838277899999999,03:01.6,2.7,6957.0,8.7,18.9,6957.0 +2165,2.75,52.2335214,6.8383033,03:01.6,2.7,6957.0,8.7,18.9,6957.0 +2166,2.6,52.2335046,6.8383287,03:12.1,2.6,6965.0,8.5,18.2,6965.0 +2167,2.6,52.23349175,6.838349225,03:12.1,2.6,6965.0,8.5,18.2,6965.0 +2168,2.6,52.2334789,6.83836975,03:12.1,2.6,6965.0,8.5,18.2,6965.0 +2169,2.6,52.233466050000004,6.838390274999999,03:12.1,2.6,6965.0,8.5,18.2,6965.0 +2170,2.52,52.2334532,6.838410799999999,03:18.2,2.5,6973.0,8.2,18.3,6973.0 +2171,2.52,52.23343526666667,6.838440466666666,03:18.2,2.5,6973.0,8.2,18.3,6973.0 +2172,2.52,52.233417333333335,6.838470133333333,03:18.2,2.5,6973.0,8.2,18.3,6973.0 +2173,2.52,52.2333994,6.838499799999999,03:18.2,2.5,6981.0,8.1,18.5,6981.0 +2174,2.52,52.23338183333333,6.838528933333333,03:18.2,2.5,6981.0,8.1,18.5,6981.0 +2175,2.52,52.23336426666667,6.838558066666667,03:18.2,2.5,6981.0,8.1,18.5,6981.0 +2176,2.57,52.2333467,6.8385872,03:14.2,2.5,6990.0,8.3,18.4,6990.0 +2177,2.57,52.23332883333333,6.838616766666667,03:14.2,2.5,6990.0,8.3,18.4,6990.0 +2178,2.57,52.233310966666664,6.838646333333333,03:14.2,2.5,6990.0,8.3,18.4,6990.0 +2179,2.63,52.2332931,6.8386759,03:09.9,2.6,6998.0,8.5,18.3,6998.0 +2180,2.63,52.233278325,6.838699275,03:09.9,2.6,6998.0,8.5,18.3,6998.0 +2181,2.63,52.233263550000004,6.83872265,03:09.9,2.6,6998.0,8.5,18.3,6998.0 +2182,2.63,52.233248775,6.838746025000001,03:09.9,2.6,6998.0,8.5,18.3,6998.0 +2183,2.67,52.233234,6.8387694,03:07.4,2.6,7007.0,8.6,18.5,7007.0 +2184,2.67,52.23321633333334,6.838798966666667,03:07.4,2.6,7007.0,8.6,18.5,7007.0 +2185,2.67,52.23319866666667,6.838828533333333,03:07.4,2.6,7007.0,8.6,18.5,7007.0 +2186,2.68,52.233181,6.8388581,03:06.3,2.6,7016.0,8.6,18.5,7016.0 +2187,2.68,52.23316163333333,6.838889366666667,03:06.3,2.6,7016.0,8.6,18.5,7016.0 +2188,2.68,52.23314226666667,6.838920633333333,03:06.3,2.6,7016.0,8.6,18.5,7016.0 +2189,2.7,52.2331229,6.8389519,03:05.1,2.7,7025.0,8.6,18.6,7025.0 +2190,2.7,52.233108125,6.838975175,03:05.1,2.7,7025.0,8.6,18.6,7025.0 +2191,2.7,52.23309335,6.83899845,03:05.1,2.7,7025.0,8.6,18.6,7025.0 +2192,2.7,52.23307857499999,6.839021724999999,03:05.1,2.7,7025.0,8.6,18.6,7025.0 +2193,2.73,52.2330638,6.839045,03:03.2,2.7,7034.0,8.6,18.9,7034.0 +2194,2.73,52.2330453,6.839073666666667,03:03.2,2.7,7034.0,8.6,18.9,7034.0 +2195,2.73,52.2330268,6.839102333333333,03:03.2,2.7,7034.0,8.6,18.9,7034.0 +2196,2.77,52.2330083,6.839131,03:00.6,2.7,7042.0,8.8,18.8,7042.0 +2197,2.77,52.23299016666667,6.839160366666666,03:00.6,2.7,7042.0,8.8,18.8,7042.0 +2198,2.77,52.23297203333333,6.839189733333332,03:00.6,2.7,7042.0,8.8,18.8,7042.0 +2199,2.8,52.2329539,6.8392190999999976,02:58.3,2.8,7051.0,8.9,18.8,7051.0 +2200,2.8,52.23293426666667,6.839251066666665,02:58.3,2.8,7051.0,8.9,18.8,7051.0 +2201,2.8,52.23291463333333,6.839283033333332,02:58.3,2.8,7051.0,8.9,18.8,7051.0 +2202,2.83,52.232895,6.839314999999999,02:56.6,2.8,7060.0,9.1,18.5,7060.0 +2203,2.83,52.232874833333334,6.8393458,02:56.6,2.8,7060.0,9.1,18.5,7060.0 +2204,2.83,52.23285466666667,6.839376600000001,02:56.6,2.8,7060.0,9.1,18.5,7060.0 +2205,2.85,52.2328345,6.8394074000000025,02:55.4,2.8,7069.0,9.2,18.5,7069.0 +2206,2.85,52.23281446666667,6.8394381000000015,02:55.4,2.8,7069.0,9.2,18.5,7069.0 +2207,2.85,52.23279443333333,6.839468800000001,02:55.4,2.8,7069.0,9.2,18.5,7069.0 +2208,2.87,52.2327744,6.8394995,02:54.4,2.8,7079.0,9.1,18.8,7079.0 +2209,2.87,52.232753466666665,6.839530333333333,02:54.4,2.8,7079.0,9.1,18.8,7079.0 +2210,2.87,52.23273253333333,6.839561166666666,02:54.4,2.8,7079.0,9.1,18.8,7079.0 +2211,2.89,52.2327116,6.839592,02:53.1,2.8,7088.0,9.0,19.0,7088.0 +2212,2.89,52.2326933,6.839620133333334,02:53.1,2.8,7088.0,9.0,19.0,7088.0 +2213,2.89,52.23267500000001,6.839648266666667,02:53.1,2.8,7088.0,9.0,19.0,7088.0 +2214,2.94,52.23265670000001,6.839676400000001,02:50.2,2.9,7096.0,8.6,20.2,7096.0 +2215,2.94,52.23263676666667,6.839706433333334,02:50.2,2.9,7096.0,8.6,20.2,7096.0 +2216,2.94,52.23261683333333,6.8397364666666665,02:50.2,2.9,7096.0,8.6,20.2,7096.0 +2217,3.04,52.2325969,6.8397665,02:44.3,3.0,7106.0,7.9,23.0,7106.0 +2218,3.04,52.23257475,6.839802049999999,02:44.3,3.0,7106.0,7.9,23.0,7106.0 +2219,3.22,52.2325526,6.839837599999999,02:35.2,3.2,7112.0,7.4,25.8,7112.0 +2220,3.22,52.232527,6.839878049999999,02:35.2,3.2,7112.0,7.4,25.8,7112.0 +2221,3.46,52.2325014,6.8399185,02:24.4,3.4,7120.0,7.3,28.4,7120.0 +2222,3.46,52.23247655,6.8399585,02:24.4,3.4,7120.0,7.3,28.4,7120.0 +2223,3.71,52.23245170000001,6.8399985,02:14.8,3.7,7128.0,7.3,30.1,7128.0 +2224,3.71,52.23243400000001,6.840026466666667,02:14.8,3.7,7128.0,7.3,30.1,7128.0 +2225,3.71,52.232416300000004,6.840054433333334,02:14.8,3.7,7128.0,7.3,30.1,7128.0 +2226,3.9,52.2323986,6.840082400000001,02:08.1,3.9,7136.0,7.7,30.0,7136.0 +2227,4.01,52.2323459,6.8401656000000015,02:04.8,4.0,7145.0,8.0,29.8,7145.0 +2228,4.01,52.23232015,6.840207150000001,02:04.8,4.0,7145.0,8.0,29.8,7145.0 +2229,4.03,52.2322944,6.840248700000001,02:04.0,4.0,7153.0,8.1,29.5,7153.0 +2230,4.03,52.2322779,6.840275366666667,02:04.0,4.0,7153.0,8.1,29.5,7153.0 +2231,4.03,52.2322614,6.840302033333334,02:04.0,4.0,7153.0,8.1,29.5,7153.0 +2232,4.01,52.2322449,6.8403287,02:04.8,4.0,7160.0,8.1,29.6,7160.0 +2233,3.98,52.2321961,6.8404110000000005,02:05.7,3.9,7168.0,7.9,29.9,7168.0 +2234,3.98,52.232170550000006,6.840453,02:05.7,3.9,7168.0,7.9,29.9,7168.0 +2235,3.96,52.232145,6.840495,02:06.4,3.9,7176.0,7.8,30.1,7176.0 +2236,3.96,52.23212843333334,6.840522333333333,02:06.4,3.9,7176.0,7.8,30.1,7176.0 +2237,3.96,52.23211186666666,6.840549666666668,02:06.4,3.9,7176.0,7.8,30.1,7176.0 +2238,3.95,52.2320953,6.8405770000000015,02:06.5,3.9,7184.0,7.8,30.3,7184.0 +2239,3.96,52.2320467,6.840659,02:06.1,3.9,7192.0,7.8,30.3,7192.0 +2240,3.96,52.23202015,6.8407009,02:06.1,3.9,7192.0,7.8,30.3,7192.0 +2241,3.98,52.2319936,6.8407428,02:05.7,3.9,7200.0,7.9,29.8,7200.0 +2242,3.98,52.23197686666667,6.840769766666667,02:05.7,3.9,7200.0,7.9,29.8,7200.0 +2243,3.98,52.23196013333333,6.840796733333334,02:05.7,3.9,7200.0,7.9,29.8,7200.0 +2244,3.99,52.2319434,6.8408237000000005,02:05.4,3.9,7208.0,8.0,29.7,7208.0 +2245,3.99,52.2318925,6.8409045,02:05.3,3.9,7216.0,8.0,29.8,7216.0 +2246,3.99,52.231866100000005,6.84094535,02:05.3,3.9,7216.0,8.0,29.8,7216.0 +2247,3.99,52.23183970000001,6.8409862000000015,02:05.3,3.9,7224.0,8.0,29.8,7224.0 +2248,3.99,52.231822266666676,6.841013466666667,02:05.3,3.9,7224.0,8.0,29.8,7224.0 +2249,3.99,52.231804833333335,6.841040733333333,02:05.3,3.9,7224.0,8.0,29.8,7224.0 +2250,3.99,52.2317874,6.841067999999999,02:05.1,3.9,7232.0,8.0,29.9,7232.0 +2251,4.01,52.231736700000006,6.8411516,02:04.7,4.0,7240.0,7.9,30.1,7240.0 +2252,4.01,52.231713150000004,6.8411905,02:04.7,4.0,7240.0,7.9,30.1,7240.0 +2253,4.01,52.2316896,6.8412294000000005,02:04.7,4.0,7247.0,7.9,30.1,7247.0 +2254,4.01,52.23167243333334,6.841254833333334,02:04.7,4.0,7247.0,7.9,30.1,7247.0 +2255,4.01,52.231655266666664,6.841280266666667,02:04.7,4.0,7247.0,7.9,30.1,7247.0 +2256,4.0,52.2316381,6.8413057,02:04.9,4.0,7255.0,7.8,30.5,7255.0 +2257,4.0,52.2315925,6.8413939,02:04.8,4.0,7263.0,7.7,30.9,7263.0 +2258,4.0,52.231567749999996,6.8414303499999995,02:04.8,4.0,7263.0,7.7,30.9,7263.0 +2259,3.99,52.231543,6.8414668,02:05.2,3.9,7270.0,7.6,31.1,7270.0 +2260,3.99,52.231519250000005,6.84150535,02:05.2,3.9,7270.0,7.6,31.1,7270.0 +2261,3.92,52.2314955,6.8415439,02:07.6,3.9,7278.0,8.1,28.7,7278.0 +2262,3.92,52.23147573333334,6.841574633333333,02:07.6,3.9,7278.0,8.1,28.7,7278.0 +2263,3.92,52.23145596666667,6.841605366666665,02:07.6,3.9,7278.0,8.1,28.7,7278.0 +2264,3.72,52.23143620000001,6.841636099999999,02:14.5,3.7,7287.0,8.7,25.6,7287.0 +2265,3.72,52.23141626666668,6.841666733333333,02:14.5,3.7,7287.0,8.7,25.6,7287.0 +2266,3.72,52.231396333333336,6.841697366666666,02:14.5,3.7,7287.0,8.7,25.6,7287.0 +2267,3.37,52.2313764,6.841728,02:28.4,3.3,7296.0,9.1,22.0,7296.0 +2268,3.37,52.23136036666667,6.841753433333333,02:28.4,3.3,7296.0,9.1,22.0,7296.0 +2269,3.37,52.23134433333333,6.841778866666668,02:28.4,3.3,7296.0,9.1,22.0,7296.0 +2270,2.95,52.2313283,6.8418043000000015,02:49.7,2.9,7304.0,9.0,19.6,7304.0 +2271,2.95,52.231311,6.841830933333335,02:49.7,2.9,7304.0,9.0,19.6,7304.0 +2272,2.95,52.2312937,6.8418575666666674,02:49.7,2.9,7304.0,9.0,19.6,7304.0 +2273,2.59,52.2312764,6.841884200000001,03:13.1,2.5,7312.0,8.4,18.4,7312.0 +2274,2.59,52.2312603,6.841908233333334,03:13.1,2.5,7312.0,8.4,18.4,7312.0 +2275,2.59,52.2312442,6.841932266666666,03:13.1,2.5,7312.0,8.4,18.4,7312.0 +2276,2.37,52.2312281,6.8419563,03:31.1,2.3,7319.0,7.5,18.8,7319.0 +2277,2.37,52.23121106666667,6.841982399999999,03:31.1,2.3,7319.0,7.5,18.8,7319.0 +2278,2.37,52.23119403333334,6.8420084999999995,03:31.1,2.3,7319.0,7.5,18.8,7319.0 +2279,2.27,52.231177,6.842034599999999,03:39.2,2.2,7327.0,7.5,18.1,7327.0 +2280,2.27,52.231164975,6.842053174999999,03:39.2,2.2,7327.0,7.5,18.1,7327.0 +2281,2.27,52.23115295,6.84207175,03:39.2,2.2,7327.0,7.5,18.1,7327.0 +2282,2.27,52.231140925000005,6.842090325,03:39.2,2.2,7327.0,7.5,18.1,7327.0 +2283,2.27,52.2311289,6.8421089,03:39.0,2.2,7334.0,7.6,17.9,7334.0 +2284,2.27,52.23111216666667,6.842135766666667,03:39.0,2.2,7334.0,7.6,17.9,7334.0 +2285,2.27,52.23109543333333,6.842162633333334,03:39.0,2.2,7334.0,7.6,17.9,7334.0 +2286,2.31,52.2310787,6.842189500000001,03:35.4,2.3,7342.0,7.8,17.7,7342.0 +2287,2.31,52.23106103333333,6.842217166666668,03:35.4,2.3,7342.0,7.8,17.7,7342.0 +2288,2.31,52.23104336666666,6.842244833333334,03:35.4,2.3,7342.0,7.8,17.7,7342.0 +2289,2.37,52.2310257,6.842272500000001,03:30.5,2.3,7350.0,8.0,17.8,7350.0 +2290,2.37,52.2310082,6.842299800000001,03:30.5,2.3,7350.0,8.0,17.8,7350.0 +2291,2.37,52.2309907,6.8423271,03:30.5,2.3,7350.0,8.0,17.8,7350.0 +2292,2.44,52.2309732,6.8423544000000005,03:24.5,2.4,7358.0,8.1,17.9,7358.0 +2293,2.44,52.230959525,6.842376250000001,03:24.5,2.4,7358.0,8.1,17.9,7358.0 +2294,2.44,52.23094585,6.8423981000000005,03:24.5,2.4,7358.0,8.1,17.9,7358.0 +2295,2.44,52.230932175,6.84241995,03:24.5,2.4,7358.0,8.1,17.9,7358.0 +2296,2.52,52.2309185,6.8424418000000005,03:18.2,2.5,7367.0,8.2,18.2,7367.0 +2297,2.52,52.2309006,6.842470366666666,03:18.2,2.5,7367.0,8.2,18.2,7367.0 +2298,2.52,52.2308827,6.842498933333333,03:18.2,2.5,7367.0,8.2,18.2,7367.0 +2299,2.59,52.2308648,6.842527499999999,03:12.8,2.5,7375.0,8.5,18.2,7375.0 +2300,2.59,52.23084523333333,6.8425571,03:12.8,2.5,7375.0,8.5,18.2,7375.0 +2301,2.59,52.23082566666667,6.8425867,03:12.8,2.5,7375.0,8.5,18.2,7375.0 +2302,2.65,52.2308061,6.8426163,03:08.6,2.6,7384.0,8.6,18.3,7384.0 +2303,2.65,52.23079105,6.8426404000000005,03:08.6,2.6,7384.0,8.6,18.3,7384.0 +2304,2.65,52.230776000000006,6.842664500000001,03:08.6,2.6,7384.0,8.6,18.3,7384.0 +2305,2.65,52.230760950000004,6.842688600000001,03:08.6,2.6,7384.0,8.6,18.3,7384.0 +2306,2.7,52.2307459,6.842712700000001,03:05.3,2.7,7393.0,8.8,18.2,7393.0 +2307,2.7,52.23072693333334,6.8427436,03:05.3,2.7,7393.0,8.8,18.2,7393.0 +2308,2.7,52.230707966666664,6.842774500000001,03:05.3,2.7,7393.0,8.8,18.2,7393.0 +2309,2.73,52.230689,6.8428054000000005,03:02.9,2.7,7402.0,8.9,18.4,7402.0 +2310,2.73,52.23067076666666,6.842835766666666,03:02.9,2.7,7402.0,8.9,18.4,7402.0 +2311,2.73,52.230652533333334,6.842866133333332,03:02.9,2.7,7402.0,8.9,18.4,7402.0 +2312,2.76,52.2306343,6.8428964999999975,03:00.8,2.7,7411.0,8.8,18.7,7411.0 +2313,2.76,52.23061403333333,6.842928433333332,03:00.8,2.7,7411.0,8.8,18.7,7411.0 +2314,2.76,52.230593766666665,6.842960366666666,03:00.8,2.7,7411.0,8.8,18.7,7411.0 +2315,2.8,52.2305735,6.8429923,02:58.6,2.8,7420.0,8.7,19.2,7420.0 +2316,2.8,52.230555366666664,6.8430222,02:58.6,2.8,7420.0,8.7,19.2,7420.0 +2317,2.8,52.23053723333334,6.8430521,02:58.6,2.8,7420.0,8.7,19.2,7420.0 +2318,2.84,52.2305191,6.843082000000001,02:56.1,2.8,7429.0,8.6,19.6,7429.0 +2319,2.84,52.230500400000004,6.8431123000000005,02:56.1,2.8,7429.0,8.6,19.6,7429.0 +2320,2.84,52.2304817,6.843142600000001,02:56.1,2.8,7429.0,8.6,19.6,7429.0 +2321,2.88,52.230463,6.843172900000001,02:53.5,2.8,7438.0,8.6,19.8,7438.0 +2322,2.88,52.23044456666667,6.843203600000001,02:53.5,2.8,7438.0,8.6,19.8,7438.0 +2323,2.88,52.23042613333334,6.8432343,02:53.5,2.8,7438.0,8.6,19.8,7438.0 +2324,2.92,52.23040770000001,6.843265,02:51.1,2.9,7447.0,8.7,20.0,7447.0 +2325,2.92,52.230388700000006,6.843297333333333,02:51.1,2.9,7447.0,8.7,20.0,7447.0 +2326,2.92,52.230369700000004,6.8433296666666665,02:51.1,2.9,7447.0,8.7,20.0,7447.0 +2327,2.95,52.2303507,6.843362,02:49.4,2.9,7456.0,8.7,20.1,7456.0 +2328,2.95,52.230333200000004,6.843391333333333,02:49.4,2.9,7456.0,8.7,20.1,7456.0 +2329,2.95,52.2303157,6.843420666666667,02:49.4,2.9,7456.0,8.7,20.1,7456.0 +2330,2.96,52.2302982,6.84345,02:49.0,2.9,7464.0,8.8,19.9,7464.0 +2331,2.96,52.2302795,6.8434816666666665,02:49.0,2.9,7464.0,8.8,19.9,7464.0 +2332,2.96,52.23026080000001,6.843513333333333,02:49.0,2.9,7464.0,8.8,19.9,7464.0 +2333,2.95,52.23024210000001,6.843545,02:49.6,2.9,7473.0,8.8,19.9,7473.0 +2334,2.95,52.23022403333334,6.8435762,02:49.6,2.9,7473.0,8.8,19.9,7473.0 +2335,2.95,52.23020596666667,6.8436074,02:49.6,2.9,7473.0,8.8,19.9,7473.0 +2336,2.97,52.2301879,6.8436386,02:48.4,2.9,7482.0,8.3,21.2,7482.0 +2337,2.97,52.23017086666666,6.843666600000001,02:48.4,2.9,7482.0,8.3,21.2,7482.0 +2338,2.97,52.23015383333333,6.8436946,02:48.4,2.9,7482.0,8.3,21.2,7482.0 +2339,3.08,52.2301368,6.8437226,02:42.5,3.0,7490.0,7.6,24.0,7490.0 +2340,3.08,52.230114099999994,6.843760550000001,02:42.5,3.0,7490.0,7.6,24.0,7490.0 +2341,3.3,52.2300914,6.8437985,02:31.4,3.3,7497.0,7.2,27.4,7497.0 +2342,3.3,52.2300681,6.843836400000001,02:31.4,3.3,7497.0,7.2,27.4,7497.0 +2343,3.6,52.2300448,6.8438743,02:18.8,3.6,7505.0,7.1,30.1,7505.0 +2344,3.6,52.230017450000005,6.8439186,02:18.8,3.6,7505.0,7.1,30.1,7505.0 +2345,3.89,52.2299901,6.8439629,02:08.6,3.8,7513.0,7.4,31.4,7513.0 +2346,4.08,52.2299432,6.8440415,02:02.6,4.0,7521.0,7.8,31.3,7521.0 +2347,4.08,52.22992526666667,6.8440696,02:02.6,4.0,7521.0,7.8,31.3,7521.0 +2348,4.08,52.22990733333333,6.844097700000001,02:02.6,4.0,7521.0,7.8,31.3,7521.0 +2349,4.15,52.2298894,6.8441258000000005,02:00.3,4.1,7529.0,8.0,30.9,7529.0 +2350,4.16,52.22983720000001,6.8442104000000015,02:00.2,4.1,7537.0,8.1,30.6,7537.0 +2351,4.16,52.229809550000006,6.8442524,02:00.2,4.1,7537.0,8.1,30.6,7537.0 +2352,4.13,52.2297819,6.8442944,02:00.9,4.1,7545.0,8.1,30.4,7545.0 +2353,4.13,52.2297585,6.8443325,02:00.9,4.1,7545.0,8.1,30.4,7545.0 +2354,4.11,52.2297351,6.8443706,02:01.7,4.1,7553.0,8.0,30.6,7553.0 +2355,4.11,52.229709799999995,6.8444120999999996,02:01.7,4.1,7553.0,8.0,30.6,7553.0 +2356,4.08,52.2296845,6.8444536,02:02.6,4.0,7561.0,7.8,31.0,7561.0 +2357,4.08,52.2296579,6.844495500000001,02:02.6,4.0,7561.0,7.8,31.0,7561.0 +2358,4.05,52.2296313,6.844537400000001,02:03.5,4.0,7569.0,7.7,31.3,7569.0 +2359,4.05,52.2296086,6.844574450000001,02:03.5,4.0,7569.0,7.7,31.3,7569.0 +2360,4.03,52.2295859,6.844611500000001,02:04.0,4.0,7576.0,7.7,31.2,7576.0 +2361,4.03,52.22955985,6.844652450000002,02:04.0,4.0,7576.0,7.7,31.2,7576.0 +2362,4.01,52.2295338,6.8446934000000015,02:04.2,4.0,7584.0,7.7,31.1,7584.0 +2363,4.01,52.2295102,6.844731350000001,02:04.2,4.0,7584.0,7.7,31.1,7584.0 +2364,4.04,52.2294866,6.8447693,02:03.8,4.0,7592.0,7.7,31.3,7592.0 +2365,4.04,52.22946075,6.844810350000001,02:03.8,4.0,7592.0,7.7,31.3,7592.0 +2366,4.05,52.2294349,6.844851400000001,02:03.0,4.0,7600.0,7.7,31.5,7600.0 +2367,4.05,52.229411150000004,6.84489005,02:03.0,4.0,7600.0,7.7,31.5,7600.0 +2368,4.09,52.2293874,6.8449287,02:02.0,4.1,7607.0,7.7,31.6,7607.0 +2369,4.09,52.22936405,6.8449674,02:02.0,4.1,7607.0,7.7,31.6,7607.0 +2370,4.12,52.2293407,6.8450061,02:01.3,4.1,7615.0,7.8,31.7,7615.0 +2371,4.12,52.2292894,6.8450887,02:01.3,4.1,7623.0,7.7,31.7,7623.0 +2372,4.12,52.229265049999995,6.84512665,02:01.3,4.1,7623.0,7.7,31.7,7623.0 +2373,4.09,52.2292407,6.8451646,02:02.3,4.0,7630.0,7.6,32.0,7630.0 +2374,4.09,52.229219,6.8452007,02:02.3,4.0,7630.0,7.6,32.0,7630.0 +2375,4.04,52.2291973,6.8452368,02:03.7,4.0,7637.0,7.4,32.3,7637.0 +2376,4.04,52.22917215,6.8452769,02:03.7,4.0,7637.0,7.4,32.3,7637.0 +2377,4.01,52.229147,6.845317,02:04.6,4.0,7645.0,7.5,32.1,7645.0 +2378,4.01,52.22912339999999,6.8453546,02:04.6,4.0,7645.0,7.5,32.1,7645.0 +2379,4.01,52.22909979999999,6.845392200000001,02:04.6,4.0,7652.0,7.5,31.7,7652.0 +2380,4.01,52.22907334999999,6.845431850000001,02:04.6,4.0,7652.0,7.5,31.7,7652.0 +2381,4.04,52.2290469,6.8454715,02:03.8,4.0,7660.0,7.7,31.2,7660.0 +2382,4.04,52.229020899999995,6.8455121000000005,02:03.8,4.0,7660.0,7.7,31.2,7660.0 +2383,4.05,52.2289949,6.8455527,02:03.1,4.0,7668.0,7.8,30.9,7668.0 +2384,4.05,52.22897424999999,6.845587299999999,02:03.1,4.0,7668.0,7.8,30.9,7668.0 +2385,4.05,52.2289536,6.8456218999999985,02:03.1,4.0,7675.0,7.9,30.7,7675.0 +2386,4.05,52.228926699999995,6.8456642,02:03.1,4.0,7675.0,7.9,30.7,7675.0 +2387,4.05,52.22889979999999,6.8457065,02:03.3,4.0,7683.0,7.9,30.7,7683.0 +2388,4.05,52.22887365,6.84574735,02:03.3,4.0,7683.0,7.9,30.7,7683.0 +2389,4.04,52.2288475,6.8457881999999985,02:03.7,4.0,7691.0,7.8,30.9,7691.0 +2390,4.04,52.2288236,6.84582505,02:03.7,4.0,7691.0,7.8,30.9,7691.0 +2391,4.04,52.2287997,6.845861900000001,02:03.8,4.0,7698.0,7.7,31.3,7698.0 +2392,4.05,52.2287494,6.8459423,02:03.4,4.0,7706.0,7.6,31.6,7706.0 +2393,4.05,52.228725499999996,6.8459801,02:03.4,4.0,7706.0,7.6,31.6,7706.0 +2394,4.04,52.2287016,6.8460179000000005,02:03.7,4.0,7714.0,7.5,31.9,7714.0 +2395,4.04,52.228676750000005,6.846055999999999,02:03.7,4.0,7714.0,7.5,31.9,7714.0 +2396,4.09,52.2286519,6.8460940999999975,02:02.3,4.0,7721.0,7.6,32.1,7721.0 +2397,4.09,52.22863550714286,6.846119978571426,02:02.3,4.0,7721.0,7.6,32.1,7721.0 +2398,4.09,52.22861911428571,6.846145857142855,02:02.3,4.0,7721.0,7.6,32.1,7721.0 +2399,4.09,52.22860272142857,6.846171735714284,02:02.3,4.0,7721.0,7.6,32.1,7721.0 +2400,4.09,52.22858632857143,6.846197614285712,02:02.3,4.0,7721.0,7.6,32.1,7721.0 +2401,4.09,52.22856993571429,6.846223492857141,02:02.3,4.0,7721.0,7.6,32.1,7721.0 +2402,4.09,52.22855354285714,6.84624937142857,02:02.3,4.0,7721.0,7.6,32.1,7721.0 +2403,4.09,52.22853715,6.846275249999999,02:02.3,4.0,7721.0,7.6,32.1,7721.0 +2404,4.09,52.22852075714286,6.846301128571428,02:02.3,4.0,7721.0,7.6,32.1,7721.0 +2405,4.09,52.22850436428571,6.846327007142857,02:02.3,4.0,7721.0,7.6,32.1,7721.0 +2406,4.09,52.22848797142857,6.8463528857142855,02:02.3,4.0,7721.0,7.6,32.1,7721.0 +2407,4.09,52.22847157857143,6.8463787642857135,02:02.3,4.0,7721.0,7.6,32.1,7721.0 +2408,4.09,52.22845518571429,6.846404642857142,02:02.3,4.0,7721.0,7.6,32.1,7721.0 +2409,4.09,52.22843879285714,6.846430521428571,02:02.3,4.0,7721.0,7.6,32.1,7721.0 +2410,2.65,52.2284224,6.8464564,03:08.3,2.6,7757.0,7.2,22.1,7757.0 +2411,2.65,52.2284126,6.8464726,03:08.3,2.6,7757.0,7.2,22.1,7757.0 +2412,2.65,52.2284028,6.8464887999999995,03:08.3,2.6,7757.0,7.2,22.1,7757.0 +2413,2.65,52.228393,6.846505,03:08.3,2.6,7757.0,7.2,22.1,7757.0 +2414,2.65,52.2283832,6.8465212,03:08.3,2.6,7757.0,7.2,22.1,7757.0 +2415,2.65,52.2283734,6.846537399999999,03:08.3,2.6,7757.0,7.2,22.1,7757.0 +2416,1.92,52.2283636,6.846553599999999,04:20.6,1.9,7766.0,6.8,16.7,7766.0 +2417,1.92,52.228356166666664,6.846565366666667,04:20.6,1.9,7766.0,6.8,16.7,7766.0 +2418,1.92,52.228348733333334,6.846577133333334,04:20.6,1.9,7766.0,6.8,16.7,7766.0 +2419,1.44,52.2283413,6.846588900000001,05:46.0,1.4,7770.0,6.3,13.5,7770.0 +2420,1.44,52.228333799999994,6.846601100000001,05:46.0,1.4,7770.0,6.3,13.5,7770.0 +2421,1.44,52.22832629999999,6.846613300000001,05:46.0,1.4,7770.0,6.3,13.5,7770.0 +2422,1.44,52.2283188,6.846625500000001,05:46.0,1.4,7770.0,6.3,13.5,7770.0 +2423,1.44,52.228311299999994,6.846637700000001,05:46.0,1.4,7770.0,6.3,13.5,7770.0 +2424,1.33,52.22830379999999,6.846649900000001,06:16.5,1.3,7775.0,5.6,14.1,7775.0 +2425,1.33,52.228292874999994,6.846668625,06:16.5,1.3,7775.0,5.6,14.1,7775.0 +2426,1.33,52.228281949999996,6.84668735,06:16.5,1.3,7775.0,5.6,14.1,7775.0 +2427,1.33,52.228271025,6.846706075,06:16.5,1.3,7775.0,5.6,14.1,7775.0 +2428,1.51,52.2282601,6.8467248,05:30.5,1.5,7783.0,5.5,16.2,7783.0 +2429,1.51,52.2282443,6.8467508,05:30.5,1.5,7783.0,5.5,16.2,7783.0 +2430,1.51,52.2282285,6.846776799999999,05:30.5,1.5,7783.0,5.5,16.2,7783.0 +2431,1.83,52.2282127,6.846802799999999,04:33.6,1.8,7790.0,7.0,15.6,7790.0 +2432,1.83,52.228199849999996,6.846823099999998,04:33.6,1.8,7790.0,7.0,15.6,7790.0 +2433,1.83,52.228187,6.846843399999998,04:33.6,1.8,7790.0,7.0,15.6,7790.0 +2434,1.83,52.22817415,6.846863699999998,04:33.6,1.8,7790.0,7.0,15.6,7790.0 +2435,2.12,52.2281613,6.8468839999999975,03:55.8,2.1,7798.0,7.3,17.2,7798.0 +2436,2.12,52.22814206666666,6.846912999999999,03:55.8,2.1,7798.0,7.3,17.2,7798.0 +2437,2.12,52.22812283333333,6.846941999999999,03:55.8,2.1,7798.0,7.3,17.2,7798.0 +2438,2.39,52.2281036,6.846971000000001,03:29.1,2.3,7807.0,8.1,17.6,7807.0 +2439,2.39,52.228089525,6.846994100000001,03:29.1,2.3,7807.0,8.1,17.6,7807.0 +2440,2.39,52.22807545,6.847017200000002,03:29.1,2.3,7807.0,8.1,17.6,7807.0 +2441,2.39,52.228061374999996,6.8470403000000015,03:29.1,2.3,7807.0,8.1,17.6,7807.0 +2442,2.61,52.2280473,6.8470634000000015,03:11.6,2.6,7816.0,8.7,17.8,7816.0 +2443,2.61,52.228026166666666,6.847097700000001,03:11.6,2.6,7816.0,8.7,17.8,7816.0 +2444,2.61,52.22800503333333,6.847132000000001,03:11.6,2.6,7816.0,8.7,17.8,7816.0 +2445,2.77,52.2279839,6.8471663000000005,03:00.7,2.7,7826.0,9.4,17.6,7826.0 +2446,2.77,52.22796306666667,6.847199833333334,03:00.7,2.7,7826.0,9.4,17.6,7826.0 +2447,2.77,52.22794223333333,6.847233366666668,03:00.7,2.7,7826.0,9.4,17.6,7826.0 +2448,2.86,52.2279214,6.847266900000001,02:54.6,2.8,7835.0,9.8,17.3,7835.0 +2449,2.86,52.227905899999996,6.847292425000001,02:54.6,2.8,7835.0,9.8,17.3,7835.0 +2450,2.86,52.2278904,6.847317950000001,02:54.6,2.8,7835.0,9.8,17.3,7835.0 +2451,2.86,52.2278749,6.847343475000001,02:54.6,2.8,7835.0,9.8,17.3,7835.0 +2452,2.9,52.2278594,6.8473690000000005,02:52.5,2.9,7845.0,9.8,17.6,7845.0 +2453,2.9,52.2278404,6.847401266666666,02:52.5,2.9,7845.0,9.8,17.6,7845.0 +2454,2.9,52.2278214,6.847433533333332,02:52.5,2.9,7845.0,9.8,17.6,7845.0 +2455,2.89,52.2278024,6.8474657999999975,02:53.2,2.8,7854.0,9.6,17.9,7854.0 +2456,2.89,52.22778326666667,6.847497366666664,02:53.2,2.8,7854.0,9.6,17.9,7854.0 +2457,2.89,52.22776413333333,6.847528933333331,02:53.2,2.8,7854.0,9.6,17.9,7854.0 +2458,2.86,52.227745,6.8475604999999975,02:54.8,2.8,7863.0,9.3,18.2,7863.0 +2459,2.86,52.2277256,6.8475911333333315,02:54.8,2.8,7863.0,9.3,18.2,7863.0 +2460,2.86,52.2277062,6.847621766666666,02:54.8,2.8,7863.0,9.3,18.2,7863.0 +2461,2.84,52.2276868,6.8476524,02:55.8,2.8,7872.0,9.1,18.7,7872.0 +2462,2.84,52.227671575,6.847675475,02:55.8,2.8,7872.0,9.1,18.7,7872.0 +2463,2.84,52.227656350000004,6.8476985500000005,02:55.8,2.8,7872.0,9.1,18.7,7872.0 +2464,2.84,52.227641125,6.847721625,02:55.8,2.8,7872.0,9.1,18.7,7872.0 +2465,2.85,52.2276259,6.8477447,02:55.3,2.8,7882.0,8.9,19.1,7882.0 +2466,2.85,52.2276055,6.847776566666666,02:55.3,2.8,7882.0,8.9,19.1,7882.0 +2467,2.85,52.2275851,6.8478084333333324,02:55.3,2.8,7882.0,8.9,19.1,7882.0 +2468,2.88,52.2275647,6.847840299999999,02:53.4,2.8,7891.0,8.9,19.3,7891.0 +2469,2.88,52.22754426666667,6.847870066666666,02:53.4,2.8,7891.0,8.9,19.3,7891.0 +2470,2.88,52.227523833333336,6.847899833333333,02:53.4,2.8,7891.0,8.9,19.3,7891.0 +2471,2.92,52.2275034,6.8479296000000005,02:51.0,2.9,7900.0,9.1,19.2,7900.0 +2472,2.92,52.227483033333336,6.847961966666667,02:51.0,2.9,7900.0,9.1,19.2,7900.0 +2473,2.92,52.22746266666666,6.847994333333334,02:51.0,2.9,7900.0,9.1,19.2,7900.0 +2474,2.96,52.22744229999999,6.848026700000001,02:48.9,2.9,7910.0,9.3,18.9,7910.0 +2475,2.96,52.22742116666666,6.848058866666668,02:48.9,2.9,7910.0,9.3,18.9,7910.0 +2476,2.96,52.22740003333333,6.848091033333335,02:48.9,2.9,7910.0,9.3,18.9,7910.0 +2477,2.98,52.2273789,6.8481232000000025,02:48.0,2.9,7919.0,9.6,18.5,7919.0 +2478,2.98,52.227362625,6.848146225000002,02:48.0,2.9,7919.0,9.6,18.5,7919.0 +2479,2.98,52.22734635,6.848169250000001,02:48.0,2.9,7919.0,9.6,18.5,7919.0 +2480,2.98,52.227330075,6.848192275,02:48.0,2.9,7919.0,9.6,18.5,7919.0 +2481,2.97,52.2273138,6.848215299999999,02:48.0,2.9,7929.0,9.7,18.3,7929.0 +2482,2.97,52.22729363333333,6.848244733333333,02:48.0,2.9,7929.0,9.7,18.3,7929.0 +2483,2.97,52.22727346666667,6.848274166666666,02:48.0,2.9,7929.0,9.7,18.3,7929.0 +2484,2.97,52.2272533,6.8483036,02:48.6,2.9,7938.0,9.8,18.1,7938.0 +2485,2.97,52.2272321,6.848337333333333,02:48.6,2.9,7938.0,9.8,18.1,7938.0 +2486,2.97,52.227210899999996,6.848371066666667,02:48.6,2.9,7938.0,9.8,18.1,7938.0 +2487,2.96,52.2271897,6.8484048,02:49.1,2.9,7948.0,9.8,18.0,7948.0 +2488,2.96,52.22716813333333,6.848438233333333,02:49.1,2.9,7948.0,9.8,18.0,7948.0 +2489,2.96,52.22714656666667,6.848471666666666,02:49.1,2.9,7948.0,9.8,18.0,7948.0 +2490,2.95,52.227125,6.848505099999999,02:49.5,2.9,7958.0,9.9,17.8,7958.0 +2491,2.95,52.227108075000004,6.848529974999999,02:49.5,2.9,7958.0,9.9,17.8,7958.0 +2492,2.95,52.22709115,6.848554849999999,02:49.5,2.9,7958.0,9.9,17.8,7958.0 +2493,2.95,52.227074224999996,6.848579725,02:49.5,2.9,7958.0,9.9,17.8,7958.0 +2494,2.95,52.2270573,6.8486046,02:49.6,2.9,7968.0,9.9,17.8,7968.0 +2495,2.95,52.22703636666667,6.8486363,02:49.6,2.9,7968.0,9.9,17.8,7968.0 +2496,2.95,52.227015433333335,6.848668,02:49.6,2.9,7968.0,9.9,17.8,7968.0 +2497,2.94,52.2269945,6.8486997,02:49.7,2.9,7977.0,9.8,17.8,7977.0 +2498,2.94,52.22697306666667,6.8487325666666665,02:49.7,2.9,7977.0,9.8,17.8,7977.0 +2499,2.94,52.22695163333334,6.848765433333334,02:49.7,2.9,7977.0,9.8,17.8,7977.0 +2500,2.94,52.22693020000001,6.8487983,02:50.1,2.9,7987.0,9.7,18.1,7987.0 +2501,2.94,52.22691517500001,6.8488227,02:50.1,2.9,7987.0,9.7,18.1,7987.0 +2502,2.94,52.226900150000006,6.8488471,02:50.1,2.9,7987.0,9.7,18.1,7987.0 +2503,2.94,52.226885125,6.8488715000000004,02:50.1,2.9,7987.0,9.7,18.1,7987.0 +2504,2.93,52.2268701,6.8488959000000005,02:50.7,2.9,7997.0,9.7,18.1,7997.0 +2505,2.93,52.22684853333333,6.848928866666668,02:50.7,2.9,7997.0,9.7,18.1,7997.0 +2506,2.93,52.22682696666667,6.848961833333335,02:50.7,2.9,7997.0,9.7,18.1,7997.0 +2507,2.91,52.2268054,6.8489948000000025,02:51.5,2.9,8007.0,9.7,17.8,8007.0 +2508,2.91,52.226784800000004,6.849027433333335,02:51.5,2.9,8007.0,9.7,17.8,8007.0 +2509,2.91,52.2267642,6.8490600666666674,02:51.5,2.9,8007.0,9.7,17.8,8007.0 +2510,2.9,52.2267436,6.8490927,02:52.2,2.9,8016.0,9.6,17.9,8016.0 +2511,2.9,52.226728,6.84911645,02:52.2,2.9,8016.0,9.6,17.9,8016.0 +2512,2.9,52.2267124,6.849140200000001,02:52.2,2.9,8016.0,9.6,17.9,8016.0 +2513,2.9,52.2266968,6.84916395,02:52.2,2.9,8016.0,9.6,17.9,8016.0 +2514,2.9,52.2266812,6.849187700000001,02:52.4,2.9,8026.0,9.6,18.0,8026.0 +2515,2.9,52.22666113333334,6.849218933333334,02:52.4,2.9,8026.0,9.6,18.0,8026.0 +2516,2.9,52.226641066666666,6.849250166666667,02:52.4,2.9,8026.0,9.6,18.0,8026.0 +2517,2.91,52.226621,6.8492814,02:51.9,2.9,8035.0,9.6,18.0,8035.0 +2518,2.91,52.226599,6.8493143,02:51.9,2.9,8035.0,9.6,18.0,8035.0 +2519,2.91,52.226577,6.849347199999999,02:51.9,2.9,8035.0,9.6,18.0,8035.0 +2520,2.93,52.226555,6.8493800999999985,02:50.9,2.9,8045.0,9.5,18.3,8045.0 +2521,2.93,52.22653506666666,6.849411999999999,02:50.9,2.9,8045.0,9.5,18.3,8045.0 +2522,2.93,52.226515133333336,6.849443899999999,02:50.9,2.9,8045.0,9.5,18.3,8045.0 +2523,2.94,52.2264952,6.8494758,02:49.9,2.9,8054.0,9.6,18.2,8054.0 +2524,2.94,52.226478900000004,6.8495009499999995,02:49.9,2.9,8054.0,9.6,18.2,8054.0 +2525,2.94,52.226462600000005,6.8495261,02:49.9,2.9,8054.0,9.6,18.2,8054.0 +2526,2.94,52.2264463,6.849551250000001,02:49.9,2.9,8054.0,9.6,18.2,8054.0 +2527,2.95,52.22643,6.849576400000001,02:49.2,2.9,8064.0,9.8,17.9,8064.0 +2528,2.95,52.2264092,6.849608866666667,02:49.2,2.9,8064.0,9.8,17.9,8064.0 +2529,2.95,52.226388400000005,6.8496413333333335,02:49.2,2.9,8064.0,9.8,17.9,8064.0 +2530,2.96,52.2263676,6.8496738,02:49.0,2.9,8074.0,9.9,17.9,8074.0 +2531,2.96,52.22634596666667,6.849706366666666,02:49.0,2.9,8074.0,9.9,17.9,8074.0 +2532,2.96,52.22632433333333,6.849738933333333,02:49.0,2.9,8074.0,9.9,17.9,8074.0 +2533,2.96,52.2263027,6.849771499999999,02:49.2,2.9,8084.0,9.9,17.8,8084.0 +2534,2.96,52.226285875,6.849796325,02:49.2,2.9,8084.0,9.9,17.8,8084.0 +2535,2.96,52.22626905,6.8498211499999995,02:49.2,2.9,8084.0,9.9,17.8,8084.0 +2536,2.96,52.226252224999996,6.849845974999999,02:49.2,2.9,8084.0,9.9,17.8,8084.0 +2537,2.95,52.2262354,6.8498708,02:49.3,2.9,8094.0,10.0,17.6,8094.0 +2538,2.95,52.22621376666667,6.849905333333334,02:49.3,2.9,8094.0,10.0,17.6,8094.0 +2539,2.95,52.226192133333335,6.849939866666668,02:49.3,2.9,8094.0,10.0,17.6,8094.0 +2540,2.96,52.2261705,6.8499744000000025,02:49.1,2.9,8104.0,9.9,17.8,8104.0 +2541,2.96,52.226154875000006,6.849998775000001,02:49.1,2.9,8104.0,9.9,17.8,8104.0 +2542,2.96,52.22613925,6.850023150000001,02:49.1,2.9,8104.0,9.9,17.8,8104.0 +2543,2.96,52.226123625,6.850047525000001,02:49.1,2.9,8104.0,9.9,17.8,8104.0 +2544,2.95,52.226108,6.8500719,02:49.2,2.9,8113.0,9.9,17.9,8113.0 +2545,2.95,52.22608736666667,6.850103933333333,02:49.2,2.9,8113.0,9.9,17.9,8113.0 +2546,2.95,52.22606673333333,6.850135966666666,02:49.2,2.9,8113.0,9.9,17.9,8113.0 +2547,2.95,52.2260461,6.850167999999999,02:49.4,2.9,8123.0,9.8,18.0,8123.0 +2548,2.95,52.22602466666667,6.850201299999999,02:49.4,2.9,8123.0,9.8,18.0,8123.0 +2549,2.95,52.22600323333333,6.8502346,02:49.4,2.9,8123.0,9.8,18.0,8123.0 +2550,2.94,52.2259818,6.8502679,02:49.9,2.9,8133.0,9.7,18.1,8133.0 +2551,2.94,52.225961133333335,6.850301133333333,02:49.9,2.9,8133.0,9.7,18.1,8133.0 +2552,2.94,52.225940466666664,6.850334366666666,02:49.9,2.9,8133.0,9.7,18.1,8133.0 +2553,2.93,52.2259198,6.8503675999999984,02:50.6,2.9,8143.0,9.7,18.1,8143.0 +2554,2.93,52.2259049,6.850392124999999,02:50.6,2.9,8143.0,9.7,18.1,8143.0 +2555,2.93,52.22589,6.85041665,02:50.6,2.9,8143.0,9.7,18.1,8143.0 +2556,2.93,52.225875099999996,6.850441175,02:50.6,2.9,8143.0,9.7,18.1,8143.0 +2557,2.92,52.2258602,6.850465700000001,02:51.3,2.9,8152.0,9.8,17.7,8152.0 +2558,2.92,52.225838466666666,6.850498966666668,02:51.3,2.9,8152.0,9.8,17.7,8152.0 +2559,2.92,52.22581673333333,6.850532233333333,02:51.3,2.9,8152.0,9.8,17.7,8152.0 +2560,2.9,52.225795,6.8505655,02:52.2,2.9,8162.0,9.8,17.6,8162.0 +2561,2.9,52.2257736,6.8505989000000005,02:52.2,2.9,8162.0,9.8,17.6,8162.0 +2562,2.9,52.2257522,6.8506323,02:52.2,2.9,8162.0,9.8,17.6,8162.0 +2563,2.89,52.2257308,6.8506657,02:53.3,2.8,8172.0,9.8,17.5,8172.0 +2564,2.89,52.225715075,6.850690975000001,02:53.3,2.8,8172.0,9.8,17.5,8172.0 +2565,2.89,52.22569935,6.850716250000001,02:53.3,2.8,8172.0,9.8,17.5,8172.0 +2566,2.89,52.225683625,6.850741525000001,02:53.3,2.8,8172.0,9.8,17.5,8172.0 +2567,2.87,52.2256679,6.8507668000000015,02:54.0,2.8,8182.0,9.9,17.3,8182.0 +2568,2.87,52.225646499999996,6.850800400000001,02:54.0,2.8,8182.0,9.9,17.3,8182.0 +2569,2.87,52.2256251,6.850834,02:54.0,2.8,8182.0,9.9,17.3,8182.0 +2570,2.87,52.2256037,6.850867599999999,02:53.9,2.8,8192.0,9.8,17.4,8192.0 +2571,2.87,52.225588525,6.8508915749999995,02:53.9,2.8,8192.0,9.8,17.4,8192.0 +2572,2.87,52.225573350000005,6.85091555,02:53.9,2.8,8192.0,9.8,17.4,8192.0 +2573,2.87,52.225558175,6.850939524999999,02:53.9,2.8,8192.0,9.8,17.4,8192.0 +2574,2.9,52.225543,6.8509635,02:52.5,2.9,8201.0,9.7,17.9,8201.0 +2575,2.9,52.2255223,6.850997566666667,02:52.5,2.9,8201.0,9.7,17.9,8201.0 +2576,2.9,52.2255016,6.851031633333333,02:52.5,2.9,8201.0,9.7,17.9,8201.0 +2577,2.95,52.2254809,6.8510657,02:49.6,2.9,8211.0,9.5,18.4,8211.0 +2578,2.95,52.22546173333333,6.8510967,02:49.6,2.9,8211.0,9.5,18.4,8211.0 +2579,2.95,52.225442566666665,6.8511277,02:49.6,2.9,8211.0,9.5,18.4,8211.0 +2580,3.01,52.2254234,6.8511587,02:45.9,3.0,8220.0,9.5,18.9,8220.0 +2581,3.01,52.22540096666666,6.851194566666667,02:45.9,3.0,8220.0,9.5,18.9,8220.0 +2582,3.01,52.225378533333334,6.851230433333333,02:45.9,3.0,8220.0,9.5,18.9,8220.0 +2583,3.09,52.2253561,6.8512663,02:41.7,3.0,8230.0,9.6,19.2,8230.0 +2584,3.09,52.225334966666665,6.851299833333334,02:41.7,3.0,8230.0,9.6,19.2,8230.0 +2585,3.09,52.22531383333333,6.851333366666667,02:41.7,3.0,8230.0,9.6,19.2,8230.0 +2586,3.17,52.2252927,6.851366900000001,02:37.9,3.1,8240.0,9.9,19.1,8240.0 +2587,3.17,52.22527053333333,6.851402433333334,02:37.9,3.1,8240.0,9.9,19.1,8240.0 +2588,3.17,52.22524836666667,6.851437966666667,02:37.9,3.1,8240.0,9.9,19.1,8240.0 +2589,3.22,52.2252262,6.8514735,02:35.1,3.2,8250.0,10.3,18.7,8250.0 +2590,3.22,52.225210000000004,6.851500875,02:35.1,3.2,8250.0,10.3,18.7,8250.0 +2591,3.22,52.2251938,6.851528249999999,02:35.1,3.2,8250.0,10.3,18.7,8250.0 +2592,3.22,52.225177599999995,6.851555625,02:35.1,3.2,8250.0,10.3,18.7,8250.0 +2593,3.26,52.2251614,6.851583,02:33.4,3.2,8261.0,10.2,19.0,8261.0 +2594,3.26,52.2251401,6.8516197,02:33.4,3.2,8261.0,10.2,19.0,8261.0 +2595,3.26,52.2251188,6.851656399999999,02:33.4,3.2,8261.0,10.2,19.0,8261.0 +2596,3.27,52.2250975,6.8516930999999985,02:33.0,3.2,8271.0,10.2,19.1,8271.0 +2597,3.27,52.2250775,6.851727566666666,02:33.0,3.2,8271.0,10.2,19.1,8271.0 +2598,3.27,52.2250575,6.8517620333333324,02:33.0,3.2,8271.0,10.2,19.1,8271.0 +2599,3.25,52.2250375,6.8517965,02:33.7,3.2,8281.0,10.1,19.2,8281.0 +2600,3.25,52.225017533333336,6.8518298,02:33.7,3.2,8281.0,10.1,19.2,8281.0 +2601,3.25,52.224997566666666,6.851863100000001,02:33.7,3.2,8281.0,10.1,19.2,8281.0 +2602,3.23,52.2249776,6.851896400000001,02:34.8,3.2,8290.0,10.1,19.1,8290.0 +2603,3.23,52.2249562,6.8519313,02:34.8,3.2,8290.0,10.1,19.1,8290.0 +2604,3.23,52.2249348,6.851966200000001,02:34.8,3.2,8290.0,10.1,19.1,8290.0 +2605,3.2,52.2249134,6.8520011,02:36.4,3.2,8301.0,10.1,18.9,8301.0 +2606,3.2,52.22489083333333,6.852036966666667,02:36.4,3.2,8301.0,10.1,18.9,8301.0 +2607,3.2,52.22486826666667,6.852072833333333,02:36.4,3.2,8301.0,10.1,18.9,8301.0 +2608,3.15,52.2248457,6.8521087,02:38.6,3.1,8311.0,10.4,18.1,8311.0 +2609,3.15,52.224829975000006,6.852134325,02:38.6,3.1,8311.0,10.4,18.1,8311.0 +2610,3.15,52.22481425,6.852159950000001,02:38.6,3.1,8311.0,10.4,18.1,8311.0 +2611,3.15,52.224798525,6.852185575000001,02:38.6,3.1,8311.0,10.4,18.1,8311.0 +2612,3.09,52.2247828,6.852211200000001,02:41.5,3.0,8321.0,10.4,17.8,8321.0 +2613,3.09,52.22476073333333,6.852245733333334,02:41.5,3.0,8321.0,10.4,17.8,8321.0 +2614,3.09,52.22473866666667,6.852280266666667,02:41.5,3.0,8321.0,10.4,17.8,8321.0 +2615,3.04,52.2247166,6.8523148,02:44.4,3.0,8331.0,10.2,17.8,8331.0 +2616,3.04,52.224700275000004,6.852340325,02:44.4,3.0,8331.0,10.2,17.8,8331.0 +2617,3.04,52.22468395,6.852365850000001,02:44.4,3.0,8331.0,10.2,17.8,8331.0 +2618,3.04,52.224667624999995,6.852391375000002,02:44.4,3.0,8331.0,10.2,17.8,8331.0 +2619,3.01,52.2246513,6.8524169000000015,02:46.1,3.0,8341.0,10.0,18.0,8341.0 +2620,3.01,52.2246307,6.852447933333335,02:46.1,3.0,8341.0,10.0,18.0,8341.0 +2621,3.01,52.2246101,6.852478966666667,02:46.1,3.0,8341.0,10.0,18.0,8341.0 +2622,3.01,52.2245895,6.8525100000000005,02:45.8,3.0,8351.0,10.0,18.0,8351.0 +2623,3.01,52.224567533333335,6.8525449,02:45.8,3.0,8351.0,10.0,18.0,8351.0 +2624,3.01,52.22454556666668,6.852579799999998,02:45.8,3.0,8351.0,10.0,18.0,8351.0 +2625,3.05,52.22452360000001,6.8526146999999975,02:43.8,3.0,8361.0,10.1,18.0,8361.0 +2626,3.05,52.224500933333346,6.852649766666666,02:43.8,3.0,8361.0,10.1,18.0,8361.0 +2627,3.05,52.22447826666668,6.852684833333333,02:43.8,3.0,8361.0,10.1,18.0,8361.0 +2628,3.09,52.22445560000001,6.852719900000001,02:41.5,3.0,8371.0,10.0,18.4,8371.0 +2629,3.09,52.224433566666676,6.852754033333334,02:41.5,3.0,8371.0,10.0,18.4,8371.0 +2630,3.09,52.22441153333334,6.852788166666667,02:41.5,3.0,8371.0,10.0,18.4,8371.0 +2631,3.12,52.2243895,6.8528223,02:40.0,3.1,8381.0,9.9,18.7,8381.0 +2632,3.12,52.224369466666666,6.852853866666666,02:40.0,3.1,8381.0,9.9,18.7,8381.0 +2633,3.12,52.22434943333334,6.852885433333333,02:40.0,3.1,8381.0,9.9,18.7,8381.0 +2634,3.13,52.2243294,6.852917,02:39.5,3.1,8391.0,9.8,19.0,8391.0 +2635,3.13,52.224313375,6.85294295,02:39.5,3.1,8391.0,9.8,19.0,8391.0 +2636,3.13,52.22429735,6.8529689000000005,02:39.5,3.1,8391.0,9.8,19.0,8391.0 +2637,3.13,52.224281325,6.85299485,02:39.5,3.1,8391.0,9.8,19.0,8391.0 +2638,3.13,52.2242653,6.8530208,02:39.7,3.1,8401.0,9.7,19.1,8401.0 +2639,3.13,52.2242443,6.8530558,02:39.7,3.1,8401.0,9.7,19.1,8401.0 +2640,3.13,52.2242233,6.8530908,02:39.7,3.1,8401.0,9.7,19.1,8401.0 +2641,3.13,52.2242023,6.8531258,02:39.9,3.1,8411.0,9.8,19.1,8411.0 +2642,3.13,52.22418283333334,6.853158933333334,02:39.9,3.1,8411.0,9.8,19.1,8411.0 +2643,3.13,52.224163366666666,6.853192066666669,02:39.9,3.1,8411.0,9.8,19.1,8411.0 +2644,3.13,52.2241439,6.8532252000000025,02:39.6,3.1,8420.0,9.8,19.1,8420.0 +2645,3.13,52.22412333333334,6.853260500000002,02:39.6,3.1,8420.0,9.8,19.1,8420.0 +2646,3.13,52.224102766666675,6.853295800000001,02:39.6,3.1,8420.0,9.8,19.1,8420.0 +2647,3.15,52.22408220000001,6.8533311,02:38.6,3.1,8430.0,9.6,19.6,8430.0 +2648,3.15,52.22406200000001,6.853365366666667,02:38.6,3.1,8430.0,9.6,19.6,8430.0 +2649,3.15,52.2240418,6.853399633333335,02:38.6,3.1,8430.0,9.6,19.6,8430.0 +2650,3.18,52.2240216,6.8534339000000015,02:37.0,3.1,8440.0,9.6,19.8,8440.0 +2651,3.18,52.224001066666666,6.8534681666666675,02:37.0,3.1,8440.0,9.6,19.8,8440.0 +2652,3.18,52.22398053333333,6.853502433333334,02:37.0,3.1,8440.0,9.6,19.8,8440.0 +2653,3.21,52.22396,6.8535367,02:35.6,3.2,8450.0,9.6,19.9,8450.0 +2654,3.21,52.22393926666667,6.853570933333334,02:35.6,3.2,8450.0,9.6,19.9,8450.0 +2655,3.21,52.22391853333333,6.853605166666666,02:35.6,3.2,8450.0,9.6,19.9,8450.0 +2656,3.22,52.2238978,6.8536394,02:35.1,3.2,8459.0,9.6,20.0,8459.0 +2657,3.22,52.22387943333334,6.8536709,02:35.1,3.2,8459.0,9.6,20.0,8459.0 +2658,3.22,52.22386106666668,6.8537024,02:35.1,3.2,8459.0,9.6,20.0,8459.0 +2659,3.21,52.22384270000001,6.853733900000001,02:35.7,3.2,8468.0,9.6,20.0,8468.0 +2660,3.21,52.22382210000001,6.853769433333333,02:35.7,3.2,8468.0,9.6,20.0,8468.0 +2661,3.21,52.22380150000001,6.853804966666667,02:35.7,3.2,8468.0,9.6,20.0,8468.0 +2662,3.18,52.2237809,6.8538405,02:37.0,3.1,8478.0,9.5,19.9,8478.0 +2663,3.18,52.2237605,6.8538729,02:37.0,3.1,8478.0,9.5,19.9,8478.0 +2664,3.18,52.2237401,6.8539053,02:37.0,3.1,8478.0,9.5,19.9,8478.0 +2665,3.15,52.2237197,6.8539377,02:38.6,3.1,8488.0,9.5,19.7,8488.0 +2666,3.15,52.22369956666667,6.853969966666667,02:38.6,3.1,8488.0,9.5,19.7,8488.0 +2667,3.15,52.22367943333333,6.8540022333333335,02:38.6,3.1,8488.0,9.5,19.7,8488.0 +2668,3.13,52.2236593,6.8540345,02:39.7,3.1,8497.0,9.7,19.2,8497.0 +2669,3.13,52.2236382,6.85407,02:39.7,3.1,8497.0,9.7,19.2,8497.0 +2670,3.13,52.2236171,6.8541055,02:39.7,3.1,8497.0,9.7,19.2,8497.0 +2671,3.12,52.223596,6.854141,02:40.3,3.1,8507.0,9.7,19.2,8507.0 +2672,3.12,52.22357446666667,6.854175533333334,02:40.3,3.1,8507.0,9.7,19.2,8507.0 +2673,3.12,52.22355293333333,6.854210066666667,02:40.3,3.1,8507.0,9.7,19.2,8507.0 +2674,3.11,52.2235314,6.8542446,02:40.6,3.1,8518.0,9.8,19.0,8518.0 +2675,3.11,52.223511699999996,6.8542768999999995,02:40.6,3.1,8518.0,9.8,19.0,8518.0 +2676,3.11,52.223492,6.854309199999999,02:40.6,3.1,8518.0,9.8,19.0,8518.0 +2677,3.11,52.2234723,6.8543414999999985,02:40.7,3.1,8527.0,9.8,19.0,8527.0 +2678,3.11,52.22345615,6.854367124999999,02:40.7,3.1,8527.0,9.8,19.0,8527.0 +2679,3.11,52.22344,6.854392749999999,02:40.7,3.1,8527.0,9.8,19.0,8527.0 +2680,3.11,52.22342385,6.854418375,02:40.7,3.1,8527.0,9.8,19.0,8527.0 +2681,3.11,52.2234077,6.854444,02:40.8,3.1,8537.0,9.7,19.1,8537.0 +2682,3.11,52.2233869,6.854477666666667,02:40.8,3.1,8537.0,9.7,19.1,8537.0 +2683,3.11,52.2233661,6.854511333333333,02:40.8,3.1,8537.0,9.7,19.1,8537.0 +2684,3.1,52.2233453,6.854545,02:41.0,3.1,8547.0,9.7,19.1,8547.0 +2685,3.1,52.223323400000005,6.854579233333333,02:41.0,3.1,8547.0,9.7,19.1,8547.0 +2686,3.1,52.223301500000005,6.854613466666667,02:41.0,3.1,8547.0,9.7,19.1,8547.0 +2687,3.09,52.22327960000001,6.8546477,02:41.7,3.0,8557.0,9.8,18.8,8557.0 +2688,3.09,52.22325913333334,6.8546818,02:41.7,3.0,8557.0,9.8,18.8,8557.0 +2689,3.09,52.22323866666668,6.8547159,02:41.7,3.0,8557.0,9.8,18.8,8557.0 +2690,3.08,52.22321820000001,6.85475,02:42.5,3.0,8567.0,9.9,18.5,8567.0 +2691,3.08,52.22320287500001,6.8547750249999995,02:42.5,3.0,8567.0,9.9,18.5,8567.0 +2692,3.08,52.223187550000006,6.854800049999999,02:42.5,3.0,8567.0,9.9,18.5,8567.0 +2693,3.08,52.223172225,6.854825074999998,02:42.5,3.0,8567.0,9.9,18.5,8567.0 +2694,3.06,52.2231569,6.8548500999999975,02:43.4,3.0,8576.0,10.2,18.0,8576.0 +2695,3.06,52.22313546666667,6.854883166666665,02:43.4,3.0,8576.0,10.2,18.0,8576.0 +2696,3.06,52.22311403333333,6.854916233333332,02:43.4,3.0,8576.0,10.2,18.0,8576.0 +2697,3.05,52.2230926,6.8549493,02:44.1,3.0,8586.0,10.2,17.9,8586.0 +2698,3.05,52.223069233333334,6.8549853,02:44.1,3.0,8586.0,10.2,17.9,8586.0 +2699,3.05,52.223045866666666,6.855021300000001,02:44.1,3.0,8586.0,10.2,17.9,8586.0 +2700,3.04,52.2230225,6.8550573,02:44.5,3.0,8597.0,10.2,17.7,8597.0 +2701,3.04,52.223001,6.855089066666666,02:44.5,3.0,8597.0,10.2,17.7,8597.0 +2702,3.04,52.2229795,6.855120833333332,02:44.5,3.0,8597.0,10.2,17.7,8597.0 +2703,3.03,52.222958,6.8551525999999985,02:45.0,3.0,8606.0,10.3,17.6,8606.0 +2704,3.03,52.2229411,6.855179399999999,02:45.0,3.0,8606.0,10.3,17.6,8606.0 +2705,3.03,52.222924199999994,6.8552062,02:45.0,3.0,8606.0,10.3,17.6,8606.0 +2706,3.03,52.222907299999996,6.855232999999999,02:45.0,3.0,8606.0,10.3,17.6,8606.0 +2707,3.01,52.2228904,6.8552598,02:46.3,3.0,8617.0,10.4,17.3,8617.0 +2708,3.01,52.222868399999996,6.855294333333333,02:46.3,3.0,8617.0,10.4,17.3,8617.0 +2709,3.01,52.2228464,6.855328866666667,02:46.3,3.0,8617.0,10.4,17.3,8617.0 +2710,2.97,52.2228244,6.855363400000001,02:48.3,2.9,8627.0,10.4,17.0,8627.0 +2711,2.97,52.222807725,6.85538995,02:48.3,2.9,8627.0,10.4,17.0,8627.0 +2712,2.97,52.22279105,6.855416499999999,02:48.3,2.9,8627.0,10.4,17.0,8627.0 +2713,2.97,52.222774375,6.855443049999998,02:48.3,2.9,8627.0,10.4,17.0,8627.0 +2714,2.93,52.2227577,6.8554695999999975,02:50.6,2.9,8638.0,10.2,17.1,8638.0 +2715,2.93,52.22274145,6.855494574999998,02:50.6,2.9,8638.0,10.2,17.1,8638.0 +2716,2.93,52.2227252,6.855519549999999,02:50.6,2.9,8638.0,10.2,17.1,8638.0 +2717,2.93,52.222708950000005,6.855544525,02:50.6,2.9,8638.0,10.2,17.1,8638.0 +2718,2.9,52.2226927,6.8555695000000005,02:52.2,2.9,8647.0,10.1,17.1,8647.0 +2719,2.9,52.2226729,6.855599000000001,02:52.2,2.9,8647.0,10.1,17.1,8647.0 +2720,2.9,52.2226531,6.8556285,02:52.2,2.9,8647.0,10.1,17.1,8647.0 +2721,2.9,52.2226333,6.855658,02:52.2,2.9,8656.0,10.1,17.1,8656.0 +2722,2.9,52.22260833333333,6.8556952,02:52.2,2.9,8656.0,10.1,17.1,8656.0 +2723,2.9,52.22258336666666,6.8557324,02:52.2,2.9,8656.0,10.1,17.1,8656.0 +2724,2.92,52.2225584,6.8557696,02:50.9,2.9,8668.0,9.9,17.6,8668.0 +2725,2.92,52.222541975,6.855795575,02:50.9,2.9,8668.0,9.9,17.6,8668.0 +2726,2.92,52.22252555,6.85582155,02:50.9,2.9,8668.0,9.9,17.6,8668.0 +2727,2.92,52.222509124999995,6.855847525000001,02:50.9,2.9,8668.0,9.9,17.6,8668.0 +2728,2.94,52.2224927,6.8558735,02:50.2,2.9,8678.0,10.3,17.0,8678.0 +2729,2.94,52.2224927,6.8558735,02:50.2,2.9,8678.0,10.3,17.0,8678.0 +2730,2.98,52.2224927,6.8558735,02:48.0,2.9,8678.0,11.1,16.0,8678.0 +2731,2.98,52.22245425,6.855934850000001,02:48.0,2.9,8678.0,11.1,16.0,8678.0 +2732,2.35,52.2224158,6.8559962,03:32.7,2.3,8690.0,10.7,13.1,8690.0 +2733,2.35,52.222408356,6.856008224,03:32.7,2.3,8690.0,10.7,13.1,8690.0 +2734,2.35,52.222400912,6.856020248,03:32.7,2.3,8690.0,10.7,13.1,8690.0 +2735,2.35,52.222393468,6.856032272,03:32.7,2.3,8690.0,10.7,13.1,8690.0 +2736,2.35,52.222386024,6.856044295999999,03:32.7,2.3,8690.0,10.7,13.1,8690.0 +2737,2.35,52.22237858,6.8560563199999995,03:32.7,2.3,8690.0,10.7,13.1,8690.0 +2738,2.35,52.222371136,6.856068344,03:32.7,2.3,8690.0,10.7,13.1,8690.0 +2739,2.35,52.222363692,6.856080368,03:32.7,2.3,8690.0,10.7,13.1,8690.0 +2740,2.35,52.222356248,6.856092392,03:32.7,2.3,8690.0,10.7,13.1,8690.0 +2741,2.35,52.222348804,6.856104416,03:32.7,2.3,8690.0,10.7,13.1,8690.0 +2742,2.35,52.22234136,6.856116439999999,03:32.7,2.3,8690.0,10.7,13.1,8690.0 +2743,2.35,52.222333916,6.856128463999999,03:32.7,2.3,8690.0,10.7,13.1,8690.0 +2744,2.35,52.222326472,6.856140487999999,03:32.7,2.3,8690.0,10.7,13.1,8690.0 +2745,2.35,52.222319028,6.8561525119999995,03:32.7,2.3,8690.0,10.7,13.1,8690.0 +2746,2.35,52.222311584,6.856164536,03:32.7,2.3,8690.0,10.7,13.1,8690.0 +2747,2.35,52.22230414,6.85617656,03:32.7,2.3,8690.0,10.7,13.1,8690.0 +2748,2.35,52.222296696,6.856188583999999,03:32.7,2.3,8690.0,10.7,13.1,8690.0 +2749,2.35,52.222289252,6.856200607999999,03:32.7,2.3,8690.0,10.7,13.1,8690.0 +2750,2.35,52.222281808,6.856212631999999,03:32.7,2.3,8690.0,10.7,13.1,8690.0 +2751,2.35,52.222274364,6.856224655999999,03:32.7,2.3,8690.0,10.7,13.1,8690.0 +2752,2.35,52.22226692,6.856236679999999,03:32.7,2.3,8690.0,10.7,13.1,8690.0 +2753,2.35,52.222259476,6.8562487039999995,03:32.7,2.3,8690.0,10.7,13.1,8690.0 +2754,2.35,52.222252032,6.856260727999999,03:32.7,2.3,8690.0,10.7,13.1,8690.0 +2755,2.35,52.222244588,6.856272751999999,03:32.7,2.3,8690.0,10.7,13.1,8690.0 +2756,2.35,52.222237144,6.856284775999999,03:32.7,2.3,8690.0,10.7,13.1,8690.0 +2757,1.56,52.2222297,6.856296799999999,05:20.5,1.5,8719.0,6.2,14.9,8719.0 +2758,1.56,52.22223063333333,6.8563003333333326,05:20.5,1.5,8719.0,6.2,14.9,8719.0 +2759,1.56,52.222231566666665,6.856303866666667,05:20.5,1.5,8719.0,6.2,14.9,8719.0 +2760,0.79,52.2222325,6.8563074,10:35.2,0.7,8720.0,3.0,15.6,8720.0 +2761,0.79,52.22223256666667,6.856308833333333,10:35.2,0.7,8720.0,3.0,15.6,8720.0 +2762,0.79,52.222232633333334,6.856310266666667,10:35.2,0.7,8720.0,3.0,15.6,8720.0 +2763,0.32,52.222232700000006,6.8563117,26:07.3,0.3,8720.0,0.8,22.0,8720.0 +2764,0.32,52.22223593333334,6.856313733333334,26:07.3,0.3,8720.0,0.8,22.0,8720.0 +2765,0.32,52.22223916666667,6.8563157666666665,26:07.3,0.3,8720.0,0.8,22.0,8720.0 +2766,0.19,52.2222424,6.8563178,43:03.7,0.1,8721.0,0.4,28.2,8721.0 +2767,0.33,52.22224779999999,6.8563199999999975,25:19.7,0.3,8721.0,0.6,31.9,8721.0 +2768,0.33,52.22225295,6.8563201,25:19.7,0.3,8721.0,0.6,31.9,8721.0 +2769,0.56,52.2222581,6.856320200000001,14:36.8,0.5,8722.0,0.9,35.6,8722.0 +2770,0.78,52.2222732,6.8563156,10:41.9,0.7,8724.0,1.2,38.0,8724.0 +2771,0.78,52.22228025,6.8563120500000005,10:41.9,0.7,8724.0,1.2,38.0,8724.0 +2772,0.96,52.2222873,6.856308500000001,08:42.7,0.9,8725.0,1.6,35.8,8725.0 +2773,1.11,52.22230560000001,6.8562974,07:29.6,1.1,8727.0,1.7,38.6,8727.0 +2774,1.11,52.222312650000006,6.85629195,07:29.6,1.1,8727.0,1.7,38.6,8727.0 +2775,1.22,52.22231970000001,6.8562865,06:51.1,1.2,8728.0,1.8,39.5,8728.0 +2776,1.22,52.22232790000001,6.856277400000001,06:51.1,1.2,8728.0,1.8,39.5,8728.0 +2777,1.27,52.22233610000001,6.856268300000001,06:33.2,1.2,8731.0,1.9,39.8,8731.0 +2778,1.19,52.22234810000002,6.8562535,06:58.9,1.1,8732.0,2.2,31.5,8732.0 +2779,1.19,52.222351202985095,6.856249946268657,06:58.9,1.1,8732.0,2.2,31.5,8732.0 +2780,1.19,52.22235430597017,6.856246392537313,06:58.9,1.1,8732.0,2.2,31.5,8732.0 +2781,1.19,52.22235740895524,6.85624283880597,06:58.9,1.1,8732.0,2.2,31.5,8732.0 +2782,1.19,52.222360511940316,6.856239285074627,06:58.9,1.1,8732.0,2.2,31.5,8732.0 +2783,1.19,52.22236361492539,6.856235731343284,06:58.9,1.1,8732.0,2.2,31.5,8732.0 +2784,1.19,52.22236671791047,6.856232177611941,06:58.9,1.1,8732.0,2.2,31.5,8732.0 +2785,1.19,52.22236982089554,6.856228623880598,06:58.9,1.1,8732.0,2.2,31.5,8732.0 +2786,1.19,52.22237292388061,6.856225070149254,06:58.9,1.1,8732.0,2.2,31.5,8732.0 +2787,1.19,52.22237602686569,6.856221516417911,06:58.9,1.1,8732.0,2.2,31.5,8732.0 +2788,1.19,52.222379129850765,6.856217962686568,06:58.9,1.1,8732.0,2.2,31.5,8732.0 +2789,1.19,52.222382232835834,6.856214408955224,06:58.9,1.1,8732.0,2.2,31.5,8732.0 +2790,1.19,52.22238533582091,6.856210855223881,06:58.9,1.1,8732.0,2.2,31.5,8732.0 +2791,1.19,52.222388438805986,6.856207301492538,06:58.9,1.1,8732.0,2.2,31.5,8732.0 +2792,1.19,52.22239154179106,6.856203747761194,06:58.9,1.1,8732.0,2.2,31.5,8732.0 +2793,1.19,52.22239464477613,6.856200194029851,06:58.9,1.1,8732.0,2.2,31.5,8732.0 +2794,1.19,52.22239774776121,6.856196640298508,06:58.9,1.1,8732.0,2.2,31.5,8732.0 +2795,1.19,52.22240085074628,6.856193086567164,06:58.9,1.1,8732.0,2.2,31.5,8732.0 +2796,1.19,52.22240395373136,6.856189532835821,06:58.9,1.1,8732.0,2.2,31.5,8732.0 +2797,1.19,52.22240705671643,6.856185979104478,06:58.9,1.1,8732.0,2.2,31.5,8732.0 +2798,1.19,52.222410159701504,6.8561824253731345,06:58.9,1.1,8732.0,2.2,31.5,8732.0 +2799,1.19,52.22241326268658,6.8561788716417915,06:58.9,1.1,8732.0,2.2,31.5,8732.0 +2800,1.19,52.222416365671656,6.8561753179104485,06:58.9,1.1,8732.0,2.2,31.5,8732.0 +2801,1.19,52.22241946865673,6.856171764179105,06:58.9,1.1,8732.0,2.2,31.5,8732.0 +2802,1.19,52.2224225716418,6.856168210447762,06:58.9,1.1,8732.0,2.2,31.5,8732.0 +2803,1.19,52.22242567462688,6.856164656716419,06:58.9,1.1,8732.0,2.2,31.5,8732.0 +2804,1.19,52.22242877761195,6.856161102985075,06:58.9,1.1,8732.0,2.2,31.5,8732.0 +2805,1.19,52.22243188059703,6.856157549253732,06:58.9,1.1,8732.0,2.2,31.5,8732.0 +2806,1.19,52.2224349835821,6.856153995522389,06:58.9,1.1,8732.0,2.2,31.5,8732.0 +2807,1.19,52.22243808656717,6.856150441791045,06:58.9,1.1,8732.0,2.2,31.5,8732.0 +2808,1.19,52.22244118955225,6.856146888059702,06:58.9,1.1,8732.0,2.2,31.5,8732.0 +2809,1.19,52.222444292537325,6.856143334328359,06:58.9,1.1,8732.0,2.2,31.5,8732.0 +2810,1.19,52.222447395522394,6.856139780597015,06:58.9,1.1,8732.0,2.2,31.5,8732.0 +2811,1.19,52.22245049850747,6.856136226865672,06:58.9,1.1,8732.0,2.2,31.5,8732.0 +2812,1.19,52.222453601492546,6.856132673134329,06:58.9,1.1,8732.0,2.2,31.5,8732.0 +2813,1.19,52.22245670447762,6.856129119402986,06:58.9,1.1,8732.0,2.2,31.5,8732.0 +2814,1.19,52.22245980746269,6.856125565671642,06:58.9,1.1,8732.0,2.2,31.5,8732.0 +2815,1.19,52.22246291044777,6.8561220119402995,06:58.9,1.1,8732.0,2.2,31.5,8732.0 +2816,1.19,52.22246601343284,6.8561184582089565,06:58.9,1.1,8732.0,2.2,31.5,8732.0 +2817,1.19,52.22246911641792,6.856114904477613,06:58.9,1.1,8732.0,2.2,31.5,8732.0 +2818,1.19,52.22247221940299,6.85611135074627,06:58.9,1.1,8732.0,2.2,31.5,8732.0 +2819,1.19,52.222475322388064,6.856107797014927,06:58.9,1.1,8732.0,2.2,31.5,8732.0 +2820,1.19,52.22247842537314,6.856104243283583,06:58.9,1.1,8732.0,2.2,31.5,8732.0 +2821,1.19,52.222481528358216,6.85610068955224,06:58.9,1.1,8732.0,2.2,31.5,8732.0 +2822,1.19,52.222484631343285,6.856097135820897,06:58.9,1.1,8732.0,2.2,31.5,8732.0 +2823,1.19,52.22248773432836,6.856093582089553,06:58.9,1.1,8732.0,2.2,31.5,8732.0 +2824,1.19,52.22249083731344,6.85609002835821,06:58.9,1.1,8732.0,2.2,31.5,8732.0 +2825,1.19,52.22249394029851,6.856086474626867,06:58.9,1.1,8732.0,2.2,31.5,8732.0 +2826,1.19,52.22249704328359,6.856082920895523,06:58.9,1.1,8732.0,2.2,31.5,8732.0 +2827,1.19,52.22250014626866,6.85607936716418,06:58.9,1.1,8732.0,2.2,31.5,8732.0 +2828,1.19,52.222503249253734,6.856075813432837,06:58.9,1.1,8732.0,2.2,31.5,8732.0 +2829,1.19,52.22250635223881,6.856072259701493,06:58.9,1.1,8732.0,2.2,31.5,8732.0 +2830,1.19,52.222509455223886,6.85606870597015,06:58.9,1.1,8732.0,2.2,31.5,8732.0 +2831,1.19,52.222512558208955,6.856065152238807,06:58.9,1.1,8732.0,2.2,31.5,8732.0 +2832,1.19,52.22251566119403,6.8560615985074636,06:58.9,1.1,8732.0,2.2,31.5,8732.0 +2833,1.19,52.22251876417911,6.856058044776121,06:58.9,1.1,8732.0,2.2,31.5,8732.0 +2834,1.19,52.22252186716418,6.856054491044778,06:58.9,1.1,8732.0,2.2,31.5,8732.0 +2835,1.19,52.22252497014925,6.856050937313434,06:58.9,1.1,8732.0,2.2,31.5,8732.0 +2836,1.19,52.22252807313433,6.856047383582091,06:58.9,1.1,8732.0,2.2,31.5,8732.0 +2837,1.19,52.2225311761194,6.856043829850748,06:58.9,1.1,8732.0,2.2,31.5,8732.0 +2838,1.19,52.22253427910448,6.856040276119404,06:58.9,1.1,8732.0,2.2,31.5,8732.0 +2839,1.19,52.22253738208955,6.856036722388061,06:58.9,1.1,8732.0,2.2,31.5,8732.0 +2840,1.19,52.222540485074624,6.856033168656718,06:58.9,1.1,8732.0,2.2,31.5,8732.0 +2841,1.19,52.2225435880597,6.856029614925374,06:58.9,1.1,8732.0,2.2,31.5,8732.0 +2842,1.19,52.222546691044776,6.856026061194031,06:58.9,1.1,8732.0,2.2,31.5,8732.0 +2843,1.19,52.222549794029845,6.856022507462688,06:58.9,1.1,8732.0,2.2,31.5,8732.0 +2844,1.19,52.22255289701492,6.856018953731344,06:58.9,1.1,8732.0,2.2,31.5,8732.0 +2845,1.38,52.222556,6.856015400000001,06:01.3,1.3,8761.0,3.3,24.8,8761.0 +2846,1.38,52.2225744,6.8559913,06:01.3,1.3,8761.0,3.3,24.8,8761.0 +2847,1.38,52.2225928,6.8559671999999985,06:01.3,1.3,8761.0,3.3,24.8,8761.0 +2848,1.83,52.2226112,6.8559430999999975,04:33.1,1.8,8768.0,5.6,19.4,8768.0 +2849,1.83,52.22263256666667,6.855914899999998,04:33.1,1.8,8768.0,5.6,19.4,8768.0 +2850,1.83,52.22265393333333,6.8558867,04:33.1,1.8,8768.0,5.6,19.4,8768.0 +2851,2.39,52.2226753,6.855858500000001,03:28.9,2.3,8778.0,8.4,17.1,8778.0 +2852,2.39,52.222697833333335,6.855829233333334,03:28.9,2.3,8778.0,8.4,17.1,8778.0 +2853,2.39,52.222720366666664,6.855799966666667,03:28.9,2.3,8778.0,8.4,17.1,8778.0 +2854,2.87,52.2227429,6.8557707,02:54.0,2.8,8787.0,8.6,19.8,8787.0 +2855,2.87,52.222765566666666,6.855741233333334,02:54.0,2.8,8787.0,8.6,19.8,8787.0 +2856,2.87,52.22278823333333,6.855711766666667,02:54.0,2.8,8787.0,8.6,19.8,8787.0 +2857,3.16,52.2228109,6.855682300000002,02:37.9,3.1,8797.0,9.6,19.6,8797.0 +2858,3.16,52.222828525,6.855658225000001,02:37.9,3.1,8797.0,9.6,19.6,8797.0 +2859,3.16,52.222846149999995,6.85563415,02:37.9,3.1,8797.0,9.6,19.6,8797.0 +2860,3.16,52.222863775,6.855610075,02:37.9,3.1,8797.0,9.6,19.6,8797.0 +2861,3.27,52.2228814,6.855586,02:32.6,3.2,8807.0,9.9,19.7,8807.0 +2862,3.27,52.22290386666666,6.855553433333333,02:32.6,3.2,8807.0,9.9,19.7,8807.0 +2863,3.27,52.222926333333334,6.855520866666667,02:32.6,3.2,8807.0,9.9,19.7,8807.0 +2864,3.29,52.2229488,6.8554883,02:32.1,3.2,8817.0,9.8,20.0,8817.0 +2865,3.29,52.222972033333335,6.8554553333333335,02:32.1,3.2,8817.0,9.8,20.0,8817.0 +2866,3.29,52.222995266666665,6.855422366666667,02:32.1,3.2,8817.0,9.8,20.0,8817.0 +2867,3.3,52.2230185,6.8553894,02:31.3,3.3,8827.0,9.8,20.1,8827.0 +2868,3.3,52.2230503,6.8553424,02:31.3,3.3,8827.0,9.8,20.1,8827.0 +2869,3.33,52.2230821,6.8552954,02:30.2,3.3,8837.0,9.8,20.2,8837.0 +2870,3.33,52.2231049,6.855262333333333,02:30.2,3.3,8837.0,9.8,20.2,8837.0 +2871,3.33,52.2231277,6.855229266666667,02:30.2,3.3,8837.0,9.8,20.2,8837.0 +2872,3.34,52.2231505,6.8551962,02:29.8,3.3,8847.0,9.8,20.2,8847.0 +2873,3.34,52.22317243333333,6.855164033333334,02:29.8,3.3,8847.0,9.8,20.2,8847.0 +2874,3.34,52.22319436666667,6.8551318666666665,02:29.8,3.3,8847.0,9.8,20.2,8847.0 +2875,3.33,52.2232163,6.8550997,02:30.2,3.3,8857.0,9.9,20.0,8857.0 +2876,3.33,52.223232949999996,6.855074925,02:30.2,3.3,8857.0,9.9,20.0,8857.0 +2877,3.33,52.2232496,6.85505015,02:30.2,3.3,8857.0,9.9,20.0,8857.0 +2878,3.33,52.22326625,6.855025375,02:30.2,3.3,8857.0,9.9,20.0,8857.0 +2879,3.31,52.2232829,6.8550006,02:31.1,3.3,8867.0,10.0,19.7,8867.0 +2880,3.31,52.2233158,6.854950250000001,02:31.1,3.3,8867.0,10.0,19.7,8867.0 +2881,3.29,52.2233487,6.854899900000001,02:31.8,3.2,8877.0,10.0,19.7,8877.0 +2882,3.29,52.22337053333334,6.854866033333334,02:31.8,3.2,8877.0,10.0,19.7,8877.0 +2883,3.29,52.22339236666667,6.854832166666667,02:31.8,3.2,8877.0,10.0,19.7,8877.0 +2884,3.28,52.22341420000001,6.8547983,02:32.2,3.2,8887.0,10.0,19.6,8887.0 +2885,3.28,52.223435433333336,6.854764433333333,02:32.2,3.2,8887.0,10.0,19.6,8887.0 +2886,3.28,52.22345666666667,6.854730566666667,02:32.2,3.2,8887.0,10.0,19.6,8887.0 +2887,3.27,52.2234779,6.854696700000001,02:32.7,3.2,8897.0,9.8,20.0,8897.0 +2888,3.27,52.223499233333335,6.8546629333333335,02:32.7,3.2,8897.0,9.8,20.0,8897.0 +2889,3.27,52.223520566666664,6.854629166666667,02:32.7,3.2,8897.0,9.8,20.0,8897.0 +2890,3.26,52.2235419,6.8545954,02:33.3,3.2,8907.0,9.6,20.2,8907.0 +2891,3.26,52.22356276666667,6.854561966666667,02:33.3,3.2,8907.0,9.6,20.2,8907.0 +2892,3.26,52.223583633333334,6.854528533333333,02:33.3,3.2,8907.0,9.6,20.2,8907.0 +2893,3.25,52.2236045,6.8544951,02:33.9,3.2,8917.0,9.5,20.3,8917.0 +2894,3.25,52.22362413333333,6.854463866666667,02:33.9,3.2,8917.0,9.5,20.3,8917.0 +2895,3.25,52.22364376666667,6.854432633333334,02:33.9,3.2,8917.0,9.5,20.3,8917.0 +2896,3.24,52.2236634,6.854401400000001,02:34.3,3.2,8926.0,9.4,20.5,8926.0 +2897,3.24,52.223684733333336,6.854367900000001,02:34.3,3.2,8926.0,9.4,20.5,8926.0 +2898,3.24,52.223706066666665,6.854334400000001,02:34.3,3.2,8926.0,9.4,20.5,8926.0 +2899,3.25,52.2237274,6.8543009,02:33.9,3.2,8936.0,9.5,20.5,8936.0 +2900,3.25,52.22374786666667,6.854269066666667,02:33.9,3.2,8936.0,9.5,20.5,8936.0 +2901,3.25,52.22376833333333,6.854237233333334,02:33.9,3.2,8936.0,9.5,20.5,8936.0 +2902,3.27,52.2237888,6.8542054000000014,02:33.0,3.2,8945.0,9.6,20.3,8945.0 +2903,3.27,52.2238105,6.854171666666668,02:33.0,3.2,8945.0,9.6,20.3,8945.0 +2904,3.27,52.223832200000004,6.854137933333334,02:33.0,3.2,8945.0,9.6,20.3,8945.0 +2905,3.32,52.2238539,6.8541042,02:30.5,3.3,8955.0,9.8,20.2,8955.0 +2906,3.32,52.2238764,6.854069699999999,02:30.5,3.3,8955.0,9.8,20.2,8955.0 +2907,3.32,52.2238989,6.854035199999999,02:30.5,3.3,8955.0,9.8,20.2,8955.0 +2908,3.41,52.2239214,6.8540006999999985,02:26.7,3.4,8966.0,10.2,20.0,8966.0 +2909,3.41,52.2239437,6.853966233333332,02:26.7,3.4,8966.0,10.2,20.0,8966.0 +2910,3.41,52.223966000000004,6.853931766666666,02:26.7,3.4,8966.0,10.2,20.0,8966.0 +2911,3.42,52.2239883,6.8538973,02:26.1,3.4,8976.0,11.1,18.4,8976.0 +2912,3.42,52.2240097,6.8538635999999995,02:26.1,3.4,8976.0,11.1,18.4,8976.0 +2913,3.42,52.2240311,6.8538299,02:26.1,3.4,8976.0,11.1,18.4,8976.0 +2914,3.28,52.2240525,6.8537962,02:32.5,3.2,8986.0,9.1,21.6,8986.0 +2915,3.28,52.2240525,6.8537962,02:32.5,3.2,8986.0,9.1,21.6,8986.0 +2916,3.28,52.2240525,6.8537962,02:32.5,3.2,8986.0,9.1,21.6,8986.0 +2917,3.28,52.2240525,6.8537962,02:32.5,3.2,8986.0,9.1,21.6,8986.0 +2918,3.28,52.2240525,6.8537962,02:32.5,3.2,8986.0,9.1,21.6,8986.0 +2919,3.28,52.2240525,6.8537962,02:32.5,3.2,8986.0,9.1,21.6,8986.0 +2920,2.98,52.2240525,6.8537962,02:47.6,2.9,8986.0,7.6,23.4,8986.0 +2921,2.98,52.22408316666667,6.8537479999999995,02:47.6,2.9,8986.0,7.6,23.4,8986.0 +2922,2.98,52.224113833333334,6.8536998,02:47.6,2.9,8986.0,7.6,23.4,8986.0 +2923,2.98,52.2241445,6.8536516,02:47.6,2.9,8986.0,7.6,23.4,8986.0 +2924,2.98,52.22417516666667,6.8536034,02:47.6,2.9,8986.0,7.6,23.4,8986.0 +2925,2.98,52.224205833333336,6.853555200000001,02:47.6,2.9,8986.0,7.6,23.4,8986.0 +2926,2.63,52.2242365,6.8535070000000005,03:10.2,2.6,9014.0,6.4,24.3,9014.0 +2927,2.63,52.22425256666667,6.853481966666667,03:10.2,2.6,9014.0,6.4,24.3,9014.0 +2928,2.63,52.22426863333333,6.853456933333334,03:10.2,2.6,9014.0,6.4,24.3,9014.0 +2929,2.45,52.2242847,6.8534319,03:24.4,2.4,9022.0,6.0,24.1,9022.0 +2930,2.45,52.2243047,6.8534012,03:24.4,2.4,9022.0,6.0,24.1,9022.0 +2931,2.45,52.224324700000004,6.8533705000000005,03:24.4,2.4,9022.0,6.0,24.1,9022.0 +2932,2.57,52.2243447,6.8533398000000005,03:14.4,2.5,9031.0,6.8,22.6,9031.0 +2933,2.57,52.22436496666667,6.853308466666667,03:14.4,2.5,9031.0,6.8,22.6,9031.0 +2934,2.57,52.22438523333334,6.853277133333333,03:14.4,2.5,9031.0,6.8,22.6,9031.0 +2935,2.88,52.2244055,6.8532458,02:53.8,2.8,9040.0,8.7,19.7,9040.0 +2936,2.88,52.22442613333334,6.8532136333333336,02:53.8,2.8,9040.0,8.7,19.7,9040.0 +2937,2.88,52.22444676666667,6.853181466666666,02:53.8,2.8,9040.0,8.7,19.7,9040.0 +2938,3.19,52.2244674,6.8531493,02:36.6,3.1,9050.0,9.1,21.0,9050.0 +2939,3.19,52.224488166666674,6.8531164,02:36.6,3.1,9050.0,9.1,21.0,9050.0 +2940,3.19,52.22450893333334,6.8530835,02:36.6,3.1,9050.0,9.1,21.0,9050.0 +2941,3.39,52.22452970000001,6.8530506,02:27.2,3.3,9059.0,9.8,20.7,9059.0 +2942,3.39,52.224551466666675,6.8530161666666665,02:27.2,3.3,9059.0,9.8,20.7,9059.0 +2943,3.39,52.22457323333334,6.8529817333333325,02:27.2,3.3,9059.0,9.8,20.7,9059.0 +2944,3.44,52.224595,6.8529472999999985,02:25.1,3.4,9069.0,10.1,20.4,9069.0 +2945,3.44,52.22461693333334,6.852912366666666,02:25.1,3.4,9069.0,10.1,20.4,9069.0 +2946,3.44,52.224638866666666,6.852877433333333,02:25.1,3.4,9069.0,10.1,20.4,9069.0 +2947,3.42,52.2246608,6.8528425,02:26.1,3.4,9080.0,10.1,20.2,9080.0 +2948,3.42,52.2246916,6.852792599999999,02:26.1,3.4,9080.0,10.1,20.2,9080.0 +2949,3.4,52.2247224,6.8527426999999985,02:26.8,3.4,9089.0,10.1,20.1,9089.0 +2950,3.4,52.2247438,6.852708033333332,02:26.8,3.4,9089.0,10.1,20.1,9089.0 +2951,3.4,52.2247652,6.852673366666666,02:26.8,3.4,9089.0,10.1,20.1,9089.0 +2952,3.39,52.2247866,6.8526387,02:27.5,3.3,9099.0,10.0,20.2,9099.0 +2953,3.39,52.224807733333336,6.852604533333333,02:27.5,3.3,9099.0,10.0,20.2,9099.0 +2954,3.39,52.22482886666667,6.852570366666668,02:27.5,3.3,9099.0,10.0,20.2,9099.0 +2955,3.37,52.22485,6.852536200000001,02:28.2,3.3,9109.0,9.9,20.2,9109.0 +2956,3.37,52.224870333333335,6.852503266666668,02:28.2,3.3,9109.0,9.9,20.2,9109.0 +2957,3.37,52.22489066666667,6.8524703333333346,02:28.2,3.3,9109.0,9.9,20.2,9109.0 +2958,3.36,52.224911,6.852437400000001,02:28.6,3.3,9119.0,9.8,20.4,9119.0 +2959,3.36,52.2249329,6.852402066666667,02:28.6,3.3,9119.0,9.8,20.4,9119.0 +2960,3.36,52.224954800000006,6.852366733333334,02:28.6,3.3,9119.0,9.8,20.4,9119.0 +2961,3.36,52.224976700000006,6.8523314,02:28.8,3.3,9129.0,9.8,20.4,9129.0 +2962,3.36,52.224996100000006,6.852298299999999,02:28.8,3.3,9129.0,9.8,20.4,9129.0 +2963,3.36,52.2250155,6.852265199999998,02:28.8,3.3,9129.0,9.8,20.4,9129.0 +2964,3.35,52.2250349,6.8522320999999975,02:29.1,3.3,9139.0,9.7,20.6,9139.0 +2965,3.35,52.225055133333335,6.852197166666665,02:29.1,3.3,9139.0,9.7,20.6,9139.0 +2966,3.35,52.225075366666665,6.852162233333333,02:29.1,3.3,9139.0,9.7,20.6,9139.0 +2967,3.35,52.2250956,6.8521273,02:29.0,3.3,9148.0,9.8,20.4,9148.0 +2968,3.35,52.225114833333336,6.8520938000000005,02:29.0,3.3,9148.0,9.8,20.4,9148.0 +2969,3.35,52.22513406666667,6.8520603,02:29.0,3.3,9148.0,9.8,20.4,9148.0 +2970,3.37,52.2251533,6.8520268,02:28.4,3.3,9158.0,9.8,20.4,9158.0 +2971,3.37,52.225174433333336,6.8519902,02:28.4,3.3,9158.0,9.8,20.4,9158.0 +2972,3.37,52.22519556666666,6.8519536,02:28.4,3.3,9158.0,9.8,20.4,9158.0 +2973,3.39,52.2252167,6.851917,02:27.3,3.3,9168.0,10.0,20.2,9168.0 +2974,3.39,52.225237766666666,6.851880633333334,02:27.3,3.3,9168.0,10.0,20.2,9168.0 +2975,3.39,52.22525883333333,6.851844266666666,02:27.3,3.3,9168.0,10.0,20.2,9168.0 +2976,3.42,52.2252799,6.8518079,02:26.2,3.4,9178.0,10.2,20.0,9178.0 +2977,3.42,52.2253014,6.851771333333334,02:26.2,3.4,9178.0,10.2,20.0,9178.0 +2978,3.42,52.225322899999995,6.851734766666667,02:26.2,3.4,9178.0,10.2,20.0,9178.0 +2979,3.44,52.2253444,6.8516982,02:25.3,3.4,9189.0,10.3,19.9,9189.0 +2980,3.44,52.225366,6.851662200000001,02:25.3,3.4,9189.0,10.3,19.9,9189.0 +2981,3.44,52.2253876,6.8516262,02:25.3,3.4,9189.0,10.3,19.9,9189.0 +2982,3.44,52.2254092,6.8515902,02:25.3,3.4,9199.0,10.4,19.8,9199.0 +2983,3.44,52.22543103333334,6.851554433333334,02:25.3,3.4,9199.0,10.4,19.8,9199.0 +2984,3.44,52.22545286666667,6.851518666666666,02:25.3,3.4,9199.0,10.4,19.8,9199.0 +2985,3.43,52.22547470000001,6.8514829,02:25.8,3.4,9209.0,10.3,19.9,9209.0 +2986,3.43,52.225495800000004,6.8514494,02:25.8,3.4,9209.0,10.3,19.9,9209.0 +2987,3.43,52.2255169,6.851415900000001,02:25.8,3.4,9209.0,10.3,19.9,9209.0 +2988,3.42,52.225538,6.851382400000001,02:26.2,3.4,9219.0,10.0,20.3,9219.0 +2989,3.42,52.225559366666666,6.8513480666666675,02:26.2,3.4,9219.0,10.0,20.3,9219.0 +2990,3.42,52.22558073333334,6.851313733333335,02:26.2,3.4,9219.0,10.0,20.3,9219.0 +2991,3.41,52.2256021,6.851279400000001,02:26.7,3.4,9229.0,9.9,20.6,9229.0 +2992,3.41,52.2256224,6.851246466666667,02:26.7,3.4,9229.0,9.9,20.6,9229.0 +2993,3.41,52.2256427,6.851213533333332,02:26.7,3.4,9229.0,9.9,20.6,9229.0 +2994,3.4,52.225663,6.8511805999999975,02:27.1,3.4,9239.0,9.9,20.5,9239.0 +2995,3.4,52.22568423333333,6.851146166666665,02:27.1,3.4,9239.0,9.9,20.5,9239.0 +2996,3.4,52.22570546666667,6.851111733333332,02:27.1,3.4,9239.0,9.9,20.5,9239.0 +2997,3.39,52.2257267,6.8510773,02:27.5,3.3,9249.0,10.0,20.2,9249.0 +2998,3.39,52.225748700000004,6.8510423,02:27.5,3.3,9249.0,10.0,20.2,9249.0 +2999,3.39,52.2257707,6.8510073,02:27.5,3.3,9249.0,10.0,20.2,9249.0 +3000,3.38,52.2257927,6.8509723,02:27.9,3.3,9259.0,10.2,19.8,9259.0 +3001,3.38,52.22581426666667,6.850937299999999,02:27.9,3.3,9259.0,10.2,19.8,9259.0 +3002,3.38,52.225835833333335,6.8509023,02:27.9,3.3,9259.0,10.2,19.8,9259.0 +3003,3.38,52.2258574,6.850867299999999,02:28.0,3.3,9269.0,10.2,19.7,9269.0 +3004,3.38,52.225879033333335,6.8508322999999995,02:28.0,3.3,9269.0,10.2,19.7,9269.0 +3005,3.38,52.22590066666667,6.8507973,02:28.0,3.3,9269.0,10.2,19.7,9269.0 +3006,3.38,52.2259223,6.8507623,02:27.8,3.3,9279.0,10.3,19.5,9279.0 +3007,3.38,52.225943666666666,6.850727066666667,02:27.8,3.3,9279.0,10.3,19.5,9279.0 +3008,3.38,52.22596503333333,6.850691833333332,02:27.8,3.3,9279.0,10.3,19.5,9279.0 +3009,3.38,52.2259864,6.850656599999999,02:27.9,3.3,9289.0,10.4,19.3,9289.0 +3010,3.38,52.22601016666667,6.850618533333333,02:27.9,3.3,9289.0,10.4,19.3,9289.0 +3011,3.38,52.22603393333334,6.850580466666666,02:27.9,3.3,9289.0,10.4,19.3,9289.0 +3012,3.36,52.22605770000001,6.8505424,02:28.6,3.3,9301.0,10.4,19.3,9301.0 +3013,3.36,52.22607990000001,6.8505069333333335,02:28.6,3.3,9301.0,10.4,19.3,9301.0 +3014,3.36,52.226102100000006,6.850471466666667,02:28.6,3.3,9301.0,10.4,19.3,9301.0 +3015,3.34,52.2261243,6.850436,02:29.8,3.3,9311.0,10.3,19.3,9311.0 +3016,3.34,52.22614576666667,6.850402766666667,02:29.8,3.3,9311.0,10.3,19.3,9311.0 +3017,3.34,52.226167233333335,6.850369533333334,02:29.8,3.3,9311.0,10.3,19.3,9311.0 +3018,3.32,52.2261887,6.8503363,02:30.7,3.3,9321.0,10.2,19.3,9321.0 +3019,3.32,52.2262109,6.850302533333334,02:30.7,3.3,9321.0,10.2,19.3,9321.0 +3020,3.32,52.2262331,6.850268766666667,02:30.7,3.3,9321.0,10.2,19.3,9321.0 +3021,3.32,52.2262553,6.8502350000000005,02:30.5,3.3,9331.0,10.2,19.5,9331.0 +3022,3.32,52.22627873333333,6.850199066666666,02:30.5,3.3,9331.0,10.2,19.5,9331.0 +3023,3.32,52.22630216666667,6.850163133333332,02:30.5,3.3,9331.0,10.2,19.5,9331.0 +3024,3.34,52.2263256,6.8501271999999975,02:29.7,3.3,9342.0,10.3,19.3,9342.0 +3025,3.34,52.226348200000004,6.850092766666665,02:29.7,3.3,9342.0,10.3,19.3,9342.0 +3026,3.34,52.2263708,6.850058333333332,02:29.7,3.3,9342.0,10.3,19.3,9342.0 +3027,3.35,52.2263934,6.8500239,02:29.1,3.3,9352.0,10.5,19.1,9352.0 +3028,3.35,52.2264109,6.8499974,02:29.1,3.3,9352.0,10.5,19.1,9352.0 +3029,3.35,52.226428399999996,6.849970900000001,02:29.1,3.3,9352.0,10.5,19.1,9352.0 +3030,3.35,52.226445899999995,6.8499444,02:29.1,3.3,9352.0,10.5,19.1,9352.0 +3031,3.34,52.22646339999999,6.8499179,02:29.6,3.3,9363.0,10.3,19.2,9363.0 +3032,3.34,52.226485499999995,6.8498847666666665,02:29.6,3.3,9363.0,10.3,19.2,9363.0 +3033,3.34,52.2265076,6.8498516333333335,02:29.6,3.3,9363.0,10.3,19.2,9363.0 +3034,3.34,52.2265297,6.8498185,02:29.7,3.3,9373.0,10.2,19.5,9373.0 +3035,3.34,52.22655103333334,6.8497859,02:29.7,3.3,9373.0,10.2,19.5,9373.0 +3036,3.34,52.226572366666666,6.8497533,02:29.7,3.3,9373.0,10.2,19.5,9373.0 +3037,3.33,52.2265937,6.8497207,02:30.2,3.3,9382.0,10.1,19.7,9382.0 +3038,3.33,52.226611863636364,6.849693163636363,02:30.2,3.3,9382.0,10.1,19.7,9382.0 +3039,3.33,52.226630027272726,6.849665627272727,02:30.2,3.3,9382.0,10.1,19.7,9382.0 +3040,3.33,52.226648190909096,6.849638090909091,02:30.2,3.3,9382.0,10.1,19.7,9382.0 +3041,3.33,52.22666635454546,6.849610554545454,02:30.2,3.3,9382.0,10.1,19.7,9382.0 +3042,3.33,52.22668451818182,6.849583018181818,02:30.2,3.3,9382.0,10.1,19.7,9382.0 +3043,3.33,52.22670268181818,6.849555481818182,02:30.2,3.3,9382.0,10.1,19.7,9382.0 +3044,3.33,52.226720845454544,6.849527945454546,02:30.2,3.3,9382.0,10.1,19.7,9382.0 +3045,3.33,52.226739009090906,6.8495004090909095,02:30.2,3.3,9382.0,10.1,19.7,9382.0 +3046,3.33,52.226757172727275,6.849472872727273,02:30.2,3.3,9382.0,10.1,19.7,9382.0 +3047,3.33,52.22677533636364,6.849445336363637,02:30.2,3.3,9382.0,10.1,19.7,9382.0 +3048,2.93,52.2267935,6.8494178,02:50.7,2.9,9413.0,7.4,23.6,9413.0 +3049,2.93,52.22681596666666,6.849383633333333,02:50.7,2.9,9413.0,7.4,23.6,9413.0 +3050,2.93,52.226838433333334,6.849349466666666,02:50.7,2.9,9413.0,7.4,23.6,9413.0 +3051,2.9,52.2268609,6.849315299999999,02:52.6,2.9,9423.0,7.8,22.2,9423.0 +3052,2.9,52.22687815,6.849289099999999,02:52.6,2.9,9423.0,7.8,22.2,9423.0 +3053,2.9,52.226895400000004,6.849262899999999,02:52.6,2.9,9423.0,7.8,22.2,9423.0 +3054,2.9,52.22691265,6.8492367,02:52.6,2.9,9423.0,7.8,22.2,9423.0 +3055,2.95,52.2269299,6.8492105,02:49.4,2.9,9433.0,8.7,20.2,9433.0 +3056,2.95,52.226952000000004,6.849175733333333,02:49.4,2.9,9433.0,8.7,20.2,9433.0 +3057,2.95,52.22697410000001,6.849140966666667,02:49.4,2.9,9433.0,8.7,20.2,9433.0 +3058,3.06,52.22699620000001,6.8491062000000005,02:43.5,3.0,9444.0,10.6,17.2,9444.0 +3059,3.06,52.22701690000001,6.849073433333333,02:43.5,3.0,9444.0,10.6,17.2,9444.0 +3060,3.06,52.2270376,6.849040666666667,02:43.5,3.0,9444.0,10.6,17.2,9444.0 +3061,3.16,52.2270583,6.8490079,02:38.2,3.1,9453.0,9.9,19.1,9453.0 +3062,3.16,52.22708073333334,6.848972266666666,02:38.2,3.1,9453.0,9.9,19.1,9453.0 +3063,3.16,52.227103166666666,6.8489366333333335,02:38.2,3.1,9453.0,9.9,19.1,9453.0 +3064,3.22,52.2271256,6.848901,02:35.0,3.2,9464.0,9.9,19.3,9464.0 +3065,3.22,52.22714783333333,6.848865733333334,02:35.0,3.2,9464.0,9.9,19.3,9464.0 +3066,3.22,52.227170066666666,6.848830466666667,02:35.0,3.2,9464.0,9.9,19.3,9464.0 +3067,3.24,52.2271923,6.8487952000000005,02:34.3,3.2,9474.0,10.0,19.3,9474.0 +3068,3.24,52.22721323333333,6.848760933333334,02:34.3,3.2,9474.0,10.0,19.3,9474.0 +3069,3.24,52.22723416666667,6.848726666666667,02:34.3,3.2,9474.0,10.0,19.3,9474.0 +3070,3.25,52.2272551,6.8486924,02:33.9,3.2,9484.0,10.2,19.0,9484.0 +3071,3.25,52.2272772,6.848656533333333,02:33.9,3.2,9484.0,10.2,19.0,9484.0 +3072,3.25,52.2272993,6.848620666666667,02:33.9,3.2,9484.0,10.2,19.0,9484.0 +3073,3.25,52.2273214,6.8485848,02:34.0,3.2,9494.0,10.1,19.1,9494.0 +3074,3.25,52.2273378,6.84855825,02:34.0,3.2,9494.0,10.1,19.1,9494.0 +3075,3.25,52.2273542,6.8485317,02:34.0,3.2,9494.0,10.1,19.1,9494.0 +3076,3.25,52.2273706,6.848505149999999,02:34.0,3.2,9494.0,10.1,19.1,9494.0 +3077,3.24,52.227387,6.848478599999999,02:34.3,3.2,9505.0,10.2,19.0,9505.0 +3078,3.24,52.22740786666667,6.848444466666667,02:34.3,3.2,9505.0,10.2,19.0,9505.0 +3079,3.24,52.22742873333334,6.848410333333334,02:34.3,3.2,9505.0,10.2,19.0,9505.0 +3080,3.23,52.22744960000001,6.8483762000000015,02:34.8,3.2,9515.0,10.3,18.8,9515.0 +3081,3.23,52.2274711,6.848339700000001,02:34.8,3.2,9515.0,10.3,18.8,9515.0 +3082,3.23,52.227492600000005,6.8483032,02:34.8,3.2,9515.0,10.3,18.8,9515.0 +3083,3.22,52.2275141,6.8482667,02:35.1,3.2,9525.0,10.2,18.8,9525.0 +3084,3.22,52.2275362,6.8482303,02:35.1,3.2,9525.0,10.2,18.8,9525.0 +3085,3.22,52.2275583,6.8481939,02:35.1,3.2,9525.0,10.2,18.8,9525.0 +3086,3.21,52.2275804,6.8481575,02:35.5,3.2,9535.0,10.2,18.8,9535.0 +3087,3.21,52.227601766666666,6.848121466666668,02:35.5,3.2,9535.0,10.2,18.8,9535.0 +3088,3.21,52.22762313333333,6.848085433333335,02:35.5,3.2,9535.0,10.2,18.8,9535.0 +3089,3.2,52.2276445,6.8480494000000025,02:36.1,3.2,9546.0,10.1,19.0,9546.0 +3090,3.2,52.22766586666666,6.848013000000002,02:36.1,3.2,9546.0,10.1,19.0,9546.0 +3091,3.2,52.227687233333334,6.847976600000001,02:36.1,3.2,9546.0,10.1,19.0,9546.0 +3092,3.19,52.2277086,6.8479402,02:36.7,3.1,9556.0,10.1,18.9,9556.0 +3093,3.19,52.22772856666667,6.847905233333333,02:36.7,3.1,9556.0,10.1,18.9,9556.0 +3094,3.19,52.22774853333333,6.847870266666667,02:36.7,3.1,9556.0,10.1,18.9,9556.0 +3095,3.18,52.2277685,6.8478353,02:37.1,3.1,9566.0,10.2,18.6,9566.0 +3096,3.18,52.227784325,6.8478072999999995,02:37.1,3.1,9566.0,10.2,18.6,9566.0 +3097,3.18,52.22780015,6.847779299999999,02:37.1,3.1,9566.0,10.2,18.6,9566.0 +3098,3.18,52.227815975,6.847751299999998,02:37.1,3.1,9566.0,10.2,18.6,9566.0 +3099,3.18,52.2278318,6.8477232999999975,02:37.2,3.1,9576.0,10.3,18.5,9576.0 +3100,3.18,52.22785193333333,6.847685966666665,02:37.2,3.1,9576.0,10.3,18.5,9576.0 +3101,3.18,52.22787206666666,6.847648633333332,02:37.2,3.1,9576.0,10.3,18.5,9576.0 +3102,3.18,52.2278922,6.8476113,02:37.0,3.1,9586.0,10.4,18.3,9586.0 +3103,3.18,52.22791363333333,6.847571866666666,02:37.0,3.1,9586.0,10.4,18.3,9586.0 +3104,3.18,52.22793506666667,6.847532433333333,02:37.0,3.1,9586.0,10.4,18.3,9586.0 +3105,3.19,52.2279565,6.847492999999999,02:36.7,3.1,9597.0,10.3,18.4,9597.0 +3106,3.19,52.2279768,6.847454433333333,02:36.7,3.1,9597.0,10.3,18.4,9597.0 +3107,3.19,52.227997099999996,6.847415866666666,02:36.7,3.1,9597.0,10.3,18.4,9597.0 +3108,3.19,52.2280174,6.8473773,02:36.8,3.1,9608.0,10.2,18.6,9608.0 +3109,3.19,52.228031375,6.847348125,02:36.8,3.1,9608.0,10.2,18.6,9608.0 +3110,3.19,52.22804535,6.84731895,02:36.8,3.1,9608.0,10.2,18.6,9608.0 +3111,3.19,52.228059325,6.847289775,02:36.8,3.1,9608.0,10.2,18.6,9608.0 +3112,3.17,52.2280733,6.8472606,02:37.6,3.1,9618.0,10.2,18.6,9618.0 +3113,3.17,52.228090333333334,6.847220133333334,02:37.6,3.1,9618.0,10.2,18.6,9618.0 +3114,3.17,52.22810736666666,6.847179666666667,02:37.6,3.1,9618.0,10.2,18.6,9618.0 +3115,3.14,52.2281244,6.847139200000001,02:39.0,3.1,9628.0,10.1,18.6,9628.0 +3116,3.14,52.22814073333333,6.8470962,02:39.0,3.1,9628.0,10.1,18.6,9628.0 +3117,3.14,52.22815706666667,6.8470532,02:39.0,3.1,9628.0,10.1,18.6,9628.0 +3118,3.11,52.2281734,6.8470102,02:40.8,3.1,9638.0,10.1,18.4,9638.0 +3119,3.11,52.2281884,6.8469674,02:40.8,3.1,9638.0,10.1,18.4,9638.0 +3120,3.11,52.228203400000005,6.8469246,02:40.8,3.1,9638.0,10.1,18.4,9638.0 +3121,3.07,52.2282184,6.8468818,02:42.8,3.0,9648.0,9.9,18.5,9648.0 +3122,3.07,52.228227375,6.846849875,02:42.8,3.0,9648.0,9.9,18.5,9648.0 +3123,3.07,52.22823635,6.84681795,02:42.8,3.0,9648.0,9.9,18.5,9648.0 +3124,3.07,52.228245325,6.846786025,02:42.8,3.0,9648.0,9.9,18.5,9648.0 +3125,3.03,52.2282543,6.8467541,02:44.8,3.0,9658.0,9.6,18.9,9658.0 +3126,3.03,52.22826333333334,6.846712833333333,02:44.8,3.0,9658.0,9.6,18.9,9658.0 +3127,3.03,52.228272366666666,6.846671566666667,02:44.8,3.0,9658.0,9.6,18.9,9658.0 +3128,2.99,52.2282814,6.8466303,02:47.2,2.9,9667.0,9.3,19.1,9667.0 +3129,2.99,52.2282888,6.8465866,02:47.2,2.9,9667.0,9.3,19.1,9667.0 +3130,2.99,52.228296199999996,6.8465429,02:47.2,2.9,9667.0,9.3,19.1,9667.0 +3131,2.94,52.2283036,6.8464992,02:50.0,2.9,9676.0,9.2,19.0,9676.0 +3132,2.94,52.228307799999996,6.846456833333333,02:50.0,2.9,9676.0,9.2,19.0,9676.0 +3133,2.94,52.228312,6.846414466666666,02:50.0,2.9,9676.0,9.2,19.0,9676.0 +3134,2.89,52.2283162,6.846372099999999,02:52.8,2.8,9685.0,9.1,18.9,9685.0 +3135,2.89,52.22831823333333,6.846324433333333,02:52.8,2.8,9685.0,9.1,18.9,9685.0 +3136,2.89,52.22832026666667,6.846276766666667,02:52.8,2.8,9685.0,9.1,18.9,9685.0 +3137,2.85,52.2283223,6.8462291,02:55.2,2.8,9695.0,9.1,18.7,9695.0 +3138,2.85,52.22832086666667,6.846187400000001,02:55.2,2.8,9695.0,9.1,18.7,9695.0 +3139,2.85,52.22831943333333,6.8461457,02:55.2,2.8,9695.0,9.1,18.7,9695.0 +3140,2.83,52.228318,6.846104,02:56.6,2.8,9703.0,9.0,18.7,9703.0 +3141,2.83,52.2283134,6.846059433333333,02:56.6,2.8,9703.0,9.0,18.7,9703.0 +3142,2.83,52.2283088,6.846014866666666,02:56.6,2.8,9703.0,9.0,18.7,9703.0 +3143,2.83,52.2283042,6.8459702999999985,02:56.7,2.8,9712.0,9.0,18.7,9712.0 +3144,2.83,52.228299324999995,6.8459381499999985,02:56.7,2.8,9712.0,9.0,18.7,9712.0 +3145,2.83,52.22829445,6.845905999999999,02:56.7,2.8,9712.0,9.0,18.7,9712.0 +3146,2.83,52.228289575000005,6.84587385,02:56.7,2.8,9712.0,9.0,18.7,9712.0 +3147,2.84,52.2282847,6.8458417,02:55.8,2.8,9721.0,9.1,18.7,9721.0 +3148,2.84,52.2282772,6.845801466666667,02:55.8,2.8,9721.0,9.1,18.7,9721.0 +3149,2.84,52.228269700000006,6.845761233333334,02:55.8,2.8,9721.0,9.1,18.7,9721.0 +3150,2.87,52.2282622,6.845721000000001,02:54.4,2.8,9730.0,9.2,18.6,9730.0 +3151,2.87,52.228250833333334,6.845680000000001,02:54.4,2.8,9730.0,9.2,18.6,9730.0 +3152,2.87,52.22823946666667,6.845639,02:54.4,2.8,9730.0,9.2,18.6,9730.0 +3153,2.88,52.2282281,6.845598,02:53.3,2.8,9739.0,9.2,18.6,9739.0 +3154,2.88,52.22821536666667,6.8455588,02:53.3,2.8,9739.0,9.2,18.6,9739.0 +3155,2.88,52.22820263333333,6.8455196,02:53.3,2.8,9739.0,9.2,18.6,9739.0 +3156,2.88,52.2281899,6.8454804000000005,02:53.4,2.8,9748.0,9.0,19.1,9748.0 +3157,2.88,52.228174466666665,6.845442166666667,02:53.4,2.8,9748.0,9.0,19.1,9748.0 +3158,2.88,52.228159033333334,6.845403933333333,02:53.4,2.8,9748.0,9.0,19.1,9748.0 +3159,2.86,52.2281436,6.8453657,02:54.9,2.8,9758.0,8.8,19.3,9758.0 +3160,2.86,52.228129233333334,6.845335833333333,02:54.9,2.8,9758.0,8.8,19.3,9758.0 +3161,2.86,52.228114866666665,6.845305966666667,02:54.9,2.8,9758.0,8.8,19.3,9758.0 +3162,2.82,52.2281005,6.8452761,02:57.2,2.8,9765.0,8.7,19.4,9765.0 +3163,2.82,52.22808203333333,6.8452459999999995,02:57.2,2.8,9765.0,8.7,19.4,9765.0 +3164,2.82,52.22806356666667,6.8452158999999995,02:57.2,2.8,9765.0,8.7,19.4,9765.0 +3165,2.78,52.2280451,6.8451857999999985,02:59.7,2.7,9774.0,8.7,19.1,9774.0 +3166,2.78,52.228029625000005,6.845165299999999,02:59.7,2.7,9774.0,8.7,19.1,9774.0 +3167,2.78,52.22801415,6.8451448,02:59.7,2.7,9774.0,8.7,19.1,9774.0 +3168,2.78,52.227998674999995,6.8451243,02:59.7,2.7,9774.0,8.7,19.1,9774.0 +3169,2.76,52.2279832,6.8451038,03:01.3,2.7,9783.0,8.7,18.9,9783.0 +3170,2.76,52.22796136666666,6.8450796333333335,03:01.3,2.7,9783.0,8.7,18.9,9783.0 +3171,2.76,52.227939533333334,6.8450554666666665,03:01.3,2.7,9783.0,8.7,18.9,9783.0 +3172,2.75,52.2279177,6.8450313,03:01.7,2.7,9792.0,8.8,18.6,9792.0 +3173,2.75,52.227895133333334,6.845010766666666,03:01.7,2.7,9792.0,8.8,18.6,9792.0 +3174,2.75,52.22787256666666,6.844990233333333,03:01.7,2.7,9792.0,8.8,18.6,9792.0 +3175,2.76,52.22785,6.8449697,03:01.0,2.7,9800.0,8.9,18.5,9800.0 +3176,2.76,52.22782526666666,6.844952,03:01.0,2.7,9800.0,8.9,18.5,9800.0 +3177,2.76,52.22780053333334,6.8449343,03:01.0,2.7,9800.0,8.9,18.5,9800.0 +3178,2.79,52.2277758,6.8449166,02:59.4,2.7,9809.0,9.0,18.4,9809.0 +3179,2.79,52.22775455,6.844904250000001,02:59.4,2.7,9809.0,9.0,18.4,9809.0 +3180,2.79,52.2277333,6.8448919,02:59.4,2.7,9809.0,9.0,18.4,9809.0 +3181,2.79,52.22771205,6.84487955,02:59.4,2.7,9809.0,9.0,18.4,9809.0 +3182,2.82,52.2276908,6.8448672,02:57.4,2.8,9819.0,9.2,18.2,9819.0 +3183,2.82,52.2276624,6.844852333333334,02:57.4,2.8,9819.0,9.2,18.2,9819.0 +3184,2.82,52.227633999999995,6.844837466666666,02:57.4,2.8,9819.0,9.2,18.2,9819.0 +3185,2.85,52.2276056,6.8448226,02:55.6,2.8,9829.0,9.5,17.9,9829.0 +3186,2.85,52.227578666666666,6.844810066666667,02:55.6,2.8,9829.0,9.5,17.9,9829.0 +3187,2.85,52.22755173333333,6.844797533333334,02:55.6,2.8,9829.0,9.5,17.9,9829.0 +3188,2.87,52.2275248,6.844785000000001,02:54.5,2.8,9839.0,9.6,17.7,9839.0 +3189,2.87,52.227502425,6.844775125000001,02:54.5,2.8,9839.0,9.6,17.7,9839.0 +3190,2.87,52.22748005,6.84476525,02:54.5,2.8,9839.0,9.6,17.7,9839.0 +3191,2.87,52.227457675000004,6.844755375,02:54.5,2.8,9839.0,9.6,17.7,9839.0 +3192,2.87,52.2274353,6.8447455,02:54.1,2.8,9849.0,9.8,17.4,9849.0 +3193,2.87,52.227407033333336,6.844733033333333,02:54.1,2.8,9849.0,9.8,17.4,9849.0 +3194,2.87,52.22737876666667,6.844720566666666,02:54.1,2.8,9849.0,9.8,17.4,9849.0 +3195,2.87,52.2273505,6.844708099999999,02:54.3,2.8,9859.0,9.9,17.2,9859.0 +3196,2.87,52.227328625,6.84469895,02:54.3,2.8,9859.0,9.9,17.2,9859.0 +3197,2.87,52.22730675,6.844689799999999,02:54.3,2.8,9859.0,9.9,17.2,9859.0 +3198,2.87,52.227284875,6.844680649999999,02:54.3,2.8,9859.0,9.9,17.2,9859.0 +3199,2.86,52.227263,6.8446715,02:55.0,2.8,9869.0,9.9,17.2,9869.0 +3200,2.86,52.22723526666667,6.8446599,02:55.0,2.8,9869.0,9.9,17.2,9869.0 +3201,2.86,52.227207533333335,6.844648299999999,02:55.0,2.8,9869.0,9.9,17.2,9869.0 +3202,2.84,52.2271798,6.8446367,02:56.0,2.8,9878.0,9.8,17.2,9878.0 +3203,2.84,52.22715256666667,6.844625733333333,02:56.0,2.8,9878.0,9.8,17.2,9878.0 +3204,2.84,52.22712533333334,6.844614766666666,02:56.0,2.8,9878.0,9.8,17.2,9878.0 +3205,2.83,52.227098100000006,6.8446038,02:56.7,2.8,9888.0,9.6,17.6,9888.0 +3206,2.83,52.227076800000006,6.8445967,02:56.7,2.8,9888.0,9.6,17.6,9888.0 +3207,2.83,52.227055500000006,6.8445896,02:56.7,2.8,9888.0,9.6,17.6,9888.0 +3208,2.83,52.2270342,6.8445825,02:56.7,2.8,9888.0,9.6,17.6,9888.0 +3209,2.83,52.2270129,6.8445754,02:56.8,2.8,9897.0,9.4,17.9,9897.0 +3210,2.83,52.2269839,6.844567233333334,02:56.8,2.8,9897.0,9.4,17.9,9897.0 +3211,2.83,52.226954899999996,6.844559066666668,02:56.8,2.8,9897.0,9.4,17.9,9897.0 +3212,2.84,52.2269259,6.8445509000000015,02:56.2,2.8,9907.0,9.3,18.1,9907.0 +3213,2.84,52.22689816666667,6.844545366666667,02:56.2,2.8,9907.0,9.3,18.1,9907.0 +3214,2.84,52.22687043333334,6.844539833333333,02:56.2,2.8,9907.0,9.3,18.1,9907.0 +3215,2.86,52.22684270000001,6.8445342999999985,02:54.9,2.8,9917.0,9.3,18.3,9917.0 +3216,2.86,52.22682120000001,6.844531899999999,02:54.9,2.8,9917.0,9.3,18.3,9917.0 +3217,2.86,52.22679970000001,6.844529499999999,02:54.9,2.8,9917.0,9.3,18.3,9917.0 +3218,2.86,52.226778200000005,6.8445271,02:54.9,2.8,9917.0,9.3,18.3,9917.0 +3219,2.88,52.2267567,6.8445247,02:53.6,2.8,9926.0,9.3,18.4,9926.0 +3220,2.88,52.22672986666667,6.844523200000001,02:53.6,2.8,9926.0,9.3,18.4,9926.0 +3221,2.88,52.22670303333334,6.844521700000001,02:53.6,2.8,9926.0,9.3,18.4,9926.0 +3222,2.89,52.22667620000001,6.8445202000000025,02:52.9,2.8,9935.0,9.2,18.6,9935.0 +3223,2.89,52.22664886666667,6.844522800000002,02:52.9,2.8,9935.0,9.2,18.6,9935.0 +3224,2.89,52.226621533333336,6.844525400000001,02:52.9,2.8,9935.0,9.2,18.6,9935.0 +3225,2.89,52.2265942,6.844528,02:52.7,2.8,9944.0,9.3,18.6,9944.0 +3226,2.89,52.22656576666667,6.8445356,02:52.7,2.8,9944.0,9.3,18.6,9944.0 +3227,2.89,52.22653733333333,6.8445432,02:52.7,2.8,9944.0,9.3,18.6,9944.0 +3228,2.89,52.2265089,6.8445508,02:52.8,2.8,9954.0,9.3,18.5,9954.0 +3229,2.89,52.2264823,6.844561433333333,02:52.8,2.8,9954.0,9.3,18.5,9954.0 +3230,2.89,52.226455699999995,6.844572066666667,02:52.8,2.8,9954.0,9.3,18.5,9954.0 +3231,2.89,52.2264291,6.8445827,02:53.0,2.8,9963.0,9.5,18.1,9963.0 +3232,2.89,52.226407675,6.8445916,02:53.0,2.8,9963.0,9.5,18.1,9963.0 +3233,2.89,52.22638625,6.8446005,02:53.0,2.8,9963.0,9.5,18.1,9963.0 +3234,2.89,52.226364825,6.8446094,02:53.0,2.8,9963.0,9.5,18.1,9963.0 +3235,2.9,52.2263434,6.8446183000000005,02:52.6,2.9,9973.0,9.5,18.1,9973.0 +3236,2.9,52.2263142,6.844632733333333,02:52.6,2.9,9973.0,9.5,18.1,9973.0 +3237,2.9,52.226285,6.8446471666666655,02:52.6,2.9,9973.0,9.5,18.1,9973.0 +3238,2.91,52.2262558,6.8446615999999985,02:51.9,2.9,9983.0,9.7,17.9,9983.0 +3239,2.91,52.226230066666666,6.844674799999999,02:51.9,2.9,9983.0,9.7,17.9,9983.0 +3240,2.91,52.22620433333333,6.844688,02:51.9,2.9,9983.0,9.7,17.9,9983.0 +3241,2.92,52.2261786,6.8447012,02:51.4,2.9,9992.0,9.8,17.7,9992.0 +3242,2.92,52.22615695,6.844712575000001,02:51.4,2.9,9992.0,9.8,17.7,9992.0 +3243,2.92,52.226135299999996,6.844723950000001,02:51.4,2.9,9992.0,9.8,17.7,9992.0 +3244,2.92,52.22611365,6.844735325,02:51.4,2.9,9992.0,9.8,17.7,9992.0 +3245,2.92,52.226092,6.844746700000001,02:51.3,2.9,10002.0,9.9,17.6,10002.0 +3246,2.92,52.226061800000004,6.844763566666667,02:51.3,2.9,10002.0,9.9,17.6,10002.0 +3247,2.92,52.2260316,6.844780433333334,02:51.3,2.9,10002.0,9.9,17.6,10002.0 +3248,2.91,52.2260014,6.8447973,02:51.8,2.9,10013.0,9.9,17.5,10013.0 +3249,2.91,52.22598175,6.844809525,02:51.8,2.9,10013.0,9.9,17.5,10013.0 +3250,2.91,52.2259621,6.8448217499999995,02:51.8,2.9,10013.0,9.9,17.5,10013.0 +3251,2.91,52.22594244999999,6.844833975,02:51.8,2.9,10013.0,9.9,17.5,10013.0 +3252,2.89,52.22592279999999,6.8448462,02:53.0,2.8,10022.0,9.8,17.5,10022.0 +3253,2.89,52.22589813333333,6.844865766666667,02:53.0,2.8,10022.0,9.8,17.5,10022.0 +3254,2.89,52.22587346666666,6.844885333333334,02:53.0,2.8,10022.0,9.8,17.5,10022.0 +3255,2.86,52.2258488,6.8449049,02:54.6,2.8,10031.0,9.4,18.1,10031.0 +3256,2.86,52.22582583333333,6.8449277,02:54.6,2.8,10031.0,9.4,18.1,10031.0 +3257,2.86,52.22580286666667,6.8449505,02:54.6,2.8,10031.0,9.4,18.1,10031.0 +3258,2.83,52.2257799,6.8449733,02:56.3,2.8,10040.0,9.3,18.1,10040.0 +3259,2.83,52.225761125,6.844991725,02:56.3,2.8,10040.0,9.3,18.1,10040.0 +3260,2.83,52.225742350000004,6.84501015,02:56.3,2.8,10040.0,9.3,18.1,10040.0 +3261,2.83,52.225723575,6.845028575000001,02:56.3,2.8,10040.0,9.3,18.1,10040.0 +3262,2.82,52.2257048,6.845047,02:57.4,2.8,10050.0,9.4,17.8,10050.0 +3263,2.82,52.225679633333336,6.845071033333333,02:57.4,2.8,10050.0,9.4,17.8,10050.0 +3264,2.82,52.22565446666667,6.845095066666666,02:57.4,2.8,10050.0,9.4,17.8,10050.0 +3265,2.81,52.2256293,6.845119099999999,02:57.8,2.8,10060.0,9.6,17.5,10060.0 +3266,2.81,52.225604866666664,6.845141066666667,02:57.8,2.8,10060.0,9.6,17.5,10060.0 +3267,2.81,52.225580433333334,6.845163033333335,02:57.8,2.8,10060.0,9.6,17.5,10060.0 +3268,2.8,52.225556,6.8451850000000025,02:58.5,2.8,10069.0,9.7,17.1,10069.0 +3269,2.8,52.225536074999994,6.8452025500000016,02:58.5,2.8,10069.0,9.7,17.1,10069.0 +3270,2.8,52.22551615,6.8452201000000015,02:58.5,2.8,10069.0,9.7,17.1,10069.0 +3271,2.8,52.225496225,6.845237650000001,02:58.5,2.8,10069.0,9.7,17.1,10069.0 +3272,2.78,52.2254763,6.8452552,02:59.8,2.7,10079.0,9.7,17.1,10079.0 +3273,2.78,52.22545253333333,6.845276666666667,02:59.8,2.7,10079.0,9.7,17.1,10079.0 +3274,2.78,52.22542876666667,6.845298133333333,02:59.8,2.7,10079.0,9.7,17.1,10079.0 +3275,2.74,52.225405,6.8453196,03:02.2,2.7,10088.0,9.4,17.4,10088.0 +3276,2.74,52.225388275,6.8453359,03:02.2,2.7,10088.0,9.4,17.4,10088.0 +3277,2.74,52.225371550000006,6.8453522,03:02.2,2.7,10088.0,9.4,17.4,10088.0 +3278,2.74,52.225354825000004,6.845368499999999,03:02.2,2.7,10088.0,9.4,17.4,10088.0 +3279,2.7,52.2253381,6.8453848,03:05.0,2.7,10097.0,9.1,17.7,10097.0 +3280,2.7,52.22531553333334,6.845406666666666,03:05.0,2.7,10097.0,9.1,17.7,10097.0 +3281,2.7,52.225292966666665,6.845428533333333,03:05.0,2.7,10097.0,9.1,17.7,10097.0 +3282,2.68,52.2252704,6.8454504,03:06.8,2.6,10106.0,8.8,18.2,10106.0 diff --git a/rowers/tests/testdata/testvideodata_metrics.csv b/rowers/tests/testdata/testvideodata_metrics.csv new file mode 100644 index 00000000..c67593f8 --- /dev/null +++ b/rowers/tests/testdata/testvideodata_metrics.csv @@ -0,0 +1,4 @@ +,boatspeed,cumdist,distance,distanceperstroke,pace,spm +name,Boat Speed (m/s),Cumulative Distance (m),Interval Distance (m),Distance per Stroke (m),Pace (/500m),Stroke Rate (spm) +metric,velo,cumdist,distance,distanceperstroke,pace,spm +unit,,,,,, From 904882c9e3414b2adf989858b1b4e37d850377d0 Mon Sep 17 00:00:00 2001 From: Sander Roosendaal Date: Wed, 13 Jan 2021 08:54:58 +0100 Subject: [PATCH 09/30] also test post to mini --- rowers/tests/test_aworkouts.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/rowers/tests/test_aworkouts.py b/rowers/tests/test_aworkouts.py index 14266e9f..96bcabab 100644 --- a/rowers/tests/test_aworkouts.py +++ b/rowers/tests/test_aworkouts.py @@ -584,6 +584,7 @@ class WorkoutViewTest(TestCase): 'delay': -119, 'groups': ['basic'], 'name': 'Video A', + 'save_button': 'Save', } response = self.c.post(url2,form_data) @@ -593,6 +594,9 @@ class WorkoutViewTest(TestCase): response = self.c.get(url) self.assertEqual(response.status_code,200) + response = self.c.post(url,form_data) + self.assertEqual(response.status_code,200) + @patch('rowers.dataprep.create_engine') @patch('rowers.dataprep.getsmallrowdata_db') From 03a4a67144e92743d76b12716bc8980e7774eeb0 Mon Sep 17 00:00:00 2001 From: Sander Roosendaal Date: Wed, 13 Jan 2021 19:07:19 +0100 Subject: [PATCH 10/30] increased workoutviews coverage --- rowers/tests/test_aworkouts.py | 104 +++++++++++++++++++++++++++++++-- rowers/tests/test_emails.py | 7 +++ rowers/views/workoutviews.py | 77 ------------------------ 3 files changed, 105 insertions(+), 83 deletions(-) diff --git a/rowers/tests/test_aworkouts.py b/rowers/tests/test_aworkouts.py index 96bcabab..9adfa075 100644 --- a/rowers/tests/test_aworkouts.py +++ b/rowers/tests/test_aworkouts.py @@ -158,12 +158,20 @@ class WorkoutViewTest(TestCase): d1 = self.werg1.date-datetime.timedelta(days=2) d2 = self.werg2.date+datetime.timedelta(days=2) - date_form_data = { - 'startdate': d1.strftime('%Y-%m%d'), - 'enddate': d2.strftime('%Y-%m%d') + form_data = { + 'startdate': d1.strftime('%Y-%m-%d'), + 'enddate': d2.strftime('%Y-%m-%d'), + 'modality':'water', + 'waterboattype':['1x'], } - response = self.c.post(url,date_form_data) + form = DateRangeForm(form_data) + self.assertTrue(form.is_valid()) + + form = TrendFlexModalForm(form_data) + self.assertTrue(form.is_valid()) + + response = self.c.post(url,form_data) self.assertEqual(response.status_code,200) url = reverse('workouts_join_view') @@ -215,11 +223,34 @@ class WorkoutViewTest(TestCase): session.save() response = self.c.get('/') + + url = reverse('team_comparison_select') + response = self.c.get(url) + self.assertEqual(response.status_code,200) + + d1 = self.werg1.date-datetime.timedelta(days=2) + d2 = self.werg2.date+datetime.timedelta(days=2) + + form_data = { + 'startdate': d1.strftime('%Y-%m-%d'), + 'enddate': d2.strftime('%Y-%m-%d'), + 'modality':'water', + 'waterboattype':['1x'], + } + + form = DateRangeForm(form_data) + self.assertTrue(form.is_valid()) + + form = TrendFlexModalForm(form_data) + self.assertTrue(form.is_valid()) + + response = self.c.post(url,form_data) + self.assertEqual(response.status_code,200) + url = reverse('multi_compare_view',kwargs={ 'userid':self.u.id, 'id':encoder.encode_hex(self.werg1.id), }) - print(url) form_data = { 'xparam':'time', @@ -369,7 +400,9 @@ class WorkoutViewTest(TestCase): @patch('rowers.dataprep.create_engine') @patch('rowers.dataprep.getsmallrowdata_db') - def test_setpowerform(self, mocked_sqlalchemy, mocked_getsmallrowdata_db): + @patch('rowers.middleware.myqueue') + def test_setpowerform(self, mocked_sqlalchemy, mocked_getsmallrowdata_db, + mocked_myqueue): login = self.c.login(username=self.u.username, password=self.password) self.assertTrue(login) @@ -383,6 +416,17 @@ class WorkoutViewTest(TestCase): self.assertTrue(len(instrokemetrics)>0) + url = reverse('instroke_chart', + kwargs={ + 'id':encoder.encode_hex(self.winstroke.id), + 'metric':instrokemetrics[0], + }) + url2 = reverse(self.r.defaultlandingpage,kwargs={'id':encoder.encode_hex(self.winstroke.id)}) + response = self.c.get(url) + self.assertRedirects(response, + expected_url=url2, + status_code=302,target_status_code=200) + @patch('rowers.dataprep.create_engine') @patch('rowers.dataprep.getsmallrowdata_db') def test_setpowerform(self, mocked_sqlalchemy, mocked_getsmallrowdata_db): @@ -543,6 +587,22 @@ class WorkoutViewTest(TestCase): self.assertEqual(response.status_code,200) + def test_remove_power_view(self): + login = self.c.login(username=self.u.username, password=self.password) + self.assertTrue(login) + + url = reverse('remove_power_view',kwargs={'id':encoder.encode_hex(self.wwater.id)}) + url2 = reverse(self.r.defaultlandingpage, + kwargs={ + 'id':encoder.encode_hex(self.wwater.id) + } + ) + response = self.c.get(url) + self.assertRedirects(response, + expected_url=url2, + status_code=302, + target_status_code=200 + ) @patch('rowers.dataprep.create_engine') @patch('rowers.dataprep.getsmallrowdata_db') @@ -597,6 +657,38 @@ class WorkoutViewTest(TestCase): response = self.c.post(url,form_data) self.assertEqual(response.status_code,200) + @patch('rowers.dataprep.create_engine') + @patch('rowers.dataprep.getrowdata_db',side_effect=mocked_getrowdata_db) + @patch('rowers.dataprep.get_video_data',side_effect=mocked_videodata) + def test_video_selectworkout(self, mocked_sqlalchemy, mocked_getsmallrowdata_db, + mocked_videodata): + login = self.c.login(username=self.u.username, password=self.password) + self.assertTrue(login) + + url = reverse('video_selectworkout') + + response = self.c.get(url) + self.assertEqual(response.status_code,200) + + d1 = self.wwater.date-datetime.timedelta(days=24) + d2 = self.wwater.date+datetime.timedelta(days=24) + + + form_data = { + 'workout':'1', + 'startdate': d1.strftime("%Y-%m-%d"), + 'enddate': d2.strftime("%Y-%m-%d") + } + + url2 = reverse('workout_video_create_view',kwargs={'id':encoder.encode_hex(1)}) + + response = self.c.post(url,form_data) + self.assertRedirects(response, + expected_url=url2, + status_code=302, + target_status_code=200) + + @patch('rowers.dataprep.create_engine') @patch('rowers.dataprep.getsmallrowdata_db') diff --git a/rowers/tests/test_emails.py b/rowers/tests/test_emails.py index 7edbd7e1..f7f51363 100644 --- a/rowers/tests/test_emails.py +++ b/rowers/tests/test_emails.py @@ -43,6 +43,8 @@ workout run m.save() a2 = 'media/mailbox_attachments/colin3.csv' copy('rowers/tests/testdata/emails/colin.csv',a2) + a3 = 'media/mailbox_attachments/colin4.csv' + copy('rowers/tests/testdata/emails/colin.csv',a3) a = MessageAttachment(message=m,document=a2[6:]) a.save() @@ -76,6 +78,11 @@ workout run response = self.c.post(url,form_data,HTTP_HOST='127.0.0.1:4533') self.assertEqual(response.status_code,200) + form_data['file'] = 'media/mailbox_attachments/colin4.csv' + response = self.c.post(url,json.dumps(form_data),HTTP_HOST='127.0.0.1:4533', + content_type='application/json') + self.assertEqual(response.status_code,200) + # should also test if workout is created w = Workout.objects.get(id=1) self.assertEqual(w.name,'test') diff --git a/rowers/views/workoutviews.py b/rowers/views/workoutviews.py index 2b03fc55..2fbf8d59 100644 --- a/rowers/views/workoutviews.py +++ b/rowers/views/workoutviews.py @@ -2621,82 +2621,6 @@ def workout_smoothenpace_view(request,id=0,message="",successmessage=""): return HttpResponseRedirect(url) -# Process CrewNerd Summary CSV and update summary -@user_passes_test(ispromember,login_url="/rowers/paidplans", - message="This functionality requires a Pro plan or higher. If you are already a Pro user, please log in to access this functionality. If you are already a Pro user, please log in to access this functionality", - redirect_field_name=None) -def workout_crewnerd_summary_view(request,id=0,message="",successmessage=""): - row = get_workoutuser(id, request) - r = getrower(request.user) - breadcrumbs = [ - { - 'url':'/rowers/list-workouts/', - 'name':'Workouts' - }, - { - 'url':get_workout_default_page(request,id), - 'name': row.name - }, - { - 'url':reverse('workout_crewnerd_summary_view',kwargs={'id':id}), - 'name': 'CrewNerd Summary' - } - - ] - - if request.method == 'POST': - form = CNsummaryForm(request.POST,request.FILES) - if form.is_valid(): - f = request.FILES['file'] - res = handle_uploaded_file(f) - fname = res[1] - try: - sumd = summarydata(fname) - row.summary = sumd.allstats() - row.save() - os.remove(fname) - successmessage = "CrewNerd summary added" - messages.info(request,successmessage) - url = reverse('workout_edit_view', - kwargs = { - 'id':id, - }) - - return HttpResponseRedirect(url) - except: - try: - os.remove(fname) - except: - pass - message = "Something went wrong (workout_crewnerd_summary_view)" - messages.error(request,message) - url = reverse('workout_edit_view', - kwargs = { - 'id':id, - }) - return HttpResponseRedirect(url) - else: - return render(request, - "cn_form.html", - {'form':form, - 'active':'nav-workouts', - 'rower':r, - 'workout':row, - 'breadcrumbs':breadcrumbs, - 'teams':get_my_teams(request.user), - 'id':row.id}) - else: - form = CNsummaryForm() - - return render(request, - "cn_form.html", - {'form':form, - 'active':'nav-workouts', - 'rower':r, - 'workout':row, - 'breadcrumbs':breadcrumbs, - 'teams':get_my_teams(request.user), - 'id':row.id}) # Get weather for given location and date/time @permission_required('workout.change_workout',fn=get_workout_by_opaqueid,raise_exception=True) @@ -4846,7 +4770,6 @@ def workout_upload_api(request): q = request.POST post_data = {k: q.getlist(k) if len(q.getlist(k))>1 else v for k, v in q.items()} - # only allow local host hostt = request.get_host().split(':') if hostt[0] not in ['localhost','127.0.0.1','dev.rowsandall.com','rowsandall.com']: From 5c2149a13d74084820d6126efe888a5aa72e0361 Mon Sep 17 00:00:00 2001 From: Sander Roosendaal Date: Thu, 14 Jan 2021 08:09:41 +0100 Subject: [PATCH 11/30] import stuff tested in tasks --- rowers/tasks.py | 29 ++------- rowers/tests/mocks.py | 2 +- rowers/tests/statements.py | 2 + rowers/tests/test_unit_tests.py | 100 ++++++++++++++++++++++++++++++++ rowers/tests/viewnames.csv | 1 - rowers/urls.py | 6 +- rowers/views/workoutviews.py | 42 -------------- rowsandall_app/settings.py | 2 +- 8 files changed, 112 insertions(+), 72 deletions(-) diff --git a/rowers/tasks.py b/rowers/tasks.py index 8605656b..be750f6f 100644 --- a/rowers/tasks.py +++ b/rowers/tasks.py @@ -66,21 +66,6 @@ from rowers.utils import deserialize_list,ewmovingaverage,wavg from rowers.emails import htmlstrip from rowers import mytypes -#from HTMLParser import HTMLParser -from html.parser import HTMLParser -class MLStripper(HTMLParser): - def __init__(self): - self.reset() - self.fed = [] - def handle_data(self, d): - self.fed.append(d) - def get_data(self): - return ''.join(self.fed) - -def strip_tags(html): - s = MLStripper() - s.feed(html) - return s.get_data() from rowers.dataprepnodjango import ( @@ -166,22 +151,18 @@ def handle_sporttracks_sync(workoutid,url,headers,data,debug=False,**kwargs): res = update_workout_field_sql(workoutid,'uploadedtosporttracks',id,debug=debug) + return 1 + @app.task def handle_runkeeper_sync(workoutid,url,headers,data,debug=False,**kwargs): response = requests.post(url,headers=headers,data=data) if response.status_code not in [200,201]: return 0 - try: - t = response.json() - except JSONDecodeError: - return 0 + uri = response.headers["Location"] - uri = t['uris'][0] - regex = '.*?sporttracks\.mobi\/api\/v2\/fitnessActivities/(\d+)\.json$' - m = re.compile(regex).match(uri).group(1) - - id = int(m) + tester = re.compile('^\/fitnessActivities\/(\d+)$') + id = int(tester.match(uri).group(1)) res = update_workout_field_sql(workoutid,'uploadedtorunkeeper',id,debug=debug) diff --git a/rowers/tests/mocks.py b/rowers/tests/mocks.py index a1a50614..8c040096 100644 --- a/rowers/tests/mocks.py +++ b/rowers/tests/mocks.py @@ -190,7 +190,7 @@ def mocked_videodata(*args, **kwargs): data = df .to_dict() df = pd.read_csv('rowers/tests/testdata/testvideodata_metrics.csv') metrics = OrderedDict(df.to_dict()) - + maxtime = 3282.4 return data, metrics, maxtime diff --git a/rowers/tests/statements.py b/rowers/tests/statements.py index edb30faa..1170cae6 100644 --- a/rowers/tests/statements.py +++ b/rowers/tests/statements.py @@ -53,6 +53,8 @@ from mock import Mock, patch #from minimocktest import MockTestCase import pandas as pd import rowers.c2stuff as c2stuff +import rowers.sporttracksstuff as sporttracksstuff +import rowers.runkeeperstuff as runkeeperstuff from django.urls import reverse, reverse_lazy diff --git a/rowers/tests/test_unit_tests.py b/rowers/tests/test_unit_tests.py index c1e2c9f3..b99d4823 100644 --- a/rowers/tests/test_unit_tests.py +++ b/rowers/tests/test_unit_tests.py @@ -8,6 +8,106 @@ from rowers.mytypes import rowtypes nu = datetime.datetime.now() +from rowers import tasks + +# asynchronous tasks +class AsyncTaskTests(TestCase): + def setUp(self): + self.u = UserFactory() + + self.r = Rower.objects.create(user=self.u, + birthdate=faker.profile()['birthdate'], + gdproptin=True,surveydone=True, + gdproptindate=timezone.now(), + rowerplan='coach') + + self.c = Client() + self.user_workouts = WorkoutFactory.create_batch(5, user=self.r) + self.factory = RequestFactory() + self.password = faker.word() + self.u.set_password(self.password) + self.u.save() + + result = get_random_file(filename='rowers/tests/testdata/onwater2.csv') + + self.wwater = WorkoutFactory(user=self.r, + csvfilename=result['filename'], + starttime=result['starttime'], + startdatetime=result['startdatetime'], + duration=result['duration'], + distance=result['totaldist'], + workouttype = 'water', + ) + + def test_safetimedelta(self): + x = 5 + y = tasks.safetimedelta(x) + self.assertEqual(datetime.timedelta(seconds=5),y) + + x = np.nan + y = tasks.safetimedelta(x) + self.assertEqual(datetime.timedelta(seconds=0),y) + + @patch('rowers.c2stuff.requests.post', side_effect=mocked_requests) + @patch('rowers.c2stuff.requests.get', side_effect=mocked_requests) + def test_c2_sync(self, mock_get, mock_post): + authorizationstring = str('Bearer aap') + headers = {'Authorization': authorizationstring, + 'user-agent': 'sanderroosendaal', + 'Content-Type': 'application/json'} + + data = c2stuff.createc2workoutdata(self.wwater) + + url = "https://log.concept2.com/api/users/%s/results" % (1) + res = tasks.handle_c2_sync(1,url,headers,data) + self.assertEqual(res,1) + + + + @patch('rowers.sporttracksstuff.requests.post', side_effect=mocked_requests) + @patch('rowers.sporttracksstuff.requests.get', side_effect=mocked_requests) + def test_sporttracks_sync(self, mock_get, mock_post): + authorizationstring = str('Bearer aap') + headers = {'Authorization': authorizationstring, + 'user-agent': 'sanderroosendaal', + 'Content-Type': 'application/json'} + + url = "https://api.sporttracks.mobi/api/v2/fitnessActivities.json" + + data = sporttracksstuff.createsporttracksworkoutdata(self.wwater) + + + res = tasks.handle_sporttracks_sync(1,url,headers,json.dumps(data,default=sporttracksstuff.default)) + self.assertEqual(res,1) + + @patch('rowers.runkeeperstuff.requests.post', side_effect=mocked_requests) + @patch('rowers.runkeeperstuff.requests.get', side_effect=mocked_requests) + def test_runkeeper_sync(self, mock_get, mock_post): + authorizationstring = str('Bearer aap') + headers = {'Authorization': authorizationstring, + 'user-agent': 'sanderroosendaal', + 'Content-Type': 'application/vnd.com.runkeeper.NewFitnessActivity+json', + 'Content-Length':'nnn'} + + url = "https://api.runkeeper.com/fitnessActivities" + + data = runkeeperstuff.createrunkeeperworkoutdata(self.wwater) + + + res = tasks.handle_runkeeper_sync(1,url,headers,json.dumps(data,default=sporttracksstuff.default)) + self.assertEqual(res,1) + + @patch('rowers.c2stuff.requests.post',side_effect=mocked_requests) + @patch('rowers.c2stuff.requests.get',side_effect=mocked_requests) + def test_import_c2_strokedata(self, mock_get, mock_post): + c2token = 'aap' + c2id = 1212 + workoutid = 1 + starttimeunix = 121 + csvfilename = self.wwater.csvfilename + + res = tasks.handle_c2_import_stroke_data(c2token,c2id,workoutid,starttimeunix,csvfilename) + self.assertEqual(res,1) # interactive plots from rowers import interactiveplots diff --git a/rowers/tests/viewnames.csv b/rowers/tests/viewnames.csv index f918c67a..41c2180d 100644 --- a/rowers/tests/viewnames.csv +++ b/rowers/tests/viewnames.csv @@ -3,7 +3,6 @@ 1,1,rower_update_empower_view,updates old Empower Oarlock files (corrects Power bug),TRUE,302,basic,200,302,FALSE,200,302,FALSE,200,302,FALSE,FALSE,FALSE,TRUE,TRUE, 2,2,agegroupcpview,needs age,TRUE,200,basic,200,302,basic,200,302,coach,200,302,FALSE,FALSE,FALSE,FALSE,FALSE, 3,4,ajax_agegrouprecords,gets age group records from C2 ,TRUE,200,basic,200,302,basic,200,302,coach,200,302,FALSE,FALSE,FALSE,FALSE,FALSE, -4,5,fitness_metric_view,updates a person's fitness metric,TRUE,302,basic,302,302,FALSE,403,302,FALSE,403,403,FALSE,FALSE,FALSE,TRUE,TRUE, 5,6,agegrouprecordview,shows ergo age group records,TRUE,200,basic,200,302,FALSE,200,302,FALSE,200,302,FALSE,FALSE,FALSE,TRUE,TRUE, 6,7,workouts_view,workouts list,TRUE,302,basic,200,302,basic,200,403,coach,200,403,FALSE,TRUE,FALSE,TRUE,TRUE, 7,8,virtualevents_view,virtual races list,TRUE,200,basic,200,302,FALSE,200,302,FALSE,200,302,FALSE,FALSE,FALSE,TRUE,TRUE, diff --git a/rowers/urls.py b/rowers/urls.py index c7525dcd..eb80de1d 100644 --- a/rowers/urls.py +++ b/rowers/urls.py @@ -230,9 +230,9 @@ urlpatterns = [ re_path(r'^agegroupcp/(?P\d+)/(?P\d+)/$',views.agegroupcpview,name='agegroupcpview'), re_path(r'^ajax_agegroup/(?P\d+)/(?P\w+.*)/(?P\w+.*)/(?P\d+)/$', views.ajax_agegrouprecords,name='ajax_agegrouprecords'), - re_path(r'^updatefitness/(?P\w+.*)/(?P\d+)/$',views.fitness_metric_view,name='fitness_metric_view'), - re_path(r'^updatefitness/(?P\w+.*)/$',views.fitness_metric_view,name='fitness_metric_view'), - re_path(r'^updatefitness/$',views.fitness_metric_view,name='fitness_metric_view'), +# re_path(r'^updatefitness/(?P\w+.*)/(?P\d+)/$',views.fitness_metric_view,name='fitness_metric_view'), +# re_path(r'^updatefitness/(?P\w+.*)/$',views.fitness_metric_view,name='fitness_metric_view'), +# re_path(r'^updatefitness/$',views.fitness_metric_view,name='fitness_metric_view'), re_path(r'^agegrouprecords/(?P\w+.*)/(?P\w+.*)/(?P\d+)m/$', views.agegrouprecordview,name='agegrouprecordview'), re_path(r'^agegrouprecords/(?P\w+.*)/(?P\w+.*)/(?P\d+)min/$', diff --git a/rowers/views/workoutviews.py b/rowers/views/workoutviews.py index 2fbf8d59..4b9a031f 100644 --- a/rowers/views/workoutviews.py +++ b/rowers/views/workoutviews.py @@ -784,48 +784,6 @@ def addmanual_view(request,raceid=0): 'active':'nav-workouts', }) -@login_required() -def fitness_metric_view(request,mode='rower',days=42): - r = getrower(request.user) - startdate = timezone.now()-datetime.timedelta(days=days) - - # test if not something already done - ms = PowerTimeFitnessMetric.objects.filter(user=request.user) - if not ms: - url = reverse('workouts_view') - return HttpResponseRedirect(url) - - max_workout_id = max([m.last_workout for m in ms]) - last_update_date = max([m.date.strftime('%Y-%m-%d') for m in ms]) - - - now_date = timezone.now().strftime('%Y-%m-%d') - - - if mode == 'rower': - workouts = Workout.objects.filter( - user=r, - workouttype__in=['rower','dynamic','slides'], - startdatetime__gte=startdate) - else: - workouts = Workout.objects.filter( - user=r, - workouttype__in=['water','coastal'], - startdatetime__gte=startdate) - - theids = [int(w.id) for w in workouts] - max_id = max(theids) - - if last_update_date >= now_date or max_workout_id >= max_id: - return HttpResponse("already done today or no new workouts") - - - job = myqueue(queue, - handle_updatefitnessmetric, - request.user.id,mode,theids, - ) - - return HttpResponse("job queued") @permission_required('workout.change_workout',fn=get_workout_by_opaqueid,raise_exception=True) diff --git a/rowsandall_app/settings.py b/rowsandall_app/settings.py index 0591ee09..1f9f0298 100644 --- a/rowsandall_app/settings.py +++ b/rowsandall_app/settings.py @@ -107,7 +107,7 @@ MIDDLEWARE = [ 'tz_detect.middleware.TimezoneMiddleware', 'rowers.middleware.SurveyMiddleWare', 'rowers.middleware.GDPRMiddleWare', - 'rowers.middleware.PowerTimeFitnessMetricMiddleWare', +# 'rowers.middleware.PowerTimeFitnessMetricMiddleWare', 'rowers.middleware.RowerPlanMiddleWare', ] From ef3fac5ec1659327a05302a6047970ac201137f8 Mon Sep 17 00:00:00 2001 From: Sander Roosendaal Date: Fri, 15 Jan 2021 05:54:42 +0100 Subject: [PATCH 12/30] adding garmin_get_file from tasks --- rowers/tests/mocks.py | 31 +++++++++++++++++++++++++++++++ rowers/tests/test_imports.py | 17 +++++++++++++++++ 2 files changed, 48 insertions(+) diff --git a/rowers/tests/mocks.py b/rowers/tests/mocks.py index 8c040096..3021adb0 100644 --- a/rowers/tests/mocks.py +++ b/rowers/tests/mocks.py @@ -292,6 +292,8 @@ def StravaActivity(): def wait(*args, **kwargs): return 1 + + class MockStravalibClient(): def upload_activity(*args, **kwargs): return StravaActivity() @@ -356,6 +358,7 @@ def mock_cancel_subscription(*args, **kwargs): def mock_mocktest(*args, **kwargs): return '121' + ## Gateway stuff (not working) class gatewayresult(): @@ -635,6 +638,21 @@ def mocked_requests(*args, **kwargs): self.headers = header_data self.status_code = status_code + class MockStreamResponse: + def __init__(self, file_name, status_code): + data = open(file_name,'rb') + self.raw = data + self.status_code = status_code + self.ok = True + + class MockOAuth1Session(): + def __init__(self,*args, **kwargs): + pass + + def get(*args,**kwargs): + return MockStreamResponse('rowers/tests/testdata/3x250m.fit',200) + + class MockSession: def send(self,prepped): # prepped.url @@ -651,9 +669,14 @@ def mocked_requests(*args, **kwargs): return MockResponse(json_data,200) + if 'garmin' in args: + return MockOAuth1Session() + + if not args: return MockSession() + polartester = re.compile('.*?polaraccesslink\.com') c2tester = re.compile('.*?log\.concept2\.com') stravatester = re.compile('.*?strava\.com') @@ -661,6 +684,7 @@ def mocked_requests(*args, **kwargs): rktester = re.compile('.*?runkeeper\.com') uatester = re.compile('.*?mapmyfitness\.com') tptester = re.compile('.*?trainingpeaks\.com') + garmintester = re.compile('.*?garmin\.com') c2importregex = '.*?concept2.com\/api\/users\/me\/results\/\d+' c2importtester = re.compile(c2importregex) @@ -721,6 +745,13 @@ def mocked_requests(*args, **kwargs): tpuploadregex = '.*?trainingpeaks\.com\/v1\/file' tpuploadtester = re.compile(tpuploadregex) + garmindownloadregex = '.*?garmin\.com\/mockfile?id=1' + garmindownloadtester = re.compile(garmindownloadregex) + + if garmintester.match(args[0]): + if garmindownloadtester.match(args[0]): + return MockStreamResponse('rowers/tests/testdata/3x250m.fit',200) + if stravaathletetester.match(args[0]): json_data = stravaathletejson return MockResponse(json_data,200) diff --git a/rowers/tests/test_imports.py b/rowers/tests/test_imports.py index ef9e3935..1c4cf58b 100644 --- a/rowers/tests/test_imports.py +++ b/rowers/tests/test_imports.py @@ -12,6 +12,7 @@ nu = datetime.datetime.now() import rowers from rowers import dataprep +from rowers import tasks @pytest.mark.django_db @override_settings(TESTING=True) @@ -115,6 +116,22 @@ class GarminObjects(DjangoTestCase): self.assertEqual(response.status_code,200) + @patch('rowers.tasks.OAuth1Session',side_effect=mocked_requests) + def test_handle_get_garmin_file(self, MockOAuth1Session): + client_id = 'garmin' + client_secret = 'noot' + garmintoken = 'mies' + garminrefreshtoken = 'jet' + userid = self.r.user.id + url = 'fake_url' + filetype = 'fit' + + res = tasks.handle_get_garmin_file( + client_id,client_secret,garmintoken,garminrefreshtoken,userid,url,filetype + ) + + self.assertEqual(res,1) + @pytest.mark.django_db From 8ebb55cfd7bf3d47b623afef3c82767f40519248 Mon Sep 17 00:00:00 2001 From: Sander Roosendaal Date: Fri, 15 Jan 2021 07:18:43 +0100 Subject: [PATCH 13/30] further tests in async tasks --- rowers/dataprepnodjango.py | 247 +-------------------------- rowers/tasks.py | 12 +- rowers/tests/mocks.py | 10 ++ rowers/tests/test_async_tasks.py | 282 +++++++++++++++++++++++++++++++ rowers/tests/test_unit_tests.py | 100 ----------- 5 files changed, 297 insertions(+), 354 deletions(-) create mode 100644 rowers/tests/test_async_tasks.py diff --git a/rowers/dataprepnodjango.py b/rowers/dataprepnodjango.py index a6ca3b5f..0dfcb5df 100644 --- a/rowers/dataprepnodjango.py +++ b/rowers/dataprepnodjango.py @@ -9,7 +9,7 @@ from rowingdata import rowingdata as rrdata from rowingdata import make_cumvalues from rowingdata import rower as rrower from rowingdata import main as rmain -from rowingdata import empower_bug_correction,get_empower_rigging +from rowingdata import empower_bug_correction,get_empower_rigging, get_file_type from rowingdata.csvparsers import make_cumvalues_array from time import strftime from pandas import DataFrame,Series @@ -32,6 +32,8 @@ from rowsandall_app.settings_dev import DATABASES as DEV_DATABASES from rowsandall_app.settings_dev import use_sqlite from rowers.utils import lbstoN +import pytz +from timezonefinder import TimezoneFinder try: @@ -322,167 +324,6 @@ def add_c2_stroke_data_db(strokedata,workoutid,starttimeunix,csvfilename, return data -# Processes painsled CSV file to database -def save_workout_database(f2,r,dosmooth=True,workouttype='rower', - dosummary=True,title='Workout', - notes='',totaldist=0,totaltime=0, - workoutsource='unknown', - summary='', - makeprivate=False, - oarlength=2.89,inboard=0.88): - message = None - powerperc = 100*np.array([r.pw_ut2, - r.pw_ut1, - r.pw_at, - r.pw_tr,r.pw_an])/r.ftp - - # make workout and put in database - rr = rrower(hrmax=r.max,hrut2=r.ut2, - hrut1=r.ut1,hrat=r.at, - hrtr=r.tr,hran=r.an,ftp=r.ftp, - powerperc=powerperc,powerzones=r.powerzones) - row = rdata(f2,rower=rr) - - checks = row.check_consistency() - allchecks = 1 - for key,value in checks.iteritems(): - if not value: - allchecks = 0 - - if not allchecks: - #row.repair() - pass - - - if row == 0: - return (0,'Error: CSV data file not found') - - if dosmooth: - # auto smoothing - pace = row.df[' Stroke500mPace (sec/500m)'].values - velo = 500./pace - - f = row.df['TimeStamp (sec)'].diff().mean() - if f !=0: - windowsize = 2*(int(10./(f)))+1 - else: - windowsize = 1 - if not 'originalvelo' in row.df: - row.df['originalvelo'] = velo - - if windowsize > 3 and windowsize23: - message = 'Warning: The workout duration was longer than 23 hours. ' - hours = 23 - - minutes = int((totaltime - 3600.*hours)/60.) - if minutes>59: - minutes = 59 - if not message: - message = 'Warning: there is something wrong with the workout duration' - - seconds = int(totaltime - 3600.*hours - 60.*minutes) - if seconds > 59: - seconds = 59 - if not message: - message = 'Warning: there is something wrong with the workout duration' - - tenths = int(10*(totaltime - 3600.*hours - 60.*minutes - seconds)) - if tenths > 9: - tenths = 9 - if not message: - message = 'Warning: there is something wrong with the workout duration' - - duration = "%s:%s:%s.%s" % (hours,minutes,seconds,tenths) - - if dosummary: - summary = row.summary() - summary += '\n' - summary += row.intervalstats() - - workoutdate = row.rowdatetime.strftime('%Y-%m-%d') - workoutstarttime = row.rowdatetime.strftime('%H:%M:%S') - workoutstartdatetime = thetimezone.localize(row.rowdatetime).astimezone(utc) - - if makeprivate: - privacy = 'private' - else: - privacy = 'visible' - - # check for duplicate start times - ws = Workout.objects.filter(startdatetime=workoutstartdatetime, - user=r) - if (len(ws) != 0): - message = "Warning: This workout probably already exists in the database" - privacy = 'private' - - - - w = Workout(user=r,name=title,date=workoutdate, - workouttype=workouttype, - workoutsource=workoutsource, - duration=duration,distance=totaldist, - weightcategory=r.weightcategory, - starttime=workoutstarttime, - csvfilename=f2,notes=notes,summary=summary, - maxhr=maxhr,averagehr=averagehr, - startdatetime=workoutstartdatetime, - inboard=inboard,oarlength=oarlength, - privacy=privacy) - - - w.save() - - if privacy == 'visible': - ts = Team.objects.filter(rower=r) - for t in ts: - w.team.add(t) - - # put stroke data in database - res = dataprep(row.df,id=w.id,bands=True, - barchart=True,otwpower=True,empower=True,inboard=inboard) - - return (w.id,message) def handle_nonpainsled(f2,fileformat,summary=''): oarlength = 2.89 @@ -566,88 +407,6 @@ def handle_nonpainsled(f2,fileformat,summary=''): return (f2,summary,oarlength,inboard) -# Create new workout from file and store it in the database -# This routine should be used everywhere in views.py and mailprocessing.py -# Currently there is code duplication -def new_workout_from_file(r,f2, - workouttype='rower', - title='Workout', - makeprivate=False, - notes=''): - message = None - fileformat = get_file_type(f2) - summary = '' - oarlength = 2.89 - inboard = 0.88 - if len(fileformat)==3 and fileformat[0]=='zip': - f_to_be_deleted = f2 - with zipfile.ZipFile(f2) as z: - for fname in z.namelist(): - f3 = z.extract(fname,path='media/') - id,message,f2 = new_workout_from_file(r,f3, - workouttype=workouttype, - makeprivate=makeprivate, - title = title, - notes='') - os.remove(f_to_be_deleted) - return id,message,f2 - - # Some people try to upload Concept2 logbook summaries - if fileformat == 'c2log': - os.remove(f2) - message = "This C2 logbook summary does not contain stroke data. Please download the Export Stroke Data file from the workout details on the C2 logbook." - return (0,message,f2) - - if fileformat == 'nostrokes': - os.remove(f2) - message = "It looks like this file doesn't contain stroke data." - return (0,message,f2) - - # Some people try to upload RowPro summary logs - if fileformat == 'rowprolog': - os.remove(f2) - message = "This RowPro logbook summary does not contain stroke data. Please use the Stroke Data CSV file for the individual workout in your log." - return (0,message,f2) - - # Sometimes people try an unsupported file type. - # Send an email to info@rowsandall.com with the file attached - # for me to check if it is a bug, or a new file type - # worth supporting - if fileformat == 'unknown': - message = "We couldn't recognize the file type" - if settings.DEBUG: - res = handle_sendemail_unrecognized.delay(f2, - r.user.email) - - else: - res = queuehigh.enqueue(handle_sendemail_unrecognized, - f2,r.user.email) - return (0,message,f2) - - # handle non-Painsled by converting it to painsled compatible CSV - if (fileformat != 'csv'): - try: - f2,summary,oarlength,inboard = handle_nonpainsled(f2, - fileformat, - summary=summary) - except: - errorstring = str(sys.exc_info()[0]) - message = 'Something went wrong: '+errorstring - return (0,message,'') - - - - dosummary = (fileformat != 'fit' and fileformat != 'speedcoach2') - - id,message = save_workout_database(f2,r, - workouttype=workouttype, - makeprivate=makeprivate, - dosummary=dosummary, - summary=summary, - inboard=inboard,oarlength=oarlength, - title=title) - - return (id,message,f2) def delete_strokedata(id,debug=False): dirname = 'media/strokedata_{id}.parquet.gz'.format(id=id) diff --git a/rowers/tasks.py b/rowers/tasks.py index be750f6f..c7d4384b 100644 --- a/rowers/tasks.py +++ b/rowers/tasks.py @@ -69,7 +69,7 @@ from rowers import mytypes from rowers.dataprepnodjango import ( - update_strokedata, new_workout_from_file, + update_strokedata, getsmallrowdata_db, updatecpdata_sql,update_c2id_sql, update_workout_field_sql, update_agegroup_db,fitnessmetric_to_sql, @@ -771,15 +771,7 @@ def long_test_task2(self,aantal,**kwargs): -# create workout -@app.task -def handle_new_workout_from_file(r, f2, - workouttype='rower', - boattype='1x', - makeprivate=False, - notes='',debug=False): - return new_workout_from_file(r, f2, workouttype, - title, makeprivate, notes) + # process and update workouts diff --git a/rowers/tests/mocks.py b/rowers/tests/mocks.py index 3021adb0..a1199487 100644 --- a/rowers/tests/mocks.py +++ b/rowers/tests/mocks.py @@ -58,6 +58,9 @@ redis_connection = StrictRedis() from django_mailbox.models import Mailbox,MessageAttachment,Message +def mocked_send_template_email(*args,**kwargs): + return 1 + def mocked_myqueue(*args, **kwargs): class Job: def __init__(self,*args, **kwargs): @@ -915,3 +918,10 @@ def mocked_requests(*args, **kwargs): return MockResponse(c2workoutdata,200) return MockResponse(None,404) + +class MockEmailMessage: + def __init__(*args,**kwargs): + pass + + def send(self): + return 1 diff --git a/rowers/tests/test_async_tasks.py b/rowers/tests/test_async_tasks.py new file mode 100644 index 00000000..c22c4dc0 --- /dev/null +++ b/rowers/tests/test_async_tasks.py @@ -0,0 +1,282 @@ +from __future__ import absolute_import +from __future__ import division +from __future__ import print_function +from __future__ import unicode_literals + +from .statements import * +from rowers.mytypes import rowtypes +import pandas as pd + +nu = datetime.datetime.now() +from rowers import tasks + +# asynchronous tasks +class AsyncTaskTests(TestCase): + def setUp(self): + self.u = UserFactory() + + self.r = Rower.objects.create(user=self.u, + birthdate=faker.profile()['birthdate'], + gdproptin=True,surveydone=True, + gdproptindate=timezone.now(), + rowerplan='coach') + + self.c = Client() + self.user_workouts = WorkoutFactory.create_batch(5, user=self.r) + self.factory = RequestFactory() + self.password = faker.word() + self.u.set_password(self.password) + self.u.save() + + result = get_random_file(filename='rowers/tests/testdata/onwater2.csv') + + self.wwater = WorkoutFactory(user=self.r, + csvfilename=result['filename'], + starttime=result['starttime'], + startdatetime=result['startdatetime'], + duration=result['duration'], + distance=result['totaldist'], + workouttype = 'water', + ) + + def test_safetimedelta(self): + x = 5 + y = tasks.safetimedelta(x) + self.assertEqual(datetime.timedelta(seconds=5),y) + + x = np.nan + y = tasks.safetimedelta(x) + self.assertEqual(datetime.timedelta(seconds=0),y) + + @patch('rowers.c2stuff.requests.post', side_effect=mocked_requests) + @patch('rowers.c2stuff.requests.get', side_effect=mocked_requests) + def test_c2_sync(self, mock_get, mock_post): + authorizationstring = str('Bearer aap') + headers = {'Authorization': authorizationstring, + 'user-agent': 'sanderroosendaal', + 'Content-Type': 'application/json'} + + data = c2stuff.createc2workoutdata(self.wwater) + + url = "https://log.concept2.com/api/users/%s/results" % (1) + res = tasks.handle_c2_sync(1,url,headers,data) + self.assertEqual(res,1) + + # to do - mock the grpc channel and metrics_pb2 + @patch('rowers.dataprep.create_engine') + def test_handle_calctrimp(self, mocked_sqlalchemy): + result = get_random_file() + res = tasks.handle_calctrimp(1,result['filename'],200,'male',160,90,52) + self.assertEqual(res,1) + + @patch('rowers.tasks.EmailMessage',side_effect=MockEmailMessage) + def test_handle_updatedps(self,MockEmailMessage): + result = get_random_file() + filename = result['filename'] + res = tasks.handle_updatedps('roosendaalsander@gmail.com',[(1,filename)]) + + self.assertEqual(res,1) + + @patch('rowers.tasks.send_template_email',side_effect=mocked_send_template_email) + def test_handle_send_email_alert(self,mocked_send_template_email): + useremail = self.u.email + userfirstname = self.u.first_name + userlastname = self.u.last_name, + rowerfirstname = self.u.first_name, + alertname = 'Test Alert' + stats = { + 'percentage': 45, + 'workouts': 3, + 'nr_strokes_qualifying': 23, + 'nr_strokes': 5, + 'median': 33.23, + 'median_q': 32.121, + 'startdate': '2020-01-01', + 'enddate': '2020-23-01', + } + + res = tasks.handle_send_email_alert(useremail,userfirstname,userlastname, + rowerfirstname,alertname,stats) + + self.assertEqual(res,1) + + @patch('rowers.tasks.send_template_email',side_effect=mocked_send_template_email) + def test_handle_send_email_transactions(self,mocked_send_template_email): + res = tasks.handle_send_email_transaction(self.u.username,self.u.email,23) + self.assertEqual(res,1) + + res = tasks.handle_send_email_failed_cancel(self.u.first_name,self.u.email,self.u.username,23) + self.assertEqual(res,1) + + res = tasks.handle_send_email_subscription_update( + self.u.first_name,self.u.email,'testplan',True,23,24,'2020-12-02','down') + self.assertEqual(res,1) + + res = tasks.handle_send_email_subscription_update( + self.u.first_name,self.u.email,'testplan',True,23,24,'2020-12-02','up') + self.assertEqual(res,1) + + res = tasks.handle_send_email_subscription_create( + self.u.username,self.u.email,'pro',True,24,24,'2020-12-02' + ) + self.assertEqual(res,1) + + res = tasks.handle_sendemail_expired(self.u.email,self.u.first_name,self.u.last_name, + '2020-12-12') + self.assertEqual(res,1) + + @patch('rowers.tasks.send_template_email',side_effect=mocked_send_template_email) + def test_handle_raceemails(self,mocked_send_template_email): + u = self.u + useremail = u.email + username = u.first_name + racename = 'Hop' + raceid = 12 + registeredname = 'Jaap' + + res = tasks.handle_sendemail_raceregistration(useremail,username,registeredname,racename,raceid) + self.assertEqual(res,1) + + result = get_random_file() + filename = result['filename'] + + res = tasks.handle_sendemail_coursefail(useremail,username,filename) + self.assertEqual(res,1) + + res = tasks.handle_sendemail_optout(useremail,username,registeredname,racename,raceid) + self.assertEqual(res,1) + + res = tasks.handle_sendemail_racesubmission(useremail,username,registeredname,racename,raceid) + self.assertEqual(res,1) + + res = tasks.handle_send_disqualification_email(useremail,username,'daarom','omdat',racename) + self.assertEqual(res,1) + + res = tasks.handle_send_withdraw_email(useremail,username,'daarom','message',racename) + self.assertEqual(res,1) + + @patch('rowers.tasks.send_template_email',side_effect=mocked_send_template_email) + def test_handle_otheremails(self,mocked_send_template_email): + u = self.u + useremail = u.email + username = u.first_name + userfirstname = u.first_name + userlastname = u.last_name + filename = get_random_file()['filename'] + + btvalues = pd.DataFrame({ + 'delta':[3,1,3], + 'cpvalues':[100,200,300], + 'pwr':[100,200,300] + }).to_json() + + res = tasks.handle_sendemail_breakthrough(1,useremail,userfirstname,userlastname, + btvalues=btvalues) + + self.assertEqual(res,1) + + res = tasks.handle_sendemail_hard(1,useremail,userfirstname,userlastname, + btvalues=btvalues) + self.assertEqual(res,1) + + res = tasks.handle_sendemail_userdeleted(username,useremail) + self.assertEqual(res,1) + + res = tasks.handle_sendemail_unrecognized(filename,useremail) + self.assertEqual(res,1) + + res = tasks.handle_sendemail_unrecognizedowner(useremail,userfirstname) + self.assertEqual(res,1) + + filename = get_random_file()['filename'] + res = tasks.handle_sendemailics(userfirstname,userlastname,useremail,filename) + self.assertEqual(res,1) + + filename = get_random_file()['filename'] + res = tasks.handle_sendemailkml(userfirstname,userlastname,useremail,filename) + self.assertEqual(res,1) + + filename = get_random_file()['filename'] + res = tasks.handle_sendemailtcx(userfirstname,userlastname,useremail,filename) + self.assertEqual(res,1) + + filename = get_random_file()['filename'] + res = tasks.handle_sendemailsummary(userfirstname,userlastname,useremail,filename) + self.assertEqual(res,1) + + filename = get_random_file()['filename'] + res = tasks.handle_sendemailcsv(userfirstname,userlastname,useremail,filename) + self.assertEqual(res,1) + + filename = get_random_file()['filename'] + res = tasks.handle_sendemail_ical(userfirstname,userlastname,useremail,'url',filename) + self.assertEqual(res,1) + + filename = get_random_file()['filename'] + res = tasks.handle_sendemailfile(userfirstname,userlastname,useremail,filename) + self.assertEqual(res,1) + + + def test_sigdig(self): + x = 3.14159 + + y = tasks.sigdig(x,digits=2) + self.assertEqual(y,'3.1') + + y = tasks.sigdig(x) + self.assertEqual(y,'3.14') + + y = tasks.sigdig(x,digits=0) + self.assertEqual(y,'0') + + y = tasks.sigdig(x,digits=1) + self.assertEqual(y,'3') + + y = tasks.sigdig(x,digits=4) + self.assertEqual(y,'3.142') + + + @patch('rowers.sporttracksstuff.requests.post', side_effect=mocked_requests) + @patch('rowers.sporttracksstuff.requests.get', side_effect=mocked_requests) + def test_sporttracks_sync(self, mock_get, mock_post): + authorizationstring = str('Bearer aap') + headers = {'Authorization': authorizationstring, + 'user-agent': 'sanderroosendaal', + 'Content-Type': 'application/json'} + + url = "https://api.sporttracks.mobi/api/v2/fitnessActivities.json" + + data = sporttracksstuff.createsporttracksworkoutdata(self.wwater) + + + res = tasks.handle_sporttracks_sync(1,url,headers,json.dumps(data,default=sporttracksstuff.default)) + self.assertEqual(res,1) + + @patch('rowers.runkeeperstuff.requests.post', side_effect=mocked_requests) + @patch('rowers.runkeeperstuff.requests.get', side_effect=mocked_requests) + def test_runkeeper_sync(self, mock_get, mock_post): + authorizationstring = str('Bearer aap') + headers = {'Authorization': authorizationstring, + 'user-agent': 'sanderroosendaal', + 'Content-Type': 'application/vnd.com.runkeeper.NewFitnessActivity+json', + 'Content-Length':'nnn'} + + url = "https://api.runkeeper.com/fitnessActivities" + + data = runkeeperstuff.createrunkeeperworkoutdata(self.wwater) + + + res = tasks.handle_runkeeper_sync(1,url,headers,json.dumps(data,default=sporttracksstuff.default)) + self.assertEqual(res,1) + + @patch('rowers.c2stuff.requests.post',side_effect=mocked_requests) + @patch('rowers.c2stuff.requests.get',side_effect=mocked_requests) + def test_import_c2_strokedata(self, mock_get, mock_post): + c2token = 'aap' + c2id = 1212 + workoutid = 1 + starttimeunix = 121 + csvfilename = self.wwater.csvfilename + + res = tasks.handle_c2_import_stroke_data(c2token,c2id,workoutid,starttimeunix,csvfilename) + self.assertEqual(res,1) diff --git a/rowers/tests/test_unit_tests.py b/rowers/tests/test_unit_tests.py index b99d4823..c1e2c9f3 100644 --- a/rowers/tests/test_unit_tests.py +++ b/rowers/tests/test_unit_tests.py @@ -8,106 +8,6 @@ from rowers.mytypes import rowtypes nu = datetime.datetime.now() -from rowers import tasks - -# asynchronous tasks -class AsyncTaskTests(TestCase): - def setUp(self): - self.u = UserFactory() - - self.r = Rower.objects.create(user=self.u, - birthdate=faker.profile()['birthdate'], - gdproptin=True,surveydone=True, - gdproptindate=timezone.now(), - rowerplan='coach') - - self.c = Client() - self.user_workouts = WorkoutFactory.create_batch(5, user=self.r) - self.factory = RequestFactory() - self.password = faker.word() - self.u.set_password(self.password) - self.u.save() - - result = get_random_file(filename='rowers/tests/testdata/onwater2.csv') - - self.wwater = WorkoutFactory(user=self.r, - csvfilename=result['filename'], - starttime=result['starttime'], - startdatetime=result['startdatetime'], - duration=result['duration'], - distance=result['totaldist'], - workouttype = 'water', - ) - - def test_safetimedelta(self): - x = 5 - y = tasks.safetimedelta(x) - self.assertEqual(datetime.timedelta(seconds=5),y) - - x = np.nan - y = tasks.safetimedelta(x) - self.assertEqual(datetime.timedelta(seconds=0),y) - - @patch('rowers.c2stuff.requests.post', side_effect=mocked_requests) - @patch('rowers.c2stuff.requests.get', side_effect=mocked_requests) - def test_c2_sync(self, mock_get, mock_post): - authorizationstring = str('Bearer aap') - headers = {'Authorization': authorizationstring, - 'user-agent': 'sanderroosendaal', - 'Content-Type': 'application/json'} - - data = c2stuff.createc2workoutdata(self.wwater) - - url = "https://log.concept2.com/api/users/%s/results" % (1) - res = tasks.handle_c2_sync(1,url,headers,data) - self.assertEqual(res,1) - - - - @patch('rowers.sporttracksstuff.requests.post', side_effect=mocked_requests) - @patch('rowers.sporttracksstuff.requests.get', side_effect=mocked_requests) - def test_sporttracks_sync(self, mock_get, mock_post): - authorizationstring = str('Bearer aap') - headers = {'Authorization': authorizationstring, - 'user-agent': 'sanderroosendaal', - 'Content-Type': 'application/json'} - - url = "https://api.sporttracks.mobi/api/v2/fitnessActivities.json" - - data = sporttracksstuff.createsporttracksworkoutdata(self.wwater) - - - res = tasks.handle_sporttracks_sync(1,url,headers,json.dumps(data,default=sporttracksstuff.default)) - self.assertEqual(res,1) - - @patch('rowers.runkeeperstuff.requests.post', side_effect=mocked_requests) - @patch('rowers.runkeeperstuff.requests.get', side_effect=mocked_requests) - def test_runkeeper_sync(self, mock_get, mock_post): - authorizationstring = str('Bearer aap') - headers = {'Authorization': authorizationstring, - 'user-agent': 'sanderroosendaal', - 'Content-Type': 'application/vnd.com.runkeeper.NewFitnessActivity+json', - 'Content-Length':'nnn'} - - url = "https://api.runkeeper.com/fitnessActivities" - - data = runkeeperstuff.createrunkeeperworkoutdata(self.wwater) - - - res = tasks.handle_runkeeper_sync(1,url,headers,json.dumps(data,default=sporttracksstuff.default)) - self.assertEqual(res,1) - - @patch('rowers.c2stuff.requests.post',side_effect=mocked_requests) - @patch('rowers.c2stuff.requests.get',side_effect=mocked_requests) - def test_import_c2_strokedata(self, mock_get, mock_post): - c2token = 'aap' - c2id = 1212 - workoutid = 1 - starttimeunix = 121 - csvfilename = self.wwater.csvfilename - - res = tasks.handle_c2_import_stroke_data(c2token,c2id,workoutid,starttimeunix,csvfilename) - self.assertEqual(res,1) # interactive plots from rowers import interactiveplots From 264e7132dd6f4ca5c24ae54b851b61c89c70e78a Mon Sep 17 00:00:00 2001 From: Sander Roosendaal Date: Fri, 15 Jan 2021 08:15:35 +0100 Subject: [PATCH 14/30] fixing mock session --- rowers/tests/mocks.py | 10 ++++++++++ rowers/tests/test_imports.py | 3 ++- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/rowers/tests/mocks.py b/rowers/tests/mocks.py index a1199487..e5d8654a 100644 --- a/rowers/tests/mocks.py +++ b/rowers/tests/mocks.py @@ -657,6 +657,16 @@ def mocked_requests(*args, **kwargs): class MockSession: + class headers: + def __init__(self,*args,**kwargs): + pass + + def update(self,*args,**kwargs): + pass + + def post(self, *args, **kwargs): + return MockResponse('',200) + def send(self,prepped): # prepped.url # prepped.body (post data) diff --git a/rowers/tests/test_imports.py b/rowers/tests/test_imports.py index 1c4cf58b..88ab58ec 100644 --- a/rowers/tests/test_imports.py +++ b/rowers/tests/test_imports.py @@ -117,7 +117,8 @@ class GarminObjects(DjangoTestCase): self.assertEqual(response.status_code,200) @patch('rowers.tasks.OAuth1Session',side_effect=mocked_requests) - def test_handle_get_garmin_file(self, MockOAuth1Session): + @patch('rowers.tasks.requests.session', side_effect=mocked_requests) + def test_handle_get_garmin_file(self, MockSession, MockOAuth1Session): client_id = 'garmin' client_secret = 'noot' garmintoken = 'mies' From 3a6021d579b41c3f71bc146b82b9d870675ca79f Mon Sep 17 00:00:00 2001 From: Sander Roosendaal Date: Sat, 16 Jan 2021 09:57:32 +0100 Subject: [PATCH 15/30] test otw testpower --- rowers/tasks.py | 1 + rowers/tests/mocks.py | 24 + rowers/tests/test_async_tasks.py | 31 + rowers/tests/testdata/sprintervals.csv | 1152 ++++++++++++++++++++++++ 4 files changed, 1208 insertions(+) create mode 100644 rowers/tests/testdata/sprintervals.csv diff --git a/rowers/tasks.py b/rowers/tasks.py index c7d4384b..fe3026dc 100644 --- a/rowers/tasks.py +++ b/rowers/tasks.py @@ -1839,6 +1839,7 @@ def handle_otwsetpower(self,f1, boattype, boatclass, coastalbrand, weightvalue, job = self.request job_id = job.id + if 'jobkey' in kwargs: job_id = kwargs.pop('jobkey') if 'ps' in kwargs: diff --git a/rowers/tests/mocks.py b/rowers/tests/mocks.py index e5d8654a..8bd01e5c 100644 --- a/rowers/tests/mocks.py +++ b/rowers/tests/mocks.py @@ -58,6 +58,30 @@ redis_connection = StrictRedis() from django_mailbox.models import Mailbox,MessageAttachment,Message +def mocked_grpc(*args, **kwargs): + class insecure_channel: + def __init__(*args,**kwargs): + pass + + class channel_ready_future: + def __init__(*args,**kwargs): + pass + + def result(self,*args,**kwargs): + pass + + class Result: + def __init__(*args,**kwargs): + self.result = 1 + + class calculator_pb2_grpc: + def PowerStub(*args,**kwargs): + def __init__(*args,**kwargs): + pass + + def CalcPower(*args,**kwargs): + return Result() + def mocked_send_template_email(*args,**kwargs): return 1 diff --git a/rowers/tests/test_async_tasks.py b/rowers/tests/test_async_tasks.py index c22c4dc0..a98d0d1e 100644 --- a/rowers/tests/test_async_tasks.py +++ b/rowers/tests/test_async_tasks.py @@ -10,6 +10,17 @@ import pandas as pd nu = datetime.datetime.now() from rowers import tasks + +class fakejob: + def __init__(self): + self.id = 1 + +class fakerequest: + def __init__(self): + self.id = 1 + self.job = fakejob() + + # asynchronous tasks class AsyncTaskTests(TestCase): def setUp(self): @@ -280,3 +291,23 @@ class AsyncTaskTests(TestCase): res = tasks.handle_c2_import_stroke_data(c2token,c2id,workoutid,starttimeunix,csvfilename) self.assertEqual(res,1) + + @patch('rowers.tasks.grpc',side_effect=mocked_grpc) + @patch('rowers.tasks.send_template_email',side_effect=mocked_send_template_email) + def test_handle_otwsetpower(self,mocked_send_template_email,mocked_grpc): + f1 = result = get_random_file(filename='rowers/tests/testdata/sprintervals.csv')['filename'] + boattype = '1x' + boatclass = 'water' + coastalbrand = 'other' + weightvalue = 80. + first_name = self.u.first_name + last_name = self.u.last_name + email = self.u.email + workoutid = self.wwater.id + job = fakerequest() + + res = tasks.handle_otwsetpower(f1,boattype,boatclass,coastalbrand, + weightvalue,first_name,last_name,email,workoutid, + jobkey='23') + + self.assertEqual(res,1) diff --git a/rowers/tests/testdata/sprintervals.csv b/rowers/tests/testdata/sprintervals.csv new file mode 100644 index 00000000..be66ce52 --- /dev/null +++ b/rowers/tests/testdata/sprintervals.csv @@ -0,0 +1,1152 @@ +,index,TimeStamp (sec), Horizontal (meters), Cadence (stokes/min), HRCur (bpm), Stroke500mPace (sec/500m), Power (watts), DriveLength (meters), StrokeDistance (meters), drivetime, DragFactor, StrokeRecoveryTime (ms), WorkPerStroke (joules), AverageDriveForce (lbs), PeakDriveForce (lbs), Speed (m/sec), lapIdx, ElapsedTime (sec), Calories (kCal), WorkoutState, latitude, longitude, bearing,nowindpace,Equiv erg Power,power (model),averageforce (model),drivelength (model),vwind,winddirection,vstream, DriveTime (ms), AverageBoatSpeed (m/s), AverageDriveForce (N), PeakDriveForce (N), Stroke Number,driveenergy,cum_dist,hr_ut2,hr_ut1,hr_at,hr_tr,hr_an,hr_max,lim_ut2,lim_ut1,lim_at,lim_tr,lim_an,lim_max,pw_ut2,pw_ut1,pw_at,pw_tr,pw_an,pw_max,limpw_ut2,limpw_ut1,limpw_at,limpw_tr,limpw_an +0,0,1609402381.0,0.3,44.0,98.0,3394.65784,0.0,0.0,0.0,0.0,0.0,0.0,193.636364,58.225537,100.489634,0.14729,0.0,0.0,1.0,0.0,52.221907,6.857044,141.652976,0.14729,0.0,0.0,11.240451,0.0,0.0,0.0,0.0,0.0,0.14729024943497693,258.99999819413995,446.99999975147995,2,0.0,0.3,0.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1,1,1609402384.0,0.3,44.0,98.0,2896.0761780000007,0.0,0.0,0.0,0.0,0.0,0.0,193.636364,-1.798472,0.449618,0.172647,0.0,3.0,1.0,0.0,52.221907,6.857044,241.32337400000003,0.159969,0.0,0.0,11.240451,0.0,0.0,0.0,0.0,0.0,0.17264739228831155,-7.99999911984,1.99999977996,4,0.0,0.3,0.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +2,2,1609402387.0,9.7,32.0,99.0,896.4598980000002,0.0,0.0,0.0,0.0,0.0,0.0,266.25,-1.798472,0.449618,0.5577489999999999,0.0,6.0,1.0,0.0,52.221966,6.856945,268.947975,0.292562,0.0,0.0,11.240451,0.0,0.0,0.0,0.0,0.0,0.5577494332044287,-7.99999911984,1.99999977996,6,0.0,9.7,0.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +3,3,1609402387.7,11.2,11.5,99.0,436.024955,0.0,0.0,0.0,0.0,0.0,0.0,255.65217400000003,47.659513,93.070936,1.146723,0.0,6.700000047683716,1.0,0.0,52.221976,6.856928999999999,282.8885160000001,0.625707,0.0,0.0,11.240451,0.0,0.0,0.0,0.0,0.0,1.146723356694114,211.99999891686002,413.99999893392,6,0.0,11.2,0.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +4,4,1609402391.7,19.9,15.0,103.0,284.50328,0.0,0.0,0.0,0.0,0.0,0.0,360.0,47.884322,89.92361,1.7574490000000005,0.0,10.700000047683716,1.0,0.0,52.22203,6.8568380000000015,291.477338,94.844113,0.0,29.765897,16.104627,0.0,0.0,0.0,0.0,0.0,1.7574489826619928,212.99999880683998,400.00000047419996,7,0.0,19.9,103.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +5,5,1609402396.0,30.5,14.5,106.0,222.063326,0.0,0.0,0.0,0.0,0.0,0.0,384.827586,47.434704,96.443072,2.25161,0.0,15.0,1.0,0.0,52.222099,6.856731,297.454339,168.521045,0.0,65.300978,39.626696,0.0,0.0,0.0,0.0,0.0,2.251609975435566,210.99999902688,429.00000173184,8,0.0,30.5,106.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +6,6,1609402399.9,42.2,15.0,107.0,194.643551,0.0,0.0,0.0,0.0,0.0,0.0,328.0,40.465624,80.256822,2.568798,0.0,18.90000009536743,1.0,0.0,52.222179,6.856619,301.6856,229.434727,0.0,100.56664,63.360176,0.0,0.0,0.0,0.0,0.0,2.568798182273196,179.99999798928002,357.00000075684,9,0.0,42.2,107.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +7,7,1609402404.3,54.1,13.5,108.0,183.49311,0.0,0.0,0.0,0.0,0.0,0.0,386.666667,47.659513,93.070936,2.724898,0.0,23.299999952316284,1.0,0.0,52.222262,6.856509,304.465629,255.723434,0.0,118.324671,77.256118,0.0,0.0,0.0,0.0,0.0,2.7248979539340743,211.99999891686002,413.99999893392,10,0.0,54.1,108.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +8,8,1609402408.0,64.3,15.5,109.0,179.382047,0.0,0.0,0.0,0.0,0.0,0.0,433.548387,53.279739,102.288106,2.787347,0.0,27.0,1.0,0.0,52.22233,6.856408999999998,307.126744,257.81536,0.0,127.302251,70.611968,0.0,0.0,0.0,0.0,0.0,2.7873469411350853,237.00000061457996,454.99999887132003,11,0.0,64.3,109.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +9,9,1609402412.1,75.8,15.0,110.0,176.813035,0.0,0.0,0.0,0.0,0.0,0.0,444.0,56.427065,116.001457,2.827846,0.0,31.09999990463257,1.0,0.0,52.222412,6.856306,308.835271,237.080631,0.0,133.82761399999998,88.256747,0.0,0.0,0.0,0.0,0.0,2.8278458089925325,250.9999990743,516.0000010565401,12,0.0,75.8,110.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +10,10,1609402415.9,86.9,16.0,110.0,174.008428,0.0,0.0,0.0,0.0,0.0,0.0,416.25,52.380503,100.040016,2.873424,0.0,34.90000009536743,1.0,0.0,52.22249,6.856205,310.132711,220.096443,0.0,77.069114,40.135926,0.0,0.0,0.0,0.0,0.0,2.8734240389781585,233.00000105466003,444.99999997152,13,0.0,86.9,110.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +11,11,1609402420.0,98.1,15.5,112.0,170.874599,0.0,0.0,0.0,0.0,0.0,0.0,452.903226,57.55111,102.737724,2.9261220000000003,0.0,39.0,1.0,0.0,52.222567,6.8561,311.129978,190.18167,0.0,144.648603,83.93480500000003,0.0,0.0,0.0,0.0,0.0,2.926122448427809,255.99999852419998,456.99999865128,14,0.0,98.1,112.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +12,12,1609402423.5,109.7,16.0,114.0,167.864429,0.0,0.0,0.0,0.0,0.0,0.0,431.25,51.706076,101.838488,2.978594,0.0,42.5,1.0,0.0,52.22264600000001,6.855988000000001,312.06028,160.592292,0.0,197.940287,58.252463,0.0,0.0,0.0,0.0,0.0,2.9785941129910256,230.00000138472,452.99999909135994,15,0.0,109.7,114.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +13,13,1609402427.3,121.5,15.5,116.0,165.606435,0.0,0.0,0.0,0.0,0.0,0.0,437.419355,50.582031,104.086578,3.019206,0.0,46.299999952316284,1.0,0.0,52.222727,6.855878999999999,312.700963,142.807381,0.0,159.29294299999995,85.67747,0.0,0.0,0.0,0.0,0.0,3.0192063490769545,225.00000193482003,462.99999799116,16,0.0,121.5,116.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +14,14,1609402430.9,132.5,16.5,117.0,164.29353799999996,0.0,0.0,0.0,0.0,0.0,0.0,476.363636,54.628593,109.93161299999998,3.043333,0.0,49.90000009536743,1.0,0.0,52.222803000000006,6.855774,313.229946,128.06623100000002,0.0,268.92116,75.743863,0.0,0.0,0.0,0.0,0.0,3.0433333293972886,242.99999995445998,488.99999957886,17,0.0,132.5,117.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +15,15,1609402435.0,144.1,15.5,117.0,163.90274399999996,0.0,0.0,0.0,0.0,0.0,0.0,460.645161,52.830121,108.582759,3.05059,0.0,54.0,1.0,0.0,52.222883,6.855664999999999,313.56797,117.650373,0.0,286.6892410000001,82.083434,0.0,0.0,0.0,0.0,0.0,3.0505895618196615,235.00000083462,483.0000002389801,18,0.0,144.1,117.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +16,16,1609402438.7,156.3,15.5,117.0,164.24703300000004,0.0,0.0,0.0,0.0,0.0,0.0,460.645161,57.775919,104.536197,3.044195,0.0,57.700000047683716,1.0,0.0,52.222965,6.855546,313.843592,114.39678700000002,0.0,267.715211,78.689482,0.0,0.0,0.0,0.0,0.0,3.0441950205578445,256.99999841417997,465.00000221934005,19,0.0,156.3,117.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +17,17,1609402442.3,167.2,16.0,118.0,165.194525,0.0,0.0,0.0,0.0,0.0,0.0,457.5,58.675155,110.830849,3.026735,0.0,61.299999952316284,1.0,0.0,52.223038,6.85544,314.059028,127.995815,0.0,291.663281,82.722297,0.0,0.0,0.0,0.0,0.0,3.0267346935378154,260.99999797410004,492.99999913877997,20,0.0,167.2,118.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +18,18,1609402446.3,179.3,15.0,117.0,166.35734,0.0,0.0,0.0,0.0,0.0,0.0,472.0,54.403784,115.32703,3.005578,0.0,65.29999995231628,1.0,0.0,52.223119,6.85532,314.238065,143.133496,0.0,166.494798,40.905667,0.0,0.0,0.0,0.0,0.0,3.0055782329772764,242.00000006448,513.0000013866,21,0.0,179.3,117.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +19,19,1609402450.3,191.1,15.5,119.0,167.329407,0.0,0.0,0.0,0.0,0.0,0.0,487.741935,55.977447,116.001457,2.988118,0.0,69.29999995231628,1.0,0.0,52.223197,6.855203,314.358965,149.348207,0.0,276.50484,72.88341199999998,0.0,0.0,0.0,0.0,0.0,2.9881179223924463,248.99999929433997,516.0000010565401,22,0.0,191.1,119.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +20,20,1609402454.5,203.6,14.0,121.0,167.734181,0.0,0.0,0.0,0.0,0.0,0.0,484.285714,55.977447,114.427794,2.980907,0.0,73.5,1.0,0.0,52.223279,6.855078,314.489915,156.852307,0.0,196.108392,53.291932,0.0,0.0,0.0,0.0,0.0,2.980907034088657,248.99999929433997,509.00000182668,23,0.0,203.6,121.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +21,21,1609402458.6,215.8,15.0,123.0,167.029005,0.0,0.0,0.0,0.0,0.0,0.0,504.0,60.698437,109.706804,2.993492,0.0,77.59999990463257,1.0,0.0,52.22336,6.854958,316.638603,164.415555,0.0,154.351703,83.168943,0.0,0.0,0.0,0.0,0.0,2.9934920584601463,270.00000143214,487.9999996888801,24,0.0,215.8,123.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +22,22,1609402462.3,227.5,15.5,123.0,165.20937800000004,0.0,0.0,0.0,0.0,0.0,0.0,503.225806,62.946527,118.024738,3.026463,0.0,81.29999995231628,1.0,0.0,52.223437,6.854842,316.407851,159.105942,0.0,254.704232,78.346645,0.0,0.0,0.0,0.0,0.0,3.026462577687327,280.00000033194004,525.0000000663599,25,0.0,227.5,123.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +23,23,1609402466.1,239.2,16.5,123.0,162.81233400000005,0.0,0.0,0.0,0.0,0.0,0.0,520.0,64.969808,120.947255,3.07102,0.0,85.09999990463257,1.0,0.0,52.223513,6.854724000000001,316.195489,152.89193500000005,0.0,240.612995,70.522913,0.0,0.0,0.0,0.0,0.0,3.0710204056161983,288.9999993417601,537.9999986361,26,0.0,239.2,123.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +24,24,1609402469.9,251.0,16.0,123.0,160.513059,0.0,0.0,0.0,0.0,0.0,0.0,487.5,55.752638,112.629321,3.115011,0.0,88.90000009536743,1.0,0.0,52.223589,6.854601,316.002857,160.517765,0.0,189.689867,53.69290600000001,0.0,0.0,0.0,0.0,0.0,3.1150113462107782,247.99999940436,500.99999825862,27,0.0,251.0,123.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +25,25,1609402473.5,262.5,16.5,124.0,159.33923,0.0,0.0,0.0,0.0,0.0,0.0,425.454545,53.05493000000001,93.745363,3.137959,0.0,92.5,1.0,0.0,52.223661,6.854482000000001,315.807942,149.228915,0.0,322.207577,100.538313,0.0,0.0,0.0,0.0,0.0,3.137959183058685,236.00000072460003,416.99999860386004,28,0.0,262.5,124.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +26,26,1609402477.1,273.2,16.5,122.0,159.664596,0.0,0.0,0.0,0.0,0.0,0.0,472.727273,59.799201,109.032377,3.131565,0.0,96.09999990463257,1.0,0.0,52.223728,6.854369,315.645712,137.387384,0.0,230.13982,64.000051,0.0,0.0,0.0,0.0,0.0,3.1315646206251015,266.00000187222,485.00000001894006,29,0.0,273.2,122.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +27,27,1609402480.9,285.3,16.0,119.0,160.972405,0.0,0.0,0.0,0.0,0.0,0.0,412.5,52.155694,98.466353,3.106122,0.0,99.90000009536743,1.0,0.0,52.223804,6.854242,315.501805,146.5987,0.0,118.161123,59.120445,0.0,0.0,0.0,0.0,0.0,3.10612244378159,232.00000116468,438.00000074166,30,0.0,285.3,119.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +28,28,1609402484.7,296.7,15.5,116.0,162.50036799999995,0.0,0.0,0.0,0.0,0.0,0.0,483.870968,59.574392,115.551839,3.076916,0.0,103.70000004768372,1.0,0.0,52.223876,6.854122,315.357677,150.209584,0.0,173.544142,92.742455,0.0,0.0,0.0,0.0,0.0,3.07691610889152,265.00000198224,514.00000127658,31,0.0,296.7,116.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +29,29,1609402488.9,308.9,15.0,113.0,163.329704,0.0,0.0,0.0,0.0,0.0,0.0,500.0,59.349583,115.102221,3.061293,0.0,107.90000009536743,1.0,0.0,52.223952,6.853994,315.216732,160.25663400000005,0.0,166.074247,89.783136,0.0,0.0,0.0,0.0,0.0,3.061292512965064,264.00000209226,512.00000149662,32,0.0,308.9,113.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +30,30,1609402492.5,320.8,15.5,115.0,163.187069,0.0,0.0,0.0,0.0,0.0,0.0,464.516129,55.30302,108.133141,3.063968,0.0,111.5,1.0,0.0,52.224026,6.8538679999999985,315.143195,177.992089,0.0,86.884831,44.882642,0.0,0.0,0.0,0.0,0.0,3.063968260867532,245.99999962439998,481.00000045902,33,0.0,320.8,115.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +31,31,1609402496.3,332.9,16.0,117.0,162.747443,0.0,0.0,0.0,0.0,0.0,0.0,480.0,57.55111,115.776648,3.072245,0.0,115.29999995231628,1.0,0.0,52.224103,6.853742,314.9688720000001,181.362491,0.0,164.602117,89.930619,0.0,0.0,0.0,0.0,0.0,3.0722448892791516,255.99999852419998,515.00000116656,34,0.0,332.9,117.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +32,32,1609402500.1,344.6,15.5,118.0,162.649003,0.0,0.0,0.0,0.0,0.0,0.0,483.870968,58.675155,113.078939,3.074104,0.0,119.09999990463257,1.0,0.0,52.224174,6.853617999999999,314.893729,182.511138,0.0,162.800365,91.498537,0.0,0.0,0.0,0.0,0.0,3.0741043029940984,260.99999797410004,502.99999803858003,35,0.0,344.6,118.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +33,33,1609402504.0,355.9,15.5,120.0,163.356324,0.0,0.0,0.0,0.0,0.0,0.0,468.387097,60.47362800000001,112.85413,3.060794,0.0,123.0,1.0,0.0,52.224244,6.853496000000002,314.865453,177.167108,0.0,167.35423899999995,93.523277,0.0,0.0,0.0,0.0,0.0,3.0607936549796504,269.00000154216,501.9999981486,36,0.0,355.9,120.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +34,34,1609402507.9,368.4,15.5,126.0,164.468777,0.0,0.0,0.0,0.0,0.0,0.0,495.483871,62.946527,116.900693,3.040091,0.0,126.90000009536743,1.0,0.0,52.224321,6.853363000000001,314.841388,171.600518,0.0,162.396609,104.739135,0.0,0.0,0.0,0.0,0.0,3.04009070365982,280.00000033194004,520.0000006164598,37,0.0,368.4,126.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +35,35,1609402511.7,380.0,16.0,129.0,165.35681100000005,0.0,0.0,0.0,0.0,0.0,0.0,397.5,47.434704,96.443072,3.023764,0.0,130.70000004768372,1.0,0.0,52.224392,6.853238,314.928961,163.001642,0.0,160.25522,102.763853,0.0,0.0,0.0,0.0,0.0,3.023764167778973,210.99999902688,429.00000173184,38,0.0,380.0,129.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +36,36,1609402516.0,392.3,14.0,128.0,166.01790400000004,0.0,0.0,0.0,0.0,0.0,0.0,424.285714,50.582031,101.38887,3.011723,0.0,135.0,1.0,0.0,52.22447,6.853110000000001,314.926159,159.329245,0.0,159.67123600000005,102.414673,0.0,0.0,0.0,0.0,0.0,3.011723362077863,225.00000193482003,450.9999993114,39,0.0,392.3,128.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +37,37,1609402519.7,403.9,16.5,127.0,166.170541,0.0,0.0,0.0,0.0,0.0,0.0,429.090909,50.80684,103.63696,3.008957,0.0,138.70000004768372,1.0,0.0,52.224542,6.852989,314.99414,157.613805,0.0,155.498906,91.345078,0.0,0.0,0.0,0.0,0.0,3.0089569245610153,226.0000018248,460.9999982112,40,0.0,403.9,127.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +38,38,1609402523.7,416.0,15.0,127.0,165.59524199999996,0.0,0.0,0.0,0.0,0.0,0.0,472.0,52.830121,107.458714,3.01941,0.0,142.70000004768372,1.0,0.0,52.224619,6.852863,315.069805,157.881072,0.0,161.257528,93.518704,0.0,0.0,0.0,0.0,0.0,3.019410424847835,235.00000083462,478.00000078908,41,0.0,416.0,127.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +39,39,1609402528.0,428.1,15.0,128.0,164.9264,0.0,0.0,0.0,0.0,0.0,0.0,484.0,59.124774,109.93161299999998,3.031655,0.0,147.0,1.0,0.0,52.224697,6.852738,315.114228,158.14201699999995,0.0,163.11060700000004,94.732009,0.0,0.0,0.0,0.0,0.0,3.0316553323179307,263.00000220228003,488.99999957886,42,0.0,428.1,128.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +40,40,1609402531.7,440.3,15.0,129.0,164.34864299999995,0.0,0.0,0.0,0.0,0.0,0.0,484.0,61.14805500000001,109.257186,3.042313,0.0,150.70000004768372,1.0,0.0,52.224776,6.852613000000002,315.150184,157.913551,0.0,182.147956,81.934201,0.0,0.0,0.0,0.0,0.0,3.0423129201012027,272.0000012121,485.99999990891996,43,0.0,440.3,129.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +41,41,1609402535.7,452.6,15.0,130.0,164.013686,0.0,0.0,0.0,0.0,0.0,0.0,440.0,53.954166,112.179703,3.048526,0.0,154.70000004768372,1.0,0.0,52.224854,6.852486999999999,315.23321,163.010387,0.0,157.570217,69.824435,0.0,0.0,0.0,0.0,0.0,3.0485260845854047,240.00000028452004,498.99999847865996,44,0.0,452.6,130.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +42,42,1609402540.0,464.7,15.0,131.0,164.381723,0.0,0.0,0.0,0.0,0.0,0.0,456.0,53.504548,113.978176,3.041701,0.0,159.0,1.0,0.0,52.224933,6.852365,315.251415,154.14009,0.0,164.069922,95.727368,0.0,0.0,0.0,0.0,0.0,3.041700688342341,238.00000050456,507.00000204672006,45,0.0,464.7,131.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +43,43,1609402543.9,477.6,14.5,130.0,165.068385,0.0,0.0,0.0,0.0,0.0,0.0,467.586207,53.279739,110.60604,3.029048,0.0,162.90000009536743,1.0,0.0,52.225017,6.852235,315.2734470000001,138.694376,0.0,280.814079,80.066223,0.0,0.0,0.0,0.0,0.0,3.029047627745313,237.00000061457996,491.99999924879995,46,0.0,477.6,130.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +44,44,1609402547.9,490.0,14.5,129.0,165.369212,0.0,0.0,0.0,0.0,0.0,0.0,459.310345,54.853402,107.458714,3.023537,0.0,166.90000009536743,1.0,0.0,52.225098,6.8521100000000015,315.221239,134.477408,0.0,198.357478,51.627865,0.0,0.0,0.0,0.0,0.0,3.023537416384375,243.99999984444005,478.00000078908,47,0.0,490.0,129.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +45,45,1609402552.0,501.8,15.0,129.0,165.00909199999995,0.0,0.0,0.0,0.0,0.0,0.0,428.0,53.05493000000001,90.822846,3.030136,0.0,171.0,1.0,0.0,52.225174,6.85199,315.20416,169.062503,0.0,115.207122,41.328826,0.0,0.0,0.0,0.0,0.0,3.03013606062386,236.00000072460003,404.00000003412003,48,0.0,501.8,129.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +46,46,1609402555.7,513.7,16.0,129.0,163.999048,0.0,0.0,0.0,0.0,0.0,0.0,450.0,55.078211,106.784287,3.048798,0.0,174.70000004768372,1.0,0.0,52.22525,6.851867,315.226265,171.944547,0.0,104.518698,44.408776,0.0,0.0,0.0,0.0,0.0,3.0487981857065423,244.99999973442002,475.0000011191401,49,0.0,513.7,129.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +47,47,1609402559.5,525.5,15.0,129.0,162.88208999999995,0.0,0.0,0.0,0.0,0.0,0.0,488.0,57.55111,112.629321,3.069705,0.0,178.5,1.0,0.0,52.225326,6.851746,315.246848,164.296266,0.0,79.446713,42.400767,0.0,0.0,0.0,0.0,0.0,3.0697052082276213,255.99999852419998,500.99999825862,50,0.0,525.5,129.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +48,48,1609402563.5,538.3,15.5,130.0,162.42017099999995,0.0,0.0,0.0,0.0,0.0,0.0,460.645161,53.72935699999999,110.830849,3.078435,0.0,182.5,1.0,0.0,52.225408,6.851615,315.176548,158.148378,0.0,188.262071,50.2698,0.0,0.0,0.0,0.0,0.0,3.078435374877176,239.00000039454,492.99999913877997,51,0.0,538.3,130.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +49,49,1609402567.5,550.7,15.0,131.0,162.727024,0.0,0.0,0.0,0.0,0.0,0.0,400.0,49.682794,91.497273,3.07263,0.0,186.5,1.0,0.0,52.225486,6.851486,315.163522,153.52786799999996,0.0,133.660802,81.074202,0.0,0.0,0.0,0.0,0.0,3.0726303948138325,220.99999792667998,406.99999970406,52,0.0,550.7,131.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +50,50,1609402571.1,561.8,16.0,132.0,163.164126,0.0,0.0,0.0,0.0,0.0,0.0,453.75,56.427065,106.10986,3.0643990000000003,0.0,190.09999990463257,1.0,0.0,52.225556,6.851369999999998,315.147726,152.713993,0.0,166.226322,92.715111,0.0,0.0,0.0,0.0,0.0,3.0643990946882527,250.9999990743,472.00000144920006,53,0.0,561.8,132.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +51,51,1609402575.2,573.9,15.5,132.0,162.711414,0.0,0.0,0.0,0.0,0.0,0.0,472.258065,54.853402,116.001457,3.072925,0.0,194.20000004768372,1.0,0.0,52.225632,6.851242,315.1752850000001,153.305779,0.0,168.910536,94.679325,0.0,0.0,0.0,0.0,0.0,3.072925172907661,243.99999984444005,516.0000010565401,54,0.0,573.9,132.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +52,52,1609402579.0,585.7,16.0,131.0,161.252578,0.0,0.0,0.0,0.0,0.0,0.0,480.0,55.527829,115.551839,3.100726,0.0,198.0,1.0,0.0,52.225706,6.851118,315.257824,154.63025,0.0,173.449053,92.676287,0.0,0.0,0.0,0.0,0.0,3.100725620647132,246.99999951438,514.00000127658,55,0.0,585.7,131.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +53,53,1609402582.7,598.3,16.0,130.0,159.736308,0.0,0.0,0.0,0.0,0.0,0.0,491.25,57.326301,117.125502,3.130159,0.0,201.70000004768372,1.0,0.0,52.225786,6.850988,315.294957,155.03597,0.0,181.981713,93.952131,0.0,0.0,0.0,0.0,0.0,3.1301587363594248,254.99999863422002,521.0000005064401,56,0.0,598.3,130.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +54,54,1609402586.5,609.9,16.0,130.0,158.89487,0.0,0.0,0.0,0.0,0.0,0.0,588.75,60.248819,110.830849,3.146735,0.0,205.5,1.0,0.0,52.22586,6.850867999999998,315.326594,156.570411,0.0,178.154157,101.547055,0.0,0.0,0.0,0.0,0.0,3.1467346931968287,268.00000165218,492.99999913877997,57,0.0,609.9,130.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +55,55,1609402590.1,620.8,16.0,130.0,158.858238,0.0,0.0,0.0,0.0,0.0,0.0,487.5,58.675155,115.551839,3.14746,0.0,209.09999990463257,1.0,0.0,52.225929,6.850756,315.390897,147.799207,0.0,310.288696,86.227956,0.0,0.0,0.0,0.0,0.0,3.1474603161593677,260.99999797410004,514.00000127658,58,0.0,620.8,130.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +56,56,1609402594.0,632.3,16.0,130.0,159.059923,0.0,0.0,0.0,0.0,0.0,0.0,468.75,57.10149200000001,100.264825,3.143469,0.0,213.0,1.0,0.0,52.22600300000001,6.850638000000001,315.39517,150.480941,0.0,178.935892,96.796974,0.0,0.0,0.0,0.0,0.0,3.143469395493169,253.99999874424003,445.99999986150004,59,0.0,632.3,130.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +57,57,1609402597.3,643.4,17.0,129.0,159.009454,0.0,0.0,0.0,0.0,0.0,0.0,458.823529,58.450346,111.730085,3.144467,0.0,216.29999995231628,1.0,0.0,52.226075,6.850523,315.416681,151.301301,0.0,178.042105,99.850764,0.0,0.0,0.0,0.0,0.0,3.1444671208040247,259.99999808411997,496.99999869870004,60,0.0,643.4,129.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +58,58,1609402601.0,655.2,17.0,128.0,158.855949,0.0,0.0,0.0,0.0,0.0,0.0,455.294118,58.450346,107.908332,3.147506,0.0,220.0,1.0,0.0,52.22615,6.850402000000001,315.413095,154.56138700000002,0.0,177.405898,100.997344,0.0,0.0,0.0,0.0,0.0,3.1475056687993472,259.99999808411997,480.0000005690401,61,0.0,655.2,128.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +59,59,1609402604.7,666.7,16.0,128.0,158.960163,0.0,0.0,0.0,0.0,0.0,0.0,465.0,56.651874,116.001457,3.145442,0.0,223.70000004768372,1.0,0.0,52.226223,6.850283,315.512603,154.117385,0.0,183.768176,119.548484,0.0,0.0,0.0,0.0,0.0,3.1454421696837342,251.99999896427997,516.0000010565401,62,0.0,666.7,128.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +60,60,1609402608.3,678.3,16.0,129.0,158.633094,0.0,0.0,0.0,0.0,0.0,0.0,502.5,60.923246,111.505276,3.151927,0.0,227.29999995231628,1.0,0.0,52.226298,6.850165,315.488408,156.594503,0.0,180.438905,107.396928,0.0,0.0,0.0,0.0,0.0,3.1519274282073826,271.00000132212,495.99999880872,63,0.0,678.3,129.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +61,61,1609402612.0,689.5,17.0,129.0,156.831227,0.0,0.0,0.0,0.0,0.0,0.0,585.8823530000002,70.365225,128.590762,3.188141,0.0,231.0,1.0,0.0,52.22637,6.850051,315.50482,159.552928,0.0,177.154661,79.517015,0.0,0.0,0.0,0.0,0.0,3.188140586313209,313.0000011495,571.9999993436402,64,0.0,689.5,129.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +62,62,1609402615.1,700.7,19.0,129.0,152.28636699999996,0.0,0.0,0.0,0.0,0.0,0.0,483.157895,58.675155,108.807568,3.283288,0.0,234.09999990463257,1.0,0.0,52.226443,6.8499360000000005,315.497335,159.254234,0.0,198.829374,86.673801,0.0,0.0,0.0,0.0,0.0,3.2832879912356177,260.99999797410004,484.00000012896,65,0.0,700.7,129.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +63,63,1609402618.0,9.9,20.0,129.0,144.785743,0.0,0.0,0.0,0.0,0.0,0.0,684.0,80.032013,143.203349,3.453379,0.0,237.0,1.0,0.0,52.226506,6.849834,315.439128,154.042885,0.0,310.773128,97.416313,0.0,0.0,0.0,0.0,0.0,3.4533786935085176,356.00000086686003,637.00000108878,66,0.0,710.6,129.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +64,64,1609402620.1,18.8,27.0,129.0,136.019592,0.0,0.0,0.0,0.0,0.0,0.0,673.333333,81.156058,150.172429,3.675941,0.0,239.09999990463257,1.0,0.0,52.226562,6.849742,315.446634,148.849902,0.0,268.865032,82.667807,0.0,0.0,0.0,0.0,0.0,3.6759410364942138,361.00000031676,668.00000212638,67,0.0,719.5,129.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +65,65,1609402622.3,28.0,29.5,129.0,128.174573,0.0,0.0,0.0,0.0,0.0,0.0,597.966102,77.783923,142.528922,3.90093,0.0,241.29999995231628,1.0,0.0,52.226621,6.849647,315.482136,132.941742,0.0,311.87915,92.581759,0.0,0.0,0.0,0.0,0.0,3.900929710918561,346.0000019670601,634.0000014188399,68,0.0,728.7,129.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +66,66,1609402624.3,36.1,28.5,131.0,122.508848,0.0,0.0,0.0,0.0,0.0,0.0,606.315789,74.636596,138.707168,4.081338,0.0,243.29999995231628,1.0,0.0,52.226673,6.849563000000002,315.496483,128.57908999999998,0.0,356.6221220000001,103.501335,0.0,0.0,0.0,0.0,0.0,4.081337863857802,331.99999905912,616.99999884096,69,0.0,736.8000000000002,131.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +67,67,1609402626.3,44.6,29.5,132.0,119.793336,0.0,0.0,0.0,0.0,0.0,0.0,604.0677969999998,78.008732,141.404877,4.1738550000000005,0.0,245.29999995231628,1.0,0.0,52.226728,6.849477,315.496591,128.554588,0.0,435.677881,125.422497,0.0,0.0,0.0,0.0,0.0,4.173854879540212,347.00000185704005,629.0000019689401,70,0.0,745.3000000000002,132.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +68,68,1609402628.3,52.9,29.5,133.0,119.602951,0.0,0.0,0.0,0.0,0.0,0.0,600.0,75.535832,136.00946000000002,4.180499,0.0,247.29999995231628,1.0,0.0,52.226782,6.849392999999999,315.428952,134.325503,0.0,219.57761,134.885415,0.0,0.0,0.0,0.0,0.0,4.180498857423677,335.99999861904,605.0000001612001,71,0.0,753.6,133.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +69,69,1609402630.5,62.0,28.5,135.0,120.100002,0.0,0.0,0.0,0.0,0.0,0.0,614.736842,75.760641,140.05602199999998,4.163197,0.0,249.5,1.0,0.0,52.22684,6.849299,315.357753,141.486905,0.0,459.995959,134.885415,0.0,0.0,0.0,0.0,0.0,4.163197266224858,336.9999985090201,622.9999981808401,72,0.0,762.7,135.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +70,70,1609402632.5,70.3,29.5,136.0,120.066649,0.0,0.0,0.0,0.0,0.0,0.0,650.847458,82.280103,146.125866,4.164354,0.0,251.5,1.0,0.0,52.226893,6.849212,315.430127,142.873099,0.0,278.456511,110.633346,0.0,0.0,0.0,0.0,0.0,4.1643537498910295,365.99999976666,649.9999996585201,73,0.0,771.0,136.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +71,71,1609402634.3,78.2,32.0,137.0,119.166,0.0,0.0,0.0,0.0,0.0,0.0,626.25,83.628957,143.877776,4.195828,0.0,253.29999995231628,1.0,0.0,52.226944,6.849132000000001,315.407261,142.117604,0.0,391.873507,105.86926499999998,0.0,0.0,0.0,0.0,0.0,4.19582766896598,371.99999910654,640.00000075872,73,0.0,778.9,137.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +72,72,1609402636.2,86.2,31.0,138.0,117.462178,0.0,0.0,0.0,0.0,0.0,0.0,636.7741940000002,82.05529399999998,140.955259,4.256689,0.0,255.20000004768372,1.0,0.0,52.226996,6.8490509999999984,315.314114,134.186649,0.0,405.338595,112.46988799999998,0.0,0.0,0.0,0.0,0.0,4.256689331948195,364.99999987667996,627.0000021889799,74,0.0,786.9,138.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +73,73,1609402638.1,94.7,31.0,139.0,115.956815,0.0,0.0,0.0,0.0,0.0,0.0,615.483871,81.156058,142.75373100000004,4.31195,0.0,257.09999990463257,1.0,0.0,52.22705,6.848963,315.24305,139.560564,0.0,335.2273600000001,117.109296,0.0,0.0,0.0,0.0,0.0,4.3119500996987545,361.00000031676,635.0000013088201,75,0.0,795.4,139.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +74,74,1609402640.2,103.3,31.0,139.0,115.442004,0.0,0.0,0.0,0.0,0.0,0.0,582.580645,76.210259,141.180068,4.331179,0.0,259.2000000476837,1.0,0.0,52.227104,6.848874,315.244993,133.504052,0.0,346.748061,118.723666,0.0,0.0,0.0,0.0,0.0,4.331179143425127,338.99999828897995,628.0000020789599,77,0.0,804.0,139.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +75,75,1609402642.1,111.1,30.0,139.0,115.25976599999998,0.0,0.0,0.0,0.0,0.0,0.0,624.0,80.032013,140.05602199999998,4.3380269999999985,0.0,261.09999990463257,1.0,0.0,52.227154,6.848793,315.200069,128.042017,0.0,409.854472,122.791173,0.0,0.0,0.0,0.0,0.0,4.338027200228743,356.00000086686003,622.9999981808401,77,0.0,811.8,139.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +76,76,1609402644.1,120.4,31.0,139.0,115.251934,0.0,0.0,0.0,0.0,0.0,0.0,578.7096769999998,77.334305,137.35831399999998,4.338322,0.0,263.09999990463257,1.0,0.0,52.227214,6.848698,315.176442,131.283738,0.0,206.732224,119.323343,0.0,0.0,0.0,0.0,0.0,4.338321992930721,344.0000021871,610.99999950108,79,0.0,821.0999999999998,139.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +77,77,1609402646.1,129.1,29.5,138.0,115.644225,0.0,0.0,0.0,0.0,0.0,0.0,600.0,76.210259,135.335033,4.3236050000000015,0.0,265.09999990463257,1.0,0.0,52.227269,6.848609,315.150219,124.765633,0.0,432.95204,125.97078700000002,0.0,0.0,0.0,0.0,0.0,4.323605437279726,338.99999828897995,602.00000049126,80,0.0,829.8,138.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +78,78,1609402648.1,137.1,30.0,138.0,116.012333,0.0,0.0,0.0,0.0,0.0,0.0,586.0,75.535832,134.660606,4.309887000000002,0.0,267.09999990463257,1.0,0.0,52.227322,6.848528,315.023123,119.441055,0.0,432.615512,124.574734,0.0,0.0,0.0,0.0,0.0,4.309886604900877,335.99999861904,599.00000082132,81,0.0,837.8,138.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +79,79,1609402650.1,146.1,30.0,139.0,116.351471,0.0,0.0,0.0,0.0,0.0,0.0,618.0,79.357586,136.908696,4.297324,0.0,269.09999990463257,1.0,0.0,52.227379,6.848435,314.975749,124.793727,0.0,239.944056,134.885415,0.0,0.0,0.0,0.0,0.0,4.297324268465847,353.00000119692004,608.9999997211198,82,0.0,846.8,139.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +80,80,1609402652.1,154.7,30.5,140.0,116.8794,0.0,0.0,0.0,0.0,0.0,0.0,617.704918,80.032013,138.25755,4.277914,0.0,271.09999990463257,1.0,0.0,52.227435,6.848348,314.825737,121.396453,0.0,415.648209,116.233623,0.0,0.0,0.0,0.0,0.0,4.277913815437109,356.00000086686003,614.999999061,83,0.0,855.4,140.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +81,81,1609402654.1,162.7,31.0,141.0,117.073637,0.0,0.0,0.0,0.0,0.0,0.0,584.516129,76.435068,142.97853999999995,4.270816,0.0,273.09999990463257,1.0,0.0,52.227486,6.8482660000000015,314.69351,119.881309,0.0,415.641581,116.03215,0.0,0.0,0.0,0.0,0.0,4.27081632391757,339.99999817896,636.0000011988,84,0.0,863.4,141.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +82,82,1609402655.9,171.2,29.5,141.0,116.943247,0.0,0.0,0.0,0.0,0.0,0.0,616.2711860000002,73.73736,144.102585,4.275578,0.0,274.90000009536743,1.0,0.0,52.227541,6.848178999999999,314.59852,126.274568,0.0,431.614929,119.22121,0.0,0.0,0.0,0.0,0.0,4.2755782212888285,327.9999994992,641.0000006487,84,0.0,871.9,141.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +83,83,1609402657.9,180.0,31.0,142.0,116.90108700000002,0.0,0.0,0.0,0.0,0.0,0.0,584.516129,75.98545,144.777012,4.27712,0.0,276.90000009536743,1.0,0.0,52.227598,6.848089,314.384364,133.796054,0.0,239.68421,134.885415,0.0,0.0,0.0,0.0,0.0,4.277120194784843,337.999998399,644.0000003186401,85,0.0,880.7,142.0,142.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +84,84,1609402660.0,187.7,29.5,143.0,116.850908,0.0,0.0,0.0,0.0,0.0,0.0,620.338983,80.70644,138.931977,4.278957,0.0,279.0,1.0,0.0,52.227647,6.8480089999999985,314.18193,141.79245600000004,0.0,239.725046,134.885415,0.0,0.0,0.0,0.0,0.0,4.278956908062709,359.0000005368001,617.99999873094,87,0.0,888.4000000000002,0.0,143.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +85,85,1609402662.1,197.7,29.5,144.0,116.993506,0.0,0.0,0.0,0.0,0.0,0.0,593.8983049999998,75.535832,138.707168,4.273741,0.0,281.09999990463257,1.0,0.0,52.22771,6.847904,314.042418,138.93977900000002,0.0,258.66536,134.885415,0.0,0.0,0.0,0.0,0.0,4.273741484420511,335.99999861904,616.99999884096,88,0.0,898.4000000000002,0.0,144.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +86,86,1609402664.1,206.2,28.5,144.0,117.622584,0.0,0.0,0.0,0.0,0.0,0.0,604.210526,75.31102299999998,135.559842,4.250883999999999,0.0,283.09999990463257,1.0,0.0,52.227763,6.847816000000001,313.8339410000001,133.14631,0.0,408.267182,119.999834,0.0,0.0,0.0,0.0,0.0,4.250884336973926,334.99999872905994,603.00000038124,88,0.0,906.9,0.0,144.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +87,87,1609402666.1,214.1,29.5,146.0,118.282569,0.0,0.0,0.0,0.0,0.0,0.0,541.0169490000002,72.388506,130.38923400000002,4.227166,0.0,285.09999990463257,1.0,0.0,52.227812,6.847733,313.5302910000001,132.518714,0.0,258.66536,134.885415,0.0,0.0,0.0,0.0,0.0,4.227165542878933,322.00000015932005,579.9999984634801,89,0.0,914.8,0.0,146.0,146.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +88,88,1609402668.1,223.1,29.5,147.0,118.421689,0.0,0.0,0.0,0.0,0.0,0.0,581.694915,75.31102299999998,137.35831399999998,4.2222,0.0,287.09999990463257,1.0,0.0,52.227866,6.847633,313.433076,126.094104,0.0,258.66536,134.885415,0.0,0.0,0.0,0.0,0.0,4.222199533060199,334.99999872905994,610.99999950108,90,0.0,923.8,0.0,0.0,147.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +89,89,1609402670.1,231.6,29.5,149.0,117.952284,0.0,0.0,0.0,0.0,0.0,0.0,557.288136,72.163697,125.218627,4.239001999999998,0.0,289.09999990463257,1.0,0.0,52.227917,6.84754,313.367217,119.978059,0.0,417.602065,117.822703,0.0,0.0,0.0,0.0,0.0,4.2390022731564905,321.00000026934,557.00000099394,91,0.0,932.3,0.0,0.0,149.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +90,90,1609402672.2,240.2,30.0,149.0,116.78345,0.0,0.0,0.0,0.0,0.0,0.0,590.0,74.636596,139.381595,4.281429,0.0,291.2000000476837,1.0,0.0,52.227969,6.847448,313.27182,113.959243,0.0,424.187387,121.871544,0.0,0.0,0.0,0.0,0.0,4.28142857571,331.99999905912,619.9999985109,92,0.0,940.9,0.0,0.0,149.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +91,91,1609402674.1,248.9,29.5,149.0,115.636947,0.0,0.0,0.0,0.0,0.0,0.0,577.627119,71.264461,134.210988,4.323878,0.0,293.09999990463257,1.0,0.0,52.228022,6.847353999999998,313.15024,117.452873,0.0,433.034208,125.996994,0.0,0.0,0.0,0.0,0.0,4.323877557922729,317.00000070942,597.00000104136,93,0.0,949.6,0.0,0.0,149.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +92,92,1609402676.3,257.8,29.5,149.0,116.19145,0.0,0.0,0.0,0.0,0.0,0.0,528.8135589999998,67.892325,128.141144,4.303243,0.0,295.2999999523163,1.0,0.0,52.228076,6.847257000000001,313.105794,121.929595,0.0,435.948003,124.009656,0.0,0.0,0.0,0.0,0.0,4.303242622413267,301.99999791150003,569.9999995636799,95,0.0,958.5,0.0,0.0,149.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +93,93,1609402678.2,7.7,29.5,149.0,119.663964,0.0,0.0,0.0,0.0,0.0,0.0,488.135593,63.171336,116.001457,4.178367,0.0,297.2000000476837,1.0,0.0,52.228123,6.847175,313.053312,127.427094,0.0,310.396846,134.885415,0.0,0.0,0.0,0.0,0.0,4.178367348753381,281.00000022192,516.0000010565401,95,0.0,966.2000000000003,0.0,0.0,149.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +94,94,1609402681.9,21.7,20.5,149.0,126.944467,0.0,0.0,0.0,0.0,0.0,0.0,149.268293,18.883958,39.341579,3.938730000000001,0.0,300.90000009536743,1.0,0.0,52.22821,6.847025,312.982175,130.36818799999998,0.0,310.403626,134.885415,0.0,0.0,0.0,0.0,0.0,3.938730153556043,83.99999965476,174.99999853938,97,0.0,980.2000000000003,0.0,0.0,149.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +95,95,1609402684.5,29.7,18.0,149.0,138.833796,0.0,0.0,0.0,0.0,0.0,0.0,313.333333,42.713715,76.435068,3.601429,0.0,303.5,1.0,0.0,52.228259,6.846939999999999,312.933631,130.984839,0.0,329.740804,91.998397,0.0,0.0,0.0,0.0,0.0,3.6014285743508734,190.0000013373,339.99999817896,97,0.0,988.2000000000003,0.0,0.0,149.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +96,96,1609402687.9,40.0,17.5,149.0,153.776414,0.0,0.0,0.0,0.0,0.0,0.0,329.142857,40.24081500000001,80.032013,3.251474,0.0,306.90000009536743,1.0,0.0,52.228323,6.846831,312.85321,134.775965,0.0,192.000406,52.998596,0.0,0.0,0.0,0.0,0.0,3.251473922392286,178.99999809930003,356.00000086686003,98,0.0,998.5,0.0,0.0,149.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +97,97,1609402691.6,50.6,16.5,148.0,167.988481,0.0,0.0,0.0,0.0,0.0,0.0,258.181818,31.698072,63.845763,2.976395,0.0,310.59999990463257,1.0,0.0,52.228389,6.846719,312.6637,136.263115,0.0,263.035092,73.92482,0.0,0.0,0.0,0.0,0.0,2.9763945541004087,140.99999783183995,283.99999989186,99,0.0,1009.1,0.0,0.0,148.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +98,98,1609402695.3,61.1,16.0,149.0,178.382183,0.0,0.0,0.0,0.0,0.0,0.0,326.25,40.016006,73.062933,2.802971,0.0,314.2999999523163,1.0,0.0,52.228452,6.846606,312.555478,163.89684,0.0,134.653249,35.798333,0.0,0.0,0.0,0.0,0.0,2.802970518641988,177.99999820931995,324.99999982926005,100,0.0,1019.6,0.0,0.0,149.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +99,99,1609402699.2,71.6,15.0,154.0,183.156268,0.0,0.0,0.0,0.0,0.0,0.0,360.0,44.512187,86.10185600000001,2.729909,0.0,318.2000000476837,1.0,0.0,52.228515,6.846491,312.439793,195.917828,0.0,124.974439,66.48378000000001,0.0,0.0,0.0,0.0,0.0,2.729909303458837,198.00000045714,382.99999789632005,101,0.0,1030.1,0.0,0.0,154.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +100,100,1609402703.1,82.4,15.5,161.0,183.305484,0.0,0.0,0.0,0.0,0.0,0.0,305.806452,39.566388,73.062933,2.727687,0.0,322.09999990463257,1.0,0.0,52.22857800000001,6.8463699999999985,312.403606,196.79606,0.0,134.324231,35.692792,0.0,0.0,0.0,0.0,0.0,2.727687077818141,175.99999842936,324.99999982926005,102,0.0,1040.9,0.0,0.0,0.0,161.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +101,101,1609402706.7,92.3,16.5,163.0,181.683352,0.0,0.0,0.0,0.0,0.0,0.0,370.909091,44.73699600000001,93.070936,2.752041,0.0,325.7000000476837,1.0,0.0,52.228636,6.846260000000001,312.412586,178.331122,0.0,106.427084,60.139701,0.0,0.0,0.0,0.0,0.0,2.752040814394485,199.00000034712002,413.99999893392,103,0.0,1050.8000000000004,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +102,102,1609402711.0,103.5,15.0,162.0,179.430218,0.0,0.0,0.0,0.0,0.0,0.0,392.0,45.411423,89.698801,2.7865990000000003,0.0,330.0,1.0,0.0,52.228703,6.846135,312.438965,175.72180500000005,0.0,114.62002,36.300471,0.0,0.0,0.0,0.0,0.0,2.786598631898224,202.00000001706002,399.00000058422006,105,0.0,1062.0000000000002,0.0,0.0,0.0,162.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +103,103,1609402714.5,114.3,16.0,161.0,176.780431,0.0,0.0,0.0,0.0,0.0,0.0,416.25,48.558749,96.443072,2.828367,0.0,333.5,1.0,0.0,52.228766,6.8460160000000005,312.438503,153.084815,0.0,255.940673,68.144818,0.0,0.0,0.0,0.0,0.0,2.8283673547554598,215.99999847678,429.00000173184,105,0.0,1072.8000000000004,0.0,0.0,0.0,161.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +104,104,1609402718.4,125.3,15.5,160.0,174.026282,0.0,0.0,0.0,0.0,0.0,0.0,414.193548,47.884322,97.342308,2.873129,0.0,337.40000009536743,1.0,0.0,52.22883,6.845894,312.51862,148.72661100000005,0.0,71.491221,38.205845,0.0,0.0,0.0,0.0,0.0,2.8731292437770977,212.99999880683998,433.00000129176004,106,0.0,1083.8000000000004,0.0,0.0,160.0,160.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +105,105,1609402722.3,136.9,15.5,158.0,171.033648,0.0,0.0,0.0,0.0,0.0,0.0,425.806452,51.706076,98.466353,2.923401,0.0,341.2999999523163,1.0,0.0,52.228898,6.845764999999999,312.622108,133.289468,0.0,294.898091,80.430756,0.0,0.0,0.0,0.0,0.0,2.92340136485892,230.00000138472,438.00000074166,107,0.0,1095.4,0.0,0.0,158.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +106,106,1609402726.0,147.3,17.5,156.0,168.110152,0.0,0.0,0.0,0.0,0.0,0.0,394.285714,48.33394000000001,95.543836,2.97424,0.0,345.0,1.0,0.0,52.228959,6.845649000000001,312.779813,128.064504,0.0,157.859713,39.247127,0.0,0.0,0.0,0.0,0.0,2.9742403659238854,214.9999985868,425.00000217192,109,0.0,1105.8000000000004,0.0,0.0,156.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +107,107,1609402729.2,158.0,17.0,155.0,165.770778,0.0,0.0,0.0,0.0,0.0,0.0,381.176471,45.861041,91.946891,3.016213,0.0,348.2000000476837,1.0,0.0,52.229023,6.845532,312.972123,127.463316,0.0,195.17859,56.85070200000001,0.0,0.0,0.0,0.0,0.0,3.0162131470481484,203.99999979702,408.99999948402007,109,0.0,1116.5000000000002,0.0,0.0,155.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +108,108,1609402732.7,168.9,17.0,153.0,163.592658,0.0,0.0,0.0,0.0,0.0,0.0,427.058824,50.357222,105.660242,3.056372,0.0,351.7000000476837,1.0,0.0,52.229089,6.845414,313.215783,136.471095,0.0,166.372075,82.235681,0.0,0.0,0.0,0.0,0.0,3.056371881921498,224.00000204484002,470.00000166924,110,0.0,1127.4000000000005,0.0,0.0,153.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +109,109,1609402736.1,179.4,18.0,153.0,159.693504,0.0,0.0,0.0,0.0,0.0,0.0,513.333333,59.799201,113.078939,3.130998,0.0,355.09999990463257,1.0,0.0,52.229155,6.845303,313.371172,148.188808,0.0,171.703396,70.509105,0.0,0.0,0.0,0.0,0.0,3.1309977392693447,266.00000187222,502.99999803858003,111,0.0,1137.9000000000005,0.0,0.0,153.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +110,110,1609402739.1,9.9,20.0,153.0,152.419004,0.0,0.0,0.0,0.0,0.0,0.0,663.0,77.783923,147.249911,3.280431,0.0,358.09999990463257,1.0,0.0,52.229217,6.845199000000001,313.490693,149.014629,0.0,195.71284,82.006132,0.0,0.0,0.0,0.0,0.0,3.2804308313154964,346.0000019670601,654.9999991084201,112,0.0,1147.8000000000004,0.0,0.0,153.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +111,111,1609402741.2,17.7,27.5,152.0,142.186513,0.0,0.0,0.0,0.0,0.0,0.0,691.636364,85.427429,145.901057,3.516508,0.0,360.2000000476837,1.0,0.0,52.229266,6.845117,313.597932,160.604314,0.0,230.66487,64.153196,0.0,0.0,0.0,0.0,0.0,3.5165079264585386,379.99999822638,648.9999997685401,113,0.0,1155.6000000000004,0.0,0.0,152.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +112,112,1609402743.3,26.6,29.5,152.0,131.74403999999998,0.0,0.0,0.0,0.0,0.0,0.0,638.644068,77.334305,142.97853999999995,3.795238,0.0,362.2999999523163,1.0,0.0,52.229321,6.8450229999999985,313.743682,152.544973,0.0,282.23376,80.787157,0.0,0.0,0.0,0.0,0.0,3.7952380995755113,344.0000021871,636.0000011988,114,0.0,1164.5000000000005,0.0,0.0,152.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +113,113,1609402745.4,35.0,29.5,152.0,123.909122,0.0,0.0,0.0,0.0,0.0,0.0,579.661017,74.636596,127.916335,4.035215,0.0,364.40000009536743,1.0,0.0,52.229374,6.8449339999999985,313.787853,152.465562,0.0,353.166869,99.336741,0.0,0.0,0.0,0.0,0.0,4.035215421831493,331.99999905912,568.9999996737,116,0.0,1172.9000000000005,0.0,0.0,152.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +114,114,1609402747.4,43.4,29.5,152.0,119.362749,0.0,0.0,0.0,0.0,0.0,0.0,563.389831,70.81484300000002,132.41251599999998,4.188912,0.0,366.40000009536743,1.0,0.0,52.229425,6.844844,313.9665,147.583531,0.0,390.969424,112.998496,0.0,0.0,0.0,0.0,0.0,4.188911567376853,315.00000092946004,589.0000019215198,116,0.0,1181.3000000000004,0.0,0.0,152.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +115,115,1609402749.3,51.9,30.0,151.0,117.341536,0.0,0.0,0.0,0.0,0.0,0.0,580.0,74.636596,129.939616,4.2610660000000005,0.0,368.2999999523163,1.0,0.0,52.229478,6.844753,314.147149,143.683041,0.0,428.306707,119.93731,0.0,0.0,0.0,0.0,0.0,4.26106574913081,331.99999905912,577.9999986835202,117,0.0,1189.8000000000004,0.0,0.0,151.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +116,116,1609402751.4,60.6,29.5,150.0,116.902947,0.0,0.0,0.0,0.0,0.0,0.0,549.152542,70.81484300000002,125.893054,4.2770519999999985,0.0,370.40000009536743,1.0,0.0,52.229532,6.8446630000000015,314.231896,142.453319,0.0,422.942351,121.487266,0.0,0.0,0.0,0.0,0.0,4.27705214309097,315.00000092946004,560.0000006638802,118,0.0,1198.5000000000007,0.0,0.0,150.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +117,117,1609402753.4,69.1,30.0,152.0,116.752532,0.0,0.0,0.0,0.0,0.0,0.0,616.0,80.032013,138.032741,4.282562,0.0,372.40000009536743,1.0,0.0,52.229585,6.844572,314.392921,141.249976,0.0,418.152858,114.46484,0.0,0.0,0.0,0.0,0.0,4.282562368754452,356.00000086686003,613.9999991710199,119,0.0,1207.0000000000007,0.0,0.0,152.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +118,118,1609402755.4,77.7,31.0,153.0,116.205534,0.0,0.0,0.0,0.0,0.0,0.0,576.7741940000002,74.861405,133.76137,4.302721,0.0,374.40000009536743,1.0,0.0,52.229639,6.844482000000001,314.569288,140.103385,0.0,223.165958,125.747043,0.0,0.0,0.0,0.0,0.0,4.3027210735075645,332.9999989491,595.0000012614,121,0.0,1215.6000000000004,0.0,0.0,153.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +119,119,1609402757.4,86.3,31.0,155.0,115.721911,0.0,0.0,0.0,0.0,0.0,0.0,592.258065,77.334305,133.986179,4.320703,0.0,376.40000009536743,1.0,0.0,52.229694,6.844394,314.700999,141.353138,0.0,493.086882,133.164674,0.0,0.0,0.0,0.0,0.0,4.3207029306662585,344.0000021871,596.0000011513798,122,0.0,1224.2000000000005,0.0,0.0,155.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +120,120,1609402759.2,94.2,31.0,155.0,115.323665,0.0,0.0,0.0,0.0,0.0,0.0,580.645161,75.535832,131.063661,4.335624,0.0,378.2000000476837,1.0,0.0,52.229745,6.844312,314.82633,142.544413,0.0,230.034474,134.885415,0.0,0.0,0.0,0.0,0.0,4.335623568675172,335.99999861904,582.99999813342,122,0.0,1232.1000000000004,0.0,0.0,155.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +121,121,1609402761.1,102.8,31.0,155.0,114.940731,0.0,0.0,0.0,0.0,0.0,0.0,563.2258059999998,73.96216899999997,139.156786,4.350068,0.0,380.09999990463257,1.0,0.0,52.2298,6.844225,314.9369660000001,132.640353,0.0,472.120674,126.36354,0.0,0.0,0.0,0.0,0.0,4.350068036369109,328.99999938917995,618.9999986209201,123,0.0,1240.7000000000005,0.0,0.0,155.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +122,122,1609402763.2,111.2,31.0,156.0,114.973095,0.0,0.0,0.0,0.0,0.0,0.0,561.2903230000002,72.613315,132.637325,4.3488440000000015,0.0,382.2000000476837,1.0,0.0,52.229854,6.844139,315.102822,133.513808,0.0,443.886284,120.206677,0.0,0.0,0.0,0.0,0.0,4.3488435272617485,323.0000000493,590.0000018115,125,0.0,1249.1000000000004,0.0,0.0,156.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +123,123,1609402765.1,119.2,31.0,157.0,115.036076,0.0,0.0,0.0,0.0,0.0,0.0,576.7741940000002,74.186978,132.862134,4.346463,0.0,384.09999990463257,1.0,0.0,52.229907,6.844060000000002,315.108111,132.80276899999998,0.0,214.458992,120.006785,0.0,0.0,0.0,0.0,0.0,4.346462582746651,329.99999927916,591.00000170148,126,0.0,1257.1000000000004,0.0,0.0,157.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +124,124,1609402766.9,127.8,29.5,158.0,114.777992,0.0,0.0,0.0,0.0,0.0,0.0,589.830508,74.861405,132.862134,4.356236,0.0,385.90000009536743,1.0,0.0,52.229963,6.843972,315.1243120000001,126.803422,0.0,427.82828,120.676794,0.0,0.0,0.0,0.0,0.0,4.356235819145538,332.9999989491,591.00000170148,126,0.0,1265.7000000000005,0.0,0.0,158.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +125,125,1609402769.1,137.2,30.0,160.0,114.873067,0.0,0.0,0.0,0.0,0.0,0.0,572.0,73.512551,134.210988,4.35263,0.0,388.09999990463257,1.0,0.0,52.230023,6.843876,315.162844,126.318509,0.0,439.877331,121.612457,0.0,0.0,0.0,0.0,0.0,4.352630368961943,326.99999960922,597.00000104136,127,0.0,1275.1000000000004,0.0,0.0,160.0,160.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +126,126,1609402771.0,144.4,30.5,163.0,115.355037,0.0,0.0,0.0,0.0,0.0,0.0,546.885246,70.140416,131.28847,4.334444,0.0,390.0,1.0,0.0,52.230069,6.843802,315.220237,125.225995,0.0,301.507632,134.885415,0.0,0.0,0.0,0.0,0.0,4.334444450830525,312.00000125952005,583.9999980233999,128,0.0,1282.3000000000004,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +127,127,1609402773.0,153.6,31.0,164.0,115.961693,0.0,0.0,0.0,0.0,0.0,0.0,528.3870969999998,68.791562,120.497637,4.311769,0.0,392.0,1.0,0.0,52.230128,6.843708,315.280477,120.890133,0.0,426.766216,122.654033,0.0,0.0,0.0,0.0,0.0,4.311768714863451,306.00000191964,535.9999988561401,129,0.0,1291.5000000000007,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +128,128,1609402774.9,161.9,29.5,165.0,116.821192,0.0,0.0,0.0,0.0,0.0,0.0,600.0,77.109495,133.76137,4.2800449999999985,0.0,393.90000009536743,1.0,0.0,52.230182,6.843623,315.26315,117.283132,0.0,418.73513,117.975971,0.0,0.0,0.0,0.0,0.0,4.2800453534149865,342.99999784889997,595.0000012614,130,0.0,1299.8000000000004,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +129,129,1609402777.0,169.9,31.0,166.0,117.227373,0.0,0.0,0.0,0.0,0.0,0.0,561.2903230000002,74.636596,135.335033,4.265215,0.0,396.0,1.0,0.0,52.230233,6.843542,315.261213,120.369399,0.0,262.994275,113.774059,0.0,0.0,0.0,0.0,0.0,4.265215428823097,331.99999905912,602.00000049126,132,0.0,1307.8000000000004,0.0,0.0,0.0,166.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +130,130,1609402778.9,179.0,29.5,167.0,116.603738,0.0,0.0,0.0,0.0,0.0,0.0,587.79661,76.65987700000002,131.513279,4.288027,0.0,397.90000009536743,1.0,0.0,52.230292,6.8434490000000014,315.2583390000001,126.68491000000002,0.0,426.419508,122.544268,0.0,0.0,0.0,0.0,0.0,4.288027198579174,340.99999806894004,584.9999979133801,132,0.0,1316.9000000000005,0.0,0.0,0.0,167.0,167.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +131,131,1609402780.9,187.5,31.0,167.0,115.811257,0.0,0.0,0.0,0.0,0.0,0.0,601.935484,76.65987700000002,138.931977,4.31737,0.0,399.90000009536743,1.0,0.0,52.230348,6.843361,315.20578,133.11553,0.0,428.778752,123.265113,0.0,0.0,0.0,0.0,0.0,4.3173695973267945,340.99999806894004,617.99999873094,133,0.0,1325.4000000000005,0.0,0.0,0.0,167.0,167.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +132,132,1609402783.0,195.4,29.5,168.0,115.335126,0.0,0.0,0.0,0.0,0.0,0.0,600.0,73.512551,140.730449,4.335193,0.0,402.0,1.0,0.0,52.230398,6.84328,315.203352,135.872473,0.0,264.212754,127.086753,0.0,0.0,0.0,0.0,0.0,4.335192732177706,326.99999960922,625.99999785078,135,0.0,1333.3000000000004,0.0,0.0,0.0,0.0,168.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +133,133,1609402785.0,204.6,31.0,169.0,115.194132,0.0,0.0,0.0,0.0,0.0,0.0,567.096774,73.512551,129.714807,4.3404989999999986,0.0,404.0,1.0,0.0,52.230456,6.843185000000001,315.182778,139.16916799999998,0.0,435.512701,125.373859,0.0,0.0,0.0,0.0,0.0,4.340498871939067,326.99999960922,576.99999879354,136,0.0,1342.5000000000007,0.0,0.0,0.0,0.0,169.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +134,134,1609402786.7,212.4,29.5,169.0,115.5933,0.0,0.0,0.0,0.0,0.0,0.0,600.0,72.388506,135.784651,4.32551,0.0,405.7000000476837,1.0,0.0,52.230506,6.8431039999999985,315.142053,136.128261,0.0,433.617987,126.154233,0.0,0.0,0.0,0.0,0.0,4.325510215557476,322.00000015932005,604.00000027122,136,0.0,1350.3000000000004,0.0,0.0,0.0,0.0,169.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +135,135,1609402789.0,220.8,31.0,170.0,116.073403,0.0,0.0,0.0,0.0,0.0,0.0,580.645161,74.861405,138.707168,4.307619,0.0,408.0,1.0,0.0,52.230559,6.843017,315.1732580000001,136.007264,0.0,423.991488,119.98648,0.0,0.0,0.0,0.0,0.0,4.307619033104423,332.9999989491,616.99999884096,138,0.0,1358.7000000000007,0.0,0.0,0.0,0.0,170.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +136,136,1609402790.8,229.4,30.0,170.0,115.834375,0.0,0.0,0.0,0.0,0.0,0.0,570.0,71.48926999999998,133.76137,4.316508,0.0,409.7999999523163,1.0,0.0,52.230614,6.842928,315.18097400000005,134.167554,0.0,275.024208,120.813731,0.0,0.0,0.0,0.0,0.0,4.316507945072437,318.0000005994,595.0000012614,138,0.0,1367.3000000000004,0.0,0.0,0.0,0.0,170.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +137,137,1609402792.8,237.9,30.5,170.0,115.202558,0.0,0.0,0.0,0.0,0.0,0.0,588.196721,76.435068,138.931977,4.3401809999999985,0.0,411.7999999523163,1.0,0.0,52.230668,6.842839,315.202625,134.25169,0.0,445.1562990000001,119.443774,0.0,0.0,0.0,0.0,0.0,4.3401814046524905,339.99999817896,617.99999873094,139,0.0,1375.8000000000006,0.0,0.0,0.0,0.0,170.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +138,138,1609402795.0,246.4,31.0,170.0,115.391861,0.0,0.0,0.0,0.0,0.0,0.0,569.032258,75.31102299999998,135.559842,4.333061,0.0,414.0,1.0,0.0,52.230722,6.842751,315.148721,141.962443,0.0,256.267976,118.881676,0.0,0.0,0.0,0.0,0.0,4.333061237308582,334.99999872905994,603.00000038124,141,0.0,1384.3000000000006,0.0,0.0,0.0,0.0,170.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +139,139,1609402796.6,254.1,31.0,171.0,117.619446,0.0,0.0,0.0,0.0,0.0,0.0,516.7741940000002,66.76828,134.210988,4.250998,0.0,415.59999990463257,1.0,0.0,52.230769,6.842669,315.160749,142.699364,0.0,373.131969,134.885415,0.0,0.0,0.0,0.0,0.0,4.250997747430302,296.9999984616,597.00000104136,141,0.0,1392.0000000000007,0.0,0.0,0.0,0.0,171.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +140,140,1609402799.6,11.9,23.0,171.0,123.072973,0.0,0.0,0.0,0.0,0.0,0.0,185.217391,22.930521,46.760277,4.06263,0.0,418.59999990463257,1.0,0.0,52.230842,6.842542,315.21552,140.699367,0.0,374.089614,134.885415,0.0,0.0,0.0,0.0,0.0,4.0626303875831455,102.00000212261999,207.99999935694,143,0.0,1403.9000000000005,0.0,0.0,0.0,0.0,171.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +141,141,1609402802.1,20.6,21.0,171.0,132.325142,0.0,0.0,0.0,0.0,0.0,0.0,274.28571400000004,37.767916,62.2721,3.778571,0.0,421.09999990463257,1.0,0.0,52.230896,6.842449,315.295017,138.85048999999998,0.0,310.4046140000001,134.885415,0.0,0.0,0.0,0.0,0.0,3.7785714222018365,167.99999930952,277.000000662,143,0.0,1412.6000000000006,0.0,0.0,0.0,0.0,171.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +142,142,1609402805.1,30.1,20.0,172.0,143.676289,0.0,0.0,0.0,0.0,0.0,0.0,366.0,48.558749,91.272464,3.480045,0.0,424.09999990463257,1.0,0.0,52.230954,6.8423479999999985,315.474621,138.428765,0.0,236.762051,99.584371,0.0,0.0,0.0,0.0,0.0,3.4800453399795153,215.99999847678,405.99999981407996,144,0.0,1422.1000000000006,0.0,0.0,0.0,0.0,172.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +143,143,1609402808.4,40.1,18.5,172.0,153.659607,0.0,0.0,0.0,0.0,0.0,0.0,356.756757,43.388142,89.249183,3.253946,0.0,427.40000009536743,1.0,0.0,52.231017,6.842242999999999,315.615604,142.499494,0.0,193.279621,88.256222,0.0,0.0,0.0,0.0,0.0,3.2539455863635003,193.00000100724,397.00000080426,145,0.0,1432.1000000000006,0.0,0.0,0.0,0.0,172.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +144,144,1609402811.5,49.8,18.5,172.0,159.969239,0.0,0.0,0.0,0.0,0.0,0.0,385.945946,47.659513,93.520554,3.125601,0.0,430.5,1.0,0.0,52.231079,6.842144,315.698328,150.103216,0.0,166.796335,75.068012,0.0,0.0,0.0,0.0,0.0,3.125600916311167,211.99999891686002,415.99999871388,146,0.0,1441.8000000000006,0.0,0.0,0.0,0.0,172.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +145,145,1609402814.9,60.1,18.0,172.0,162.203913,0.0,0.0,0.0,0.0,0.0,0.0,366.666667,43.612951,85.87704699999998,3.0825400000000003,0.0,433.90000009536743,1.0,0.0,52.231145,6.842037,315.860752,157.183277,0.0,164.646228,75.684436,0.0,0.0,0.0,0.0,0.0,3.0825396918753736,194.00000089722,381.99999800634004,147,0.0,1452.1000000000006,0.0,0.0,0.0,0.0,172.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +146,146,1609402818.1,70.2,18.0,171.0,161.880011,0.0,0.0,0.0,0.0,0.0,0.0,363.333333,43.612951,84.528193,3.088707,0.0,437.09999990463257,1.0,0.0,52.23121,6.841933,316.003765,163.271384,0.0,163.712314,76.297104,0.0,0.0,0.0,0.0,0.0,3.0887074748222005,194.00000089722,375.99999866646004,148,0.0,1462.2000000000005,0.0,0.0,0.0,0.0,171.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +147,147,1609402821.5,80.7,18.0,170.0,160.89605600000004,0.0,0.0,0.0,0.0,0.0,0.0,436.666667,51.031649,103.63696,3.107596,0.0,440.5,1.0,0.0,52.231278,6.841825,316.167722,166.778235,0.0,166.135156,78.1734,0.0,0.0,0.0,0.0,0.0,3.1075963726544047,227.00000171477996,460.9999982112,149,0.0,1472.7000000000005,0.0,0.0,0.0,0.0,170.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +148,148,1609402825.0,91.1,18.5,168.0,159.66343999999995,0.0,0.0,0.0,0.0,0.0,0.0,369.72973,44.287378,93.970172,3.131587,0.0,444.0,1.0,0.0,52.23134500000001,6.8417210000000015,316.3054640000001,167.422045,0.0,170.24950900000005,80.412163,0.0,0.0,0.0,0.0,0.0,3.131587293872661,197.00000056716,417.99999849384005,151,0.0,1483.1000000000006,0.0,0.0,0.0,0.0,168.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +149,149,1609402828.1,101.0,18.0,168.0,158.236932,0.0,0.0,0.0,0.0,0.0,0.0,376.666667,45.186614,94.41979,3.159819,0.0,447.09999990463257,1.0,0.0,52.231409,6.84162,316.425605,164.946201,0.0,176.24665,83.36080600000003,0.0,0.0,0.0,0.0,0.0,3.1598185940561585,201.00000012708,419.9999982738,151,0.0,1493.000000000001,0.0,0.0,0.0,0.0,168.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +150,150,1609402831.4,111.9,18.5,167.0,156.947321,0.0,0.0,0.0,0.0,0.0,0.0,395.675676,46.08585,98.016735,3.185782,0.0,450.40000009536743,1.0,0.0,52.231479,6.841508,316.635053,160.568461,0.0,188.342255,80.331137,0.0,0.0,0.0,0.0,0.0,3.1857823173674946,204.999999687,436.0000009617,152,0.0,1503.900000000001,0.0,0.0,0.0,167.0,167.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +151,151,1609402834.8,122.3,18.0,166.0,156.014519,0.0,0.0,0.0,0.0,0.0,0.0,396.666667,45.636232,92.621318,3.20483,0.0,453.7999999523163,1.0,0.0,52.231548,6.841403,316.8149390000001,157.590134,0.0,182.350263,78.55249,0.0,0.0,0.0,0.0,0.0,3.204829929963121,202.99999990703998,411.99999915396006,153,0.0,1514.3000000000009,0.0,0.0,0.0,166.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +152,152,1609402838.2,133.6,17.5,166.0,155.63131299999995,0.0,0.0,0.0,0.0,0.0,0.0,377.142857,44.73699600000001,88.349947,3.212721,0.0,457.2000000476837,1.0,0.0,52.231622,6.841291,317.062189,158.215055,0.0,153.51937,70.66443199999998,0.0,0.0,0.0,0.0,0.0,3.2127210801080888,199.00000034712002,393.00000124433996,154,0.0,1525.6000000000008,0.0,0.0,0.0,166.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +153,153,1609402841.4,144.1,18.5,165.0,155.373601,0.0,0.0,0.0,0.0,0.0,0.0,421.621622,49.907603,102.063297,3.21805,0.0,460.40000009536743,1.0,0.0,52.231693,6.841189999999999,316.892226,151.92028,0.0,153.459258,70.635164,0.0,0.0,0.0,0.0,0.0,3.218049892529684,221.99999781666,453.99999898134,155,0.0,1536.1000000000008,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +154,154,1609402844.6,154.4,18.5,165.0,155.066563,0.0,0.0,0.0,0.0,0.0,0.0,363.243243,43.612951,88.125138,3.224422,0.0,463.59999990463257,1.0,0.0,52.231757,6.841081,317.25596,149.107566,0.0,186.507175,85.222468,0.0,0.0,0.0,0.0,0.0,3.224421760092793,194.00000089722,392.00000135436005,156,0.0,1546.400000000001,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +155,155,1609402848.0,165.7,17.5,164.0,155.283877,0.0,0.0,0.0,0.0,0.0,0.0,366.857143,44.287378,86.326665,3.219909,0.0,467.0,1.0,0.0,52.231831,6.840967,317.604074,151.48455900000005,0.0,186.578599,85.253225,0.0,0.0,0.0,0.0,0.0,3.2199093019811715,197.00000056716,383.99999778629996,157,0.0,1557.700000000001,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +156,156,1609402851.1,176.4,18.5,163.0,155.65108700000005,0.0,0.0,0.0,0.0,0.0,0.0,441.081081,52.155694,104.536197,3.212313,0.0,470.09999990463257,1.0,0.0,52.231906,6.840868,317.655332,156.68451399999995,0.0,188.223312,83.97820899999998,0.0,0.0,0.0,0.0,0.0,3.2123129342488945,232.00000116468,465.00000221934005,158,0.0,1568.400000000001,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +157,157,1609402854.4,187.1,18.0,162.0,154.892278,0.0,0.0,0.0,0.0,0.0,0.0,430.0,53.72935699999999,86.77628399999998,3.22805,0.0,473.40000009536743,1.0,0.0,52.23197800000001,6.840764999999998,317.790294,154.428106,0.0,182.672297,82.17208199999997,0.0,0.0,0.0,0.0,0.0,3.2280498838037617,239.00000039454,386.00000201448,159,0.0,1579.1000000000008,0.0,0.0,0.0,162.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +158,158,1609402857.6,197.8,19.0,161.0,151.368495,0.0,0.0,0.0,0.0,0.0,0.0,555.789474,67.667516,125.218627,3.303197,0.0,476.59999990463257,1.0,0.0,52.232051,6.840664,317.821635,153.80728100000005,0.0,200.01042,88.600346,0.0,0.0,0.0,0.0,0.0,3.3031972736466737,300.99999802152,557.00000099394,160,0.0,1589.8000000000009,0.0,0.0,0.0,161.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +159,159,1609402860.0,8.7,25.5,160.0,144.15722,0.0,0.0,0.0,0.0,0.0,0.0,637.647059,85.87704699999998,144.102585,3.468435,0.0,479.0,1.0,0.0,52.23211,6.84058,317.881238,149.97481000000005,0.0,224.42459,62.396385,0.0,0.0,0.0,0.0,0.0,3.468435365221388,381.99999800634004,641.0000006487,161,0.0,1598.5000000000011,0.0,0.0,160.0,160.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +160,160,1609402862.0,17.1,28.5,159.0,134.735479,0.0,0.0,0.0,0.0,0.0,0.0,589.4736839999998,77.55911400000002,140.730449,3.710975,0.0,481.0,1.0,0.0,52.232166,6.840497999999998,317.989512,141.996848,0.0,274.604834,79.67885799999998,0.0,0.0,0.0,0.0,0.0,3.71097504318072,345.00000207708007,625.99999785078,162,0.0,1606.9000000000012,0.0,0.0,159.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +161,161,1609402864.1,25.3,28.5,159.0,125.865504,0.0,0.0,0.0,0.0,0.0,0.0,602.105263,76.210259,144.327394,3.972494,0.0,483.09999990463257,1.0,0.0,52.232222,6.840418,318.012804,132.086821,0.0,322.927418,96.500301,0.0,0.0,0.0,0.0,0.0,3.9724943221933153,338.99999828897995,642.00000053868,163,0.0,1615.1000000000013,0.0,0.0,159.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +162,162,1609402866.2,34.5,29.0,159.0,119.495356,0.0,0.0,0.0,0.0,0.0,0.0,589.655172,75.086214,137.583123,4.184263,0.0,485.2000000476837,1.0,0.0,52.232283,6.840328,318.095994,121.628215,0.0,389.652251,112.62918700000002,0.0,0.0,0.0,0.0,0.0,4.184263026924661,333.99999883908,611.99999939106,164,0.0,1624.3000000000013,0.0,0.0,159.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +163,163,1609402868.2,43.4,29.5,159.0,116.225134,0.0,0.0,0.0,0.0,0.0,0.0,549.152542,71.48926999999998,133.536561,4.301995,0.0,487.2000000476837,1.0,0.0,52.232343,6.840241000000002,318.090385,112.710414,0.0,434.231005,123.889542,0.0,0.0,0.0,0.0,0.0,4.301995470274097,318.0000005994,594.00000137142,165,0.0,1633.2000000000016,0.0,0.0,159.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +164,164,1609402870.4,52.8,28.5,158.0,115.314015,0.0,0.0,0.0,0.0,0.0,0.0,593.684211,72.613315,137.583123,4.335986,0.0,489.40000009536743,1.0,0.0,52.232406,6.840147999999999,318.160061,106.418363,0.0,423.850527,134.885415,0.0,0.0,0.0,0.0,0.0,4.335986393327819,323.0000000493,611.99999939106,166,0.0,1642.6000000000015,0.0,0.0,158.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +165,165,1609402872.4,61.5,29.5,158.0,115.646651,0.0,0.0,0.0,0.0,0.0,0.0,543.050847,69.24118,133.986179,4.323515,0.0,491.40000009536743,1.0,0.0,52.232464,6.840063000000002,318.1355910000001,103.567308,0.0,423.836913,134.885415,0.0,0.0,0.0,0.0,0.0,4.323514738010009,308.0000016996,596.0000011513798,167,0.0,1651.3000000000015,0.0,0.0,158.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +166,166,1609402874.4,70.2,29.5,159.0,116.399994,0.0,0.0,0.0,0.0,0.0,0.0,502.372881,65.644235,119.148783,4.295533,0.0,493.40000009536743,1.0,0.0,52.23252100000001,6.839977,318.180351,104.443838,0.0,417.441595,124.356091,0.0,0.0,0.0,0.0,0.0,4.2955328674673305,291.99999901169997,529.99999951626,168,0.0,1660.0000000000016,0.0,0.0,159.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +167,167,1609402876.6,79.6,28.5,160.0,116.839143,0.0,0.0,0.0,0.0,0.0,0.0,553.684211,69.24118,127.916335,4.279388,0.0,495.59999990463257,1.0,0.0,52.232584,6.8398850000000015,318.316807,107.480738,0.0,415.810121,122.816103,0.0,0.0,0.0,0.0,0.0,4.279387773325246,308.0000016996,568.9999996737,169,0.0,1669.4000000000015,0.0,0.0,160.0,160.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +168,168,1609402878.6,88.3,28.5,160.0,116.948829,0.0,0.0,0.0,0.0,0.0,0.0,560.0,69.46598900000001,129.489998,4.275374,0.0,497.59999990463257,1.0,0.0,52.232643,6.839803,318.290795,111.461677,0.0,415.972331,122.41953999999998,0.0,0.0,0.0,0.0,0.0,4.275374146756099,309.00000158958005,575.9999989035599,170,0.0,1678.1000000000015,0.0,0.0,160.0,160.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +169,169,1609402880.6,96.8,28.5,161.0,117.292849,0.0,0.0,0.0,0.0,0.0,0.0,581.052632,73.062933,139.381595,4.262834,0.0,499.59999990463257,1.0,0.0,52.232702,6.839721000000001,318.230521,118.762032,0.0,412.505248,121.180561,0.0,0.0,0.0,0.0,0.0,4.2628344716905975,324.99999982926005,619.9999985109,171,0.0,1686.6000000000015,0.0,0.0,0.0,161.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +170,170,1609402882.8,105.9,29.5,162.0,117.980684,0.0,0.0,0.0,0.0,0.0,0.0,543.050847,71.039652,130.838852,4.237982,0.0,501.7999999523163,1.0,0.0,52.232763,6.839632000000001,318.22519,119.519451,0.0,404.752697,119.064135,0.0,0.0,0.0,0.0,0.0,4.237981871676554,316.00000081944,581.99999824344,172,0.0,1695.7000000000016,0.0,0.0,0.0,162.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +171,171,1609402885.0,114.5,28.5,163.0,118.770603,0.0,0.0,0.0,0.0,0.0,0.0,570.5263160000002,71.714079,132.41251599999998,4.209796,0.0,504.0,1.0,0.0,52.232821,6.839550999999998,318.184379,127.413081,0.0,391.310163,115.940104,0.0,0.0,0.0,0.0,0.0,4.209795920628609,319.00000048938,589.0000019215198,173,0.0,1704.3000000000015,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +172,172,1609402887.0,123.4,27.5,164.0,119.557556,0.0,0.0,0.0,0.0,0.0,0.0,580.363636,72.163697,130.838852,4.182086,0.0,506.0,1.0,0.0,52.232882,6.839465,318.123144,129.365731,0.0,384.603688,114.714187,0.0,0.0,0.0,0.0,0.0,4.1820861577331,321.00000026934,581.99999824344,174,0.0,1713.2000000000016,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +173,173,1609402889.0,131.7,29.5,165.0,120.079072,0.0,0.0,0.0,0.0,0.0,0.0,561.355932,73.512551,135.559842,4.1639230000000005,0.0,508.0,1.0,0.0,52.232939,6.839385000000001,317.99968,129.143601,0.0,382.383541,110.591853,0.0,0.0,0.0,0.0,0.0,4.163922919057868,326.99999960922,603.00000038124,175,0.0,1721.5000000000016,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +174,174,1609402891.1,140.1,28.5,165.0,120.04181,0.0,0.0,0.0,0.0,0.0,0.0,557.894737,72.163697,129.939616,4.165215,0.0,510.09999990463257,1.0,0.0,52.232995,6.839303,317.932299,125.248821,0.0,405.007519,123.873847,0.0,0.0,0.0,0.0,0.0,4.165215436188442,321.00000026934,577.9999986835202,176,0.0,1729.9000000000015,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +175,175,1609402893.2,149.2,27.5,165.0,119.734792,0.0,0.0,0.0,0.0,0.0,0.0,552.0,68.566753,131.063661,4.175896,0.0,512.2000000476837,1.0,0.0,52.233056,6.8392149999999985,317.786271,119.960434,0.0,410.381341,125.029621,0.0,0.0,0.0,0.0,0.0,4.1758956745003575,305.0000020296601,582.99999813342,177,0.0,1739.0000000000016,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +176,176,1609402895.4,158.5,28.5,166.0,119.530335,0.0,0.0,0.0,0.0,0.0,0.0,560.0,69.690798,130.838852,4.183039,0.0,514.4000000953674,1.0,0.0,52.233117,6.839122,317.73866,116.338251,0.0,384.824259,113.296351,0.0,0.0,0.0,0.0,0.0,4.1830385566977615,310.00000147956,581.99999824344,178,0.0,1748.3000000000015,0.0,0.0,0.0,166.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +177,177,1609402897.6,167.6,28.5,167.0,119.012921,0.0,0.0,0.0,0.0,0.0,0.0,572.631579,71.938888,135.784651,4.201224,0.0,516.5999999046326,1.0,0.0,52.233178,6.8390330000000015,317.577695,114.007376,0.0,385.041538,115.093207,0.0,0.0,0.0,0.0,0.0,4.2012245040183505,320.00000037936,604.00000027122,179,0.0,1757.4000000000015,0.0,0.0,0.0,167.0,167.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +178,178,1609402899.6,176.1,28.5,167.0,118.126055,0.0,0.0,0.0,0.0,0.0,0.0,541.052632,68.117134,127.241908,4.232766000000002,0.0,518.5999999046326,1.0,0.0,52.233235,6.838949,317.521949,113.179044,0.0,400.447664,118.209699,0.0,0.0,0.0,0.0,0.0,4.232766429049035,302.99999780148,566.0000000037602,180,0.0,1765.9000000000015,0.0,0.0,0.0,167.0,167.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +179,179,1609402901.8,185.5,28.5,167.0,117.925159,0.0,0.0,0.0,0.0,0.0,0.0,581.052632,75.086214,135.335033,4.239977,0.0,520.7999999523163,1.0,0.0,52.233297,6.838858,317.359612,112.581195,0.0,404.251889,118.922168,0.0,0.0,0.0,0.0,0.0,4.2399773232444815,333.99999883908,602.00000049126,181,0.0,1775.3000000000015,0.0,0.0,0.0,167.0,167.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +180,180,1609402903.8,8.4,28.0,167.0,119.40735,0.0,0.0,0.0,0.0,0.0,0.0,531.428571,68.341944,132.637325,4.187347,0.0,522.7999999523163,1.0,0.0,52.233354,6.838774000000001,317.2928970000001,114.007448,0.0,384.729188,115.006069,0.0,0.0,0.0,0.0,0.0,4.1873469262989245,304.00000213967996,590.0000018115,182,0.0,1783.7000000000016,0.0,0.0,0.0,167.0,167.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +181,181,1609402906.8,20.1,23.5,167.0,123.767239,0.0,0.0,0.0,0.0,0.0,0.0,186.382979,23.380139,51.256458,4.039841,0.0,525.7999999523163,1.0,0.0,52.233432,6.838661,317.09916,120.79658,0.0,342.361025,102.563032,0.0,0.0,0.0,0.0,0.0,4.039841270111875,104.00000190258001,228.00000160476003,184,0.0,1795.4000000000015,0.0,0.0,0.0,167.0,167.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +182,182,1609402909.2,28.4,20.0,167.0,131.748763,0.0,0.0,0.0,0.0,0.0,0.0,408.0,46.535468,96.667881,3.795102,0.0,528.2000000476837,1.0,0.0,52.233487,6.838577000000001,316.99891,126.689942,0.0,313.259,130.819035,0.0,0.0,0.0,0.0,0.0,3.7951020458537434,206.99999946696,430.00000162182005,184,0.0,1803.7000000000016,0.0,0.0,0.0,167.0,167.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +183,183,1609402912.2,38.3,20.5,166.0,141.614859,0.0,0.0,0.0,0.0,0.0,0.0,386.341463,45.411423,93.295745,3.530703,0.0,531.2000000476837,1.0,0.0,52.233552,6.838479,316.884316,130.275233,0.0,249.79345,100.379624,0.0,0.0,0.0,0.0,0.0,3.5307029469273417,202.00000001706002,414.9999988239,185,0.0,1813.6000000000015,0.0,0.0,0.0,166.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +184,184,1609402915.2,48.1,20.0,166.0,150.044911,0.0,0.0,0.0,0.0,0.0,0.0,390.0,45.186614,93.295745,3.332336,0.0,534.2000000476837,1.0,0.0,52.233617,6.838381,316.710986,138.460023,0.0,214.44972400000003,53.96035300000001,0.0,0.0,0.0,0.0,0.0,3.3323356098361767,201.00000012708,414.9999988239,186,0.0,1823.4000000000015,0.0,0.0,0.0,166.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +185,185,1609402918.4,58.5,19.5,167.0,155.215013,0.0,0.0,0.0,0.0,0.0,0.0,375.384615,43.83776,89.47399200000002,3.2213380000000003,0.0,537.4000000953674,1.0,0.0,52.233684,6.8382770000000015,316.594671,148.966084,0.0,285.790538,74.844601,0.0,0.0,0.0,0.0,0.0,3.2213378740624785,195.0000007872,398.00000069424004,187,0.0,1833.8000000000015,0.0,0.0,0.0,167.0,167.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +186,186,1609402921.6,68.7,19.0,169.0,157.040097,0.0,0.0,0.0,0.0,0.0,0.0,382.105263,46.08585,92.396509,3.1839,0.0,540.5999999046326,1.0,0.0,52.233751,6.8381729999999985,316.452241,159.762001,0.0,155.975144,49.092919,0.0,0.0,0.0,0.0,0.0,3.1839002239026892,204.999999687,410.99999926397993,188,0.0,1844.0000000000016,0.0,0.0,0.0,0.0,169.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +187,187,1609402924.8,78.7,18.0,169.0,157.223735,0.0,0.0,0.0,0.0,0.0,0.0,410.0,46.985086,95.094217,3.180181,0.0,543.7999999523163,1.0,0.0,52.233815,6.838071,316.284553,159.180177,0.0,254.814389,85.383512,0.0,0.0,0.0,0.0,0.0,3.180181414720875,208.99999924692003,422.99999794374,189,0.0,1854.0000000000016,0.0,0.0,0.0,0.0,169.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +188,188,1609402928.0,89.1,18.5,168.0,157.501125,0.0,0.0,0.0,0.0,0.0,0.0,392.432432,45.861041,91.047655,3.17458,0.0,547.0,1.0,0.0,52.233881,6.837963,316.200872,168.32528100000005,0.0,117.848779,48.570295,0.0,0.0,0.0,0.0,0.0,3.1745804990281816,203.99999979702,404.99999992410005,190,0.0,1864.4000000000021,0.0,0.0,0.0,0.0,168.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +189,189,1609402931.4,99.9,18.0,167.0,157.865346,0.0,0.0,0.0,0.0,0.0,0.0,396.666667,45.636232,80.256822,3.167256,0.0,550.4000000953674,1.0,0.0,52.23395,6.837852000000002,316.136848,165.64173,0.0,189.047914,84.099612,0.0,0.0,0.0,0.0,0.0,3.167256226075101,202.99999990703998,357.00000075684,191,0.0,1875.2000000000016,0.0,0.0,0.0,167.0,167.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +190,190,1609402934.4,109.8,19.0,166.0,158.01580900000005,0.0,0.0,0.0,0.0,0.0,0.0,432.631579,51.706076,100.714443,3.16424,0.0,553.4000000953674,1.0,0.0,52.234014,6.837751,315.9688490000001,161.024252,0.0,152.95014799999996,48.407985,0.0,0.0,0.0,0.0,0.0,3.164240357748002,230.00000138472,447.99999964145997,192,0.0,1885.1000000000022,0.0,0.0,0.0,166.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +191,191,1609402937.8,120.0,18.5,166.0,158.25851,0.0,0.0,0.0,0.0,0.0,0.0,431.351351,51.031649,101.838488,3.1593880000000003,0.0,556.7999999523163,1.0,0.0,52.234077,6.837644,315.997627,151.103891,0.0,251.063278,78.53981999999998,0.0,0.0,0.0,0.0,0.0,3.159387763729104,227.00000171477996,452.99999909135994,193,0.0,1895.3000000000022,0.0,0.0,0.0,166.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +192,192,1609402941.0,130.3,18.5,165.0,158.39606899999995,0.0,0.0,0.0,0.0,0.0,0.0,405.405405,49.008367,93.745363,3.156644,0.0,560.0,1.0,0.0,52.234144,6.837538,315.928768,144.547519,0.0,121.796847,45.277993,0.0,0.0,0.0,0.0,0.0,3.1566439947445923,217.99999825673999,416.99999860386004,194,0.0,1905.6000000000022,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +193,193,1609402944.2,140.7,18.5,165.0,157.944501,0.0,0.0,0.0,0.0,0.0,0.0,402.162162,47.659513,103.187342,3.165669,0.0,563.2000000476837,1.0,0.0,52.23421,6.837428999999998,315.934184,138.357573,0.0,225.301958,77.083398,0.0,0.0,0.0,0.0,0.0,3.1656689332919536,211.99999891686002,458.99999843124,195,0.0,1916.000000000002,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +194,194,1609402947.4,151.5,18.0,164.0,156.675217,0.0,0.0,0.0,0.0,0.0,0.0,466.666667,54.628593,103.412151,3.1913150000000003,0.0,566.4000000953674,1.0,0.0,52.23428,6.83732,315.893967,141.100456,0.0,185.240077,65.55442099999999,0.0,0.0,0.0,0.0,0.0,3.1913151905830763,242.99999995445998,459.99999832122,196,0.0,1926.8000000000022,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +195,195,1609402951.0,162.8,18.5,163.0,154.77594299999996,0.0,0.0,0.0,0.0,0.0,0.0,431.351351,50.80684,100.489634,3.230476,0.0,570.0,1.0,0.0,52.23435300000001,6.837205,315.793412,145.490388,0.0,168.947811,73.257194,0.0,0.0,0.0,0.0,0.0,3.2304761987462096,226.0000018248,446.99999975147995,197,0.0,1938.1000000000022,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +196,196,1609402954.0,172.7,18.5,162.0,153.012366,0.0,0.0,0.0,0.0,0.0,0.0,431.351351,52.155694,102.512915,3.26771,0.0,573.0,1.0,0.0,52.23441500000001,6.837102000000002,315.819098,149.968059,0.0,195.389052,82.143529,0.0,0.0,0.0,0.0,0.0,3.2677097483741937,232.00000116468,455.99999876130005,198,0.0,1948.000000000002,0.0,0.0,0.0,162.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +197,197,1609402957.2,183.7,18.0,162.0,152.09833600000005,0.0,0.0,0.0,0.0,0.0,0.0,450.0,54.403784,106.559478,3.287347,0.0,576.2000000476837,1.0,0.0,52.234486,6.836988000000002,315.776816,153.052278,0.0,198.956805,91.71922,0.0,0.0,0.0,0.0,0.0,3.287346943756176,242.00000006448,474.0000012291599,199,0.0,1959.000000000002,0.0,0.0,0.0,162.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +198,198,1609402960.6,194.7,18.5,162.0,152.135066,0.0,0.0,0.0,0.0,0.0,0.0,398.918919,47.209895,101.164061,3.286553,0.0,579.5999999046326,1.0,0.0,52.234556,6.836874000000001,315.777774,155.384045,0.0,199.117582,91.606866,0.0,0.0,0.0,0.0,0.0,3.2865532789133574,209.9999991369,449.99999942142,200,0.0,1970.000000000002,0.0,0.0,0.0,162.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +199,199,1609402963.8,205.1,18.5,161.0,152.798182,0.0,0.0,0.0,0.0,0.0,0.0,421.621622,48.783558,99.815207,3.2722900000000004,0.0,582.7999999523163,1.0,0.0,52.234622,6.836766000000001,315.797531,156.115998,0.0,200.91062,94.610183,0.0,0.0,0.0,0.0,0.0,3.2722902423014437,216.99999836676002,444.00000008154007,201,0.0,1980.4000000000021,0.0,0.0,0.0,161.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +200,200,1609402967.0,215.6,18.0,160.0,153.923478,0.0,0.0,0.0,0.0,0.0,0.0,396.666667,46.535468,96.443072,3.248367,0.0,586.0,1.0,0.0,52.234689,6.836658,315.775642,155.132239,0.0,197.269304,92.156647,0.0,0.0,0.0,0.0,0.0,3.2483673478324078,206.99999946696,429.00000173184,202,0.0,1990.9000000000021,0.0,0.0,160.0,160.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +201,201,1609402970.4,226.6,18.0,160.0,155.330915,0.0,0.0,0.0,0.0,0.0,0.0,366.666667,44.287378,78.90796800000003,3.218934,0.0,589.4000000953674,1.0,0.0,52.234758,6.836544,315.8946,154.285096,0.0,192.421687,89.232959,0.0,0.0,0.0,0.0,0.0,3.2189342346950056,197.00000056716,351.00000141696006,203,0.0,2001.9000000000021,0.0,0.0,160.0,160.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +202,202,1609402973.6,236.9,18.5,159.0,155.909721,0.0,0.0,0.0,0.0,0.0,0.0,460.540541,54.178975,107.009096,3.206984,0.0,592.5999999046326,1.0,0.0,52.234825,6.83644,315.917205,155.206861,0.0,182.20953,78.256004,0.0,0.0,0.0,0.0,0.0,3.206984123844337,241.0000001745,476.00000100912,204,0.0,2012.200000000002,0.0,0.0,159.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +203,203,1609402976.6,246.7,19.5,158.0,153.898769,0.0,0.0,0.0,0.0,0.0,0.0,476.923077,55.977447,112.629321,3.248889,0.0,595.5999999046326,1.0,0.0,52.23489,6.836341,315.92808,153.598182,0.0,188.616028,81.80585,0.0,0.0,0.0,0.0,0.0,3.2488888848747064,248.99999929433997,500.99999825862,205,0.0,2022.000000000002,0.0,0.0,158.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +204,204,1609402979.4,9.7,21.5,157.0,148.246257,0.0,0.0,0.0,0.0,0.0,0.0,675.348837,76.435068,148.149147,3.3727660000000004,0.0,598.4000000953674,1.0,0.0,52.234953,6.836242,315.928731,150.39902,0.0,197.316736,89.71005,0.0,0.0,0.0,0.0,0.0,3.3727664368618764,339.99999817896,658.99999866834,206,0.0,2031.700000000002,0.0,0.0,157.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +205,205,1609402981.6,18.3,27.5,156.0,139.410493,0.0,0.0,0.0,0.0,0.0,0.0,669.818182,86.551475,142.97853999999995,3.586531,0.0,600.5999999046326,1.0,0.0,52.23500900000001,6.836156,315.8937620000001,150.050047,0.0,188.065869,84.387294,0.0,0.0,0.0,0.0,0.0,3.586530606415688,385.0000021245,636.0000011988,207,0.0,2040.3000000000022,0.0,0.0,156.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +206,206,1609402983.6,26.6,29.5,156.0,130.047832,0.0,0.0,0.0,0.0,0.0,0.0,616.2711860000002,80.931249,142.079304,3.844739,0.0,602.5999999046326,1.0,0.0,52.235063,6.8360710000000005,315.895825,138.585441,0.0,279.764552,134.885415,0.0,0.0,0.0,0.0,0.0,3.8447392187206937,360.00000042678,632.00000163888,208,0.0,2048.600000000002,0.0,0.0,156.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +207,207,1609402985.6,35.3,31.0,156.0,122.857652,0.0,0.0,0.0,0.0,0.0,0.0,570.967742,73.062933,138.25755,4.069751,0.0,604.5999999046326,1.0,0.0,52.235118,6.835982,315.92364,133.792804,0.0,275.499854,126.985015,0.0,0.0,0.0,0.0,0.0,4.069750576056915,324.99999982926005,614.999999061,209,0.0,2057.300000000002,0.0,0.0,156.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +208,208,1609402987.6,43.9,29.5,156.0,118.400704,0.0,0.0,0.0,0.0,0.0,0.0,589.830508,74.411787,138.032741,4.2229480000000015,0.0,606.5999999046326,1.0,0.0,52.235174,6.8358940000000015,316.014019,127.446762,0.0,296.749996,134.885415,0.0,0.0,0.0,0.0,0.0,4.222947863553244,330.99999916914004,613.9999991710199,210,0.0,2065.900000000002,0.0,0.0,156.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +209,209,1609402989.6,52.6,29.5,155.0,116.260064,0.0,0.0,0.0,0.0,0.0,0.0,595.9322030000002,74.861405,140.50564,4.300703,0.0,608.5999999046326,1.0,0.0,52.235231,6.835808,315.948371,119.028221,0.0,436.463669,123.76506100000002,0.0,0.0,0.0,0.0,0.0,4.300702948176599,332.9999989491,624.9999979608,211,0.0,2074.6000000000017,0.0,0.0,155.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +210,210,1609402991.6,61.3,29.5,156.0,115.88734,0.0,0.0,0.0,0.0,0.0,0.0,573.559322,71.938888,132.18770700000002,4.314535,0.0,610.5999999046326,1.0,0.0,52.235287,6.835717999999999,315.99028,122.395745,0.0,434.34794000000005,125.097232,0.0,0.0,0.0,0.0,0.0,4.31453513386363,320.00000037936,588.0000020315401,212,0.0,2083.300000000001,0.0,0.0,156.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +211,211,1609402993.6,70.0,29.5,156.0,116.160845,0.0,0.0,0.0,0.0,0.0,0.0,567.457627,69.690798,134.660606,4.304376,0.0,612.5999999046326,1.0,0.0,52.235344,6.8356309999999985,316.0311200000001,117.767155,0.0,434.000242,124.11885,0.0,0.0,0.0,0.0,0.0,4.304376401531859,310.00000147956,599.00000082132,213,0.0,2092.0000000000014,0.0,0.0,156.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +212,212,1609402995.6,78.3,29.5,157.0,116.634577,0.0,0.0,0.0,0.0,0.0,0.0,616.2711860000002,77.334305,138.032741,4.286893,0.0,614.5999999046326,1.0,0.0,52.235398,6.835547999999998,316.003475,118.06868,0.0,426.05936,122.435073,0.0,0.0,0.0,0.0,0.0,4.28689341412024,344.0000021871,613.9999991710199,214,0.0,2100.300000000001,0.0,0.0,157.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +213,213,1609402997.6,86.5,31.0,157.0,117.330297,0.0,0.0,0.0,0.0,0.0,0.0,584.516129,75.760641,137.35831399999998,4.261474,0.0,616.5999999046326,1.0,0.0,52.235453,6.835466,315.917322,115.833504,0.0,413.704751,112.871577,0.0,0.0,0.0,0.0,0.0,4.261473914107624,336.9999985090201,610.99999950108,215,0.0,2108.5000000000014,0.0,0.0,157.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +214,214,1609402999.6,95.3,30.0,159.0,117.541699,0.0,0.0,0.0,0.0,0.0,0.0,600.0,77.334305,140.280831,4.25381,0.0,618.5999999046326,1.0,0.0,52.235509,6.835375999999999,315.894724,114.766369,0.0,415.476997,115.052268,0.0,0.0,0.0,0.0,0.0,4.253809535286707,344.0000021871,623.9999980708202,216,0.0,2117.300000000001,0.0,0.0,159.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +215,215,1609403001.6,104.0,31.0,159.0,117.014615,0.0,0.0,0.0,0.0,0.0,0.0,549.677419,71.938888,134.435797,4.272971,0.0,620.5999999046326,1.0,0.0,52.235566,6.835288,315.877649,120.550333,0.0,264.629699,134.885415,0.0,0.0,0.0,0.0,0.0,4.272970517400754,320.00000037936,598.0000009313401,217,0.0,2126.0000000000014,0.0,0.0,159.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +216,216,1609403003.6,112.8,29.5,161.0,116.324463,0.0,0.0,0.0,0.0,0.0,0.0,597.966102,74.861405,137.133505,4.298322,0.0,622.5999999046326,1.0,0.0,52.235623,6.835199,315.83879,120.257096,0.0,424.461412,119.651235,0.0,0.0,0.0,0.0,0.0,4.298322013315462,332.9999989491,609.9999996111002,218,0.0,2134.800000000001,0.0,0.0,0.0,161.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +217,217,1609403005.4,120.8,30.0,162.0,115.639373,0.0,0.0,0.0,0.0,0.0,0.0,574.0,75.086214,133.086943,4.323787,0.0,624.4000000953674,1.0,0.0,52.235675,6.835118,315.716924,120.358011,0.0,425.388681,120.412066,0.0,0.0,0.0,0.0,0.0,4.323786847235846,333.99999883908,592.00000159146,219,0.0,2142.800000000001,0.0,0.0,0.0,162.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +218,218,1609403007.4,129.7,30.5,163.0,115.265791,0.0,0.0,0.0,0.0,0.0,0.0,572.459016,73.96216899999997,138.032741,4.3378,0.0,626.4000000953674,1.0,0.0,52.235731,6.835025999999999,315.702484,118.099801,0.0,435.33181500000006,122.881053,0.0,0.0,0.0,0.0,0.0,4.337800449397862,328.99999938917995,613.9999991710199,220,0.0,2151.7000000000016,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +219,219,1609403009.4,138.3,30.0,164.0,115.35021,0.0,0.0,0.0,0.0,0.0,0.0,568.0,73.062933,132.18770700000002,4.334626,0.0,628.4000000953674,1.0,0.0,52.235787,6.834936,315.679244,126.295113,0.0,440.433728,122.478616,0.0,0.0,0.0,0.0,0.0,4.334625832063938,324.99999982926005,588.0000020315401,221,0.0,2160.300000000001,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +220,220,1609403011.4,146.9,30.5,165.0,115.369523,0.0,0.0,0.0,0.0,0.0,0.0,570.491803,73.512551,135.559842,4.3339,0.0,630.4000000953674,1.0,0.0,52.235841,6.834848,315.651303,133.534481,0.0,230.52429,118.88961299999998,0.0,0.0,0.0,0.0,0.0,4.333900210370117,326.99999960922,603.00000038124,222,0.0,2168.900000000001,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +221,221,1609403013.4,155.8,31.0,166.0,115.203762,0.0,0.0,0.0,0.0,0.0,0.0,559.354839,71.938888,137.583123,4.340136,0.0,632.4000000953674,1.0,0.0,52.235898,6.8347570000000015,315.607923,134.670632,0.0,408.898368,134.885415,0.0,0.0,0.0,0.0,0.0,4.340136045210052,320.00000037936,611.99999939106,223,0.0,2177.800000000001,0.0,0.0,0.0,166.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +222,222,1609403015.4,164.5,29.5,167.0,115.267599,0.0,0.0,0.0,0.0,0.0,0.0,565.423729,70.140416,131.962898,4.337732,0.0,634.4000000953674,1.0,0.0,52.235953,6.834664999999998,315.619152,139.184483,0.0,434.602582,127.331349,0.0,0.0,0.0,0.0,0.0,4.33773240995503,312.00000125952005,587.00000214156,224,0.0,2186.5000000000014,0.0,0.0,0.0,167.0,167.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +223,223,1609403017.4,173.0,30.0,168.0,115.381597,0.0,0.0,0.0,0.0,0.0,0.0,536.0,68.566753,129.714807,4.3334470000000005,0.0,636.4000000953674,1.0,0.0,52.236007,6.834578,315.607999,140.702326,0.0,259.47117799999995,134.885415,0.0,0.0,0.0,0.0,0.0,4.3334466934098685,305.0000020296601,576.99999879354,225,0.0,2195.0000000000014,0.0,0.0,0.0,0.0,168.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +224,224,1609403019.4,181.8,29.5,168.0,115.337539,0.0,0.0,0.0,0.0,0.0,0.0,541.0169490000002,67.667516,129.489998,4.335102,0.0,638.4000000953674,1.0,0.0,52.236064,6.834488,315.562153,136.30996499999998,0.0,373.133643,134.885415,0.0,0.0,0.0,0.0,0.0,4.335102034733029,300.99999802152,575.9999989035599,226,0.0,2203.800000000001,0.0,0.0,0.0,0.0,168.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +225,225,1609403021.4,190.3,29.5,169.0,115.930599,0.0,0.0,0.0,0.0,0.0,0.0,545.084746,69.46598900000001,139.156786,4.312925,0.0,640.4000000953674,1.0,0.0,52.236117,6.834399,315.588211,130.864875,0.0,373.133643,134.885415,0.0,0.0,0.0,0.0,0.0,4.3129251837989715,309.00000158958005,618.9999986209201,227,0.0,2212.300000000001,0.0,0.0,0.0,0.0,169.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +226,226,1609403023.4,8.2,29.5,170.0,118.438227,0.0,0.0,0.0,0.0,0.0,0.0,526.779661,64.969808,136.459078,4.22161,0.0,642.4000000953674,1.0,0.0,52.23617,6.834314,315.604981,129.42353799999998,0.0,373.133643,134.885415,0.0,0.0,0.0,0.0,0.0,4.22160997057141,288.9999993417601,606.99999994116,228,0.0,2220.5000000000014,0.0,0.0,0.0,0.0,170.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +227,227,1609403026.6,21.1,23.0,171.0,124.306589,0.0,0.0,0.0,0.0,0.0,0.0,120.0,16.635868,32.597309,4.022313,0.0,645.5999999046326,1.0,0.0,52.236252,6.834181,315.684819,123.573224,0.0,351.806305,132.310823,0.0,0.0,0.0,0.0,0.0,4.0223129282390655,74.00000075496,145.00000183998,229,0.0,2233.400000000001,0.0,0.0,0.0,0.0,171.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +228,228,1609403029.0,28.6,19.5,171.0,134.586627,0.0,0.0,0.0,0.0,0.0,0.0,215.384615,27.201892,55.527829,3.715079,0.0,648.0,1.0,0.0,52.236301,6.834105,315.6733270000001,133.949896,0.0,165.687709,73.549414,0.0,0.0,0.0,0.0,0.0,3.7150793592590734,121.00000003224,246.99999951438,230,0.0,2240.900000000001,0.0,0.0,0.0,0.0,171.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +229,229,1609403032.2,38.4,18.5,171.0,147.83973,0.0,0.0,0.0,0.0,0.0,0.0,356.756757,43.163333,86.326665,3.3820410000000005,0.0,651.2000000476837,1.0,0.0,52.236364,6.834005,315.630178,147.675531,0.0,137.882734,61.931935,0.0,0.0,0.0,0.0,0.0,3.3820408086513685,192.00000111726,383.99999778629996,231,0.0,2250.7000000000016,0.0,0.0,0.0,0.0,171.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +230,230,1609403035.6,48.7,18.0,171.0,159.388757,0.0,0.0,0.0,0.0,0.0,0.0,356.666667,46.08585,85.427429,3.136984,0.0,654.5999999046326,1.0,0.0,52.23643,6.833898,315.617385,156.117574,0.0,200.106003,55.767931,0.0,0.0,0.0,0.0,0.0,3.1369841224120973,204.999999687,379.99999822638,232,0.0,2261.0000000000023,0.0,0.0,0.0,0.0,171.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +231,231,1609403039.0,59.1,18.0,171.0,165.466006,0.0,0.0,0.0,0.0,0.0,0.0,326.666667,40.915243,82.280103,3.021769,0.0,658.0,1.0,0.0,52.236495,6.83379,315.671756,167.76341100000005,0.0,150.513161,70.95204,0.0,0.0,0.0,0.0,0.0,3.0217687130249584,182.00000221745998,365.99999976666,233,0.0,2271.400000000002,0.0,0.0,0.0,0.0,171.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +232,232,1609403042.4,69.7,17.5,171.0,166.20436,0.0,0.0,0.0,0.0,0.0,0.0,363.428571,42.938524,89.024374,3.0083450000000003,0.0,661.4000000953674,1.0,0.0,52.236563,6.833681,315.659154,175.328007,0.0,146.51025900000005,71.055237,0.0,0.0,0.0,0.0,0.0,3.0083446667704745,191.00000122728,396.00000091428,234,0.0,2282.0000000000023,0.0,0.0,0.0,0.0,171.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +233,233,1609403045.8,80.2,17.5,169.0,164.434435,0.0,0.0,0.0,0.0,0.0,0.0,356.571429,42.713715,83.179339,3.040726,0.0,664.7999999523163,1.0,0.0,52.23663,6.833572,315.7128140000001,178.312834,0.0,148.352448,73.241375,0.0,0.0,0.0,0.0,0.0,3.0407256241674685,190.0000013373,369.99999932658,235,0.0,2292.5000000000023,0.0,0.0,0.0,0.0,169.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +234,234,1609403049.2,90.8,17.5,168.0,162.767866,0.0,0.0,0.0,0.0,0.0,0.0,373.714286,44.062569,82.729721,3.071859,0.0,668.2000000476837,1.0,0.0,52.236698,6.833463,315.763202,171.359589,0.0,208.618208,56.00298000000001,0.0,0.0,0.0,0.0,0.0,3.0718594049761636,196.00000067718003,367.99999954662,236,0.0,2303.1000000000017,0.0,0.0,0.0,0.0,168.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +235,235,1609403052.4,100.9,18.5,168.0,161.596471,0.0,0.0,0.0,0.0,0.0,0.0,428.108108,50.357222,102.737724,3.094127,0.0,671.4000000953674,1.0,0.0,52.236763,6.833361,315.781941,156.12063500000005,0.0,163.092285,72.289927,0.0,0.0,0.0,0.0,0.0,3.094126975087222,224.00000204484002,456.99999865128,237,0.0,2313.2000000000016,0.0,0.0,0.0,0.0,168.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +236,236,1609403056.0,111.9,18.0,166.0,160.040064,0.0,0.0,0.0,0.0,0.0,0.0,390.0,46.985086,92.846127,3.124218,0.0,675.0,1.0,0.0,52.236834,6.833249,315.796471,142.71703,0.0,290.654325,77.188572,0.0,0.0,0.0,0.0,0.0,3.1242176958889494,208.99999924692003,412.99999904393997,238,0.0,2324.2000000000016,0.0,0.0,0.0,166.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +237,237,1609403059.2,122.7,17.5,166.0,158.327828,0.0,0.0,0.0,0.0,0.0,0.0,384.0,45.636232,90.598037,3.158005,0.0,678.2000000476837,1.0,0.0,52.236904,6.833139,315.756406,135.295081,0.0,121.673947,57.811925,0.0,0.0,0.0,0.0,0.0,3.158004542322149,202.99999990703998,403.00000014414,239,0.0,2335.0000000000023,0.0,0.0,0.0,166.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +238,238,1609403062.6,133.1,17.5,165.0,157.449391,0.0,0.0,0.0,0.0,0.0,0.0,408.0,47.434704,98.241544,3.175624,0.0,681.5999999046326,1.0,0.0,52.236971,6.833031,315.795581,132.652329,0.0,199.048914,88.039296,0.0,0.0,0.0,0.0,0.0,3.1756235881534787,210.99999902688,437.00000085168,240,0.0,2345.400000000002,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +239,239,1609403066.2,144.6,17.0,164.0,157.815631,0.0,0.0,0.0,0.0,0.0,0.0,384.705882,44.73699600000001,88.799565,3.168254,0.0,685.2000000476837,1.0,0.0,52.237045,6.832914,315.8682740000001,135.970247,0.0,182.105695,49.128979,0.0,0.0,0.0,0.0,0.0,3.1682539735243336,199.00000034712002,395.0000010243,241,0.0,2356.900000000002,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +240,240,1609403069.6,155.0,17.5,164.0,159.02092199999996,0.0,0.0,0.0,0.0,0.0,0.0,366.857143,44.287378,90.148419,3.14424,0.0,688.5999999046326,1.0,0.0,52.237113,6.832808,315.88477400000005,154.486868,0.0,100.148848,47.894672,0.0,0.0,0.0,0.0,0.0,3.1442403534800287,197.00000056716,401.00000036418,242,0.0,2367.300000000002,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +241,241,1609403073.0,165.6,17.0,162.0,160.221476,0.0,0.0,0.0,0.0,0.0,0.0,430.588235,50.357222,100.040016,3.12068,0.0,692.0,1.0,0.0,52.237182,6.832702,315.886687,163.311703,0.0,171.27685300000005,82.948329,0.0,0.0,0.0,0.0,0.0,3.1206802763444768,224.00000204484002,444.99999997152,243,0.0,2377.900000000002,0.0,0.0,0.0,162.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +242,242,1609403076.4,176.4,17.5,162.0,160.596063,0.0,0.0,0.0,0.0,0.0,0.0,394.285714,45.861041,96.218263,3.113401,0.0,695.4000000953674,1.0,0.0,52.23725200000001,6.832592999999999,315.843596,171.314707,0.0,170.140269,78.929008,0.0,0.0,0.0,0.0,0.0,3.1134013540543646,203.99999979702,428.00000184186007,244,0.0,2388.700000000002,0.0,0.0,0.0,162.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +243,243,1609403080.0,187.3,17.0,161.0,160.012191,0.0,0.0,0.0,0.0,0.0,0.0,398.823529,46.985086,98.915971,3.124762,0.0,699.0,1.0,0.0,52.237322,6.8324820000000015,315.825031,166.68842,0.0,168.088181,83.382865,0.0,0.0,0.0,0.0,0.0,3.1247619126720165,208.99999924692003,440.00000052162005,245,0.0,2399.600000000002,0.0,0.0,0.0,161.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +244,244,1609403083.4,198.5,17.0,159.0,158.97391499999995,0.0,0.0,0.0,0.0,0.0,0.0,409.411765,47.434704,103.412151,3.14517,0.0,702.4000000953674,1.0,0.0,52.237394,6.832366,315.950572,162.779743,0.0,197.738554,76.327499,0.0,0.0,0.0,0.0,0.0,3.1451700739709407,210.99999902688,459.99999832122,246,0.0,2410.800000000002,0.0,0.0,159.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +245,245,1609403086.8,209.2,18.0,158.0,158.263054,0.0,0.0,0.0,0.0,0.0,0.0,366.666667,44.512187,85.20262,3.159297,0.0,705.7999999523163,1.0,0.0,52.237465,6.8322600000000016,315.832696,149.456331,0.0,206.186821,78.269826,0.0,0.0,0.0,0.0,0.0,3.1592970523619486,198.00000045714,378.9999983364,247,0.0,2421.5000000000023,0.0,0.0,158.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +246,246,1609403090.0,219.3,18.0,156.0,158.465508,0.0,0.0,0.0,0.0,0.0,0.0,410.0,47.434704,100.714443,3.155261,0.0,709.0,1.0,0.0,52.23753,6.8321570000000005,315.794865,132.084903,0.0,282.529495,80.875927,0.0,0.0,0.0,0.0,0.0,3.1552607650113997,210.99999902688,447.99999964145997,248,0.0,2431.6000000000017,0.0,0.0,156.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +247,247,1609403093.4,230.1,18.0,156.0,159.05648100000005,0.0,0.0,0.0,0.0,0.0,0.0,426.666667,48.783558,101.164061,3.143537,0.0,712.4000000953674,1.0,0.0,52.2376,6.832047,315.822041,123.985641,0.0,180.898991,78.073897,0.0,0.0,0.0,0.0,0.0,3.143537420521707,216.99999836676002,449.99999942142,249,0.0,2442.400000000002,0.0,0.0,156.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +248,248,1609403096.6,240.3,18.5,155.0,157.787398,0.0,0.0,0.0,0.0,0.0,0.0,418.378378,50.80684,100.939252,3.168821,0.0,715.5999999046326,1.0,0.0,52.237667,6.831944999999998,315.730945,116.810483,0.0,269.35091,75.992173,0.0,0.0,0.0,0.0,0.0,3.168820871233329,226.0000018248,448.99999953144004,250,0.0,2452.6000000000017,0.0,0.0,155.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +249,249,1609403099.8,10.4,19.5,154.0,152.161312,0.0,0.0,0.0,0.0,0.0,0.0,676.9230769999998,76.65987700000002,140.730449,3.285986,0.0,718.7999999523163,1.0,0.0,52.237734,6.83184,315.675257,117.270793,0.0,170.995135,79.269944,0.0,0.0,0.0,0.0,0.0,3.285986387919684,340.99999806894004,625.99999785078,251,0.0,2463.0000000000023,0.0,0.0,154.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +250,250,1609403102.0,18.8,26.5,153.0,142.23695800000004,0.0,0.0,0.0,0.0,0.0,0.0,686.037736,83.40414799999998,150.397238,3.515261,0.0,721.0,1.0,0.0,52.237789,6.831753999999999,315.607348,121.467244,0.0,343.454399,115.923675,0.0,0.0,0.0,0.0,0.0,3.515260780534972,370.99999921655996,669.00000201636,252,0.0,2471.400000000002,0.0,0.0,153.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +251,251,1609403104.0,26.6,29.5,152.0,131.097833,0.0,0.0,0.0,0.0,0.0,0.0,602.033898,75.31102299999998,140.280831,3.813946,0.0,723.0,1.0,0.0,52.23784000000001,6.831675,313.183178,128.016875,0.0,274.578857,134.885415,0.0,0.0,0.0,0.0,0.0,3.813945574523722,334.99999872905994,623.9999980708202,253,0.0,2479.200000000002,0.0,0.0,152.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +252,252,1609403106.0,35.7,29.5,152.0,122.31381100000002,0.0,0.0,0.0,0.0,0.0,0.0,620.338983,76.210259,139.606404,4.087846,0.0,725.0,1.0,0.0,52.237898,6.831582000000001,310.565854,134.33866899999998,0.0,274.578857,134.885415,0.0,0.0,0.0,0.0,0.0,4.087845811623022,338.99999828897995,620.99999840088,254,0.0,2488.300000000002,0.0,0.0,152.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +253,253,1609403108.0,44.3,29.5,152.0,117.566141,0.0,0.0,0.0,0.0,0.0,0.0,595.9322030000002,75.31102299999998,136.459078,4.252925,0.0,727.0,1.0,0.0,52.23795300000001,6.831492999999999,307.703967,139.897174,0.0,459.997018,134.885415,0.0,0.0,0.0,0.0,0.0,4.252925168310152,334.99999872905994,606.99999994116,255,0.0,2496.900000000002,0.0,0.0,152.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +254,254,1609403110.0,52.1,29.5,152.0,116.075847,0.0,0.0,0.0,0.0,0.0,0.0,644.745763,81.156058,142.079304,4.307528,0.0,729.0,1.0,0.0,52.238003000000006,6.831414,306.765184,142.32136599999995,0.0,264.134191,134.885415,0.0,0.0,0.0,0.0,0.0,4.3075283353306055,361.00000031676,632.00000163888,256,0.0,2504.700000000002,0.0,0.0,152.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +255,255,1609403112.0,61.2,31.0,152.0,116.066071,0.0,0.0,0.0,0.0,0.0,0.0,563.2258059999998,75.760641,135.335033,4.3078910000000015,0.0,731.0,1.0,0.0,52.238061,6.8313190000000015,305.751198,143.572668,0.0,275.149398,134.885415,0.0,0.0,0.0,0.0,0.0,4.307891149343722,336.9999985090201,602.00000049126,257,0.0,2513.800000000002,0.0,0.0,152.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +256,256,1609403114.0,69.9,30.0,153.0,116.498391,0.0,0.0,0.0,0.0,0.0,0.0,606.0,78.008732,140.955259,4.291905,0.0,733.0,1.0,0.0,52.238116,6.831227,304.723422,135.66495600000002,0.0,319.706741,134.885415,0.0,0.0,0.0,0.0,0.0,4.291904769740554,347.00000185704005,627.0000021889799,258,0.0,2522.5000000000023,0.0,0.0,153.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +257,257,1609403116.0,77.7,31.0,154.0,116.62409,0.0,0.0,0.0,0.0,0.0,0.0,584.516129,76.435068,136.908696,4.287279,0.0,735.0,1.0,0.0,52.238165,6.831146,303.531138,139.125541,0.0,420.130986,115.03803,0.0,0.0,0.0,0.0,0.0,4.2872788975245175,339.99999817896,608.9999997211198,259,0.0,2530.300000000002,0.0,0.0,154.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +258,258,1609403117.8,86.5,30.5,156.0,116.25393400000002,0.0,0.0,0.0,0.0,0.0,0.0,523.278689,68.117134,118.699165,4.30093,0.0,736.7999999523163,1.0,0.0,52.23822,6.831053,302.299396,140.84198899999996,0.0,421.633746,115.980764,0.0,0.0,0.0,0.0,0.0,4.300929721655699,302.99999780148,527.9999997363,260,0.0,2539.100000000002,0.0,0.0,156.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +259,259,1609403119.8,95.1,31.0,157.0,115.992804,0.0,0.0,0.0,0.0,0.0,0.0,557.419355,71.48926999999998,137.133505,4.310612,0.0,738.7999999523163,1.0,0.0,52.238274,6.8309630000000015,301.006708,139.624046,0.0,428.808338,116.996976,0.0,0.0,0.0,0.0,0.0,4.310612234186529,318.0000005994,609.9999996111002,261,0.0,2547.700000000002,0.0,0.0,157.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +260,260,1609403122.0,104.2,29.5,158.0,115.66485,0.0,0.0,0.0,0.0,0.0,0.0,602.033898,74.186978,137.807932,4.3228339999999985,0.0,741.0,1.0,0.0,52.238332,6.83087,299.363467,131.53304,0.0,428.920928,117.81919,0.0,0.0,0.0,0.0,0.0,4.322834465267538,329.99999927916,612.99999928104,262,0.0,2556.800000000002,0.0,0.0,158.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +261,261,1609403123.8,112.7,31.0,160.0,114.894615,0.0,0.0,0.0,0.0,0.0,0.0,582.580645,75.760641,136.00946000000002,4.351814,0.0,742.7999999523163,1.0,0.0,52.238385,6.83078,297.7785580000001,122.394845,0.0,443.509364,120.456067,0.0,0.0,0.0,0.0,0.0,4.351814051511466,336.9999985090201,605.0000001612001,263,0.0,2565.300000000002,0.0,0.0,160.0,160.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +262,262,1609403125.8,121.5,29.5,161.0,114.375525,0.0,0.0,0.0,0.0,0.0,0.0,608.135593,75.31102299999998,135.559842,4.371565,0.0,744.7999999523163,1.0,0.0,52.238441,6.830688,295.974447,113.159416,0.0,451.015203,130.589708,0.0,0.0,0.0,0.0,0.0,4.371564633255235,334.99999872905994,603.00000038124,264,0.0,2574.100000000002,0.0,0.0,0.0,161.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +263,263,1609403128.0,130.3,30.0,162.0,114.161752,0.0,0.0,0.0,0.0,0.0,0.0,588.0,73.062933,136.23426899999998,4.3797510000000015,0.0,747.0,1.0,0.0,52.238497,6.830597999999998,293.922207,106.50247,0.0,462.947185,131.21101000000002,0.0,0.0,0.0,0.0,0.0,4.379750584066018,324.99999982926005,606.0000000511799,265,0.0,2582.9000000000024,0.0,0.0,0.0,162.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +264,264,1609403129.8,138.9,30.5,164.0,113.979995,0.0,0.0,0.0,0.0,0.0,0.0,574.42623,74.861405,141.404877,4.386735,0.0,748.7999999523163,1.0,0.0,52.238552,6.830508,291.7176120000001,103.155186,0.0,451.501058,128.010998,0.0,0.0,0.0,0.0,0.0,4.386734707261568,332.9999989491,629.0000019689401,266,0.0,2591.5000000000023,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +265,265,1609403131.8,147.4,30.0,165.0,114.221481,0.0,0.0,0.0,0.0,0.0,0.0,572.0,71.938888,137.807932,4.37746,0.0,750.7999999523163,1.0,0.0,52.238605,6.830421,289.167108,102.818914,0.0,446.46768,126.414748,0.0,0.0,0.0,0.0,0.0,4.377460313266293,320.00000037936,612.99999928104,267,0.0,2600.0000000000023,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +266,266,1609403133.6,155.3,30.5,166.0,114.861697,0.0,0.0,0.0,0.0,0.0,0.0,566.557377,74.636596,138.931977,4.353061,0.0,752.5999999046326,1.0,0.0,52.238655,6.830336999999999,286.47118,103.280808,0.0,434.20213,125.989425,0.0,0.0,0.0,0.0,0.0,4.353061229802307,331.99999905912,617.99999873094,268,0.0,2607.9000000000024,0.0,0.0,0.0,166.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +267,267,1609403135.6,164.0,29.5,166.0,115.605421,0.0,0.0,0.0,0.0,0.0,0.0,567.457627,71.938888,137.807932,4.325057,0.0,754.5999999046326,1.0,0.0,52.238709,6.830245,283.491439,114.943331,0.0,433.481196,126.110556,0.0,0.0,0.0,0.0,0.0,4.32505669435692,320.00000037936,612.99999928104,269,0.0,2616.600000000002,0.0,0.0,0.0,166.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +268,268,1609403137.6,172.4,30.0,167.0,116.587708,0.0,0.0,0.0,0.0,0.0,0.0,556.0,70.365225,136.23426899999998,4.288617,0.0,756.5999999046326,1.0,0.0,52.238762,6.830157000000002,280.202707,118.756537,0.0,426.454288,122.554342,0.0,0.0,0.0,0.0,0.0,4.288616772533174,313.0000011495,606.0000000511799,270,0.0,2625.0000000000023,0.0,0.0,0.0,167.0,167.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +269,269,1609403140.0,181.4,29.5,168.0,118.107706,0.0,0.0,0.0,0.0,0.0,0.0,567.457627,71.264461,135.784651,4.2334239999999985,0.0,759.0,1.0,0.0,52.238818,6.830062,276.507944,122.649466,0.0,416.992409,117.285467,0.0,0.0,0.0,0.0,0.0,4.233424024000601,317.00000070942,604.00000027122,271,0.0,2634.0000000000023,0.0,0.0,0.0,0.0,168.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +270,270,1609403141.8,8.2,29.5,168.0,118.301607,0.0,0.0,0.0,0.0,0.0,0.0,565.423729,71.264461,139.381595,4.226485,0.0,760.7999999523163,1.0,0.0,52.238868,6.829974000000001,272.627049,122.566246,0.0,414.191454,116.617198,0.0,0.0,0.0,0.0,0.0,4.22648527504787,317.00000070942,619.9999985109,272,0.0,2642.200000000002,0.0,0.0,0.0,0.0,168.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +271,271,1609403143.8,16.9,29.5,169.0,117.927051,0.0,0.0,0.0,0.0,0.0,0.0,191.186441,39.11677,75.760641,4.239909,0.0,762.7999999523163,1.0,0.0,52.238923,6.8298830000000015,251.161861,121.72668600000002,0.0,398.694029,115.510454,0.0,0.0,0.0,0.0,0.0,4.239909297825143,173.99999864940003,336.9999985090201,273,0.0,2650.900000000002,0.0,0.0,0.0,0.0,169.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +272,272,1609403143.8,16.9,29.5,169.0,119.284617,0.0,0.0,0.0,0.0,0.0,0.0,87.457627,18.883958,34.170972,4.191655,0.0,762.7999999523163,1.0,0.0,52.238923,6.8298830000000015,249.731872,120.035689,0.0,402.042371,111.880981,0.0,0.0,0.0,0.0,0.0,4.191655324676106,83.99999965476,152.00000106983998,273,0.0,2650.900000000002,0.0,0.0,0.0,0.0,169.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +273,273,1609403143.8,16.9,29.5,169.0,124.531243,0.0,0.0,0.0,0.0,0.0,0.0,52.881356,11.46526,26.752274,4.015057,0.0,762.7999999523163,1.0,0.0,52.238923,6.8298830000000015,251.233676,119.60079,0.0,352.305286,97.388064,0.0,0.0,0.0,0.0,0.0,4.015056687421003,50.9999988372,119.00000025228,273,0.0,2650.900000000002,0.0,0.0,0.0,0.0,169.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +274,274,1609403143.8,16.9,29.5,169.0,135.836922,0.0,0.0,0.0,0.0,0.0,0.0,520.677966,67.892325,140.730449,3.680884,0.0,762.7999999523163,1.0,0.0,52.238923,6.8298830000000015,272.760308,123.836397,0.0,259.128358,72.317565,0.0,0.0,0.0,0.0,0.0,3.680884347482491,301.99999791150003,625.99999785078,273,0.0,2650.900000000002,0.0,0.0,0.0,0.0,169.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +275,275,1609403155.4,52.1,33.5,170.0,154.98155,0.0,0.0,0.0,0.0,0.0,0.0,458.507463,67.892325,140.730449,3.2261900000000003,0.0,774.4000000953674,1.0,0.0,52.23914600000001,6.829516,276.777211,128.310361,0.0,277.001579,77.111967,0.0,0.0,0.0,0.0,0.0,3.2261904723497734,301.99999791150003,625.99999785078,279,0.0,2686.1000000000017,0.0,0.0,0.0,0.0,170.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +276,276,1609403156.6,55.1,37.0,170.0,173.358597,0.0,0.0,0.0,0.0,0.0,0.0,144.324324,37.093489,73.062933,2.884195,0.0,775.5999999046326,1.0,0.0,52.239164,6.829485000000001,280.423387,139.600649,0.0,124.79306,50.612734,0.0,0.0,0.0,0.0,0.0,2.884195007646491,164.99999963957995,324.99999982926005,280,0.0,2689.1000000000017,0.0,0.0,0.0,0.0,170.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +277,277,1609403160.2,64.6,17.0,170.0,183.772972,0.0,0.0,0.0,0.0,0.0,0.0,338.823529,40.24081500000001,80.931249,2.720748,0.0,779.2000000476837,1.0,0.0,52.239224,6.829385,283.731053,179.69683500000005,0.0,98.669831,34.67191,0.0,0.0,0.0,0.0,0.0,2.7207482937153564,178.99999809930003,360.00000042678,281,0.0,2698.6000000000017,0.0,0.0,0.0,0.0,170.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +278,278,1609403164.0,74.6,16.5,170.0,185.028237,0.0,0.0,0.0,0.0,0.0,0.0,349.090909,44.287378,81.605676,2.70229,0.0,783.0,1.0,0.0,52.239287,6.829280000000002,286.779261,196.621088,0.0,132.501389,34.557745000000004,0.0,0.0,0.0,0.0,0.0,2.7022902455693827,197.00000056716,363.00000009672,282,0.0,2708.6000000000017,0.0,0.0,0.0,0.0,170.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +279,279,1609403167.2,84.4,17.0,169.0,180.642941,0.0,0.0,0.0,0.0,0.0,0.0,324.705882,42.264097,82.280103,2.767891,0.0,786.2000000476837,1.0,0.0,52.23935,6.82918,289.435608,200.546536,0.0,142.107517,34.804120000000005,0.0,0.0,0.0,0.0,0.0,2.7678911627108644,188.00000155733997,365.99999976666,283,0.0,2718.400000000002,0.0,0.0,0.0,0.0,169.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +280,280,1609403170.8,94.5,17.5,167.0,176.00434199999995,0.0,0.0,0.0,0.0,0.0,0.0,373.714286,44.73699600000001,94.194981,2.840839,0.0,789.7999999523163,1.0,0.0,52.239413,6.829074,291.852623,197.533747,0.0,145.02778600000005,49.55986400000001,0.0,0.0,0.0,0.0,0.0,2.84083900611952,199.00000034712002,418.99999838382,284,0.0,2728.5000000000023,0.0,0.0,0.0,167.0,167.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +281,281,1609403174.2,104.8,17.0,166.0,173.62068,0.0,0.0,0.0,0.0,0.0,0.0,384.705882,44.512187,94.41979,2.879841,0.0,793.2000000476837,1.0,0.0,52.23947800000001,6.828967,294.104079,168.160726,0.0,108.008768,40.652523,0.0,0.0,0.0,0.0,0.0,2.87984127236456,198.00000045714,419.9999982738,285,0.0,2738.800000000002,0.0,0.0,0.0,166.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +282,282,1609403177.6,115.3,17.5,166.0,170.328142,0.0,0.0,0.0,0.0,0.0,0.0,377.142857,44.73699600000001,83.179339,2.93551,0.0,796.5999999046326,1.0,0.0,52.239545,6.828858,296.10012,166.741478,0.0,156.089291,38.65489,0.0,0.0,0.0,0.0,0.0,2.935510210638005,199.00000034712002,369.99999932658,286,0.0,2749.300000000002,0.0,0.0,0.0,166.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +283,283,1609403181.0,125.5,17.5,165.0,167.12775200000004,0.0,0.0,0.0,0.0,0.0,0.0,414.857143,47.434704,94.644599,2.991723,0.0,800.0,1.0,0.0,52.239611,6.828753999999999,297.892076,172.925696,0.0,109.575177,41.315343,0.0,0.0,0.0,0.0,0.0,2.991723361419951,210.99999902688,420.99999816378,287,0.0,2759.500000000002,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +284,284,1609403184.4,136.0,17.5,164.0,164.68251,0.0,0.0,0.0,0.0,0.0,0.0,411.428571,48.783558,98.915971,3.036145,0.0,803.4000000953674,1.0,0.0,52.239679,6.828646000000001,299.504323,171.34760500000004,0.0,156.92998,42.427163,0.0,0.0,0.0,0.0,0.0,3.0361451255509766,216.99999836676002,440.00000052162005,288,0.0,2770.000000000002,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +285,285,1609403188.0,146.6,17.5,163.0,162.936252,0.0,0.0,0.0,0.0,0.0,0.0,390.857143,46.310659,96.667881,3.068685,0.0,807.0,1.0,0.0,52.239747,6.828539,300.889564,171.37018,0.0,165.881384,42.343198,0.0,0.0,0.0,0.0,0.0,3.0686848007280787,205.99999957698003,430.00000162182005,289,0.0,2780.6000000000013,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +286,286,1609403191.2,157.1,18.0,162.0,161.7138,0.0,0.0,0.0,0.0,0.0,0.0,363.333333,44.961805,86.10185600000001,3.091882,0.0,810.2000000476837,1.0,0.0,52.239815,6.828431,302.18979,176.540126,0.0,145.72916899999996,43.59633,0.0,0.0,0.0,0.0,0.0,3.0918820780910474,200.00000023709998,382.99999789632005,290,0.0,2791.1000000000013,0.0,0.0,0.0,162.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +287,287,1609403194.6,167.5,18.0,161.0,160.755295,0.0,0.0,0.0,0.0,0.0,0.0,400.0,48.558749,101.838488,3.110317,0.0,813.5999999046326,1.0,0.0,52.239883,6.828326,303.296063,169.434999,0.0,172.578053,43.226766,0.0,0.0,0.0,0.0,0.0,3.1103174548620625,215.99999847678,452.99999909135994,291,0.0,2801.500000000002,0.0,0.0,0.0,161.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +288,288,1609403198.0,177.9,17.5,160.0,159.982007,0.0,0.0,0.0,0.0,0.0,0.0,425.14285700000005,50.357222,99.590398,3.125351,0.0,817.0,1.0,0.0,52.23995,6.82822,304.310653,189.148788,0.0,99.720675,46.48163,0.0,0.0,0.0,0.0,0.0,3.12535146530572,224.00000204484002,443.00000019156,292,0.0,2811.900000000002,0.0,0.0,160.0,160.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +289,289,1609403201.4,188.4,18.0,160.0,159.406041,0.0,0.0,0.0,0.0,0.0,0.0,406.666667,49.008367,105.660242,3.136644,0.0,820.4000000953674,1.0,0.0,52.240018,6.828114,305.15791,174.130763,0.0,250.462949,67.174328,0.0,0.0,0.0,0.0,0.0,3.136643987036853,217.99999825673999,470.00000166924,293,0.0,2822.400000000002,0.0,0.0,160.0,160.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +290,290,1609403204.6,198.8,18.0,159.0,159.274776,0.0,0.0,0.0,0.0,0.0,0.0,420.0,47.884322,100.040016,3.1392290000000003,0.0,823.5999999046326,1.0,0.0,52.240086,6.8280080000000005,305.912531,175.721839,0.0,101.422826,47.227527,0.0,0.0,0.0,0.0,0.0,3.139229026446724,212.99999880683998,444.99999997152,294,0.0,2832.800000000002,0.0,0.0,159.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +291,291,1609403208.0,209.7,18.0,157.0,160.15398000000005,0.0,0.0,0.0,0.0,0.0,0.0,416.666667,47.884322,95.094217,3.121995,0.0,827.0,1.0,0.0,52.240157,6.827899,306.514751,152.731928,0.0,278.199033,79.60370999999998,0.0,0.0,0.0,0.0,0.0,3.1219954696099337,212.99999880683998,422.99999794374,295,0.0,2843.7000000000016,0.0,0.0,157.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +292,292,1609403211.2,219.5,18.0,157.0,162.072767,0.0,0.0,0.0,0.0,0.0,0.0,453.333333,54.853402,101.838488,3.085034,0.0,830.2000000476837,1.0,0.0,52.24022,6.8277990000000015,309.137846,140.234505,0.0,250.826569,70.839143,0.0,0.0,0.0,0.0,0.0,3.0850340205520155,243.99999984444005,452.99999909135994,296,0.0,2853.5000000000023,0.0,0.0,157.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +293,293,1609403214.4,229.2,18.5,156.0,163.826025,0.0,0.0,0.0,0.0,0.0,0.0,460.540541,56.20225600000001,106.559478,3.052018,0.0,833.4000000953674,1.0,0.0,52.240284,6.8277009999999985,311.334591,125.85798,0.0,207.614285,56.75045400000001,0.0,0.0,0.0,0.0,0.0,3.052018139364609,249.99999918432,474.0000012291599,297,0.0,2863.2000000000016,0.0,0.0,156.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +294,294,1609403218.0,240.1,18.0,155.0,162.824356,0.0,0.0,0.0,0.0,0.0,0.0,463.333333,55.752638,107.683523,3.070794,0.0,837.0,1.0,0.0,52.240353000000006,6.8275869999999985,313.325239,130.386452,0.0,231.340875,39.844614,0.0,0.0,0.0,0.0,0.0,3.0707936593957728,247.99999940436,479.00000067906,298,0.0,2874.1000000000017,0.0,0.0,155.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +295,295,1609403221.0,9.7,20.0,155.0,156.904882,0.0,0.0,0.0,0.0,0.0,0.0,693.0,75.31102299999998,147.47472,3.186644,0.0,840.0,1.0,0.0,52.240414,6.827486,312.977547,149.69717,0.0,229.30407,40.325938,0.0,0.0,0.0,0.0,0.0,3.1866439949268117,334.99999872905994,655.9999989984,299,0.0,2883.800000000002,0.0,0.0,155.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +296,296,1609403222.8,17.5,27.5,155.0,146.44643200000004,0.0,0.0,0.0,0.0,0.0,0.0,717.818182,85.87704699999998,145.451439,3.414218,0.0,841.7999999523163,1.0,0.0,52.240461,6.827403,310.388837,158.782395,0.0,199.30381,100.942824,0.0,0.0,0.0,0.0,0.0,3.4142176983868064,381.99999800634004,646.9999999885798,300,0.0,2891.6000000000017,0.0,0.0,155.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +297,297,1609403224.8,25.7,30.5,155.0,134.465978,0.0,0.0,0.0,0.0,0.0,0.0,643.278689,83.40414799999998,145.901057,3.718413,0.0,843.7999999523163,1.0,0.0,52.240511,6.827313,307.568188,161.078096,0.0,259.000185,134.885415,0.0,0.0,0.0,0.0,0.0,3.718412697671377,370.99999921655996,648.9999997685401,301,0.0,2899.800000000002,0.0,0.0,155.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +298,298,1609403227.0,34.2,31.0,155.0,124.30238500000002,0.0,0.0,0.0,0.0,0.0,0.0,609.677419,79.807204,137.35831399999998,4.022449,0.0,846.0,1.0,0.0,52.240562,6.82722,304.510281,161.551188,0.0,201.64252,99.914078,0.0,0.0,0.0,0.0,0.0,4.022448965882673,355.00000097687996,610.99999950108,302,0.0,2908.300000000002,0.0,0.0,155.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +299,299,1609403228.6,42.5,31.0,155.0,117.652081,0.0,0.0,0.0,0.0,0.0,0.0,627.096774,80.931249,137.583123,4.2498190000000005,0.0,847.5999999046326,1.0,0.0,52.240611,6.8271289999999984,303.417106,144.779383,0.0,264.629699,134.885415,0.0,0.0,0.0,0.0,0.0,4.249818581619478,360.00000042678,611.99999939106,303,0.0,2916.6000000000017,0.0,0.0,155.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +300,300,1609403230.6,51.3,31.0,155.0,114.578191,0.0,0.0,0.0,0.0,0.0,0.0,596.129032,79.357586,136.683887,4.363832,0.0,849.5999999046326,1.0,0.0,52.240663,6.827032000000001,302.221649,128.508824,0.0,448.623092,125.993058,0.0,0.0,0.0,0.0,0.0,4.3638322060783805,353.00000119692004,607.99999983114,304,0.0,2925.4000000000024,0.0,0.0,155.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +301,301,1609403232.6,60.2,30.5,154.0,114.23805,0.0,0.0,0.0,0.0,0.0,0.0,609.836066,82.280103,140.280831,4.376825,0.0,851.5999999046326,1.0,0.0,52.240715,6.826933,300.990548,121.157083,0.0,240.04854100000003,126.43467,0.0,0.0,0.0,0.0,0.0,4.376825409747453,365.99999976666,623.9999980708202,305,0.0,2934.3000000000025,0.0,0.0,154.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +302,302,1609403234.6,68.6,30.0,155.0,115.477674,0.0,0.0,0.0,0.0,0.0,0.0,592.0,75.760641,139.156786,4.329841,0.0,853.5999999046326,1.0,0.0,52.240764,6.826839,299.639335,132.056838,0.0,235.175053,122.038953,0.0,0.0,0.0,0.0,0.0,4.329841281700912,336.9999985090201,618.9999986209201,306,0.0,2942.7000000000025,0.0,0.0,155.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +303,303,1609403236.6,77.5,30.5,156.0,117.027657,0.0,0.0,0.0,0.0,0.0,0.0,576.3934429999998,76.65987700000002,137.583123,4.272494,0.0,855.5999999046326,1.0,0.0,52.240816,6.826739999999999,298.122966,127.422709,0.0,416.143414,114.361273,0.0,0.0,0.0,0.0,0.0,4.272494321577335,340.99999806894004,611.99999939106,307,0.0,2951.6000000000026,0.0,0.0,156.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +304,304,1609403238.6,86.1,29.5,157.0,118.069128,0.0,0.0,0.0,0.0,0.0,0.0,561.355932,71.938888,123.869773,4.234807,0.0,857.5999999046326,1.0,0.0,52.240865,6.826642,294.310971,139.85188300000002,0.0,316.316684,117.418684,0.0,0.0,0.0,0.0,0.0,4.234807256304968,320.00000037936,551.0000016540599,308,0.0,2960.2000000000025,0.0,0.0,157.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +305,305,1609403240.4,93.6,31.0,158.0,118.591105,0.0,0.0,0.0,0.0,0.0,0.0,598.064516,78.683159,142.75373100000004,4.216168,0.0,859.4000000953674,1.0,0.0,52.240907,6.826556,292.417572,152.986758,0.0,264.629699,134.885415,0.0,0.0,0.0,0.0,0.0,4.2161678146097055,350.00000152698004,635.0000013088201,309,0.0,2967.7000000000025,0.0,0.0,158.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +306,306,1609403242.4,102.1,31.0,159.0,118.750135,0.0,0.0,0.0,0.0,0.0,0.0,570.967742,74.186978,137.807932,4.210522,0.0,861.4000000953674,1.0,0.0,52.240955,6.826460000000001,290.324852,159.23529399999995,0.0,408.810849,134.885415,0.0,0.0,0.0,0.0,0.0,4.210521529091314,329.99999927916,612.99999928104,310,0.0,2976.2000000000025,0.0,0.0,159.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +307,307,1609403244.4,110.5,31.0,160.0,118.553486,0.0,0.0,0.0,0.0,0.0,0.0,559.354839,74.186978,132.18770700000002,4.217506,0.0,863.4000000953674,1.0,0.0,52.241003000000006,6.8263630000000015,288.093907,158.652006,0.0,455.779031,134.885415,0.0,0.0,0.0,0.0,0.0,4.217505675033461,329.99999927916,588.0000020315401,311,0.0,2984.6000000000026,0.0,0.0,160.0,160.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +308,308,1609403246.4,119.1,31.0,162.0,118.38799,0.0,0.0,0.0,0.0,0.0,0.0,569.032258,75.760641,135.559842,4.223401,0.0,865.4000000953674,1.0,0.0,52.241052,6.826267,285.606723,146.695899,0.0,392.431512,109.675201,0.0,0.0,0.0,0.0,0.0,4.2234013771160415,336.9999985090201,603.00000038124,312,0.0,2993.2000000000025,0.0,0.0,0.0,162.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +309,309,1609403248.2,127.0,31.0,163.0,118.302242,0.0,0.0,0.0,0.0,0.0,0.0,563.2258059999998,75.31102299999998,135.784651,4.226463,0.0,867.2000000476837,1.0,0.0,52.241097,6.826178,282.799901,141.387714,0.0,421.209336,134.885415,0.0,0.0,0.0,0.0,0.0,4.22646258893386,334.99999872905994,604.00000027122,313,0.0,3001.1000000000026,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +310,310,1609403250.2,135.3,30.0,164.0,118.184937,0.0,0.0,0.0,0.0,0.0,0.0,606.0,76.435068,139.606404,4.230658,0.0,869.2000000476837,1.0,0.0,52.241144,6.826082,279.838678,138.78092,0.0,350.402149,112.924798,0.0,0.0,0.0,0.0,0.0,4.230657583715597,339.99999817896,620.99999840088,314,0.0,3009.4000000000033,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +311,311,1609403252.2,143.8,30.5,165.0,118.344148,0.0,0.0,0.0,0.0,0.0,0.0,570.491803,74.411787,133.536561,4.224966,0.0,871.2000000476837,1.0,0.0,52.241192,6.825985,276.538028,128.70290500000002,0.0,398.824632,109.715859,0.0,0.0,0.0,0.0,0.0,4.2249659864888285,330.99999916914004,594.00000137142,315,0.0,3017.9000000000033,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +312,312,1609403254.1,151.6,30.5,166.0,118.583452,0.0,0.0,0.0,0.0,0.0,0.0,586.229508,75.31102299999998,138.482359,4.21644,0.0,873.0999999046326,1.0,0.0,52.241236,6.825895,272.89204,127.607673,0.0,494.688017,134.885415,0.0,0.0,0.0,0.0,0.0,4.216439912712272,334.99999872905994,615.9999989509802,316,0.0,3025.700000000003,0.0,0.0,0.0,166.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +313,313,1609403256.2,160.8,31.0,167.0,118.447134,0.0,0.0,0.0,0.0,0.0,0.0,586.451613,77.109495,138.931977,4.221293,0.0,875.2000000476837,1.0,0.0,52.241286,6.825789,268.909279,137.306388,0.0,234.513075,109.498154,0.0,0.0,0.0,0.0,0.0,4.221292513502268,342.99999784889997,617.99999873094,317,0.0,3034.9000000000033,0.0,0.0,0.0,167.0,167.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +314,314,1609403258.2,169.3,29.5,167.0,118.316842,0.0,0.0,0.0,0.0,0.0,0.0,561.355932,73.062933,133.76137,4.2259410000000015,0.0,877.2000000476837,1.0,0.0,52.241333,6.825689,264.595192,138.674521,0.0,274.578857,134.885415,0.0,0.0,0.0,0.0,0.0,4.225941054106228,324.99999982926005,595.0000012614,318,0.0,3043.4000000000033,0.0,0.0,0.0,167.0,167.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +315,315,1609403260.0,7.1,31.0,168.0,117.344034,0.0,0.0,0.0,0.0,0.0,0.0,596.129032,79.132777,135.784651,4.260975,0.0,879.0,1.0,0.0,52.241371,6.8256070000000015,259.820289,141.66362800000005,0.0,304.551447,112.829694,0.0,0.0,0.0,0.0,0.0,4.26097504028198,352.00000130694,604.00000027122,319,0.0,3050.500000000003,0.0,0.0,0.0,0.0,168.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +316,316,1609403262.0,16.3,29.5,169.0,115.572701,0.0,0.0,0.0,0.0,0.0,0.0,199.322034,40.016006,74.861405,4.326281,0.0,881.0,1.0,0.0,52.241421,6.8254990000000015,237.949532,149.393976,0.0,274.578857,134.885415,0.0,0.0,0.0,0.0,0.0,4.3262811691144964,177.99999820931995,332.9999989491,320,0.0,3059.7000000000025,0.0,0.0,0.0,0.0,169.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +317,317,1609403262.0,16.3,29.5,169.0,115.350813,0.0,0.0,0.0,0.0,0.0,0.0,126.101695,25.853038,48.33394000000001,4.334603,0.0,881.0,1.0,0.0,52.241421,6.8254990000000015,235.555501,148.34071200000002,0.0,346.775467,127.029972,0.0,0.0,0.0,0.0,0.0,4.334603172671181,115.00000069236,214.9999985868,320,0.0,3059.7000000000025,0.0,0.0,0.0,0.0,169.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +318,318,1609403262.0,16.3,29.5,169.0,118.554761,0.0,0.0,0.0,0.0,0.0,0.0,77.288136,13.93816,28.325937,4.21746,0.0,881.0,1.0,0.0,52.241421,6.8254990000000015,235.954134,146.644501,0.0,459.997018,134.885415,0.0,0.0,0.0,0.0,0.0,4.217460317768259,62.0000020752,125.99999948213998,320,0.0,3059.7000000000025,0.0,0.0,0.0,0.0,169.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +319,319,1609403262.0,16.3,29.5,169.0,126.837855,0.0,0.0,0.0,0.0,0.0,0.0,573.559322,71.264461,136.908696,3.942041,0.0,881.0,1.0,0.0,52.241421,6.8254990000000015,255.77926800000003,135.991516,0.0,331.504248,92.134602,0.0,0.0,0.0,0.0,0.0,3.942040804773937,317.00000070942,608.9999997211198,320,0.0,3059.7000000000025,0.0,0.0,0.0,0.0,169.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +320,320,1609403273.2,52.4,35.0,171.0,141.581215,0.0,0.0,0.0,0.0,0.0,0.0,483.428571,71.264461,136.908696,3.531542,0.0,892.2000000476837,1.0,0.0,52.241614,6.825073,258.532218,127.216604,0.0,360.431847,75.87745799999998,0.0,0.0,0.0,0.0,0.0,3.5315419492621247,317.00000070942,608.9999997211198,327,0.0,3095.8000000000025,0.0,0.0,0.0,0.0,171.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +321,321,1609403274.2,55.2,39.0,171.0,157.852914,0.0,0.0,0.0,0.0,0.0,0.0,173.846154,45.861041,85.87704699999998,3.167506,0.0,893.2000000476837,1.0,0.0,52.24163,6.8250410000000015,260.698013,122.927503,0.0,218.3508,37.050569,0.0,0.0,0.0,0.0,0.0,3.1675056692333214,203.99999979702,381.99999800634004,327,0.0,3098.6000000000026,0.0,0.0,0.0,0.0,171.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +322,322,1609403278.0,65.7,17.5,171.0,167.685709,0.0,0.0,0.0,0.0,0.0,0.0,414.857143,47.884322,104.536197,2.981769,0.0,897.0,1.0,0.0,52.241687,6.824919,262.38644300000004,121.035009,0.0,152.538533,74.91050899999998,0.0,0.0,0.0,0.0,0.0,2.9817687087454776,212.99999880683998,465.00000221934005,328,0.0,3109.1000000000026,0.0,0.0,0.0,0.0,171.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +323,323,1609403281.2,76.2,17.0,170.0,170.376838,0.0,0.0,0.0,0.0,0.0,0.0,331.764706,39.341579,79.58239499999998,2.934671,0.0,900.2000000476837,1.0,0.0,52.241743,6.824795,263.64957400000003,137.643517,0.0,143.568123,71.383445,0.0,0.0,0.0,0.0,0.0,2.934671202197097,174.99999853938,354.00000108689994,329,0.0,3119.6000000000026,0.0,0.0,0.0,0.0,170.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +324,324,1609403284.6,86.2,17.5,171.0,169.78517,0.0,0.0,0.0,0.0,0.0,0.0,322.2857140000001,-0.674427,1.348854,2.944898,0.0,903.5999999046326,1.0,0.0,52.241796,6.824677,247.874747,156.522617,0.0,82.70320799999998,38.843425,0.0,0.0,0.0,0.0,0.0,2.9448979554574763,-2.99999966994,5.99999933988,330,0.0,3129.6000000000026,0.0,0.0,0.0,0.0,171.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +325,325,1609403287.6,86.2,17.5,171.0,171.336659,0.0,0.0,0.0,0.0,0.0,0.0,294.857143,35.74463499999999,69.01637099999999,2.918231,0.0,906.5999999046326,1.0,0.0,52.241796,6.824677,268.28229,178.361186,0.0,139.47681699999998,65.17246899999999,0.0,0.0,0.0,0.0,0.0,2.9182312933976378,159.0000002997,307.00000180962,331,0.0,3129.6000000000026,0.0,0.0,0.0,0.0,171.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +326,326,1609403290.6,101.9,10.0,168.0,177.496217,0.0,0.0,0.0,0.0,0.0,0.0,642.0,41.140052,85.652238,2.816961,0.0,909.5999999046326,1.0,0.0,52.241881,6.824493,271.631971,182.999081,0.0,212.527839,56.284775,0.0,0.0,0.0,0.0,0.0,2.816961445437453,183.00000210744003,380.99999811636,332,0.0,3145.3000000000025,0.0,0.0,0.0,0.0,168.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +327,327,1609403294.0,110.5,17.5,167.0,183.552681,0.0,0.0,0.0,0.0,0.0,0.0,363.428571,43.83776,85.87704699999998,2.724014,0.0,913.0,1.0,0.0,52.241926,6.824391,274.644579,193.518772,0.0,189.993187,52.493579,0.0,0.0,0.0,0.0,0.0,2.7240136034842224,195.0000007872,381.99999800634004,333,0.0,3153.9000000000024,0.0,0.0,0.0,167.0,167.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +328,328,1609403297.4,120.0,17.5,166.0,184.24131,0.0,0.0,0.0,0.0,0.0,0.0,397.714286,46.535468,96.218263,2.713832,0.0,916.4000000953674,1.0,0.0,52.241976,6.824279,277.29595,190.67565,0.0,109.197525,51.828918,0.0,0.0,0.0,0.0,0.0,2.71383220190955,206.99999946696,428.00000184186007,334,0.0,3163.4000000000024,0.0,0.0,0.0,166.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +329,329,1609403300.8,130.0,17.5,166.0,180.403515,0.0,0.0,0.0,0.0,0.0,0.0,373.714286,43.612951,91.272464,2.7715650000000003,0.0,919.7999999523163,1.0,0.0,52.24202800000001,6.8241580000000015,279.733755,179.823454,0.0,116.567696,55.597798,0.0,0.0,0.0,0.0,0.0,2.7715646227846498,194.00000089722,405.99999981407996,335,0.0,3173.4000000000024,0.0,0.0,0.0,166.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +330,330,1609403304.2,139.9,18.0,165.0,174.797457,0.0,0.0,0.0,0.0,0.0,0.0,416.666667,48.558749,96.667881,2.8604540000000003,0.0,923.2000000476837,1.0,0.0,52.24208,6.824041,281.859849,161.312578,0.0,128.995973,60.016815,0.0,0.0,0.0,0.0,0.0,2.860453513348309,215.99999847678,430.00000162182005,336,0.0,3183.3000000000025,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +331,331,1609403307.6,150.0,18.0,165.0,169.96184499999995,0.0,0.0,0.0,0.0,0.0,0.0,410.0,50.357222,97.117499,2.941837,0.0,926.5999999046326,1.0,0.0,52.242132,6.823919,283.7149970000001,155.011595,0.0,141.106176,65.442268,0.0,0.0,0.0,0.0,0.0,2.9418367398871204,224.00000204484002,432.00000140178,337,0.0,3193.4000000000024,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +332,332,1609403311.0,159.9,17.5,164.0,166.910156,0.0,0.0,0.0,0.0,0.0,0.0,397.714286,46.535468,90.822846,2.9956240000000003,0.0,930.0,1.0,0.0,52.242182,6.823798,285.427807,157.822882,0.0,102.76214,48.598983,0.0,0.0,0.0,0.0,0.0,2.9956235856612583,206.99999946696,404.00000003412003,338,0.0,3203.3000000000025,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +333,333,1609403314.2,170.4,17.5,163.0,165.078272,0.0,0.0,0.0,0.0,0.0,0.0,404.571429,48.783558,97.117499,3.028866,0.0,933.2000000476837,1.0,0.0,52.242234,6.8236690000000015,286.948233,162.160232,0.0,139.607788,66.02995899999999,0.0,0.0,0.0,0.0,0.0,3.028866209600256,216.99999836676002,432.00000140178,339,0.0,3213.8000000000025,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +334,334,1609403317.8,181.3,17.5,162.0,163.78708400000005,0.0,0.0,0.0,0.0,0.0,0.0,418.285714,49.682794,99.815207,3.052744,0.0,936.7999999523163,1.0,0.0,52.242287,6.823536,288.3533950000001,164.899023,0.0,158.653298,74.559731,0.0,0.0,0.0,0.0,0.0,3.0527437682448757,220.99999792667998,444.00000008154007,340,0.0,3224.7000000000025,0.0,0.0,0.0,162.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +335,335,1609403321.2,191.7,17.5,161.0,163.265608,0.0,0.0,0.0,0.0,0.0,0.0,414.857143,49.008367,98.691162,3.062494,0.0,940.2000000476837,1.0,0.0,52.242339,6.823409,289.584775,188.653635,0.0,88.943978,40.648083,0.0,0.0,0.0,0.0,0.0,3.0624943374479696,217.99999825673999,439.00000063164003,341,0.0,3235.1000000000026,0.0,0.0,0.0,161.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +336,336,1609403324.4,201.6,18.0,160.0,163.725061,0.0,0.0,0.0,0.0,0.0,0.0,400.0,46.310659,97.117499,3.0539,0.0,943.4000000953674,1.0,0.0,52.242388,6.823288000000002,290.654551,174.68408300000004,0.0,291.925434,72.913037,0.0,0.0,0.0,0.0,0.0,3.0539002211762796,205.99999957698003,432.00000140178,342,0.0,3245.000000000003,0.0,0.0,160.0,160.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +337,337,1609403327.8,212.0,17.5,158.0,165.183387,0.0,0.0,0.0,0.0,0.0,0.0,408.0,47.659513,97.117499,3.026939,0.0,946.7999999523163,1.0,0.0,52.24243900000001,6.8231600000000014,293.674123,162.42898200000005,0.0,231.609871,54.77539,0.0,0.0,0.0,0.0,0.0,3.0269387804719123,211.99999891686002,432.00000140178,343,0.0,3255.4000000000033,0.0,0.0,158.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +338,338,1609403331.2,222.1,18.0,157.0,167.12268500000005,0.0,0.0,0.0,0.0,0.0,0.0,436.666667,51.706076,99.365589,2.991814,0.0,950.2000000476837,1.0,0.0,52.242488,6.823035000000001,296.358447,167.174569,0.0,159.768306,50.745299,0.0,0.0,0.0,0.0,0.0,2.9918140676114677,230.00000138472,442.00000030158,344,0.0,3265.500000000003,0.0,0.0,157.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +339,339,1609403334.6,232.4,18.0,156.0,167.925793,0.0,0.0,0.0,0.0,0.0,0.0,406.666667,50.132413,97.342308,2.977506,0.0,953.5999999046326,1.0,0.0,52.242538,6.822907000000002,298.78488,165.492161,0.0,163.93794,39.439186,0.0,0.0,0.0,0.0,0.0,2.977505665255366,223.00000215486,433.00000129176004,345,0.0,3275.800000000003,0.0,0.0,156.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +340,340,1609403337.6,241.6,18.5,155.0,165.237853,0.0,0.0,0.0,0.0,0.0,0.0,541.621622,63.171336,123.869773,3.025941,0.0,956.5999999046326,1.0,0.0,52.242583,6.822794,298.894623,165.287373,0.0,176.447475,39.869744,0.0,0.0,0.0,0.0,0.0,3.0259410354357485,281.00000022192,551.0000016540599,345,0.0,3285.000000000003,0.0,0.0,155.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +341,341,1609403340.4,9.6,22.5,155.0,157.613707,0.0,0.0,0.0,0.0,0.0,0.0,645.333333,73.512551,141.404877,3.172313,0.0,959.4000000953674,1.0,0.0,52.242628,6.822675,299.002548,160.069977,0.0,186.587875,42.499364,0.0,0.0,0.0,0.0,0.0,3.172312925804099,326.99999960922,629.0000019689401,347,0.0,3294.6000000000026,0.0,0.0,155.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +342,342,1609403342.4,17.2,28.5,155.0,146.331752,0.0,0.0,0.0,0.0,0.0,0.0,648.421053,80.931249,146.80029299999995,3.416893,0.0,961.4000000953674,1.0,0.0,52.242665,6.822581,299.049144,153.294349,0.0,217.355358,60.452911,0.0,0.0,0.0,0.0,0.0,3.4168934162696285,360.00000042678,652.9999993284598,347,0.0,3302.2000000000025,0.0,0.0,155.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +343,343,1609403344.4,25.4,29.5,154.0,134.768418,0.0,0.0,0.0,0.0,0.0,0.0,630.508475,81.605676,143.877776,3.710068,0.0,963.4000000953674,1.0,0.0,52.24270300000001,6.822479,299.068062,149.35228899999996,0.0,280.515052,116.27013,0.0,0.0,0.0,0.0,0.0,3.71006803686009,363.00000009672,640.00000075872,348,0.0,3310.4000000000024,0.0,0.0,154.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +344,344,1609403346.4,33.8,31.0,154.0,125.683995,0.0,0.0,0.0,0.0,0.0,0.0,617.419355,79.357586,143.428158,3.978231,0.0,965.4000000953674,1.0,0.0,52.242743,6.8223720000000005,299.069776,143.800314,0.0,235.70744900000003,90.465123,0.0,0.0,0.0,0.0,0.0,3.978231277578343,353.00000119692004,638.00000097876,349,0.0,3318.8000000000025,0.0,0.0,154.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +345,345,1609403348.4,42.4,31.0,154.0,120.151702,0.0,0.0,0.0,0.0,0.0,0.0,632.903226,82.280103,144.327394,4.161406,0.0,967.4000000953674,1.0,0.0,52.242782,6.822265,301.135496,140.443173,0.0,264.629699,134.885415,0.0,0.0,0.0,0.0,0.0,4.1614058867014645,365.99999976666,642.00000053868,351,0.0,3327.4000000000024,0.0,0.0,154.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +346,346,1609403350.2,50.1,31.0,154.0,117.492847,0.0,0.0,0.0,0.0,0.0,0.0,625.16129,80.48163100000002,147.92433799999995,4.255578,0.0,969.2000000476837,1.0,0.0,52.242818,6.8221690000000015,300.906539,137.216074,0.0,328.570204,112.376605,0.0,0.0,0.0,0.0,0.0,4.255578214050767,358.00000064682,657.9999987783599,351,0.0,3335.1000000000017,0.0,0.0,154.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +347,347,1609403352.2,58.8,32.0,155.0,116.439948,0.0,0.0,0.0,0.0,0.0,0.0,600.0,78.233541,140.05602199999998,4.294059,0.0,971.2000000476837,1.0,0.0,52.242859,6.8220600000000005,300.668706,135.078595,0.0,259.407238,134.885415,0.0,0.0,0.0,0.0,0.0,4.2940589427264255,348.00000174702,622.9999981808401,353,0.0,3343.800000000002,0.0,0.0,155.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +348,348,1609403354.0,66.6,31.0,156.0,116.075236,0.0,0.0,0.0,0.0,0.0,0.0,590.322581,76.884686,138.707168,4.307551,0.0,973.0,1.0,0.0,52.242895,6.821961,300.407288,133.719037,0.0,347.45571,116.739971,0.0,0.0,0.0,0.0,0.0,4.307551009415996,341.99999795892,616.99999884096,353,0.0,3351.6000000000017,0.0,0.0,156.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +349,349,1609403356.0,74.7,31.0,157.0,115.706729,0.0,0.0,0.0,0.0,0.0,0.0,605.8064519999998,77.109495,140.280831,4.321269999999998,0.0,975.0,1.0,0.0,52.242931,6.821858,300.1487410000001,127.191117,0.0,427.936301,117.891732,0.0,0.0,0.0,0.0,0.0,4.321269854582097,342.99999784889997,623.9999980708202,354,0.0,3359.7000000000016,0.0,0.0,157.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +350,350,1609403358.0,84.0,30.0,159.0,115.356848,0.0,0.0,0.0,0.0,0.0,0.0,622.0,79.132777,139.606404,4.334376,0.0,977.0,1.0,0.0,52.242972,6.821738000000002,300.012823,128.007194,0.0,264.699144,134.885415,0.0,0.0,0.0,0.0,0.0,4.334376403904518,352.00000130694,620.99999840088,355,0.0,3369.0000000000023,0.0,0.0,159.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +351,351,1609403360.0,92.5,32.0,160.0,115.466185,0.0,0.0,0.0,0.0,0.0,0.0,594.375,81.156058,134.435797,4.330272,0.0,979.0,1.0,0.0,52.243009,6.82163,299.788459,121.534278,0.0,264.138757,134.885415,0.0,0.0,0.0,0.0,0.0,4.33027210520552,361.00000031676,598.0000009313401,357,0.0,3377.5000000000023,0.0,0.0,160.0,160.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +352,352,1609403362.0,100.2,32.0,161.0,115.777204,0.0,0.0,0.0,0.0,0.0,0.0,643.125,82.280103,143.428158,4.318639,0.0,981.0,1.0,0.0,52.243043,6.8215309999999985,299.642968,124.623698,0.0,274.583571,134.885415,0.0,0.0,0.0,0.0,0.0,4.318639444773602,365.99999976666,638.00000097876,358,0.0,3385.2000000000016,0.0,0.0,0.0,161.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +353,353,1609403363.6,107.9,32.0,161.0,116.030036,0.0,0.0,0.0,0.0,0.0,0.0,633.75,81.156058,141.180068,4.309229,0.0,982.5999999046326,1.0,0.0,52.243077,6.8214320000000015,299.5113120000001,127.986411,0.0,274.583571,134.885415,0.0,0.0,0.0,0.0,0.0,4.309229034454492,361.00000031676,628.0000020789599,358,0.0,3392.900000000002,0.0,0.0,0.0,161.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +354,354,1609403365.4,115.8,33.5,162.0,116.209208,0.0,0.0,0.0,0.0,0.0,0.0,610.7462690000001,79.357586,146.125866,4.302585,0.0,984.4000000953674,1.0,0.0,52.243111,6.821331,299.292305,125.607743,0.0,269.261878,134.885415,0.0,0.0,0.0,0.0,0.0,4.302585041281755,353.00000119692004,649.9999996585201,359,0.0,3400.800000000002,0.0,0.0,0.0,162.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +355,355,1609403367.2,123.9,32.5,163.0,115.866635,0.0,0.0,0.0,0.0,0.0,0.0,627.692308,82.280103,138.032741,4.315306,0.0,986.2000000476837,1.0,0.0,52.243146,6.8212259999999985,299.150445,129.552332,0.0,478.251752,119.869568,0.0,0.0,0.0,0.0,0.0,4.315306127600927,365.99999976666,613.9999991710199,360,0.0,3408.900000000002,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +356,356,1609403369.0,131.8,33.5,165.0,115.238683,0.0,0.0,0.0,0.0,0.0,0.0,589.2537309999999,78.683159,140.50564,4.338821,0.0,988.0,1.0,0.0,52.24318,6.821125,299.067626,127.520456,0.0,275.34641400000004,134.885415,0.0,0.0,0.0,0.0,0.0,4.338820845427398,350.00000152698004,624.9999979608,361,0.0,3416.800000000002,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +357,357,1609403371.0,139.8,32.5,166.0,114.780979,0.0,0.0,0.0,0.0,0.0,0.0,540.9230769999998,70.140416,116.226266,4.356122,0.0,990.0,1.0,0.0,52.243215,6.8210229999999985,298.927102,131.137031,0.0,524.535574,134.885415,0.0,0.0,0.0,0.0,0.0,4.356122454749231,312.00000125952005,517.00000094652,363,0.0,3424.800000000002,0.0,0.0,0.0,166.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +358,358,1609403372.6,147.5,33.5,167.0,114.48182,0.0,0.0,0.0,0.0,0.0,0.0,605.3731339999998,79.807204,140.50564,4.367506,0.0,991.5999999046326,1.0,0.0,52.243249,6.8209240000000015,298.7826120000001,139.116391,0.0,275.34641400000004,134.885415,0.0,0.0,0.0,0.0,0.0,4.367505687802657,355.00000097687996,624.9999979608,363,0.0,3432.500000000002,0.0,0.0,0.0,167.0,167.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +359,359,1609403374.4,155.4,33.5,168.0,114.266466,0.0,0.0,0.0,0.0,0.0,0.0,592.835821,80.48163100000002,142.079304,4.375737,0.0,993.4000000953674,1.0,0.0,52.243284,6.820824000000001,298.586162,135.246999,0.0,408.302732,128.479003,0.0,0.0,0.0,0.0,0.0,4.3757369725602615,358.00000064682,632.00000163888,364,0.0,3440.400000000002,0.0,0.0,0.0,0.0,168.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +360,360,1609403376.2,163.3,32.0,169.0,113.484887,0.0,0.0,0.0,0.0,0.0,0.0,611.25,77.55911400000002,133.986179,4.4058730000000015,0.0,995.2000000476837,1.0,0.0,52.243318,6.820722,298.430289,129.377523,0.0,441.981143,117.92006299999998,0.0,0.0,0.0,0.0,0.0,4.4058730040414975,345.00000207708007,596.0000011513798,365,0.0,3448.300000000002,0.0,0.0,0.0,0.0,169.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +361,361,1609403378.0,171.6,32.5,170.0,111.846043,0.0,0.0,0.0,0.0,0.0,0.0,594.461538,77.55911400000002,134.885415,4.470431,0.0,997.0,1.0,0.0,52.243354,6.820616,298.244433,120.153741,0.0,474.225983,121.616028,0.0,0.0,0.0,0.0,0.0,4.47043084036509,345.00000207708007,600.0000007113,366,0.0,3456.6000000000017,0.0,0.0,0.0,0.0,170.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +362,362,1609403380.0,179.6,33.0,170.0,111.199645,0.0,0.0,0.0,0.0,0.0,0.0,554.545455,74.186978,137.583123,4.496417,0.0,999.0,1.0,0.0,52.243389,6.820513,297.985301,110.364167,0.0,480.827381,123.416333,0.0,0.0,0.0,0.0,0.0,4.496417232267244,329.99999927916,611.99999939106,367,0.0,3464.6000000000017,0.0,0.0,0.0,0.0,170.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +363,363,1609403381.8,8.6,32.0,171.0,114.539504,0.0,0.0,0.0,0.0,0.0,0.0,320.625,43.83776,78.45835,4.365306,0.0,1000.7999999523163,1.0,0.0,52.243425,6.8204020000000005,297.805954,109.669179,0.0,319.724335,134.885415,0.0,0.0,0.0,0.0,0.0,4.365306139268771,195.0000007872,349.00000163699997,368,0.0,3473.2000000000016,0.0,0.0,0.0,0.0,171.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +364,364,1609403385.4,20.8,20.5,172.0,125.129101,0.0,0.0,0.0,0.0,0.0,0.0,87.804878,12.364496,24.728993,3.995873000000001,0.0,1004.4000000953674,1.0,0.0,52.243477,6.820243,297.554195,106.144579,0.0,469.06749,124.926221,0.0,0.0,0.0,0.0,0.0,3.995873030367252,54.99999839712,110.00000124246,370,0.0,3485.400000000002,0.0,0.0,0.0,0.0,172.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +365,365,1609403387.8,27.6,19.0,173.0,145.836227,0.0,0.0,0.0,0.0,0.0,0.0,132.63157900000002,19.108767,34.395781,3.428503,0.0,1006.7999999523163,1.0,0.0,52.243505,6.8201550000000015,297.304165,117.077307,0.0,228.439881,115.376119,0.0,0.0,0.0,0.0,0.0,3.4285033992274085,84.99999954474,153.00000095982,370,0.0,3492.2000000000016,0.0,0.0,0.0,0.0,173.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +366,366,1609403391.2,35.3,17.5,174.0,175.799469,0.0,0.0,0.0,0.0,0.0,0.0,123.428571,17.535104,32.3725,2.84415,0.0,1010.2000000476837,1.0,0.0,52.243535,6.820053,297.207761,124.543166,0.0,229.488834,60.336283,0.0,0.0,0.0,0.0,0.0,2.8441496600879947,78.00000031488001,144.00000195,371,0.0,3499.900000000002,0.0,0.0,0.0,0.0,174.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +367,367,1609403395.0,43.5,17.0,174.0,205.013296,0.0,0.0,0.0,0.0,0.0,0.0,204.705882,26.977083,49.008367,2.438866,0.0,1014.0,1.0,0.0,52.243569,6.819946000000002,297.024255,135.704175,0.0,118.303392,26.111147,0.0,0.0,0.0,0.0,0.0,2.4388662089506625,120.00000014226002,217.99999825673999,372,0.0,3508.1000000000013,0.0,0.0,0.0,0.0,174.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +368,368,1609403398.1,51.3,17.0,174.0,218.721792,0.0,0.0,0.0,0.0,0.0,0.0,225.882353,27.65151,53.279739,2.286009,0.0,1017.0999999046326,1.0,0.0,52.243602,6.819845,296.7604790000001,155.51445800000005,0.0,123.936444,27.474417,0.0,0.0,0.0,0.0,0.0,2.2860090685431107,122.99999981219999,237.00000061457996,373,0.0,3515.900000000002,0.0,0.0,0.0,0.0,174.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +369,369,1609403401.8,60.2,17.0,173.0,215.33834,0.0,0.0,0.0,0.0,0.0,0.0,268.235294,34.170972,73.73736,2.321927,0.0,1020.7999999523163,1.0,0.0,52.243637,6.819728,296.638748,181.903884,0.0,78.00964599999998,34.744796,0.0,0.0,0.0,0.0,0.0,2.321927437538527,152.00000106983998,327.9999994992,374,0.0,3524.800000000002,0.0,0.0,0.0,0.0,173.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +370,370,1609403405.2,68.8,17.0,172.0,205.938116,0.0,0.0,0.0,0.0,0.0,0.0,285.882353,35.519826,65.86904399999999,2.427914,0.0,1024.2000000476837,1.0,0.0,52.243673,6.819616000000001,296.464404,205.818771,0.0,78.598054,37.905605,0.0,0.0,0.0,0.0,0.0,2.4279138301915903,158.00000040972,292.99999890167993,375,0.0,3533.400000000002,0.0,0.0,0.0,0.0,172.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +371,371,1609403408.8,78.1,17.0,171.0,198.123888,0.0,0.0,0.0,0.0,0.0,0.0,314.1176470000001,38.442343,80.032013,2.523673,0.0,1027.7999999523163,1.0,0.0,52.243712,6.819496000000001,296.172229,207.455423,0.0,171.672499,42.400522,0.0,0.0,0.0,0.0,0.0,2.5236734704095856,170.99999897946,356.00000086686003,376,0.0,3542.7000000000016,0.0,0.0,0.0,0.0,171.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +372,372,1609403412.4,87.4,17.0,170.0,192.775087,0.0,0.0,0.0,0.0,0.0,0.0,321.176471,38.217534,78.90796800000003,2.593696,0.0,1031.4000000953674,1.0,0.0,52.24375,6.819374000000002,295.948251,199.043424,0.0,100.063261,47.642331,0.0,0.0,0.0,0.0,0.0,2.5936961449795635,169.99999908948,351.00000141696006,377,0.0,3552.0000000000023,0.0,0.0,0.0,0.0,170.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +373,373,1609403416.0,97.0,16.5,169.0,187.913858,0.0,0.0,0.0,0.0,0.0,0.0,367.272727,44.062569,89.024374,2.660794,0.0,1035.0,1.0,0.0,52.24379,6.819249,295.693457,180.404917,0.0,200.375306,52.66769100000001,0.0,0.0,0.0,0.0,0.0,2.6607936493965227,196.00000067718003,396.00000091428,378,0.0,3561.6000000000017,0.0,0.0,0.0,0.0,169.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +374,374,1609403419.4,106.9,17.0,168.0,182.593574,0.0,0.0,0.0,0.0,0.0,0.0,384.705882,45.636232,86.77628399999998,2.738322,0.0,1038.4000000953674,1.0,0.0,52.243831,6.81912,295.246611,165.99926299999996,0.0,210.261495,53.799919,0.0,0.0,0.0,0.0,0.0,2.738321995931796,202.99999990703998,386.00000201448,379,0.0,3571.5000000000023,0.0,0.0,0.0,0.0,168.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +375,375,1609403422.8,116.5,18.5,167.0,177.813977,0.0,0.0,0.0,0.0,0.0,0.0,389.189189,46.985086,90.822846,2.811927,0.0,1041.7999999523163,1.0,0.0,52.243867,6.818992999999999,295.0071890000001,170.678786,0.0,144.035251,36.205753,0.0,0.0,0.0,0.0,0.0,2.81192743357852,208.99999924692003,404.00000003412003,380,0.0,3581.1000000000017,0.0,0.0,0.0,167.0,167.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +376,376,1609403426.2,126.2,17.5,166.0,174.632717,0.0,0.0,0.0,0.0,0.0,0.0,373.714286,44.961805,93.520554,2.863152,0.0,1045.2000000476837,1.0,0.0,52.243905,6.818864,294.660923,153.911622,0.0,150.090936,37.9364,0.0,0.0,0.0,0.0,0.0,2.8631519258788147,200.00000023709998,415.99999871388,381,0.0,3590.800000000002,0.0,0.0,0.0,166.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +377,377,1609403429.6,136.4,17.0,165.0,173.093227,0.0,0.0,0.0,0.0,0.0,0.0,384.705882,44.062569,87.450711,2.888617,0.0,1048.5999999046326,1.0,0.0,52.243944,6.8187289999999985,294.333505,152.83418400000005,0.0,111.264801,52.678721,0.0,0.0,0.0,0.0,0.0,2.8886167799043925,196.00000067718003,389.00000168442,382,0.0,3601.000000000002,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +378,378,1609403433.2,146.9,17.5,164.0,172.812414,0.0,0.0,0.0,0.0,0.0,0.0,380.571429,44.512187,88.799565,2.893311,0.0,1052.2000000476837,1.0,0.0,52.24398400000001,6.818589,294.018611,144.405223,0.0,225.81884,63.545604,0.0,0.0,0.0,0.0,0.0,2.893310662276843,198.00000045714,395.0000010243,383,0.0,3611.500000000002,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +379,379,1609403436.4,156.4,17.5,163.0,172.778561,0.0,0.0,0.0,0.0,0.0,0.0,370.285714,43.388142,89.698801,2.893878,0.0,1055.4000000953674,1.0,0.0,52.244021,6.818464,293.597526,137.33588400000002,0.0,161.134523,63.582612,0.0,0.0,0.0,0.0,0.0,2.893877556949904,193.00000100724,399.00000058422006,384,0.0,3621.000000000002,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +380,380,1609403440.0,166.2,18.0,161.0,171.82934,0.0,0.0,0.0,0.0,0.0,0.0,426.666667,51.256458,98.016735,2.909864,0.0,1059.0,1.0,0.0,52.244057,6.818333,293.161867,130.899518,0.0,194.118937,63.310786,0.0,0.0,0.0,0.0,0.0,2.909863938254084,228.00000160476003,436.0000009617,385,0.0,3630.800000000002,0.0,0.0,0.0,161.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +381,381,1609403443.1,175.9,18.0,161.0,169.872807,0.0,0.0,0.0,0.0,0.0,0.0,396.666667,46.985086,95.543836,2.943379,0.0,1062.0999999046326,1.0,0.0,52.244091,6.818202,292.743376,127.457951,0.0,232.709653,65.545063,0.0,0.0,0.0,0.0,0.0,2.943378689209509,208.99999924692003,425.00000217192,386,0.0,3640.500000000002,0.0,0.0,0.0,161.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +382,382,1609403446.6,186.3,17.5,160.0,168.266663,0.0,0.0,0.0,0.0,0.0,0.0,408.0,46.760277,95.993454,2.971474,0.0,1065.5999999046326,1.0,0.0,52.244125,6.818060000000001,292.353332,136.258827,0.0,88.76315600000002,40.489085,0.0,0.0,0.0,0.0,0.0,2.9714739157809293,207.99999935694,427.00000195187994,387,0.0,3650.900000000002,0.0,0.0,160.0,160.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +383,383,1609403449.8,196.1,18.0,159.0,168.094773,0.0,0.0,0.0,0.0,0.0,0.0,413.333333,49.457985,100.714443,2.974512,0.0,1068.7999999523163,1.0,0.0,52.244158,6.817925999999999,291.995872,142.036664,0.0,189.349201,67.620612,0.0,0.0,0.0,0.0,0.0,2.974512479338069,219.9999980367,447.99999964145997,388,0.0,3660.7000000000016,0.0,0.0,159.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +384,384,1609403453.0,205.7,18.5,158.0,168.617945,0.0,0.0,0.0,0.0,0.0,0.0,366.486486,42.938524,100.714443,2.9652830000000003,0.0,1072.0,1.0,0.0,52.244188,6.817794,291.766069,162.31676000000004,0.0,92.538718,40.565176,0.0,0.0,0.0,0.0,0.0,2.965283440027691,191.00000122728,447.99999964145997,389,0.0,3670.300000000002,0.0,0.0,158.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +385,385,1609403456.2,215.2,19.0,157.0,167.74821799999995,0.0,0.0,0.0,0.0,0.0,0.0,388.421053,46.535468,98.691162,2.980658,0.0,1075.2000000476837,1.0,0.0,52.244222,6.817666,291.349518,171.336061,0.0,155.377985,62.778234,0.0,0.0,0.0,0.0,0.0,2.9806575948246437,206.99999946696,439.00000063164003,390,0.0,3679.800000000002,0.0,0.0,157.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +386,386,1609403459.4,9.9,19.0,156.0,163.032629,0.0,0.0,0.0,0.0,0.0,0.0,678.947368,76.884686,145.901057,3.066871,0.0,1078.4000000953674,1.0,0.0,52.244255,6.817531,290.976039,164.11516799999995,0.0,218.975342,65.322372,0.0,0.0,0.0,0.0,0.0,3.066870742788549,341.99999795892,648.9999997685401,391,0.0,3689.7000000000016,0.0,0.0,156.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +387,387,1609403461.6,17.9,27.5,155.0,153.6746,0.0,0.0,0.0,0.0,0.0,0.0,576.0,72.163697,131.28847,3.253628,0.0,1080.5999999046326,1.0,0.0,52.24428,6.8174220000000005,290.634571,171.638149,0.0,122.271166,55.396828,0.0,0.0,0.0,0.0,0.0,3.253628120717412,321.00000026934,583.9999980233999,392,0.0,3697.7000000000016,0.0,0.0,155.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +388,388,1609403463.6,25.4,29.5,155.0,142.554209,0.0,0.0,0.0,0.0,0.0,0.0,608.135593,74.186978,142.304113,3.507438,0.0,1082.5999999046326,1.0,0.0,52.244305,6.817317999999998,290.255856,159.986351,0.0,308.073197,85.5879,0.0,0.0,0.0,0.0,0.0,3.5074376513148064,329.99999927916,633.0000015288599,393,0.0,3705.2000000000016,0.0,0.0,155.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +389,389,1609403465.6,33.6,31.0,154.0,133.227798,0.0,0.0,0.0,0.0,0.0,0.0,563.2258059999998,72.163697,140.50564,3.752971,0.0,1084.5999999046326,1.0,0.0,52.24433,6.817207000000002,289.904621,161.742346,0.0,195.49816,73.298321,0.0,0.0,0.0,0.0,0.0,3.752970532471009,321.00000026934,624.9999979608,394,0.0,3713.400000000002,0.0,0.0,154.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +390,390,1609403467.6,41.7,29.5,153.0,126.905744,0.0,0.0,0.0,0.0,0.0,0.0,571.525424,73.96216899999997,138.707168,3.939932,0.0,1086.5999999046326,1.0,0.0,52.244355,6.817095,289.5291640000001,150.054627,0.0,426.800312,120.122144,0.0,0.0,0.0,0.0,0.0,3.9399319860573057,328.99999938917995,616.99999884096,395,0.0,3721.500000000002,0.0,0.0,153.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +391,391,1609403469.6,49.9,29.5,153.0,123.67075,0.0,0.0,0.0,0.0,0.0,0.0,595.9322030000002,75.535832,135.559842,4.042993,0.0,1088.5999999046326,1.0,0.0,52.24438,6.816981,289.180539,137.212637,0.0,350.036803,99.937942,0.0,0.0,0.0,0.0,0.0,4.042993189577972,335.99999861904,603.00000038124,396,0.0,3729.700000000001,0.0,0.0,153.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +392,392,1609403471.6,58.1,29.5,153.0,122.834382,0.0,0.0,0.0,0.0,0.0,0.0,593.8983049999998,77.783923,138.707168,4.070522,0.0,1090.5999999046326,1.0,0.0,52.244404,6.816867,288.851541,128.78498000000002,0.0,274.578857,134.885415,0.0,0.0,0.0,0.0,0.0,4.070521558043903,346.0000019670601,616.99999884096,397,0.0,3737.900000000001,0.0,0.0,153.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +393,393,1609403473.6,66.4,30.0,155.0,122.866552,0.0,0.0,0.0,0.0,0.0,0.0,596.0,77.334305,142.75373100000004,4.069456,0.0,1092.5999999046326,1.0,0.0,52.244427,6.816752,288.504495,121.637152,0.0,196.125319,99.407144,0.0,0.0,0.0,0.0,0.0,4.069455778330949,344.0000021871,635.0000013088201,398,0.0,3746.200000000001,0.0,0.0,155.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +394,394,1609403475.6,74.8,30.5,155.0,122.906274,0.0,0.0,0.0,0.0,0.0,0.0,572.459016,76.884686,137.35831399999998,4.068141000000002,0.0,1094.5999999046326,1.0,0.0,52.244449,6.8166350000000016,288.24854,119.918983,0.0,357.953805,103.65577,0.0,0.0,0.0,0.0,0.0,4.068140573523529,341.99999795892,610.99999950108,399,0.0,3754.6000000000013,0.0,0.0,155.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +395,395,1609403477.6,83.0,29.5,156.0,122.831645,0.0,0.0,0.0,0.0,0.0,0.0,589.830508,76.210259,139.606404,4.0706120000000015,0.0,1096.5999999046326,1.0,0.0,52.244471,6.81652,287.987784,121.180424,0.0,301.509744,134.885415,0.0,0.0,0.0,0.0,0.0,4.070612259568779,338.99999828897995,620.99999840088,400,0.0,3762.800000000001,0.0,0.0,156.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +396,396,1609403479.6,91.2,30.0,157.0,122.507487,0.0,0.0,0.0,0.0,0.0,0.0,558.0,71.714079,125.443436,4.081383,0.0,1098.5999999046326,1.0,0.0,52.244493,6.816404,287.74544,128.640232,0.0,222.218799,100.260982,0.0,0.0,0.0,0.0,0.0,4.081383205583181,319.00000048938,558.0000008839199,401,0.0,3771.0000000000014,0.0,0.0,157.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +397,397,1609403481.4,98.7,30.5,157.0,122.358608,0.0,0.0,0.0,0.0,0.0,0.0,582.295082,76.435068,138.25755,4.086349,0.0,1100.4000000953674,1.0,0.0,52.244512,6.816299000000001,287.491166,133.13421100000002,0.0,370.19329,98.116093,0.0,0.0,0.0,0.0,0.0,4.086349200703558,339.99999817896,614.999999061,402,0.0,3778.5000000000014,0.0,0.0,157.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +398,398,1609403483.4,107.0,31.0,159.0,122.620577,0.0,0.0,0.0,0.0,0.0,0.0,549.677419,72.838124,142.304113,4.077619,0.0,1102.4000000953674,1.0,0.0,52.244532,6.8161809999999985,287.3751680000001,133.075275,0.0,367.917408,98.039323,0.0,0.0,0.0,0.0,0.0,4.0776190443142335,323.99999993928,633.0000015288599,403,0.0,3786.800000000001,0.0,0.0,159.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +399,399,1609403485.4,115.2,29.5,160.0,122.701093,0.0,0.0,0.0,0.0,0.0,0.0,579.661017,72.163697,136.908696,4.074943,0.0,1104.4000000953674,1.0,0.0,52.244553,6.816066,287.207923,128.23898799999998,0.0,435.818931,123.031991,0.0,0.0,0.0,0.0,0.0,4.0749433258919705,321.00000026934,608.9999997211198,404,0.0,3795.0000000000014,0.0,0.0,160.0,160.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +400,400,1609403487.4,123.3,30.0,161.0,122.497958,0.0,0.0,0.0,0.0,0.0,0.0,596.0,75.31102299999998,143.877776,4.081701,0.0,1106.4000000953674,1.0,0.0,52.244574,6.815950999999999,287.033613,129.902299,0.0,349.086373,100.283708,0.0,0.0,0.0,0.0,0.0,4.081700692512768,334.99999872905994,640.00000075872,405,0.0,3803.1000000000013,0.0,0.0,0.0,161.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +401,401,1609403489.4,131.5,31.0,162.0,122.307705,0.0,0.0,0.0,0.0,0.0,0.0,557.419355,75.760641,139.156786,4.08805,0.0,1108.4000000953674,1.0,0.0,52.244594,6.815836,286.902314,122.784526,0.0,443.871822,127.181361,0.0,0.0,0.0,0.0,0.0,4.088049890233816,336.9999985090201,618.9999986209201,406,0.0,3811.300000000001,0.0,0.0,0.0,162.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +402,402,1609403491.4,139.8,29.5,163.0,122.224316,0.0,0.0,0.0,0.0,0.0,0.0,547.118644,68.791562,135.335033,4.090839,0.0,1110.4000000953674,1.0,0.0,52.244613,6.8157190000000005,286.7916830000001,125.920972,0.0,264.134191,134.885415,0.0,0.0,0.0,0.0,0.0,4.090839011117886,306.00000191964,602.00000049126,407,0.0,3819.6000000000013,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +403,403,1609403493.6,148.6,29.0,164.0,122.67447,0.0,0.0,0.0,0.0,0.0,0.0,525.517241,68.791562,113.753367,4.075828,0.0,1112.5999999046326,1.0,0.0,52.24463400000001,6.815594,286.665027,128.10663300000002,0.0,275.377305,134.885415,0.0,0.0,0.0,0.0,0.0,4.07582767628831,306.00000191964,506.00000215674004,408,0.0,3828.400000000001,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +404,404,1609403495.4,155.9,30.5,165.0,123.693644,0.0,0.0,0.0,0.0,0.0,0.0,521.311475,69.915607,133.086943,4.0422449999999985,0.0,1114.4000000953674,1.0,0.0,52.244649,6.815489,286.697449,141.440293,0.0,275.343274,134.885415,0.0,0.0,0.0,0.0,0.0,4.042244886891681,311.00000136954,592.00000159146,409,0.0,3835.700000000001,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +405,405,1609403497.4,163.9,29.5,165.0,124.13234,0.0,0.0,0.0,0.0,0.0,0.0,536.949153,70.365225,128.141144,4.027959,0.0,1116.4000000953674,1.0,0.0,52.244667,6.815377000000002,286.696729,144.991633,0.0,458.3437320000001,133.18303400000002,0.0,0.0,0.0,0.0,0.0,4.0279591925843015,313.0000011495,569.9999995636799,410,0.0,3843.700000000001,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +406,406,1609403499.6,172.6,29.5,166.0,123.613206,0.0,0.0,0.0,0.0,0.0,0.0,532.881356,69.01637099999999,133.76137,4.044875,0.0,1118.5999999046326,1.0,0.0,52.244687,6.815253,286.671918,145.154298,0.0,274.578857,134.885415,0.0,0.0,0.0,0.0,0.0,4.04487527004194,307.00000180962,595.0000012614,411,0.0,3852.400000000001,0.0,0.0,0.0,166.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +407,407,1609403501.6,180.8,29.5,166.0,123.429147,0.0,0.0,0.0,0.0,0.0,0.0,545.084746,71.938888,132.637325,4.050907,0.0,1120.5999999046326,1.0,0.0,52.244705,6.815136,286.786222,142.197724,0.0,392.307369,116.923705,0.0,0.0,0.0,0.0,0.0,4.050907035758741,320.00000037936,590.0000018115,412,0.0,3860.6000000000013,0.0,0.0,0.0,166.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +408,408,1609403503.6,8.2,28.5,167.0,125.375986,0.0,0.0,0.0,0.0,0.0,0.0,522.105263,65.19461700000001,136.683887,3.988005,0.0,1122.5999999046326,1.0,0.0,52.244725,6.8150210000000015,286.806331,142.33983899999996,0.0,227.437553,102.358538,0.0,0.0,0.0,0.0,0.0,3.9880045290331747,289.99999923174005,607.99999983114,413,0.0,3868.800000000001,0.0,0.0,0.0,167.0,167.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +409,409,1609403507.2,21.1,21.0,168.0,131.696829,0.0,0.0,0.0,0.0,0.0,0.0,134.28571399999998,18.209531,40.915243,3.796599,0.0,1126.2000000476837,1.0,0.0,52.244755,6.814838000000001,286.939363,136.180607,0.0,311.047976,131.763206,0.0,0.0,0.0,0.0,0.0,3.7965986257725306,80.99999998482,182.00000221745998,415,0.0,3881.700000000001,0.0,0.0,0.0,0.0,168.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +410,410,1609403509.3,27.2,20.5,169.0,144.051741,0.0,0.0,0.0,0.0,0.0,0.0,166.82926799999996,22.705711,42.713715,3.470975,0.0,1128.2999999523163,1.0,0.0,52.24477,6.8147509999999984,287.184902,134.241036,0.0,306.5401950000001,92.852693,0.0,0.0,0.0,0.0,0.0,3.4709750574968754,100.99999778441999,190.0000013373,415,0.0,3887.800000000001,0.0,0.0,0.0,0.0,169.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +411,411,1609403512.6,36.5,18.5,169.0,160.706086,0.0,0.0,0.0,0.0,0.0,0.0,240.0,31.248454,58.899964,3.11127,0.0,1131.5999999046326,1.0,0.0,52.244796,6.814622999999999,287.289962,136.079699,0.0,209.994484,69.88253399999999,0.0,0.0,0.0,0.0,0.0,3.1112698494816184,138.99999805188,261.99999786407994,416,0.0,3897.1000000000013,0.0,0.0,0.0,0.0,169.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +412,412,1609403515.8,44.8,18.5,169.0,176.091488,0.0,0.0,0.0,0.0,0.0,0.0,314.594595,39.341579,74.636596,2.839433,0.0,1134.7999999523163,1.0,0.0,52.244821,6.814506,287.379253,138.550671,0.0,147.513613,36.324192,0.0,0.0,0.0,0.0,0.0,2.839433101956637,174.99999853938,331.99999905912,417,0.0,3905.400000000001,0.0,0.0,0.0,0.0,169.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +413,413,1609403519.0,53.4,18.5,170.0,184.628524,0.0,0.0,0.0,0.0,0.0,0.0,317.837838,39.791197,82.729721,2.708141,0.0,1138.0,1.0,0.0,52.244847,6.814389,287.436164,152.932778,0.0,137.160772,45.640616,0.0,0.0,0.0,0.0,0.0,2.7081405904539437,176.99999831934,367.99999954662,418,0.0,3914.0000000000014,0.0,0.0,0.0,0.0,170.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +414,414,1609403522.4,62.8,18.0,171.0,185.049976,0.0,0.0,0.0,0.0,0.0,0.0,360.0,42.713715,84.753002,2.701973,0.0,1141.4000000953674,1.0,0.0,52.244875,6.814259,287.409406,168.370793,0.0,130.804955,33.896711,0.0,0.0,0.0,0.0,0.0,2.7019727903126016,190.0000013373,376.99999855643995,419,0.0,3923.400000000001,0.0,0.0,0.0,0.0,171.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +415,415,1609403525.8,72.4,18.0,170.0,181.719287,0.0,0.0,0.0,0.0,0.0,0.0,323.333333,40.690433,77.109495,2.751497,0.0,1144.7999999523163,1.0,0.0,52.244904,6.814126,287.405783,174.700751,0.0,178.309915,49.675683,0.0,0.0,0.0,0.0,0.0,2.751496598156914,180.99999787926004,342.99999784889997,420,0.0,3933.0000000000014,0.0,0.0,0.0,0.0,170.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +416,416,1609403529.0,81.5,18.0,169.0,178.938057,0.0,0.0,0.0,0.0,0.0,0.0,346.666667,40.465624,80.032013,2.794263,0.0,1148.0,1.0,0.0,52.244932,6.814,287.347299,183.020781,0.0,121.059679,55.604193,0.0,0.0,0.0,0.0,0.0,2.79426304489268,179.99999798928002,356.00000086686003,421,0.0,3942.1000000000013,0.0,0.0,0.0,0.0,169.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +417,417,1609403532.4,90.9,18.0,168.0,177.21518999999995,0.0,0.0,0.0,0.0,0.0,0.0,423.333333,50.357222,94.869408,2.821429,0.0,1151.4000000953674,1.0,0.0,52.244961,6.81387,287.150283,186.59494,0.0,123.804164,57.415197,0.0,0.0,0.0,0.0,0.0,2.821428569413265,224.00000204484002,421.99999805376,422,0.0,3951.5000000000014,0.0,0.0,0.0,0.0,168.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +418,418,1609403535.6,100.6,18.0,168.0,175.46791399999995,0.0,0.0,0.0,0.0,0.0,0.0,386.666667,45.186614,96.89269,2.849524,0.0,1154.5999999046326,1.0,0.0,52.244989,6.8137360000000005,287.011511,182.017439,0.0,127.151669,59.28818,0.0,0.0,0.0,0.0,0.0,2.849523816644905,201.00000012708,431.0000015118,423,0.0,3961.200000000001,0.0,0.0,0.0,0.0,168.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +419,419,1609403539.0,110.4,17.5,168.0,173.184314,0.0,0.0,0.0,0.0,0.0,0.0,366.857143,42.713715,91.497273,2.887098,0.0,1158.0,1.0,0.0,52.245017,6.813599000000001,286.88204,172.096852,0.0,189.896279,50.731077,0.0,0.0,0.0,0.0,0.0,2.8870975000657397,190.0000013373,406.99999970406,424,0.0,3971.0000000000014,0.0,0.0,0.0,0.0,168.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +420,420,1609403542.3,120.3,18.0,167.0,170.697343,0.0,0.0,0.0,0.0,0.0,0.0,346.666667,41.814479,85.427429,2.929161,0.0,1161.2999999523163,1.0,0.0,52.245046,6.813462,286.672126,164.25689599999995,0.0,82.147646,39.365355,0.0,0.0,0.0,0.0,0.0,2.929161000473218,186.00000177738,379.99999822638,425,0.0,3980.900000000001,0.0,0.0,0.0,167.0,167.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +421,421,1609403545.6,130.1,18.5,166.0,168.79349,0.0,0.0,0.0,0.0,0.0,0.0,431.351351,50.132413,98.915971,2.9622,0.0,1164.5999999046326,1.0,0.0,52.245074,6.813325999999999,286.3877720000001,158.462654,0.0,148.279966,72.70523299999998,0.0,0.0,0.0,0.0,0.0,2.9621995492835653,223.00000215486,440.00000052162005,426,0.0,3990.700000000001,0.0,0.0,0.0,166.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +422,422,1609403548.6,139.2,19.5,165.0,167.55701100000005,0.0,0.0,0.0,0.0,0.0,0.0,375.384615,46.535468,88.57475600000002,2.984059,0.0,1167.5999999046326,1.0,0.0,52.245099,6.813199000000001,286.190666,156.519372,0.0,96.810063,40.336229,0.0,0.0,0.0,0.0,0.0,2.9840589600873217,206.99999946696,394.00000113432,427,0.0,3999.800000000001,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +423,423,1609403551.6,148.1,19.5,165.0,167.02520900000005,0.0,0.0,0.0,0.0,0.0,0.0,372.307692,46.310659,86.10185600000001,2.99356,0.0,1170.5999999046326,1.0,0.0,52.245124,6.813074,285.829642,149.938245,0.0,228.899568,63.011162,0.0,0.0,0.0,0.0,0.0,2.9935600918781065,205.99999957698003,382.99999789632005,428,0.0,4008.700000000001,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +424,424,1609403554.8,157.6,19.0,164.0,167.36751,0.0,0.0,0.0,0.0,0.0,0.0,382.105263,46.535468,90.373228,2.987438,0.0,1173.7999999523163,1.0,0.0,52.245149,6.812941,285.574336,154.647531,0.0,137.05851,63.377669,0.0,0.0,0.0,0.0,0.0,2.9874376454546043,206.99999946696,402.00000025416,429,0.0,4018.200000000001,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +425,425,1609403558.0,167.1,19.0,164.0,168.184522,0.0,0.0,0.0,0.0,0.0,0.0,350.526316,41.814479,84.753002,2.972925,0.0,1177.0,1.0,0.0,52.245175,6.812808,285.13546,158.099705,0.0,147.759816,64.429983,0.0,0.0,0.0,0.0,0.0,2.972925177978031,186.00000177738,376.99999855643995,430,0.0,4027.700000000001,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +426,426,1609403561.2,176.3,18.5,164.0,169.275531,0.0,0.0,0.0,0.0,0.0,0.0,415.135135,48.109131,91.946891,2.953764,0.0,1180.2000000476837,1.0,0.0,52.245198,6.812678,284.740737,163.948487,0.0,143.06961299999998,63.21862700000001,0.0,0.0,0.0,0.0,0.0,2.953764179892013,213.99999869682,408.99999948402007,431,0.0,4036.900000000001,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +427,427,1609403564.4,185.7,19.0,163.0,170.28868,0.0,0.0,0.0,0.0,0.0,0.0,378.947368,44.062569,95.993454,2.9361900000000003,0.0,1183.4000000953674,1.0,0.0,52.245219,6.812545,284.303687,169.290276,0.0,138.86021100000002,60.179441,0.0,0.0,0.0,0.0,0.0,2.9361904737296687,196.00000067718003,427.00000195187994,432,0.0,4046.300000000001,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +428,428,1609403567.6,195.2,19.0,163.0,170.395271,0.0,0.0,0.0,0.0,0.0,0.0,369.473684,45.186614,87.67551999999998,2.934354,0.0,1186.5999999046326,1.0,0.0,52.245239,6.812410000000002,283.961094,172.58069799999996,0.0,137.471478,58.94989399999999,0.0,0.0,0.0,0.0,0.0,2.9343537356738025,201.00000012708,390.0000015744,433,0.0,4055.800000000001,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +429,429,1609403570.6,204.3,19.5,162.0,169.698929,0.0,0.0,0.0,0.0,0.0,0.0,353.846154,44.062569,84.528193,2.946395,0.0,1189.5999999046326,1.0,0.0,52.245258,6.81228,283.666446,173.778307,0.0,142.33099199999995,60.063442,0.0,0.0,0.0,0.0,0.0,2.946394552672752,196.00000067718003,375.99999866646004,434,0.0,4064.900000000001,0.0,0.0,0.0,162.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +430,430,1609403573.6,213.4,19.5,161.0,167.91556200000005,0.0,0.0,0.0,0.0,0.0,0.0,446.153846,51.256458,105.885051,2.977687,0.0,1192.5999999046326,1.0,0.0,52.245279,6.812150999999999,283.209375,164.79574499999995,0.0,146.054457,62.01914100000001,0.0,0.0,0.0,0.0,0.0,2.9776870829875786,228.00000160476003,471.00000155922,435,0.0,4074.0000000000014,0.0,0.0,0.0,161.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +431,431,1609403576.8,223.6,19.5,160.0,163.637578,0.0,0.0,0.0,0.0,0.0,0.0,433.846154,53.05493000000001,98.466353,3.055533,0.0,1195.7999999523163,1.0,0.0,52.245299,6.8120059999999985,282.900948,160.58613799999995,0.0,157.803114,66.884295,0.0,0.0,0.0,0.0,0.0,3.055532880106549,236.00000072460003,438.00000074166,436,0.0,4084.200000000001,0.0,0.0,160.0,160.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +432,432,1609403579.4,8.5,21.5,160.0,156.295409,0.0,0.0,0.0,0.0,0.0,0.0,680.930233,80.032013,148.149147,3.19907,0.0,1198.4000000953674,1.0,0.0,52.245318,6.811885,282.461535,151.715194,0.0,214.584041,53.094396,0.0,0.0,0.0,0.0,0.0,3.199070293868965,356.00000086686003,658.99999866834,437,0.0,4092.700000000001,0.0,0.0,160.0,160.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +433,433,1609403581.6,16.6,29.5,160.0,146.208525,0.0,0.0,0.0,0.0,0.0,0.0,634.576271,81.605676,142.97853999999995,3.419773,0.0,1200.5999999046326,1.0,0.0,52.245335,6.811769,281.969913,144.212803,0.0,226.206929,55.537679,0.0,0.0,0.0,0.0,0.0,3.4197732314172518,363.00000009672,636.0000011988,438,0.0,4100.800000000001,0.0,0.0,160.0,160.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +434,434,1609403583.4,23.8,32.0,159.0,135.198936,0.0,0.0,0.0,0.0,0.0,0.0,648.75,85.652238,150.846856,3.698254,0.0,1202.4000000953674,1.0,0.0,52.245348,6.811665,281.519808,135.065691,0.0,272.128535,69.52248900000001,0.0,0.0,0.0,0.0,0.0,3.6982539566731503,380.99999811636,671.00000179632,439,0.0,4108.000000000001,0.0,0.0,159.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +435,435,1609403585.2,31.4,32.5,159.0,126.206257,0.0,0.0,0.0,0.0,0.0,0.0,635.0769230000002,83.85376600000002,147.025102,3.961769,0.0,1204.2000000476837,1.0,0.0,52.245361,6.811555,279.147013,126.18484,0.0,322.106762,84.232231,0.0,0.0,0.0,0.0,0.0,3.961768710088597,372.9999989965201,653.99999921844,440,0.0,4115.600000000001,0.0,0.0,159.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +436,436,1609403587.0,38.5,33.0,158.0,120.581416,0.0,0.0,0.0,0.0,0.0,0.0,592.7272730000002,77.109495,144.777012,4.1465760000000005,0.0,1206.0,1.0,0.0,52.245374,6.811454,276.414663,117.845774,0.0,379.810084,97.957001,0.0,0.0,0.0,0.0,0.0,4.1465759532961535,342.99999784889997,644.0000003186401,441,0.0,4122.700000000002,0.0,0.0,158.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +437,437,1609403589.0,47.2,32.0,158.0,118.26163400000002,0.0,0.0,0.0,0.0,0.0,0.0,656.25,84.977811,148.373956,4.227914,0.0,1208.0,1.0,0.0,52.245389,6.811329,273.366411,111.727318,0.0,391.118343,105.502642,0.0,0.0,0.0,0.0,0.0,4.227913847359829,377.99999844641997,659.9999985583198,442,0.0,4131.4000000000015,0.0,0.0,158.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +438,438,1609403590.8,54.6,32.0,158.0,118.370195,0.0,0.0,0.0,0.0,0.0,0.0,620.625,82.729721,147.699529,4.224036,0.0,1209.7999999523163,1.0,0.0,52.245397,6.8112210000000015,272.377304,108.614241,0.0,395.127056,107.401892,0.0,0.0,0.0,0.0,0.0,4.224036295623235,367.99999954662,656.9999988883801,443,0.0,4138.800000000001,0.0,0.0,158.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +439,439,1609403592.6,62.3,31.0,157.0,119.115145,0.0,0.0,0.0,0.0,0.0,0.0,646.451613,81.605676,146.57548400000005,4.197619,0.0,1211.5999999046326,1.0,0.0,52.24540800000001,6.81111,271.274443,108.299968,0.0,396.471076,107.510652,0.0,0.0,0.0,0.0,0.0,4.197619034926247,363.00000009672,651.9999994384801,444,0.0,4146.500000000001,0.0,0.0,157.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +440,440,1609403594.6,70.3,32.0,158.0,119.307207,0.0,0.0,0.0,0.0,0.0,0.0,630.0,81.830485,146.350675,4.190862,0.0,1213.5999999046326,1.0,0.0,52.245418,6.810992999999999,270.059082,110.50486,0.0,390.409223,101.386484,0.0,0.0,0.0,0.0,0.0,4.190861663537223,363.9999999867,650.9999995485,445,0.0,4154.500000000001,0.0,0.0,158.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +441,441,1609403596.4,78.0,33.5,160.0,118.979528,0.0,0.0,0.0,0.0,0.0,0.0,630.447761,84.977811,144.327394,4.2024040000000005,0.0,1215.4000000953674,1.0,0.0,52.245427,6.810881,268.763215,113.091006,0.0,407.479221,101.904207,0.0,0.0,0.0,0.0,0.0,4.202403626950009,377.99999844641997,642.00000053868,446,0.0,4162.200000000002,0.0,0.0,160.0,160.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +442,442,1609403598.2,85.7,32.0,162.0,118.40134,0.0,0.0,0.0,0.0,0.0,0.0,615.0,80.256822,147.92433799999995,4.222925,0.0,1217.2000000476837,1.0,0.0,52.245435,6.810768,267.540297,115.222676,0.0,415.92834,103.194308,0.0,0.0,0.0,0.0,0.0,4.222925179731919,357.00000075684,657.9999987783599,447,0.0,4169.9000000000015,0.0,0.0,0.0,162.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +443,443,1609403600.0,93.4,33.5,164.0,117.918853,0.0,0.0,0.0,0.0,0.0,0.0,614.328358,81.156058,140.50564,4.240204,0.0,1219.0,1.0,0.0,52.245443,6.810657000000001,266.185186,116.75877,0.0,407.286141,101.56442,0.0,0.0,0.0,0.0,0.0,4.240204066435416,361.00000031676,624.9999979608,448,0.0,4177.6,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +444,444,1609403602.1,101.0,32.0,165.0,117.464681,0.0,0.0,0.0,0.0,0.0,0.0,603.75,79.807204,137.35831399999998,4.256599,0.0,1221.0999999046326,1.0,0.0,52.245452,6.810546,264.669967,117.420879,0.0,408.043644,102.061283,0.0,0.0,0.0,0.0,0.0,4.256598628144234,355.00000097687996,610.99999950108,449,0.0,4185.200000000002,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +445,445,1609403603.6,108.9,32.5,166.0,116.680866,0.0,0.0,0.0,0.0,0.0,0.0,625.846154,79.807204,140.955259,4.285193,0.0,1222.5999999046326,1.0,0.0,52.24546,6.810431,263.090719,117.186546,0.0,415.521414,104.14089,0.0,0.0,0.0,0.0,0.0,4.28519274102748,355.00000097687996,627.0000021889799,450,0.0,4193.1,0.0,0.0,0.0,166.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +446,446,1609403605.4,116.7,33.5,167.0,115.94401,0.0,0.0,0.0,0.0,0.0,0.0,610.7462690000001,81.38086700000002,142.304113,4.312426,0.0,1224.4000000953674,1.0,0.0,52.245467,6.810317,261.415173,115.421468,0.0,426.225067,107.231267,0.0,0.0,0.0,0.0,0.0,4.312426316805844,362.00000020673997,633.0000015288599,451,0.0,4200.9000000000015,0.0,0.0,0.0,167.0,167.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +447,447,1609403607.2,124.3,33.5,169.0,115.764439,0.0,0.0,0.0,0.0,0.0,0.0,592.835821,79.58239499999998,138.707168,4.319116,0.0,1226.2000000476837,1.0,0.0,52.245474,6.810206,257.513128,115.31434,0.0,424.878179,107.777167,0.0,0.0,0.0,0.0,0.0,4.319115648286432,354.00000108689994,616.99999884096,452,0.0,4208.500000000001,0.0,0.0,0.0,0.0,169.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +448,448,1609403609.0,132.2,32.5,169.0,116.036142,0.0,0.0,0.0,0.0,0.0,0.0,570.461538,76.210259,132.637325,4.309002,0.0,1228.0,1.0,0.0,52.24548,6.81009,253.379167,123.880556,0.0,251.329257,134.885415,0.0,0.0,0.0,0.0,0.0,4.309002276204598,338.99999828897995,590.0000018115,453,0.0,4216.4000000000015,0.0,0.0,0.0,0.0,169.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +449,449,1609403611.0,140.1,35.0,170.0,116.401223,0.0,0.0,0.0,0.0,0.0,0.0,526.285714,73.512551,134.435797,4.295488,0.0,1230.0,1.0,0.0,52.245488,6.809975,250.729047,133.035131,0.0,251.636381,134.885415,0.0,0.0,0.0,0.0,0.0,4.295487513906963,326.99999960922,598.0000009313401,454,0.0,4224.3,0.0,0.0,0.0,0.0,170.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +450,450,1609403612.6,147.7,32.0,171.0,116.646917,0.0,0.0,0.0,0.0,0.0,0.0,545.625,70.81484300000002,133.086943,4.28644,0.0,1231.5999999046326,1.0,0.0,52.245495,6.8098649999999985,248.190804,142.100431,0.0,252.687316,134.885415,0.0,0.0,0.0,0.0,0.0,4.286439906508631,315.00000092946004,592.00000159146,455,0.0,4231.9000000000015,0.0,0.0,0.0,0.0,171.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +451,451,1609403614.4,155.9,32.5,172.0,116.544572,0.0,0.0,0.0,0.0,0.0,0.0,596.307692,78.90796800000003,136.459078,4.290204,0.0,1233.4000000953674,1.0,0.0,52.245503,6.809745,244.690781,139.167866,0.0,417.42722,108.477954,0.0,0.0,0.0,0.0,0.0,4.290204094618838,351.00000141696006,606.99999994116,456,0.0,4240.1,0.0,0.0,0.0,0.0,172.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +452,452,1609403616.4,164.4,33.0,173.0,116.254547,0.0,0.0,0.0,0.0,0.0,0.0,558.181818,75.760641,131.513279,4.300907,0.0,1235.4000000953674,1.0,0.0,52.24551500000001,6.809622,240.479429,141.37982,0.0,425.642933,109.199909,0.0,0.0,0.0,0.0,0.0,4.300907043231608,336.9999985090201,584.9999979133801,457,0.0,4248.6,0.0,0.0,0.0,0.0,173.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +453,453,1609403618.2,172.2,32.0,173.0,116.37173500000002,0.0,0.0,0.0,0.0,0.0,0.0,536.25,71.48926999999998,129.489998,4.296576,0.0,1237.2000000476837,1.0,0.0,52.245525,6.809508,235.729755,132.193276,0.0,420.886826,109.013389,0.0,0.0,0.0,0.0,0.0,4.2965759683827,318.0000005994,575.9999989035599,458,0.0,4256.4000000000015,0.0,0.0,0.0,0.0,173.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +454,454,1609403620.0,179.4,32.0,174.0,115.667277,0.0,0.0,0.0,0.0,0.0,0.0,585.0,76.210259,136.459078,4.322744,0.0,1239.0,1.0,0.0,52.245534,6.809405,230.37448,135.831978,0.0,264.138757,134.885415,0.0,0.0,0.0,0.0,0.0,4.3227437609688,338.99999828897995,606.99999994116,459,0.0,4263.6,0.0,0.0,0.0,0.0,174.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +455,455,1609403621.8,8.3,32.0,174.0,113.599481,0.0,0.0,0.0,0.0,0.0,0.0,75.0,18.659149,36.643871,4.401429,0.0,1240.7999999523163,1.0,0.0,52.245545,6.809284,209.305433,134.751998,0.0,440.621292,117.557883,0.0,0.0,0.0,0.0,0.0,4.401428559343506,82.99999976478,162.99999985962003,460,0.0,4271.9000000000015,0.0,0.0,0.0,0.0,174.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +456,456,1609403621.8,8.3,32.0,174.0,112.939079,0.0,0.0,0.0,0.0,0.0,0.0,65.625,15.062205,27.426701,4.4271660000000015,0.0,1240.7999999523163,1.0,0.0,52.245545,6.809284,205.687401,139.45523500000002,0.0,264.138757,134.885415,0.0,0.0,0.0,0.0,0.0,4.42716555179275,67.00000152509999,121.99999992222,460,0.0,4271.9000000000015,0.0,0.0,0.0,0.0,174.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +457,457,1609403621.8,8.3,32.0,174.0,116.962477,0.0,0.0,0.0,0.0,0.0,0.0,69.375,13.488541,29.449982,4.274875,0.0,1240.7999999523163,1.0,0.0,52.245545,6.809284,204.279117,140.734907,0.0,411.33337,134.885415,0.0,0.0,0.0,0.0,0.0,4.274875266193277,59.99999784702,130.99999893203997,460,0.0,4271.9000000000015,0.0,0.0,0.0,0.0,174.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +458,458,1609403621.8,8.3,32.0,174.0,129.103652,0.0,0.0,0.0,0.0,0.0,0.0,491.25,65.86904399999999,124.769009,3.872857,0.0,1240.7999999523163,1.0,0.0,52.245545,6.809284,220.310873,149.79949399999995,0.0,161.553447,80.083166,0.0,0.0,0.0,0.0,0.0,3.872857136527788,292.99999890167993,555.0000012139801,460,0.0,4271.9000000000015,0.0,0.0,0.0,0.0,174.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +459,459,1609403634.2,44.5,17.5,176.0,153.888028,0.0,0.0,0.0,0.0,0.0,0.0,109.71428600000002,16.18625,29.000364,3.249116,0.0,1253.2000000476837,1.0,0.0,52.245603,6.808761,219.67066,147.381924,0.0,197.967896,97.63082,0.0,0.0,0.0,0.0,0.0,3.249115649204368,72.000000975,128.99999915208,464,0.0,4308.1,0.0,0.0,0.0,0.0,176.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +460,460,1609403637.6,52.1,17.5,176.0,188.451874,0.0,0.0,0.0,0.0,0.0,0.0,233.142857,29.225173,58.450346,2.653197,0.0,1256.5999999046326,1.0,0.0,52.245615,6.8086509999999985,218.245981,158.434179,0.0,100.026796,47.870559,0.0,0.0,0.0,0.0,0.0,2.653197282612324,129.99999904205998,259.99999808411997,465,0.0,4315.700000000002,0.0,0.0,0.0,0.0,176.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +461,461,1609403641.2,60.3,17.0,175.0,215.614183,0.0,0.0,0.0,0.0,0.0,0.0,229.411765,31.698072,55.527829,2.318957,0.0,1260.2000000476837,1.0,0.0,52.245629,6.8085330000000015,215.906385,174.540809,0.0,88.11274300000002,34.630741,0.0,0.0,0.0,0.0,0.0,2.318956912032081,140.99999783183995,246.99999951438,466,0.0,4323.9000000000015,0.0,0.0,0.0,0.0,175.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +462,462,1609403644.8,69.8,17.0,175.0,222.025314,0.0,0.0,0.0,0.0,0.0,0.0,243.529412,31.698072,58.225537,2.251995,0.0,1263.7999999523163,1.0,0.0,52.245644,6.808396000000001,212.875632,194.652982,0.0,75.870676,32.059728,0.0,0.0,0.0,0.0,0.0,2.251995463904625,140.99999783183995,258.99999819413995,467,0.0,4333.4000000000015,0.0,0.0,0.0,0.0,175.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +463,463,1609403648.2,78.4,17.5,174.0,212.930327,0.0,0.0,0.0,0.0,0.0,0.0,236.571429,30.349218,59.349583,2.348186,0.0,1267.2000000476837,1.0,0.0,52.24566,6.8082720000000005,208.943367,199.653566,0.0,71.906688,34.025281,0.0,0.0,0.0,0.0,0.0,2.3481859397135096,134.99999849196,264.00000209226,468,0.0,4342.000000000001,0.0,0.0,0.0,0.0,174.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +464,464,1609403651.6,87.0,17.5,172.0,203.298882,0.0,0.0,0.0,0.0,0.0,0.0,233.142857,30.574027,58.675155,2.459433,0.0,1270.5999999046326,1.0,0.0,52.245677,6.80815,203.970314,185.274369,0.0,158.466029,36.661116,0.0,0.0,0.0,0.0,0.0,2.4594331020472597,135.99999838193997,260.99999797410004,469,0.0,4350.600000000001,0.0,0.0,0.0,0.0,172.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +465,465,1609403655.0,95.8,17.5,172.0,197.221899,0.0,0.0,0.0,0.0,0.0,0.0,270.857143,34.845399,70.590034,2.535215,0.0,1274.0,1.0,0.0,52.245694,6.808023,197.961188,172.143338,0.0,83.953294,41.016164,0.0,0.0,0.0,0.0,0.0,2.5352154225023456,155.00000073978,314.00000103947997,470,0.0,4359.4000000000015,0.0,0.0,0.0,0.0,172.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +466,466,1609403659.0,106.0,15.5,170.0,190.993426,0.0,0.0,0.0,0.0,0.0,0.0,267.09677400000004,34.395781,67.892325,2.617891,0.0,1278.0,1.0,0.0,52.245711,6.807877,191.002724,154.114221,0.0,224.495275,55.903778,0.0,0.0,0.0,0.0,0.0,2.617891151918496,153.00000095982,301.99999791150003,471,0.0,4369.600000000001,0.0,0.0,0.0,0.0,170.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +467,467,1609403662.4,115.3,17.0,169.0,188.692162,0.0,0.0,0.0,0.0,0.0,0.0,81.17647099999998,22.256093,48.109131,2.649819,0.0,1281.4000000953674,1.0,0.0,52.245726,6.807742,167.72444299999995,155.114585,0.0,104.361266,51.231777,0.0,0.0,0.0,0.0,0.0,2.6498185971285864,98.99999800446,213.99999869682,472,0.0,4378.9000000000015,0.0,0.0,0.0,0.0,169.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +468,468,1609403662.4,115.3,17.0,169.0,200.321605,0.0,0.0,0.0,0.0,0.0,0.0,81.17647099999998,-1.5736629999999998,0.224809,2.4959860000000003,0.0,1281.4000000953674,1.0,0.0,52.245726,6.807742,161.55217,153.474615,0.0,87.885999,41.427862,0.0,0.0,0.0,0.0,0.0,2.495986391482836,-6.999999229859999,0.99999988998,472,0.0,4378.9000000000015,0.0,0.0,0.0,0.0,169.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +469,469,1609403662.4,115.3,17.0,169.0,241.057373,0.0,0.0,0.0,0.0,0.0,0.0,218.823529,29.225173,52.155694,2.074195,0.0,1281.4000000953674,1.0,0.0,52.245726,6.807742,172.20533899999995,138.896201,0.0,88.685698,25.233006,0.0,0.0,0.0,0.0,0.0,2.074195009169041,129.99999904205998,232.00000116468,472,0.0,4378.9000000000015,0.0,0.0,0.0,0.0,169.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +470,470,1609403680.3,135.8,20.0,162.0,356.559564,0.0,0.0,0.0,0.0,0.0,0.0,186.0,29.225173,52.155694,1.40229,0.0,1299.2999999523163,1.0,0.0,52.245748,6.807444,168.464122,87.65876899999998,0.0,0.0,11.240451,0.0,0.0,0.0,0.0,0.0,1.4022902496032892,129.99999904205998,232.00000116468,478,0.0,4399.4000000000015,0.0,0.0,0.0,162.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +471,471,1609403681.6,136.0,20.5,161.0,683.170157,0.0,0.0,0.0,0.0,0.0,0.0,90.731707,30.349218,46.08585,0.7318819999999999,0.0,1300.5999999046326,1.0,0.0,52.24575,6.807441000000002,155.616512,36.744525,0.0,0.0,11.240451,0.0,0.0,0.0,0.0,0.0,0.7318820865882758,134.99999849196,204.999999687,478,0.0,4399.600000000001,0.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +472,472,1609403685.2,136.6,23.0,159.0,1568.836713,0.0,0.0,0.0,0.0,0.0,0.0,80.86956500000002,30.349218,46.08585,0.318707,0.0,1304.2000000476837,1.0,0.0,52.245741,6.8074330000000005,147.05834099999996,-9.447973,0.0,0.0,11.240451,0.0,0.0,0.0,0.0,0.0,0.31870748297563584,134.99999849196,204.999999687,479,0.0,4400.200000000002,0.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +473,473,1609403686.6,136.7,24.5,159.0,2266.18705,0.0,0.0,0.0,0.0,0.0,0.0,112.653061,38.891961,61.822482,0.220635,0.0,1305.5999999046326,1.0,0.0,52.245738,6.8074330000000005,138.071293,-38.594018,0.0,0.0,11.240451,0.0,0.0,0.0,0.0,0.0,0.2206349206699421,172.99999875942,275.00000088204,480,0.0,4400.300000000002,0.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +474,474,1609403689.2,136.7,24.0,160.0,1289.2475,0.0,0.0,0.0,0.0,0.0,0.0,250.0,42.713715,75.535832,0.387823,0.0,1308.2000000476837,1.0,0.0,52.245729,6.807438,129.915013,-50.712918,0.0,0.0,11.240451,0.0,0.0,0.0,0.0,0.0,0.38782312938361335,190.0000013373,335.99999861904,481,0.0,4400.300000000002,0.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +475,475,1609403690.6,136.7,39.0,159.0,746.774139,0.0,0.0,0.0,0.0,0.0,0.0,163.076923,41.140052,76.65987700000002,0.669546,0.0,1309.5999999046326,1.0,0.0,52.245717,6.807449,121.471065,-47.340412,0.0,0.0,11.240451,0.0,0.0,0.0,0.0,0.0,0.6695464851923588,183.00000210744003,340.99999806894004,482,0.0,4400.300000000002,0.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +476,476,1609403692.1,136.7,39.5,158.0,562.557404,0.0,0.0,0.0,0.0,0.0,0.0,100.253165,27.426701,60.698437,0.888798,0.0,1311.0999999046326,1.0,0.0,52.245707,6.807461,114.926391,-34.179473,0.0,0.0,11.240451,0.0,0.0,0.0,0.0,0.0,0.8887981856514682,121.99999992222,270.00000143214,483,0.0,4400.300000000002,0.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +477,477,1609403697.4,137.5,44.5,152.0,511.731532,0.0,0.0,0.0,0.0,0.0,0.0,52.58427,23.604948,36.86868,0.977075,0.0,1316.4000000953674,1.0,0.0,52.245674,6.807509,107.177129,-16.949475,0.0,0.0,11.240451,0.0,0.0,0.0,0.0,0.0,0.9770748307141645,105.00000179256,163.9999997496,487,0.0,4401.100000000002,0.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +478,478,1609403699.4,137.7,10.5,148.0,530.903137,0.0,0.0,0.0,0.0,0.0,0.0,85.714286,10.566024,29.449982,0.941791,0.0,1318.4000000953674,1.0,0.0,52.24567,6.807523,99.596051,-0.855408,0.0,0.0,11.240451,0.0,0.0,0.0,0.0,0.0,0.9417913836888856,46.99999927728,130.99999893203997,487,0.0,4401.300000000002,0.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +479,479,1609403702.2,138.1,20.0,148.0,602.6730809999998,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.5736629999999998,3.596944,0.8296370000000001,0.0,1321.2000000476837,1.0,0.0,52.245666,6.807553,84.592145,10.814296,0.0,0.0,11.240451,0.0,0.0,0.0,0.0,0.0,0.8296371876612821,6.999999229859999,15.99999823968,488,0.0,4401.700000000002,0.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +480,480,1609403702.2,138.1,20.0,148.0,685.016621,0.0,0.0,0.0,0.0,0.0,0.0,12.0,5.1706080000000005,11.914878,0.729909,0.0,1321.2000000476837,1.0,0.0,52.245666,6.807553,76.89605999999998,16.707424,0.0,0.0,11.240451,0.0,0.0,0.0,0.0,0.0,0.7299092966096073,23.00000191776,52.999998617159996,488,0.0,4401.700000000002,0.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +481,481,1609403702.2,138.1,20.0,148.0,733.2158410000002,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.674427,3.596944,0.6819270000000001,0.0,1321.2000000476837,1.0,0.0,52.245666,6.807553,70.231441,17.219869,0.0,0.0,11.240451,0.0,0.0,0.0,0.0,0.0,0.681927438062539,2.99999966994,15.99999823968,488,0.0,4401.700000000002,0.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +482,482,1609403702.2,138.1,20.0,148.0,733.240223,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.798472,3.372135,0.681905,0.0,1321.2000000476837,1.0,0.0,52.245666,6.807553,64.558447,13.842405,0.0,0.0,11.240451,0.0,0.0,0.0,0.0,0.0,0.6819047623359855,7.99999911984,14.999998349699998,488,0.0,4401.700000000002,0.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +483,483,1609403702.2,138.1,20.0,148.0,717.539863,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.674427,4.945799,0.696825,0.0,1321.2000000476837,1.0,0.0,52.245666,6.807553,59.794187,8.505539,0.0,0.0,11.240451,0.0,0.0,0.0,0.0,0.0,0.6968253971417334,2.99999966994,22.00000202778,488,0.0,4401.700000000002,0.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +484,484,1609403702.2,138.1,20.0,148.0,711.887389,0.0,0.0,0.0,0.0,0.0,0.0,3.0,1.5736629999999998,4.945799,0.702358,0.0,1321.2000000476837,1.0,0.0,52.245666,6.807553,55.88568000000001,2.999702,0.0,0.0,11.240451,0.0,0.0,0.0,0.0,0.0,0.7023582770617111,6.999999229859999,22.00000202778,488,0.0,4401.700000000002,0.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +485,485,1609403702.2,138.1,20.0,148.0,714.285714,0.0,0.0,0.0,0.0,0.0,0.0,3.0,2.697708,3.821753,0.7,0.0,1321.2000000476837,1.0,0.0,52.245666,6.807553,52.815833,-1.3811,0.0,0.0,11.240451,0.0,0.0,0.0,0.0,0.0,0.70000000028,11.999998679760001,16.99999812966,488,0.0,4401.700000000002,0.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +486,486,1609403702.2,138.1,20.0,148.0,714.285714,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.348854,6.294653,0.7,0.0,1321.2000000476837,1.0,0.0,52.245666,6.807553,50.549078,-3.982946,0.0,0.0,11.240451,0.0,0.0,0.0,0.0,0.0,0.70000000028,5.99999933988,28.000001367659998,488,0.0,4401.700000000002,0.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +487,487,1609403702.2,138.1,20.0,148.0,718.5687280000002,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.899236,2.697708,0.695828,0.0,1321.2000000476837,1.0,0.0,52.245666,6.807553,49.063107,-4.750904,0.0,0.0,11.240451,0.0,0.0,0.0,0.0,0.0,0.6958276647964563,3.99999955992,11.999998679760001,488,0.0,4401.700000000002,0.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +488,488,1609403702.2,138.1,20.0,148.0,701.826978,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.674427,2.697708,0.712426,0.0,1321.2000000476837,1.0,0.0,52.245666,6.807553,50.194844,-4.0530620000000015,0.0,0.0,11.240451,0.0,0.0,0.0,0.0,0.0,0.7124263040227559,2.99999966994,11.999998679760001,488,0.0,4401.700000000002,0.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +489,489,1609403702.2,138.1,20.0,148.0,689.493433,0.0,0.0,0.0,0.0,0.0,0.0,24.0,9.891597,31.698072,0.72517,0.0,1321.2000000476837,1.0,0.0,52.245666,6.807553,51.900794,-2.48369,0.0,0.0,11.240451,0.0,0.0,0.0,0.0,0.0,0.725170068443567,43.99999960734,140.99999783183995,488,0.0,4401.700000000002,0.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +490,490,1609403702.2,138.1,20.0,148.0,734.38801,0.0,0.0,0.0,0.0,0.0,0.0,3.0,2.0232810000000003,6.96908,0.6808390000000001,0.0,1321.2000000476837,1.0,0.0,52.245666,6.807553,52.347112,-0.6731090000000001,0.0,0.0,11.240451,0.0,0.0,0.0,0.0,0.0,0.6808390022598544,8.999999009820002,31.0000010376,488,0.0,4401.700000000002,0.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +491,491,1609403702.2,138.1,20.0,148.0,864.705882,0.0,0.0,0.0,0.0,0.0,0.0,3.0,1.798472,5.845035,0.578231,0.0,1321.2000000476837,1.0,0.0,52.245666,6.807553,53.357652,0.870655,0.0,0.0,11.240451,0.0,0.0,0.0,0.0,0.0,0.5782312927530195,7.99999911984,26.000001587699998,488,0.0,4401.700000000002,0.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +492,492,1609403702.2,138.1,20.0,148.0,990.432556,0.0,0.0,0.0,0.0,0.0,0.0,3.0,2.922517,4.945799,0.50483,0.0,1321.2000000476837,1.0,0.0,52.245666,6.807553,61.294858,1.866829,0.0,0.0,11.240451,0.0,0.0,0.0,0.0,0.0,0.5048299321049378,12.999998569739999,22.00000202778,488,0.0,4401.700000000002,0.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +493,493,1609403826.6,163.2,27.5,112.0,846.1243279999999,0.0,0.0,0.0,0.0,0.0,0.0,148.363636,36.194253,64.74499899999999,0.5909300000000001,0.0,1445.5999999046326,1.0,0.0,52.245625,6.807938,63.08377,2.288175,0.0,0.0,11.240451,0.0,0.0,0.0,0.0,0.0,0.5909297055455899,161.00000007966003,287.99999945178,545,0.0,4426.800000000002,0.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +494,494,1609403830.6,168.3,15.5,112.0,510.948905,0.0,0.0,0.0,0.0,0.0,0.0,530.322581,61.14805500000001,104.311387,0.978571,0.0,1449.5999999046326,1.0,0.0,52.245625,6.808014,65.622051,2.324147,0.0,0.0,11.240451,0.0,0.0,0.0,0.0,0.0,0.9785714287811224,272.0000012121,463.9999978811401,546,0.0,4431.9000000000015,0.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +495,495,1609403834.2,177.0,16.5,113.0,311.102332,0.0,0.0,0.0,0.0,0.0,0.0,443.636364,52.155694,102.512915,1.6071879999999998,0.0,1453.2000000476837,1.0,0.0,52.245621,6.808142,67.89019,42.141304,0.0,244.420968,134.885415,0.0,0.0,0.0,0.0,0.0,1.6071882096981518,232.00000116468,455.99999876130005,547,0.0,4440.600000000002,113.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +496,496,1609403837.8,187.1,17.0,114.0,221.052632,0.0,0.0,0.0,0.0,0.0,0.0,307.058824,39.566388,70.81484300000002,2.261905,0.0,1456.7999999523163,1.0,0.0,52.245614,6.80829,69.996818,80.758747,0.0,120.02981,21.520405,0.0,0.0,0.0,0.0,0.0,2.261904757596372,175.99999842936,315.00000092946004,548,0.0,4450.7000000000035,114.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +497,497,1609403841.0,196.3,18.0,117.0,181.701318,0.0,0.0,0.0,0.0,0.0,0.0,430.0,48.783558,104.761006,2.751769,0.0,1460.0,1.0,0.0,52.245605,6.8084240000000005,71.87905,138.884899,0.0,119.336324,52.714852,0.0,0.0,0.0,0.0,0.0,2.7517687020850343,216.99999836676002,466.00000210932006,549,0.0,4459.9000000000015,117.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +498,498,1609403844.4,206.6,18.0,119.0,166.715812,0.0,0.0,0.0,0.0,0.0,0.0,460.0,54.853402,105.660242,2.999116,0.0,1463.4000000953674,1.0,0.0,52.245593,6.808574,73.669466,176.207581,0.0,147.96371399999995,69.260796,0.0,0.0,0.0,0.0,0.0,2.999115644771595,243.99999984444005,470.00000166924,550,0.0,4470.2000000000035,119.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +499,499,1609403848.1,217.3,17.5,122.0,164.47123100000005,0.0,0.0,0.0,0.0,0.0,0.0,473.14285700000005,-1.1240450000000002,2.2480900000000004,3.040045,0.0,1467.0999999046326,1.0,0.0,52.245579,6.808728,69.915772,193.92312,0.0,154.846055,73.166751,0.0,0.0,0.0,0.0,0.0,3.040045343857127,-4.999999449900001,9.9999988998,551,0.0,4480.9000000000015,122.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +500,500,1609403851.1,217.3,17.5,122.0,166.858371,0.0,0.0,0.0,0.0,0.0,0.0,435.428571,50.357222,103.412151,2.996553,0.0,1470.0999999046326,1.0,0.0,52.245579,6.808728,78.401246,197.498501,0.0,147.02995900000005,70.285474,0.0,0.0,0.0,0.0,0.0,2.996553286499483,224.00000204484002,459.99999832122,552,0.0,4480.9000000000015,122.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +501,501,1609403854.1,234.5,9.5,125.0,169.331429,0.0,0.0,0.0,0.0,0.0,0.0,934.736842,53.279739,105.885051,2.952789,0.0,1473.0999999046326,1.0,0.0,52.245554,6.8089770000000005,81.24713,139.746904,0.0,0.0,11.240451,0.0,0.0,0.0,0.0,0.0,2.9527891127641754,237.00000061457996,471.00000155922,553,0.0,4498.100000000002,125.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +502,502,1609403857.1,243.2,19.0,127.0,169.410789,0.0,0.0,0.0,0.0,0.0,0.0,442.105263,53.72935699999999,104.311387,2.951406,0.0,1476.0999999046326,1.0,0.0,52.245542,6.809103,83.95543,141.260715,0.0,156.305591,38.562188,0.0,0.0,0.0,0.0,0.0,2.9514058871421702,239.00000039454,463.9999978811401,554,0.0,4506.800000000002,127.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +503,503,1609403860.2,252.9,19.5,129.0,165.531841,0.0,0.0,0.0,0.0,0.0,0.0,387.692308,46.310659,87.900329,3.020567,0.0,1479.2000000476837,1.0,0.0,52.245525,6.8092440000000005,86.34722,125.687586,0.0,220.32036800000003,60.429416,0.0,0.0,0.0,0.0,0.0,3.0205669010833995,205.99999957698003,391.00000146438,555,0.0,4516.500000000002,129.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +504,504,1609403863.1,261.9,20.5,130.0,159.231069,0.0,0.0,0.0,0.0,0.0,0.0,515.121951,58.899964,116.900693,3.140091,0.0,1482.0999999046326,1.0,0.0,52.245508,6.809372,88.462181,128.126502,0.0,208.05539,57.47206600000001,0.0,0.0,0.0,0.0,0.0,3.1400907067954185,261.99999786407994,520.0000006164598,556,0.0,4525.500000000002,130.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +505,505,1609403866.1,271.8,20.0,131.0,153.126063,0.0,0.0,0.0,0.0,0.0,0.0,489.0,56.87668299999999,114.877412,3.265283,0.0,1485.0999999046326,1.0,0.0,52.245491,6.809514999999998,90.44294,128.837639,0.0,223.887328,60.434087,0.0,0.0,0.0,0.0,0.0,3.2652834547179603,252.99999885425999,511.00000160664,557,0.0,4535.4000000000015,131.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +506,506,1609403869.1,281.9,20.0,133.0,148.983467,0.0,0.0,0.0,0.0,0.0,0.0,441.0,52.380503,105.885051,3.3560769999999995,0.0,1488.0999999046326,1.0,0.0,52.245471,6.809660000000001,92.143673,142.300823,0.0,214.30053,56.813881,0.0,0.0,0.0,0.0,0.0,3.356077087399235,233.00000105466003,471.00000155922,558,0.0,4545.500000000002,133.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +507,507,1609403872.1,291.9,19.5,134.0,147.45908899999995,0.0,0.0,0.0,0.0,0.0,0.0,486.153846,56.651874,118.249547,3.390771,0.0,1491.0999999046326,1.0,0.0,52.24545300000001,6.809803,93.770473,154.353534,0.0,218.156168,58.596754,0.0,0.0,0.0,0.0,0.0,3.3907709819094305,251.99999896427997,525.9999999563398,559,0.0,4555.500000000002,134.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +508,508,1609403875.1,302.0,21.0,134.0,147.413741,0.0,0.0,0.0,0.0,0.0,0.0,522.857143,60.923246,125.218627,3.391814,0.0,1494.0999999046326,1.0,0.0,52.245433,6.809948,95.167275,163.553505,0.0,226.245987,60.177362,0.0,0.0,0.0,0.0,0.0,3.3918140643347483,271.00000132212,557.00000099394,560,0.0,4565.600000000002,134.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +509,509,1609403878.1,10.1,21.0,135.0,146.172663,0.0,0.0,0.0,0.0,0.0,0.0,508.571429,59.124774,123.869773,3.420612,0.0,1497.0999999046326,1.0,0.0,52.245414,6.810092999999998,96.450228,168.426958,0.0,221.403878,58.13986600000001,0.0,0.0,0.0,0.0,0.0,3.420612238555167,263.00000220228003,551.0000016540599,561,0.0,4575.7000000000035,135.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +510,510,1609403880.2,18.7,24.5,134.0,142.015264,0.0,0.0,0.0,0.0,0.0,0.0,705.306122,91.272464,147.92433799999995,3.520748,0.0,1499.2000000476837,1.0,0.0,52.245398,6.810215,97.49894,163.509576,0.0,239.638841,64.741292,0.0,0.0,0.0,0.0,0.0,3.520748304914603,405.99999981407996,657.9999987783599,562,0.0,4584.300000000003,134.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +511,511,1609403882.2,26.5,30.0,135.0,135.11195,0.0,0.0,0.0,0.0,0.0,0.0,656.0,86.77628399999998,149.72281,3.700635,0.0,1501.2000000476837,1.0,0.0,52.245385,6.8103289999999985,98.605444,154.559377,0.0,269.521229,72.55539,0.0,0.0,0.0,0.0,0.0,3.7006349179328697,386.00000201448,665.9999978982,563,0.0,4592.100000000003,135.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +512,512,1609403884.1,33.5,32.0,136.0,127.106187,0.0,0.0,0.0,0.0,0.0,0.0,596.25,78.90796800000003,146.125866,3.933719,0.0,1503.0999999046326,1.0,0.0,52.245374,6.81043,99.609777,141.212354,0.0,306.983454,88.20865500000002,0.0,0.0,0.0,0.0,0.0,3.933718820469376,351.00000141696006,649.9999996585201,564,0.0,4599.100000000003,136.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +513,513,1609403886.0,42.5,31.0,137.0,120.468105,0.0,0.0,0.0,0.0,0.0,0.0,630.967742,79.58239499999998,142.75373100000004,4.150476,0.0,1505.0,1.0,0.0,52.245358,6.810558,99.781605,126.357791,0.0,370.835454,108.049064,0.0,0.0,0.0,0.0,0.0,4.150476177906176,354.00000108689994,635.0000013088201,565,0.0,4608.100000000003,137.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +514,514,1609403888.1,51.0,31.0,138.0,116.513781,0.0,0.0,0.0,0.0,0.0,0.0,609.677419,78.45835,141.180068,4.291338,0.0,1507.0999999046326,1.0,0.0,52.245344,6.810682000000001,100.115098,112.684115,0.0,438.20657,115.456065,0.0,0.0,0.0,0.0,0.0,4.2913378632867465,349.00000163699997,628.0000020789599,566,0.0,4616.600000000003,138.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +515,515,1609403890.1,58.9,32.0,136.0,114.927551,0.0,0.0,0.0,0.0,0.0,0.0,571.875,74.861405,138.032741,4.350567,0.0,1509.0999999046326,1.0,0.0,52.24533,6.810795,100.356898,103.186556,0.0,457.826079,127.770034,0.0,0.0,0.0,0.0,0.0,4.35056690627646,332.9999989491,613.9999991710199,567,0.0,4624.500000000003,136.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +516,516,1609403891.8,67.5,31.0,138.0,114.924556,0.0,0.0,0.0,0.0,0.0,0.0,603.870968,78.233541,138.032741,4.3506800000000005,0.0,1510.7999999523163,1.0,0.0,52.245316,6.8109199999999985,100.647938,98.859884,0.0,440.531949,120.36088,0.0,0.0,0.0,0.0,0.0,4.3506802845511965,348.00000174702,613.9999991710199,568,0.0,4633.100000000003,138.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +517,517,1609403893.6,75.3,32.0,141.0,115.807607,0.0,0.0,0.0,0.0,0.0,0.0,586.875,76.65987700000002,141.404877,4.317506,0.0,1512.5999999046326,1.0,0.0,52.245302,6.811032000000001,100.855957,104.211364,0.0,274.583571,134.885415,0.0,0.0,0.0,0.0,0.0,4.317505671281162,340.99999806894004,629.0000019689401,568,0.0,4640.900000000003,141.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +518,518,1609403895.6,83.8,31.0,143.0,116.873204,0.0,0.0,0.0,0.0,0.0,0.0,557.419355,69.46598900000001,136.00946000000002,4.2781410000000015,0.0,1514.5999999046326,1.0,0.0,52.245287,6.811153999999998,101.157652,112.900662,0.0,275.150423,134.885415,0.0,0.0,0.0,0.0,0.0,4.278140607833426,309.00000158958005,605.0000001612001,570,0.0,4649.400000000003,0.0,143.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +519,519,1609403897.4,91.6,31.0,145.0,117.969323,0.0,0.0,0.0,0.0,0.0,0.0,609.677419,78.008732,140.730449,4.23839,0.0,1516.4000000953674,1.0,0.0,52.245271,6.811266000000002,101.189735,125.794077,0.0,264.629699,134.885415,0.0,0.0,0.0,0.0,0.0,4.238390009239945,347.00000185704005,625.99999785078,570,0.0,4657.200000000004,0.0,145.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +520,520,1609403899.4,100.0,32.0,148.0,118.883306,0.0,0.0,0.0,0.0,0.0,0.0,521.25,70.81484300000002,125.668245,4.205805000000002,0.0,1518.4000000953674,1.0,0.0,52.245258,6.811387,102.06527,137.87702,0.0,264.138757,134.885415,0.0,0.0,0.0,0.0,0.0,4.2058049765204215,315.00000092946004,559.0000007739,572,0.0,4665.600000000003,0.0,0.0,148.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +521,521,1609403901.5,108.3,30.0,150.0,119.314308,0.0,0.0,0.0,0.0,0.0,0.0,576.0,73.28774200000002,130.38923400000002,4.190612000000002,0.0,1520.5,1.0,0.0,52.245244,6.811506,102.317557,138.393529,0.0,428.505691,116.902695,0.0,0.0,0.0,0.0,0.0,4.190612244090625,325.99999971924007,579.9999984634801,573,0.0,4673.900000000003,0.0,0.0,150.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +522,522,1609403903.4,116.7,31.0,151.0,119.521912,0.0,0.0,0.0,0.0,0.0,0.0,567.096774,73.512551,134.660606,4.183333,0.0,1522.4000000953674,1.0,0.0,52.245228,6.811626,102.443228,143.388009,0.0,393.136317,106.311297,0.0,0.0,0.0,0.0,0.0,4.183333345604444,326.99999960922,599.00000082132,574,0.0,4682.300000000003,0.0,0.0,151.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +523,523,1609403905.3,124.4,31.0,152.0,119.565984,0.0,0.0,0.0,0.0,0.0,0.0,567.096774,73.28774200000002,136.23426899999998,4.1817910000000005,0.0,1524.2999999523163,1.0,0.0,52.245213,6.811737,102.560474,141.624254,0.0,392.66425,106.181843,0.0,0.0,0.0,0.0,0.0,4.18179136969257,325.99999971924007,606.0000000511799,575,0.0,4690.000000000003,0.0,0.0,152.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +524,524,1609403907.2,132.7,30.5,153.0,119.523208,0.0,0.0,0.0,0.0,0.0,0.0,544.918033,71.039652,132.18770700000002,4.183288,0.0,1526.2000000476837,1.0,0.0,52.245198,6.811857000000002,102.778235,139.537574,0.0,387.690007,108.811122,0.0,0.0,0.0,0.0,0.0,4.183287985376029,316.00000081944,588.0000020315401,576,0.0,4698.300000000003,0.0,0.0,153.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +525,525,1609403909.2,141.0,30.0,154.0,119.756251,0.0,0.0,0.0,0.0,0.0,0.0,576.0,74.186978,133.086943,4.175147,0.0,1528.2000000476837,1.0,0.0,52.245182,6.811976,102.940974,135.76105900000002,0.0,384.808144,107.823872,0.0,0.0,0.0,0.0,0.0,4.175147400030083,329.99999927916,592.00000159146,577,0.0,4706.600000000003,0.0,0.0,154.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +526,526,1609403911.2,148.7,30.5,156.0,119.939948,0.0,0.0,0.0,0.0,0.0,0.0,539.016393,71.039652,134.885415,4.168753,0.0,1530.2000000476837,1.0,0.0,52.245168,6.812086,103.145446,133.96528,0.0,381.911256,104.221592,0.0,0.0,0.0,0.0,0.0,4.1687528495510096,316.00000081944,600.0000007113,578,0.0,4714.300000000003,0.0,0.0,156.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +527,527,1609403913.2,157.7,29.5,158.0,119.834351,0.0,0.0,0.0,0.0,0.0,0.0,561.355932,71.48926999999998,133.311752,4.1724260000000015,0.0,1532.2000000476837,1.0,0.0,52.245151,6.812214999999999,103.401891,126.482169,0.0,392.157863,104.951242,0.0,0.0,0.0,0.0,0.0,4.172426318727257,318.0000005994,593.0000014814401,579,0.0,4723.300000000003,0.0,0.0,158.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +528,528,1609403915.2,166.0,31.0,161.0,119.924945,0.0,0.0,0.0,0.0,0.0,0.0,522.580645,69.46598900000001,132.862134,4.169274,0.0,1534.2000000476837,1.0,0.0,52.245134,6.812333,103.61105,119.543273,0.0,392.835151,105.13098,0.0,0.0,0.0,0.0,0.0,4.1692743740678795,309.00000158958005,591.00000170148,580,0.0,4731.600000000003,0.0,0.0,0.0,161.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +529,529,1609403917.1,172.9,30.0,164.0,120.096077,0.0,0.0,0.0,0.0,0.0,0.0,518.0,67.21789799999999,123.195346,4.1633330000000015,0.0,1536.0999999046326,1.0,0.0,52.245119,6.812432,103.876714,114.302354,0.0,383.256385,104.539681,0.0,0.0,0.0,0.0,0.0,4.163333328531622,298.99999824156004,548.00000198412,580,0.0,4738.500000000003,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +530,530,1609403919.2,182.3,30.5,165.0,120.307726,0.0,0.0,0.0,0.0,0.0,0.0,509.508197,66.76828,124.319391,4.156009,0.0,1538.2000000476837,1.0,0.0,52.245098,6.812566,104.083004,112.475196,0.0,378.371226,103.280154,0.0,0.0,0.0,0.0,0.0,4.1560090662839055,296.9999984616,553.00000143402,582,0.0,4747.9000000000015,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +531,531,1609403921.3,190.5,29.5,166.0,120.975042,0.0,0.0,0.0,0.0,0.0,0.0,557.288136,72.613315,135.559842,4.133083999999998,0.0,1540.2999999523163,1.0,0.0,52.245081,6.8126820000000015,104.389136,112.42369,0.0,371.553978,107.621766,0.0,0.0,0.0,0.0,0.0,4.133083913291801,323.0000000493,603.00000038124,583,0.0,4756.100000000002,0.0,0.0,0.0,166.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +532,532,1609403923.2,198.2,29.5,167.0,121.64779,0.0,0.0,0.0,0.0,0.0,0.0,530.847458,69.46598900000001,131.28847,4.110227,0.0,1542.2000000476837,1.0,0.0,52.245062,6.812791000000002,104.487942,114.127864,0.0,366.151001,105.420407,0.0,0.0,0.0,0.0,0.0,4.110226745590693,309.00000158958005,583.9999980233999,584,0.0,4763.800000000002,0.0,0.0,0.0,167.0,167.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +533,533,1609403925.2,206.9,29.5,168.0,121.874378,0.0,0.0,0.0,0.0,0.0,0.0,545.084746,70.81484300000002,133.536561,4.102585,0.0,1544.2000000476837,1.0,0.0,52.245044,6.8129149999999985,104.749812,116.596842,0.0,362.189812,104.684437,0.0,0.0,0.0,0.0,0.0,4.102585040475037,315.00000092946004,594.00000137142,585,0.0,4772.500000000002,0.0,0.0,0.0,0.0,168.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +534,534,1609403927.3,215.1,29.5,169.0,122.123453,0.0,0.0,0.0,0.0,0.0,0.0,528.8135589999998,67.21789799999999,130.61404299999998,4.094218,0.0,1546.2999999523163,1.0,0.0,52.245027,6.8130320000000015,105.060123,118.881695,0.0,363.20036,103.897453,0.0,0.0,0.0,0.0,0.0,4.09421767659976,298.99999824156004,580.9999983534599,586,0.0,4780.700000000002,0.0,0.0,0.0,0.0,169.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +535,535,1609403929.2,222.6,29.5,170.0,122.319239,0.0,0.0,0.0,0.0,0.0,0.0,547.118644,68.566753,132.637325,4.087664,0.0,1548.2000000476837,1.0,0.0,52.245009,6.813139,105.3792,122.700748,0.0,366.814883,99.361045,0.0,0.0,0.0,0.0,0.0,4.087664410665603,305.0000020296601,590.0000018115,586,0.0,4788.200000000002,0.0,0.0,0.0,0.0,170.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +536,536,1609403931.2,231.3,30.0,170.0,121.999801,0.0,0.0,0.0,0.0,0.0,0.0,530.0,67.667516,135.559842,4.098367,0.0,1550.2000000476837,1.0,0.0,52.244987,6.813262,105.544885,123.829493,0.0,367.111321,99.899327,0.0,0.0,0.0,0.0,0.0,4.0983673407795145,300.99999802152,603.00000038124,587,0.0,4796.9000000000015,0.0,0.0,0.0,0.0,170.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +537,537,1609403933.2,239.5,30.0,170.0,121.273787,0.0,0.0,0.0,0.0,0.0,0.0,542.0,69.690798,136.00946000000002,4.122902,0.0,1552.2000000476837,1.0,0.0,52.244968,6.813377,105.719431,134.23243,0.0,204.640891,97.311153,0.0,0.0,0.0,0.0,0.0,4.122902503242519,310.00000147956,605.0000001612001,588,0.0,4805.100000000001,0.0,0.0,0.0,0.0,170.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +538,538,1609403935.2,247.1,30.5,171.0,120.776254,0.0,0.0,0.0,0.0,0.0,0.0,546.885246,70.365225,133.536561,4.139887,0.0,1554.2000000476837,1.0,0.0,52.244951,6.813485000000001,106.02981,136.381383,0.0,333.64714,104.581827,0.0,0.0,0.0,0.0,0.0,4.139886636987431,313.0000011495,594.00000137142,589,0.0,4812.700000000002,0.0,0.0,0.0,0.0,171.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +539,539,1609403937.2,8.6,30.0,171.0,122.11466,0.0,0.0,0.0,0.0,0.0,0.0,492.0,64.969808,122.970537,4.094512,0.0,1556.2000000476837,1.0,0.0,52.244931,6.813607000000001,106.2933,138.58884799999998,0.0,319.706741,134.885415,0.0,0.0,0.0,0.0,0.0,4.09451248523314,288.9999993417601,547.0000020941401,590,0.0,4821.300000000002,0.0,0.0,0.0,0.0,171.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +540,540,1609403939.8,18.8,27.5,172.0,127.499393,0.0,0.0,0.0,0.0,0.0,0.0,126.545455,18.43434,40.915243,3.921587,0.0,1558.7999999523163,1.0,0.0,52.244906,6.81375,106.614766,132.254898,0.0,318.980148,134.885415,0.0,0.0,0.0,0.0,0.0,3.92158729728227,81.9999998748,182.00000221745998,592,0.0,4831.500000000002,0.0,0.0,0.0,0.0,172.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +541,541,1609403942.2,26.6,20.5,172.0,138.051502,0.0,0.0,0.0,0.0,0.0,0.0,204.878049,26.527465000000007,48.558749,3.621837,0.0,1561.2000000476837,1.0,0.0,52.244885,6.813861,106.819951,130.752449,0.0,272.111411,109.631491,0.0,0.0,0.0,0.0,0.0,3.621836725832943,118.0000003623,215.99999847678,592,0.0,4839.300000000002,0.0,0.0,0.0,0.0,172.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +542,542,1609403945.2,35.2,20.0,173.0,152.26849,0.0,0.0,0.0,0.0,0.0,0.0,342.0,45.411423,87.225902,3.2836730000000003,0.0,1564.2000000476837,1.0,0.0,52.244864,6.813981,107.177388,143.824466,0.0,121.800069,55.309834,0.0,0.0,0.0,0.0,0.0,3.2836734638926286,202.00000001706002,388.00000179444,593,0.0,4847.9000000000015,0.0,0.0,0.0,0.0,173.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +543,543,1609403948.4,44.4,18.5,173.0,165.327055,0.0,0.0,0.0,0.0,0.0,0.0,308.108108,37.318298,70.81484300000002,3.024308,0.0,1567.4000000953674,1.0,0.0,52.244838,6.8141110000000005,107.443443,148.038308,0.0,149.64400700000004,67.777725,0.0,0.0,0.0,0.0,0.0,3.024308392839877,165.99999952956,315.00000092946004,594,0.0,4857.100000000002,0.0,0.0,0.0,0.0,173.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +544,544,1609403951.6,53.8,18.5,174.0,172.22391499999995,0.0,0.0,0.0,0.0,0.0,0.0,392.432432,46.760277,95.993454,2.903197,0.0,1570.5999999046326,1.0,0.0,52.244813,6.814241,107.764382,170.993764,0.0,85.770431,38.588124,0.0,0.0,0.0,0.0,0.0,2.903197270831986,207.99999935694,427.00000195187994,595,0.0,4866.500000000002,0.0,0.0,0.0,0.0,174.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +545,545,1609403955.0,63.7,18.5,174.0,172.56896899999995,0.0,0.0,0.0,0.0,0.0,0.0,376.216216,44.73699600000001,91.497273,2.897392,0.0,1574.0,1.0,0.0,52.244783,6.814378,107.958928,178.28267,0.0,130.3924,59.575453,0.0,0.0,0.0,0.0,0.0,2.8973922884131045,199.00000034712002,406.99999970406,597,0.0,4876.4000000000015,0.0,0.0,0.0,0.0,174.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +546,546,1609403958.2,73.5,18.5,173.0,170.140202,0.0,0.0,0.0,0.0,0.0,0.0,389.189189,46.760277,95.543836,2.938753,0.0,1577.2000000476837,1.0,0.0,52.244755,6.814514,108.16705,183.406044,0.0,126.268282,54.949498,0.0,0.0,0.0,0.0,0.0,2.9387528292695935,207.99999935694,425.00000217192,598,0.0,4886.200000000002,0.0,0.0,0.0,0.0,173.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +547,547,1609403961.4,83.2,19.0,172.0,168.312902,0.0,0.0,0.0,0.0,0.0,0.0,353.684211,42.713715,89.47399200000002,2.970658,0.0,1580.4000000953674,1.0,0.0,52.244726,6.814649,108.397437,173.798365,0.0,143.898853,62.330461,0.0,0.0,0.0,0.0,0.0,2.9706575910621518,190.0000013373,398.00000069424004,599,0.0,4895.9000000000015,0.0,0.0,0.0,0.0,172.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +548,548,1609403964.6,92.8,19.0,172.0,167.53155,0.0,0.0,0.0,0.0,0.0,0.0,404.210526,48.783558,93.970172,2.984512,0.0,1583.5999999046326,1.0,0.0,52.244698,6.814782000000001,108.619942,175.362378,0.0,93.020173,40.551698,0.0,0.0,0.0,0.0,0.0,2.9845124694423233,216.99999836676002,417.99999849384005,600,0.0,4905.500000000002,0.0,0.0,0.0,0.0,172.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +549,549,1609403967.6,102.2,19.0,172.0,166.388723,0.0,0.0,0.0,0.0,0.0,0.0,397.894737,46.535468,97.117499,3.005011,0.0,1586.5999999046326,1.0,0.0,52.244669,6.814911,108.751277,170.411871,0.0,147.853456,64.474406,0.0,0.0,0.0,0.0,0.0,3.005011343226668,206.99999946696,432.00000140178,600,0.0,4914.9000000000015,0.0,0.0,0.0,0.0,172.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +550,550,1609403971.1,112.0,19.0,171.0,164.146772,0.0,0.0,0.0,0.0,0.0,0.0,423.157895,51.256458,96.443072,3.0460540000000003,0.0,1590.0999999046326,1.0,0.0,52.244639,6.8150460000000015,108.881763,173.007474,0.0,97.072931,42.064792,0.0,0.0,0.0,0.0,0.0,3.0460544176890667,228.00000160476003,429.00000173184,602,0.0,4924.700000000002,0.0,0.0,0.0,0.0,171.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +551,551,1609403974.1,121.5,19.0,170.0,161.351695,0.0,0.0,0.0,0.0,0.0,0.0,388.421053,46.310659,94.194981,3.098821,0.0,1593.0999999046326,1.0,0.0,52.244612,6.815179,109.142561,175.614562,0.0,170.950447,70.328861,0.0,0.0,0.0,0.0,0.0,3.0988208707692837,205.99999957698003,418.99999838382,603,0.0,4934.200000000002,0.0,0.0,0.0,0.0,170.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +552,552,1609403977.2,131.5,19.0,169.0,159.017481,0.0,0.0,0.0,0.0,0.0,0.0,429.473684,50.357222,100.040016,3.144308,0.0,1596.2000000476837,1.0,0.0,52.24458,6.815316,109.316774,172.419797,0.0,165.754446,78.77163,0.0,0.0,0.0,0.0,0.0,3.144308392106903,224.00000204484002,444.99999997152,604,0.0,4944.200000000002,0.0,0.0,0.0,0.0,169.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +553,553,1609403980.5,142.0,18.0,169.0,157.814502,0.0,0.0,0.0,0.0,0.0,0.0,440.0,50.80684,101.838488,3.168277,0.0,1599.5,1.0,0.0,52.244546,6.815459,109.366904,158.67998899999995,0.0,285.363682,84.200973,0.0,0.0,0.0,0.0,0.0,3.1682766391139388,226.0000018248,452.99999909135994,605,0.0,4954.700000000002,0.0,0.0,0.0,0.0,169.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +554,554,1609403983.6,152.0,18.5,169.0,157.854044,0.0,0.0,0.0,0.0,0.0,0.0,421.621622,49.457985,105.210624,3.1674830000000003,0.0,1602.5999999046326,1.0,0.0,52.244515,6.815598,109.398738,150.354262,0.0,271.356446,76.02279300000002,0.0,0.0,0.0,0.0,0.0,3.167482994607348,219.9999980367,468.00000188928,605,0.0,4964.700000000002,0.0,0.0,0.0,0.0,169.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +555,555,1609403986.8,161.9,19.0,168.0,158.598864,0.0,0.0,0.0,0.0,0.0,0.0,423.157895,51.256458,98.241544,3.1526080000000003,0.0,1605.7999999523163,1.0,0.0,52.244487,6.815736,109.595739,136.940793,0.0,264.532231,74.028382,0.0,0.0,0.0,0.0,0.0,3.1526077008975295,228.00000160476003,437.00000085168,606,0.0,4974.600000000001,0.0,0.0,0.0,0.0,168.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +556,556,1609403990.0,171.8,19.5,168.0,159.51328600000005,0.0,0.0,0.0,0.0,0.0,0.0,430.76923099999993,50.80684,105.210624,3.134535,0.0,1609.0,1.0,0.0,52.244457,6.815872,109.670948,137.527342,0.0,161.275278,69.288591,0.0,0.0,0.0,0.0,0.0,3.13453513834578,226.0000018248,468.00000188928,608,0.0,4984.500000000001,0.0,0.0,0.0,0.0,168.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +557,557,1609403993.0,181.4,19.5,167.0,159.870653,0.0,0.0,0.0,0.0,0.0,0.0,440.0,52.605312,91.722082,3.127528,0.0,1612.0,1.0,0.0,52.244429,6.8160050000000005,109.82121,140.084565,0.0,169.228655,71.383818,0.0,0.0,0.0,0.0,0.0,3.1275283525613666,234.00000094464,407.99999959404,608,0.0,4994.100000000001,0.0,0.0,0.0,167.0,167.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +558,558,1609403995.8,190.5,20.5,167.0,158.106451,0.0,0.0,0.0,0.0,0.0,0.0,427.31707300000005,53.05493000000001,103.412151,3.162426,0.0,1614.7999999523163,1.0,0.0,52.244402,6.8161320000000005,109.953831,139.593314,0.0,231.210028,64.311533,0.0,0.0,0.0,0.0,0.0,3.162426307323792,236.00000072460003,459.99999832122,609,0.0,5003.200000000002,0.0,0.0,0.0,167.0,167.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +559,559,1609403998.9,9.8,20.5,166.0,153.066537,0.0,0.0,0.0,0.0,0.0,0.0,567.804878,63.396145,134.210988,3.266553,0.0,1617.9000000953674,1.0,0.0,52.244373,6.816267,110.058136,143.460868,0.0,188.722203,78.310056,0.0,0.0,0.0,0.0,0.0,3.2665532898284617,282.00000011189996,597.00000104136,611,0.0,5013.000000000002,0.0,0.0,0.0,166.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +560,560,1609404001.1,17.3,26.5,165.0,145.008549,0.0,0.0,0.0,0.0,0.0,0.0,649.811321,79.357586,145.001821,3.4480730000000004,0.0,1620.0999999046326,1.0,0.0,52.244351,6.816371000000001,110.209603,154.883268,0.0,239.564771,64.719483,0.0,0.0,0.0,0.0,0.0,3.4480725684662907,353.00000119692004,645.00000020862,611,0.0,5020.500000000002,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +561,561,1609404003.0,25.7,28.5,165.0,135.589677,0.0,0.0,0.0,0.0,0.0,0.0,635.789474,75.98545,145.001821,3.687596,0.0,1622.0,1.0,0.0,52.244327,6.8164880000000005,110.476003,158.0071,0.0,165.99098500000005,74.553717,0.0,0.0,0.0,0.0,0.0,3.6875963647291528,337.999998399,645.00000020862,612,0.0,5028.9000000000015,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +562,562,1609404005.1,34.0,30.0,165.0,127.61229,0.0,0.0,0.0,0.0,0.0,0.0,584.0,75.31102299999998,141.854495,3.918118,0.0,1624.0999999046326,1.0,0.0,52.244301,6.816601,110.690895,155.675329,0.0,279.778179,134.885415,0.0,0.0,0.0,0.0,0.0,3.9181179179528867,334.99999872905994,631.0000017489,613,0.0,5037.200000000002,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +563,563,1609404007.1,41.7,30.5,165.0,122.417028,0.0,0.0,0.0,0.0,0.0,0.0,592.131148,76.884686,136.23426899999998,4.084399,0.0,1626.0999999046326,1.0,0.0,52.244275,6.816707000000001,110.842875,143.334803,0.0,279.749137,134.885415,0.0,0.0,0.0,0.0,0.0,4.084399108267847,341.99999795892,606.0000000511799,614,0.0,5044.9000000000015,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +564,564,1609404009.0,50.6,29.5,165.0,119.59322,0.0,0.0,0.0,0.0,0.0,0.0,600.0,74.636596,142.304113,4.180839,0.0,1628.0,1.0,0.0,52.244246,6.8168289999999985,110.910975,139.172116,0.0,279.764552,134.885415,0.0,0.0,0.0,0.0,0.0,4.180839014118025,331.99999905912,633.0000015288599,615,0.0,5053.800000000001,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +565,565,1609404011.0,59.0,29.5,165.0,118.689411,0.0,0.0,0.0,0.0,0.0,0.0,569.491525,72.613315,138.707168,4.212676,0.0,1630.0,1.0,0.0,52.244221,6.816944,111.09155,131.50913300000002,0.0,296.749996,134.885415,0.0,0.0,0.0,0.0,0.0,4.212675720498773,323.0000000493,616.99999884096,616,0.0,5062.200000000002,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +566,566,1609404013.1,66.7,30.0,165.0,118.80964099999998,0.0,0.0,0.0,0.0,0.0,0.0,560.0,73.062933,137.35831399999998,4.208413,0.0,1632.0999999046326,1.0,0.0,52.244197,6.81705,111.23944,127.41192,0.0,297.3423279999999,134.885415,0.0,0.0,0.0,0.0,0.0,4.208412682603764,324.99999982926005,610.99999950108,617,0.0,5069.9000000000015,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +567,567,1609404015.2,76.2,29.5,166.0,119.046334,0.0,0.0,0.0,0.0,0.0,0.0,583.7288139999998,74.861405,138.931977,4.2000449999999985,0.0,1634.2000000476837,1.0,0.0,52.244169,6.817183,111.522477,125.250008,0.0,384.237005,126.456195,0.0,0.0,0.0,0.0,0.0,4.200045336969384,332.9999989491,617.99999873094,618,0.0,5079.4000000000015,0.0,0.0,0.0,166.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +568,568,1609404017.2,84.6,29.5,167.0,119.681501,0.0,0.0,0.0,0.0,0.0,0.0,486.101695,62.946527,124.319391,4.177755,0.0,1636.2000000476837,1.0,0.0,52.244143,6.817297999999999,111.794569,122.376699,0.0,296.749996,134.885415,0.0,0.0,0.0,0.0,0.0,4.177755090153823,280.00000033194004,553.00000143402,619,0.0,5087.8,0.0,0.0,0.0,167.0,167.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +569,569,1609404019.1,91.6,31.0,167.0,120.542523,0.0,0.0,0.0,0.0,0.0,0.0,505.16129000000006,68.341944,129.265189,4.147914,0.0,1638.0999999046326,1.0,0.0,52.24412,6.817394,112.123951,124.134853,0.0,378.830318,130.252276,0.0,0.0,0.0,0.0,0.0,4.147913844477936,304.00000213967996,574.99999901358,620,0.0,5094.8,0.0,0.0,0.0,167.0,167.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +570,570,1609404021.0,100.4,29.5,168.0,120.931253,0.0,0.0,0.0,0.0,0.0,0.0,561.355932,71.714079,133.536561,4.1345800000000015,0.0,1640.0,1.0,0.0,52.24409,6.817513000000001,112.41789,125.318847,0.0,355.222439,134.885415,0.0,0.0,0.0,0.0,0.0,4.1345804959120045,319.00000048938,594.00000137142,621,0.0,5103.6,0.0,0.0,0.0,0.0,168.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +571,571,1609404023.0,108.6,30.0,168.0,121.016871,0.0,0.0,0.0,0.0,0.0,0.0,542.0,69.690798,137.35831399999998,4.131655,0.0,1642.0,1.0,0.0,52.244061,6.817622999999998,112.670081,132.372996,0.0,232.02622,103.859765,0.0,0.0,0.0,0.0,0.0,4.131655329280494,310.00000147956,610.99999950108,622,0.0,5111.8,0.0,0.0,0.0,0.0,168.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +572,572,1609404025.1,116.4,32.0,169.0,120.698904,0.0,0.0,0.0,0.0,0.0,0.0,536.25,71.48926999999998,127.241908,4.14254,0.0,1644.0999999046326,1.0,0.0,52.244033,6.817728,112.82602,131.914848,0.0,360.339576,134.885415,0.0,0.0,0.0,0.0,0.0,4.142539687021516,318.0000005994,566.0000000037602,623,0.0,5119.6,0.0,0.0,0.0,0.0,169.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +573,573,1609404027.0,125.2,30.0,170.0,119.893645,0.0,0.0,0.0,0.0,0.0,0.0,590.0,73.512551,140.280831,4.170363,0.0,1646.0,1.0,0.0,52.244003,6.817848,113.09506,134.316652,0.0,384.175204,107.384208,0.0,0.0,0.0,0.0,0.0,4.170362824484983,326.99999960922,623.9999980708202,624,0.0,5128.4000000000015,0.0,0.0,0.0,0.0,170.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +574,574,1609404028.8,132.7,32.0,171.0,119.304624,0.0,0.0,0.0,0.0,0.0,0.0,530.625,71.714079,135.110224,4.1909519999999985,0.0,1647.7999999523163,1.0,0.0,52.243976,6.817948,113.276367,127.065436,0.0,482.078121,134.885415,0.0,0.0,0.0,0.0,0.0,4.190952397620397,319.00000048938,601.0000006012799,625,0.0,5135.9000000000015,0.0,0.0,0.0,0.0,171.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +575,575,1609404031.1,140.9,30.0,171.0,119.063047,0.0,0.0,0.0,0.0,0.0,0.0,600.0,74.636596,138.931977,4.199456,0.0,1650.0999999046326,1.0,0.0,52.243947,6.818059,113.555386,127.115953,0.0,339.649554,110.057611,0.0,0.0,0.0,0.0,0.0,4.199455772369071,331.99999905912,617.99999873094,627,0.0,5144.1,0.0,0.0,0.0,0.0,171.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +576,576,1609404032.8,149.3,32.0,172.0,119.034766,0.0,0.0,0.0,0.0,0.0,0.0,570.0,77.55911400000002,138.931977,4.200454,0.0,1651.7999999523163,1.0,0.0,52.243917,6.818172,113.82036200000002,124.789132,0.0,301.491161,134.885415,0.0,0.0,0.0,0.0,0.0,4.2004535044828835,345.00000207708007,617.99999873094,627,0.0,5152.5,0.0,0.0,0.0,0.0,172.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +577,577,1609404034.8,157.7,30.0,172.0,119.482405,0.0,0.0,0.0,0.0,0.0,0.0,570.0,73.062933,138.707168,4.184717,0.0,1653.7999999523163,1.0,0.0,52.243886,6.8182839999999985,114.00938700000002,125.476505,0.0,396.846676,108.414046,0.0,0.0,0.0,0.0,0.0,4.1847165697744355,324.99999982926005,616.99999884096,628,0.0,5160.9,0.0,0.0,0.0,0.0,172.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +578,578,1609404037.1,165.9,30.5,173.0,120.282131,0.0,0.0,0.0,0.0,0.0,0.0,542.95082,71.714079,134.660606,4.156893,0.0,1656.0999999046326,1.0,0.0,52.243856,6.818395,114.240581,128.671345,0.0,263.589644,108.218395,0.0,0.0,0.0,0.0,0.0,4.156893429166131,319.00000048938,599.00000082132,630,0.0,5169.0999999999985,0.0,0.0,0.0,0.0,173.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +579,579,1609404038.7,173.5,30.0,173.0,121.081995,0.0,0.0,0.0,0.0,0.0,0.0,558.0,71.039652,137.583123,4.1294330000000015,0.0,1657.7000000476837,1.0,0.0,52.243829,6.8184960000000014,114.450007,130.921727,0.0,319.706741,134.885415,0.0,0.0,0.0,0.0,0.0,4.129433116789992,316.00000081944,611.99999939106,630,0.0,5176.7,0.0,0.0,0.0,0.0,173.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +580,580,1609404040.7,181.8,30.5,173.0,121.590101,0.0,0.0,0.0,0.0,0.0,0.0,546.885246,71.264461,131.962898,4.112177,0.0,1659.7000000476837,1.0,0.0,52.243799,6.818609,114.691176,129.543605,0.0,362.759727,100.30137,0.0,0.0,0.0,0.0,0.0,4.112176862160843,317.00000070942,587.00000214156,631,0.0,5185.0,0.0,0.0,0.0,0.0,173.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +581,581,1609404042.6,190.1,30.0,174.0,121.562617,0.0,0.0,0.0,0.0,0.0,0.0,558.0,69.46598900000001,136.00946000000002,4.113107,0.0,1661.5999999046326,1.0,0.0,52.243769,6.81872,115.042582,133.279577,0.0,371.645385,100.936029,0.0,0.0,0.0,0.0,0.0,4.113106581112843,309.00000158958005,605.0000001612001,632,0.0,5193.3,0.0,0.0,0.0,0.0,174.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +582,582,1609404044.7,198.4,30.5,174.0,121.287796,0.0,0.0,0.0,0.0,0.0,0.0,550.819672,72.613315,138.25755,4.122426,0.0,1663.7000000476837,1.0,0.0,52.243737,6.8188309999999985,115.308905,132.745555,0.0,197.403403,100.997909,0.0,0.0,0.0,0.0,0.0,4.122426299180175,323.0000000493,614.999999061,633,0.0,5201.6,0.0,0.0,0.0,0.0,174.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +583,583,1609404046.6,206.8,31.0,175.0,121.216452,0.0,0.0,0.0,0.0,0.0,0.0,450.967742,61.14805500000001,121.172064,4.124853,0.0,1665.5999999046326,1.0,0.0,52.243705,6.818942,115.550776,144.422828,0.0,264.629699,134.885415,0.0,0.0,0.0,0.0,0.0,4.124852623140628,272.0000012121,538.9999985260798,634,0.0,5210.0,0.0,0.0,0.0,0.0,175.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +584,584,1609404048.5,214.4,31.0,175.0,121.70016,0.0,0.0,0.0,0.0,0.0,0.0,474.193548,64.74499899999999,122.0713,4.1084580000000015,0.0,1667.5,1.0,0.0,52.243675,6.819042,115.793548,145.16613,0.0,405.000378,134.885415,0.0,0.0,0.0,0.0,0.0,4.108458033251559,287.99999945178,542.999998086,635,0.0,5217.6,0.0,0.0,0.0,0.0,175.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +585,585,1609404050.5,222.4,30.0,175.0,122.91244,0.0,0.0,0.0,0.0,0.0,0.0,532.0,69.690798,125.443436,4.0679370000000015,0.0,1669.5,1.0,0.0,52.243644,6.819147999999998,115.993742,145.022914,0.0,279.778179,134.885415,0.0,0.0,0.0,0.0,0.0,4.067936492026357,310.00000147956,558.0000008839199,636,0.0,5225.6,0.0,0.0,0.0,0.0,175.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +586,586,1609404052.5,230.5,31.0,175.0,123.912604,0.0,0.0,0.0,0.0,0.0,0.0,425.806452,60.923246,118.249547,4.035101999999998,0.0,1671.5,1.0,0.0,52.243613,6.819256,116.453816,142.36843100000004,0.0,292.2329220000001,94.799162,0.0,0.0,0.0,0.0,0.0,4.035102030460114,271.00000132212,525.9999999563398,637,0.0,5233.700000000002,0.0,0.0,0.0,0.0,175.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +587,587,1609404054.5,238.6,30.0,176.0,123.788084,0.0,0.0,0.0,0.0,0.0,0.0,482.0,62.721718,122.0713,4.039161,0.0,1673.5,1.0,0.0,52.243579,6.8193600000000005,116.69477,145.215606,0.0,274.24199,134.885415,0.0,0.0,0.0,0.0,0.0,4.039160990649148,279.00000044195997,542.999998086,638,0.0,5241.800000000001,0.0,0.0,0.0,0.0,176.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +588,588,1609404056.5,246.7,30.5,176.0,123.327666,0.0,0.0,0.0,0.0,0.0,0.0,483.934426,66.318662,124.5442,4.05424,0.0,1675.5,1.0,0.0,52.24354500000001,6.819464999999999,117.02684,142.409161,0.0,334.726216,96.364074,0.0,0.0,0.0,0.0,0.0,4.054240351876927,294.99999868163997,554.000001324,639,0.0,5249.9000000000015,0.0,0.0,0.0,0.0,176.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +589,589,1609404058.4,8.2,30.0,176.0,124.387932,0.0,0.0,0.0,0.0,0.0,0.0,518.0,66.993089,130.838852,4.0196830000000014,0.0,1677.4000000953674,1.0,0.0,52.243508,6.819569,117.214441,140.822463,0.0,274.24199,134.885415,0.0,0.0,0.0,0.0,0.0,4.019682552484271,297.99999835157996,581.99999824344,640,0.0,5258.100000000001,0.0,0.0,0.0,0.0,176.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +590,590,1609404061.9,21.0,21.5,176.0,129.442429,0.0,0.0,0.0,0.0,0.0,0.0,175.813953,22.930521,46.535468,3.862721,0.0,1680.9000000953674,1.0,0.0,52.24345,6.819732000000001,117.248572,136.436657,0.0,307.160249,134.885415,0.0,0.0,0.0,0.0,0.0,3.8627210866075448,102.00000212261999,206.99999946696,642,0.0,5270.9000000000015,0.0,0.0,0.0,0.0,176.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +591,591,1609404064.2,28.2,20.0,176.0,140.936895,0.0,0.0,0.0,0.0,0.0,0.0,186.0,24.279375,46.535468,3.5476870000000003,0.0,1683.2000000476837,1.0,0.0,52.24342,6.819825,117.363994,134.31803200000002,0.0,252.429651,110.443334,0.0,0.0,0.0,0.0,0.0,3.5476870694504803,108.0000014625,206.99999946696,642,0.0,5278.100000000001,0.0,0.0,0.0,0.0,176.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +592,592,1609404067.6,37.7,18.0,176.0,158.495123,0.0,0.0,0.0,0.0,0.0,0.0,203.333333,26.977083,51.031649,3.154671,0.0,1686.5999999046326,1.0,0.0,52.24338,6.819947999999999,117.528591,138.21328300000002,0.0,174.74043899999995,82.849499,0.0,0.0,0.0,0.0,0.0,3.1546712008293154,120.00000014226002,227.00000171477996,643,0.0,5287.600000000001,0.0,0.0,0.0,0.0,176.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +593,593,1609404070.9,45.9,17.5,176.0,177.47193,0.0,0.0,0.0,0.0,0.0,0.0,264.0,32.597309,57.775919,2.8173470000000003,0.0,1689.9000000953674,1.0,0.0,52.243345,6.820053999999999,117.557998,138.704817,0.0,145.781995,58.58655200000001,0.0,0.0,0.0,0.0,0.0,2.8173469460776133,145.00000183998,256.99999841417997,644,0.0,5295.800000000001,0.0,0.0,0.0,0.0,176.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +594,594,1609404074.3,54.7,17.5,176.0,190.805015,0.0,0.0,0.0,0.0,0.0,0.0,291.428571,35.74463499999999,67.892325,2.620476,0.0,1693.2999999523163,1.0,0.0,52.243309,6.820169,117.673429,144.442361,0.0,125.829464,45.734465,0.0,0.0,0.0,0.0,0.0,2.6204761966031134,159.0000002997,301.99999791150003,645,0.0,5304.600000000001,0.0,0.0,0.0,0.0,176.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +595,595,1609404077.7,63.8,17.5,176.0,194.168773,0.0,0.0,0.0,0.0,0.0,0.0,281.142857,34.845399,67.892325,2.575079,0.0,1696.7000000476837,1.0,0.0,52.243271,6.820287,117.718987,150.840096,0.0,171.089997,42.770877,0.0,0.0,0.0,0.0,0.0,2.5750793614995957,155.00000073978,301.99999791150003,646,0.0,5313.700000000002,0.0,0.0,0.0,0.0,176.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +596,596,1609404081.2,73.3,17.0,175.0,189.974842,0.0,0.0,0.0,0.0,0.0,0.0,381.176471,46.760277,86.77628399999998,2.631927,0.0,1700.2000000476837,1.0,0.0,52.243234,6.820411999999998,117.913768,155.549936,0.0,194.650986,50.304266,0.0,0.0,0.0,0.0,0.0,2.6319274422662766,207.99999935694,386.00000201448,647,0.0,5323.200000000002,0.0,0.0,0.0,0.0,175.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +597,597,1609404084.7,83.0,17.0,174.0,183.583245,0.0,0.0,0.0,0.0,0.0,0.0,345.882353,41.364861,85.87704699999998,2.72356,0.0,1703.7000000476837,1.0,0.0,52.243193,6.820539,117.98108700000002,158.76276,0.0,100.154322,47.636283,0.0,0.0,0.0,0.0,0.0,2.7235600939508395,184.00000199742001,381.99999800634004,648,0.0,5332.9000000000015,0.0,0.0,0.0,0.0,174.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +598,598,1609404088.1,92.5,17.5,173.0,177.617747,0.0,0.0,0.0,0.0,0.0,0.0,373.714286,42.488906,81.605676,2.815034,0.0,1707.0999999046326,1.0,0.0,52.243155,6.8206630000000015,118.216197,147.996478,0.0,227.114008,58.43556,0.0,0.0,0.0,0.0,0.0,2.8150340179689364,189.00000144732,363.00000009672,649,0.0,5342.4000000000015,0.0,0.0,0.0,0.0,173.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +599,599,1609404091.2,101.9,18.5,173.0,172.862541,0.0,0.0,0.0,0.0,0.0,0.0,360.0,42.713715,91.722082,2.892472,0.0,1710.2000000476837,1.0,0.0,52.243116,6.820785000000001,118.278046,163.582171,0.0,85.724879,38.565862,0.0,0.0,0.0,0.0,0.0,2.8924716546889133,190.0000013373,407.99999959404,650,0.0,5351.800000000001,0.0,0.0,0.0,0.0,173.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +600,600,1609404094.7,112.2,18.5,171.0,169.946126,0.0,0.0,0.0,0.0,0.0,0.0,334.054054,41.814479,82.729721,2.942109,0.0,1713.7000000476837,1.0,0.0,52.243075,6.820921,118.515909,165.128448,0.0,173.01928999999996,62.465372,0.0,0.0,0.0,0.0,0.0,2.9421088421868467,186.00000177738,367.99999954662,651,0.0,5362.100000000001,0.0,0.0,0.0,0.0,171.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +601,601,1609404097.9,121.9,18.0,171.0,168.975876,0.0,0.0,0.0,0.0,0.0,0.0,286.666667,36.194253,71.264461,2.959002,0.0,1716.9000000953674,1.0,0.0,52.243035,6.821047,118.771381,167.790927,0.0,143.598369,66.586617,0.0,0.0,0.0,0.0,0.0,2.9590022660986235,161.00000007966003,317.00000070942,652,0.0,5371.800000000001,0.0,0.0,0.0,0.0,171.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +602,602,1609404101.3,131.9,18.0,171.0,169.23915300000004,0.0,0.0,0.0,0.0,0.0,0.0,346.666667,43.163333,86.10185600000001,2.954399,0.0,1720.2999999523163,1.0,0.0,52.242993,6.821176,119.010356,177.251615,0.0,144.73095800000004,66.279744,0.0,0.0,0.0,0.0,0.0,2.9543990922715144,192.00000111726,382.99999789632005,653,0.0,5381.800000000001,0.0,0.0,0.0,0.0,171.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +603,603,1609404104.7,142.0,17.5,170.0,169.556692,0.0,0.0,0.0,0.0,0.0,0.0,373.714286,44.512187,92.846127,2.948866,0.0,1723.7000000476837,1.0,0.0,52.242949,6.821306,119.228329,184.602311,0.0,86.486807,40.163815,0.0,0.0,0.0,0.0,0.0,2.9488662116621147,198.00000045714,412.99999904393997,654,0.0,5391.9000000000015,0.0,0.0,0.0,0.0,170.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +604,604,1609404107.9,151.7,18.0,169.0,169.24305,0.0,0.0,0.0,0.0,0.0,0.0,356.666667,42.938524,85.87704699999998,2.9543310000000003,0.0,1726.9000000953674,1.0,0.0,52.242906,6.82143,119.451854,180.340681,0.0,172.44269599999996,66.275209,0.0,0.0,0.0,0.0,0.0,2.954331064111643,191.00000122728,381.99999800634004,655,0.0,5401.600000000001,0.0,0.0,0.0,0.0,169.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +605,605,1609404111.1,161.4,18.5,168.0,168.814167,0.0,0.0,0.0,0.0,0.0,0.0,389.189189,46.535468,90.598037,2.961837,0.0,1730.0999999046326,1.0,0.0,52.242862,6.821553,119.695042,177.63193,0.0,144.228722,61.05789300000001,0.0,0.0,0.0,0.0,0.0,2.9618367278381323,206.99999946696,403.00000014414,656,0.0,5411.300000000001,0.0,0.0,0.0,0.0,168.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +606,606,1609404114.1,170.7,19.5,167.0,168.152458,0.0,0.0,0.0,0.0,0.0,0.0,458.461538,56.427065,104.761006,2.973492,0.0,1733.0999999046326,1.0,0.0,52.242819,6.82167,119.857522,173.556082,0.0,137.51275900000002,62.706745,0.0,0.0,0.0,0.0,0.0,2.9734920675379013,250.9999990743,466.00000210932006,657,0.0,5420.600000000001,0.0,0.0,0.0,167.0,167.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +607,607,1609404117.3,180.7,19.0,166.0,165.02267700000004,0.0,0.0,0.0,0.0,0.0,0.0,423.157895,51.481267,105.435433,3.029887,0.0,1736.2999999523163,1.0,0.0,52.242773,6.821797,120.015346,166.638238,0.0,171.376953,72.06287900000002,0.0,0.0,0.0,0.0,0.0,3.029886613704612,229.00000149474,469.00000177925995,658,0.0,5430.600000000001,0.0,0.0,0.0,166.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +608,608,1609404120.1,9.2,20.5,165.0,157.608074,0.0,0.0,0.0,0.0,0.0,0.0,681.95122,80.256822,142.97853999999995,3.172426,0.0,1739.0999999046326,1.0,0.0,52.242731,6.821913,120.171494,165.691589,0.0,169.89633899999995,82.761981,0.0,0.0,0.0,0.0,0.0,3.172426306027952,357.00000075684,636.0000011988,659,0.0,5439.800000000001,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +609,609,1609404122.3,17.2,28.0,165.0,146.57201,0.0,0.0,0.0,0.0,0.0,0.0,634.285714,81.605676,144.102585,3.411293,0.0,1741.2999999523163,1.0,0.0,52.242695,6.822014,120.392179,147.990429,0.0,351.189377,110.677178,0.0,0.0,0.0,0.0,0.0,3.4112925107597283,363.00000009672,641.0000006487,660,0.0,5447.800000000001,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +610,610,1609404124.3,25.2,29.5,165.0,134.739595,0.0,0.0,0.0,0.0,0.0,0.0,638.644068,82.05529399999998,142.528922,3.710862,0.0,1743.2999999523163,1.0,0.0,52.242657,6.822114,120.464831,137.562359,0.0,269.463782,75.74732,0.0,0.0,0.0,0.0,0.0,3.710861681007725,364.99999987667996,634.0000014188399,661,0.0,5455.800000000001,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +611,611,1609404126.3,33.5,30.0,164.0,125.500865,0.0,0.0,0.0,0.0,0.0,0.0,596.0,74.636596,142.97853999999995,3.984036,0.0,1745.2999999523163,1.0,0.0,52.242619,6.8222190000000005,120.671195,122.788295,0.0,341.669147,91.986294,0.0,0.0,0.0,0.0,0.0,3.984036285327596,331.99999905912,636.0000011988,662,0.0,5464.100000000001,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +612,612,1609404128.3,42.0,30.5,165.0,120.173966,0.0,0.0,0.0,0.0,0.0,0.0,586.229508,74.636596,141.62968600000005,4.160635,0.0,1747.2999999523163,1.0,0.0,52.242579,6.822325,120.683966,113.193247,0.0,379.588464,103.680663,0.0,0.0,0.0,0.0,0.0,4.1606349248721655,331.99999905912,630.0000018589201,663,0.0,5472.600000000001,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +613,613,1609404130.2,49.7,31.0,164.0,117.689758,0.0,0.0,0.0,0.0,0.0,0.0,592.258065,75.98545,136.00946000000002,4.248458,0.0,1749.2000000476837,1.0,0.0,52.242545,6.822424000000002,120.977919,106.47552,0.0,404.753013,111.778831,0.0,0.0,0.0,0.0,0.0,4.248458051889273,337.999998399,605.0000001612001,664,0.0,5480.300000000001,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +614,614,1609404132.3,59.1,31.0,164.0,116.696921,0.0,0.0,0.0,0.0,0.0,0.0,584.516129,77.109495,135.784651,4.284603,0.0,1751.2999999523163,1.0,0.0,52.242502,6.822539999999999,121.055006,103.915129,0.0,416.437343,114.813389,0.0,0.0,0.0,0.0,0.0,4.2846031901732875,342.99999784889997,604.00000027122,665,0.0,5489.700000000002,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +615,615,1609404134.1,66.8,30.0,164.0,116.520554,0.0,0.0,0.0,0.0,0.0,0.0,592.0,75.535832,138.032741,4.2910879999999985,0.0,1753.0999999046326,1.0,0.0,52.242467,6.822639,121.25746399999998,104.370866,0.0,421.352002,109.410868,0.0,0.0,0.0,0.0,0.0,4.291088420331404,335.99999861904,613.9999991710199,666,0.0,5497.4000000000015,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +616,616,1609404136.1,74.8,32.0,165.0,116.671605,0.0,0.0,0.0,0.0,0.0,0.0,483.75,66.76828,121.621682,4.285533,0.0,1755.0999999046326,1.0,0.0,52.242432,6.8227410000000015,121.471542,107.521654,0.0,415.823653,113.912586,0.0,0.0,0.0,0.0,0.0,4.285532885229443,296.9999984616,540.9999983060401,667,0.0,5505.4000000000015,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +617,617,1609404138.1,83.7,31.0,166.0,117.096641,0.0,0.0,0.0,0.0,0.0,0.0,524.516129,68.117134,129.714807,4.269977,0.0,1757.0999999046326,1.0,0.0,52.242392,6.8228550000000014,120.906501,111.275075,0.0,419.340761,113.585478,0.0,0.0,0.0,0.0,0.0,4.269977308742785,302.99999780148,576.99999879354,668,0.0,5514.3,0.0,0.0,0.0,166.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +618,618,1609404139.9,91.5,31.0,166.0,117.960487,0.0,0.0,0.0,0.0,0.0,0.0,561.2903230000002,73.062933,131.962898,4.238707,0.0,1758.9000000953674,1.0,0.0,52.242355,6.822951,120.128046,115.589317,0.0,396.832867,110.960224,0.0,0.0,0.0,0.0,0.0,4.238707491941772,324.99999982926005,587.00000214156,669,0.0,5522.1,0.0,0.0,0.0,166.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +619,619,1609404142.1,99.9,31.0,167.0,118.763566,0.0,0.0,0.0,0.0,0.0,0.0,580.645161,76.435068,138.482359,4.210045,0.0,1761.0999999046326,1.0,0.0,52.242314,6.823053999999999,119.080689,118.081187,0.0,419.136405,108.534229,0.0,0.0,0.0,0.0,0.0,4.210045360207523,339.99999817896,615.9999989509802,670,0.0,5530.5,0.0,0.0,0.0,167.0,167.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +620,620,1609404143.7,107.4,31.0,168.0,119.16278,0.0,0.0,0.0,0.0,0.0,0.0,553.548387,73.96216899999997,136.683887,4.195941,0.0,1762.7000000476837,1.0,0.0,52.24228,6.823150999999998,119.139394,119.93474,0.0,392.990691,102.210545,0.0,0.0,0.0,0.0,0.0,4.195941048035301,328.99999938917995,607.99999983114,671,0.0,5538.0,0.0,0.0,0.0,0.0,168.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +621,621,1609404145.7,115.8,31.0,169.0,119.42093,0.0,0.0,0.0,0.0,0.0,0.0,574.83871,74.186978,135.559842,4.186871,0.0,1764.7000000476837,1.0,0.0,52.242239,6.823253,118.948891,126.890431,0.0,294.298737,134.885415,0.0,0.0,0.0,0.0,0.0,4.186870760427004,329.99999927916,603.00000038124,672,0.0,5546.4,0.0,0.0,0.0,0.0,169.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +622,622,1609404147.7,124.0,31.0,169.0,119.602302,0.0,0.0,0.0,0.0,0.0,0.0,588.3870969999998,73.73736,138.931977,4.180522,0.0,1766.7000000476837,1.0,0.0,52.2422,6.823356,118.877031,127.651907,0.0,357.024509,101.23923,0.0,0.0,0.0,0.0,0.0,4.180521542135535,327.9999994992,617.99999873094,673,0.0,5554.5999999999985,0.0,0.0,0.0,0.0,169.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +623,623,1609404149.5,131.8,32.0,170.0,119.635397,0.0,0.0,0.0,0.0,0.0,0.0,532.5,71.714079,136.459078,4.179365,0.0,1768.5,1.0,0.0,52.242162,6.823451,118.522064,126.711746,0.0,391.479797,107.998774,0.0,0.0,0.0,0.0,0.0,4.179365075371464,319.00000048938,606.99999994116,674,0.0,5562.4,0.0,0.0,0.0,0.0,170.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +624,624,1609404151.5,140.1,31.0,171.0,119.457161,0.0,0.0,0.0,0.0,0.0,0.0,555.483871,72.163697,135.559842,4.185601,0.0,1770.5,1.0,0.0,52.242123,6.823555000000002,118.331756,123.394733,0.0,389.582691,106.718734,0.0,0.0,0.0,0.0,0.0,4.185600895035502,321.00000026934,603.00000038124,675,0.0,5570.7,0.0,0.0,0.0,0.0,171.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +625,625,1609404153.5,148.4,31.0,171.0,119.029625,0.0,0.0,0.0,0.0,0.0,0.0,557.419355,73.062933,135.335033,4.200635,0.0,1772.5,1.0,0.0,52.242083,6.823658999999998,118.272573,119.873271,0.0,390.888859,107.763849,0.0,0.0,0.0,0.0,0.0,4.2006349259690605,324.99999982926005,602.00000049126,676,0.0,5579.0,0.0,0.0,0.0,0.0,171.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +626,626,1609404155.3,156.4,31.0,172.0,118.688133,0.0,0.0,0.0,0.0,0.0,0.0,476.12903200000005,63.845763,127.916335,4.212721,0.0,1774.2999999523163,1.0,0.0,52.24204,6.823753,117.730058,116.960655,0.0,391.566308,108.778541,0.0,0.0,0.0,0.0,0.0,4.212721081390672,283.99999989186,568.9999996737,677,0.0,5587.0,0.0,0.0,0.0,0.0,172.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +627,627,1609404157.2,164.1,31.0,172.0,118.464316,0.0,0.0,0.0,0.0,0.0,0.0,551.6129030000002,72.613315,137.35831399999998,4.2206800000000015,0.0,1776.2000000476837,1.0,0.0,52.242002,6.823847,117.42787,114.454787,0.0,400.487311,111.358672,0.0,0.0,0.0,0.0,0.0,4.220680259530642,323.0000000493,610.99999950108,678,0.0,5594.7,0.0,0.0,0.0,0.0,172.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +628,628,1609404159.1,172.5,32.0,173.0,118.436954,0.0,0.0,0.0,0.0,0.0,0.0,526.875,71.264461,133.76137,4.221655,0.0,1778.0999999046326,1.0,0.0,52.241959,6.823947,116.907833,113.642493,0.0,399.89152,103.110474,0.0,0.0,0.0,0.0,0.0,4.221655345847547,317.00000070942,595.0000012614,679,0.0,5603.0999999999985,0.0,0.0,0.0,0.0,173.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +629,629,1609404161.1,180.9,31.0,173.0,118.742461,0.0,0.0,0.0,0.0,0.0,0.0,540.0,71.714079,133.986179,4.210794,0.0,1780.0999999046326,1.0,0.0,52.24191500000001,6.824047,116.270311,113.729175,0.0,393.056436,108.616723,0.0,0.0,0.0,0.0,0.0,4.210793643564453,319.00000048938,596.0000011513798,680,0.0,5611.499999999999,0.0,0.0,0.0,0.0,173.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +630,630,1609404163.1,188.6,31.0,174.0,119.02834,0.0,0.0,0.0,0.0,0.0,0.0,565.16129,73.28774200000002,136.459078,4.20068,0.0,1782.0999999046326,1.0,0.0,52.241875,6.824139999999999,115.583376,114.606222,0.0,390.903228,107.767656,0.0,0.0,0.0,0.0,0.0,4.200680274966451,325.99999971924007,606.99999994116,681,0.0,5619.199999999999,0.0,0.0,0.0,0.0,174.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +631,631,1609404164.9,196.7,31.0,174.0,119.178238,0.0,0.0,0.0,0.0,0.0,0.0,563.2258059999998,74.186978,135.110224,4.195397,0.0,1783.9000000953674,1.0,0.0,52.241833,6.824238,114.844852,115.737067,0.0,391.751465,107.324085,0.0,0.0,0.0,0.0,0.0,4.195396813972026,329.99999927916,601.0000006012799,682,0.0,5627.299999999998,0.0,0.0,0.0,0.0,174.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +632,632,1609404166.9,205.2,31.0,174.0,119.404117,0.0,0.0,0.0,0.0,0.0,0.0,557.419355,73.73736,138.482359,4.18746,0.0,1785.9000000953674,1.0,0.0,52.241789,6.8243399999999985,113.96096599999998,117.5339,0.0,390.743441,101.481205,0.0,0.0,0.0,0.0,0.0,4.187460303399757,327.9999994992,615.9999989509802,683,0.0,5635.799999999998,0.0,0.0,0.0,0.0,174.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +633,633,1609404168.7,212.9,32.0,174.0,119.536167,0.0,0.0,0.0,0.0,0.0,0.0,438.75,62.721718,116.001457,4.182834,0.0,1787.7000000476837,1.0,0.0,52.241749,6.824431,113.022373,123.515176,0.0,387.525405,100.54756,0.0,0.0,0.0,0.0,0.0,4.182834472181127,279.00000044195997,516.0000010565401,684,0.0,5643.499999999999,0.0,0.0,0.0,0.0,174.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +634,634,1609404170.7,220.9,31.0,175.0,119.582194,0.0,0.0,0.0,0.0,0.0,0.0,609.677419,79.357586,147.025102,4.1812239999999985,0.0,1789.7000000476837,1.0,0.0,52.241707,6.824526,112.010283,130.377526,0.0,275.150423,134.885415,0.0,0.0,0.0,0.0,0.0,4.18122450571529,353.00000119692004,653.99999921844,685,0.0,5651.499999999999,0.0,0.0,0.0,0.0,175.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +635,635,1609404172.7,229.3,31.0,175.0,120.041157,0.0,0.0,0.0,0.0,0.0,0.0,576.7741940000002,74.861405,141.404877,4.165238,0.0,1791.7000000476837,1.0,0.0,52.24166,6.824623,110.699558,130.52158300000002,0.0,391.635131,104.792114,0.0,0.0,0.0,0.0,0.0,4.165238094131332,332.9999989491,629.0000019689401,686,0.0,5659.899999999999,0.0,0.0,0.0,0.0,175.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +636,636,1609404174.5,7.8,30.5,176.0,118.933322,0.0,0.0,0.0,0.0,0.0,0.0,570.491803,74.636596,140.05602199999998,4.204036,0.0,1793.5,1.0,0.0,52.241617,6.824713,109.223646,134.810081,0.0,467.90188,127.922214,0.0,0.0,0.0,0.0,0.0,4.2040362750483,331.99999905912,622.9999981808401,687,0.0,5667.699999999999,0.0,0.0,0.0,0.0,176.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +637,637,1609404176.5,15.9,31.0,176.0,117.264155,0.0,0.0,0.0,0.0,0.0,0.0,118.064516,26.977083,50.582031,4.263878,0.0,1795.5,1.0,0.0,52.241572,6.824807000000002,100.668483,139.006877,0.0,275.149398,134.885415,0.0,0.0,0.0,0.0,0.0,4.2638775677017415,120.00000014226002,225.00000193482003,688,0.0,5675.799999999998,0.0,0.0,0.0,0.0,176.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +638,638,1609404176.5,15.9,31.0,176.0,117.879768,0.0,0.0,0.0,0.0,0.0,0.0,94.83871,21.806475,42.938524,4.24161,0.0,1795.5,1.0,0.0,52.241572,6.824807000000002,100.20545,139.859879,0.0,397.650053,111.203902,0.0,0.0,0.0,0.0,0.0,4.241609976701007,96.9999982245,191.00000122728,688,0.0,5675.799999999998,0.0,0.0,0.0,0.0,176.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +639,639,1609404176.5,15.9,31.0,176.0,123.268373,0.0,0.0,0.0,0.0,0.0,0.0,108.387097,22.480902,47.434704,4.05619,0.0,1795.5,1.0,0.0,52.241572,6.824807000000002,100.913033,144.218906,0.0,218.860498,96.406282,0.0,0.0,0.0,0.0,0.0,4.056190471500748,99.99999789444,210.99999902688,688,0.0,5675.799999999998,0.0,0.0,0.0,0.0,176.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +640,640,1609404176.5,15.9,31.0,176.0,136.127077,0.0,0.0,0.0,0.0,0.0,0.0,545.8064519999998,72.163697,138.707168,3.673039,0.0,1795.5,1.0,0.0,52.241572,6.824807000000002,109.629981,143.010624,0.0,398.765671,103.651215,0.0,0.0,0.0,0.0,0.0,3.673038538835297,321.00000026934,616.99999884096,688,0.0,5675.799999999998,0.0,0.0,0.0,0.0,176.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +641,641,1609404188.5,51.9,32.0,177.0,159.419871,0.0,0.0,0.0,0.0,0.0,0.0,528.75,72.163697,138.707168,3.136372,0.0,1807.5,1.0,0.0,52.241385,6.8252380000000015,111.416805,169.27295800000005,0.0,91.808989,41.17866,0.0,0.0,0.0,0.0,0.0,3.1363718767530555,321.00000026934,616.99999884096,695,0.0,5711.799999999998,0.0,0.0,0.0,0.0,177.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +642,642,1609404189.5,54.4,35.5,178.0,184.1413,0.0,0.0,0.0,0.0,0.0,0.0,143.661972,37.992725,78.233541,2.715306,0.0,1808.5,1.0,0.0,52.241372,6.825267,112.923685,189.977595,0.0,60.807966,27.39545,0.0,0.0,0.0,0.0,0.0,2.7153061263279885,168.9999991995,348.00000174702,695,0.0,5714.299999999998,0.0,0.0,0.0,0.0,178.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +643,643,1609404193.3,64.1,16.0,178.0,199.289607,0.0,0.0,0.0,0.0,0.0,0.0,277.5,37.767916,68.566753,2.508912,0.0,1812.2999999523163,1.0,0.0,52.241322,6.825385000000002,114.499221,194.56314,0.0,101.708305,44.233844,0.0,0.0,0.0,0.0,0.0,2.5089115660707786,167.99999930952,305.0000020296601,696,0.0,5723.999999999999,0.0,0.0,0.0,0.0,178.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +644,644,1609404196.9,73.1,17.0,178.0,200.523817,0.0,0.0,0.0,0.0,0.0,0.0,360.0,48.109131,89.47399200000002,2.493469,0.0,1815.9000000953674,1.0,0.0,52.241275,6.825491,115.890178,226.831507,0.0,85.26555400000002,41.33122,0.0,0.0,0.0,0.0,0.0,2.493469391718192,213.99999869682,398.00000069424004,697,0.0,5732.999999999999,0.0,0.0,0.0,0.0,178.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +645,645,1609404200.3,82.3,18.0,177.0,191.515973,0.0,0.0,0.0,0.0,0.0,0.0,333.333333,41.140052,84.977811,2.610748,0.0,1819.2999999523163,1.0,0.0,52.241226,6.8256,117.25871,231.142547,0.0,97.756917,43.370091,0.0,0.0,0.0,0.0,0.0,2.610748295130453,183.00000210744003,377.99999844641997,698,0.0,5742.199999999999,0.0,0.0,0.0,0.0,177.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +646,646,1609404203.5,91.6,18.5,176.0,181.314344,0.0,0.0,0.0,0.0,0.0,0.0,353.513514,41.814479,84.528193,2.757642,0.0,1822.5,1.0,0.0,52.241175,6.8257080000000006,118.345028,213.112758,0.0,188.124367,50.543722,0.0,0.0,0.0,0.0,0.0,2.7576417230398493,186.00000177738,375.99999866646004,699,0.0,5751.499999999999,0.0,0.0,0.0,0.0,176.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +647,647,1609404206.7,100.7,18.5,175.0,175.197445,0.0,0.0,0.0,0.0,0.0,0.0,395.675676,44.73699600000001,96.218263,2.853923,0.0,1825.7000000476837,1.0,0.0,52.241125,6.825815,119.436182,194.678726,0.0,82.24589,36.654434,0.0,0.0,0.0,0.0,0.0,2.8539228982477463,199.00000034712002,428.00000184186007,700,0.0,5760.5999999999985,0.0,0.0,0.0,0.0,175.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +648,648,1609404209.9,110.6,18.5,174.0,170.20061299999998,0.0,0.0,0.0,0.0,0.0,0.0,395.675676,49.008367,87.225902,2.93771,0.0,1828.9000000953674,1.0,0.0,52.24107100000001,6.8259300000000005,120.35751100000002,164.695349,0.0,236.100397,62.18107,0.0,0.0,0.0,0.0,0.0,2.937709748436688,217.99999825673999,388.00000179444,701,0.0,5770.499999999999,0.0,0.0,0.0,0.0,174.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +649,649,1609404213.1,120.2,19.0,174.0,167.017618,0.0,0.0,0.0,0.0,0.0,0.0,372.631579,46.535468,93.970172,2.993696,0.0,1832.0999999046326,1.0,0.0,52.24102,6.8260429999999985,121.296632,147.24818100000005,0.0,159.797736,39.67129,0.0,0.0,0.0,0.0,0.0,2.993696150067234,206.99999946696,417.99999849384005,702,0.0,5780.0999999999985,0.0,0.0,0.0,0.0,174.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +650,650,1609404216.3,130.1,19.0,173.0,166.11546,0.0,0.0,0.0,0.0,0.0,0.0,378.947368,45.636232,90.822846,3.009955,0.0,1835.2999999523163,1.0,0.0,52.240966,6.826158,122.228662,130.081903,0.0,142.554643,64.78290799999999,0.0,0.0,0.0,0.0,0.0,3.0099546423915027,202.99999990703998,404.00000003412003,703,0.0,5789.999999999999,0.0,0.0,0.0,0.0,173.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +651,651,1609404219.5,139.9,18.0,172.0,166.168037,0.0,0.0,0.0,0.0,0.0,0.0,393.333333,46.310659,97.117499,3.009002,0.0,1838.5,1.0,0.0,52.240912,6.826272,123.0672,121.808766,0.0,155.823302,57.726584,0.0,0.0,0.0,0.0,0.0,3.009002266783713,205.99999957698003,432.00000140178,704,0.0,5799.799999999998,0.0,0.0,0.0,0.0,172.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +652,652,1609404222.7,149.8,18.5,172.0,166.031655,0.0,0.0,0.0,0.0,0.0,0.0,360.0,41.364861,84.977811,3.011474,0.0,1841.7000000476837,1.0,0.0,52.240856,6.826385,123.807883,120.69253799999998,0.0,295.82137,66.948265,0.0,0.0,0.0,0.0,0.0,3.0114739264629984,184.00000199742001,377.99999844641997,705,0.0,5809.699999999999,0.0,0.0,0.0,0.0,172.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +653,653,1609404226.1,159.5,19.0,172.0,165.1871,0.0,0.0,0.0,0.0,0.0,0.0,385.263158,47.659513,85.87704699999998,3.026871,0.0,1845.0999999046326,1.0,0.0,52.240803,6.8264960000000015,124.564901,128.495109,0.0,189.790954,79.788701,0.0,0.0,0.0,0.0,0.0,3.0268707423279424,211.99999891686002,381.99999800634004,706,0.0,5819.399999999999,0.0,0.0,0.0,0.0,172.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +654,654,1609404229.1,168.8,20.0,172.0,163.574454,0.0,0.0,0.0,0.0,0.0,0.0,393.0,49.457985,100.489634,3.056712,0.0,1848.0999999046326,1.0,0.0,52.24075,6.826603,125.236325,133.642579,0.0,135.357838,65.925942,0.0,0.0,0.0,0.0,0.0,3.0567120217928405,219.9999980367,446.99999975147995,707,0.0,5828.699999999999,0.0,0.0,0.0,0.0,172.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +655,655,1609404232.1,178.4,19.0,171.0,161.586997,0.0,0.0,0.0,0.0,0.0,0.0,394.736842,48.783558,87.900329,3.0943080000000003,0.0,1851.0999999046326,1.0,0.0,52.240696,6.826712,125.867186,140.896342,0.0,162.959978,73.247662,0.0,0.0,0.0,0.0,0.0,3.0943083867076266,216.99999836676002,391.00000146438,708,0.0,5838.299999999998,0.0,0.0,0.0,0.0,171.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +656,656,1609404235.1,187.4,20.5,170.0,159.370325,0.0,0.0,0.0,0.0,0.0,0.0,430.24390199999993,51.481267,104.985815,3.137347,0.0,1854.0999999046326,1.0,0.0,52.240644,6.826815,126.547652,145.053405,0.0,270.85134700000003,68.995124,0.0,0.0,0.0,0.0,0.0,3.137346930804088,229.00000149474,467.0000019993,709,0.0,5847.299999999998,0.0,0.0,0.0,0.0,170.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +657,657,1609404238.1,197.2,20.5,169.0,155.522641,0.0,0.0,0.0,0.0,0.0,0.0,518.04878,60.698437,120.722446,3.214966,0.0,1857.0999999046326,1.0,0.0,52.240586,6.826922,127.088383,146.684299,0.0,250.86303,66.075346,0.0,0.0,0.0,0.0,0.0,3.2149659804195334,270.00000143214,536.99999874612,710,0.0,5857.0999999999985,0.0,0.0,0.0,0.0,169.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +658,658,1609404240.3,8.5,23.0,169.0,148.70715800000005,0.0,0.0,0.0,0.0,0.0,0.0,680.8695650000002,85.20262,143.652967,3.362313,0.0,1859.2999999523163,1.0,0.0,52.240536,6.827016,128.49096799999998,143.55128,0.0,283.652767,75.133676,0.0,0.0,0.0,0.0,0.0,3.3623129291462885,378.9999983364,639.00000086874,711,0.0,5865.5999999999985,0.0,0.0,0.0,0.0,169.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +659,659,1609404242.5,16.7,29.0,169.0,139.821561,0.0,0.0,0.0,0.0,0.0,0.0,608.275862,79.357586,142.304113,3.575986,0.0,1861.5,1.0,0.0,52.240487,6.827106,129.649973,141.470525,0.0,246.46874,63.479813,0.0,0.0,0.0,0.0,0.0,3.575986395975081,353.00000119692004,633.0000015288599,712,0.0,5873.799999999998,0.0,0.0,0.0,0.0,169.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +660,660,1609404244.5,25.0,30.5,169.0,130.841898,0.0,0.0,0.0,0.0,0.0,0.0,572.459016,75.98545,136.00946000000002,3.821406,0.0,1863.5,1.0,0.0,52.240438,6.827197999999999,130.787488,135.444726,0.0,304.241858,77.244222,0.0,0.0,0.0,0.0,0.0,3.82140589247643,337.999998399,605.0000001612001,713,0.0,5882.0999999999985,0.0,0.0,0.0,0.0,169.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +661,661,1609404246.5,33.4,29.5,169.0,123.856226,0.0,0.0,0.0,0.0,0.0,0.0,579.661017,71.938888,138.707168,4.036939,0.0,1865.5,1.0,0.0,52.240389,6.8272910000000016,130.988158,128.098369,0.0,359.61455,94.65326,0.0,0.0,0.0,0.0,0.0,4.036938764790071,320.00000037936,616.99999884096,714,0.0,5890.499999999999,0.0,0.0,0.0,0.0,169.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +662,662,1609404248.5,41.8,31.0,168.0,119.94582,0.0,0.0,0.0,0.0,0.0,0.0,543.870968,72.388506,134.435797,4.168549,0.0,1867.5,1.0,0.0,52.240339,6.827384,131.249147,120.60441000000002,0.0,392.605553,105.07006,0.0,0.0,0.0,0.0,0.0,4.168548766434712,322.00000015932005,598.0000009313401,715,0.0,5898.899999999999,0.0,0.0,0.0,0.0,168.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +663,663,1609404250.3,49.5,31.0,168.0,118.148208,0.0,0.0,0.0,0.0,0.0,0.0,578.7096769999998,75.535832,142.304113,4.231973,0.0,1869.2999999523163,1.0,0.0,52.240292,6.827468,131.466781,114.545702,0.0,394.930888,110.394814,0.0,0.0,0.0,0.0,0.0,4.231972777784323,335.99999861904,633.0000015288599,716,0.0,5906.5999999999985,0.0,0.0,0.0,0.0,168.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +664,664,1609404252.3,58.0,31.0,168.0,117.294097,0.0,0.0,0.0,0.0,0.0,0.0,569.032258,73.73736,140.730449,4.262789,0.0,1871.2999999523163,1.0,0.0,52.24024,6.827559,131.570826,110.161674,0.0,414.075215,112.981993,0.0,0.0,0.0,0.0,0.0,4.262789115465886,327.9999994992,625.99999785078,717,0.0,5915.0999999999985,0.0,0.0,0.0,0.0,168.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +665,665,1609404254.3,66.3,31.0,168.0,117.33217,0.0,0.0,0.0,0.0,0.0,0.0,555.483871,74.186978,135.110224,4.261406,0.0,1873.2999999523163,1.0,0.0,52.24019000000001,6.82765,131.770965,109.117818,0.0,402.747699,111.257352,0.0,0.0,0.0,0.0,0.0,4.261405887234506,329.99999927916,601.0000006012799,718,0.0,5923.399999999999,0.0,0.0,0.0,0.0,168.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +666,666,1609404256.1,73.5,31.0,169.0,117.958594,0.0,0.0,0.0,0.0,0.0,0.0,503.225806,68.341944,126.79229,4.2387760000000005,0.0,1875.0999999046326,1.0,0.0,52.240147,6.827727,131.947246,109.840451,0.0,396.852041,110.96593500000002,0.0,0.0,0.0,0.0,0.0,4.238775514736977,304.00000213967996,564.0000002237999,719,0.0,5930.5999999999985,0.0,0.0,0.0,0.0,169.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +667,667,1609404258.1,82.3,32.0,169.0,118.951928,0.0,0.0,0.0,0.0,0.0,0.0,540.0,72.388506,130.838852,4.203379,0.0,1877.0999999046326,1.0,0.0,52.240093,6.827821000000001,131.801664,112.839639,0.0,372.492733,101.903869,0.0,0.0,0.0,0.0,0.0,4.203378695972041,322.00000015932005,581.99999824344,720,0.0,5939.399999999999,0.0,0.0,0.0,0.0,169.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +668,668,1609404259.9,89.2,31.0,170.0,120.197549,0.0,0.0,0.0,0.0,0.0,0.0,538.064516,72.388506,134.885415,4.1598190000000015,0.0,1878.9000000953674,1.0,0.0,52.240055,6.827902000000001,132.242313,115.360914,0.0,389.848716,104.337121,0.0,0.0,0.0,0.0,0.0,4.159818599961635,322.00000015932005,600.0000007113,721,0.0,5946.299999999997,0.0,0.0,0.0,0.0,170.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +669,669,1609404262.1,97.8,31.0,170.0,120.541205,0.0,0.0,0.0,0.0,0.0,0.0,578.7096769999998,75.535832,137.583123,4.147958999999998,0.0,1881.0999999046326,1.0,0.0,52.240003,6.827995,132.439396,118.5327,0.0,378.48712,103.399844,0.0,0.0,0.0,0.0,0.0,4.1479591978527175,335.99999861904,611.99999939106,722,0.0,5954.899999999999,0.0,0.0,0.0,0.0,170.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +670,670,1609404263.9,106.1,31.0,171.0,119.52256,0.0,0.0,0.0,0.0,0.0,0.0,598.064516,76.884686,139.381595,4.183311,0.0,1882.9000000953674,1.0,0.0,52.239952,6.828086,132.693504,129.549432,0.0,221.917538,106.309393,0.0,0.0,0.0,0.0,0.0,4.183310665367274,341.99999795892,619.9999985109,723,0.0,5963.199999999999,0.0,0.0,0.0,0.0,171.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +671,671,1609404265.7,114.0,32.0,172.0,118.327001,0.0,0.0,0.0,0.0,0.0,0.0,549.375,72.388506,140.50564,4.225578,0.0,1884.7000000476837,1.0,0.0,52.239904,6.82817,132.861992,135.038194,0.0,462.62995,134.885415,0.0,0.0,0.0,0.0,0.0,4.22557823467528,322.00000015932005,624.9999979608,724,0.0,5971.0999999999985,0.0,0.0,0.0,0.0,172.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +672,672,1609404267.7,122.4,32.0,172.0,117.558619,0.0,0.0,0.0,0.0,0.0,0.0,528.75,71.48926999999998,141.180068,4.253197,0.0,1886.7000000476837,1.0,0.0,52.239853,6.82826,133.055345,136.046598,0.0,403.843014,105.478437,0.0,0.0,0.0,0.0,0.0,4.253197292152607,318.0000005994,628.0000020789599,725,0.0,5979.499999999997,0.0,0.0,0.0,0.0,172.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +673,673,1609404269.5,130.1,31.0,173.0,117.450916,0.0,0.0,0.0,0.0,0.0,0.0,499.354839,67.21789799999999,122.520918,4.257098,0.0,1888.5,1.0,0.0,52.239805,6.8283429999999985,133.281666,131.529193,0.0,444.676552,120.812954,0.0,0.0,0.0,0.0,0.0,4.257097492538926,298.99999824156004,544.9999978659599,726,0.0,5987.199999999998,0.0,0.0,0.0,0.0,173.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +674,674,1609404271.3,137.7,31.0,173.0,117.946606,0.0,0.0,0.0,0.0,0.0,0.0,572.903226,75.086214,137.133505,4.2392059999999985,0.0,1890.2999999523163,1.0,0.0,52.239758,6.828423,133.406562,126.160855,0.0,396.973488,111.002106,0.0,0.0,0.0,0.0,0.0,4.239206340536835,333.99999883908,609.9999996111002,727,0.0,5994.799999999997,0.0,0.0,0.0,0.0,173.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +675,675,1609404273.3,145.9,32.0,174.0,118.398797,0.0,0.0,0.0,0.0,0.0,0.0,568.125,75.760641,139.831213,4.223016,0.0,1892.2999999523163,1.0,0.0,52.239708,6.828511,133.587211,120.921943,0.0,405.487116,105.926256,0.0,0.0,0.0,0.0,0.0,4.223015880811694,336.9999985090201,621.9999982908599,728,0.0,6002.999999999997,0.0,0.0,0.0,0.0,174.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +676,676,1609404275.1,153.7,32.0,174.0,118.320017,0.0,0.0,0.0,0.0,0.0,0.0,585.0,78.233541,139.831213,4.225828,0.0,1894.0999999046326,1.0,0.0,52.23966,6.828594,133.812593,115.803268,0.0,413.597801,112.839447,0.0,0.0,0.0,0.0,0.0,4.2258276551802725,348.00000174702,621.9999982908599,729,0.0,6010.799999999997,0.0,0.0,0.0,0.0,174.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +677,677,1609404277.1,161.5,31.0,175.0,117.919483,0.0,0.0,0.0,0.0,0.0,0.0,584.516129,75.760641,137.133505,4.240181,0.0,1896.0999999046326,1.0,0.0,52.239612,6.828676,133.9931,112.640097,0.0,397.248326,111.083967,0.0,0.0,0.0,0.0,0.0,4.240181412599985,336.9999985090201,609.9999996111002,730,0.0,6018.5999999999985,0.0,0.0,0.0,0.0,175.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +678,678,1609404278.9,170.0,32.0,175.0,117.72306,0.0,0.0,0.0,0.0,0.0,0.0,551.25,75.31102299999998,136.00946000000002,4.247256,0.0,1897.9000000953674,1.0,0.0,52.239558,6.828764,134.046073,111.497316,0.0,403.92762,110.480552,0.0,0.0,0.0,0.0,0.0,4.247256230002856,334.99999872905994,605.0000001612001,731,0.0,6027.0999999999985,0.0,0.0,0.0,0.0,175.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +679,679,1609404280.9,178.3,31.0,176.0,117.979422,0.0,0.0,0.0,0.0,0.0,0.0,510.967742,67.442707,132.862134,4.238027,0.0,1899.9000000953674,1.0,0.0,52.239506,6.828854,134.221735,109.653213,0.0,483.398657,134.885415,0.0,0.0,0.0,0.0,0.0,4.238027204439094,299.99999813154,591.00000170148,732,0.0,6035.399999999999,0.0,0.0,0.0,0.0,176.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +680,680,1609404282.7,185.9,31.0,176.0,118.626196,0.0,0.0,0.0,0.0,0.0,0.0,551.6129030000002,71.48926999999998,135.784651,4.214921,0.0,1901.7000000476837,1.0,0.0,52.239459,6.828933,134.297768,111.878782,0.0,378.795807,103.478282,0.0,0.0,0.0,0.0,0.0,4.214920623434642,318.0000005994,604.00000027122,733,0.0,6042.999999999999,0.0,0.0,0.0,0.0,176.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +681,681,1609404284.7,194.1,32.0,176.0,119.665912,0.0,0.0,0.0,0.0,0.0,0.0,553.125,73.512551,136.23426899999998,4.178299,0.0,1903.7000000476837,1.0,0.0,52.23940800000001,6.82902,134.523223,114.404522,0.0,380.575269,104.297605,0.0,0.0,0.0,0.0,0.0,4.178299330556223,326.99999960922,606.0000000511799,734,0.0,6051.199999999999,0.0,0.0,0.0,0.0,176.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +682,682,1609404286.5,201.9,31.0,177.0,120.607138,0.0,0.0,0.0,0.0,0.0,0.0,541.935484,71.039652,130.838852,4.145692,0.0,1905.5,1.0,0.0,52.239358,6.829102000000002,134.547458,117.584522,0.0,379.860838,98.854148,0.0,0.0,0.0,0.0,0.0,4.1456916090654605,316.00000081944,581.99999824344,735,0.0,6058.999999999999,0.0,0.0,0.0,0.0,177.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +683,683,1609404288.5,209.9,32.0,177.0,121.131883,0.0,0.0,0.0,0.0,0.0,0.0,519.375,69.915607,135.110224,4.127732,0.0,1907.5,1.0,0.0,52.23931,6.829188,134.770099,119.897766,0.0,369.090756,96.909778,0.0,0.0,0.0,0.0,0.0,4.127732415420307,311.00000136954,601.0000006012799,736,0.0,6066.999999999999,0.0,0.0,0.0,0.0,177.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +684,684,1609404290.5,218.0,31.0,177.0,121.73913,0.0,0.0,0.0,0.0,0.0,0.0,491.612903,66.093853,123.195346,4.107143,0.0,1909.5,1.0,0.0,52.239259,6.829274000000002,134.984875,121.46088600000002,0.0,371.603298,100.28929,0.0,0.0,0.0,0.0,0.0,4.107142871811225,293.99999879166,548.00000198412,737,0.0,6075.0999999999985,0.0,0.0,0.0,0.0,177.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +685,685,1609404292.2,225.1,31.0,178.0,121.682698,0.0,0.0,0.0,0.0,0.0,0.0,528.3870969999998,69.915607,132.637325,4.1090480000000005,0.0,1911.2000000476837,1.0,0.0,52.239214,6.829346000000001,135.07230900000002,131.70488,0.0,372.127899,100.434449,0.0,0.0,0.0,0.0,0.0,4.109047614969878,311.00000136954,590.0000018115,738,0.0,6082.2,0.0,0.0,0.0,0.0,178.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +686,686,1609404294.3,233.9,31.0,178.0,120.533957,0.0,0.0,0.0,0.0,0.0,0.0,528.3870969999998,69.46598900000001,130.838852,4.148209,0.0,1913.2999999523163,1.0,0.0,52.239159,6.829439,135.30830600000002,133.162463,0.0,275.149398,134.885415,0.0,0.0,0.0,0.0,0.0,4.148208624728052,309.00000158958005,581.99999824344,739,0.0,6091.0,0.0,0.0,0.0,0.0,178.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +687,687,1609404296.3,242.0,31.0,178.0,120.036583,0.0,0.0,0.0,0.0,0.0,0.0,516.7741940000002,69.690798,133.311752,4.1653970000000005,0.0,1915.2999999523163,1.0,0.0,52.239107,6.829522,135.514745,131.689276,0.0,391.685832,104.805441,0.0,0.0,0.0,0.0,0.0,4.165396810737273,310.00000147956,593.0000014814401,740,0.0,6099.1,0.0,0.0,0.0,0.0,178.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +688,688,1609404298.2,7.7,29.5,179.0,122.003176,0.0,0.0,0.0,0.0,0.0,0.0,482.033898,61.597673,131.73808799999998,4.098254,0.0,1917.2000000476837,1.0,0.0,52.239056,6.829599000000001,135.70767800000002,131.807185,0.0,318.982106,134.885415,0.0,0.0,0.0,0.0,0.0,4.098253966765586,274.00000099206,585.9999978033599,741,0.0,6106.8,0.0,0.0,0.0,0.0,179.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +689,689,1609404301.7,21.0,20.5,179.0,128.177554,0.0,0.0,0.0,0.0,0.0,0.0,111.219512,15.511823,30.349218,3.900839,0.0,1920.7000000476837,1.0,0.0,52.238968,6.8297300000000005,135.75782,133.450262,0.0,301.508668,134.885415,0.0,0.0,0.0,0.0,0.0,3.900838987768482,69.00000130506001,134.99999849196,742,0.0,6120.1,0.0,0.0,0.0,0.0,179.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +690,690,1609404304.1,27.9,19.5,179.0,140.43333700000002,0.0,0.0,0.0,0.0,0.0,0.0,227.692308,31.248454,62.721718,3.560408,0.0,1923.0999999046326,1.0,0.0,52.238922,6.829799,135.884963,135.494797,0.0,263.118425,112.61887,0.0,0.0,0.0,0.0,0.0,3.5604081671861136,138.99999805188,279.00000044195997,743,0.0,6127.0,0.0,0.0,0.0,0.0,179.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +691,691,1609404307.3,37.4,19.0,179.0,157.059113,0.0,0.0,0.0,0.0,0.0,0.0,306.315789,38.442343,79.357586,3.1835150000000003,0.0,1926.2999999523163,1.0,0.0,52.23885900000001,6.829892999999998,136.044379,142.342883,0.0,189.979092,87.775063,0.0,0.0,0.0,0.0,0.0,3.1835147318067434,170.99999897946,353.00000119692004,744,0.0,6136.5,0.0,0.0,0.0,0.0,179.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +692,692,1609404310.9,47.1,17.5,180.0,172.244094,0.0,0.0,0.0,0.0,0.0,0.0,246.857143,30.349218,62.2721,2.902857,0.0,1929.9000000953674,1.0,0.0,52.238793,6.829986,135.96473600000002,154.814821,0.0,137.968712,64.168816,0.0,0.0,0.0,0.0,0.0,2.9028571510846697,134.99999849196,277.000000662,745,0.0,6146.2,0.0,0.0,0.0,0.0,180.0,180.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +693,693,1609404314.1,55.8,18.0,179.0,181.412798,0.0,0.0,0.0,0.0,0.0,0.0,363.333333,45.186614,84.977811,2.756145,0.0,1933.0999999046326,1.0,0.0,52.238735,6.830071,135.95009,169.507134,0.0,114.607582,53.06304300000001,0.0,0.0,0.0,0.0,0.0,2.7561451315027954,201.00000012708,377.99999844641997,746,0.0,6154.9,0.0,0.0,0.0,0.0,179.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +694,694,1609404317.5,65.2,17.5,179.0,183.66429,0.0,0.0,0.0,0.0,0.0,0.0,325.714286,40.690433,76.435068,2.7223580000000003,0.0,1936.5,1.0,0.0,52.238673,6.8301630000000015,135.979177,182.804072,0.0,106.408347,52.288335,0.0,0.0,0.0,0.0,0.0,2.72235827661436,180.99999787926004,339.99999817896,747,0.0,6164.299999999998,0.0,0.0,0.0,0.0,179.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +695,695,1609404321.1,75.2,17.0,178.0,181.884172,0.0,0.0,0.0,0.0,0.0,0.0,345.882353,41.814479,87.67551999999998,2.749002,0.0,1940.0999999046326,1.0,0.0,52.238605,6.830260000000001,135.714211,201.196179,0.0,120.882855,58.45585,0.0,0.0,0.0,0.0,0.0,2.749002260625515,186.00000177738,390.0000015744,748,0.0,6174.299999999998,0.0,0.0,0.0,0.0,178.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +696,696,1609404324.3,84.2,18.0,178.0,180.033802,0.0,0.0,0.0,0.0,0.0,0.0,326.666667,41.140052,72.613315,2.777256,0.0,1943.2999999523163,1.0,0.0,52.238547,6.830353,135.644968,211.93637400000003,0.0,80.044409,34.934857,0.0,0.0,0.0,0.0,0.0,2.7772562399143244,183.00000210744003,323.0000000493,749,0.0,6183.299999999998,0.0,0.0,0.0,0.0,178.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +697,697,1609404327.7,93.6,18.0,177.0,178.50782,0.0,0.0,0.0,0.0,0.0,0.0,353.333333,44.287378,81.156058,2.800998,0.0,1946.7000000476837,1.0,0.0,52.238487,6.83045,135.60081,220.664671,0.0,120.59986,53.435375,0.0,0.0,0.0,0.0,0.0,2.800997737802187,197.00000056716,361.00000031676,750,0.0,6192.699999999999,0.0,0.0,0.0,0.0,177.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +698,698,1609404331.1,102.8,18.5,176.0,176.175904,0.0,0.0,0.0,0.0,0.0,0.0,360.0,42.713715,89.024374,2.838073,0.0,1950.0999999046326,1.0,0.0,52.238428000000006,6.830545,135.44294399999998,212.172049,0.0,124.321459,53.34044,0.0,0.0,0.0,0.0,0.0,2.8380725663822903,190.0000013373,396.00000091428,751,0.0,6201.899999999999,0.0,0.0,0.0,0.0,176.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +699,699,1609404334.1,111.8,18.0,176.0,173.344968,0.0,0.0,0.0,0.0,0.0,0.0,390.0,48.109131,84.528193,2.8844220000000003,0.0,1953.0999999046326,1.0,0.0,52.238371,6.83064,135.40956599999998,199.390728,0.0,132.866704,61.61467,0.0,0.0,0.0,0.0,0.0,2.8844217733508133,213.99999869682,375.99999866646004,752,0.0,6210.899999999999,0.0,0.0,0.0,0.0,176.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +700,700,1609404337.5,122.1,18.0,175.0,170.850767,0.0,0.0,0.0,0.0,0.0,0.0,370.0,46.535468,91.722082,2.926531,0.0,1956.5,1.0,0.0,52.238307,6.830747,135.367186,182.130656,0.0,144.583709,65.631086,0.0,0.0,0.0,0.0,0.0,2.926530613702191,206.99999946696,407.99999959404,753,0.0,6221.199999999999,0.0,0.0,0.0,0.0,175.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +701,701,1609404340.9,132.1,18.0,175.0,169.008255,0.0,0.0,0.0,0.0,0.0,0.0,343.333333,44.287378,85.20262,2.958435,0.0,1959.9000000953674,1.0,0.0,52.238243,6.830850999999999,135.27176699999998,160.970326,0.0,146.251677,72.079829,0.0,0.0,0.0,0.0,0.0,2.9584353734674087,197.00000056716,378.9999983364,754,0.0,6231.199999999999,0.0,0.0,0.0,0.0,175.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +702,702,1609404344.1,141.6,18.5,174.0,167.727802,0.0,0.0,0.0,0.0,0.0,0.0,353.513514,42.488906,82.95453,2.98102,0.0,1963.0999999046326,1.0,0.0,52.238184,6.830951,135.31837099999998,142.59973,0.0,218.879585,64.98013,0.0,0.0,0.0,0.0,0.0,2.9810204035226078,189.00000144732,368.99999943660004,755,0.0,6240.699999999999,0.0,0.0,0.0,0.0,174.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +703,703,1609404347.1,150.7,19.0,174.0,166.849533,0.0,0.0,0.0,0.0,0.0,0.0,416.842105,51.031649,92.396509,2.996712,0.0,1966.0999999046326,1.0,0.0,52.238126,6.831044,135.263437,146.954844,0.0,150.486803,63.560213,0.0,0.0,0.0,0.0,0.0,2.9967120135721323,227.00000171477996,410.99999926397993,756,0.0,6249.799999999998,0.0,0.0,0.0,0.0,174.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +704,704,1609404350.3,160.3,19.5,173.0,166.43644799999996,0.0,0.0,0.0,0.0,0.0,0.0,369.230769,45.636232,100.040016,3.00415,0.0,1969.2999999523163,1.0,0.0,52.238065,6.831144,135.102706,138.824202,0.0,239.197182,63.67298100000001,0.0,0.0,0.0,0.0,0.0,3.004149667986185,202.99999990703998,444.99999997152,757,0.0,6259.4,0.0,0.0,0.0,0.0,173.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +705,705,1609404353.3,169.4,19.5,173.0,165.879273,0.0,0.0,0.0,0.0,0.0,0.0,403.076923,49.233176,94.869408,3.01424,0.0,1972.2999999523163,1.0,0.0,52.23800900000001,6.831241,135.161087,138.467224,0.0,216.715116,64.303623,0.0,0.0,0.0,0.0,0.0,3.0142403626280667,218.99999814672,421.99999805376,758,0.0,6268.5,0.0,0.0,0.0,0.0,173.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +706,706,1609404356.5,179.2,19.5,172.0,163.666729,0.0,0.0,0.0,0.0,0.0,0.0,443.076923,55.078211,102.288106,3.054989,0.0,1975.5,1.0,0.0,52.237947,6.8313440000000005,135.18573600000002,132.749496,0.0,212.783779,53.567021,0.0,0.0,0.0,0.0,0.0,3.0549886531916943,244.99999973442002,454.99999887132003,759,0.0,6278.3,0.0,0.0,0.0,0.0,172.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +707,707,1609404359.1,8.6,22.0,171.0,158.214224,0.0,0.0,0.0,0.0,0.0,0.0,496.363636,60.923246,107.458714,3.160272,0.0,1978.0999999046326,1.0,0.0,52.237892,6.8314330000000005,135.152277,152.421638,0.0,140.174215,44.238551,0.0,0.0,0.0,0.0,0.0,3.1602721130813123,271.00000132212,478.00000078908,760,0.0,6286.9000000000015,0.0,0.0,0.0,0.0,171.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +708,708,1609404361.3,16.4,25.5,171.0,149.21636,0.0,0.0,0.0,0.0,0.0,0.0,665.8823530000002,84.528193,145.901057,3.350839,0.0,1980.2999999523163,1.0,0.0,52.237843,6.831513,135.073371,154.88443999999996,0.0,217.805967,57.350102,0.0,0.0,0.0,0.0,0.0,3.3508390098780048,375.99999866646004,648.9999997685401,761,0.0,6294.700000000002,0.0,0.0,0.0,0.0,171.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +709,709,1609404363.5,24.7,29.5,171.0,138.57988600000002,0.0,0.0,0.0,0.0,0.0,0.0,587.79661,76.435068,139.381595,3.608027,0.0,1982.5,1.0,0.0,52.237791,6.831600999999999,135.025051,156.623824,0.0,244.074091,65.284654,0.0,0.0,0.0,0.0,0.0,3.608027213992656,339.99999817896,619.9999985109,762,0.0,6303.000000000001,0.0,0.0,0.0,0.0,171.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +710,710,1609404365.5,32.8,30.5,170.0,129.29138899999998,0.0,0.0,0.0,0.0,0.0,0.0,572.459016,73.96216899999997,139.381595,3.867234,0.0,1984.5,1.0,0.0,52.237741,6.831687,135.145903,148.786258,0.0,323.932257,83.655316,0.0,0.0,0.0,0.0,0.0,3.8672335711390655,328.99999938917995,619.9999985109,763,0.0,6311.100000000001,0.0,0.0,0.0,0.0,170.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +711,711,1609404367.3,40.7,29.5,170.0,122.60421399999998,0.0,0.0,0.0,0.0,0.0,0.0,620.338983,78.90796800000003,138.931977,4.078163,0.0,1986.2999999523163,1.0,0.0,52.23769,6.831767,135.084949,135.807996,0.0,312.664838,94.408703,0.0,0.0,0.0,0.0,0.0,4.078163251387102,351.00000141696006,617.99999873094,764,0.0,6319.000000000001,0.0,0.0,0.0,0.0,170.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +712,712,1609404369.3,49.2,31.0,170.0,118.307955,0.0,0.0,0.0,0.0,0.0,0.0,613.548387,79.58239499999998,139.606404,4.226259,0.0,1988.2999999523163,1.0,0.0,52.237636,6.831855,135.044562,127.622188,0.0,409.838774,113.632667,0.0,0.0,0.0,0.0,0.0,4.226258496311596,354.00000108689994,620.99999840088,765,0.0,6327.500000000001,0.0,0.0,0.0,0.0,170.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +713,713,1609404371.3,57.7,32.0,169.0,115.975721,0.0,0.0,0.0,0.0,0.0,0.0,611.25,80.032013,139.156786,4.311247,0.0,1990.2999999523163,1.0,0.0,52.237582,6.831944999999998,135.077987,129.949669,0.0,301.491161,134.885415,0.0,0.0,0.0,0.0,0.0,4.311247179053968,356.00000086686003,618.9999986209201,766,0.0,6336.000000000001,0.0,0.0,0.0,0.0,169.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +714,714,1609404373.1,65.0,32.0,170.0,114.97969,0.0,0.0,0.0,0.0,0.0,0.0,586.875,76.435068,136.459078,4.348594,0.0,1992.0999999046326,1.0,0.0,52.237535,6.832019,135.066996,126.37198,0.0,524.8069009999998,134.885415,0.0,0.0,0.0,0.0,0.0,4.348594086486057,339.99999817896,606.99999994116,767,0.0,6343.300000000001,0.0,0.0,0.0,0.0,170.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +715,715,1609404374.9,73.5,32.0,170.0,114.949719,0.0,0.0,0.0,0.0,0.0,0.0,560.625,72.388506,133.086943,4.349728,0.0,1993.9000000953674,1.0,0.0,52.237481,6.8321070000000015,135.068997,123.135337,0.0,390.872391,128.806047,0.0,0.0,0.0,0.0,0.0,4.349727901466206,322.00000015932005,592.00000159146,768,0.0,6351.800000000001,0.0,0.0,0.0,0.0,170.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +716,716,1609404376.9,81.8,31.0,170.0,116.010501,0.0,0.0,0.0,0.0,0.0,0.0,503.225806,66.093853,127.017099,4.309955,0.0,1995.9000000953674,1.0,0.0,52.237428,6.832191000000001,135.083879,119.289838,0.0,390.57669,134.885415,0.0,0.0,0.0,0.0,0.0,4.309954665224659,293.99999879166,565.0000001137802,769,0.0,6360.100000000001,0.0,0.0,0.0,0.0,170.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +717,717,1609404379.1,90.0,31.0,171.0,117.692899,0.0,0.0,0.0,0.0,0.0,0.0,572.903226,74.411787,140.955259,4.248345,0.0,1998.0999999046326,1.0,0.0,52.237374,6.832275,135.04833,115.636603,0.0,414.192837,111.769312,0.0,0.0,0.0,0.0,0.0,4.248344668610805,330.99999916914004,627.0000021889799,770,0.0,6368.300000000001,0.0,0.0,0.0,0.0,171.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +718,718,1609404380.7,97.5,32.0,171.0,119.23366,0.0,0.0,0.0,0.0,0.0,0.0,564.375,75.760641,138.032741,4.193447,0.0,1999.7000000476837,1.0,0.0,52.237326,6.832352,134.969592,113.903747,0.0,376.662745,102.619551,0.0,0.0,0.0,0.0,0.0,4.1934467163047735,336.9999985090201,613.9999991710199,771,0.0,6375.800000000001,0.0,0.0,0.0,0.0,171.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +719,719,1609404382.7,105.7,31.0,172.0,120.160214,0.0,0.0,0.0,0.0,0.0,0.0,572.903226,74.636596,133.986179,4.161111,0.0,2001.7000000476837,1.0,0.0,52.237274,6.832438000000002,135.035612,116.635202,0.0,299.783644,134.885415,0.0,0.0,0.0,0.0,0.0,4.161111097888025,331.99999905912,596.0000011513798,772,0.0,6384.000000000001,0.0,0.0,0.0,0.0,172.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +720,720,1609404384.5,113.4,31.0,172.0,120.222452,0.0,0.0,0.0,0.0,0.0,0.0,561.2903230000002,73.512551,135.784651,4.158957,0.0,2003.5,1.0,0.0,52.237225,6.832517,134.960155,117.015704,0.0,397.394661,104.264779,0.0,0.0,0.0,0.0,0.0,4.158956930939988,326.99999960922,604.00000027122,773,0.0,6391.700000000002,0.0,0.0,0.0,0.0,172.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +721,721,1609404386.5,121.7,32.0,173.0,119.704891,0.0,0.0,0.0,0.0,0.0,0.0,564.375,74.411787,139.381595,4.176939,0.0,2005.5,1.0,0.0,52.237173,6.832603,135.074367,118.380593,0.0,382.903447,100.158332,0.0,0.0,0.0,0.0,0.0,4.17693876852534,330.99999916914004,619.9999985109,774,0.0,6400.000000000001,0.0,0.0,0.0,0.0,173.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +722,722,1609404388.2,128.7,32.5,174.0,119.006498,0.0,0.0,0.0,0.0,0.0,0.0,588.9230769999998,77.55911400000002,142.528922,4.2014510000000005,0.0,2007.2000000476837,1.0,0.0,52.237127,6.832675,134.90698799999998,118.908143,0.0,387.639768,100.583796,0.0,0.0,0.0,0.0,0.0,4.201451251846768,345.00000207708007,634.0000014188399,775,0.0,6407.000000000001,0.0,0.0,0.0,0.0,174.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +723,723,1609404390.1,136.8,32.5,174.0,118.478956,0.0,0.0,0.0,0.0,0.0,0.0,572.307692,75.535832,137.35831399999998,4.220159,0.0,2009.0999999046326,1.0,0.0,52.237077,6.832762,135.078671,118.948105,0.0,397.205872,102.429051,0.0,0.0,0.0,0.0,0.0,4.220158725909097,335.99999861904,610.99999950108,776,0.0,6415.100000000001,0.0,0.0,0.0,0.0,174.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +724,724,1609404391.9,144.4,33.0,175.0,118.457951,0.0,0.0,0.0,0.0,0.0,0.0,536.363636,74.186978,137.583123,4.220907,0.0,2010.9000000953674,1.0,0.0,52.237029,6.832839999999999,135.08363799999998,119.476121,0.0,374.06113,102.047315,0.0,0.0,0.0,0.0,0.0,4.220907045741488,329.99999927916,611.99999939106,777,0.0,6422.700000000003,0.0,0.0,0.0,0.0,175.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +725,725,1609404394.1,152.6,32.0,175.0,118.85511,0.0,0.0,0.0,0.0,0.0,0.0,541.875,72.838124,131.962898,4.206803,0.0,2013.0999999046326,1.0,0.0,52.236977,6.832926,135.151567,127.764315,0.0,226.256309,102.12992,0.0,0.0,0.0,0.0,0.0,4.206802719714785,323.99999993928,587.00000214156,778,0.0,6430.900000000002,0.0,0.0,0.0,0.0,175.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +726,726,1609404395.7,160.1,32.0,176.0,119.378259,0.0,0.0,0.0,0.0,0.0,0.0,549.375,74.636596,135.110224,4.188367,0.0,2014.7000000476837,1.0,0.0,52.236929,6.833003999999999,135.19519499999998,126.243357,0.0,390.845639,105.200344,0.0,0.0,0.0,0.0,0.0,4.188367330771677,331.99999905912,601.0000006012799,779,0.0,6438.400000000002,0.0,0.0,0.0,0.0,176.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +727,727,1609404397.5,167.8,31.0,176.0,119.693844,0.0,0.0,0.0,0.0,0.0,0.0,526.451613,69.24118,120.272828,4.177324,0.0,2016.5,1.0,0.0,52.236881,6.833083,135.289355,125.779323,0.0,391.406919,105.806807,0.0,0.0,0.0,0.0,0.0,4.1773242740871455,308.0000016996,534.99999896616,780,0.0,6446.100000000001,0.0,0.0,0.0,0.0,176.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +728,728,1609404399.3,175.3,33.0,177.0,119.41511,0.0,0.0,0.0,0.0,0.0,0.0,532.7272730000002,72.163697,133.76137,4.187075,0.0,2018.2999999523163,1.0,0.0,52.236832,6.83316,135.32493200000002,122.472767,0.0,387.829455,100.644892,0.0,0.0,0.0,0.0,0.0,4.187074818253737,321.00000026934,595.0000012614,781,0.0,6453.600000000001,0.0,0.0,0.0,0.0,177.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +729,729,1609404401.3,183.6,32.0,177.0,118.762287,0.0,0.0,0.0,0.0,0.0,0.0,579.375,74.186978,140.50564,4.210091,0.0,2020.2999999523163,1.0,0.0,52.236779,6.833245,135.28153400000002,119.159366,0.0,397.490464,101.808338,0.0,0.0,0.0,0.0,0.0,4.210090699920589,329.99999927916,624.9999979608,782,0.0,6461.900000000002,0.0,0.0,0.0,0.0,177.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +730,730,1609404403.1,190.4,32.0,177.0,118.178602,0.0,0.0,0.0,0.0,0.0,0.0,564.375,74.861405,136.00946000000002,4.230884,0.0,2022.0999999046326,1.0,0.0,52.236737,6.833317,135.303874,116.242034,0.0,393.782029,102.447919,0.0,0.0,0.0,0.0,0.0,4.230884369405556,332.9999989491,605.0000001612001,783,0.0,6468.700000000003,0.0,0.0,0.0,0.0,177.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +731,731,1609404404.9,198.5,32.0,178.0,118.082406,0.0,0.0,0.0,0.0,0.0,0.0,526.875,70.365225,135.110224,4.234331,0.0,2023.9000000953674,1.0,0.0,52.236688,6.833405,135.57880500000002,113.987793,0.0,401.073052,103.618263,0.0,0.0,0.0,0.0,0.0,4.2343310653748025,313.0000011495,601.0000006012799,784,0.0,6476.800000000002,0.0,0.0,0.0,0.0,178.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +732,732,1609404406.9,206.7,31.0,178.0,118.675996,0.0,0.0,0.0,0.0,0.0,0.0,543.870968,71.039652,127.017099,4.213152,0.0,2025.9000000953674,1.0,0.0,52.236634,6.833488000000001,135.588451,118.451355,0.0,415.335597,107.87723,0.0,0.0,0.0,0.0,0.0,4.213151916584716,316.00000081944,565.0000001137802,785,0.0,6485.000000000003,0.0,0.0,0.0,0.0,178.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +733,733,1609404408.7,214.2,32.0,178.0,119.620469,0.0,0.0,0.0,0.0,0.0,0.0,547.5,74.186978,135.335033,4.179887,0.0,2027.7000000476837,1.0,0.0,52.236587,6.833566,135.664121,127.763818,0.0,223.707933,100.352946,0.0,0.0,0.0,0.0,0.0,4.179886637963274,329.99999927916,602.00000049126,786,0.0,6492.500000000003,0.0,0.0,0.0,0.0,178.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +734,734,1609404410.5,221.6,32.0,179.0,120.667199,0.0,0.0,0.0,0.0,0.0,0.0,541.875,70.590034,134.885415,4.143628,0.0,2029.5,1.0,0.0,52.23654000000001,6.8336440000000005,135.718498,129.385655,0.0,367.287297,97.959196,0.0,0.0,0.0,0.0,0.0,4.143628128800769,314.00000103947997,600.0000007113,787,0.0,6499.900000000002,0.0,0.0,0.0,0.0,179.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +735,735,1609404412.5,229.5,32.0,179.0,121.374588,0.0,0.0,0.0,0.0,0.0,0.0,506.25,66.318662,132.18770700000002,4.119478,0.0,2031.5,1.0,0.0,52.236492,6.833728999999999,136.024154,126.135969,0.0,494.687989,134.885415,0.0,0.0,0.0,0.0,0.0,4.119478452936129,294.99999868163997,588.0000020315401,788,0.0,6507.800000000001,0.0,0.0,0.0,0.0,179.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +736,736,1609404414.5,237.8,31.0,180.0,121.32116299999998,0.0,0.0,0.0,0.0,0.0,0.0,503.225806,67.442707,126.567481,4.121293,0.0,2033.5,1.0,0.0,52.236438,6.833811999999999,136.02793799999998,125.493803,0.0,372.490753,101.367616,0.0,0.0,0.0,0.0,0.0,4.121292506897581,299.99999813154,563.00000033382,789,0.0,6516.100000000001,0.0,0.0,0.0,0.0,180.0,180.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +737,737,1609404416.3,245.0,31.0,180.0,121.50299999999999,0.0,0.0,0.0,0.0,0.0,0.0,553.548387,73.512551,138.707168,4.115125,0.0,2035.2999999523163,1.0,0.0,52.236393,6.833889,136.210155,123.571065,0.0,340.262032,134.885415,0.0,0.0,0.0,0.0,0.0,4.115124729430549,326.99999960922,616.99999884096,790,0.0,6523.300000000001,0.0,0.0,0.0,0.0,180.0,180.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +738,738,1609404418.2,7.4,31.0,180.0,123.382183,0.0,0.0,0.0,0.0,0.0,0.0,470.322581,60.47362800000001,126.117863,4.052449,0.0,2037.2000000476837,1.0,0.0,52.236347,6.833967,136.51439399999998,123.217385,0.0,366.019556,96.121148,0.0,0.0,0.0,0.0,0.0,4.052448966638886,269.00000154216,561.00000055386,791,0.0,6530.700000000002,0.0,0.0,0.0,0.0,180.0,180.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +739,739,1609404421.5,20.1,22.5,180.0,128.300613,0.0,0.0,0.0,0.0,0.0,0.0,162.666667,21.356857,54.403784,3.897098,0.0,2040.5,1.0,0.0,52.236264,6.834095,136.720644,118.08401200000002,0.0,470.020228,126.801612,0.0,0.0,0.0,0.0,0.0,3.8970975142573954,94.99999844454001,242.00000006448,792,0.0,6543.4000000000015,0.0,0.0,0.0,0.0,180.0,180.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +740,740,1609404423.7,27.1,22.0,180.0,137.84093,0.0,0.0,0.0,0.0,0.0,0.0,207.272727,28.101128000000006,57.55111,3.62737,0.0,2042.7000000476837,1.0,0.0,52.236218,6.8341660000000015,136.908884,129.388099,0.0,272.71954300000004,71.684034,0.0,0.0,0.0,0.0,0.0,3.627369606400653,124.99999959216,255.99999852419998,793,0.0,6550.4000000000015,0.0,0.0,0.0,0.0,180.0,180.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +741,741,1609404426.5,35.4,21.5,180.0,151.37473,0.0,0.0,0.0,0.0,0.0,0.0,267.906977,33.496545000000005,67.667516,3.303061,0.0,2045.5,1.0,0.0,52.236164,6.834249000000002,137.258509,140.52148400000002,0.0,268.918008,76.221299,0.0,0.0,0.0,0.0,0.0,3.3030612176814453,149.0000013999,300.99999802152,794,0.0,6558.700000000002,0.0,0.0,0.0,0.0,180.0,180.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +742,742,1609404429.7,44.8,19.0,181.0,165.056029,0.0,0.0,0.0,0.0,0.0,0.0,262.105263,33.271736,64.070572,3.029274,0.0,2048.7000000476837,1.0,0.0,52.2361,6.834338000000002,137.323606,150.183849,0.0,209.498228,55.75765,0.0,0.0,0.0,0.0,0.0,3.0292743805195994,148.00000150992,284.99999978183996,795,0.0,6568.1,0.0,0.0,0.0,0.0,0.0,181.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +743,743,1609404432.5,52.6,20.5,181.0,174.844583,0.0,0.0,0.0,0.0,0.0,0.0,310.243902,39.11677,78.45835,2.859683,0.0,2051.5,1.0,0.0,52.236048,6.834414999999999,137.56808,165.821665,0.0,127.368408,51.985761,0.0,0.0,0.0,0.0,0.0,2.85968253302992,173.99999864940003,349.00000163699997,796,0.0,6575.9000000000015,0.0,0.0,0.0,0.0,0.0,181.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +744,744,1609404435.7,61.8,19.0,180.0,178.21494099999995,0.0,0.0,0.0,0.0,0.0,0.0,334.736842,39.566388,90.148419,2.805601,0.0,2054.7000000476837,1.0,0.0,52.235985,6.8345020000000005,137.641049,177.4352,0.0,120.335577,52.029621,0.0,0.0,0.0,0.0,0.0,2.8056009063796736,175.99999842936,401.00000036418,797,0.0,6585.1,0.0,0.0,0.0,0.0,180.0,180.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +745,745,1609404438.7,70.5,20.0,180.0,176.20969399999996,0.0,0.0,0.0,0.0,0.0,0.0,348.0,41.140052,84.753002,2.837528,0.0,2057.7000000476837,1.0,0.0,52.235926,6.8345850000000015,137.691261,186.252709,0.0,124.094187,52.051899,0.0,0.0,0.0,0.0,0.0,2.8375283371186155,183.00000210744003,376.99999855643995,798,0.0,6593.8,0.0,0.0,0.0,0.0,180.0,180.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +746,746,1609404442.1,79.7,19.0,179.0,172.556815,0.0,0.0,0.0,0.0,0.0,0.0,372.631579,44.287378,93.970172,2.897596,0.0,2061.0999999046326,1.0,0.0,52.235864,6.834675,137.813206,195.346615,0.0,132.887821,57.770864,0.0,0.0,0.0,0.0,0.0,2.8975963655796497,197.00000056716,417.99999849384005,799,0.0,6603.0,0.0,0.0,0.0,0.0,179.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +747,747,1609404445.1,88.9,19.0,178.0,169.071754,0.0,0.0,0.0,0.0,0.0,0.0,369.473684,44.062569,85.87704699999998,2.9573240000000003,0.0,2064.0999999046326,1.0,0.0,52.235801,6.8347630000000015,137.85896599999998,191.347543,0.0,142.50873,59.742151,0.0,0.0,0.0,0.0,0.0,2.9573242612719333,196.00000067718003,381.99999800634004,800,0.0,6612.2,0.0,0.0,0.0,0.0,178.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +748,748,1609404448.1,97.7,20.0,178.0,166.03915700000005,0.0,0.0,0.0,0.0,0.0,0.0,345.0,40.465624,82.729721,3.0113380000000003,0.0,2067.0999999046326,1.0,0.0,52.235741,6.834847,137.931432,184.522138,0.0,151.440476,62.750495,0.0,0.0,0.0,0.0,0.0,3.0113378617069224,179.99999798928002,367.99999954662,801,0.0,6621.0,0.0,0.0,0.0,0.0,178.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +749,749,1609404451.1,106.9,20.0,177.0,164.118672,0.0,0.0,0.0,0.0,0.0,0.0,321.0,38.667152,82.05529399999998,3.046576,0.0,2070.0999999046326,1.0,0.0,52.235678,6.834934,137.913576,173.875086,0.0,153.97736799999996,64.919525,0.0,0.0,0.0,0.0,0.0,3.0465759557206264,171.99999886944005,364.99999987667996,802,0.0,6630.2,0.0,0.0,0.0,0.0,177.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +750,750,1609404454.1,116.0,19.0,176.0,163.631506,0.0,0.0,0.0,0.0,0.0,0.0,350.526316,41.364861,84.528193,3.055646,0.0,2073.0999999046326,1.0,0.0,52.235616,6.835021,137.827953,163.831089,0.0,155.329081,67.634425,0.0,0.0,0.0,0.0,0.0,3.055646264112487,184.00000199742001,375.99999866646004,803,0.0,6639.3,0.0,0.0,0.0,0.0,176.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +751,751,1609404457.2,125.2,19.5,176.0,164.327821,0.0,0.0,0.0,0.0,0.0,0.0,360.0,41.814479,95.094217,3.042698,0.0,2076.2000000476837,1.0,0.0,52.235554,6.835112,137.88277,150.917886,0.0,211.54789700000003,54.99256999999999,0.0,0.0,0.0,0.0,0.0,3.0426984119749267,186.00000177738,422.99999794374,804,0.0,6648.5,0.0,0.0,0.0,0.0,176.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +752,752,1609404460.2,134.2,19.5,176.0,165.45359,0.0,0.0,0.0,0.0,0.0,0.0,326.153846,38.891961,83.628957,3.021995,0.0,2079.2000000476837,1.0,0.0,52.235493,6.835197999999999,137.822582,146.92287199999996,0.0,164.52801200000005,40.249623,0.0,0.0,0.0,0.0,0.0,3.021995473171661,172.99999875942,371.99999910654,805,0.0,6657.5,0.0,0.0,0.0,0.0,176.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +753,753,1609404463.3,143.6,19.0,175.0,166.14299599999995,0.0,0.0,0.0,0.0,0.0,0.0,397.894737,47.209895,94.869408,3.009456,0.0,2082.2999999523163,1.0,0.0,52.23543,6.835288,137.703885,152.079124,0.0,181.406874,49.531285,0.0,0.0,0.0,0.0,0.0,3.0094557822949097,209.9999991369,421.99999805376,806,0.0,6666.9,0.0,0.0,0.0,0.0,175.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +754,754,1609404466.5,153.0,19.5,175.0,166.01165500000005,0.0,0.0,0.0,0.0,0.0,0.0,381.538462,46.535468,87.900329,3.011837,0.0,2085.5,1.0,0.0,52.235368,6.835382000000001,137.684682,157.482484,0.0,147.602564,64.71294300000001,0.0,0.0,0.0,0.0,0.0,3.0118367291742256,206.99999946696,391.00000146438,807,0.0,6676.299999999998,0.0,0.0,0.0,0.0,175.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +755,755,1609404469.7,162.8,19.5,175.0,165.32085700000005,0.0,0.0,0.0,0.0,0.0,0.0,369.230769,44.961805,87.450711,3.024422,0.0,2088.7000000476837,1.0,0.0,52.235302,6.835478,137.625003,162.974176,0.0,153.67739,64.939934,0.0,0.0,0.0,0.0,0.0,3.0244217763763466,200.00000023709998,389.00000168442,808,0.0,6686.0999999999985,0.0,0.0,0.0,0.0,175.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +756,756,1609404472.7,172.0,19.5,175.0,164.575574,0.0,0.0,0.0,0.0,0.0,0.0,384.615385,45.636232,87.67551999999998,3.038118,0.0,2091.7000000476837,1.0,0.0,52.23524000000001,6.8355679999999985,137.512016,167.917031,0.0,146.20091000000005,66.629545,0.0,0.0,0.0,0.0,0.0,3.038117916574911,202.99999990703998,390.0000015744,809,0.0,6695.299999999998,0.0,0.0,0.0,0.0,175.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +757,757,1609404475.5,180.7,20.0,174.0,163.251103,0.0,0.0,0.0,0.0,0.0,0.0,393.0,46.310659,98.915971,3.062766,0.0,2094.5,1.0,0.0,52.235183,6.8356520000000005,137.50488,169.241936,0.0,214.030884,61.073916,0.0,0.0,0.0,0.0,0.0,3.062766442686761,205.99999957698003,440.00000052162005,810,0.0,6703.999999999999,0.0,0.0,0.0,0.0,174.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +758,758,1609404478.3,189.6,21.5,174.0,159.512132,0.0,0.0,0.0,0.0,0.0,0.0,560.930233,66.76828,121.396873,3.134558,0.0,2097.2999999523163,1.0,0.0,52.235121,6.835737,137.271635,166.852648,0.0,176.209775,58.023907,0.0,0.0,0.0,0.0,0.0,3.134557815326548,296.9999984616,539.99999841606,811,0.0,6712.899999999999,0.0,0.0,0.0,0.0,174.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +759,759,1609404480.7,8.0,25.5,174.0,152.323188,0.0,0.0,0.0,0.0,0.0,0.0,602.352941,73.73736,139.381595,3.282494,0.0,2099.7000000476837,1.0,0.0,52.235068,6.835817,137.167835,159.437428,0.0,222.012447,61.821064,0.0,0.0,0.0,0.0,0.0,3.2824943238451656,327.9999994992,619.9999985109,812,0.0,6720.899999999999,0.0,0.0,0.0,0.0,174.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +760,760,1609404482.9,16.2,27.5,173.0,142.88491399999995,0.0,0.0,0.0,0.0,0.0,0.0,624.0,74.636596,137.807932,3.4993199999999995,0.0,2101.9000000953674,1.0,0.0,52.235013,6.835896000000001,136.898515,150.224615,0.0,227.307934,63.268526,0.0,0.0,0.0,0.0,0.0,3.499319739241332,331.99999905912,612.99999928104,813,0.0,6729.0999999999985,0.0,0.0,0.0,0.0,173.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +761,761,1609404484.9,24.1,29.5,173.0,133.849712,0.0,0.0,0.0,0.0,0.0,0.0,587.79661,73.512551,136.00946000000002,3.735533,0.0,2103.9000000953674,1.0,0.0,52.234962,6.835975,136.746258,140.345971,0.0,269.763583,76.17210899999998,0.0,0.0,0.0,0.0,0.0,3.735532878845492,326.99999960922,605.0000001612001,814,0.0,6736.999999999997,0.0,0.0,0.0,0.0,173.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +762,762,1609404487.1,32.2,30.0,172.0,127.31976,0.0,0.0,0.0,0.0,0.0,0.0,556.0,71.264461,136.459078,3.92712,0.0,2106.0999999046326,1.0,0.0,52.234909,6.836057,136.558083,131.428955,0.0,297.3423279999999,134.885415,0.0,0.0,0.0,0.0,0.0,3.927120189356311,317.00000070942,606.99999994116,815,0.0,6745.0999999999985,0.0,0.0,0.0,0.0,172.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +763,763,1609404488.9,40.1,29.5,172.0,123.865271,0.0,0.0,0.0,0.0,0.0,0.0,553.220339,71.264461,132.41251599999998,4.036644,0.0,2107.9000000953674,1.0,0.0,52.234857,6.836137,136.316545,121.787236,0.0,349.1052430000001,99.447166,0.0,0.0,0.0,0.0,0.0,4.036643975856639,317.00000070942,589.0000019215198,816,0.0,6752.999999999997,0.0,0.0,0.0,0.0,172.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +764,764,1609404490.9,48.2,29.5,172.0,122.953562,0.0,0.0,0.0,0.0,0.0,0.0,532.881356,69.690798,132.18770700000002,4.066576,0.0,2109.9000000953674,1.0,0.0,52.234806,6.836221000000001,136.223431,115.12818500000002,0.0,360.790407,101.871502,0.0,0.0,0.0,0.0,0.0,4.06657596467193,310.00000147956,588.0000020315401,817,0.0,6761.0999999999985,0.0,0.0,0.0,0.0,172.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +765,765,1609404493.1,56.2,29.5,172.0,123.39323,0.0,0.0,0.0,0.0,0.0,0.0,547.118644,70.365225,135.335033,4.052086,0.0,2112.0999999046326,1.0,0.0,52.234754,6.836303,136.094523,111.439865,0.0,357.785984,100.640803,0.0,0.0,0.0,0.0,0.0,4.052086163884357,313.0000011495,602.00000049126,818,0.0,6769.0999999999985,0.0,0.0,0.0,0.0,172.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +766,766,1609404494.9,64.3,29.5,172.0,123.87918799999998,0.0,0.0,0.0,0.0,0.0,0.0,545.084746,69.01637099999999,132.41251599999998,4.03619,0.0,2113.9000000953674,1.0,0.0,52.234702,6.836386,135.908775,115.072913,0.0,296.749996,134.885415,0.0,0.0,0.0,0.0,0.0,4.036190485846582,307.00000180962,589.0000019215198,819,0.0,6777.199999999999,0.0,0.0,0.0,0.0,172.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +767,767,1609404497.1,72.8,29.5,173.0,124.109284,0.0,0.0,0.0,0.0,0.0,0.0,567.457627,71.264461,135.559842,4.028707,0.0,2116.0999999046326,1.0,0.0,52.234649,6.836475,135.874931,119.588456,0.0,302.680256,98.833696,0.0,0.0,0.0,0.0,0.0,4.0287074736487885,317.00000070942,603.00000038124,820,0.0,6785.699999999999,0.0,0.0,0.0,0.0,173.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +768,768,1609404499.1,80.3,29.5,173.0,124.077159,0.0,0.0,0.0,0.0,0.0,0.0,557.288136,72.163697,135.110224,4.029751,0.0,2118.0999999046326,1.0,0.0,52.2346,6.836550999999999,135.79003,122.583337,0.0,353.847984,98.914323,0.0,0.0,0.0,0.0,0.0,4.029750552235002,321.00000026934,601.0000006012799,821,0.0,6793.199999999999,0.0,0.0,0.0,0.0,173.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +769,769,1609404501.1,88.9,30.0,173.0,123.78043999999998,0.0,0.0,0.0,0.0,0.0,0.0,516.0,66.993089,127.691526,4.03941,0.0,2120.0999999046326,1.0,0.0,52.234545,6.8366380000000015,135.559277,124.59083,0.0,359.783905,94.699867,0.0,0.0,0.0,0.0,0.0,4.039410427043239,297.99999835157996,567.99999978372,822,0.0,6801.799999999998,0.0,0.0,0.0,0.0,173.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +770,770,1609404503.1,96.8,31.0,173.0,124.005984,0.0,0.0,0.0,0.0,0.0,0.0,507.096774,69.01637099999999,128.590762,4.032063,0.0,2122.0999999046326,1.0,0.0,52.234495,6.836721000000002,135.529688,124.959701,0.0,359.263171,94.567599,0.0,0.0,0.0,0.0,0.0,4.032063484936339,307.00000180962,571.9999993436402,823,0.0,6809.699999999999,0.0,0.0,0.0,0.0,173.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +771,771,1609404505.1,104.1,29.5,173.0,124.693215,0.0,0.0,0.0,0.0,0.0,0.0,538.9830509999998,68.566753,132.18770700000002,4.0098410000000015,0.0,2124.0999999046326,1.0,0.0,52.234448,6.836797,135.44208799999998,124.520701,0.0,352.263149,97.37539,0.0,0.0,0.0,0.0,0.0,4.009841273240087,305.0000020296601,588.0000020315401,824,0.0,6816.999999999999,0.0,0.0,0.0,0.0,173.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +772,772,1609404507.1,112.7,29.5,174.0,124.939089,0.0,0.0,0.0,0.0,0.0,0.0,541.0169490000002,68.791562,132.18770700000002,4.00195,0.0,2126.0999999046326,1.0,0.0,52.234393,6.8368850000000005,135.259326,122.652971,0.0,366.377672,96.608896,0.0,0.0,0.0,0.0,0.0,4.001950102261431,306.00000191964,588.0000020315401,825,0.0,6825.5999999999985,0.0,0.0,0.0,0.0,174.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +773,773,1609404509.1,120.5,30.0,174.0,124.883895,0.0,0.0,0.0,0.0,0.0,0.0,544.0,70.590034,130.61404299999998,4.003719,0.0,2128.0999999046326,1.0,0.0,52.234344,6.836967,135.206524,122.62808,0.0,341.804283,92.022713,0.0,0.0,0.0,0.0,0.0,4.003718814183366,314.00000103947997,580.9999983534599,826,0.0,6833.4,0.0,0.0,0.0,0.0,174.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +774,774,1609404511.1,127.9,30.5,175.0,124.43075,0.0,0.0,0.0,0.0,0.0,0.0,527.213115,70.590034,130.838852,4.018299,0.0,2130.0999999046326,1.0,0.0,52.234297,6.837045,135.17256,122.287416,0.0,332.562633,94.464401,0.0,0.0,0.0,0.0,0.0,4.018299335172375,314.00000103947997,581.99999824344,827,0.0,6840.799999999998,0.0,0.0,0.0,0.0,175.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +775,775,1609404513.1,136.7,29.5,175.0,123.40497,0.0,0.0,0.0,0.0,0.0,0.0,518.644068,67.892325,130.838852,4.051701,0.0,2132.0999999046326,1.0,0.0,52.234241,6.837135000000001,135.062903,121.530857,0.0,360.901061,100.611006,0.0,0.0,0.0,0.0,0.0,4.051700672995587,301.99999791150003,581.99999824344,828,0.0,6849.5999999999985,0.0,0.0,0.0,0.0,175.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +776,776,1609404515.1,144.7,29.5,175.0,123.011866,0.0,0.0,0.0,0.0,0.0,0.0,530.847458,67.892325,128.590762,4.064649,0.0,2134.0999999046326,1.0,0.0,52.234191,6.837219,134.915707,120.88942,0.0,363.230892,101.611839,0.0,0.0,0.0,0.0,0.0,4.064648527484333,301.99999791150003,571.9999993436402,829,0.0,6857.5999999999985,0.0,0.0,0.0,0.0,175.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +777,777,1609404517.1,152.1,29.5,175.0,123.378731,0.0,0.0,0.0,0.0,0.0,0.0,512.542373,64.969808,127.241908,4.052562,0.0,2136.0999999046326,1.0,0.0,52.234146,6.837298,134.980735,124.487144,0.0,356.594218,95.82703,0.0,0.0,0.0,0.0,0.0,4.052562349664627,288.9999993417601,566.0000000037602,830,0.0,6864.999999999999,0.0,0.0,0.0,0.0,175.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +778,778,1609404519.1,160.6,31.0,175.0,123.861792,0.0,0.0,0.0,0.0,0.0,0.0,478.064516,64.295381,125.443436,4.036757,0.0,2138.0999999046326,1.0,0.0,52.234093,6.837388000000002,134.887881,127.635006,0.0,361.817084,94.925312,0.0,0.0,0.0,0.0,0.0,4.0367573561344905,285.9999996718201,558.0000008839199,831,0.0,6873.499999999999,0.0,0.0,0.0,0.0,175.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +779,779,1609404521.1,168.3,29.5,175.0,124.934133,0.0,0.0,0.0,0.0,0.0,0.0,514.576271,66.76828,129.265189,4.002109,0.0,2140.0999999046326,1.0,0.0,52.234045,6.837471000000002,134.903169,123.985027,0.0,338.225803,98.626729,0.0,0.0,0.0,0.0,0.0,4.00210885523174,296.9999984616,574.99999901358,832,0.0,6881.199999999999,0.0,0.0,0.0,0.0,175.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +780,780,1609404523.1,175.6,28.5,175.0,126.8488,0.0,0.0,0.0,0.0,0.0,0.0,490.526316,63.845763,122.0713,3.941701,0.0,2142.0999999046326,1.0,0.0,52.234001,6.837549,134.919275,126.508784,0.0,320.414001,94.519592,0.0,0.0,0.0,0.0,0.0,3.94170067040445,283.99999989186,542.999998086,833,0.0,6888.499999999999,0.0,0.0,0.0,0.0,175.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +781,781,1609404525.3,8.8,27.5,175.0,129.936711,0.0,0.0,0.0,0.0,0.0,0.0,375.272727,50.80684,99.365589,3.848027,0.0,2144.2999999523163,1.0,0.0,52.233948,6.837644,135.08826000000002,124.822322,0.0,372.124525,134.885415,0.0,0.0,0.0,0.0,0.0,3.848027213802572,226.0000018248,442.00000030158,834,0.0,6897.299999999998,0.0,0.0,0.0,0.0,175.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +782,782,1609404527.7,17.5,24.5,176.0,135.239567,0.0,0.0,0.0,0.0,0.0,0.0,357.55102,44.73699600000001,89.249183,3.697143,0.0,2146.7000000476837,1.0,0.0,52.233894,6.8377360000000005,135.353814,128.851696,0.0,269.886259,94.333133,0.0,0.0,0.0,0.0,0.0,3.697142863523069,199.00000034712002,397.00000080426,835,0.0,6905.999999999999,0.0,0.0,0.0,0.0,176.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +783,783,1609404530.3,26.4,23.0,175.0,142.234206,0.0,0.0,0.0,0.0,0.0,0.0,284.347826,38.217534,70.590034,3.515329,0.0,2149.2999999523163,1.0,0.0,52.233835,6.837826,135.45949299999998,132.488618,0.0,263.949298,113.869495,0.0,0.0,0.0,0.0,0.0,3.5153287951001038,169.99999908948,314.00000103947997,836,0.0,6914.899999999999,0.0,0.0,0.0,0.0,175.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +784,784,1609404532.9,34.7,23.0,176.0,149.316395,0.0,0.0,0.0,0.0,0.0,0.0,336.521739,44.73699600000001,80.032013,3.3485940000000003,0.0,2151.9000000953674,1.0,0.0,52.233781,6.837909,135.589784,144.482336,0.0,207.323855,61.135199,0.0,0.0,0.0,0.0,0.0,3.348594104485312,199.00000034712002,356.00000086686003,837,0.0,6923.199999999999,0.0,0.0,0.0,0.0,176.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +785,785,1609404535.7,43.2,22.0,177.0,156.077465,0.0,0.0,0.0,0.0,0.0,0.0,362.727273,43.83776,89.024374,3.203537,0.0,2154.7000000476837,1.0,0.0,52.233724,6.837992999999999,135.551248,154.846169,0.0,186.156878,52.159156,0.0,0.0,0.0,0.0,0.0,3.2035374229072726,195.0000007872,396.00000091428,838,0.0,6931.699999999999,0.0,0.0,0.0,0.0,177.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +786,786,1609404538.3,51.3,22.0,177.0,162.888106,0.0,0.0,0.0,0.0,0.0,0.0,229.090909,30.349218,66.093853,3.069592,0.0,2157.2999999523163,1.0,0.0,52.233671,6.838075,135.63771100000002,165.777549,0.0,179.42727,63.960079,0.0,0.0,0.0,0.0,0.0,3.069591833795404,134.99999849196,293.99999879166,839,0.0,6939.799999999998,0.0,0.0,0.0,0.0,177.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +787,787,1609404541.5,60.5,19.5,178.0,171.101334,0.0,0.0,0.0,0.0,0.0,0.0,178.461538,23.829757,44.062569,2.922245,0.0,2160.5,1.0,0.0,52.233611,6.838166,135.639289,174.756512,0.0,170.039598,58.554153,0.0,0.0,0.0,0.0,0.0,2.9222448961151875,106.00000168254,196.00000067718003,840,0.0,6948.999999999999,0.0,0.0,0.0,0.0,178.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +788,788,1609404544.9,69.0,18.0,178.0,181.654913,0.0,0.0,0.0,0.0,0.0,0.0,206.666667,27.201892,54.628593,2.752472,0.0,2163.9000000953674,1.0,0.0,52.233555,6.8382520000000016,135.681313,183.608928,0.0,111.792805,50.278833,0.0,0.0,0.0,0.0,0.0,2.752471660372874,121.00000003224,242.99999995445998,841,0.0,6957.499999999999,0.0,0.0,0.0,0.0,178.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +789,789,1609404547.9,76.7,18.5,177.0,192.155188,0.0,0.0,0.0,0.0,0.0,0.0,259.459459,32.147690999999995,59.574392,2.602063,0.0,2166.9000000953674,1.0,0.0,52.233505,6.838328999999999,135.587794,191.465267,0.0,98.955887,41.220858,0.0,0.0,0.0,0.0,0.0,2.6020634946374703,143.00000206001997,265.00000198224,842,0.0,6965.199999999999,0.0,0.0,0.0,0.0,177.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +790,790,1609404551.1,84.7,19.0,176.0,198.246797,0.0,0.0,0.0,0.0,0.0,0.0,258.94736800000004,32.822118,66.318662,2.522109,0.0,2170.0999999046326,1.0,0.0,52.233453,6.838411,135.53435,192.936597,0.0,130.227196,37.635563,0.0,0.0,0.0,0.0,0.0,2.5221088439577666,146.00000172996,294.99999868163997,843,0.0,6973.199999999999,0.0,0.0,0.0,0.0,176.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +791,791,1609404554.5,93.2,18.0,175.0,198.282451,0.0,0.0,0.0,0.0,0.0,0.0,293.333333,35.969444,71.264461,2.521655,0.0,2173.5,1.0,0.0,52.233399,6.8385,135.531192,197.402712,0.0,88.351864,39.517843,0.0,0.0,0.0,0.0,0.0,2.5216553329775007,160.00000018968,317.00000070942,844,0.0,6981.699999999999,0.0,0.0,0.0,0.0,175.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +792,792,1609404557.7,101.6,18.5,175.0,194.271416,0.0,0.0,0.0,0.0,0.0,0.0,291.891892,35.969444,68.117134,2.573719,0.0,2176.7000000476837,1.0,0.0,52.233347,6.838587,135.536668,199.556661,0.0,89.510723,40.195272,0.0,0.0,0.0,0.0,0.0,2.5737188223305068,160.00000018968,302.99999780148,845,0.0,6990.0999999999985,0.0,0.0,0.0,0.0,175.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +793,793,1609404560.9,110.1,18.5,174.0,189.915937,0.0,0.0,0.0,0.0,0.0,0.0,295.135135,36.86868,73.512551,2.632744,0.0,2179.9000000953674,1.0,0.0,52.233293,6.838676,135.633604,198.68936,0.0,95.794926,42.471877,0.0,0.0,0.0,0.0,0.0,2.632743770208184,163.9999997496,326.99999960922,846,0.0,6998.5999999999985,0.0,0.0,0.0,0.0,174.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +794,794,1609404564.3,119.2,18.5,173.0,187.448993,0.0,0.0,0.0,0.0,0.0,0.0,317.837838,38.667152,76.65987700000002,2.667392,0.0,2183.2999999523163,1.0,0.0,52.233234,6.838769,135.564947,195.7361,0.0,103.991739,46.391944,0.0,0.0,0.0,0.0,0.0,2.667392296954084,171.99999886944005,340.99999806894004,847,0.0,7007.699999999999,0.0,0.0,0.0,0.0,173.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +795,795,1609404567.3,127.7,18.5,173.0,186.374778,0.0,0.0,0.0,0.0,0.0,0.0,298.378378,36.643871,73.062933,2.682766,0.0,2186.2999999523163,1.0,0.0,52.233181,6.838858,135.64373799999998,192.637131,0.0,101.360453,45.704718,0.0,0.0,0.0,0.0,0.0,2.6827664417124084,162.99999985962003,324.99999982926005,848,0.0,7016.199999999999,0.0,0.0,0.0,0.0,173.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +796,796,1609404570.7,136.8,18.5,172.0,185.197628,0.0,0.0,0.0,0.0,0.0,0.0,308.108108,38.217534,75.535832,2.699819,0.0,2189.7000000476837,1.0,0.0,52.233123,6.838952000000001,135.726458,187.168314,0.0,110.546826,47.629973,0.0,0.0,0.0,0.0,0.0,2.699818595948756,169.99999908948,335.99999861904,849,0.0,7025.299999999998,0.0,0.0,0.0,0.0,172.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +797,797,1609404574.1,145.9,19.0,171.0,183.200399,0.0,0.0,0.0,0.0,0.0,0.0,300.0,37.093489,74.411787,2.729252,0.0,2193.0999999046326,1.0,0.0,52.233064,6.839045,135.799814,184.789981,0.0,105.71901499999998,47.264827,0.0,0.0,0.0,0.0,0.0,2.7292516977542167,164.99999963957995,330.99999916914004,850,0.0,7034.4,0.0,0.0,0.0,0.0,171.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +798,798,1609404577.1,154.4,19.0,170.0,180.662182,0.0,0.0,0.0,0.0,0.0,0.0,337.894737,40.690433,80.032013,2.767596,0.0,2196.0999999046326,1.0,0.0,52.233008,6.839131,135.761599,179.330814,0.0,114.420706,49.657838,0.0,0.0,0.0,0.0,0.0,2.767596374984556,180.99999787926004,356.00000086686003,851,0.0,7042.9,0.0,0.0,0.0,0.0,170.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +799,799,1609404580.1,163.0,19.0,170.0,178.30428999999995,0.0,0.0,0.0,0.0,0.0,0.0,296.842105,37.543107,73.28774200000002,2.804195,0.0,2199.0999999046326,1.0,0.0,52.232954,6.839219,135.802292,176.22285,0.0,117.79581,49.964249,0.0,0.0,0.0,0.0,0.0,2.8041950084319343,166.99999941954,325.99999971924007,852,0.0,7051.5,0.0,0.0,0.0,0.0,170.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +800,800,1609404583.4,172.2,18.0,169.0,176.630326,0.0,0.0,0.0,0.0,0.0,0.0,383.333333,45.636232,90.148419,2.830771,0.0,2202.4000000953674,1.0,0.0,52.232895,6.839314999999999,135.954903,173.456362,0.0,123.1339,54.279948,0.0,0.0,0.0,0.0,0.0,2.8307709741757483,202.99999990703998,401.00000036418,853,0.0,7060.7,0.0,0.0,0.0,0.0,169.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +801,801,1609404586.5,181.4,19.0,168.0,175.481879,0.0,0.0,0.0,0.0,0.0,0.0,363.157895,43.388142,88.799565,2.849297,0.0,2205.5,1.0,0.0,52.232835,6.8394070000000005,135.98251399999998,167.688117,0.0,123.328748,52.807247,0.0,0.0,0.0,0.0,0.0,2.849297049070235,193.00000100724,395.0000010243,854,0.0,7069.9,0.0,0.0,0.0,0.0,168.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +802,802,1609404589.7,190.6,18.5,168.0,174.487616,0.0,0.0,0.0,0.0,0.0,0.0,421.621622,50.132413,98.915971,2.865533,0.0,2208.7000000476837,1.0,0.0,52.232774,6.839499000000001,136.053596,167.099763,0.0,126.693594,55.921339,0.0,0.0,0.0,0.0,0.0,2.865532875410482,223.00000215486,440.00000052162005,855,0.0,7079.0999999999985,0.0,0.0,0.0,0.0,168.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +803,803,1609404592.9,200.0,19.5,167.0,173.155754,0.0,0.0,0.0,0.0,0.0,0.0,360.0,44.287378,87.900329,2.8875740000000003,0.0,2211.9000000953674,1.0,0.0,52.232712,6.839592,135.976829,162.29282,0.0,131.911664,56.387296,0.0,0.0,0.0,0.0,0.0,2.8875736927575617,197.00000056716,391.00000146438,856,0.0,7088.499999999999,0.0,0.0,0.0,167.0,167.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +804,804,1609404595.7,208.4,20.5,166.0,170.247921,0.0,0.0,0.0,0.0,0.0,0.0,406.829268,48.558749,99.590398,2.936893,0.0,2214.7000000476837,1.0,0.0,52.232657,6.839676,135.93326100000002,156.843348,0.0,136.890205,58.491035,0.0,0.0,0.0,0.0,0.0,2.9368934261464488,215.99999847678,443.00000019156,857,0.0,7096.899999999999,0.0,0.0,0.0,166.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +805,805,1609404598.7,9.1,21.0,166.0,164.329046,0.0,0.0,0.0,0.0,0.0,0.0,562.857143,66.543471,123.644964,3.042676,0.0,2217.7000000476837,1.0,0.0,52.232597,6.839766,135.793586,155.378912,0.0,156.62253700000005,41.814313,0.0,0.0,0.0,0.0,0.0,3.0426757300106275,295.99999857162004,550.0000017640799,858,0.0,7105.999999999999,0.0,0.0,0.0,166.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +806,806,1609404600.7,16.0,27.0,165.0,155.229218,0.0,0.0,0.0,0.0,0.0,0.0,637.777778,79.132777,143.428158,3.221043,0.0,2219.7000000476837,1.0,0.0,52.232553,6.839838,135.772555,151.854745,0.0,189.440579,51.933262,0.0,0.0,0.0,0.0,0.0,3.2210430899677664,352.00000130694,638.00000097876,859,0.0,7112.899999999999,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +807,807,1609404602.9,23.9,29.5,165.0,144.493519,0.0,0.0,0.0,0.0,0.0,0.0,593.8983049999998,75.760641,138.931977,3.460363,0.0,2221.9000000953674,1.0,0.0,52.232501,6.839917999999999,135.699823,147.402042,0.0,217.413015,60.92269,0.0,0.0,0.0,0.0,0.0,3.4603628139197027,336.9999985090201,617.99999873094,860,0.0,7120.799999999997,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +808,808,1609404604.9,31.7,29.5,164.0,134.81868300000002,0.0,0.0,0.0,0.0,0.0,0.0,595.9322030000002,76.435068,136.459078,3.708685,0.0,2223.9000000953674,1.0,0.0,52.232452,6.8399990000000015,135.69526000000002,140.612524,0.0,263.55944500000004,74.096827,0.0,0.0,0.0,0.0,0.0,3.708684797047008,339.99999817896,606.99999994116,861,0.0,7128.5999999999985,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +809,809,1609404607.1,39.9,30.0,164.0,128.171593,0.0,0.0,0.0,0.0,0.0,0.0,576.0,74.636596,139.606404,3.90102,0.0,2226.0999999046326,1.0,0.0,52.232399,6.8400820000000015,135.651193,131.363906,0.0,225.371083,92.220947,0.0,0.0,0.0,0.0,0.0,3.901020407852777,331.99999905912,620.99999840088,862,0.0,7136.799999999997,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +810,810,1609404608.9,48.1,30.0,164.0,124.804021,0.0,0.0,0.0,0.0,0.0,0.0,538.0,71.039652,133.086943,4.006281,0.0,2227.9000000953674,1.0,0.0,52.232346,6.840166,135.586278,125.320076,0.0,319.706741,134.885415,0.0,0.0,0.0,0.0,0.0,4.0062811758284615,316.00000081944,592.00000159146,863,0.0,7144.999999999997,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +811,811,1609404610.9,56.2,29.5,164.0,124.070875,0.0,0.0,0.0,0.0,0.0,0.0,500.338983,66.993089,129.489998,4.029955,0.0,2229.9000000953674,1.0,0.0,52.232294,6.840249000000001,135.569557,117.892371,0.0,318.982106,134.885415,0.0,0.0,0.0,0.0,0.0,4.0299546529352686,297.99999835157996,575.9999989035599,864,0.0,7153.0999999999985,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +812,812,1609404613.1,63.9,29.5,164.0,124.818857,0.0,0.0,0.0,0.0,0.0,0.0,538.9830509999998,69.915607,136.23426899999998,4.0058050000000005,0.0,2232.0999999046326,1.0,0.0,52.232245,6.840329,135.488032,114.356534,0.0,354.630042,97.063396,0.0,0.0,0.0,0.0,0.0,4.005804988263913,311.00000136954,606.0000000511799,865,0.0,7160.799999999997,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +813,813,1609404614.9,71.7,29.5,165.0,125.77863,0.0,0.0,0.0,0.0,0.0,0.0,567.457627,73.512551,136.459078,3.975238,0.0,2233.9000000953674,1.0,0.0,52.232196,6.8404110000000005,135.526814,113.318049,0.0,352.154126,93.391226,0.0,0.0,0.0,0.0,0.0,3.975238082971646,326.99999960922,606.99999994116,866,0.0,7168.5999999999985,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +814,814,1609404616.9,79.8,31.0,165.0,126.417539,0.0,0.0,0.0,0.0,0.0,0.0,510.967742,67.667516,135.784651,3.955147,0.0,2235.9000000953674,1.0,0.0,52.232145,6.840495,135.511763,115.634786,0.0,321.239926,88.70593199999998,0.0,0.0,0.0,0.0,0.0,3.95514739453993,300.99999802152,604.00000027122,867,0.0,7176.699999999999,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +815,815,1609404619.1,87.7,30.0,165.0,126.535789,0.0,0.0,0.0,0.0,0.0,0.0,510.0,67.892325,129.714807,3.951451,0.0,2238.0999999046326,1.0,0.0,52.232095,6.8405770000000015,135.493089,118.858596,0.0,327.697481,90.959664,0.0,0.0,0.0,0.0,0.0,3.951451237246405,301.99999791150003,576.99999879354,868,0.0,7184.5999999999985,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +816,816,1609404620.9,95.4,30.0,166.0,126.170149,0.0,0.0,0.0,0.0,0.0,0.0,542.0,71.264461,131.962898,3.962902,0.0,2239.9000000953674,1.0,0.0,52.232047,6.840659,135.623054,122.548039,0.0,324.840937,91.779413,0.0,0.0,0.0,0.0,0.0,3.962902508738418,317.00000070942,587.00000214156,869,0.0,7192.299999999997,0.0,0.0,0.0,166.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +817,817,1609404622.9,103.7,30.5,166.0,125.757826,0.0,0.0,0.0,0.0,0.0,0.0,542.95082,72.388506,135.559842,3.975896,0.0,2241.9000000953674,1.0,0.0,52.231994,6.840742999999999,135.603188,125.59502,0.0,332.925022,94.587325,0.0,0.0,0.0,0.0,0.0,3.975895702904406,322.00000015932005,603.00000038124,870,0.0,7200.5999999999985,0.0,0.0,0.0,166.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +818,818,1609404625.1,111.5,29.5,167.0,125.463732,0.0,0.0,0.0,0.0,0.0,0.0,488.135593,64.969808,124.993818,3.985215,0.0,2244.0999999046326,1.0,0.0,52.231943,6.8408240000000005,135.639345,127.877701,0.0,335.367235,93.795062,0.0,0.0,0.0,0.0,0.0,3.9852154246455864,288.9999993417601,556.00000110396,871,0.0,7208.399999999999,0.0,0.0,0.0,167.0,167.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +819,819,1609404626.9,119.4,29.5,168.0,125.30545,0.0,0.0,0.0,0.0,0.0,0.0,516.610169,67.21789799999999,131.73808799999998,3.990249,0.0,2245.9000000953674,1.0,0.0,52.231893,6.840903999999999,135.710073,128.973274,0.0,334.106267,94.788354,0.0,0.0,0.0,0.0,0.0,3.990249426501401,298.99999824156004,585.9999978033599,872,0.0,7216.299999999997,0.0,0.0,0.0,0.0,168.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +820,820,1609404628.9,127.5,30.0,168.0,125.363868,0.0,0.0,0.0,0.0,0.0,0.0,540.0,69.01637099999999,130.61404299999998,3.98839,0.0,2247.9000000953674,1.0,0.0,52.23184000000001,6.840986,135.704751,130.391501,0.0,334.617431,93.603965,0.0,0.0,0.0,0.0,0.0,3.9883900200016167,307.00000180962,580.9999983534599,873,0.0,7224.399999999999,0.0,0.0,0.0,0.0,168.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +821,821,1609404631.1,135.6,30.5,169.0,125.195885,0.0,0.0,0.0,0.0,0.0,0.0,507.540984,65.19461700000001,129.04038,3.993741,0.0,2250.0999999046326,1.0,0.0,52.231787,6.841067999999999,135.61168899999998,130.902944,0.0,304.978165,92.252644,0.0,0.0,0.0,0.0,0.0,3.993741487589628,289.99999923174005,573.9999991236,874,0.0,7232.499999999999,0.0,0.0,0.0,0.0,169.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +822,822,1609404632.9,143.6,29.5,169.0,124.784951,0.0,0.0,0.0,0.0,0.0,0.0,536.949153,68.117134,136.459078,4.006893,0.0,2251.9000000953674,1.0,0.0,52.231737,6.841152,135.604756,128.892348,0.0,340.28479,92.396011,0.0,0.0,0.0,0.0,0.0,4.006893427397347,302.99999780148,606.99999994116,875,0.0,7240.499999999999,0.0,0.0,0.0,0.0,169.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +823,823,1609404634.9,151.0,30.0,170.0,124.763769,0.0,0.0,0.0,0.0,0.0,0.0,578.0,73.96216899999997,137.133505,4.007574,0.0,2253.9000000953674,1.0,0.0,52.23169,6.8412289999999985,135.784234,126.87585,0.0,334.069923,94.977249,0.0,0.0,0.0,0.0,0.0,4.007573705151533,328.99999938917995,609.9999996111002,876,0.0,7247.899999999999,0.0,0.0,0.0,0.0,170.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +824,824,1609404637.1,158.8,31.0,170.0,124.982996,0.0,0.0,0.0,0.0,0.0,0.0,540.0,71.714079,134.660606,4.0005440000000005,0.0,2256.0999999046326,1.0,0.0,52.231638,6.8413059999999986,135.359479,125.661639,0.0,331.406699,92.211922,0.0,0.0,0.0,0.0,0.0,4.00054420202889,319.00000048938,599.00000082132,877,0.0,7255.699999999999,0.0,0.0,0.0,0.0,170.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +825,825,1609404638.9,166.6,30.5,170.0,124.89521299999998,0.0,0.0,0.0,0.0,0.0,0.0,420.983607,58.225537,115.551839,4.003356,0.0,2257.9000000953674,1.0,0.0,52.231592,6.841394,135.82933899999998,127.05772,0.0,346.862646,92.906035,0.0,0.0,0.0,0.0,0.0,4.0033559973191295,258.99999819413995,514.00000127658,878,0.0,7263.499999999999,0.0,0.0,0.0,0.0,170.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +826,826,1609404640.7,7.4,31.0,171.0,125.254201,0.0,0.0,0.0,0.0,0.0,0.0,454.83871,62.721718,108.133141,3.991882,0.0,2259.7000000476837,1.0,0.0,52.231543,6.841467,135.708825,128.994563,0.0,294.298737,134.885415,0.0,0.0,0.0,0.0,0.0,3.99188207667382,279.00000044195997,481.00000045902,879,0.0,7270.899999999999,0.0,0.0,0.0,0.0,171.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +827,827,1609404642.7,14.9,29.5,171.0,127.690624,0.0,0.0,0.0,0.0,0.0,0.0,463.728814,57.55111,128.815571,3.915714,0.0,2261.7000000476837,1.0,0.0,52.231496,6.841544,135.803654,130.591228,0.0,296.749996,134.885415,0.0,0.0,0.0,0.0,0.0,3.9157142814181882,255.99999852419998,572.9999992336202,880,0.0,7278.399999999999,0.0,0.0,0.0,0.0,171.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +828,828,1609404645.1,24.0,27.5,172.0,134.53735600000002,0.0,0.0,0.0,0.0,0.0,0.0,91.636364,12.814114,28.101128000000006,3.71644,0.0,2264.0999999046326,1.0,0.0,52.231436,6.841636,135.848326,132.395553,0.0,275.597005,72.399827,0.0,0.0,0.0,0.0,0.0,3.716439915765848,56.99999817708,124.99999959216,881,0.0,7287.499999999999,0.0,0.0,0.0,0.0,172.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +829,829,1609404648.1,33.2,19.0,172.0,148.485848,0.0,0.0,0.0,0.0,0.0,0.0,126.315789,17.535104,36.419062,3.367324,0.0,2267.0999999046326,1.0,0.0,52.231376,6.841728,135.808494,139.269803,0.0,211.96955,94.805663,0.0,0.0,0.0,0.0,0.0,3.367324271872697,78.00000031488001,161.99999996964,882,0.0,7296.699999999999,0.0,0.0,0.0,0.0,172.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +830,830,1609404651.1,40.6,20.0,172.0,169.70937800000004,0.0,0.0,0.0,0.0,0.0,0.0,195.0,26.527465000000007,53.72935699999999,2.946213,0.0,2270.0999999046326,1.0,0.0,52.23132800000001,6.841804,135.858668,151.947939,0.0,138.389526,62.252275,0.0,0.0,0.0,0.0,0.0,2.9462131432713163,118.0000003623,239.00000039454,883,0.0,7304.099999999998,0.0,0.0,0.0,0.0,172.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +831,831,1609404654.3,48.6,19.0,173.0,193.153349,0.0,0.0,0.0,0.0,0.0,0.0,227.368421,30.349218,50.80684,2.588617,0.0,2273.2999999523163,1.0,0.0,52.231276,6.8418839999999985,135.913587,173.722747,0.0,87.090029,40.25685,0.0,0.0,0.0,0.0,0.0,2.5886167782677174,134.99999849196,226.0000018248,884,0.0,7312.099999999998,0.0,0.0,0.0,0.0,173.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +832,832,1609404657.3,55.8,19.0,173.0,211.105792,0.0,0.0,0.0,0.0,0.0,0.0,164.210526,22.705711,41.364861,2.368481,0.0,2276.2999999523163,1.0,0.0,52.231228,6.841956,135.856944,197.195656,0.0,73.884631,32.094522999999995,0.0,0.0,0.0,0.0,0.0,2.368480728373384,100.99999778441999,184.00000199742001,885,0.0,7319.299999999997,0.0,0.0,0.0,0.0,173.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +833,833,1609404660.7,63.7,18.0,173.0,219.215398,0.0,0.0,0.0,0.0,0.0,0.0,170.0,23.829757,40.24081500000001,2.280862,0.0,2279.7000000476837,1.0,0.0,52.231177,6.842035000000001,135.829704,219.419572,0.0,67.434113,30.687157,0.0,0.0,0.0,0.0,0.0,2.2808616756018205,106.00000168254,178.99999809930003,886,0.0,7327.199999999998,0.0,0.0,0.0,0.0,173.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +834,834,1609404664.1,71.0,18.0,173.0,219.089066,0.0,0.0,0.0,0.0,0.0,0.0,206.666667,27.426701,49.457985,2.282177,0.0,2283.0999999046326,1.0,0.0,52.231129,6.842109,135.740591,231.835674,0.0,71.399399,31.327204,0.0,0.0,0.0,0.0,0.0,2.282176875043139,121.99999992222,219.9999980367,887,0.0,7334.499999999997,0.0,0.0,0.0,0.0,173.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +835,835,1609404667.3,78.9,17.5,172.0,215.428806,0.0,0.0,0.0,0.0,0.0,0.0,233.142857,29.000364,53.05493000000001,2.320952,0.0,2286.2999999523163,1.0,0.0,52.231079,6.84219,135.745754,236.191959,0.0,74.335763,32.734574,0.0,0.0,0.0,0.0,0.0,2.320952379970949,128.99999915208,236.00000072460003,888,0.0,7342.399999999998,0.0,0.0,0.0,0.0,172.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +836,836,1609404670.7,87.0,18.0,171.0,210.56753,0.0,0.0,0.0,0.0,0.0,0.0,263.333333,32.597309,62.496909,2.374535,0.0,2289.7000000476837,1.0,0.0,52.231026,6.842273,135.729656,232.53712,0.0,74.065721,33.113627,0.0,0.0,0.0,0.0,0.0,2.3745351431913555,145.00000183998,278.00000055198,889,0.0,7350.499999999997,0.0,0.0,0.0,0.0,171.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +837,837,1609404673.9,95.1,18.0,171.0,204.5948,0.0,0.0,0.0,0.0,0.0,0.0,286.666667,34.845399,67.21789799999999,2.443855,0.0,2292.9000000953674,1.0,0.0,52.230973,6.8423539999999985,135.643168,223.487307,0.0,81.093345,36.683882,0.0,0.0,0.0,0.0,0.0,2.443854878032091,155.00000073978,298.99999824156004,890,0.0,7358.599999999998,0.0,0.0,0.0,0.0,171.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +838,838,1609404677.3,103.6,18.0,170.0,198.26284,0.0,0.0,0.0,0.0,0.0,0.0,310.0,37.318298,77.55911400000002,2.521905,0.0,2296.2999999523163,1.0,0.0,52.230919,6.842442,135.613504,211.025337,0.0,85.09849100000002,39.324128,0.0,0.0,0.0,0.0,0.0,2.521904760367601,165.99999952956,345.00000207708007,891,0.0,7367.099999999998,0.0,0.0,0.0,0.0,170.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +839,839,1609404680.5,112.0,18.5,169.0,192.893135,0.0,0.0,0.0,0.0,0.0,0.0,353.513514,41.58967,87.450711,2.592109,0.0,2299.5,1.0,0.0,52.230865,6.8425270000000005,135.647977,198.864527,0.0,89.058734,40.860672,0.0,0.0,0.0,0.0,0.0,2.5921088378806223,185.0000018874,389.00000168442,892,0.0,7375.499999999997,0.0,0.0,0.0,0.0,169.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +840,840,1609404683.7,120.9,18.5,167.0,188.674402,0.0,0.0,0.0,0.0,0.0,0.0,340.540541,40.24081500000001,82.280103,2.650068,0.0,2302.7000000476837,1.0,0.0,52.230806,6.8426160000000005,135.48689299999998,186.692639,0.0,100.452631,45.611554,0.0,0.0,0.0,0.0,0.0,2.6500680256561777,178.99999809930003,365.99999976666,893,0.0,7384.399999999998,0.0,0.0,0.0,167.0,167.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +841,841,1609404687.1,130.3,18.0,166.0,185.392266,0.0,0.0,0.0,0.0,0.0,0.0,360.0,43.612951,86.326665,2.696984,0.0,2306.0999999046326,1.0,0.0,52.230746,6.842713000000002,135.397374,177.705856,0.0,107.479357,49.119046,0.0,0.0,0.0,0.0,0.0,2.696984134170948,194.00000089722,383.99999778629996,894,0.0,7393.799999999997,0.0,0.0,0.0,166.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +842,842,1609404690.3,139.2,18.5,166.0,182.955667,0.0,0.0,0.0,0.0,0.0,0.0,324.3243240000001,38.442343,75.535832,2.732902,0.0,2309.2999999523163,1.0,0.0,52.230689,6.842805,135.307853,172.795962,0.0,107.898484,48.944887,0.0,0.0,0.0,0.0,0.0,2.7329025014568145,170.99999897946,335.99999861904,895,0.0,7402.699999999998,0.0,0.0,0.0,166.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +843,843,1609404693.5,147.9,18.5,165.0,180.899328,0.0,0.0,0.0,0.0,0.0,0.0,379.459459,45.411423,87.900329,2.763968,0.0,2312.5,1.0,0.0,52.230634,6.8428960000000005,135.356289,170.20518700000005,0.0,117.263264,50.114181,0.0,0.0,0.0,0.0,0.0,2.7639682553160174,202.00000001706002,391.00000146438,896,0.0,7411.399999999998,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +844,844,1609404696.7,157.3,19.5,164.0,178.67706,0.0,0.0,0.0,0.0,0.0,0.0,400.0,49.233176,86.551475,2.798345,0.0,2315.7000000476837,1.0,0.0,52.230573,6.842992,135.21507,169.523653,0.0,120.634823,50.810722,0.0,0.0,0.0,0.0,0.0,2.7983446783823283,218.99999814672,385.0000021245,897,0.0,7420.799999999997,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +845,845,1609404699.7,166.0,19.5,163.0,176.166051,0.0,0.0,0.0,0.0,0.0,0.0,384.615385,48.558749,94.869408,2.838231,0.0,2318.7000000476837,1.0,0.0,52.230519,6.843082000000001,135.232355,170.336121,0.0,124.738559,53.30352900000001,0.0,0.0,0.0,0.0,0.0,2.8382313003088204,215.99999847678,421.99999805376,898,0.0,7429.499999999996,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +846,846,1609404702.7,174.7,20.0,162.0,173.581044,0.0,0.0,0.0,0.0,0.0,0.0,354.0,44.73699600000001,87.67551999999998,2.8804990000000004,0.0,2321.7000000476837,1.0,0.0,52.230463,6.843172999999998,135.120051,170.409927,0.0,134.64639,54.696888,0.0,0.0,0.0,0.0,0.0,2.8804988636892865,199.00000034712002,390.0000015744,899,0.0,7438.199999999996,0.0,0.0,0.0,162.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +847,847,1609404705.7,183.5,20.0,162.0,171.12258,0.0,0.0,0.0,0.0,0.0,0.0,396.0,47.434704,100.489634,2.921882,0.0,2324.7000000476837,1.0,0.0,52.230408,6.843265,135.041398,169.45001100000005,0.0,143.760197,59.539935,0.0,0.0,0.0,0.0,0.0,2.921882080085515,210.99999902688,446.99999975147995,900,0.0,7446.999999999996,0.0,0.0,0.0,162.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +848,848,1609404708.7,192.7,20.0,161.0,169.410789,0.0,0.0,0.0,0.0,0.0,0.0,363.0,44.062569,82.504912,2.951406,0.0,2327.7000000476837,1.0,0.0,52.230351,6.843362,135.031431,170.987234,0.0,143.875986,58.161025,0.0,0.0,0.0,0.0,0.0,2.9514058871421702,196.00000067718003,366.99999965664,901,0.0,7456.199999999996,0.0,0.0,0.0,161.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +849,849,1609404711.5,201.1,20.5,160.0,169.07693999999995,0.0,0.0,0.0,0.0,0.0,0.0,400.97561,48.33394000000001,93.520554,2.957234,0.0,2330.5,1.0,0.0,52.230298,6.84345,134.996883,168.50915600000005,0.0,143.50075800000005,57.961611,0.0,0.0,0.0,0.0,0.0,2.9572335529611546,214.9999985868,415.99999871388,902,0.0,7464.599999999997,0.0,0.0,160.0,160.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +850,850,1609404714.5,210.1,20.0,159.0,169.633653,0.0,0.0,0.0,0.0,0.0,0.0,390.0,47.434704,91.722082,2.947528,0.0,2333.5,1.0,0.0,52.230242,6.843545,134.954139,164.018405,0.0,149.71821200000005,58.822791,0.0,0.0,0.0,0.0,0.0,2.9475283421503637,210.99999902688,407.99999959404,903,0.0,7473.599999999997,0.0,0.0,159.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +851,851,1609404717.5,218.9,20.5,159.0,168.498113,0.0,0.0,0.0,0.0,0.0,0.0,380.487805,45.411423,90.148419,2.967392,0.0,2336.5,1.0,0.0,52.230188,6.843639,135.03977,158.944301,0.0,178.25152,55.320209,0.0,0.0,0.0,0.0,0.0,2.9673922817165317,202.00000001706002,401.00000036418,904,0.0,7482.399999999996,0.0,0.0,159.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +852,852,1609404720.1,8.0,23.0,158.0,162.553079,0.0,0.0,0.0,0.0,0.0,0.0,644.3478259999998,71.264461,140.955259,3.075918,0.0,2339.0999999046326,1.0,0.0,52.230137,6.843723,135.021174,151.505412,0.0,211.617921,57.365428,0.0,0.0,0.0,0.0,0.0,3.0759183589503096,317.00000070942,627.0000021889799,905,0.0,7490.399999999996,0.0,0.0,158.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +853,853,1609404722.1,15.3,28.5,157.0,151.497454,0.0,0.0,0.0,0.0,0.0,0.0,669.4736839999998,81.156058,140.955259,3.300385,0.0,2341.0999999046326,1.0,0.0,52.230091,6.8437990000000015,135.099351,145.341111,0.0,215.598019,78.224115,0.0,0.0,0.0,0.0,0.0,3.3003854969074267,361.00000031676,627.0000021889799,906,0.0,7497.699999999996,0.0,0.0,157.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +854,854,1609404724.1,22.6,31.0,157.0,138.860025,0.0,0.0,0.0,0.0,0.0,0.0,584.516129,77.334305,140.05602199999998,3.6007480000000003,0.0,2343.0999999046326,1.0,0.0,52.230045,6.8438740000000005,135.137236,139.160654,0.0,239.362854,65.380902,0.0,0.0,0.0,0.0,0.0,3.6007483075132667,344.0000021871,622.9999981808401,907,0.0,7504.999999999996,0.0,0.0,157.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +855,855,1609404726.1,31.2,31.0,157.0,128.659202,0.0,0.0,0.0,0.0,0.0,0.0,600.0,77.334305,138.482359,3.886236,0.0,2345.0999999046326,1.0,0.0,52.22999,6.8439630000000005,135.108896,130.482127,0.0,326.477978,87.503373,0.0,0.0,0.0,0.0,0.0,3.8862358247799484,344.0000021871,615.9999989509802,908,0.0,7513.599999999998,0.0,0.0,157.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +856,856,1609404727.9,38.7,31.0,158.0,122.688122,0.0,0.0,0.0,0.0,0.0,0.0,567.096774,75.31102299999998,137.35831399999998,4.075374,0.0,2346.9000000953674,1.0,0.0,52.229943,6.844042,135.25606499999998,122.419947,0.0,367.338817,97.868242,0.0,0.0,0.0,0.0,0.0,4.075374142575922,334.99999872905994,610.99999950108,909,0.0,7521.099999999998,0.0,0.0,158.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +857,857,1609404730.1,47.0,31.0,159.0,120.379975,0.0,0.0,0.0,0.0,0.0,0.0,580.645161,75.98545,138.482359,4.1535150000000005,0.0,2349.0999999046326,1.0,0.0,52.229889,6.844125999999998,135.237679,115.56289,0.0,380.152497,103.823225,0.0,0.0,0.0,0.0,0.0,4.153514735320389,337.999998399,615.9999989509802,910,0.0,7529.399999999998,0.0,0.0,159.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +858,858,1609404731.9,55.1,31.0,160.0,120.24212,0.0,0.0,0.0,0.0,0.0,0.0,572.903226,75.535832,137.583123,4.158277,0.0,2350.9000000953674,1.0,0.0,52.229837,6.84421,135.381399,111.789693,0.0,381.893946,104.217756,0.0,0.0,0.0,0.0,0.0,4.158276650478219,335.99999861904,611.99999939106,911,0.0,7537.499999999997,0.0,0.0,160.0,160.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +859,859,1609404733.9,63.5,30.0,160.0,120.961106,0.0,0.0,0.0,0.0,0.0,0.0,554.0,72.838124,137.807932,4.13356,0.0,2352.9000000953674,1.0,0.0,52.229782,6.8442940000000005,135.2907,110.704879,0.0,379.893186,103.75771,0.0,0.0,0.0,0.0,0.0,4.1335600883146695,323.99999993928,612.99999928104,912,0.0,7545.899999999998,0.0,0.0,160.0,160.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +860,860,1609404735.7,70.9,30.5,161.0,121.792252,0.0,0.0,0.0,0.0,0.0,0.0,586.229508,78.008732,141.854495,4.1053510000000015,0.0,2354.7000000476837,1.0,0.0,52.229735,6.8443710000000015,135.291269,111.561765,0.0,372.078788,99.837524,0.0,0.0,0.0,0.0,0.0,4.105351463572576,347.00000185704005,631.0000017489,913,0.0,7553.299999999997,0.0,0.0,0.0,161.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +861,861,1609404737.7,78.9,31.0,161.0,122.66218700000002,0.0,0.0,0.0,0.0,0.0,0.0,534.1935480000002,70.365225,135.110224,4.076236,0.0,2356.7000000476837,1.0,0.0,52.229684000000006,6.844453999999999,135.390231,114.228605,0.0,371.351151,98.432568,0.0,0.0,0.0,0.0,0.0,4.076235816666141,313.0000011495,601.0000006012799,914,0.0,7561.299999999997,0.0,0.0,0.0,161.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +862,862,1609404739.7,87.1,32.0,163.0,123.519724,0.0,0.0,0.0,0.0,0.0,0.0,513.75,68.791562,121.396873,4.047937,0.0,2358.7000000476837,1.0,0.0,52.229631,6.844537,134.36543600000002,118.223491,0.0,343.540533,92.250347,0.0,0.0,0.0,0.0,0.0,4.047936506075741,306.00000191964,539.99999841606,915,0.0,7569.499999999996,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +863,863,1609404741.5,94.3,31.0,164.0,124.057612,0.0,0.0,0.0,0.0,0.0,0.0,561.2903230000002,74.411787,135.784651,4.030385,0.0,2360.5,1.0,0.0,52.229586,6.844612,133.357746,121.933993,0.0,344.028234,91.152308,0.0,0.0,0.0,0.0,0.0,4.0303854954099885,330.99999916914004,604.00000027122,916,0.0,7576.699999999996,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +864,864,1609404743.5,102.3,31.0,165.0,124.245651,0.0,0.0,0.0,0.0,0.0,0.0,561.2903230000002,72.163697,140.50564,4.024286,0.0,2362.5,1.0,0.0,52.229534,6.844693,132.122415,124.647439,0.0,350.583668,93.974865,0.0,0.0,0.0,0.0,0.0,4.024285727312901,321.00000026934,624.9999979608,917,0.0,7584.699999999996,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +865,865,1609404745.4,109.7,31.0,166.0,123.898678,0.0,0.0,0.0,0.0,0.0,0.0,565.16129,75.086214,140.05602199999998,4.035556,0.0,2364.4000000953674,1.0,0.0,52.229487,6.844769,130.82310800000002,125.600613,0.0,358.503071,94.833724,0.0,0.0,0.0,0.0,0.0,4.035555569043279,333.99999883908,622.9999981808401,918,0.0,7592.099999999997,0.0,0.0,0.0,166.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +866,866,1609404747.3,117.7,32.0,167.0,123.017356,0.0,0.0,0.0,0.0,0.0,0.0,540.0,72.388506,134.435797,4.064467,0.0,2366.2999999523163,1.0,0.0,52.229435,6.8448509999999985,130.314142,125.752163,0.0,351.292957,92.733066,0.0,0.0,0.0,0.0,0.0,4.064467130963211,322.00000015932005,598.0000009313401,919,0.0,7600.099999999997,0.0,0.0,0.0,167.0,167.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +867,867,1609404749.1,125.2,32.0,168.0,122.069366,0.0,0.0,0.0,0.0,0.0,0.0,523.125,70.140416,137.807932,4.096032,0.0,2368.0999999046326,1.0,0.0,52.229387,6.844929,129.763154,124.32351,0.0,370.209539,98.120652,0.0,0.0,0.0,0.0,0.0,4.096031759516143,312.00000125952005,612.99999928104,920,0.0,7607.599999999997,0.0,0.0,0.0,0.0,168.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +868,868,1609404751.1,132.6,31.0,169.0,121.333847,0.0,0.0,0.0,0.0,0.0,0.0,555.483871,72.163697,134.660606,4.120862000000002,0.0,2370.0999999046326,1.0,0.0,52.229341,6.845006,129.25049099999998,121.889822,0.0,379.306237,97.19564,0.0,0.0,0.0,0.0,0.0,4.120861675143293,321.00000026934,599.00000082132,921,0.0,7614.999999999995,0.0,0.0,0.0,0.0,169.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +869,869,1609404752.9,140.6,32.0,169.0,121.30114,0.0,0.0,0.0,0.0,0.0,0.0,506.25,69.01637099999999,132.637325,4.1219730000000006,0.0,2371.9000000953674,1.0,0.0,52.229289,6.845089,128.672504,119.63288500000002,0.0,378.541177,96.529532,0.0,0.0,0.0,0.0,0.0,4.121972802563933,307.00000180962,590.0000018115,922,0.0,7622.999999999995,0.0,0.0,0.0,0.0,169.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +870,870,1609404754.7,148.1,32.0,170.0,122.353855,0.0,0.0,0.0,0.0,0.0,0.0,463.125,62.946527,105.885051,4.086508,0.0,2373.7000000476837,1.0,0.0,52.229241,6.845165,127.85442,118.916104,0.0,349.194325,94.188178,0.0,0.0,0.0,0.0,0.0,4.0865079404322815,280.00000033194004,471.00000155922,923,0.0,7630.499999999995,0.0,0.0,0.0,0.0,170.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +871,871,1609404756.5,155.0,32.5,170.0,123.748485,0.0,0.0,0.0,0.0,0.0,0.0,533.538462,71.938888,138.482359,4.040454,0.0,2375.5,1.0,0.0,52.229197,6.845236999999999,127.148769,119.699991,0.0,338.103259,90.363129,0.0,0.0,0.0,0.0,0.0,4.040453505349984,320.00000037936,615.9999989509802,923,0.0,7637.399999999995,0.0,0.0,0.0,0.0,170.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +872,872,1609404758.5,162.8,32.0,170.0,124.666425,0.0,0.0,0.0,0.0,0.0,0.0,543.75,70.590034,136.459078,4.010703,0.0,2377.5,1.0,0.0,52.229147,6.845317,126.289782,120.659517,0.0,340.820365,88.505986,0.0,0.0,0.0,0.0,0.0,4.010702961924191,314.00000103947997,606.99999994116,925,0.0,7645.199999999995,0.0,0.0,0.0,0.0,170.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +873,873,1609404760.4,170.2,32.0,171.0,124.6911,0.0,0.0,0.0,0.0,0.0,0.0,511.875,71.264461,135.559842,4.009909,0.0,2379.4000000953674,1.0,0.0,52.2291,6.845392,125.442323,122.640505,0.0,331.813926,93.591871,0.0,0.0,0.0,0.0,0.0,4.009909287832089,317.00000070942,603.00000038124,926,0.0,7652.599999999995,0.0,0.0,0.0,0.0,171.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +874,874,1609404762.3,178.2,31.0,172.0,123.817974,0.0,0.0,0.0,0.0,0.0,0.0,538.064516,71.264461,132.41251599999998,4.0381860000000005,0.0,2381.2999999523163,1.0,0.0,52.229047,6.845472,124.29142,124.360115,0.0,331.388756,91.831804,0.0,0.0,0.0,0.0,0.0,4.038185926059492,317.00000070942,589.0000019215198,927,0.0,7660.599999999995,0.0,0.0,0.0,0.0,172.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +875,875,1609404764.3,186.2,31.0,172.0,123.137579,0.0,0.0,0.0,0.0,0.0,0.0,497.419355,66.318662,131.73808799999998,4.060499,0.0,2383.2999999523163,1.0,0.0,52.228995,6.845553,122.973944,124.424716,0.0,367.120521,96.734618,0.0,0.0,0.0,0.0,0.0,4.060498866881247,294.99999868163997,585.9999978033599,928,0.0,7668.599999999995,0.0,0.0,0.0,0.0,172.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +876,876,1609404766.1,192.8,30.5,173.0,123.101831,0.0,0.0,0.0,0.0,0.0,0.0,540.983607,70.590034,136.683887,4.061678,0.0,2385.0999999046326,1.0,0.0,52.228954,6.8456220000000005,121.761016,123.170093,0.0,367.781084,96.869528,0.0,0.0,0.0,0.0,0.0,4.06167801029702,314.00000103947997,607.99999983114,929,0.0,7675.199999999995,0.0,0.0,0.0,0.0,173.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +877,877,1609404768.1,201.1,31.0,173.0,123.374589,0.0,0.0,0.0,0.0,0.0,0.0,520.645161,69.690798,136.00946000000002,4.052698,0.0,2387.0999999046326,1.0,0.0,52.2289,6.845707000000001,120.296901,126.893973,0.0,350.830003,92.880498,0.0,0.0,0.0,0.0,0.0,4.052698404531261,310.00000147956,605.0000001612001,930,0.0,7683.499999999995,0.0,0.0,0.0,0.0,173.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +878,878,1609404770.1,209.1,31.0,174.0,123.754736,0.0,0.0,0.0,0.0,0.0,0.0,522.580645,69.46598900000001,141.854495,4.040249,0.0,2389.0999999046326,1.0,0.0,52.228848,6.8457880000000015,118.681596,125.827546,0.0,360.317083,95.191438,0.0,0.0,0.0,0.0,0.0,4.0402494172021015,309.00000158958005,631.0000017489,931,0.0,7691.499999999995,0.0,0.0,0.0,0.0,174.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +879,879,1609404772.1,216.5,31.0,174.0,123.863879,0.0,0.0,0.0,0.0,0.0,0.0,530.322581,71.48926999999998,136.459078,4.036689,0.0,2391.0999999046326,1.0,0.0,52.2288,6.845862,116.800863,122.82931200000002,0.0,432.205705,113.864589,0.0,0.0,0.0,0.0,0.0,4.036689340239377,318.0000005994,606.99999994116,932,0.0,7698.899999999995,0.0,0.0,0.0,0.0,174.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +880,880,1609404773.9,224.3,32.0,175.0,123.475456,0.0,0.0,0.0,0.0,0.0,0.0,536.25,71.938888,133.086943,4.049388,0.0,2392.9000000953674,1.0,0.0,52.228749,6.845942,114.82676,121.36916399999998,0.0,341.5311890000001,91.737541,0.0,0.0,0.0,0.0,0.0,4.049387758486998,320.00000037936,592.00000159146,933,0.0,7706.699999999995,0.0,0.0,0.0,0.0,175.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +881,881,1609404775.7,7.4,32.0,175.0,123.71724,0.0,0.0,0.0,0.0,0.0,0.0,555.0,73.73736,137.133505,4.041474,0.0,2394.7000000476837,1.0,0.0,52.228702,6.846017999999999,112.68256,120.112705,0.0,345.005872,91.215078,0.0,0.0,0.0,0.0,0.0,4.0414739287750026,327.9999994992,609.9999996111002,934,0.0,7714.099999999995,0.0,0.0,0.0,0.0,175.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +882,882,1609404777.5,15.0,32.0,175.0,122.344351,0.0,0.0,0.0,0.0,0.0,0.0,60.0,17.310295,32.597309,4.086825,0.0,2396.5,1.0,0.0,52.228652,6.846094,102.811771,120.025593,0.0,356.186681,94.209137,0.0,0.0,0.0,0.0,0.0,4.086825390082783,77.0000004249,145.00000183998,934,0.0,7721.699999999995,0.0,0.0,0.0,0.0,175.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +883,883,1609404777.5,15.0,32.0,175.0,120.172656,0.0,0.0,0.0,0.0,0.0,0.0,48.75,11.914878,20.907239,4.16068,0.0,2396.5,1.0,0.0,52.228652,6.846094,101.604551,118.819169,0.0,378.835485,99.084962,0.0,0.0,0.0,0.0,0.0,4.160680279879975,52.999998617159996,92.99999866458,934,0.0,7721.699999999995,0.0,0.0,0.0,0.0,175.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +884,884,1609404777.5,15.0,32.0,175.0,120.258515,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.224809,5.1706080000000005,4.15771,0.0,2396.5,1.0,0.0,52.228652,6.846094,101.581328,125.338599,0.0,379.029897,98.888851,0.0,0.0,0.0,0.0,0.0,4.1577097472058435,-0.99999988998,23.00000191776,934,0.0,7721.699999999995,0.0,0.0,0.0,0.0,175.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +885,885,1609404777.5,15.0,32.0,175.0,126.558303,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.449618,2.697708,3.950748,0.0,2396.5,1.0,0.0,52.228652,6.846094,102.779599,133.981842,0.0,331.896882,85.225462,0.0,0.0,0.0,0.0,0.0,3.950748296617093,1.99999977996,11.999998679760001,934,0.0,7721.699999999995,0.0,0.0,0.0,0.0,175.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +886,886,1609404777.5,15.0,32.0,175.0,145.16415700000005,0.0,0.0,0.0,0.0,0.0,0.0,474.375,61.822482,131.513279,3.444376,0.0,2396.5,1.0,0.0,52.228652,6.846094,112.587389,150.705061,0.0,145.870163,56.35589,0.0,0.0,0.0,0.0,0.0,3.444376424133403,275.00000088204,584.9999979133801,934,0.0,7721.699999999995,0.0,0.0,0.0,0.0,175.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +887,887,1609404791.1,50.5,23.0,177.0,188.377815,0.0,0.0,0.0,0.0,0.0,0.0,660.0,0.674427,3.596944,2.65424,0.0,2410.0999999046326,1.0,0.0,52.228422,6.846456,114.713416,172.924431,0.0,156.15433000000004,34.815889,0.0,0.0,0.0,0.0,0.0,2.654240362645676,2.99999966994,15.99999823968,940,0.0,7757.199999999995,0.0,0.0,0.0,0.0,177.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +888,888,1609404797.9,59.8,8.0,177.0,260.684519,0.0,0.0,0.0,0.0,0.0,0.0,15.0,1.1240450000000002,4.496180000000002,1.918027,0.0,2416.9000000953674,1.0,0.0,52.228364,6.8465539999999985,116.766735,128.90315900000002,0.0,0.0,11.240451,0.0,0.0,0.0,0.0,0.0,1.918027207438429,4.999999449900001,19.999997799600003,941,0.0,7766.499999999995,0.0,0.0,0.0,0.0,177.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +889,889,1609404800.9,63.3,19.5,176.0,346.045198,0.0,0.0,0.0,0.0,0.0,0.0,89.230769,19.558385,30.574027,1.444898,0.0,2419.9000000953674,1.0,0.0,52.228341,6.846589,118.517688,79.149772,0.0,0.0,11.240451,0.0,0.0,0.0,0.0,0.0,1.4448979580985255,86.99999932470001,135.99999838193997,942,0.0,7769.999999999995,0.0,0.0,0.0,0.0,176.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +890,890,1609404805.3,69.2,13.5,174.0,376.575469,0.0,0.0,0.0,0.0,0.0,0.0,204.444444,26.752274,45.411423,1.327755,0.0,2424.2999999523163,1.0,0.0,52.228304,6.84665,120.069612,21.95088,0.0,0.0,11.240451,0.0,0.0,0.0,0.0,0.0,1.3277551013287059,119.00000025228,202.00000001706002,943,0.0,7775.899999999995,0.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +891,891,1609404809.1,76.3,15.5,173.0,330.5847080000001,0.0,0.0,0.0,0.0,0.0,0.0,197.419355,26.302656,45.636232,1.512472,0.0,2428.0999999046326,1.0,0.0,52.22826,6.846725,121.641393,24.747739000000006,0.0,269.280132,134.885415,0.0,0.0,0.0,0.0,0.0,1.5124716537100076,117.00000047232,202.99999990703998,944,0.0,7782.999999999995,0.0,0.0,0.0,0.0,173.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +892,892,1609404812.9,83.7,16.0,171.0,273.620728,0.0,0.0,0.0,0.0,0.0,0.0,258.75,34.395781,59.349583,1.827347,0.0,2431.9000000953674,1.0,0.0,52.228213,6.846803,123.072436,89.220321,0.0,36.065593,16.350334,0.0,0.0,0.0,0.0,0.0,1.827346939885344,153.00000095982,264.00000209226,945,0.0,7790.399999999995,0.0,0.0,0.0,0.0,171.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +893,893,1609404816.3,91.7,17.0,171.0,235.881856,0.0,0.0,0.0,0.0,0.0,0.0,342.352941,40.915243,74.861405,2.119705,0.0,2435.2999999523163,1.0,0.0,52.228161,6.846883999999998,124.371615,160.19513999999995,0.0,52.215783,26.980389,0.0,0.0,0.0,0.0,0.0,2.119705213782954,182.00000221745998,332.9999989491,946,0.0,7798.399999999995,0.0,0.0,0.0,0.0,171.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +894,894,1609404819.7,100.4,18.5,170.0,209.151443,0.0,0.0,0.0,0.0,0.0,0.0,402.162162,47.434704,91.047655,2.390612,0.0,2438.7000000476837,1.0,0.0,52.228104,6.846971000000001,125.33601000000002,220.97968,0.0,77.366209,33.569985,0.0,0.0,0.0,0.0,0.0,2.390612241675999,210.99999902688,404.99999992410005,947,0.0,7807.099999999995,0.0,0.0,0.0,0.0,170.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +895,895,1609404823.1,109.3,17.5,168.0,191.685792,0.0,0.0,0.0,0.0,0.0,0.0,346.2857140000001,40.690433,85.87704699999998,2.608435,0.0,2442.0999999046326,1.0,0.0,52.228047,6.847063,126.357465,255.115511,0.0,94.828756,43.197358,0.0,0.0,0.0,0.0,0.0,2.608435371151556,180.99999787926004,381.99999800634004,948,0.0,7815.999999999994,0.0,0.0,0.0,0.0,168.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +896,896,1609404826.5,119.3,17.5,167.0,180.758448,0.0,0.0,0.0,0.0,0.0,0.0,404.571429,48.33394000000001,93.520554,2.766122,0.0,2445.5,1.0,0.0,52.227984,6.8471660000000005,127.309164,260.976273,0.0,116.894737,55.242523,0.0,0.0,0.0,0.0,0.0,2.7661224442467005,214.9999985868,415.99999871388,949,0.0,7825.999999999994,0.0,0.0,0.0,167.0,167.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +897,897,1609404829.9,129.0,17.5,165.0,174.658999,0.0,0.0,0.0,0.0,0.0,0.0,390.857143,46.08585,92.621318,2.862721,0.0,2448.9000000953674,1.0,0.0,52.227921,6.847267,128.11490700000002,243.647817,0.0,139.22753799999998,61.54866,0.0,0.0,0.0,0.0,0.0,2.8627210900252558,204.999999687,411.99999915396006,950,0.0,7835.699999999993,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +898,898,1609404833.3,138.9,17.5,164.0,172.579774,0.0,0.0,0.0,0.0,0.0,0.0,332.571429,40.690433,80.70644,2.897211,0.0,2452.2999999523163,1.0,0.0,52.227859,6.8473690000000005,128.850954,215.798,0.0,135.525483,63.80021800000001,0.0,0.0,0.0,0.0,0.0,2.89721088636957,180.99999787926004,359.0000005368001,951,0.0,7845.599999999994,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +899,899,1609404836.5,148.0,18.0,163.0,173.200638,0.0,0.0,0.0,0.0,0.0,0.0,333.333333,40.24081500000001,86.77628399999998,2.886825,0.0,2455.5,1.0,0.0,52.227802,6.847466000000002,129.616954,187.382791,0.0,128.389899,61.774909,0.0,0.0,0.0,0.0,0.0,2.8868253937956045,178.99999809930003,386.00000201448,952,0.0,7854.699999999993,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +900,900,1609404839.7,157.1,18.5,163.0,174.825175,0.0,0.0,0.0,0.0,0.0,0.0,304.864865,38.891961,75.98545,2.86,0.0,2458.7000000476837,1.0,0.0,52.227745,6.8475600000000005,130.371676,163.754399,0.0,134.689091,61.141375,0.0,0.0,0.0,0.0,0.0,2.85999999714,172.99999875942,337.999998399,952,0.0,7863.799999999995,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +901,901,1609404842.9,166.1,18.5,162.0,175.854149,0.0,0.0,0.0,0.0,0.0,0.0,369.72973,44.512187,88.57475600000002,2.843265,0.0,2461.9000000953674,1.0,0.0,52.227687,6.847652,131.061691,149.717971,0.0,127.057613,56.077361,0.0,0.0,0.0,0.0,0.0,2.8432653016335716,198.00000045714,394.00000113432,953,0.0,7872.799999999995,0.0,0.0,0.0,162.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +902,902,1609404846.1,175.4,19.0,161.0,175.363252,0.0,0.0,0.0,0.0,0.0,0.0,372.631579,44.287378,92.1717,2.851224,0.0,2465.0999999046326,1.0,0.0,52.227626,6.847745,131.580635,145.857992,0.0,129.38851,54.399765,0.0,0.0,0.0,0.0,0.0,2.8512244971369487,197.00000056716,409.999999374,954,0.0,7882.099999999995,0.0,0.0,0.0,161.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +903,903,1609404849.3,184.8,19.5,161.0,173.464973,0.0,0.0,0.0,0.0,0.0,0.0,369.230769,45.186614,84.753002,2.882426,0.0,2468.2999999523163,1.0,0.0,52.22756500000001,6.84784,133.120148,149.763773,0.0,129.919425,60.557472,0.0,0.0,0.0,0.0,0.0,2.8824262982475437,201.00000012708,376.99999855643995,956,0.0,7891.499999999994,0.0,0.0,0.0,161.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +904,904,1609404852.3,193.9,19.5,160.0,171.02170900000004,0.0,0.0,0.0,0.0,0.0,0.0,409.230769,46.985086,96.667881,2.923605,0.0,2471.2999999523163,1.0,0.0,52.22750300000001,6.84793,134.251929,157.380049,0.0,126.534522,58.639184,0.0,0.0,0.0,0.0,0.0,2.9236054470722186,208.99999924692003,430.00000162182005,957,0.0,7900.599999999995,0.0,0.0,160.0,160.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +905,905,1609404855.5,203.4,19.0,159.0,168.969402,0.0,0.0,0.0,0.0,0.0,0.0,375.789474,44.961805,95.768645,2.959116,0.0,2474.5,1.0,0.0,52.227442,6.848027,135.480262,166.472203,0.0,133.0972,61.610153,0.0,0.0,0.0,0.0,0.0,2.959115639173535,200.00000023709998,426.00000206190003,958,0.0,7910.099999999995,0.0,0.0,159.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +906,906,1609404858.7,213.1,18.0,158.0,168.012801,0.0,0.0,0.0,0.0,0.0,0.0,383.333333,44.062569,86.77628399999998,2.975964,0.0,2477.7000000476837,1.0,0.0,52.227379,6.848122999999998,136.64418600000002,172.362527,0.0,148.342129,67.717361,0.0,0.0,0.0,0.0,0.0,2.9759637183835768,196.00000067718003,386.00000201448,958,0.0,7919.799999999995,0.0,0.0,158.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +907,907,1609404862.1,222.7,18.5,157.0,168.097336,0.0,0.0,0.0,0.0,0.0,0.0,382.702703,46.08585,94.194981,2.974467,0.0,2481.0999999046326,1.0,0.0,52.227314,6.848215,136.621838,176.204279,0.0,142.497165,64.556607,0.0,0.0,0.0,0.0,0.0,2.9744671265938436,204.999999687,418.99999838382,960,0.0,7929.399999999995,0.0,0.0,157.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +908,908,1609404865.1,231.7,18.5,157.0,168.605051,0.0,0.0,0.0,0.0,0.0,0.0,356.756757,43.388142,89.698801,2.96551,0.0,2484.0999999046326,1.0,0.0,52.22725300000001,6.848304,136.496457,177.093857,0.0,139.178056,66.04869000000001,0.0,0.0,0.0,0.0,0.0,2.9655102088252385,193.00000100724,399.00000058422006,960,0.0,7938.399999999995,0.0,0.0,157.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +909,909,1609404868.5,241.6,18.0,157.0,169.13140900000005,0.0,0.0,0.0,0.0,0.0,0.0,410.0,48.783558,92.396509,2.956281,0.0,2487.5,1.0,0.0,52.22719,6.8484050000000005,136.539016,176.295622,0.0,138.98105900000002,66.405214,0.0,0.0,0.0,0.0,0.0,2.9562811718786066,216.99999836676002,410.99999926397993,961,0.0,7948.299999999995,0.0,0.0,157.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +910,910,1609404871.9,251.5,17.5,156.0,169.501949,0.0,0.0,0.0,0.0,0.0,0.0,390.857143,45.861041,95.094217,2.949819,0.0,2490.9000000953674,1.0,0.0,52.227125,6.848505,136.643068,174.09869,0.0,140.090034,67.23454699999999,0.0,0.0,0.0,0.0,0.0,2.9498185888116253,203.99999979702,422.99999794374,962,0.0,7958.199999999993,0.0,0.0,156.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +911,911,1609404875.3,261.7,18.0,155.0,169.654536,0.0,0.0,0.0,0.0,0.0,0.0,410.0,47.434704,95.768645,2.947166,0.0,2494.2999999523163,1.0,0.0,52.227057,6.848605,136.607575,172.754076,0.0,143.532906,65.797515,0.0,0.0,0.0,0.0,0.0,2.9471655270095463,210.99999902688,426.00000206190003,963,0.0,7968.399999999994,0.0,0.0,155.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +912,912,1609404878.5,271.2,18.0,155.0,169.783862,0.0,0.0,0.0,0.0,0.0,0.0,386.666667,45.186614,98.466353,2.944921,0.0,2497.5,1.0,0.0,52.226995,6.8487,136.576491,169.65423,0.0,151.08727,65.647858,0.0,0.0,0.0,0.0,0.0,2.944920642693356,201.00000012708,438.00000074166,964,0.0,7977.899999999994,0.0,0.0,155.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +913,913,1609404881.9,281.0,18.0,154.0,170.145453,0.0,0.0,0.0,0.0,0.0,0.0,400.0,46.985086,98.915971,2.938662,0.0,2500.9000000953674,1.0,0.0,52.22693,6.848798,136.468412,168.19052299999996,0.0,140.21721399999998,65.230632,0.0,0.0,0.0,0.0,0.0,2.938662133980154,208.99999924692003,440.00000052162005,965,0.0,7987.699999999993,0.0,0.0,154.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +914,914,1609404885.1,290.4,18.0,154.0,170.75286100000002,0.0,0.0,0.0,0.0,0.0,0.0,396.666667,46.535468,90.598037,2.928209,0.0,2504.0999999046326,1.0,0.0,52.22687,6.848896000000001,136.547676,166.79699499999995,0.0,142.445943,64.533743,0.0,0.0,0.0,0.0,0.0,2.9282086231047098,206.99999946696,403.00000014414,966,0.0,7997.099999999994,0.0,0.0,154.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +915,915,1609404888.5,300.3,18.5,153.0,171.556614,0.0,0.0,0.0,0.0,0.0,0.0,379.459459,45.186614,94.644599,2.91449,0.0,2507.5,1.0,0.0,52.226805,6.848995,136.481312,168.48773300000005,0.0,128.58033600000002,60.680422,0.0,0.0,0.0,0.0,0.0,2.9144897905247764,201.00000012708,420.99999816378,967,0.0,8006.999999999994,0.0,0.0,153.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +916,916,1609404891.7,309.9,17.5,153.0,172.25755,0.0,0.0,0.0,0.0,0.0,0.0,380.571429,46.535468,86.10185600000001,2.90263,0.0,2510.7000000476837,1.0,0.0,52.226744,6.849092999999999,136.538294,169.158639,0.0,139.153387,64.154013,0.0,0.0,0.0,0.0,0.0,2.9026303926881583,206.99999946696,382.99999789632005,968,0.0,8016.599999999994,0.0,0.0,153.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +917,917,1609404895.1,319.4,17.5,151.0,172.489322,0.0,0.0,0.0,0.0,0.0,0.0,366.857143,45.186614,86.77628399999998,2.89873,0.0,2514.0999999046326,1.0,0.0,52.226681,6.849188000000002,136.493042,170.64873,0.0,135.689633,63.899399,0.0,0.0,0.0,0.0,0.0,2.898730160235658,201.00000012708,386.00000201448,969,0.0,8026.099999999994,0.0,0.0,151.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +918,918,1609404898.3,328.6,19.0,150.0,171.983465,0.0,0.0,0.0,0.0,0.0,0.0,413.684211,48.109131,96.218263,2.9072560000000003,0.0,2517.2999999523163,1.0,0.0,52.226621,6.849281,136.550102,173.426207,0.0,133.617001,58.373716,0.0,0.0,0.0,0.0,0.0,2.9072562295450903,213.99999869682,428.00000184186007,970,0.0,8035.299999999994,0.0,0.0,150.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +919,919,1609404901.7,338.6,18.0,149.0,170.938183,0.0,0.0,0.0,0.0,0.0,0.0,423.333333,48.33394000000001,98.915971,2.925034,0.0,2520.7000000476837,1.0,0.0,52.226555,6.84938,136.430955,173.853515,0.0,141.30438999999996,65.53329599999999,0.0,0.0,0.0,0.0,0.0,2.925034016536844,214.9999985868,440.00000052162005,971,0.0,8045.299999999994,0.0,0.0,149.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +920,920,1609404904.9,347.9,18.0,148.0,169.904222,0.0,0.0,0.0,0.0,0.0,0.0,420.0,48.783558,100.939252,2.942834,0.0,2523.9000000953674,1.0,0.0,52.226495,6.849475999999999,136.464531,173.737042,0.0,140.317817,65.508782,0.0,0.0,0.0,0.0,0.0,2.9428344635249846,216.99999836676002,448.99999953144004,972,0.0,8054.599999999994,0.0,0.0,148.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +921,921,1609404908.3,357.9,18.5,148.0,169.269034,0.0,0.0,0.0,0.0,0.0,0.0,405.405405,48.33394000000001,94.41979,2.953878,0.0,2527.2999999523163,1.0,0.0,52.22643,6.849576,136.406351,172.315046,0.0,143.288148,67.261319,0.0,0.0,0.0,0.0,0.0,2.95387755329188,214.9999985868,419.9999982738,973,0.0,8064.599999999994,0.0,0.0,148.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +922,922,1609404911.5,367.5,17.5,147.0,169.044534,0.0,0.0,0.0,0.0,0.0,0.0,377.142857,44.73699600000001,89.47399200000002,2.9578,0.0,2530.5,1.0,0.0,52.226368,6.849674,136.413475,169.78143300000005,0.0,143.058333,67.755617,0.0,0.0,0.0,0.0,0.0,2.957800457481813,199.00000034712002,398.00000069424004,974,0.0,8074.199999999993,0.0,0.0,147.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +923,923,1609404914.9,377.4,18.0,148.0,169.20019299999996,0.0,0.0,0.0,0.0,0.0,0.0,403.333333,49.008367,100.714443,2.955079,0.0,2533.9000000953674,1.0,0.0,52.226303,6.8497710000000005,136.396181,168.431893,0.0,140.281613,65.493061,0.0,0.0,0.0,0.0,0.0,2.9550793715702213,217.99999825673999,447.99999964145997,975,0.0,8084.099999999994,0.0,0.0,148.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +924,924,1609404918.3,387.5,17.5,148.0,169.300226,0.0,0.0,0.0,0.0,0.0,0.0,414.857143,46.985086,95.094217,2.953333,0.0,2537.2999999523163,1.0,0.0,52.226235,6.849871,136.198668,166.460508,0.0,142.89758600000005,67.463995,0.0,0.0,0.0,0.0,0.0,2.953333328686756,208.99999924692003,422.99999794374,976,0.0,8094.199999999993,0.0,0.0,148.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +925,925,1609404921.7,397.6,18.0,148.0,169.18461499999995,0.0,0.0,0.0,0.0,0.0,0.0,410.0,47.659513,96.443072,2.955351,0.0,2540.7000000476837,1.0,0.0,52.226171,6.8499740000000005,136.187804,165.268825,0.0,149.409417,66.669321,0.0,0.0,0.0,0.0,0.0,2.9553514662074916,211.99999891686002,429.00000173184,977,0.0,8104.299999999995,0.0,0.0,148.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +926,926,1609404925.1,407.2,17.5,147.0,169.20668500000005,0.0,0.0,0.0,0.0,0.0,0.0,380.571429,44.961805,94.194981,2.954966,0.0,2544.0999999046326,1.0,0.0,52.226108,6.850072,136.133372,165.67298200000005,0.0,140.242409,64.150785,0.0,0.0,0.0,0.0,0.0,2.954965993217112,200.00000023709998,418.99999838382,978,0.0,8113.899999999995,0.0,0.0,147.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +927,927,1609404928.3,416.7,18.5,147.0,169.46417,0.0,0.0,0.0,0.0,0.0,0.0,350.2702700000001,42.713715,83.85376600000002,2.950476,0.0,2547.2999999523163,1.0,0.0,52.226046,6.850167999999999,136.061354,167.24746399999995,0.0,137.173877,63.006133,0.0,0.0,0.0,0.0,0.0,2.9504761980069296,190.0000013373,372.9999989965201,979,0.0,8123.399999999995,0.0,0.0,147.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +928,928,1609404931.5,426.6,18.0,147.0,169.921243,0.0,0.0,0.0,0.0,0.0,0.0,360.0,42.488906,89.47399200000002,2.94254,0.0,2550.5,1.0,0.0,52.225982,6.850267999999999,135.941222,168.017769,0.0,151.676752,65.48913,0.0,0.0,0.0,0.0,0.0,2.942539679985745,189.00000144732,398.00000069424004,980,0.0,8133.299999999995,0.0,0.0,147.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +929,929,1609404934.9,436.3,18.0,146.0,170.637899,0.0,0.0,0.0,0.0,0.0,0.0,390.0,45.636232,93.520554,2.930181,0.0,2553.9000000953674,1.0,0.0,52.22592,6.850368,135.870103,168.549126,0.0,138.841937,61.021147,0.0,0.0,0.0,0.0,0.0,2.930181412981415,202.99999990703998,415.99999871388,981,0.0,8142.999999999994,0.0,146.0,146.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +930,930,1609404938.1,445.7,18.0,145.0,171.393926,0.0,0.0,0.0,0.0,0.0,0.0,380.0,45.186614,89.698801,2.917256,0.0,2557.0999999046326,1.0,0.0,52.22586,6.850466,135.945418,167.993101,0.0,143.249742,63.062176,0.0,0.0,0.0,0.0,0.0,2.9172562392905337,201.00000012708,399.00000058422006,982,0.0,8152.399999999994,0.0,145.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +931,931,1609404941.5,455.6,17.5,144.0,172.268317,0.0,0.0,0.0,0.0,0.0,0.0,353.142857,42.264097,85.427429,2.9024490000000003,0.0,2560.5,1.0,0.0,52.225795,6.8505660000000015,135.863217,167.85820800000005,0.0,150.104356,64.14217099999999,0.0,0.0,0.0,0.0,0.0,2.9024489744100768,188.00000155733997,379.99999822638,983,0.0,8162.299999999994,0.0,144.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +932,932,1609404944.9,465.5,17.5,143.0,173.30000900000005,0.0,0.0,0.0,0.0,0.0,0.0,387.428571,46.310659,96.443072,2.88517,0.0,2563.9000000953674,1.0,0.0,52.225731,6.850666,135.768033,168.75891399999998,0.0,137.2304,63.014171,0.0,0.0,0.0,0.0,0.0,2.8851700752075553,205.99999957698003,429.00000173184,984,0.0,8172.1999999999925,0.0,143.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +933,933,1609404948.3,475.3,17.5,143.0,174.061999,0.0,0.0,0.0,0.0,0.0,0.0,363.428571,42.938524,87.450711,2.8725400000000003,0.0,2567.2999999523163,1.0,0.0,52.225668,6.8507669999999985,135.75888799999998,171.149483,0.0,129.16589,62.189636,0.0,0.0,0.0,0.0,0.0,2.8725396862758084,191.00000122728,389.00000168442,985,0.0,8181.999999999994,0.0,143.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +934,934,1609404951.7,485.3,17.5,142.0,173.983714,0.0,0.0,0.0,0.0,0.0,0.0,414.857143,47.209895,101.164061,2.873832,0.0,2570.7000000476837,1.0,0.0,52.225604,6.850867999999998,135.70564299999998,173.557036,0.0,129.383489,62.274014,0.0,0.0,0.0,0.0,0.0,2.8738322024784457,209.9999991369,449.99999942142,986,0.0,8191.999999999994,142.0,142.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +935,935,1609404955.1,494.7,17.5,141.0,172.521712,0.0,0.0,0.0,0.0,0.0,0.0,414.857143,48.109131,102.063297,2.898186,0.0,2574.0999999046326,1.0,0.0,52.225543,6.850963,135.577722,174.609902,0.0,136.082892,63.863872,0.0,0.0,0.0,0.0,0.0,2.8981859396340792,213.99999869682,453.99999898134,987,0.0,8201.399999999992,141.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +936,936,1609404958.3,504.5,18.5,141.0,169.676729,0.0,0.0,0.0,0.0,0.0,0.0,402.162162,46.535468,94.41979,2.94678,0.0,2577.2999999523163,1.0,0.0,52.225481,6.851066,135.551932,174.898965,0.0,139.614137,66.79231,0.0,0.0,0.0,0.0,0.0,2.9467800501976913,206.99999946696,419.9999982738,988,0.0,8211.199999999992,141.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +937,937,1609404961.4,513.5,19.5,141.0,165.945437,0.0,0.0,0.0,0.0,0.0,0.0,470.76923099999993,55.30302,105.660242,3.013039,0.0,2580.4000000953674,1.0,0.0,52.225423,6.851159,135.510061,173.46168899999995,0.0,138.228391,64.228513,0.0,0.0,0.0,0.0,0.0,3.0130385567636915,245.99999962439998,470.00000166924,989,0.0,8220.199999999992,141.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +938,938,1609404964.7,524.0,19.0,140.0,161.794488,0.0,0.0,0.0,0.0,0.0,0.0,454.736842,53.504548,106.334669,3.0903400000000003,0.0,2583.7000000476837,1.0,0.0,52.225356,6.851266000000002,135.46733799999998,170.641145,0.0,152.64141999999995,69.79959699999999,0.0,0.0,0.0,0.0,0.0,3.0903401356911493,238.00000050456,473.00000133918,990,0.0,8230.699999999992,140.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +939,939,1609404967.7,533.8,19.0,141.0,157.973922,0.0,0.0,0.0,0.0,0.0,0.0,489.473684,56.651874,111.055658,3.165079,0.0,2586.7000000476837,1.0,0.0,52.225293,6.851367,135.38843899999998,164.273608,0.0,181.363547,75.32836999999998,0.0,0.0,0.0,0.0,0.0,3.1650793603769616,251.99999896427997,493.99999902876,991,0.0,8240.49999999999,141.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +940,940,1609404970.9,544.2,19.0,141.0,155.106922,0.0,0.0,0.0,0.0,0.0,0.0,464.210526,55.527829,111.954894,3.223583,0.0,2589.9000000953674,1.0,0.0,52.225226,6.851473,135.25776499999998,158.615872,0.0,183.60342,80.89636,0.0,0.0,0.0,0.0,0.0,3.2235827618318678,246.99999951438,497.99999858867994,992,0.0,8250.89999999999,141.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +941,941,1609404974.1,554.6,19.0,142.0,153.41691799999995,0.0,0.0,0.0,0.0,0.0,0.0,473.68421100000006,57.326301,109.481995,3.259093,0.0,2593.0999999046326,1.0,0.0,52.225161,6.851583,135.17798,151.90957,0.0,192.105853,84.332544,0.0,0.0,0.0,0.0,0.0,3.2590929769557757,254.99999863422002,486.9999997989,993,0.0,8261.29999999999,142.0,142.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +942,942,1609404977.3,564.9,18.5,143.0,153.0676,0.0,0.0,0.0,0.0,0.0,0.0,460.540541,53.504548,111.505276,3.266531,0.0,2596.2999999523163,1.0,0.0,52.225097,6.851692999999999,135.148666,148.11268700000005,0.0,195.387407,82.037573,0.0,0.0,0.0,0.0,0.0,3.2665306047785423,238.00000050456,495.99999880872,994,0.0,8271.59999999999,0.0,143.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +943,943,1609404980.3,574.6,20.0,143.0,153.748536,0.0,0.0,0.0,0.0,0.0,0.0,396.0,47.659513,92.396509,3.252063,0.0,2599.2999999523163,1.0,0.0,52.225037,6.851796,135.199996,146.978466,0.0,186.157202,79.508078,0.0,0.0,0.0,0.0,0.0,3.2520634863150826,211.99999891686002,410.99999926397993,995,0.0,8281.29999999999,0.0,143.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +944,944,1609404983.3,584.2,19.0,144.0,154.872695,0.0,0.0,0.0,0.0,0.0,0.0,435.789474,49.457985,104.311387,3.2284580000000003,0.0,2602.2999999523163,1.0,0.0,52.224978,6.851896000000001,135.240723,148.505761,0.0,183.593925,81.368123,0.0,0.0,0.0,0.0,0.0,3.2284580571158785,219.9999980367,463.9999978811401,996,0.0,8290.89999999999,0.0,144.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +945,945,1609404986.5,594.3,19.0,145.0,156.41071100000005,0.0,0.0,0.0,0.0,0.0,0.0,407.368421,47.434704,102.512915,3.196712,0.0,2605.5,1.0,0.0,52.224913,6.852001,135.295864,152.646146,0.0,174.753167,78.296183,0.0,0.0,0.0,0.0,0.0,3.196712020572555,210.99999902688,455.99999876130005,997,0.0,8300.99999999999,0.0,145.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +946,946,1609404989.9,604.8,18.0,146.0,158.684466,0.0,0.0,0.0,0.0,0.0,0.0,413.333333,48.783558,100.939252,3.150907,0.0,2608.9000000953674,1.0,0.0,52.224846,6.852109,135.271903,156.112644,0.0,176.233384,82.47559100000002,0.0,0.0,0.0,0.0,0.0,3.150907033332425,216.99999836676002,448.99999953144004,998,0.0,8311.49999999999,0.0,146.0,146.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +947,947,1609404993.1,614.7,18.0,146.0,161.568053,0.0,0.0,0.0,0.0,0.0,0.0,410.0,47.884322,98.241544,3.094671,0.0,2612.0999999046326,1.0,0.0,52.224783,6.8522110000000005,135.34747,159.972903,0.0,164.276674,72.53835500000002,0.0,0.0,0.0,0.0,0.0,3.0946711971580174,212.99999880683998,437.00000085168,999,0.0,8321.39999999999,0.0,146.0,146.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +948,948,1609404996.5,624.9,17.5,147.0,164.433209,0.0,0.0,0.0,0.0,0.0,0.0,414.857143,53.954166,97.117499,3.040748,0.0,2615.5,1.0,0.0,52.224717,6.852314999999999,135.359179,161.310054,0.0,155.000238,73.243863,0.0,0.0,0.0,0.0,0.0,3.040748295558715,240.00000028452004,432.00000140178,1000,0.0,8331.599999999991,0.0,0.0,147.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +949,949,1609405000.2,634.9,18.0,147.0,166.188075,0.0,0.0,0.0,0.0,0.0,0.0,400.0,47.659513,95.993454,3.008639,0.0,2619.2000000476837,1.0,0.0,52.224651,6.852417,135.42058799999998,165.28698400000005,0.0,147.144576,69.895705,0.0,0.0,0.0,0.0,0.0,3.0086394586374503,211.99999891686002,427.00000195187994,1001,0.0,8341.599999999991,0.0,0.0,147.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +950,950,1609405003.1,644.3,18.5,148.0,165.838103,0.0,0.0,0.0,0.0,0.0,0.0,421.621622,50.582031,105.210624,3.014989,0.0,2622.0999999046326,1.0,0.0,52.22459,6.8525100000000005,135.331949,167.343882,0.0,152.835657,70.12309300000001,0.0,0.0,0.0,0.0,0.0,3.0149886603563,225.00000193482003,468.00000188928,1002,0.0,8350.99999999999,0.0,0.0,148.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +951,951,1609405006.4,654.5,18.0,148.0,163.826025,0.0,0.0,0.0,0.0,0.0,0.0,466.666667,52.380503,117.125502,3.052018,0.0,2625.4000000953674,1.0,0.0,52.224524,6.852614999999999,135.335134,168.097216,0.0,161.47114,72.78756700000002,0.0,0.0,0.0,0.0,0.0,3.052018139364609,233.00000105466003,521.0000005064401,1003,0.0,8361.199999999992,0.0,0.0,148.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +952,952,1609405009.7,665.0,18.0,147.0,161.594102,0.0,0.0,0.0,0.0,0.0,0.0,436.666667,50.80684,103.63696,3.094172,0.0,2628.7000000476837,1.0,0.0,52.224456,6.85272,135.28947,167.267313,0.0,160.354228,74.190084,0.0,0.0,0.0,0.0,0.0,3.0941723355720003,226.0000018248,460.9999982112,1004,0.0,8371.699999999992,0.0,0.0,147.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +953,953,1609405012.9,675.1,18.5,147.0,160.06213799999998,0.0,0.0,0.0,0.0,0.0,0.0,437.837838,49.907603,100.489634,3.123787,0.0,2631.9000000953674,1.0,0.0,52.22439,6.852822,135.223718,164.41048999999995,0.0,157.741803,74.946312,0.0,0.0,0.0,0.0,0.0,3.123786838333998,221.99999781666,446.99999975147995,1005,0.0,8381.799999999992,0.0,0.0,147.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +954,954,1609405015.9,684.4,20.0,147.0,159.502901,0.0,0.0,0.0,0.0,0.0,0.0,438.0,50.80684,108.582759,3.134739,0.0,2634.9000000953674,1.0,0.0,52.224329,6.852917,135.12984,162.374743,0.0,166.880143,77.252781,0.0,0.0,0.0,0.0,0.0,3.1347392233323705,226.0000018248,483.0000002389801,1006,0.0,8391.099999999991,0.0,0.0,147.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +955,955,1609405019.1,694.5,19.0,147.0,159.70738400000005,0.0,0.0,0.0,0.0,0.0,0.0,423.157895,49.682794,104.311387,3.130726,0.0,2638.0999999046326,1.0,0.0,52.224265,6.853021000000001,135.044183,159.781317,0.0,171.198657,72.31997,0.0,0.0,0.0,0.0,0.0,3.13072562756397,220.99999792667998,463.9999978811401,1007,0.0,8401.199999999992,0.0,0.0,147.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +956,956,1609405022.3,704.5,18.5,147.0,159.93443100000005,0.0,0.0,0.0,0.0,0.0,0.0,444.3243240000001,51.481267,106.10986,3.126281,0.0,2641.2999999523163,1.0,0.0,52.22420200000001,6.853126,134.97346299999998,158.320842,0.0,166.83276899999996,75.137914,0.0,0.0,0.0,0.0,0.0,3.126281169562544,229.00000149474,472.00000144920006,1008,0.0,8411.199999999992,0.0,0.0,147.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +957,957,1609405025.3,713.9,19.5,148.0,159.655347,0.0,0.0,0.0,0.0,0.0,0.0,461.538462,54.853402,106.559478,3.131746,0.0,2644.2999999523163,1.0,0.0,52.224144,6.853225,134.93502800000002,157.55223700000005,0.0,170.734294,71.647412,0.0,0.0,0.0,0.0,0.0,3.131746035414648,243.99999984444005,474.0000012291599,1009,0.0,8420.599999999991,0.0,0.0,148.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +958,958,1609405028.5,723.9,19.5,148.0,158.657063,0.0,0.0,0.0,0.0,0.0,0.0,464.615385,54.853402,108.35795,3.151451,0.0,2647.5,1.0,0.0,52.224082,6.853331,134.939324,154.12726999999995,0.0,174.695453,84.793296,0.0,0.0,0.0,0.0,0.0,3.1514512530715386,243.99999984444005,482.000000349,1010,0.0,8430.599999999991,0.0,0.0,148.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +959,959,1609405031.5,733.6,20.0,150.0,157.08596599999996,0.0,0.0,0.0,0.0,0.0,0.0,465.0,55.527829,107.009096,3.182971,0.0,2650.5,1.0,0.0,52.224022,6.853434,134.969693,152.977001,0.0,182.951663,87.921787,0.0,0.0,0.0,0.0,0.0,3.1829705271061584,246.99999951438,476.00000100912,1011,0.0,8440.299999999992,0.0,0.0,150.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +960,960,1609405034.5,743.4,20.0,150.0,155.653285,0.0,0.0,0.0,0.0,0.0,0.0,432.0,50.80684,104.761006,3.212268,0.0,2653.5,1.0,0.0,52.22396,6.853536999999998,135.00833400000002,152.690201,0.0,181.524008,81.742464,0.0,0.0,0.0,0.0,0.0,3.2122675727659717,226.0000018248,466.00000210932006,1012,0.0,8450.099999999991,0.0,0.0,150.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +961,961,1609405037.5,753.2,19.5,150.0,155.11456,0.0,0.0,0.0,0.0,0.0,0.0,436.923077,51.481267,104.311387,3.223424,0.0,2656.5,1.0,0.0,52.223898,6.853639,134.98738400000002,163.939601,0.0,165.946885,79.449741,0.0,0.0,0.0,0.0,0.0,3.2234240293109813,229.00000149474,463.9999978811401,1013,0.0,8459.89999999999,0.0,0.0,150.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +962,962,1609405040.3,762.1,20.5,150.0,155.71813999999995,0.0,0.0,0.0,0.0,0.0,0.0,441.95122,50.80684,105.435433,3.21093,0.0,2659.2999999523163,1.0,0.0,52.223843,6.853733999999998,135.024922,165.21025500000005,0.0,191.999642,133.782973,0.0,0.0,0.0,0.0,0.0,3.2109296964374225,226.0000018248,469.00000177925995,1014,0.0,8468.79999999999,0.0,0.0,150.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +963,963,1609405043.5,772.1,20.0,151.0,157.084847,0.0,0.0,0.0,0.0,0.0,0.0,399.0,49.233176,102.737724,3.182993,0.0,2662.5,1.0,0.0,52.223781,6.853839999999999,134.22129099999998,165.753099,0.0,188.557713,80.416955,0.0,0.0,0.0,0.0,0.0,3.1829932011201567,218.99999814672,456.99999865128,1015,0.0,8478.79999999999,0.0,0.0,151.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +964,964,1609405046.5,781.6,19.5,151.0,158.600004,0.0,0.0,0.0,0.0,0.0,0.0,424.615385,51.481267,110.60604,3.152585,0.0,2665.5,1.0,0.0,52.22372,6.853938,134.151347,163.871718,0.0,170.43943000000004,72.036266,0.0,0.0,0.0,0.0,0.0,3.1525850402878928,229.00000149474,491.99999924879995,1016,0.0,8488.29999999999,0.0,0.0,151.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +965,965,1609405049.5,791.1,19.5,151.0,159.710855,0.0,0.0,0.0,0.0,0.0,0.0,427.692308,49.457985,105.435433,3.1306580000000004,0.0,2668.5,1.0,0.0,52.22365900000001,6.8540350000000005,133.00684099999998,161.342612,0.0,168.850651,71.579388,0.0,0.0,0.0,0.0,0.0,3.130657587425726,219.9999980367,469.00000177925995,1017,0.0,8497.79999999999,0.0,0.0,151.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +966,966,1609405052.7,801.2,19.0,152.0,160.31233600000004,0.0,0.0,0.0,0.0,0.0,0.0,407.368421,48.33394000000001,97.342308,3.118912,0.0,2671.7000000476837,1.0,0.0,52.223596,6.854141,131.90313600000002,158.33055900000005,0.0,171.722626,69.827438,0.0,0.0,0.0,0.0,0.0,3.118911572718895,214.9999985868,433.00000129176004,1018,0.0,8507.89999999999,0.0,0.0,152.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +967,967,1609405055.9,811.3,19.0,152.0,160.61244,0.0,0.0,0.0,0.0,0.0,0.0,391.578947,46.985086,92.1717,3.113084,0.0,2674.9000000953674,1.0,0.0,52.223531,6.854245,130.564741,157.927064,0.0,158.672084,71.218987,0.0,0.0,0.0,0.0,0.0,3.1130838931280786,208.99999924692003,409.999999374,1019,0.0,8517.99999999999,0.0,0.0,152.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +968,968,1609405058.9,820.6,19.5,152.0,160.781083,0.0,0.0,0.0,0.0,0.0,0.0,433.846154,49.682794,99.14078,3.109819,0.0,2677.9000000953674,1.0,0.0,52.223472,6.854341000000002,130.15851899999998,156.60558999999995,0.0,162.43639299999995,74.90932099999998,0.0,0.0,0.0,0.0,0.0,3.109818584814484,220.99999792667998,441.0000004116,1020,0.0,8527.29999999999,0.0,0.0,152.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +969,969,1609405062.1,830.6,18.5,152.0,160.81157,0.0,0.0,0.0,0.0,0.0,0.0,434.594595,54.403784,108.582759,3.109229,0.0,2681.0999999046326,1.0,0.0,52.223408,6.854444,129.11041799999998,158.716039,0.0,166.096879,78.156039,0.0,0.0,0.0,0.0,0.0,3.1092290187826657,242.00000006448,483.0000002389801,1021,0.0,8537.29999999999,0.0,0.0,152.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +970,970,1609405065.3,840.4,19.5,152.0,161.07941499999995,0.0,0.0,0.0,0.0,0.0,0.0,406.153846,48.783558,104.985815,3.104059,0.0,2684.2999999523163,1.0,0.0,52.223345,6.854545,128.17081299999998,161.14703799999995,0.0,152.379445,70.713877,0.0,0.0,0.0,0.0,0.0,3.1040589512943044,216.99999836676002,467.0000019993,1022,0.0,8547.09999999999,0.0,0.0,152.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +971,971,1609405068.5,850.5,19.0,152.0,161.732778,0.0,0.0,0.0,0.0,0.0,0.0,413.684211,49.682794,101.164061,3.091519,0.0,2687.5,1.0,0.0,52.22328,6.854647999999999,126.499146,163.42361499999996,0.0,162.059698,72.992993,0.0,0.0,0.0,0.0,0.0,3.0915192713749096,220.99999792667998,449.99999942142,1023,0.0,8557.19999999999,0.0,0.0,152.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +972,972,1609405071.7,860.3,18.5,152.0,162.57225400000004,0.0,0.0,0.0,0.0,0.0,0.0,418.378378,49.907603,109.481995,3.075556,0.0,2690.7000000476837,1.0,0.0,52.223218,6.85475,124.743554,166.067646,0.0,153.57216499999996,71.089701,0.0,0.0,0.0,0.0,0.0,3.0755555618980344,221.99999781666,486.9999997989,1024,0.0,8566.999999999989,0.0,0.0,152.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +973,973,1609405075.1,869.9,18.0,152.0,163.471376,0.0,0.0,0.0,0.0,0.0,0.0,393.333333,45.186614,103.187342,3.058639,0.0,2694.0999999046326,1.0,0.0,52.223157,6.85485,122.761397,165.392157,0.0,146.776151,70.194549,0.0,0.0,0.0,0.0,0.0,3.0586394525730305,201.00000012708,458.99999843124,1025,0.0,8576.59999999999,0.0,0.0,152.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +974,974,1609405078.3,879.8,17.5,152.0,164.177326,0.0,0.0,0.0,0.0,0.0,0.0,432.0,50.357222,101.613679,3.045488,0.0,2697.2999999523163,1.0,0.0,52.223093,6.854949,123.01871,166.567303,0.0,156.01313000000005,73.763743,0.0,0.0,0.0,0.0,0.0,3.0454875358367093,224.00000204484002,451.99999920138,1026,0.0,8586.499999999989,0.0,0.0,152.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +975,975,1609405081.7,890.5,18.0,151.0,164.506815,0.0,0.0,0.0,0.0,0.0,0.0,413.333333,49.457985,102.737724,3.039388,0.0,2700.7000000476837,1.0,0.0,52.223022,6.855057,123.307101,167.440931,0.0,151.173281,71.94555600000002,0.0,0.0,0.0,0.0,0.0,3.0393877603186232,219.9999980367,456.99999865128,1027,0.0,8597.19999999999,0.0,0.0,151.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +976,976,1609405084.9,900.2,18.0,151.0,165.011562,0.0,0.0,0.0,0.0,0.0,0.0,410.0,48.33394000000001,107.009096,3.030091,0.0,2703.9000000953674,1.0,0.0,52.222958,6.855153,123.398194,168.15084199999995,0.0,150.946279,71.719011,0.0,0.0,0.0,0.0,0.0,3.0300907035835465,214.9999985868,476.00000100912,1028,0.0,8606.89999999999,0.0,0.0,151.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +977,977,1609405088.5,910.7,17.0,151.0,166.310915,0.0,0.0,0.0,0.0,0.0,0.0,405.882353,47.434704,100.939252,3.006417,0.0,2707.5,1.0,0.0,52.22289,6.85526,123.599099,167.17724099999995,0.0,155.315608,77.539803,0.0,0.0,0.0,0.0,0.0,3.0064172276365633,210.99999902688,448.99999953144004,1029,0.0,8617.39999999999,0.0,0.0,151.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +978,978,1609405091.9,920.9,17.0,151.0,168.333461,0.0,0.0,0.0,0.0,0.0,0.0,391.764706,47.209895,103.187342,2.970295,0.0,2710.9000000953674,1.0,0.0,52.222824,6.8553630000000005,123.710057,165.324777,0.0,143.675186,74.19991800000003,0.0,0.0,0.0,0.0,0.0,2.9702947769843573,209.9999991369,458.99999843124,1030,0.0,8627.599999999991,0.0,0.0,151.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +979,979,1609405095.5,931.3,17.0,151.0,170.623375,0.0,0.0,0.0,0.0,0.0,0.0,370.588235,44.512187,95.543836,2.930431,0.0,2714.5,1.0,0.0,52.222758,6.85547,123.885631,164.372243,0.0,152.167945,70.70642600000002,0.0,0.0,0.0,0.0,0.0,2.9304308392680665,198.00000045714,425.00000217192,1031,0.0,8637.99999999999,0.0,0.0,151.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +980,980,1609405099.1,941.2,17.5,151.0,172.230641,0.0,0.0,0.0,0.0,0.0,0.0,360.0,44.73699600000001,84.078575,2.903084,0.0,2718.0999999046326,1.0,0.0,52.222693,6.855569999999998,121.68368,166.85626200000004,0.0,135.392682,64.18361999999999,0.0,0.0,0.0,0.0,0.0,2.9030838943460706,199.00000034712002,373.9999988865,1032,0.0,8647.89999999999,0.0,0.0,151.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +981,981,1609405102.2,950.2,17.5,150.0,172.29523799999996,0.0,0.0,0.0,0.0,0.0,0.0,390.857143,45.411423,96.218263,2.901995,0.0,2721.2000000476837,1.0,0.0,52.222633,6.855658,119.173434,164.269662,0.0,136.494729,68.647217,0.0,0.0,0.0,0.0,0.0,2.9019954689635714,202.00000001706002,428.00000184186007,1033,0.0,8656.89999999999,0.0,0.0,150.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +982,982,1609405105.9,961.5,16.5,150.0,170.988554,0.0,0.0,0.0,0.0,0.0,0.0,450.909091,51.706076,108.35795,2.924172,0.0,2724.9000000953674,1.0,0.0,52.222558,6.85577,116.295156,162.118376,0.0,171.98431200000005,72.52172,0.0,0.0,0.0,0.0,0.0,2.9241723396292363,230.00000138472,482.000000349,1034,0.0,8668.19999999999,0.0,0.0,150.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +983,983,1609405109.3,971.6,17.5,149.0,170.266326,0.0,0.0,0.0,0.0,0.0,0.0,425.14285700000005,-0.224809,2.0232810000000003,2.936576,0.0,2728.2999999523163,1.0,0.0,52.222493,6.855874000000001,105.844089,159.8161,0.0,142.62873100000004,60.042509,0.0,0.0,0.0,0.0,0.0,2.9365759615909015,-0.99999988998,8.999999009820002,1035,0.0,8678.29999999999,0.0,0.0,149.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +984,984,1609405111.4,971.6,17.5,149.0,168.00896,0.0,0.0,0.0,0.0,0.0,0.0,384.0,45.861041,88.125138,2.976032,0.0,2730.4000000953674,1.0,0.0,52.222493,6.855874000000001,111.264017,168.31286,0.0,105.712047,68.94579,0.0,0.0,0.0,0.0,0.0,2.9760317544969035,203.99999979702,392.00000135436005,1036,0.0,8678.29999999999,0.0,0.0,149.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +985,985,1609405113.5,983.6,13.5,148.0,163.627863,0.0,0.0,0.0,0.0,0.0,0.0,137.777778,24.054566,51.706076,3.055714,0.0,2732.5,1.0,0.0,52.222416,6.855996,101.627953,169.014916,0.0,168.776134,116.336879,0.0,0.0,0.0,0.0,0.0,3.0557142948203144,107.00000157251999,230.00000138472,1036,0.0,8690.29999999999,0.0,0.0,148.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +986,986,1609405113.5,983.6,13.5,148.0,163.237809,0.0,0.0,0.0,0.0,0.0,0.0,137.777778,-0.674427,0.449618,3.063016,0.0,2732.5,1.0,0.0,52.222416,6.855996,100.473856,170.90265,0.0,167.35341200000005,117.326997,0.0,0.0,0.0,0.0,0.0,3.0630158727504115,-2.99999966994,1.99999977996,1036,0.0,8690.29999999999,0.0,0.0,148.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +987,987,1609405113.5,983.6,13.5,148.0,174.929195,0.0,0.0,0.0,0.0,0.0,0.0,137.777778,-2.472899,-0.674427,2.858299,0.0,2732.5,1.0,0.0,52.222416,6.855996,100.411547,165.39932,0.0,197.053953,92.128865,0.0,0.0,0.0,0.0,0.0,2.858299325049773,-10.99999878978,-2.99999966994,1036,0.0,8690.29999999999,0.0,0.0,148.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +988,988,1609405113.5,983.6,13.5,148.0,212.722853,0.0,0.0,0.0,0.0,0.0,0.0,675.5555559999998,48.783558,98.691162,2.350476,0.0,2732.5,1.0,0.0,52.222416,6.855996,111.176707,171.519361,0.0,103.471177,44.406937,0.0,0.0,0.0,0.0,0.0,2.3504761850857654,216.99999836676002,439.00000063164003,1036,0.0,8690.29999999999,0.0,0.0,148.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +989,989,1609405138.3,1012.8,10.5,142.0,320.508162,0.0,0.0,0.0,0.0,0.0,0.0,160.0,24.728993,46.08585,1.560023,0.0,2757.2999999523163,1.0,0.0,52.22223,6.8562970000000005,110.735483,158.750043,0.0,301.49534,134.885415,0.0,0.0,0.0,0.0,0.0,1.56002267424316,110.00000124246,204.999999687,1041,0.0,8719.49999999999,142.0,142.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +990,990,1609405141.9,1013.5,21.5,138.0,635.208711,0.0,0.0,0.0,0.0,0.0,0.0,78.139535,24.728993,46.08585,0.787143,0.0,2760.9000000953674,1.0,0.0,52.222232,6.856307000000001,115.717151,103.879317,0.0,0.0,11.240451,0.0,0.0,0.0,0.0,0.0,0.7871428576803633,110.00000124246,204.999999687,1042,0.0,8720.199999999992,0.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +991,991,1609405144.1,1013.8,20.0,137.0,1567.386978,0.0,0.0,0.0,0.0,0.0,0.0,114.0,31.922882,55.078211,0.319002,0.0,2763.0999999046326,1.0,0.0,52.222233,6.856312,116.661867,46.812531,0.0,0.0,11.240451,0.0,0.0,0.0,0.0,0.0,0.3190022674796013,142.00000217004,244.99999973442002,1043,0.0,8720.49999999999,0.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +992,992,1609405147.3,1014.5,21.5,136.0,2583.782517,0.0,0.0,0.0,0.0,0.0,0.0,106.046512,31.922882,55.078211,0.193515,0.0,2766.2999999523163,1.0,0.0,52.222242,6.856317999999999,121.988216,-6.039645,0.0,0.0,11.240451,0.0,0.0,0.0,0.0,0.0,0.1935147392283404,142.00000217004,244.99999973442002,1044,0.0,8721.199999999992,0.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +993,993,1609405148.1,1015.0,42.0,135.0,1519.746364,0.0,0.0,0.0,0.0,0.0,0.0,70.0,37.992725,78.008732,0.329002,0.0,2767.0999999046326,1.0,0.0,52.222248,6.856319999999998,128.341184,-40.556417,0.0,0.0,11.240451,0.0,0.0,0.0,0.0,0.0,0.3290022676441817,168.9999991995,347.00000185704005,1044,0.0,8721.699999999992,0.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +994,994,1609405150.1,1015.9,33.0,133.0,876.809289,0.0,0.0,0.0,0.0,0.0,0.0,130.909091,36.643871,63.62095400000001,0.570249,0.0,2769.0999999046326,1.0,0.0,52.222258,6.856319999999998,155.91064,-55.970511,0.0,0.0,11.240451,0.0,0.0,0.0,0.0,0.0,0.5702494331124724,162.99999985962003,283.0000000018801,1045,0.0,8722.599999999991,0.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +995,995,1609405151.7,1017.3,35.5,133.0,641.996157,0.0,0.0,0.0,0.0,0.0,0.0,123.380282,31.698072,61.597673,0.778821,0.0,2770.7000000476837,1.0,0.0,52.222273,6.8563160000000005,162.097632,-53.697689,0.0,0.0,11.240451,0.0,0.0,0.0,0.0,0.0,0.7788208613840658,140.99999783183995,274.00000099206,1046,0.0,8723.99999999999,0.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +996,996,1609405153.3,1018.7,36.5,131.0,522.722424,0.0,0.0,0.0,0.0,0.0,0.0,85.479452,24.054566,48.109131,0.956531,0.0,2772.2999999523163,1.0,0.0,52.222287,6.856309,166.476263,-39.86004000000001,0.0,0.0,11.240451,0.0,0.0,0.0,0.0,0.0,0.9565306117420359,107.00000157251999,213.99999869682,1047,0.0,8725.39999999999,0.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +997,997,1609405154.9,1020.6,41.0,130.0,449.605448,0.0,0.0,0.0,0.0,0.0,0.0,71.707317,23.829757,47.434704,1.112086,0.0,2773.9000000953674,1.0,0.0,52.222306,6.8562970000000005,168.88734,-20.832507,0.0,0.0,11.240451,0.0,0.0,0.0,0.0,0.0,1.112086168493225,106.00000168254,210.99999902688,1048,0.0,8727.29999999999,0.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +998,998,1609405156.4,1022.2,36.0,129.0,411.142809,0.0,0.0,0.0,0.0,0.0,0.0,78.333333,20.907239,41.140052,1.216122,0.0,2775.4000000953674,1.0,0.0,52.22232,6.856286999999999,169.269914,-2.527904,0.0,0.0,11.240451,0.0,0.0,0.0,0.0,0.0,1.216122449559856,92.99999866458,183.00000210744003,1049,0.0,8728.89999999999,0.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +999,999,1609405158.1,1024.4,42.5,127.0,393.230374,0.0,0.0,0.0,0.0,0.0,0.0,66.352941,20.907239,41.140052,1.271519,0.0,2777.0999999046326,1.0,0.0,52.222336,6.856267999999999,168.271023,11.182616,0.0,0.0,11.240451,0.0,0.0,0.0,0.0,0.0,1.2715192748564228,92.99999866458,183.00000210744003,1050,0.0,8731.099999999991,0.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1000,1000,1609405159.5,1026.0,39.0,126.0,386.99147,0.0,0.0,0.0,0.0,0.0,0.0,118.461538,46.760277,70.590034,1.292018,0.0,2778.5,1.0,0.0,52.222348,6.856253999999999,148.21098999999995,18.557458,0.0,0.0,11.240451,0.0,0.0,0.0,0.0,0.0,1.29201814189858,207.99999935694,314.00000103947997,1051,0.0,8732.699999999992,0.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1001,1001,1609405159.5,1026.0,39.0,126.0,386.489518,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.674427,2.2480900000000004,1.293696,0.0,2778.5,1.0,0.0,52.222348,6.856253999999999,147.46376999999995,19.831324,0.0,0.0,11.240451,0.0,0.0,0.0,0.0,0.0,1.2936961462432208,2.99999966994,9.9999988998,1051,0.0,8732.699999999992,0.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1002,1002,1609405159.5,1026.0,39.0,126.0,386.767466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-1.798472,-0.224809,1.292766,0.0,2778.5,1.0,0.0,52.222348,6.856253999999999,148.506027,16.534708,0.0,0.0,11.240451,0.0,0.0,0.0,0.0,0.0,1.2927664396673944,-7.99999911984,-0.99999988998,1051,0.0,8732.699999999992,0.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1003,1003,1609405159.5,1026.0,39.0,126.0,388.108565,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-2.2480900000000004,1.5736629999999998,1.288299,0.0,2778.5,1.0,0.0,52.222348,6.856253999999999,151.366389,10.778322,0.0,0.0,11.240451,0.0,0.0,0.0,0.0,0.0,1.2882993190320342,-9.9999988998,6.999999229859999,1051,0.0,8732.699999999992,0.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1004,1004,1609405159.5,1026.0,39.0,126.0,383.658414,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.899236,1.303243,0.0,2778.5,1.0,0.0,52.222348,6.856253999999999,156.958341,4.6022940000000006,0.0,0.0,11.240451,0.0,0.0,0.0,0.0,0.0,1.3032426287410968,0.0,3.99999955992,1051,0.0,8732.699999999992,0.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1005,1005,1609405159.5,1026.0,39.0,126.0,384.307027,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.348854,1.301043,0.0,2778.5,1.0,0.0,52.222348,6.856253999999999,163.445961,-0.475594,0.0,0.0,11.240451,0.0,0.0,0.0,0.0,0.0,1.3010430850123382,0.0,5.99999933988,1051,0.0,8732.699999999992,0.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1006,1006,1609405159.5,1026.0,39.0,126.0,400.406762,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.224809,1.1240450000000002,1.24873,0.0,2778.5,1.0,0.0,52.222348,6.856253999999999,172.78958500000005,-3.652124,0.0,0.0,11.240451,0.0,0.0,0.0,0.0,0.0,1.2487301600565877,-0.99999988998,4.999999449900001,1051,0.0,8732.699999999992,0.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1007,1007,1609405159.5,1026.0,39.0,126.0,423.062164,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.449618,2.472899,1.181859,0.0,2778.5,1.0,0.0,52.222348,6.856253999999999,184.088111,-4.792269,0.0,0.0,11.240451,0.0,0.0,0.0,0.0,0.0,1.1818594110911798,1.99999977996,10.99999878978,1051,0.0,8732.699999999992,0.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1008,1008,1609405159.5,1026.0,39.0,126.0,418.914811,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.224809,1.348854,1.19356,0.0,2778.5,1.0,0.0,52.222348,6.856253999999999,215.081741,-4.235885,0.0,0.0,11.240451,0.0,0.0,0.0,0.0,0.0,1.193560091147028,-0.99999988998,5.99999933988,1051,0.0,8732.699999999992,0.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1009,1009,1609405226.7,1054.3,16.0,110.0,361.35101,0.0,0.0,0.0,0.0,0.0,0.0,551.25,59.349583,107.908332,1.3836959999999998,0.0,2845.7000000476837,1.0,0.0,52.222556,6.856014999999998,226.017956,-2.557278,0.0,0.0,11.240451,0.0,0.0,0.0,0.0,0.0,1.3836961463038389,264.00000209226,480.0000005690401,1069,0.0,8760.99999999999,0.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1010,1010,1609405229.9,1062.2,19.5,111.0,273.119132,0.0,0.0,0.0,0.0,0.0,0.0,520.0,61.14805500000001,113.978176,1.830703,0.0,2848.9000000953674,1.0,0.0,52.222611,6.855942999999999,236.50848900000003,90.4175,0.0,34.544359,12.150118,0.0,0.0,0.0,0.0,0.0,1.8307029476060288,272.0000012121,507.00000204672006,1070,0.0,8768.89999999999,111.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1011,1011,1609405232.9,1071.4,19.5,112.0,208.937404,0.0,0.0,0.0,0.0,0.0,0.0,473.846154,55.527829,117.350311,2.393061,0.0,2851.9000000953674,1.0,0.0,52.222675,6.855859,245.876948,160.695721,0.0,77.724464,31.93219,0.0,0.0,0.0,0.0,0.0,2.3930612251696206,246.99999951438,522.00000039642,1071,0.0,8778.099999999991,112.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1012,1012,1609405235.9,1081.0,19.5,113.0,174.046886,0.0,0.0,0.0,0.0,0.0,0.0,476.923077,54.853402,111.280467,2.872789,0.0,2854.9000000953674,1.0,0.0,52.222743,6.855771000000002,252.405102,218.083756,0.0,138.32836,55.4633,0.0,0.0,0.0,0.0,0.0,2.8727891172956688,243.99999984444005,494.99999891874,1072,0.0,8787.699999999992,113.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1013,1013,1609405238.9,1090.7,19.5,114.0,157.98410800000005,0.0,0.0,0.0,0.0,0.0,0.0,520.0,58.450346,119.148783,3.164875,0.0,2857.9000000953674,1.0,0.0,52.222811,6.855682000000002,260.096454,240.734083,0.0,171.116268,74.032579,0.0,0.0,0.0,0.0,0.0,3.164875292393333,259.99999808411997,529.99999951626,1073,0.0,8797.399999999992,114.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1014,1014,1609405242.1,1100.9,20.0,115.0,152.690257,0.0,0.0,0.0,0.0,0.0,0.0,489.0,58.000728,115.32703,3.274603,0.0,2861.0999999046326,1.0,0.0,52.222881,6.855586,267.04434,237.739544,0.0,195.667128,81.49294300000003,0.0,0.0,0.0,0.0,0.0,3.274603172617621,257.99999830416,513.0000013866,1074,0.0,8807.599999999993,115.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1015,1015,1609405245.1,1110.9,20.0,119.0,152.143463,0.0,0.0,0.0,0.0,0.0,0.0,489.0,58.000728,113.528557,3.286372,0.0,2864.0999999046326,1.0,0.0,52.222949,6.855488,271.068734,215.658463,0.0,193.740244,82.529306,0.0,0.0,0.0,0.0,0.0,3.2863718896683722,257.99999830416,504.99999781854007,1075,0.0,8817.599999999993,119.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1016,1016,1609405248.1,1121.2,20.0,123.0,151.321749,0.0,0.0,0.0,0.0,0.0,0.0,471.0,54.403784,108.35795,3.304218,0.0,2867.0999999046326,1.0,0.0,52.223019,6.855389,274.578542,185.357855,0.0,197.162793,81.512097,0.0,0.0,0.0,0.0,0.0,3.3042176904788483,242.00000006448,482.000000349,1076,0.0,8827.899999999992,123.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1017,1017,1609405250.9,1130.8,20.5,127.0,150.226873,0.0,0.0,0.0,0.0,0.0,0.0,436.097561,50.582031,102.288106,3.328299,0.0,2869.9000000953674,1.0,0.0,52.223082,6.855295,277.783074,156.378182,0.0,203.451779,83.468905,0.0,0.0,0.0,0.0,0.0,3.3282993249816233,225.00000193482003,454.99999887132003,1077,0.0,8837.499999999993,127.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1018,1018,1609405253.9,1141.0,20.0,129.0,149.82978500000004,0.0,0.0,0.0,0.0,0.0,0.0,471.0,60.47362800000001,113.978176,3.33712,0.0,2872.9000000953674,1.0,0.0,52.223151,6.855196,280.57703,133.968921,0.0,211.473694,84.955129,0.0,0.0,0.0,0.0,0.0,3.3371201860831605,269.00000154216,507.00000204672006,1078,0.0,8847.699999999993,129.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1019,1019,1609405256.9,1150.8,20.5,131.0,150.271921,0.0,0.0,0.0,0.0,0.0,0.0,441.95122,57.55111,113.078939,3.3273019999999995,0.0,2875.9000000953674,1.0,0.0,52.223216,6.8551,283.059157,121.807453,0.0,203.464668,83.385545,0.0,0.0,0.0,0.0,0.0,3.3273015788491853,255.99999852419998,502.99999803858003,1079,0.0,8857.499999999993,131.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1020,1020,1609405260.0,1160.8,19.5,133.0,151.145415,0.0,0.0,0.0,0.0,0.0,0.0,452.307692,53.279739,109.706804,3.3080730000000003,0.0,2879.0,1.0,0.0,52.223283,6.855001,285.195419,119.960939,0.0,190.909964,82.855047,0.0,0.0,0.0,0.0,0.0,3.3080725604544474,237.00000061457996,487.9999996888801,1080,0.0,8867.499999999993,133.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1021,1021,1609405262.9,1170.9,19.5,135.0,151.823953,0.0,0.0,0.0,0.0,0.0,0.0,480.0,55.752638,119.148783,3.2932879999999995,0.0,2881.9000000953674,1.0,0.0,52.223349,6.8549,289.1784370000001,125.425698,0.0,200.406488,85.913829,0.0,0.0,0.0,0.0,0.0,3.2932879833526667,247.99999940436,529.99999951626,1081,0.0,8877.599999999993,135.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1022,1022,1609405265.9,1180.9,20.0,136.0,152.23064499999995,0.0,0.0,0.0,0.0,0.0,0.0,465.0,54.628593,110.60604,3.2844900000000004,0.0,2884.9000000953674,1.0,0.0,52.223414,6.854798,292.643789,134.751807,0.0,193.366024,82.363568,0.0,0.0,0.0,0.0,0.0,3.2844897950737852,242.99999995445998,491.99999924879995,1082,0.0,8887.599999999993,136.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1023,1023,1609405268.9,1190.9,20.0,136.0,152.71881000000005,0.0,0.0,0.0,0.0,0.0,0.0,453.0,54.178975,111.055658,3.273991,0.0,2887.9000000953674,1.0,0.0,52.223478,6.854697,295.713274,145.459574,0.0,197.16724,81.43902800000002,0.0,0.0,0.0,0.0,0.0,3.273990937985962,241.0000001745,493.99999902876,1083,0.0,8897.599999999993,136.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1024,1024,1609405271.9,1200.8,20.0,137.0,153.32091,0.0,0.0,0.0,0.0,0.0,0.0,414.0,50.582031,101.164061,3.261134,0.0,2890.9000000953674,1.0,0.0,52.223542,6.854595,298.328381,155.144451,0.0,187.891455,77.974373,0.0,0.0,0.0,0.0,0.0,3.2611337879484283,225.00000193482003,449.99999942142,1084,0.0,8907.499999999993,137.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1025,1025,1609405274.9,1210.5,20.5,139.0,153.941746,0.0,0.0,0.0,0.0,0.0,0.0,409.756098,49.907603,104.985815,3.247982,0.0,2893.9000000953674,1.0,0.0,52.223605,6.854495,300.581375,161.557985,0.0,187.180276,77.632428,0.0,0.0,0.0,0.0,0.0,3.247981869713236,221.99999781666,467.0000019993,1085,0.0,8917.199999999993,139.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1026,1026,1609405277.7,1219.7,20.5,141.0,154.308028,0.0,0.0,0.0,0.0,0.0,0.0,433.170732,51.930885,100.264825,3.240272,0.0,2896.7000000476837,1.0,0.0,52.223663,6.854400999999998,302.459043,164.376454,0.0,176.57755600000004,76.873698,0.0,0.0,0.0,0.0,0.0,3.2402721133860903,231.00000127470003,445.99999986150004,1086,0.0,8926.399999999994,141.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1027,1027,1609405280.7,1229.6,20.5,144.0,153.90413999999996,0.0,0.0,0.0,0.0,0.0,0.0,439.02439,53.05493000000001,107.908332,3.248776,0.0,2899.7000000476837,1.0,0.0,52.223727,6.854301,303.969708,165.02845200000004,0.0,179.933656,73.226668,0.0,0.0,0.0,0.0,0.0,3.2487755040247785,236.00000072460003,480.0000005690401,1087,0.0,8936.299999999994,0.0,144.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1028,1028,1609405283.5,1239.0,20.5,146.0,153.09842,0.0,0.0,0.0,0.0,0.0,0.0,441.95122,52.380503,108.133141,3.265873,0.0,2902.5,1.0,0.0,52.223789,6.854205,305.117122,163.330268,0.0,172.095774,75.09279699999998,0.0,0.0,0.0,0.0,0.0,3.265873024685689,233.00000105466003,481.00000045902,1088,0.0,8945.699999999993,0.0,146.0,146.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1029,1029,1609405286.5,1249.0,20.0,147.0,150.597267,0.0,0.0,0.0,0.0,0.0,0.0,480.0,55.977447,111.954894,3.320113,0.0,2905.5,1.0,0.0,52.223854,6.854104,303.794976,158.182414,0.0,204.878253,82.861409,0.0,0.0,0.0,0.0,0.0,3.3201133723097382,248.99999929433997,497.99999858867994,1089,0.0,8955.699999999993,0.0,0.0,147.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1030,1030,1609405289.5,1259.3,20.0,148.0,146.735875,0.0,0.0,0.0,0.0,0.0,0.0,480.0,56.427065,113.978176,3.407483,0.0,2908.5,1.0,0.0,52.223921,6.8540009999999985,302.337268,159.569191,0.0,137.862078,58.342136,0.0,0.0,0.0,0.0,0.0,3.4074830030488457,250.9999990743,507.00000204672006,1090,0.0,8965.999999999993,0.0,0.0,148.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1031,1031,1609405292.5,1269.6,20.0,148.0,146.134882,0.0,0.0,0.0,0.0,0.0,0.0,447.0,55.752638,109.481995,3.421497,0.0,2911.5,1.0,0.0,52.223988,6.853897,300.725842,153.497426,0.0,222.593959,94.428513,0.0,0.0,0.0,0.0,0.0,3.421496586968196,247.99999940436,486.9999997989,1091,0.0,8976.299999999992,0.0,0.0,148.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1032,1032,1609405295.5,1279.5,19.5,148.0,152.544483,0.0,0.0,0.0,0.0,0.0,0.0,458.461538,0.899236,4.7209900000000005,3.277732,0.0,2914.5,1.0,0.0,52.224052,6.853796000000001,281.848363,147.82253400000005,0.0,196.68689,84.474568,0.0,0.0,0.0,0.0,0.0,3.2777324369049783,3.99999955992,21.000002137800003,1092,0.0,8986.199999999992,0.0,0.0,148.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1033,1033,1609405301.6,1279.5,19.5,148.0,167.611779,0.0,0.0,0.0,0.0,0.0,0.0,464.615385,55.527829,110.60604,2.983084,0.0,2920.5999999046326,1.0,0.0,52.224052,6.853796000000001,300.536914,140.776715,0.0,253.014141,61.70744300000001,0.0,0.0,0.0,0.0,0.0,2.9830839036676533,246.99999951438,491.99999924879995,1094,0.0,8986.199999999992,0.0,0.0,148.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1034,1034,1609405307.7,1308.0,33.5,151.0,190.235443,0.0,0.0,0.0,0.0,0.0,0.0,291.9402990000001,57.326301,112.179703,2.6283220000000003,0.0,2926.7000000476837,1.0,0.0,52.224237,6.8535070000000005,301.953951,161.587342,0.0,64.679631,26.005973,0.0,0.0,0.0,0.0,0.0,2.628321999912498,254.99999863422002,498.99999847865996,1098,0.0,9014.699999999992,0.0,0.0,151.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1035,1035,1609405310.7,1315.4,20.0,151.0,204.425985,0.0,0.0,0.0,0.0,0.0,0.0,516.0,60.47362800000001,115.551839,2.445873,0.0,2929.7000000476837,1.0,0.0,52.224285,6.8534320000000015,303.247322,177.964703,0.0,85.22084100000002,33.81454,0.0,0.0,0.0,0.0,0.0,2.4458730136484363,269.00000154216,514.00000127658,1099,0.0,9022.099999999991,0.0,0.0,151.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1036,1036,1609405313.7,1324.5,21.0,150.0,194.487321,0.0,0.0,0.0,0.0,0.0,0.0,477.14285700000005,57.326301,118.923974,2.570862,0.0,2932.7000000476837,1.0,0.0,52.224345,6.853339999999998,304.365093,197.291852,0.0,86.037856,36.011987,0.0,0.0,0.0,0.0,0.0,2.57086167586215,254.99999863422002,528.99999962628,1100,0.0,9031.199999999992,0.0,0.0,150.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1037,1037,1609405316.5,1333.9,21.0,148.0,173.843801,0.0,0.0,0.0,0.0,0.0,0.0,502.857143,60.248819,121.396873,2.876145,0.0,2935.5,1.0,0.0,52.224406,6.853246,305.367379,202.155269,0.0,121.145695,50.149299,0.0,0.0,0.0,0.0,0.0,2.8761451206419486,268.00000165218,539.99999841606,1101,0.0,9040.599999999991,0.0,0.0,148.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1038,1038,1609405319.3,1343.4,21.0,148.0,156.67744299999995,0.0,0.0,0.0,0.0,0.0,0.0,474.285714,56.20225600000001,113.978176,3.1912700000000003,0.0,2938.2999999523163,1.0,0.0,52.224467,6.853149,306.2485,194.610813,0.0,180.935409,72.273675,0.0,0.0,0.0,0.0,0.0,3.1912698498660084,249.99999918432,507.00000204672006,1102,0.0,9050.099999999991,0.0,0.0,148.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1039,1039,1609405322.1,1353.1,21.0,150.0,147.28967,0.0,0.0,0.0,0.0,0.0,0.0,480.0,56.427065,119.373592,3.394671,0.0,2941.0999999046326,1.0,0.0,52.22453,6.853051,307.060188,177.648395,0.0,207.558821,85.828727,0.0,0.0,0.0,0.0,0.0,3.3946711945243684,250.9999990743,530.9999994062399,1103,0.0,9059.799999999992,0.0,0.0,150.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1040,1040,1609405325.2,1363.2,20.0,151.0,145.183273,0.0,0.0,0.0,0.0,0.0,0.0,501.0,55.977447,116.226266,3.4439230000000003,0.0,2944.2000000476837,1.0,0.0,52.224595,6.852947,307.7747950000001,157.50479,0.0,231.192483,96.403395,0.0,0.0,0.0,0.0,0.0,3.4439229097693653,248.99999929433997,517.00000094652,1104,0.0,9069.899999999992,0.0,0.0,151.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1041,1041,1609405328.1,1373.4,20.5,152.0,146.16684899999996,0.0,0.0,0.0,0.0,0.0,0.0,494.634146,57.775919,117.57512,3.420748,0.0,2947.0999999046326,1.0,0.0,52.224661,6.852842999999999,308.396269,140.56773700000002,0.0,223.467151,91.248877,0.0,0.0,0.0,0.0,0.0,3.4207482984052016,256.99999841417997,523.0000002864,1105,0.0,9080.099999999991,0.0,0.0,152.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1042,1042,1609405330.9,1383.1,20.0,152.0,146.88640800000005,0.0,0.0,0.0,0.0,0.0,0.0,471.0,53.954166,118.474356,3.4039910000000004,0.0,2949.9000000953674,1.0,0.0,52.224722,6.8527429999999985,308.985525,129.538842,0.0,225.488297,92.886948,0.0,0.0,0.0,0.0,0.0,3.403990926103932,240.00000028452004,526.9999998463201,1106,0.0,9089.799999999992,0.0,0.0,152.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1043,1043,1609405333.9,1393.1,20.5,152.0,147.570606,0.0,0.0,0.0,0.0,0.0,0.0,468.292683,55.30302,111.280467,3.388209,0.0,2952.9000000953674,1.0,0.0,52.224787,6.852639,309.5220970000001,125.417119,0.0,222.617614,87.889162,0.0,0.0,0.0,0.0,0.0,3.3882086246904755,245.99999962439998,494.99999891874,1107,0.0,9099.799999999992,0.0,0.0,152.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1044,1044,1609405336.9,1403.1,20.0,152.0,148.249247,0.0,0.0,0.0,0.0,0.0,0.0,459.0,53.72935699999999,111.280467,3.372698,0.0,2955.9000000953674,1.0,0.0,52.22485,6.852536,310.000693,127.370317,0.0,215.155781,90.1313,0.0,0.0,0.0,0.0,0.0,3.372698412424314,239.00000039454,494.99999891874,1108,0.0,9109.799999999992,0.0,0.0,152.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1045,1045,1609405339.7,1412.6,20.5,152.0,148.655026,0.0,0.0,0.0,0.0,0.0,0.0,477.073171,53.504548,116.675884,3.363492,0.0,2958.7000000476837,1.0,0.0,52.224911,6.852436999999999,310.4431620000001,133.29521200000002,0.0,215.533254,89.55648599999998,0.0,0.0,0.0,0.0,0.0,3.363492062488355,238.00000050456,519.0000007264799,1109,0.0,9119.299999999992,0.0,0.0,152.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1046,1046,1609405342.7,1422.9,20.5,153.0,148.89996399999995,0.0,0.0,0.0,0.0,0.0,0.0,441.95122,51.930885,99.365589,3.357959,0.0,2961.7000000476837,1.0,0.0,52.224977,6.852331,310.741905,140.504113,0.0,210.069857,84.528139,0.0,0.0,0.0,0.0,0.0,3.35795917318019,231.00000127470003,442.00000030158,1110,0.0,9129.599999999991,0.0,0.0,153.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1047,1047,1609405345.5,1432.3,20.5,153.0,149.111418,0.0,0.0,0.0,0.0,0.0,0.0,459.512195,54.628593,109.93161299999998,3.353197,0.0,2964.5,1.0,0.0,52.225035,6.852232000000001,311.081546,147.138002,0.0,209.89775,85.54911700000002,0.0,0.0,0.0,0.0,0.0,3.35319727158654,242.99999995445998,488.99999957886,1110,0.0,9138.99999999999,0.0,0.0,153.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1048,1048,1609405348.5,1442.1,20.5,152.0,149.03683700000005,0.0,0.0,0.0,0.0,0.0,0.0,453.658537,51.706076,112.85413,3.354875,0.0,2967.5,1.0,0.0,52.225096,6.852127,311.406601,151.614249,0.0,210.232442,85.689313,0.0,0.0,0.0,0.0,0.0,3.354875278250839,230.00000138472,501.9999981486,1112,0.0,9148.79999999999,0.0,0.0,152.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1049,1049,1609405351.4,1451.5,20.5,152.0,148.429874,0.0,0.0,0.0,0.0,0.0,0.0,465.365854,53.05493000000001,117.350311,3.3685940000000003,0.0,2970.4000000953674,1.0,0.0,52.22515300000001,6.8520270000000005,311.743757,153.340236,0.0,214.846504,89.997851,0.0,0.0,0.0,0.0,0.0,3.3685941146861036,236.00000072460003,522.00000039642,1113,0.0,9158.19999999999,0.0,0.0,152.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1050,1050,1609405354.4,1461.8,20.0,152.0,147.396004,0.0,0.0,0.0,0.0,0.0,0.0,492.0,56.20225600000001,115.32703,3.3922220000000003,0.0,2973.4000000953674,1.0,0.0,52.225217,6.851917,312.059843,151.96283400000004,0.0,219.412582,91.850585,0.0,0.0,0.0,0.0,0.0,3.3922222206241086,249.99999918432,513.0000013866,1114,0.0,9168.499999999987,0.0,0.0,152.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1051,1051,1609405357.4,1472.0,20.5,152.0,146.205616,0.0,0.0,0.0,0.0,0.0,0.0,465.365854,56.20225600000001,110.381231,3.4198410000000004,0.0,2976.4000000953674,1.0,0.0,52.22528,6.851808,310.064116,149.99161999999995,0.0,222.947393,91.117188,0.0,0.0,0.0,0.0,0.0,3.4198412734022474,249.99999918432,490.99999935882005,1115,0.0,9178.69999999999,0.0,0.0,152.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1052,1052,1609405360.4,1482.4,19.5,152.0,145.397717,0.0,0.0,0.0,0.0,0.0,0.0,452.307692,53.279739,109.706804,3.438844,0.0,2979.4000000953674,1.0,0.0,52.225344,6.851698,307.8254330000001,146.91409299999995,0.0,226.895186,94.387479,0.0,0.0,0.0,0.0,0.0,3.4388435411265776,237.00000061457996,487.9999996888801,1116,0.0,9189.09999999999,0.0,0.0,152.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1053,1053,1609405363.4,1492.7,20.0,152.0,145.341173,0.0,0.0,0.0,0.0,0.0,0.0,435.0,52.155694,102.512915,3.440181,0.0,2982.4000000953674,1.0,0.0,52.225409,6.85159,307.3935850000001,144.458935,0.0,231.812328,96.073915,0.0,0.0,0.0,0.0,0.0,3.440181399939575,232.00000116468,455.99999876130005,1117,0.0,9199.399999999987,0.0,0.0,152.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1054,1054,1609405366.4,1503.1,20.0,153.0,145.800547,0.0,0.0,0.0,0.0,0.0,0.0,468.0,57.326301,108.807568,3.429342,0.0,2985.4000000953674,1.0,0.0,52.225475,6.851483,306.696905,142.377278,0.0,226.621563,94.278026,0.0,0.0,0.0,0.0,0.0,3.429342415292859,254.99999863422002,484.00000012896,1118,0.0,9209.799999999988,0.0,0.0,153.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1055,1055,1609405369.3,1512.9,20.0,153.0,146.29777099999995,0.0,0.0,0.0,0.0,0.0,0.0,459.0,55.078211,113.978176,3.4176870000000004,0.0,2988.2999999523163,1.0,0.0,52.225538,6.851382000000001,305.840488,141.576776,0.0,231.457385,94.093043,0.0,0.0,0.0,0.0,0.0,3.4176870678364613,244.99999973442002,507.00000204672006,1118,0.0,9219.599999999988,0.0,0.0,153.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1056,1056,1609405372.3,1522.9,21.0,153.0,146.722206,0.0,0.0,0.0,0.0,0.0,0.0,425.714286,52.380503,103.861769,3.4078,0.0,2991.2999999523163,1.0,0.0,52.225602,6.851278999999999,304.890627,142.862357,0.0,209.154458,85.995419,0.0,0.0,0.0,0.0,0.0,3.4078004525095533,233.00000105466003,461.99999810118,1120,0.0,9229.599999999988,0.0,0.0,153.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1057,1057,1609405375.2,1532.5,20.5,154.0,147.121621,0.0,0.0,0.0,0.0,0.0,0.0,465.365854,52.380503,111.505276,3.398549,0.0,2994.2000000476837,1.0,0.0,52.225663,6.851181,303.8495660000001,144.074478,0.0,222.94679,94.868727,0.0,0.0,0.0,0.0,0.0,3.398548742200169,233.00000105466003,495.99999880872,1121,0.0,9239.199999999988,0.0,0.0,154.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1058,1058,1609405378.2,1542.4,20.5,154.0,147.560731,0.0,0.0,0.0,0.0,0.0,0.0,474.146341,60.02401,113.528557,3.388435,0.0,2997.2000000476837,1.0,0.0,52.225727,6.851077,302.7257600000001,146.263077,0.0,216.053827,94.62891,0.0,0.0,0.0,0.0,0.0,3.3884353690278206,267.0000017622,504.99999781854007,1122,0.0,9249.099999999988,0.0,0.0,154.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1059,1059,1609405381.2,1552.7,19.5,154.0,147.95281599999996,0.0,0.0,0.0,0.0,0.0,0.0,470.76923099999993,54.853402,111.280467,3.379456,0.0,3000.2000000476837,1.0,0.0,52.225793,6.8509720000000005,301.413659,146.9009,0.0,217.009374,93.886415,0.0,0.0,0.0,0.0,0.0,3.3794557854174267,243.99999984444005,494.99999891874,1123,0.0,9259.399999999987,0.0,0.0,154.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1060,1060,1609405384.2,1562.9,19.5,154.0,148.02731,0.0,0.0,0.0,0.0,0.0,0.0,473.846154,56.651874,110.60604,3.3777550000000005,0.0,3003.2000000476837,1.0,0.0,52.225857,6.850867,300.000285,148.193378,0.0,212.40184700000003,91.057499,0.0,0.0,0.0,0.0,0.0,3.3777550912733605,251.99999896427997,491.99999924879995,1123,0.0,9269.599999999988,0.0,0.0,154.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1061,1061,1609405387.2,1573.0,20.0,154.0,147.83973,0.0,0.0,0.0,0.0,0.0,0.0,450.0,52.830121,113.978176,3.3820410000000005,0.0,3006.2000000476837,1.0,0.0,52.225922,6.850762,298.395072,148.917273,0.0,211.589229,90.954001,0.0,0.0,0.0,0.0,0.0,3.3820408086513685,235.00000083462,507.00000204672006,1124,0.0,9279.699999999988,0.0,0.0,154.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1062,1062,1609405390.2,1583.2,19.5,154.0,147.943882,0.0,0.0,0.0,0.0,0.0,0.0,449.23076900000007,53.954166,110.381231,3.37966,0.0,3009.2000000476837,1.0,0.0,52.225986,6.850657000000001,296.707001,149.041891,0.0,210.37144,93.905297,0.0,0.0,0.0,0.0,0.0,3.379659863190557,240.00000028452004,490.99999935882005,1125,0.0,9289.899999999987,0.0,0.0,154.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1063,1063,1609405393.4,1594.3,19.0,153.0,148.691114,0.0,0.0,0.0,0.0,0.0,0.0,429.473684,52.155694,110.830849,3.362676,0.0,3012.4000000953674,1.0,0.0,52.226058,6.850542,294.788806,148.291176,0.0,222.41709100000003,94.355843,0.0,0.0,0.0,0.0,0.0,3.3626757278851245,232.00000116468,492.99999913877997,1126,0.0,9300.999999999987,0.0,0.0,153.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1064,1064,1609405396.6,1604.7,19.0,153.0,149.872557,0.0,0.0,0.0,0.0,0.0,0.0,432.631579,51.481267,108.133141,3.336168,0.0,3015.5999999046326,1.0,0.0,52.226124,6.850436,292.703554,148.86041699999996,0.0,204.716549,87.334939,0.0,0.0,0.0,0.0,0.0,3.3361678082265587,229.00000149474,481.00000045902,1127,0.0,9311.399999999987,0.0,0.0,153.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1065,1065,1609405399.6,1614.5,20.0,153.0,150.728006,0.0,0.0,0.0,0.0,0.0,0.0,468.0,59.349583,113.753367,3.317234,0.0,3018.5999999046326,1.0,0.0,52.226189,6.850336,290.348694,149.16618,0.0,200.741242,85.24701400000002,0.0,0.0,0.0,0.0,0.0,3.3172335604307013,264.00000209226,506.00000215674004,1128,0.0,9321.199999999988,0.0,0.0,153.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1066,1066,1609405402.6,1624.7,19.5,153.0,150.593153,0.0,0.0,0.0,0.0,0.0,0.0,470.76923099999993,57.55111,113.978176,3.320204,0.0,3021.5999999046326,1.0,0.0,52.226255,6.8502350000000005,287.688557,149.41388,0.0,207.97686,89.564038,0.0,0.0,0.0,0.0,0.0,3.3202040732887768,255.99999852419998,507.00000204672006,1129,0.0,9331.399999999987,0.0,0.0,153.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1067,1067,1609405405.8,1635.4,19.0,154.0,149.788055,0.0,0.0,0.0,0.0,0.0,0.0,461.052632,55.977447,112.85413,3.33805,0.0,3024.7999999523163,1.0,0.0,52.226326,6.8501270000000005,284.762435,149.601609,0.0,203.654051,90.155793,0.0,0.0,0.0,0.0,0.0,3.338049886554705,248.99999929433997,501.9999981486,1130,0.0,9342.09999999999,0.0,0.0,154.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1068,1068,1609405408.8,1645.7,19.5,154.0,149.177999,0.0,0.0,0.0,0.0,0.0,0.0,443.076923,55.30302,111.280467,3.3517010000000003,0.0,3027.7999999523163,1.0,0.0,52.226393,6.850024,281.5087240000001,148.491105,0.0,212.439327,92.831236,0.0,0.0,0.0,0.0,0.0,3.3517006753790817,245.99999962439998,494.99999891874,1131,0.0,9352.399999999987,0.0,0.0,154.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1069,1069,1609405412.0,1656.4,19.0,154.0,149.65183000000005,0.0,0.0,0.0,0.0,0.0,0.0,445.263158,51.256458,117.125502,3.341088,0.0,3031.0,1.0,0.0,52.226463,6.849918,277.894552,147.48686899999996,0.0,214.677971,92.266925,0.0,0.0,0.0,0.0,0.0,3.3410884450928533,228.00000160476003,521.0000005064401,1132,0.0,9363.09999999999,0.0,0.0,154.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1070,1070,1609405415.0,1666.4,19.5,154.0,149.709746,0.0,0.0,0.0,0.0,0.0,0.0,418.461538,50.80684,99.365589,3.339796,0.0,3034.0,1.0,0.0,52.22653,6.849817999999999,273.82959700000004,146.545329,0.0,213.533238,88.946791,0.0,0.0,0.0,0.0,0.0,3.3397959275142983,226.0000018248,442.00000030158,1133,0.0,9373.09999999999,0.0,0.0,154.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1071,1071,1609405418.0,1676.1,20.0,155.0,150.21766200000005,0.0,0.0,0.0,0.0,0.0,0.0,408.0,51.930885,105.885051,3.328503,0.0,3037.0,1.0,0.0,52.226594,6.8497210000000015,252.155017,146.442924,0.0,206.647151,86.239447,0.0,0.0,0.0,0.0,0.0,3.328503408607171,231.00000127470003,471.00000155922,1134,0.0,9382.799999999988,0.0,0.0,155.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1072,1072,1609405418.0,1676.1,20.0,155.0,152.0438,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.899236,7.643507,3.288526,0.0,3037.0,1.0,0.0,52.226594,6.8497210000000015,250.634898,140.062578,0.0,198.241537,82.71900699999998,0.0,0.0,0.0,0.0,0.0,3.2885260694615632,3.99999955992,34.00000070754,1134,0.0,9382.799999999988,0.0,0.0,155.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1073,1073,1609405418.0,1676.1,20.0,155.0,156.25221399999995,0.0,0.0,0.0,0.0,0.0,0.0,3.0,-0.224809,7.418698,3.199955,0.0,3037.0,1.0,0.0,52.226594,6.8497210000000015,252.053468,154.427953,0.0,180.441083,74.919325,0.0,0.0,0.0,0.0,0.0,3.19995465792248,-0.99999988998,33.00000081755999,1134,0.0,9382.799999999988,0.0,0.0,155.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1074,1074,1609405418.0,1676.1,20.0,155.0,162.945884,0.0,0.0,0.0,0.0,0.0,0.0,426.0,48.783558,107.233905,3.068503,0.0,3037.0,1.0,0.0,52.226594,6.8497210000000015,273.616554,166.40472,0.0,111.828325,51.238478,0.0,0.0,0.0,0.0,0.0,3.0685034057073817,216.99999836676002,477.00000089910003,1134,0.0,9382.799999999988,0.0,0.0,155.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1075,1075,1609405429.2,1706.5,33.5,156.0,170.766085,0.0,0.0,0.0,0.0,0.0,0.0,204.179104,46.985086,100.714443,2.927982,0.0,3048.2000000476837,1.0,0.0,52.226793,6.849417999999999,277.494957,186.245619,0.0,79.45532299999998,36.11404,0.0,0.0,0.0,0.0,0.0,2.927981864783045,208.99999924692003,447.99999964145997,1141,0.0,9413.199999999988,0.0,0.0,156.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1076,1076,1609405432.6,1716.8,17.5,156.0,172.62571100000005,0.0,0.0,0.0,0.0,0.0,0.0,438.857143,51.481267,108.133141,2.89644,0.0,3051.5999999046326,1.0,0.0,52.226861,6.849315,280.95678,192.684581,0.0,133.065174,62.460071,0.0,0.0,0.0,0.0,0.0,2.896439916763036,229.00000149474,481.00000045902,1142,0.0,9423.499999999987,0.0,0.0,156.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1077,1077,1609405436.0,1727.2,18.0,156.0,169.439428,0.0,0.0,0.0,0.0,0.0,0.0,440.0,52.155694,100.264825,2.950907,0.0,3055.0,1.0,0.0,52.22693,6.84921,283.9752890000001,192.564353,0.0,145.69950500000004,66.046944,0.0,0.0,0.0,0.0,0.0,2.950907034459536,232.00000116468,445.99999986150004,1143,0.0,9433.899999999987,0.0,0.0,156.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1078,1078,1609405439.2,1737.5,18.5,154.0,163.568387,0.0,0.0,0.0,0.0,0.0,0.0,424.864865,49.907603,93.295745,3.056825,0.0,3058.2000000476837,1.0,0.0,52.226996,6.849106,286.667408,185.694523,0.0,154.230178,68.997782,0.0,0.0,0.0,0.0,0.0,3.056825399886104,221.99999781666,414.9999988239,1144,0.0,9444.199999999986,0.0,0.0,154.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1079,1079,1609405442.2,1747.1,20.0,152.0,158.23238999999995,0.0,0.0,0.0,0.0,0.0,0.0,441.0,49.682794,107.458714,3.159909,0.0,3061.2000000476837,1.0,0.0,52.227058,6.849008,289.015382,174.14279399999995,0.0,167.71233600000005,74.64384100000002,0.0,0.0,0.0,0.0,0.0,3.1599092954356567,220.99999792667998,478.00000078908,1145,0.0,9453.799999999988,0.0,0.0,152.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1080,1080,1609405445.3,1757.6,19.0,152.0,155.066563,0.0,0.0,0.0,0.0,0.0,0.0,416.842105,48.558749,100.714443,3.224422,0.0,3064.2999999523163,1.0,0.0,52.227126,6.848901,291.0571490000001,162.060278,0.0,183.79957,80.977547,0.0,0.0,0.0,0.0,0.0,3.224421760092793,215.99999847678,447.99999964145997,1146,0.0,9464.299999999988,0.0,0.0,152.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1081,1081,1609405448.6,1767.9,19.0,152.0,154.349074,0.0,0.0,0.0,0.0,0.0,0.0,454.736842,53.05493000000001,112.404512,3.23941,0.0,3067.5999999046326,1.0,0.0,52.227192,6.848795,292.731399,151.747772,0.0,183.806455,82.427942,0.0,0.0,0.0,0.0,0.0,3.239410428856865,236.00000072460003,499.99999836864,1147,0.0,9474.599999999988,0.0,0.0,152.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1082,1082,1609405451.6,1777.8,19.5,152.0,153.912734,0.0,0.0,0.0,0.0,0.0,0.0,415.384615,49.008367,100.489634,3.248594,0.0,3070.5999999046326,1.0,0.0,52.227255,6.848692,294.186188,144.818668,0.0,189.716392,82.424592,0.0,0.0,0.0,0.0,0.0,3.2485941026815883,217.99999825673999,446.99999975147995,1148,0.0,9484.499999999987,0.0,0.0,152.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1083,1083,1609405454.8,1788.2,19.0,152.0,154.014864,0.0,0.0,0.0,0.0,0.0,0.0,394.736842,47.209895,95.768645,3.24644,0.0,3073.7999999523163,1.0,0.0,52.227321,6.848585000000001,295.333765,142.540369,0.0,181.670822,83.10815699999998,0.0,0.0,0.0,0.0,0.0,3.2464399020603625,209.9999991369,426.00000206190003,1149,0.0,9494.899999999987,0.0,0.0,152.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1084,1084,1609405458.0,1798.5,19.0,152.0,154.379332,0.0,0.0,0.0,0.0,0.0,0.0,448.421053,52.380503,116.001457,3.238776,0.0,3077.0,1.0,0.0,52.227387,6.848478999999998,296.181128,142.614005,0.0,193.025821,86.409323,0.0,0.0,0.0,0.0,0.0,3.2387755117375425,233.00000105466003,516.0000010565401,1150,0.0,9505.199999999986,0.0,0.0,152.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1085,1085,1609405461.0,1808.4,19.0,151.0,154.855293,0.0,0.0,0.0,0.0,0.0,0.0,445.263158,51.481267,105.435433,3.228821,0.0,3080.0,1.0,0.0,52.22745,6.848375999999999,296.723456,147.74291100000005,0.0,166.15287,83.70477199999998,0.0,0.0,0.0,0.0,0.0,3.2288208579347693,229.00000149474,469.00000177925995,1151,0.0,9515.099999999986,0.0,0.0,151.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1086,1086,1609405464.2,1818.7,18.5,151.0,155.17023,0.0,0.0,0.0,0.0,0.0,0.0,444.3243240000001,57.10149200000001,101.838488,3.222268,0.0,3083.2000000476837,1.0,0.0,52.227514,6.848267,297.134515,153.081493,0.0,174.908207,85.001111,0.0,0.0,0.0,0.0,0.0,3.222267570267828,253.99999874424003,452.99999909135994,1152,0.0,9525.399999999983,0.0,0.0,151.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1087,1087,1609405467.4,1829.2,19.0,150.0,155.591778,0.0,0.0,0.0,0.0,0.0,0.0,423.157895,50.582031,94.194981,3.213537,0.0,3086.4000000953674,1.0,0.0,52.22758,6.848158,297.190927,156.652208,0.0,189.812312,86.420009,0.0,0.0,0.0,0.0,0.0,3.2135374145541284,225.00000193482003,418.99999838382,1153,0.0,9535.899999999983,0.0,0.0,150.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1088,1088,1609405470.6,1839.5,19.0,148.0,156.192446,0.0,0.0,0.0,0.0,0.0,0.0,413.684211,47.434704,99.14078,3.201179,0.0,3089.5999999046326,1.0,0.0,52.227644,6.8480490000000005,297.025734,160.697261,0.0,170.235352,78.728449,0.0,0.0,0.0,0.0,0.0,3.2011791402511234,210.99999902688,441.0000004116,1154,0.0,9546.199999999984,0.0,0.0,148.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1089,1089,1609405473.8,1849.8,19.0,148.0,156.747611,0.0,0.0,0.0,0.0,0.0,0.0,445.263158,53.72935699999999,104.311387,3.189841,0.0,3092.7999999523163,1.0,0.0,52.227709,6.84794,296.57655,163.449827,0.0,174.04318500000005,77.631328,0.0,0.0,0.0,0.0,0.0,3.1898412793034527,239.00000039454,463.9999978811401,1155,0.0,9556.499999999984,0.0,0.0,148.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1090,1090,1609405476.8,1859.6,19.0,148.0,157.17218400000004,0.0,0.0,0.0,0.0,0.0,0.0,429.473684,51.031649,104.311387,3.1812240000000003,0.0,3095.7999999523163,1.0,0.0,52.227769,6.847835000000001,295.902508,164.211704,0.0,176.90663700000005,80.58799,0.0,0.0,0.0,0.0,0.0,3.181224484352778,227.00000171477996,463.9999978811401,1156,0.0,9566.299999999985,0.0,0.0,148.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1091,1091,1609405480.2,1870.0,18.0,147.0,157.28429599999996,0.0,0.0,0.0,0.0,0.0,0.0,453.333333,54.403784,103.187342,3.178957,0.0,3099.2000000476837,1.0,0.0,52.227832,6.8477229999999984,294.903432,161.60218500000005,0.0,194.031553,85.26187900000002,0.0,0.0,0.0,0.0,0.0,3.1789569125197352,242.00000006448,458.99999843124,1157,0.0,9576.699999999984,0.0,0.0,147.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1092,1092,1609405483.3,1880.1,18.5,147.0,157.02555800000005,0.0,0.0,0.0,0.0,0.0,0.0,405.405405,46.985086,100.040016,3.184195,0.0,3102.2999999523163,1.0,0.0,52.227892,6.847611,295.825805,160.357766,0.0,176.960303,81.08891899999998,0.0,0.0,0.0,0.0,0.0,3.1841950212971057,208.99999924692003,444.99999997152,1158,0.0,9586.799999999985,0.0,0.0,147.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1093,1093,1609405486.6,1890.9,18.5,147.0,156.745383,0.0,0.0,0.0,0.0,0.0,0.0,444.3243240000001,53.05493000000001,106.334669,3.189887,0.0,3105.5999999046326,1.0,0.0,52.227956,6.847492999999999,296.210489,158.003391,0.0,179.563153,76.021893,0.0,0.0,0.0,0.0,0.0,3.189886620137321,236.00000072460003,473.00000133918,1159,0.0,9597.599999999984,0.0,0.0,147.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1094,1094,1609405489.8,1901.3,18.5,147.0,156.882555,0.0,0.0,0.0,0.0,0.0,0.0,424.864865,49.907603,102.962533,3.187098,0.0,3108.7999999523163,1.0,0.0,52.228017,6.847377000000002,296.035048,157.495256,0.0,170.499606,86.922865,0.0,0.0,0.0,0.0,0.0,3.1870975074315937,221.99999781666,457.99999854125997,1160,0.0,9607.999999999984,0.0,0.0,147.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1095,1095,1609405493.0,1911.4,19.0,147.0,157.638497,0.0,0.0,0.0,0.0,0.0,0.0,445.263158,56.651874,108.133141,3.171814,0.0,3112.0,1.0,0.0,52.228073,6.8472610000000005,293.264387,156.751184,0.0,176.24066399999995,81.810439,0.0,0.0,0.0,0.0,0.0,3.1718140525026697,251.99999896427997,481.00000045902,1161,0.0,9618.099999999984,0.0,0.0,147.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1096,1096,1609405496.2,1921.5,18.5,148.0,159.002574,0.0,0.0,0.0,0.0,0.0,0.0,441.081081,51.031649,110.156422,3.144603,0.0,3115.2000000476837,1.0,0.0,52.228124,6.847139,290.335693,156.63006299999995,0.0,178.096634,79.941537,0.0,0.0,0.0,0.0,0.0,3.144603181078062,227.00000171477996,489.99999946884003,1162,0.0,9628.199999999984,0.0,0.0,148.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1097,1097,1609405499.6,1931.8,18.5,147.0,160.81743400000005,0.0,0.0,0.0,0.0,0.0,0.0,411.891892,47.209895,100.714443,3.109116,0.0,3118.5999999046326,1.0,0.0,52.228173,6.847010000000001,287.253809,157.388405,0.0,161.113319,73.374049,0.0,0.0,0.0,0.0,0.0,3.1091156447627437,209.9999991369,447.99999964145997,1163,0.0,9638.499999999984,0.0,0.0,147.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1098,1098,1609405502.8,1941.9,18.5,147.0,162.81233400000005,0.0,0.0,0.0,0.0,0.0,0.0,450.81081100000006,51.256458,103.861769,3.07102,0.0,3121.7999999523163,1.0,0.0,52.228218,6.846882000000001,283.812256,159.973728,0.0,154.604081,70.79660600000003,0.0,0.0,0.0,0.0,0.0,3.0710204056161983,228.00000160476003,461.99999810118,1164,0.0,9648.599999999984,0.0,0.0,147.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1099,1099,1609405506.0,1951.5,18.5,147.0,164.879537,0.0,0.0,0.0,0.0,0.0,0.0,454.054054,50.80684,110.381231,3.032517,0.0,3125.0,1.0,0.0,52.228254,6.846754,280.210825,164.244358,0.0,149.474207,66.570803,0.0,0.0,0.0,0.0,0.0,3.0325170066434626,226.0000018248,490.99999935882005,1165,0.0,9658.199999999984,0.0,0.0,147.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1100,1100,1609405509.0,1960.5,19.5,147.0,167.274824,0.0,0.0,0.0,0.0,0.0,0.0,424.615385,52.605312,101.38887,2.989093,0.0,3128.0,1.0,0.0,52.228281,6.84663,276.509593,168.273203,0.0,146.68711399999995,69.42647099999999,0.0,0.0,0.0,0.0,0.0,2.9890929671520685,234.00000094464,450.9999993114,1166,0.0,9667.199999999984,0.0,0.0,147.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1101,1101,1609405512.2,1969.7,19.5,147.0,170.041797,0.0,0.0,0.0,0.0,0.0,0.0,433.846154,53.279739,106.10986,2.940454,0.0,3131.2000000476837,1.0,0.0,52.228304,6.8464990000000014,272.559928,172.839545,0.0,130.976078,59.69214300000001,0.0,0.0,0.0,0.0,0.0,2.9404535168491543,237.00000061457996,472.00000144920006,1167,0.0,9676.399999999983,0.0,0.0,147.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1102,1102,1609405515.2,1978.5,18.5,148.0,172.869317,0.0,0.0,0.0,0.0,0.0,0.0,441.081081,52.830121,107.458714,2.892358,0.0,3134.2000000476837,1.0,0.0,52.228316,6.846372,268.573105,175.488652,0.0,132.393867,57.93685,0.0,0.0,0.0,0.0,0.0,2.8923582777850623,235.00000083462,478.00000078908,1168,0.0,9685.199999999984,0.0,0.0,148.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1103,1103,1609405518.6,1988.3,18.5,148.0,175.28100600000005,0.0,0.0,0.0,0.0,0.0,0.0,447.567568,51.481267,109.93161299999998,2.852562,0.0,3137.5999999046326,1.0,0.0,52.228322,6.846228999999999,264.39189500000003,178.307766,0.0,125.828815,55.105051,0.0,0.0,0.0,0.0,0.0,2.852562359209645,229.00000149474,488.99999957886,1169,0.0,9694.999999999984,0.0,0.0,148.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1104,1104,1609405521.6,1996.8,19.0,148.0,176.675614,0.0,0.0,0.0,0.0,0.0,0.0,467.368421,57.10149200000001,113.978176,2.830045,0.0,3140.5999999046326,1.0,0.0,52.228318,6.846104,260.197779,180.083024,0.0,122.987434,53.555147,0.0,0.0,0.0,0.0,0.0,2.830045350797536,253.99999874424003,507.00000204672006,1170,0.0,9703.499999999984,0.0,0.0,148.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1105,1105,1609405524.8,2006.0,19.0,147.0,176.780431,0.0,0.0,0.0,0.0,0.0,0.0,420.0,50.582031,108.582759,2.828367,0.0,3143.7999999523163,1.0,0.0,52.228304,6.84597,256.08983,180.601718,0.0,120.216479,53.450426,0.0,0.0,0.0,0.0,0.0,2.8283673547554598,225.00000193482003,483.0000002389801,1171,0.0,9712.699999999984,0.0,0.0,147.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1106,1106,1609405528.2,2015.1,18.5,145.0,175.89483,0.0,0.0,0.0,0.0,0.0,0.0,431.351351,50.132413,100.939252,2.842608,0.0,3147.2000000476837,1.0,0.0,52.228285,6.845842,252.03443700000003,179.322773,0.0,126.784036,55.140133,0.0,0.0,0.0,0.0,0.0,2.842607710527933,223.00000215486,448.99999953144004,1172,0.0,9721.799999999985,0.0,145.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1107,1107,1609405531.2,2023.7,18.5,145.0,174.479332,0.0,0.0,0.0,0.0,0.0,0.0,457.297297,53.954166,109.93161299999998,2.865669,0.0,3150.2000000476837,1.0,0.0,52.228262,6.845721000000001,247.697935,177.54605,0.0,127.642461,56.396905,0.0,0.0,0.0,0.0,0.0,2.865668926334496,240.00000028452004,488.99999957886,1173,0.0,9730.399999999983,0.0,145.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1108,1108,1609405534.3,2032.9,19.0,144.0,173.37086399999995,0.0,0.0,0.0,0.0,0.0,0.0,375.789474,45.411423,95.543836,2.883991,0.0,3153.2999999523163,1.0,0.0,52.228228,6.845598,243.585624,174.127597,0.0,129.604923,56.921777,0.0,0.0,0.0,0.0,0.0,2.883990934024532,202.00000001706002,425.00000217192,1174,0.0,9739.599999999986,0.0,144.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1109,1109,1609405537.4,2042.0,19.0,143.0,173.488174,0.0,0.0,0.0,0.0,0.0,0.0,476.842105,57.10149200000001,113.753367,2.882041,0.0,3156.4000000953674,1.0,0.0,52.22819000000001,6.84548,239.358974,171.850909,0.0,134.29628,56.800075,0.0,0.0,0.0,0.0,0.0,2.882040824292727,253.99999874424003,506.00000215674004,1175,0.0,9748.699999999986,0.0,143.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1110,1110,1609405540.8,2051.3,19.0,142.0,174.947238,0.0,0.0,0.0,0.0,0.0,0.0,378.947368,49.008367,98.691162,2.858005,0.0,3159.7999999523163,1.0,0.0,52.228144,6.845366,235.170813,171.528021,0.0,122.961882,53.543224,0.0,0.0,0.0,0.0,0.0,2.8580045373451397,217.99999825673999,439.00000063164003,1176,0.0,9757.999999999984,142.0,142.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1111,1111,1609405543.6,2059.1,20.0,141.0,177.292134,0.0,0.0,0.0,0.0,0.0,0.0,429.0,51.930885,99.14078,2.820204,0.0,3162.5999999046326,1.0,0.0,52.2281,6.845275999999999,230.882706,172.979636,0.0,117.865639,51.105529,0.0,0.0,0.0,0.0,0.0,2.8202040819250334,231.00000127470003,441.0000004116,1177,0.0,9765.799999999985,141.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1112,1112,1609405546.8,2067.8,19.0,140.0,179.740294,0.0,0.0,0.0,0.0,0.0,0.0,473.68421100000006,58.899964,105.210624,2.781791,0.0,3165.7999999523163,1.0,0.0,52.228045,6.845186,226.733928,176.335196,0.0,114.994515,50.543719,0.0,0.0,0.0,0.0,0.0,2.7817913772857197,261.99999786407994,468.00000188928,1178,0.0,9774.499999999984,140.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1113,1113,1609405550.0,2076.7,19.0,140.0,181.342676,0.0,0.0,0.0,0.0,0.0,0.0,426.315789,52.605312,101.164061,2.757211,0.0,3169.0,1.0,0.0,52.227983,6.845103999999999,222.722035,180.546914,0.0,109.43846200000002,52.061642,0.0,0.0,0.0,0.0,0.0,2.7572108839951164,234.00000094464,449.99999942142,1179,0.0,9783.399999999983,140.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1114,1114,1609405553.2,2085.5,18.0,140.0,181.765724,0.0,0.0,0.0,0.0,0.0,0.0,420.0,50.357222,100.040016,2.750794,0.0,3172.2000000476837,1.0,0.0,52.227918,6.845031,218.825734,184.650585,0.0,107.346858,52.706285,0.0,0.0,0.0,0.0,0.0,2.750793653483316,224.00000204484002,444.99999997152,1180,0.0,9792.199999999986,140.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1115,1115,1609405556.4,2094.1,19.0,140.0,181.065701,0.0,0.0,0.0,0.0,0.0,0.0,438.947368,53.279739,100.040016,2.761429,0.0,3175.4000000953674,1.0,0.0,52.22785,6.84497,215.054768,184.751275,0.0,122.4966,54.255309,0.0,0.0,0.0,0.0,0.0,2.7614285711682083,237.00000061457996,444.99999997152,1181,0.0,9800.799999999988,140.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1116,1116,1609405559.6,2103.1,18.5,139.0,179.462345,0.0,0.0,0.0,0.0,0.0,0.0,408.648649,47.209895,95.543836,2.7861,0.0,3178.5999999046326,1.0,0.0,52.227776,6.844917,211.532821,183.771649,0.0,121.345585,52.382895,0.0,0.0,0.0,0.0,0.0,2.7860997804302623,209.9999991369,425.00000217192,1182,0.0,9809.799999999988,139.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1117,1117,1609405563.0,2113.2,18.0,139.0,177.437655,0.0,0.0,0.0,0.0,0.0,0.0,396.666667,47.434704,98.691162,2.817891,0.0,3182.0,1.0,0.0,52.227691,6.844867,208.302792,181.620311,0.0,125.427392,56.789513,0.0,0.0,0.0,0.0,0.0,2.8178911629552363,210.99999902688,439.00000063164003,1183,0.0,9819.899999999987,139.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1118,1118,1609405566.4,2123.1,18.0,139.0,175.637033,0.0,0.0,0.0,0.0,0.0,0.0,403.333333,47.659513,93.970172,2.84678,0.0,3185.4000000953674,1.0,0.0,52.227606,6.844823,205.197526,178.414113,0.0,134.416204,59.105266,0.0,0.0,0.0,0.0,0.0,2.8467800409723387,211.99999891686002,417.99999849384005,1184,0.0,9829.799999999988,139.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1119,1119,1609405569.6,2132.5,17.5,140.0,174.50556799999995,0.0,0.0,0.0,0.0,0.0,0.0,380.571429,46.985086,87.225902,2.865238,0.0,3188.5999999046326,1.0,0.0,52.227525,6.844785000000001,202.282095,175.180396,0.0,129.647997,61.712975,0.0,0.0,0.0,0.0,0.0,2.865238087990408,208.99999924692003,388.00000179444,1185,0.0,9839.199999999986,140.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1120,1120,1609405573.2,2142.8,18.0,139.0,174.149982,0.0,0.0,0.0,0.0,0.0,0.0,376.666667,47.209895,92.1717,2.8710880000000003,0.0,3192.2000000476837,1.0,0.0,52.227435,6.8447460000000016,199.552573,172.66401499999995,0.0,133.61703500000002,60.725797,0.0,0.0,0.0,0.0,0.0,2.8710884391592986,209.9999991369,409.999999374,1186,0.0,9849.499999999984,139.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1121,1121,1609405576.4,2152.6,17.0,139.0,174.317946,0.0,0.0,0.0,0.0,0.0,0.0,363.529412,43.388142,93.070936,2.868322,0.0,3195.4000000953674,1.0,0.0,52.227351,6.844708,196.894293,169.992481,0.0,132.8143,62.466308,0.0,0.0,0.0,0.0,0.0,2.868322002830391,193.00000100724,413.99999893392,1186,0.0,9859.299999999985,139.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1122,1122,1609405580.0,2162.6,17.0,138.0,175.022225,0.0,0.0,0.0,0.0,0.0,0.0,405.882353,47.659513,97.791926,2.85678,0.0,3199.0,1.0,0.0,52.227263,6.844671000000001,194.386571,167.231351,0.0,139.213626,65.960107,0.0,0.0,0.0,0.0,0.0,2.8567800460770054,211.99999891686002,435.00000107172,1188,0.0,9869.299999999985,138.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1123,1123,1609405583.4,2172.2,17.5,138.0,176.008557,0.0,0.0,0.0,0.0,0.0,0.0,387.428571,45.186614,90.148419,2.840771,0.0,3202.4000000953674,1.0,0.0,52.22718,6.844637,191.918362,167.756981,0.0,134.769467,60.115716000000006,0.0,0.0,0.0,0.0,0.0,2.8407709745611966,201.00000012708,401.00000036418,1189,0.0,9878.899999999983,138.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1124,1124,1609405586.8,2181.6,17.5,138.0,176.72659099999996,0.0,0.0,0.0,0.0,0.0,0.0,411.428571,49.457985,103.187342,2.829229,0.0,3205.7999999523163,1.0,0.0,52.227098,6.844604,189.402714,168.704452,0.0,132.294448,57.662657,0.0,0.0,0.0,0.0,0.0,2.82922902077594,219.9999980367,458.99999843124,1189,0.0,9888.299999999985,138.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1125,1125,1609405590.2,2191.2,18.0,138.0,176.845651,0.0,0.0,0.0,0.0,0.0,0.0,440.0,53.504548,105.660242,2.827324,0.0,3209.2000000476837,1.0,0.0,52.227013,6.844575,186.948794,171.968618,0.0,125.496154,57.808236,0.0,0.0,0.0,0.0,0.0,2.827324263688,238.00000050456,470.00000166924,1191,0.0,9897.899999999983,138.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1126,1126,1609405593.6,2201.1,18.0,138.0,176.237861,0.0,0.0,0.0,0.0,0.0,0.0,416.666667,49.233176,101.38887,2.837075,0.0,3212.5999999046326,1.0,0.0,52.226926,6.844550999999999,184.459377,174.958917,0.0,126.218734,56.774565,0.0,0.0,0.0,0.0,0.0,2.8370748326320188,218.99999814672,450.9999993114,1192,0.0,9907.799999999985,138.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1127,1127,1609405596.8,2210.4,18.5,137.0,174.975004,0.0,0.0,0.0,0.0,0.0,0.0,460.540541,54.178975,102.737724,2.857551,0.0,3215.7999999523163,1.0,0.0,52.226843,6.844534,180.879572,177.963503,0.0,125.380147,57.000611,0.0,0.0,0.0,0.0,0.0,2.8575510134007476,241.0000001745,456.99999865128,1193,0.0,9917.099999999984,137.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1128,1128,1609405600.2,2220.0,18.5,138.0,173.671277,0.0,0.0,0.0,0.0,0.0,0.0,441.081081,52.155694,109.257186,2.879002,0.0,3219.2000000476837,1.0,0.0,52.226757,6.844525,177.298494,179.53063799999995,0.0,128.847586,58.386952,0.0,0.0,0.0,0.0,0.0,2.879002265872669,232.00000116468,485.99999990891996,1194,0.0,9926.699999999984,138.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1129,1129,1609405603.2,2229.0,18.5,138.0,172.93846399999995,0.0,0.0,0.0,0.0,0.0,0.0,496.216216,59.574392,107.009096,2.891202,0.0,3222.2000000476837,1.0,0.0,52.226676,6.844519999999998,173.43040200000004,178.670494,0.0,134.192561,59.175378,0.0,0.0,0.0,0.0,0.0,2.891201809216948,265.00000198224,476.00000100912,1194,0.0,9935.699999999984,138.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1130,1130,1609405606.3,2238.1,18.5,139.0,172.748782,0.0,0.0,0.0,0.0,0.0,0.0,476.75675700000005,55.752638,115.102221,2.894376,0.0,3225.2999999523163,1.0,0.0,52.226594,6.844528,169.452093,177.081297,0.0,132.975987,57.73658100000001,0.0,0.0,0.0,0.0,0.0,2.8943764130273286,247.99999940436,512.00000149662,1195,0.0,9944.799999999985,139.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1131,1131,1609405609.6,2247.7,19.0,139.0,172.876094,0.0,0.0,0.0,0.0,0.0,0.0,420.0,52.605312,100.939252,2.892245,0.0,3228.5999999046326,1.0,0.0,52.226509,6.844550999999999,166.57435800000005,175.83588500000005,0.0,132.075983,57.43689000000001,0.0,0.0,0.0,0.0,0.0,2.892244893038826,234.00000094464,448.99999953144004,1196,0.0,9954.399999999983,139.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1132,1132,1609405612.8,2256.9,18.0,140.0,173.010381,0.0,0.0,0.0,0.0,0.0,0.0,463.333333,55.30302,107.683523,2.89,0.0,3231.7999999523163,1.0,0.0,52.226429,6.844583,163.95376399999995,174.59256100000005,0.0,128.572697,61.986546,0.0,0.0,0.0,0.0,0.0,2.8899999936997998,245.99999962439998,479.00000067906,1197,0.0,9963.599999999986,140.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1133,1133,1609405616.2,2266.7,18.0,140.0,172.686548,0.0,0.0,0.0,0.0,0.0,0.0,420.0,49.682794,102.288106,2.89542,0.0,3235.2000000476837,1.0,0.0,52.226343,6.844618,161.220434,173.251106,0.0,132.075793,62.961359,0.0,0.0,0.0,0.0,0.0,2.8954195088780166,220.99999792667998,454.99999887132003,1198,0.0,9973.399999999983,140.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1134,1134,1609405619.6,2276.9,17.5,140.0,171.959322,0.0,0.0,0.0,0.0,0.0,0.0,387.428571,46.310659,86.10185600000001,2.907664,0.0,3238.5999999046326,1.0,0.0,52.226256,6.844662,158.576458,172.250973,0.0,135.157055,64.48264300000001,0.0,0.0,0.0,0.0,0.0,2.9076644068182587,205.99999957698003,382.99999789632005,1199,0.0,9983.599999999986,140.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1135,1135,1609405622.8,2285.9,19.0,141.0,171.403252,0.0,0.0,0.0,0.0,0.0,0.0,401.052632,48.33394000000001,101.164061,2.917098,0.0,3241.7999999523163,1.0,0.0,52.226179,6.844701,155.88059099999995,172.079035,0.0,125.659152,62.072288,0.0,0.0,0.0,0.0,0.0,2.917097512245567,214.9999985868,449.99999942142,1200,0.0,9992.599999999986,141.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1136,1136,1609405626.2,2296.0,17.0,141.0,171.303382,0.0,0.0,0.0,0.0,0.0,0.0,434.117647,51.706076,105.435433,2.918798,0.0,3245.2000000476837,1.0,0.0,52.226092,6.844747,153.0367,168.581459,0.0,143.4615,70.278252,0.0,0.0,0.0,0.0,0.0,2.918798182279904,230.00000138472,469.00000177925995,1201,0.0,10002.699999999986,141.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1137,1137,1609405629.8,2306.7,17.0,141.0,171.842731,0.0,0.0,0.0,0.0,0.0,0.0,427.058824,49.008367,102.512915,2.909637,0.0,3248.7999999523163,1.0,0.0,52.226001,6.844797,149.97083,169.242178,0.0,138.825544,60.864039,0.0,0.0,0.0,0.0,0.0,2.9096371844788713,217.99999825673999,455.99999876130005,1202,0.0,10013.399999999987,141.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1138,1138,1609405633.2,2316.1,18.0,142.0,173.018526,0.0,0.0,0.0,0.0,0.0,0.0,450.0,51.256458,105.885051,2.889864,0.0,3252.2000000476837,1.0,0.0,52.225923,6.844846,146.50881,169.713611,0.0,132.25605900000002,61.977476,0.0,0.0,0.0,0.0,0.0,2.8898639443963368,228.00000160476003,471.00000155922,1203,0.0,10022.799999999988,142.0,142.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1139,1139,1609405636.3,2325.2,18.0,141.0,174.693593,0.0,0.0,0.0,0.0,0.0,0.0,373.333333,45.861041,81.605676,2.8621540000000003,0.0,3255.2999999523163,1.0,0.0,52.225849,6.844905000000002,142.819071,171.777228,0.0,130.51771200000002,59.535184,0.0,0.0,0.0,0.0,0.0,2.862154194744853,203.99999979702,363.00000009672,1204,0.0,10031.899999999987,141.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1140,1140,1609405639.6,2334.2,18.5,141.0,176.377424,0.0,0.0,0.0,0.0,0.0,0.0,304.864865,39.11677,78.233541,2.83483,0.0,3258.5999999046326,1.0,0.0,52.22578,6.844973,139.21984799999998,175.308448,0.0,122.16673,55.532203,0.0,0.0,0.0,0.0,0.0,2.8348299269865738,173.99999864940003,348.00000174702,1205,0.0,10040.899999999987,141.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1141,1141,1609405643.0,2343.9,18.0,141.0,177.403394,0.0,0.0,0.0,0.0,0.0,0.0,330.0,42.264097,85.87704699999998,2.818435,0.0,3262.0,1.0,0.0,52.225705,6.845047,135.21193799999998,178.171495,0.0,119.30868,57.215654,0.0,0.0,0.0,0.0,0.0,2.8184353677021536,188.00000155733997,381.99999800634004,1206,0.0,10050.599999999988,141.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1142,1142,1609405646.4,2353.7,17.0,142.0,177.879961,0.0,0.0,0.0,0.0,0.0,0.0,310.588235,38.217534,69.24118,2.810884,0.0,3265.4000000953674,1.0,0.0,52.225629,6.845119,130.60748700000002,179.95456299999995,0.0,122.744444,55.818284,0.0,0.0,0.0,0.0,0.0,2.81088435813183,169.99999908948,308.0000016996,1207,0.0,10060.399999999987,142.0,142.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1143,1143,1609405649.8,2363.0,17.5,142.0,178.506375,0.0,0.0,0.0,0.0,0.0,0.0,360.0,42.713715,91.722082,2.8010200000000003,0.0,3268.7999999523163,1.0,0.0,52.225556,6.845185000000002,124.96159,180.446814,0.0,121.917056,54.630039,0.0,0.0,0.0,0.0,0.0,2.801020411735996,190.0000013373,407.99999959404,1208,0.0,10069.699999999986,142.0,142.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1144,1144,1609405653.4,2373.1,17.0,143.0,179.82238,0.0,0.0,0.0,0.0,0.0,0.0,285.882353,35.519826,66.543471,2.780522,0.0,3272.4000000953674,1.0,0.0,52.225476,6.845255,117.821731,180.298317,0.0,120.069337,56.63329399999999,0.0,0.0,0.0,0.0,0.0,2.780521534638792,158.00000040972,295.99999857162004,1209,0.0,10079.799999999988,0.0,143.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1145,1145,1609405656.8,2382.2,17.5,143.0,182.285639,0.0,0.0,0.0,0.0,0.0,0.0,308.571429,38.891961,78.90796800000003,2.742948,0.0,3275.7999999523163,1.0,0.0,52.225405,6.84532,108.48748700000002,181.098645,0.0,113.691875,53.72964200000001,0.0,0.0,0.0,0.0,0.0,2.742947841327204,172.99999875942,351.00000141696006,1210,0.0,10088.899999999987,0.0,143.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1146,1146,1609405660.2,2390.8,17.5,142.0,185.034447,0.0,0.0,0.0,0.0,0.0,0.0,243.428571,33.496545000000005,58.225537,2.7022,0.0,3279.2000000476837,1.0,0.0,52.225338,6.845385,95.928418,181.485942,0.0,110.613902,51.069517,0.0,0.0,0.0,0.0,0.0,2.702199553145907,149.0000013999,258.99999819413995,1211,0.0,10097.499999999987,142.0,142.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1147,1147,1609405663.4,2399.6,18.5,142.0,186.854906,0.0,0.0,0.0,0.0,0.0,0.0,230.27027,-0.224809,4.496180000000002,2.675873,0.0,3282.4000000953674,1.0,0.0,52.22527,6.84545,69.21407099999999,183.388373,0.0,104.181169,49.138006,0.0,0.0,0.0,0.0,0.0,2.675873011329978,-0.99999988998,19.999997799600003,1212,0.0,10106.299999999988,142.0,142.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1148,1148,1609405663.4,2399.6,18.5,142.0,187.626041,0.0,0.0,0.0,0.0,0.0,0.0,123.243243,18.659149,40.465624,2.664875,0.0,3282.4000000953674,1.0,0.0,52.22527,6.84545,61.402605,187.476835,0.0,98.002005,44.548458,0.0,0.0,0.0,0.0,0.0,2.6648752877539,82.99999976478,179.99999798928002,1212,0.0,10106.299999999988,142.0,142.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1149,1149,1609405663.4,2399.6,18.5,142.0,187.647597,0.0,0.0,0.0,0.0,0.0,0.0,123.243243,-0.224809,2.2480900000000004,2.664569,0.0,3282.4000000953674,1.0,0.0,52.22527,6.84545,54.348022,190.287631,0.0,100.321259,48.4011,0.0,0.0,0.0,0.0,0.0,2.6645691604566624,-0.99999988998,9.9999988998,1212,0.0,10106.299999999988,142.0,142.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1150,1150,1609405663.4,2399.6,18.5,142.0,187.024487,0.0,0.0,0.0,0.0,0.0,0.0,269.189189,36.419062,61.372864,2.673447,0.0,3282.4000000953674,1.0,0.0,52.22527,6.84545,48.000424,192.994598,0.0,103.437538,45.102408,0.0,0.0,0.0,0.0,0.0,2.6734467128895263,161.99999996964,273.00000110208,1212,0.0,10106.299999999988,142.0,142.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 From 05a747b3c22434ff66db5eea2a2a3ae41e2aa4bb Mon Sep 17 00:00:00 2001 From: Sander Roosendaal Date: Sat, 16 Jan 2021 11:27:32 +0100 Subject: [PATCH 16/30] removing obsolete code --- rowers/tasks.py | 99 +++++++++++++++++-------------------------------- 1 file changed, 33 insertions(+), 66 deletions(-) diff --git a/rowers/tasks.py b/rowers/tasks.py index fe3026dc..8088e313 100644 --- a/rowers/tasks.py +++ b/rowers/tasks.py @@ -1903,77 +1903,44 @@ def handle_otwsetpower(self,f1, boattype, boatclass, coastalbrand, weightvalue, progressurl += "/rowers/record-progress/" progressurl += job_id+'/' - goservice = True - if goservice: - # do something (this should return from go service) - with grpc.insecure_channel( - target='localhost:50051', - options=[('grpc.lb_policy_name', 'pick_first'), - ('grpc.enable_retries', 0), ('grpc.keepalive_timeout_ms', - 10000)] - ) as channel: - try: - grpc.channel_ready_future(channel).result(timeout=10) - except grpc.FutureTimeoutError: - return 0 + # do something (this should return from go service) + with grpc.insecure_channel( + target='localhost:50051', + options=[('grpc.lb_policy_name', 'pick_first'), + ('grpc.enable_retries', 0), ('grpc.keepalive_timeout_ms', + 10000)] + ) as channel: + try: + grpc.channel_ready_future(channel).result(timeout=10) + except grpc.FutureTimeoutError: + return 0 - stub = calculator_pb2_grpc.PowerStub(channel) - response = stub.CalcPower(calculator_pb2.WorkoutPowerRequest( - filename = csvfile, - boattype = boattype, - coastalbrand = coastalbrand, - crewmass = weightvalue, - powermeasured = powermeasured, - progressurl = progressurl, - secret = secret, - silent = False, - boatclass = boatclass, - ),timeout=1200) - result = response.result - if result == 0: - # send failure email - return 0 - # do something with boat type + stub = calculator_pb2_grpc.PowerStub(channel) + response = stub.CalcPower(calculator_pb2.WorkoutPowerRequest( + filename = csvfile, + boattype = boattype, + coastalbrand = coastalbrand, + crewmass = weightvalue, + powermeasured = powermeasured, + progressurl = progressurl, + secret = secret, + silent = False, + boatclass = boatclass, + ),timeout=1200) + result = response.result + if result == 0: + # send failure email + return 0 + # do something with boat type + try: + rowdata = rdata(csvfile) + except IOError: try: rowdata = rdata(csvfile) except IOError: - try: - rowdata = rdata(csvfile) - except IOError: - rowdata = rdata(csvfile) - - else: - boatfile = { - '1x': 'static/rigging/1x.txt', - '2x': 'static/rigging/2x.txt', - '2-': 'static/rigging/2-.txt', - '4x': 'static/rigging/4x.txt', - '4-': 'static/rigging/4-.txt', - '8+': 'static/rigging/8+.txt', - } - try: - rg = rowingdata.getrigging(boatfile[boattype]) - except KeyError: - rg = rowingdata.getrigging('static/rigging/1x.txt') - - # determine cache file name - physics_cache = 'media/'+str(boattype)+'_'+str(int(weightvalue)) - - - - rowdata.otw_setpower(skiprows=5, mc=weightvalue, rg=rg, - powermeasured=powermeasured, - progressurl=progressurl, - secret=secret, - silent=True, - usetable=usetable,storetable=physics_cache, - ) - - # save data - rowdata.write_csv(f1, gzip=True) - - # continuing for both + rowdata = rdata(csvfile) + update_strokedata(workoutid, rowdata.df, debug=debug) totaltime = rowdata.df['TimeStamp (sec)'].max( From 54f8f34acc1206efeda29d80a432bb5d562b8147 Mon Sep 17 00:00:00 2001 From: Sander Roosendaal Date: Sat, 16 Jan 2021 13:51:24 +0100 Subject: [PATCH 17/30] more emails tests, removing middleware --- rowers/middleware.py | 77 ---------------------- rowers/tasks.py | 43 +------------ rowers/tests/test_async_tasks.py | 107 ++++++++++++++++++++++++++++++- rowers/views/statements.py | 1 - 4 files changed, 109 insertions(+), 119 deletions(-) diff --git a/rowers/middleware.py b/rowers/middleware.py index 2995dedf..076c93e6 100644 --- a/rowers/middleware.py +++ b/rowers/middleware.py @@ -19,86 +19,9 @@ def getrower(user): return r -def do_update(user,mode='rower',days=42): - r = getrower(user) - - startdate = timezone.now()-datetime.timedelta(days=days) - - # test if not something already done - now_date = timezone.now().strftime('%Y-%m-%d') - ms = PowerTimeFitnessMetric.objects.filter( - user=user, - workoutmode=mode).order_by("-date") - - if len(ms) == 0: - max_workout_id = 0 - last_update_date = '1972-01-01' - else: - max_workout_id = max([m.last_workout for m in ms]) - last_update_date = ms[0].date.strftime('%Y-%m-%d') - - #last_update_date = max([m.date.strftime('%Y-%m-%d') for m in ms]) - if mode == 'rower': - workouts = Workout.objects.filter( - user=r, - workouttype__in=['rower','dynamic','slides'], - startdatetime__gte=startdate) - else: - workouts = Workout.objects.filter( - user=r, - workouttype__in=otwtypes, - startdatetime__gte=startdate) - - theids = [int(w.id) for w in workouts] - try: - max_id = max(theids) - except ValueError: - max_id = 0 - - if last_update_date < now_date and max_workout_id < max_id: - job = myqueue(queuelow, - handle_updatefitnessmetric, - user.id,mode,theids, - ) - - - return 1 - - -class PowerTimeFitnessMetricMiddleWare(object): - def __init__(self, get_response): - self.get_response = get_response - - def __call__(self, request): - # Code to be executed before the view is called - if request.user.is_authenticated: - result = do_update(request.user,mode='rower') - result = do_update(request.user,mode='water') - - response = self.get_response(request) - - return response - -from django.shortcuts import redirect - - -allowed_paths = [ - '/rowers/me/delete', - '/', - '/logout', - '/logout/', - '/rowers/me/gdpr-optin/', - '/rowers/me/gdpr-optin-confirm/', - '/rowers/me/gdpr-optin', - '/rowers/me/gdpr-optin-confirm' - '/rowers/exportallworkouts/', - '/rowers/exportallworkouts', - '/rowers/survey/' -] - class SurveyMiddleWare(object): def __init__(self, get_response): self.get_response = get_response diff --git a/rowers/tasks.py b/rowers/tasks.py index 8088e313..562021c8 100644 --- a/rowers/tasks.py +++ b/rowers/tasks.py @@ -1940,7 +1940,7 @@ def handle_otwsetpower(self,f1, boattype, boatclass, coastalbrand, weightvalue, rowdata = rdata(csvfile) except IOError: rowdata = rdata(csvfile) - + update_strokedata(workoutid, rowdata.df, debug=debug) totaltime = rowdata.df['TimeStamp (sec)'].max( @@ -2090,45 +2090,6 @@ def cp_from_workoutids(workoutids,debug=False): return powerfourmin,power2k,powerhour -@app.task -def handle_updatefitnessmetric(user_id,mode,workoutids,debug=False, - **kwargs): - - powerfourmin = -1 - power2k = -1 - powerhour = -1 - - mdict = { - 'user_id': user_id, - 'PowerFourMin': powerfourmin, - 'PowerTwoK': power2k, - 'PowerOneHour': powerhour, - 'workoutmode': mode, - 'last_workout': max(workoutids), - 'date': timezone.now().strftime('%Y-%m-%d'), - } - - result = fitnessmetric_to_sql(mdict,debug=debug,doclean=False) - - powerfourmin,power2k,powerhour = cp_from_workoutids(workoutids,debug=debug) - - if powerfourmin > 0 and power2k > 0 and powerhour > 0: - - mdict = { - 'user_id': user_id, - 'PowerFourMin': powerfourmin, - 'PowerTwoK': power2k, - 'PowerOneHour': powerhour, - 'workoutmode': mode, - 'last_workout': max(workoutids), - 'date': timezone.now().strftime('%Y-%m-%d'), - } - - result = fitnessmetric_to_sql(mdict,debug=debug,doclean=True) - else: - result = 0 - - return result @app.task def handle_updatecp(rower_id,workoutids,debug=False,table='cpdata',**kwargs): @@ -2516,6 +2477,8 @@ def handle_send_template_email(template,email,fromemail,rowername, ['info@rowsandall.com'],subject, template,d,cc=[fromemail],bcc=fullemail,**kwargs) + return 1 + @app.task def handle_sendemail_message(email,fromemail,rowername,message,teamname,managername, debug=False,**kwargs): diff --git a/rowers/tests/test_async_tasks.py b/rowers/tests/test_async_tasks.py index a98d0d1e..4c05c1d8 100644 --- a/rowers/tests/test_async_tasks.py +++ b/rowers/tests/test_async_tasks.py @@ -227,6 +227,81 @@ class AsyncTaskTests(TestCase): res = tasks.handle_sendemailfile(userfirstname,userlastname,useremail,filename) self.assertEqual(res,1) + res = tasks.handle_sendemail_coachrequest(useremail,username,'sdsd','Fred') + self.assertEqual(res,1) + + res = tasks.handle_sendemail_coachoffer_rejected(useremail,username,username) + self.assertEqual(res,1) + + res = tasks.handle_sendemail_coachoffer_accepted(useremail,username,username) + self.assertEqual(res,1) + + res = tasks.handle_sendemail_coachrequest_rejected(useremail,username,username) + self.assertEqual(res,1) + + res = tasks.handle_sendemail_coachrequest_accepted(useremail,username,username) + self.assertEqual(res,1) + + res = tasks.handle_sendemail_coacheerequest(useremail,username,'aaee',username) + self.assertEqual(res,1) + + res = tasks.handle_sendemail_invite(useremail,username,'ss','team','Fred Hachee') + self.assertEqual(res,1) + + res = tasks.handle_sendemailnewresponse( + userfirstname, userlastname, + useremail, + userfirstname,userlastname, + 'er staat een paard in de gang', + self.wwater.name, + self.wwater.id, + 1 + ) + self.assertEqual(res,1) + + res = tasks.handle_sendemailnewcomment( + userfirstname, userlastname, + useremail, + userfirstname,userlastname, + 'er staat een paard in de gang', + self.wwater.name, + self.wwater.id, + 1 + ) + self.assertEqual(res,1) + + res = tasks.handle_send_template_email('aa.html',useremail,useremail,userfirstname,'aa','bb') + self.assertEqual(res,1) + + res = tasks.handle_sendemail_message(useremail,useremail,userfirstname,'aap', + 'noot',userlastname) + + self.assertEqual(res,1) + + res = tasks.handle_sendemail_request(useremail,username,'asas','asas',userfirstname,12) + self.assertEqual(res,1) + + res = tasks.handle_sendemail_request_accept(useremail,username,'asas',userfirstname,12) + self.assertEqual(res,1) + + res = tasks.handle_sendemail_request_reject(useremail,username,'asas',userfirstname,12) + self.assertEqual(res,1) + + res = tasks.handle_sendemail_member_dropped(useremail,username,'asas',userfirstname,12) + self.assertEqual(res,1) + + res = tasks.handle_sendemail_team_removed(useremail,username,'asas',userfirstname,12) + self.assertEqual(res,1) + + res = tasks.handle_sendemail_invite_reject(useremail,username,'asas',userfirstname,12) + self.assertEqual(res,1) + + res = tasks.handle_sendemail_invite_accept(useremail,username,'asas',userfirstname,12) + self.assertEqual(res,1) + + + + def test_sigdig(self): x = 3.14159 @@ -295,7 +370,7 @@ class AsyncTaskTests(TestCase): @patch('rowers.tasks.grpc',side_effect=mocked_grpc) @patch('rowers.tasks.send_template_email',side_effect=mocked_send_template_email) def test_handle_otwsetpower(self,mocked_send_template_email,mocked_grpc): - f1 = result = get_random_file(filename='rowers/tests/testdata/sprintervals.csv')['filename'] + f1 = get_random_file(filename='rowers/tests/testdata/sprintervals.csv')['filename'] boattype = '1x' boatclass = 'water' coastalbrand = 'other' @@ -311,3 +386,33 @@ class AsyncTaskTests(TestCase): jobkey='23') self.assertEqual(res,1) + + @patch('rowers.dataprepnodjango.create_engine') + def test_handle_updateergcp(self,mocked_sqlalchemy): + f1 = get_random_file()['filename'] + res = tasks.handle_updateergcp(1,[f1]) + self.assertEqual(res,1) + + @patch('rowers.dataprepnodjango.getsmallrowdata_db') + def test_cp_from_workoutids(self,mocked_getsmallrowdata_db): + ids = [1] + powerfourmin,power2k,powerhour = tasks.cp_from_workoutids(ids) + self.assertFalse(powerfourmin==0) + self.assertFalse(power2k==0) + self.assertFalse(powerhour==0) + + @patch('rowers.dataprepnodjango.getsmallrowdata_db') + def test_handle_updatecp(self,mocked_getsmallrowdata_db): + rower_id = 1 + workoutids = [1] + res = tasks.handle_updatecp(rower_id,workoutids) + self.assertEqual(res,1) + + @patch('rowers.dataprepnodjango.getsmallrowdata_db') + def test_handle_setcp(self,mocked_getsmallrowdata_db): + strokesdf = pd.read_csv('rowers/tests/testdata/uhfull.csv') + filename = 'rowers/tests/temp/pq.gz' + workoutids = 1 + res = tasks.handle_setcp(strokesdf,filename,1) + self.assertEqual(res,1) + os.remove(filename) diff --git a/rowers/views/statements.py b/rowers/views/statements.py index c69b1d94..c11e3c26 100644 --- a/rowers/views/statements.py +++ b/rowers/views/statements.py @@ -209,7 +209,6 @@ from rowers.tasks import ( handle_sendemailnewresponse, handle_updatedps, handle_updatecp,long_test_task,long_test_task2, handle_zip_file,handle_getagegrouprecords, - handle_updatefitnessmetric, handle_update_empower, handle_sendemailics, handle_sendemail_userdeleted, From 687093e0e4c4db73c4855a33da781b3ce2e68589 Mon Sep 17 00:00:00 2001 From: Sander Roosendaal Date: Sat, 16 Jan 2021 14:00:20 +0100 Subject: [PATCH 18/30] cleaning up temp --- rowers/tests/test_async_tasks.py | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/rowers/tests/test_async_tasks.py b/rowers/tests/test_async_tasks.py index 4c05c1d8..ca3dad44 100644 --- a/rowers/tests/test_async_tasks.py +++ b/rowers/tests/test_async_tasks.py @@ -50,6 +50,22 @@ class AsyncTaskTests(TestCase): workouttype = 'water', ) + def tearDown(self): + for workout in self.user_workouts: + try: + os.remove(workout.csvfilename) + except (IOError,OSError,FileNotFoundError): + pass + + for filename in os.listdir('rowers/tests/testdata/temp'): + path = os.path.join('rowers/tests/testdata/temp/',filename) + if not os.path.isdir(path): + try: + os.remove(path) + except: + pass + + def test_safetimedelta(self): x = 5 y = tasks.safetimedelta(x) @@ -411,7 +427,7 @@ class AsyncTaskTests(TestCase): @patch('rowers.dataprepnodjango.getsmallrowdata_db') def test_handle_setcp(self,mocked_getsmallrowdata_db): strokesdf = pd.read_csv('rowers/tests/testdata/uhfull.csv') - filename = 'rowers/tests/temp/pq.gz' + filename = 'rowers/tests/testdata/temp/pq.gz' workoutids = 1 res = tasks.handle_setcp(strokesdf,filename,1) self.assertEqual(res,1) From f40e0131105a4ca3c317be0f818a71f7685d978a Mon Sep 17 00:00:00 2001 From: Sander Roosendaal Date: Sat, 16 Jan 2021 17:21:07 +0100 Subject: [PATCH 19/30] fixing middleware errors --- rowers/middleware.py | 16 +++++++++++++++- rowers/tests/test_async_tasks.py | 5 ++++- 2 files changed, 19 insertions(+), 2 deletions(-) diff --git a/rowers/middleware.py b/rowers/middleware.py index 076c93e6..da3f9385 100644 --- a/rowers/middleware.py +++ b/rowers/middleware.py @@ -5,7 +5,7 @@ from rowers.utils import myqueue import django_rq queue = django_rq.get_queue('default') queuelow = django_rq.get_queue('low') -from rowers.tasks import handle_updatefitnessmetric,handle_sendemail_expired +from rowers.tasks import handle_sendemail_expired from rowers.mytypes import otwtypes from django.contrib import messages from django.http import HttpResponse @@ -19,7 +19,21 @@ def getrower(user): return r +from django.shortcuts import redirect +allowed_paths = [ + '/rowers/me/delete', + '/', + '/logout', + '/logout/', + '/rowers/me/gdpr-optin/', + '/rowers/me/gdpr-optin-confirm/', + '/rowers/me/gdpr-optin', + '/rowers/me/gdpr-optin-confirm' + '/rowers/exportallworkouts/', + '/rowers/exportallworkouts', + '/rowers/survey/' +] class SurveyMiddleWare(object): diff --git a/rowers/tests/test_async_tasks.py b/rowers/tests/test_async_tasks.py index ca3dad44..0a4cdecf 100644 --- a/rowers/tests/test_async_tasks.py +++ b/rowers/tests/test_async_tasks.py @@ -431,4 +431,7 @@ class AsyncTaskTests(TestCase): workoutids = 1 res = tasks.handle_setcp(strokesdf,filename,1) self.assertEqual(res,1) - os.remove(filename) + try: + os.remove(filename) + except FileNotFoundError: + pass From 106af884a1e7c4ae8a3007511f7133c7d3c1a873 Mon Sep 17 00:00:00 2001 From: Sander Roosendaal Date: Sun, 17 Jan 2021 09:54:14 +0100 Subject: [PATCH 20/30] more tests - tasks complete for now --- rowers/tests/test_async_tasks.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/rowers/tests/test_async_tasks.py b/rowers/tests/test_async_tasks.py index 0a4cdecf..a8d989c8 100644 --- a/rowers/tests/test_async_tasks.py +++ b/rowers/tests/test_async_tasks.py @@ -75,6 +75,13 @@ class AsyncTaskTests(TestCase): y = tasks.safetimedelta(x) self.assertEqual(datetime.timedelta(seconds=0),y) + @patch('rowers.tasks.requests.get',side_effect=mocked_requests) + @patch('rowers.tasks.requests.post',side_effect=mocked_requests) + def test_fetch_strava_workout(self, mock_get, mock_post): + res = tasks.fetch_strava_workout('aap',None,12,'rowers/tests/testdata/temp/tesmp.csv', + self.u.id) + self.assertEqual(res,1) + @patch('rowers.c2stuff.requests.post', side_effect=mocked_requests) @patch('rowers.c2stuff.requests.get', side_effect=mocked_requests) def test_c2_sync(self, mock_get, mock_post): From 4d0a3ff0f2b2be832d5a09d0f2d18f5664e2ad6b Mon Sep 17 00:00:00 2001 From: Sander Roosendaal Date: Sun, 17 Jan 2021 11:38:24 +0100 Subject: [PATCH 21/30] tests creating editing and deleting courses --- rowers/tests/test_async_tasks.py | 3 +- rowers/tests/test_races.py | 212 +++++ rowers/tests/testdata/alphen.kml | 178 ++++ rowers/tests/testdata/coursestandard.csv | 199 ++++ rowers/tests/testdata/thyro.csv | 1081 ++++++++++++++++++++++ rowers/tests/testdata/thyro.kml | 35 + rowers/urls.py | 4 +- rowers/views/racesviews.py | 4 +- 8 files changed, 1712 insertions(+), 4 deletions(-) create mode 100644 rowers/tests/test_races.py create mode 100644 rowers/tests/testdata/alphen.kml create mode 100644 rowers/tests/testdata/coursestandard.csv create mode 100644 rowers/tests/testdata/thyro.csv create mode 100644 rowers/tests/testdata/thyro.kml diff --git a/rowers/tests/test_async_tasks.py b/rowers/tests/test_async_tasks.py index a8d989c8..948385be 100644 --- a/rowers/tests/test_async_tasks.py +++ b/rowers/tests/test_async_tasks.py @@ -77,7 +77,8 @@ class AsyncTaskTests(TestCase): @patch('rowers.tasks.requests.get',side_effect=mocked_requests) @patch('rowers.tasks.requests.post',side_effect=mocked_requests) - def test_fetch_strava_workout(self, mock_get, mock_post): + @patch('rowers.tasks.requests.session',side_effect=mocked_requests) + def test_fetch_strava_workout(self, mock_get, mock_post, mock_Session): res = tasks.fetch_strava_workout('aap',None,12,'rowers/tests/testdata/temp/tesmp.csv', self.u.id) self.assertEqual(res,1) diff --git a/rowers/tests/test_races.py b/rowers/tests/test_races.py new file mode 100644 index 00000000..172fef61 --- /dev/null +++ b/rowers/tests/test_races.py @@ -0,0 +1,212 @@ +from __future__ import absolute_import +from __future__ import division +from __future__ import print_function +from __future__ import unicode_literals + +#from __future__ import print_function +from .statements import * +nu = datetime.datetime.now() + +from rowers.utils import allmonths,allsundays + +import rowers.plannedsessions as plannedsessions +import rowers.courses as courses +from rowers.views.racesviews import * + +@override_settings(TESTING=True) +class ChallengesTest(TestCase): + def setUp(self): + self.u = UserFactory() + + self.r = Rower.objects.create(user=self.u, + birthdate=faker.profile()['birthdate'], + gdproptin=True,surveydone=True, + gdproptindate=timezone.now(), + rowerplan='coach') + + self.c = Client() + self.user_workouts = WorkoutFactory.create_batch(5, user=self.r) + self.factory = RequestFactory() + self.password = faker.word() + self.u.set_password(self.password) + self.u.save() + + cs = courses.kmltocourse('rowers/tests/testdata/thyro.kml') + course = cs[0] + cname = course['name'] + cnotes = course['description'] + polygons = course['polygons'] + self.ThyroBaantje = courses.createcourse(self.r,cname,polygons,notes=cnotes) + self.ThyroBaantje.save() + + id = save_scoring('Standard Scoring',self.u,'rowers/tests/testdata/coursestandard.csv',id=0) + self.Scoring = StandardCollection.objects.get(id=id) + + result = get_random_file(filename='rowers/tests/testdata/thyro.csv') + self.wthyro = WorkoutFactory(user=self.r, + csvfilename=result['filename'], + starttime=result['starttime'], + startdatetime=result['startdatetime'], + duration=result['duration'], + distance=result['totaldist'], + workouttype = 'water', + ) + + startdate = arrow.get(datetime.datetime.now()-datetime.timedelta(days=1)).datetime + start_time = datetime.time() + enddate = startdate+datetime.timedelta(days=5) + end_time = start_time + evaluation_closure = startdate+datetime.timedelta(days=6) + registration_closure = evaluation_closure + contact_phone = '06342323' + contact_email = 'roosendaalsander@gmail.com' + + timezone_str = 'UTC' + + self.SpeedOrder = VirtualRace( + name='Thyro Speed Order', + startdate=startdate, + preferreddate = startdate, + start_time = start_time, + enddate=enddate, + end_time=end_time, + course=self.ThyroBaantje, + comment='', + sessiontype = 'race', + timezone=timezone_str, + evaluation_closure=evaluation_closure, + registration_closure=registration_closure, + contact_phone=contact_phone, + coursestandards=self.Scoring, + contact_email=contact_email, + country = 'Netherlands', + manager=self.u, + ) + self.SpeedOrder.save() + + + def tearDown(self): + for workout in self.user_workouts: + try: + os.remove(workout.csvfilename) + except (IOError, FileNotFoundError,OSError): + pass + + def test_distance(self): + lat_lon = (52.214229145558484, 6.890036546847821) + distance = howfaris(lat_lon,self.ThyroBaantje) + self.assertEqual(distance,3.156402768718697) + + def test_getnearestraces(self): + lat_lon = (52.214229145558484, 6.890036546847821) + races = VirtualRace.objects.all() + traces = getnearestraces(lat_lon,races) + self.assertEqual(len(traces),1) + + def test_getnearestcourses(self): + lat_lon = (52.214229145558484, 6.890036546847821) + courses = [self.ThyroBaantje] + tcourses = getnearestcourses(lat_lon,courses) + self.assertEqual(len(tcourses),1) + + def test_courses_view(self): + login = self.c.login(username=self.u.username, password=self.password) + self.assertTrue(login) + + url = reverse('courses_view') + response = self.c.get(url) + self.assertEqual(response.status_code,200) + + def test_standards_view(self): + login = self.c.login(username=self.u.username, password=self.password) + self.assertTrue(login) + + url = reverse('standards_view') + response = self.c.get(url) + self.assertEqual(response.status_code,200) + + def test_coursemap_view(self): + login = self.c.login(username=self.u.username, password=self.password) + self.assertTrue(login) + + url = reverse('course_map_view',kwargs={'id':self.ThyroBaantje.id}) + response = self.c.get(url) + self.assertEqual(response.status_code,200) + + def test_course_create_edit_delete(self): + login = self.c.login(username=self.u.username, password=self.password) + self.assertTrue(login) + + # Create + url = reverse('course_upload_view') + response = self.c.get(url) + self.assertEqual(response.status_code,200) + + + filename = 'rowers/tests/testdata/alphen.kml' + f = open(filename,'r') + + file_data = {'file': f} + form_data = { + 'name':'Alphen', + 'notes': 'aa', + 'country': 'Netherlands', + 'file':f, + } + + form = CourseForm(form_data,file_data) + response = self.c.post(url,form_data,follow=True) + f.close() + + expected_url = reverse('courses_view') + + self.assertRedirects(response, expected_url=expected_url, + status_code=302,target_status_code=200) + + self.assertEqual(response.status_code, 200) + + courses = GeoCourse.objects.all() + + self.assertEqual(len(courses),2) + + Alphen = GeoCourse.objects.get(id=2) + + # edit + url = reverse('course_edit_view',kwargs={'id':Alphen.id}) + response = self.c.get(url) + self.assertEqual(response.status_code,200) + + form_data = { + 'name':'Alphen', + 'country': 'NL', + 'notes': 'bb' + } + + form = GeoCourseEditForm(form_data) + self.assertTrue(form.is_valid()) + + response = self.c.post(url,form_data) + self.assertEqual(response.status_code,200) + + # check + url = reverse('course_view',kwargs={'id':Alphen.id}) + response = self.c.get(url) + self.assertEqual(response.status_code,200) + + + # (ToDO Upload new kml) + + # KML Download + url = reverse('course_kmldownload_view',kwargs={'id':Alphen.id}) + response = self.c.get(url) + self.assertEqual(response.status_code,200) + + # delete + url = reverse('course_delete_view',kwargs={'id':Alphen.id}) + response = self.c.get(url,follow=True) + expected_url = reverse('courses_view') + + self.assertRedirects(response, expected_url=expected_url, + status_code=302,target_status_code=200) + + self.assertEqual(response.status_code, 200) diff --git a/rowers/tests/testdata/alphen.kml b/rowers/tests/testdata/alphen.kml new file mode 100644 index 00000000..9ed981cb --- /dev/null +++ b/rowers/tests/testdata/alphen.kml @@ -0,0 +1,178 @@ + + + + Courses.kml + + Courses + + Alphen - Alphen aan den Rijn + 1 + + Start + + 1 + + + 4.704149601313898,52.14611068342334,0 4.704648516706039,52.14606840788696,0 4.704642182077736,52.14626893773362,0 4.704151599747837,52.14628828501986,0 4.704149601313898,52.14611068342334,0 4.704149601313898,52.14611068342334,0 + + + + + + Gate 1 + + 1 + + + 4.704040567073562,52.14772365703576,0 4.704544185247905,52.14767250842382,0 4.704570221164488,52.14791407188889,0 4.704130359234369,52.14797079566858,0 4.704040567073562,52.14772365703576,0 4.704040567073562,52.14772365703576,0 + + + + + + Gate 2 + + 1 + + + 4.707120374629225,52.15459940303027,0 4.707573702026327,52.15460568431943,0 4.70761596147063,52.15486728249238,0 4.707159504658982,52.15489881627455,0 4.707120374629225,52.15459940303027,0 4.707120374629225,52.15459940303027,0 + + + + + + Gate 3 + + 1 + + + 4.709028668490356,52.1646474322453,0 4.70984931790314,52.16449178436365,0 4.709978566943311,52.16488586779201,0 4.709244456319242,52.16499245615274,0 4.709028668490356,52.1646474322453,0 4.709028668490356,52.1646474322453,0 + + + + + + Gate 4 + + 1 + + + 4.718138359290078,52.17865355742074,0 4.718653235056161,52.17830639665007,0 4.719134204848634,52.17862031168055,0 4.71867160984541,52.17894003397144,0 4.718138359290078,52.17865355742074,0 4.718138359290078,52.17865355742074,0 + + + + + + Gate 5 + + 1 + + + 4.727641648412835,52.18284846695732,0 4.728273789904367,52.18251973845241,0 4.728577606945771,52.1827641768111,0 4.7279847617705,52.1830837392454,0 4.727641648412835,52.18284846695732,0 4.727641648412835,52.18284846695732,0 + + + + + + Gate 6 + + 1 + + + 4.738716857017891,52.19396028458393,0 4.739294818571407,52.19389560588872,0 4.739411118817641,52.19428660874426,0 4.738864571028594,52.19431307372239,0 4.738716857017891,52.19396028458393,0 4.738716857017891,52.19396028458393,0 + + + + + + Gate 7 + + 1 + + + 4.734183821236371,52.20620514880871,0 4.734924962205387,52.20637199686158,0 4.734802543714663,52.20688025274802,0 4.733601274999542,52.20663721340052,0 4.734183821236371,52.20620514880871,0 4.734183821236371,52.20620514880871,0 + + + + + + Gate 8 + + 1 + + + 4.738785303605908,52.19457123452171,0 4.739333350356509,52.19459196501802,0 4.739304304831564,52.19482691469288,0 4.73885420703549,52.19479878738656,0 4.738785303605908,52.19457123452171,0 4.738785303605908,52.19457123452171,0 + + + + + + Gate 9 + + 1 + + + 4.728292586661338,52.18327969510192,0 4.728884338045631,52.18302182842039,0 4.729083849790216,52.1833152834237,0 4.728606271720666,52.18355598784883,0 4.728292586661338,52.18327969510192,0 4.728292586661338,52.18327969510192,0 + + + + + + Gate 10 + + 1 + + + 4.717008631662971,52.17788756203277,0 4.717714777374475,52.17758571819474,0 4.718168595226933,52.17803093936305,0 4.717634575621297,52.17832999894938,0 4.717008631662971,52.17788756203277,0 4.717008631662971,52.17788756203277,0 + + + + + + Gate 11 + + 1 + + + 4.708580146922809,52.16405851453961,0 4.709467162927956,52.16392338577828,0 4.709761923185198,52.16427786809471,0 4.708922971852094,52.16448915385681,0 4.708580146922809,52.16405851453961,0 4.708580146922809,52.16405851453961,0 + + + + + + Gate 12 + + 1 + + + 4.70716800510311,52.15500418035832,0 4.707671825192278,52.15498496004398,0 4.707743878685751,52.15525628533189,0 4.707149393888881,52.1553218720998,0 4.70716800510311,52.15500418035832,0 4.70716800510311,52.15500418035832,0 + + + + + + Gate 13 + + 1 + + + 4.704140681716737,52.14813498986593,0 4.704864196194787,52.1479883822655,0 4.705153909432487,52.14838874308533,0 4.704223464041033,52.14854260247372,0 4.704140681716737,52.14813498986593,0 4.704140681716737,52.14813498986593,0 + + + + + + Finish + + 1 + + + 4.70414987291546,52.1461319705247,0 4.704561170436561,52.14607111930849,0 4.704642182077736,52.14626893773362,0 4.70415735390207,52.14628831020436,0 4.70414987291546,52.1461319705247,0 4.70414987291546,52.1461319705247,0 + + + + + + + + diff --git a/rowers/tests/testdata/coursestandard.csv b/rowers/tests/testdata/coursestandard.csv new file mode 100644 index 00000000..df1be0ba --- /dev/null +++ b/rowers/tests/testdata/coursestandard.csv @@ -0,0 +1,199 @@ +,id,name,coursedistance,coursetime,referencespeed,agemin,agemax,boatclass,boattype,sex,weightclass,adaptiveclass,skillclass,standardcollection_id +0,333,MMasterC_2x,4000,14:59.6,4.44642063139173,43,120,water,2x,male,hwt,None,Open,3 +1,434,J1314_1x,4000,17:39.5,3.7753657385559225,12,14,water,1x,male,hwt,None,Open,3 +2,435,J1516_1x,4000,17:37.1,3.783937186642702,12,16,water,1x,male,hwt,None,Open,3 +3,436,J1718_1x,4000,16:47.4,3.9706174310105222,12,18,water,1x,male,hwt,None,Open,3 +4,437,MSenB_1x,4000,16:03.2,4.152823920265781,12,22,water,1x,male,hwt,None,Open,3 +5,438,MSenA_1x,4000,15:44.0,4.237288135593221,12,120,water,1x,male,hwt,None,Open,3 +6,439,MMasterA_1x,4000,16:03.2,4.152823920265781,27,120,water,1x,male,hwt,None,Open,3 +7,440,MMasterB_1x,4000,16:39.2,4.00320256204964,36,120,water,1x,male,hwt,None,Open,3 +8,441,MMasterC_1x,4000,17:21.6,3.840245775729647,43,120,water,1x,male,hwt,None,Open,3 +9,442,MMasterD_1x,4000,18:06.8,3.68052999631947,50,120,water,1x,male,hwt,None,Open,3 +10,443,MMasterE_1x,4000,18:55.0,3.5242290748898677,55,120,water,1x,male,hwt,None,Open,3 +11,444,MMasterF_1x,4000,19:57.1,3.341408403642135,60,120,water,1x,male,hwt,None,Open,3 +12,445,MMasterG_1x,4000,21:22.3,3.1193948374015443,65,120,water,1x,male,hwt,None,Open,3 +13,446,MMasterH_1x,4000,23:23.9,2.849205783887741,70,120,water,1x,male,hwt,None,Open,3 +14,447,MMasterI_1x,4000,26:32.2,2.512247205124984,75,120,water,1x,male,hwt,None,Open,3 +15,448,MMasterJ_1x,4000,30:21.0,2.196595277320154,80,120,water,1x,male,hwt,None,Open,3 +16,449,MMasterK_1x,4000,34:31.9,1.9305951059414064,83,120,water,1x,male,hwt,None,Open,3 +17,450,MMasterL_1x,4000,40:40.0,1.639344262295082,86,120,water,1x,male,hwt,None,Open,3 +18,451,MMasterM_1x,4000,49:59.5,1.3335555925987665,89,120,water,1x,male,hwt,None,Open,3 +19,452,M1314_1x,4000,19:37.1,3.398181972644635,12,14,water,1x,female,hwt,None,Open,3 +20,453,M1516_1x,4000,21:46.6,3.0613806826878927,12,16,water,1x,female,hwt,None,Open,3 +21,454,M1718_1x,4000,20:44.3,3.2146588443301454,12,18,water,1x,female,hwt,None,Open,3 +22,455,FSenB_1x,4000,19:49.1,3.3638886552855105,12,22,water,1x,female,hwt,None,Open,3 +23,456,FSenA_1x,4000,19:25.4,3.432297923459756,12,120,water,1x,female,hwt,None,Open,3 +24,457,FMasterA_1x,4000,19:49.1,3.3638886552855105,27,120,water,1x,female,hwt,None,Open,3 +25,458,FmasterB_1x,4000,20:33.0,3.2441200324412005,36,120,water,1x,female,hwt,None,Open,3 +26,459,FmasterC_1x,4000,21:25.3,3.1121139033688636,43,120,water,1x,female,hwt,None,Open,3 +27,460,FmasterD_1x,4000,22:24.3,2.975526296213643,50,120,water,1x,female,hwt,None,Open,3 +28,461,FmasterE_1x,4000,23:20.5,2.856122813280971,55,120,water,1x,female,hwt,None,Open,3 +29,462,FmasterF_1x,4000,24:38.7,2.705078785419625,60,120,water,1x,female,hwt,None,Open,3 +30,463,FmasterG_1x,4000,26:23.9,2.5254119578256202,65,120,water,1x,female,hwt,None,Open,3 +31,464,FmasterH_1x,4000,28:53.2,2.3078698361412417,70,120,water,1x,female,hwt,None,Open,3 +32,465,FmasterI_1x,4000,32:45.6,2.035002035002035,75,120,water,1x,female,hwt,None,Open,3 +33,466,FmasterJ_1x,4000,37:28.1,1.7792802811262844,80,120,water,1x,female,hwt,None,Open,3 +34,467,FmasterK_1x,4000,42:42.1,1.561219312282893,83,120,water,1x,female,hwt,None,Open,3 +35,468,FmasterL_1x,4000,50:10.2,1.3288153611055744,86,120,water,1x,female,hwt,None,Open,3 +36,469,FmasterM_1x,4000,01:41.6,39.37007874015748,89,120,water,1x,female,hwt,None,Open,3 +37,470,J1314_2-,4000,16:59.7,3.922722369324311,12,14,water,2-,male,hwt,None,Open,3 +38,471,J1516_2-,4000,16:19.2,4.084967320261438,12,16,water,2-,male,hwt,None,Open,3 +39,472,J1718_2-,4000,15:33.2,4.286326618088298,12,18,water,2-,male,hwt,None,Open,3 +40,473,MSenB_2-,4000,14:52.2,4.483299708585519,12,22,water,2-,male,hwt,None,Open,3 +41,474,MSenA_2-,4000,14:34.5,4.574042309891366,12,120,water,2-,male,hwt,None,Open,3 +42,475,MMasterA_2-,4000,14:52.2,4.483299708585519,27,120,water,2-,male,hwt,None,Open,3 +43,476,MMasterB_2-,4000,15:25.6,4.32152117545376,36,120,water,2-,male,hwt,None,Open,3 +44,477,MMasterC_2-,4000,16:04.9,4.1455073064566275,43,120,water,2-,male,hwt,None,Open,3 +45,478,MMasterD_2-,4000,16:46.7,3.9733783649548027,50,120,water,2-,male,hwt,None,Open,3 +46,479,MMasterE_2-,4000,17:31.4,3.804451207913258,55,120,water,2-,male,hwt,None,Open,3 +47,480,MMasterF_2-,4000,18:29.0,3.606853020739405,60,120,water,2-,male,hwt,None,Open,3 +48,481,MMasterG_2-,4000,19:47.9,3.367286808653927,65,120,water,2-,male,hwt,None,Open,3 +49,482,MMasterH_2-,4000,21:40.5,3.0757400999615534,70,120,water,2-,male,hwt,None,Open,3 +50,483,MMasterI_2-,4000,24:34.9,2.7120482744592853,75,120,water,2-,male,hwt,None,Open,3 +51,484,MMasterJ_2-,4000,28:06.8,2.3713540431586435,80,120,water,2-,male,hwt,None,Open,3 +52,485,MMasterK_2-,4000,31:59.3,2.0840931589642055,83,120,water,2-,male,hwt,None,Open,3 +53,486,MMasterL_2-,4000,37:40.3,1.7696765916028845,86,120,water,2-,male,hwt,None,Open,3 +54,487,MMasterM_2-,4000,46:18.5,1.4396256973186972,89,120,water,2-,male,hwt,None,Open,3 +55,488,M1314_2-,4000,18:52.9,3.530761761850119,12,14,water,2-,female,hwt,None,Open,3 +56,489,M1516_2-,4000,20:10.3,3.3049657109807486,12,16,water,2-,female,hwt,None,Open,3 +57,490,M1718_2-,4000,19:12.7,3.4701136462219138,12,18,water,2-,female,hwt,None,Open,3 +58,491,FSenB_2-,4000,18:21.5,3.631411711302769,12,22,water,2-,female,hwt,None,Open,3 +59,492,FSenA_2-,4000,17:59.6,3.7050759540570586,12,120,water,2-,female,hwt,None,Open,3 +60,493,FMasterA_2-,4000,18:21.5,3.631411711302769,27,120,water,2-,female,hwt,None,Open,3 +61,494,FmasterB_2-,4000,19:02.2,3.5020136578532655,36,120,water,2-,female,hwt,None,Open,3 +62,495,FmasterC_2-,4000,19:50.6,3.359650596337981,43,120,water,2-,female,hwt,None,Open,3 +63,496,FmasterD_2-,4000,20:45.2,3.2123353678123996,50,120,water,2-,female,hwt,None,Open,3 +64,497,FmasterE_2-,4000,21:37.3,3.0833269097356046,55,120,water,2-,female,hwt,None,Open,3 +65,498,FmasterF_2-,4000,22:49.8,2.9201343261790043,60,120,water,2-,female,hwt,None,Open,3 +66,499,FmasterG_2-,4000,24:27.3,2.726095549649015,65,120,water,2-,female,hwt,None,Open,3 +67,500,FmasterH_2-,4000,26:45.6,2.4912805181863478,70,120,water,2-,female,hwt,None,Open,3 +68,501,FmasterI_2-,4000,30:20.8,2.196836555360281,75,120,water,2-,female,hwt,None,Open,3 +69,502,FmasterJ_2-,4000,34:42.5,1.9207683073229291,80,120,water,2-,female,hwt,None,Open,3 +70,503,FmasterK_2-,4000,39:33.4,1.6853459172495153,83,120,water,2-,female,hwt,None,Open,3 +71,504,FmasterL_2-,4000,46:28.5,1.4344629729245113,86,120,water,2-,female,hwt,None,Open,3 +72,505,FmasterM_2-,4000,57:08.9,1.1665548718247833,89,120,water,2-,female,hwt,None,Open,3 +73,506,J1314_2x,4000,16:24.6,4.062563477554336,12,14,water,2x,male,hwt,None,Open,3 +74,507,J1516_2x,4000,15:13.0,4.381161007667032,12,16,water,2x,male,hwt,None,Open,3 +75,508,J1718_2x,4000,14:30.2,4.596644449551827,12,18,water,2x,male,hwt,None,Open,3 +76,509,MSenB_2x,4000,13:51.9,4.808270224786633,12,22,water,2x,male,hwt,None,Open,3 +77,510,MSenA_2x,4000,13:35.4,4.905567819475104,12,120,water,2x,male,hwt,None,Open,3 +78,511,MMasterA_2x,4000,13:51.9,4.808270224786633,27,120,water,2x,male,hwt,None,Open,3 +79,512,MMasterB_2x,4000,14:23.0,4.634994206257242,36,120,water,2x,male,hwt,None,Open,3 +80,513,MMasterD_2x,4000,15:38.7,4.26121231490359,50,120,water,2x,male,hwt,None,Open,3 +81,514,MMasterE_2x,4000,16:20.3,4.08038355605427,55,120,water,2x,male,hwt,None,Open,3 +82,515,MMasterF_2x,4000,17:14.0,3.8684719535783367,60,120,water,2x,male,hwt,None,Open,3 +83,516,MMasterG_2x,4000,18:27.6,3.6114120621162877,65,120,water,2x,male,hwt,None,Open,3 +84,517,MMasterH_2x,4000,20:12.6,3.298697014679202,70,120,water,2x,male,hwt,None,Open,3 +85,518,MMasterI_2x,4000,22:55.2,2.9086678301337985,75,120,water,2x,male,hwt,None,Open,3 +86,519,MMasterJ_2x,4000,26:12.8,2.5432349949135302,80,120,water,2x,male,hwt,None,Open,3 +87,520,MMasterK_2x,4000,29:49.5,2.235261246158145,83,120,water,2x,male,hwt,None,Open,3 +88,521,MMasterL_2x,4000,35:07.5,1.8979833926453145,86,120,water,2x,male,hwt,None,Open,3 +89,522,MMasterM_2x,4000,43:10.7,1.5439842513606363,89,120,water,2x,male,hwt,None,Open,3 +90,523,M1314_2x,4000,18:13.9,3.6566413748971565,12,14,water,2x,female,hwt,None,Open,3 +91,524,M1516_2x,4000,18:48.5,3.544528134692069,12,16,water,2x,female,hwt,None,Open,3 +92,525,M1718_2x,4000,17:54.8,3.721622627465575,12,18,water,2x,female,hwt,None,Open,3 +93,526,FSenB_2x,4000,17:07.0,3.8948393378773125,12,22,water,2x,female,hwt,None,Open,3 +94,527,FSenA_2x,4000,16:46.6,3.9737730975561294,12,120,water,2x,female,hwt,None,Open,3 +95,528,FMasterA_2x,4000,17:07.0,3.8948393378773125,27,120,water,2x,female,hwt,None,Open,3 +96,529,FmasterB_2x,4000,17:45.0,3.755868544600939,36,120,water,2x,female,hwt,None,Open,3 +97,530,FmasterC_2x,4000,18:30.2,3.6029544226265537,43,120,water,2x,female,hwt,None,Open,3 +98,531,FmasterD_2x,4000,19:21.1,3.4450090431487386,50,120,water,2x,female,hwt,None,Open,3 +99,532,FmasterE_2x,4000,20:09.7,3.3066049433743903,55,120,water,2x,female,hwt,None,Open,3 +100,533,FmasterF_2x,4000,21:17.2,3.1318509238960224,60,120,water,2x,female,hwt,None,Open,3 +101,534,FmasterG_2x,4000,22:48.1,2.9237628828302027,65,120,water,2x,female,hwt,None,Open,3 +102,535,FmasterH_2x,4000,24:57.0,2.6720106880427523,70,120,water,2x,female,hwt,None,Open,3 +103,536,FmasterI_2x,4000,28:17.8,2.3559901048415597,75,120,water,2x,female,hwt,None,Open,3 +104,537,FmasterJ_2x,4000,32:21.8,2.0599443815016993,80,120,water,2x,female,hwt,None,Open,3 +105,538,FmasterK_2x,4000,36:52.9,1.807582809887478,83,120,water,2x,female,hwt,None,Open,3 +106,539,FmasterL_2x,4000,43:20.0,1.5384615384615385,86,120,water,2x,female,hwt,None,Open,3 +107,540,FmasterM_2x,4000,53:17.2,1.2510947078693857,89,120,water,2x,female,hwt,None,Open,3 +108,541,J1314_C1x,4000,19:37.2,3.397893306150187,12,14,c-boat,1x,male,hwt,None,Open,3 +109,542,J1516_C1x,4000,21:45.0,3.0651340996168583,12,16,c-boat,1x,male,hwt,None,Open,3 +110,543,J1718_C1x,4000,20:43.8,3.2159511175430135,12,18,c-boat,1x,male,hwt,None,Open,3 +111,544,MSenB_C1x,4000,19:49.1,3.3638886552855105,12,22,c-boat,1x,male,hwt,None,Open,3 +112,545,MSenA_C1x,4000,19:25.4,3.432297923459756,12,120,c-boat,1x,male,hwt,None,Open,3 +113,546,MMasterA_C1x,4000,19:49.1,3.3638886552855105,27,120,c-boat,1x,male,hwt,None,Open,3 +114,547,MMasterB_C1x,4000,20:33.5,3.2428050263477908,36,120,c-boat,1x,male,hwt,None,Open,3 +115,548,MMasterC_C1x,4000,21:25.9,3.1106617932965235,43,120,c-boat,1x,male,hwt,None,Open,3 +116,549,MMasterD_C1x,4000,22:21.7,2.981292390251174,50,120,c-boat,1x,male,hwt,None,Open,3 +117,550,MMasterE_C1x,4000,23:21.2,2.8546959748786755,55,120,c-boat,1x,male,hwt,None,Open,3 +118,551,MMasterF_C1x,4000,24:38.0,2.706359945872801,60,120,c-boat,1x,male,hwt,None,Open,3 +119,552,MMasterG_C1x,4000,26:23.1,2.5266881435158868,65,120,c-boat,1x,male,hwt,None,Open,3 +120,553,MMasterH_C1x,4000,28:53.2,2.3078698361412417,70,120,c-boat,1x,male,hwt,None,Open,3 +121,554,MMasterI_C1x,4000,32:45.6,2.035002035002035,75,120,c-boat,1x,male,hwt,None,Open,3 +122,555,MMasterJ_C1x,4000,37:28.1,1.7792802811262844,80,120,c-boat,1x,male,hwt,None,Open,3 +123,556,MMasterK_C1x,4000,42:37.9,1.5637827905703898,83,120,c-boat,1x,male,hwt,None,Open,3 +124,557,MMasterL_C1x,4000,50:12.3,1.327888988480563,86,120,c-boat,1x,male,hwt,None,Open,3 +125,558,MMasterM_C1x,4000,01:43.1,38.797284190106694,89,120,c-boat,1x,male,hwt,None,Open,3 +126,559,M1314_C1x,4000,21:47.8,3.058571647040832,12,14,c-boat,1x,female,hwt,None,Open,3 +127,560,M1516_C1x,4000,26:53.1,2.4796974769078175,12,16,c-boat,1x,female,hwt,None,Open,3 +128,561,M1718_C1x,4000,25:36.2,2.6038276266111184,12,18,c-boat,1x,female,hwt,None,Open,3 +129,562,FSenB_C1x,4000,24:28.0,2.7247956403269753,12,22,c-boat,1x,female,hwt,None,Open,3 +130,563,FSenA_C1x,4000,23:58.8,2.7800945232137892,12,120,c-boat,1x,female,hwt,None,Open,3 +131,564,FMasterA_C1x,4000,24:28.0,2.7247956403269753,27,120,c-boat,1x,female,hwt,None,Open,3 +132,565,FmasterB_C1x,4000,25:22.2,2.6277755879647877,36,120,c-boat,1x,female,hwt,None,Open,3 +133,566,FmasterC_C1x,4000,26:26.8,2.5207965717166627,43,120,c-boat,1x,female,hwt,None,Open,3 +134,567,FmasterD_C1x,4000,27:39.6,2.4102193299590264,50,120,c-boat,1x,female,hwt,None,Open,3 +135,568,FmasterE_C1x,4000,28:49.0,2.313475997686524,55,120,c-boat,1x,female,hwt,None,Open,3 +136,569,FmasterF_C1x,4000,30:25.5,2.1911804984935634,60,120,c-boat,1x,female,hwt,None,Open,3 +137,570,FmasterG_C1x,4000,32:35.5,2.0455126566095627,65,120,c-boat,1x,female,hwt,None,Open,3 +138,571,FmasterH_C1x,4000,35:39.8,1.8693335825778108,70,120,c-boat,1x,female,hwt,None,Open,3 +139,572,FmasterI_C1x,4000,40:26.7,1.6483290064696914,75,120,c-boat,1x,female,hwt,None,Open,3 +140,573,FmasterJ_C1x,4000,46:15.5,1.4411817690506215,80,120,c-boat,1x,female,hwt,None,Open,3 +141,574,FmasterK_C1x,4000,52:43.1,1.264582213651165,83,120,c-boat,1x,female,hwt,None,Open,3 +142,575,FmasterL_C1x,4000,01:56.3,34.393809114359414,86,120,c-boat,1x,female,hwt,None,Open,3 +143,576,FmasterM_C1x,4000,16:09.9,4.124136508918445,89,120,c-boat,1x,female,hwt,None,Open,3 +144,577,J1314_C2x,4000,18:30.6,3.6016567621105713,12,14,c-boat,2x,male,hwt,None,Open,3 +145,578,J1516_C2x,4000,19:21.5,3.4438226431338785,12,16,c-boat,2x,male,hwt,None,Open,3 +146,579,J1718_C2x,4000,18:26.9,3.6136959074893844,12,18,c-boat,2x,male,hwt,None,Open,3 +147,580,MSenB_C2x,4000,17:38.3,3.7796466030426155,12,22,c-boat,2x,male,hwt,None,Open,3 +148,581,MSenA_C2x,4000,17:17.2,3.8565368299267258,12,120,c-boat,2x,male,hwt,None,Open,3 +149,582,MMasterA_C2x,4000,17:38.3,3.7796466030426155,27,120,c-boat,2x,male,hwt,None,Open,3 +150,583,MMasterB_C2x,4000,18:17.8,3.6436509382401168,36,120,c-boat,2x,male,hwt,None,Open,3 +151,584,MMasterC_C2x,4000,19:04.5,3.494975972040192,43,120,c-boat,2x,male,hwt,None,Open,3 +152,585,MMasterD_C2x,4000,19:54.1,3.3498031990620554,50,120,c-boat,2x,male,hwt,None,Open,3 +153,586,MMasterE_C2x,4000,20:47.1,3.2074412637318583,55,120,c-boat,2x,male,hwt,None,Open,3 +154,587,MMasterF_C2x,4000,21:55.4,3.0409001064315033,60,120,c-boat,2x,male,hwt,None,Open,3 +155,588,MMasterG_C2x,4000,23:29.0,2.8388928317956,65,120,c-boat,2x,male,hwt,None,Open,3 +156,589,MMasterH_C2x,4000,25:42.6,2.5930247633864907,70,120,c-boat,2x,male,hwt,None,Open,3 +157,590,MMasterI_C2x,4000,29:09.4,2.286498227963873,75,120,c-boat,2x,male,hwt,None,Open,3 +158,591,MMasterJ_C2x,4000,33:20.8,1.9992003198720512,80,120,c-boat,2x,male,hwt,None,Open,3 +159,592,MMasterK_C2x,4000,37:56.5,1.757083241818581,83,120,c-boat,2x,male,hwt,None,Open,3 +160,593,MMasterL_C2x,4000,44:41.0,1.4919806042521446,86,120,c-boat,2x,male,hwt,None,Open,3 +161,594,MMasterM_C2x,4000,54:55.7,1.213702703522772,89,120,c-boat,2x,male,hwt,None,Open,3 +162,595,M1314_C2x,4000,20:33.8,3.242016534284325,12,14,c-boat,2x,female,hwt,None,Open,3 +163,596,M1516_C2x,4000,23:55.6,2.7862914460852606,12,16,c-boat,2x,female,hwt,None,Open,3 +164,597,M1718_C2x,4000,22:47.2,2.925687536571094,12,18,c-boat,2x,female,hwt,None,Open,3 +165,598,FSenB_C2x,4000,21:46.5,3.0616150019135095,12,22,c-boat,2x,female,hwt,None,Open,3 +166,599,FSenA_C2x,4000,21:20.5,3.1237797735259663,12,120,c-boat,2x,female,hwt,None,Open,3 +167,600,FMasterA_C2x,4000,21:46.5,3.0616150019135095,27,120,c-boat,2x,female,hwt,None,Open,3 +168,601,FmasterB_C2x,4000,22:34.7,2.952683250904259,36,120,c-boat,2x,female,hwt,None,Open,3 +169,602,FmasterC_C2x,4000,23:32.3,2.832259434964243,43,120,c-boat,2x,female,hwt,None,Open,3 +170,603,FmasterD_C2x,4000,24:37.0,2.708192281651997,50,120,c-boat,2x,female,hwt,None,Open,3 +171,604,FmasterE_C2x,4000,25:38.8,2.5994281258123215,55,120,c-boat,2x,female,hwt,None,Open,3 +172,605,FmasterF_C2x,4000,27:04.7,2.4619929833199974,60,120,c-boat,2x,female,hwt,None,Open,3 +173,606,FmasterG_C2x,4000,29:00.4,2.2983222247759136,65,120,c-boat,2x,female,hwt,None,Open,3 +174,607,FmasterH_C2x,4000,31:44.4,2.1003990758244067,70,120,c-boat,2x,female,hwt,None,Open,3 +175,608,FmasterI_C2x,4000,35:59.8,1.852023335494027,75,120,c-boat,2x,female,hwt,None,Open,3 +176,609,FmasterJ_C2x,4000,41:10.2,1.619302080803174,80,120,c-boat,2x,female,hwt,None,Open,3 +177,610,FmasterK_C2x,4000,46:55.1,1.4209086710951655,83,120,c-boat,2x,female,hwt,None,Open,3 +178,611,FmasterL_C2x,4000,55:07.5,1.2093726379440666,86,120,c-boat,2x,female,hwt,None,Open,3 +179,612,FmasterM_C2x,4000,07:47.2,8.561643835616438,89,120,c-boat,2x,female,hwt,None,Open,3 +180,613,Mix1314_2x,4000,17:16.4,3.8595137012736394,12,14,water,2x,mixed,hwt,None,Open,3 +181,614,Mix1516_2x,4000,16:52.2,3.951788184153329,12,16,water,2x,mixed,hwt,None,Open,3 +182,615,Mix1718_2x,4000,16:04.4,4.14765657403567,12,18,water,2x,mixed,hwt,None,Open,3 +183,616,MixSenB_2x,4000,15:21.8,4.3393360815795186,12,22,water,2x,mixed,hwt,None,Open,3 +184,617,MixSenA_2x,4000,15:03.4,4.427717511622759,12,120,water,2x,mixed,hwt,None,Open,3 +185,618,MixMasterA_2x,4000,15:21.8,4.3393360815795186,27,120,water,2x,mixed,hwt,None,Open,3 +186,619,MixMasterB_2x,4000,15:56.0,4.184100418410042,36,120,water,2x,mixed,hwt,None,Open,3 +187,620,MixMasterC_2x,4000,16:36.6,4.013646397752358,43,120,water,2x,mixed,hwt,None,Open,3 +188,621,MixMasterD_2x,4000,17:21.0,3.8424591738712777,50,120,water,2x,mixed,hwt,None,Open,3 +189,622,MixMasterE_2x,4000,18:05.9,3.6835804401878622,55,120,water,2x,mixed,hwt,None,Open,3 +190,623,MixMasterF_2x,4000,19:06.0,3.4904013961605584,60,120,water,2x,mixed,hwt,None,Open,3 +191,624,MixMasterG_2x,4000,20:27.5,3.258655804480652,65,120,water,2x,mixed,hwt,None,Open,3 +192,625,MixMasterH_2x,4000,22:23.6,2.9770765108663295,70,120,water,2x,mixed,hwt,None,Open,3 +193,626,MixMasterI_2x,4000,25:23.8,2.6250164063525396,75,120,water,2x,mixed,hwt,None,Open,3 +194,627,MixMasterJ_2x,4000,29:02.7,2.2952889194927413,80,120,water,2x,mixed,hwt,None,Open,3 +195,628,MixMasterK_2x,4000,33:04.4,2.0157226365652083,83,120,water,2x,mixed,hwt,None,Open,3 +196,629,MixMasterL_2x,4000,38:54.4,1.7135023989033584,86,120,water,2x,mixed,hwt,None,Open,3 +197,630,MixMasterM_2x,4000,47:50.1,1.3936796627295216,89,120,water,2x,mixed,hwt,None,Open,3 diff --git a/rowers/tests/testdata/thyro.csv b/rowers/tests/testdata/thyro.csv new file mode 100644 index 00000000..440d2686 --- /dev/null +++ b/rowers/tests/testdata/thyro.csv @@ -0,0 +1,1081 @@ +,index, lapIdx, Horizontal (meters),Distance (IMP),TimeStamp (sec), Stroke500mPace (sec/500m),GPS Speed,Split (IMP),Speed (IMP), Cadence (stokes/min),Total Strokes,Distance/Stroke (GPS),Distance/Stroke (IMP), HRCur (bpm), Power (watts),catch,slip,finish,wash, AverageDriveForce (lbs),driveenergy, PeakDriveForce (lbs),peakforceangle, latitude, longitude,GPSSpeed,GPSDistance,ImpellerSpeed,ImpellerDistance,cum_dist, ElapsedTime (sec), DriveLength (meters), StrokeDistance (meters), DriveTime (ms), DragFactor, StrokeRecoveryTime (ms), AverageBoatSpeed (m/s), AverageDriveForce (N), PeakDriveForce (N), Calories (kCal), WorkoutState, Stroke Number,originalvelo,hr_ut2,hr_ut1,hr_at,hr_tr,hr_an,hr_max,lim_ut2,lim_ut1,lim_at,lim_tr,lim_an,lim_max,pw_ut2,pw_ut1,pw_at,pw_tr,pw_an,pw_max,limpw_ut2,limpw_ut1,limpw_at,limpw_tr,limpw_an +0,0,0.0,1.5,0.0,1603186921.0,537.6344086021505,0.93,0.0,0.0,42.5,1,1.5,0.0,89.0,0.0,15.0,0.0,32.0,0.0,-0.6744270742004667,0.0,3.1473263462688448,18.0,52.2249428,6.845823599999999,0.93,1.5,0.0,0.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,0.93,-3.0,14.000000000000002,1.0,4.0,0,0.93,0.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1,1,0.0,1.5,0.0,1603186921.65,537.6344086021505,0.93,0.0,0.0,42.5,1,1.5,0.0,89.0,0.0,22.0,0.0,27.0,0.0,-2.9225173215353566,0.0,-1.7984721978679112,26.0,52.2249428,6.845823599999999,0.93,1.5,0.0,0.0,1.5,0.6500000953674316,0.0,0.0,0.0,0.0,0.0,0.93,-13.0,-8.0,1.0,4.0,0,0.93,0.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +2,2,0.0,3.3,0.0,1603186922.3,420.1680672268908,1.19,0.0,0.0,14.5,2,1.8,0.0,89.0,96.0,-6.0,6.0,44.0,8.0,38.89196127889358,397.2413793103448,86.10185647292623,18.0,52.2249315,6.8458413,1.19,3.3,0.0,0.0,3.3,1.2999999523162842,0.0,0.0,0.0,0.0,0.0,1.19,173.0,383.0,1.0,4.0,1,1.19,0.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +3,3,0.0,5.6,0.0,1603186924.0,362.3188405797102,1.38,0.0,0.0,37.0,3,2.3,0.0,88.0,109.0,1.0,5.0,45.0,9.0,47.65951324349965,176.75675675675674,80.03201280512205,24.0,52.22491779999999,6.8458660999999985,1.38,5.6,0.0,0.0,5.6,3.0,0.0,0.0,0.0,0.0,0.0,1.38,212.0,356.0,1.0,4.0,2,1.38,0.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +4,4,0.0,9.1,0.0,1603186925.5,294.11764705882354,1.7,0.0,0.0,41.5,4,3.5,0.0,88.0,60.0,0.0,10.0,41.0,8.0,29.449982240087053,86.74698795180723,56.87668325757269,19.0,52.2248971,6.845905499999999,1.7,9.1,0.0,0.0,9.1,4.5,0.0,0.0,0.0,0.0,0.0,1.7,131.0,253.0,1.0,4.0,3,1.7,88.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,60.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +5,5,0.0,11.6,0.0,1603186927.0,248.75621890547265,2.01,0.0,0.0,43.0,5,2.5,0.0,88.0,51.0,2.0,8.0,41.0,11.0,21.356857349681444,71.16279069767442,48.33394031770011,14.0,52.2248824,6.845933099999999,2.01,11.6,0.0,0.0,11.6,6.0,0.0,0.0,0.0,0.0,0.0,2.01,95.0,215.0,1.0,4.0,4,2.01,88.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,51.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +6,6,0.0,14.5,0.0,1603186928.1,236.96682464454975,2.11,0.0,0.0,43.0,6,3.0,0.0,88.0,69.0,1.0,6.0,40.0,7.0,32.3724995616224,96.27906976744185,57.101492282306175,15.0,52.2248645,6.845965,2.11,14.5,0.0,0.0,14.5,7.099999904632568,0.0,0.0,0.0,0.0,0.0,2.11,143.99999999999997,254.0,1.0,4.0,5,2.1100000000000003,88.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,69.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +7,7,0.0,17.6,0.0,1603186929.5,234.74178403755866,2.13,0.0,0.0,43.0,7,3.0,0.0,87.0,86.0,0.0,7.0,42.0,9.0,36.64387103155868,120.0,73.06293303838389,23.0,52.2248464,6.8459982,2.13,17.6,0.0,0.0,17.6,8.5,0.0,0.0,0.0,0.0,0.0,2.13,163.0,325.0,1.0,4.0,6,2.1300000000000003,87.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,86.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +8,8,0.0,20.7,0.0,1603186930.9,234.74178403755866,2.13,0.0,0.0,43.5,8,3.2,0.0,88.0,95.0,-1.0,6.0,45.0,10.0,41.14005152622847,131.0344827586207,74.63659621151831,16.0,52.22482720000001,6.8460327,2.13,20.7,0.0,0.0,20.7,9.900000095367432,0.0,0.0,0.0,0.0,0.0,2.13,183.0,332.0,1.0,4.0,7,2.1300000000000003,88.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,95.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +9,9,0.0,24.6,0.0,1603186932.5,225.2252252252252,2.22,0.0,0.0,39.5,9,3.8,0.0,89.0,95.0,23.0,6.0,28.0,10.0,-0.2248090247334889,144.30379746835442,2.6977082968018657,23.0,52.2248034,6.8460731,2.22,24.6,0.0,0.0,24.6,11.5,0.0,0.0,0.0,0.0,0.0,2.22,-1.0,12.0,1.0,4.0,8,2.22,89.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,95.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +10,10,0.0,24.6,0.0,1603186933.6999998,225.2252252252252,2.22,0.0,0.0,39.5,9,3.8,0.0,89.0,67.0,-3.0,6.0,35.0,9.0,29.674791264820534,101.77215189873418,69.69079766738156,14.0,52.2248034,6.8460731,2.22,24.6,0.0,0.0,24.6,12.699999809265137,0.0,0.0,0.0,0.0,0.0,2.22,132.0,310.0,1.0,4.0,8,2.22,89.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,67.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +11,11,0.0,29.9,0.0,1603186934.9,220.26431718061676,2.27,0.0,0.0,25.5,10,5.4,0.0,90.0,96.0,-7.0,6.0,42.0,10.0,31.24845443795496,225.88235294117646,66.9930893705797,7.0,52.2247708,6.846130900000001,2.27,29.9,0.0,0.0,29.9,13.900000095367432,0.0,0.0,0.0,0.0,0.0,2.27,139.0,298.0,1.0,4.0,9,2.27,90.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,96.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +12,12,0.0,33.1,0.0,1603186936.3,225.2252252252252,2.22,0.0,0.0,39.0,11,3.2,0.0,90.0,83.0,-4.0,8.0,43.0,11.0,30.12440931428751,127.6923076923077,71.48926986524947,10.0,52.2247518,6.8461661,2.22,33.1,0.0,0.0,33.1,15.299999952316284,0.0,0.0,0.0,0.0,0.0,2.22,134.0,318.0,1.0,4.0,10,2.22,90.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,83.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +13,13,0.0,37.7,0.0,1603186938.3,220.26431718061676,2.27,0.0,0.0,53.0,12,4.6,0.0,89.0,83.0,-4.0,8.0,43.0,11.0,30.12440931428751,93.9622641509434,71.48926986524947,10.0,52.22472379999999,6.8462162,2.27,37.7,0.0,0.0,37.7,17.299999952316284,0.0,0.0,0.0,0.0,0.0,2.27,134.0,318.0,1.0,4.0,12,2.27,89.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,83.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +14,14,0.0,38.6,0.0,1603186939.0,220.26431718061676,2.27,0.0,0.0,37.5,13,0.9,0.0,90.0,34.0,-9.0,9.0,41.0,12.0,23.380138572282853,54.4,49.45798544136756,12.0,52.2247186,6.8462257,2.27,38.6,0.0,0.0,38.6,18.0,0.0,0.0,0.0,0.0,0.0,2.27,104.0,220.0,1.0,4.0,12,2.27,90.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,34.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +15,15,0.0,42.9,0.0,1603186940.6999998,227.27272727272725,2.2,0.0,0.0,38.5,14,4.3,0.0,91.0,94.0,-4.0,7.0,44.0,9.0,33.04692663582287,146.4935064935065,77.33430450832019,13.0,52.2246923,6.8462714999999985,2.2,42.9,0.0,0.0,42.9,19.699999809265137,0.0,0.0,0.0,0.0,0.0,2.2,147.0,344.0,1.0,4.0,13,2.2,91.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,94.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +16,16,0.0,45.7,0.0,1603186942.1,223.2142857142857,2.24,0.0,0.0,39.0,15,2.9,0.0,92.0,99.0,-4.0,5.0,46.0,11.0,40.24081542729451,152.30769230769232,72.16369693944993,10.0,52.2246754,6.846302900000001,2.24,45.7,0.0,0.0,45.7,21.09999990463257,0.0,0.0,0.0,0.0,0.0,2.24,179.0,321.0,1.0,4.0,14,2.24,92.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,99.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +17,17,0.0,50.0,0.0,1603186943.6999998,211.86440677966104,2.36,0.0,0.0,37.0,16,4.3,0.0,92.0,92.0,-5.0,7.0,46.0,11.0,37.318298105759155,149.1891891891892,72.16369693944993,10.0,52.2246494,6.8463489,2.36,50.0,0.0,0.0,50.0,22.699999809265137,0.0,0.0,0.0,0.0,0.0,2.36,166.0,321.0,1.0,4.0,15,2.36,92.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,92.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +18,18,0.0,54.0,0.0,1603186945.3,204.08163265306118,2.45,0.0,0.0,38.0,17,4.0,0.0,91.0,104.0,-7.0,7.0,43.0,8.0,41.81447860042893,164.21052631578948,78.00873158252065,12.0,52.2246254,6.8463922,2.45,54.0,0.0,0.0,54.0,24.299999952316284,0.0,0.0,0.0,0.0,0.0,2.45,186.0,347.0,1.0,4.0,16,2.4500000000000006,91.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,104.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +19,19,0.0,58.1,0.0,1603186946.9,200.0,2.5,0.0,0.0,40.5,18,4.1,0.0,90.0,64.0,-1.0,6.0,42.0,11.0,25.403419794884247,94.81481481481481,57.775919356506655,18.0,52.2246008,6.8464366,2.5,58.1,0.0,0.0,58.1,25.90000009536743,0.0,0.0,0.0,0.0,0.0,2.5,113.0,257.0,1.0,4.0,17,2.5,90.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,64.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +20,20,0.0,61.1,0.0,1603186948.1999998,198.4126984126984,2.52,0.0,0.0,42.0,19,3.0,0.0,91.0,88.0,-3.0,8.0,45.0,10.0,32.3724995616224,125.71428571428571,67.21789839531317,24.0,52.2245826,6.8464693,2.52,61.1,0.0,0.0,61.1,27.199999809265137,0.0,0.0,0.0,0.0,0.0,2.52,143.99999999999997,299.0,1.0,4.0,18,2.52,91.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,88.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +21,21,0.0,65.2,0.0,1603186949.6999998,198.4126984126984,2.52,0.0,0.0,42.5,20,4.1,0.0,92.0,97.0,0.0,5.0,47.0,12.0,40.01600640256103,136.94117647058823,76.88468645885321,12.0,52.2245571,6.8465122,2.52,65.2,0.0,0.0,65.2,28.699999809265137,0.0,0.0,0.0,0.0,0.0,2.52,178.0,342.00000000000006,1.0,4.0,19,2.52,92.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,97.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +22,22,0.0,68.3,0.0,1603186951.1,196.078431372549,2.55,0.0,0.0,40.0,21,3.2,0.0,93.0,91.0,-1.0,7.0,46.0,10.0,37.318298105759155,136.5,76.65987743411971,13.0,52.2245373,6.8465451,2.55,68.3,0.0,0.0,68.3,30.09999990463257,0.0,0.0,0.0,0.0,0.0,2.55,166.0,340.99999999999994,1.0,4.0,20,2.5500000000000003,93.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,91.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +23,23,0.0,73.4,0.0,1603186952.9,192.3076923076923,2.6,0.0,0.0,33.0,22,5.0,0.0,93.0,121.0,-23.0,7.0,47.0,11.0,45.18661397143127,220.0,89.92360989339554,10.0,52.2245052,6.8465974,2.6,73.4,0.0,0.0,73.4,31.90000009536743,0.0,0.0,0.0,0.0,0.0,2.6,201.0,400.0,1.0,4.0,21,2.6,93.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,121.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +24,24,0.0,80.2,0.0,1603186955.5,190.11406844106463,2.63,0.0,0.0,24.0,23,6.9,0.0,94.0,109.0,-30.0,7.0,44.0,11.0,47.43470421876616,272.5,89.02437379446161,0.0,52.22446220000001,6.8466697,2.63,80.2,0.0,0.0,80.2,34.5,0.0,0.0,0.0,0.0,0.0,2.63,211.0,396.00000000000006,1.0,4.0,22,2.63,94.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,109.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +25,25,0.0,86.9,0.0,1603186957.9,185.1851851851852,2.7,0.0,0.0,25.0,24,6.6,0.0,94.0,110.0,-32.0,10.0,45.0,12.0,46.08585007036522,264.0,90.14841891812904,4.0,52.2244194,6.8467371,2.7,86.9,0.0,0.0,86.9,36.90000009536743,0.0,0.0,0.0,0.0,0.0,2.7,205.0,401.0,1.0,4.0,23,2.7,94.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,110.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +26,26,0.0,92.8,0.0,1603186960.1,179.8561151079137,2.78,0.0,0.0,25.5,25,5.9,0.0,96.0,120.0,-31.0,8.0,48.0,13.0,47.20989519403267,282.3529411764706,87.90032867079417,3.0,52.224382,6.8467992,2.78,92.8,0.0,0.0,92.8,39.09999990463257,0.0,0.0,0.0,0.0,0.0,2.78,210.0,391.0,1.0,4.0,24,2.78,96.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,120.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +27,27,0.0,100.2,0.0,1603186962.5,173.61111111111111,2.88,0.0,0.0,25.5,26,7.4,0.0,97.0,135.0,-34.0,7.0,45.0,10.0,51.031648614501975,317.6470588235294,93.74536331386489,1.0,52.2243343,6.8468752,2.88,100.2,0.0,0.0,100.2,41.5,0.0,0.0,0.0,0.0,0.0,2.88,227.0,417.0,1.0,4.0,25,2.88,97.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,135.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +28,28,0.0,109.0,0.0,1603186965.5,173.01038062283737,2.89,0.0,0.0,20.0,27,8.8,0.0,109.0,88.0,-35.0,8.0,46.0,14.0,43.16333274882987,264.0,89.2491828191951,-3.0,52.2242783,6.8469650999999985,2.89,109.0,0.0,0.0,109.0,44.5,0.0,0.0,0.0,0.0,0.0,2.89,192.0,397.0,1.0,4.0,26,2.89,109.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,88.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +29,29,0.0,115.8,0.0,1603186967.9,177.9359430604982,2.81,0.0,0.0,25.5,28,6.8,0.0,110.0,122.0,-35.0,10.0,45.0,13.0,46.5354681198322,287.05882352941177,89.69880086866208,3.0,52.2242343,6.8470347999999985,2.81,115.8,0.0,0.0,115.8,46.90000009536743,0.0,0.0,0.0,0.0,0.0,2.81,207.0,399.0,1.0,4.0,27,2.81,110.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,122.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +30,30,0.0,122.6,0.0,1603186970.3,177.9359430604982,2.81,0.0,0.0,24.5,29,6.9,0.0,108.0,134.0,-38.0,8.0,45.0,12.0,52.83012081236989,328.16326530612247,100.93925210533651,-3.0,52.2241896,6.8471039000000005,2.81,122.6,0.0,0.0,122.6,49.299999952316284,0.0,0.0,0.0,0.0,0.0,2.81,235.0,449.0,1.0,4.0,28,2.81,108.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,134.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +31,31,0.0,130.1,0.0,1603186972.9,173.61111111111111,2.88,0.0,0.0,22.5,30,7.5,0.0,107.0,130.0,-38.0,8.0,45.0,11.0,53.50454788657036,346.6666666666667,103.6369604021384,-1.0,52.2241409,6.847180099999999,2.88,130.1,0.0,0.0,130.1,51.90000009536743,0.0,0.0,0.0,0.0,0.0,2.88,238.0,461.0,1.0,4.0,29,2.88,107.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,130.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +32,32,0.0,138.7,0.0,1603186975.9,171.8213058419244,2.91,0.0,0.0,21.0,31,8.6,0.0,108.0,134.0,-47.0,7.0,44.0,12.0,54.6285930102378,382.85714285714283,111.280467243077,-10.0,52.22408529999999,6.847266499999999,2.91,138.7,0.0,0.0,138.7,54.90000009536743,0.0,0.0,0.0,0.0,0.0,2.91,243.0,495.0,1.0,4.0,30,2.91,108.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,134.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +33,33,0.0,147.0,0.0,1603186978.6999998,170.64846416382252,2.93,0.0,0.0,20.5,32,8.3,0.0,109.0,144.0,-47.0,8.0,46.0,13.0,61.372863752242466,421.4634146341463,110.83084919361002,-8.0,52.2240315,6.847350200000001,2.93,147.0,0.0,0.0,147.0,57.69999980926514,0.0,0.0,0.0,0.0,0.0,2.93,273.0,493.0,1.0,4.0,31,2.93,109.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,144.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +34,34,0.0,156.6,0.0,1603186981.9,167.78523489932888,2.98,0.0,0.0,19.5,33,9.6,0.0,110.0,128.0,-48.0,7.0,45.0,13.0,55.30302008443826,393.84615384615387,106.33466869894023,-9.0,52.2239706,6.8474502999999975,2.98,156.6,0.0,0.0,156.6,60.90000009536743,0.0,0.0,0.0,0.0,0.0,2.98,246.0,473.0,1.0,4.0,32,2.9799999999999995,110.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,128.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +35,35,0.0,166.5,0.0,1603186985.1,165.56291390728478,3.02,0.0,0.0,18.0,34,10.0,0.0,113.0,138.0,-59.0,9.0,45.0,11.0,57.101492282306175,460.0,110.38123114414304,-11.0,52.2239059,6.8475503,3.02,166.5,0.0,0.0,166.5,64.09999990463257,0.0,0.0,0.0,0.0,0.0,3.02,254.0,491.0,1.0,4.0,33,3.02,113.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,138.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +36,36,0.0,176.9,0.0,1603186988.5,164.4736842105263,3.04,0.0,0.0,17.5,35,10.4,0.0,111.0,119.0,-59.0,8.0,44.0,12.0,51.93088471343594,408.0,94.86940843753231,-4.0,52.2238375,6.8476542,3.04,176.9,0.0,0.0,176.9,67.5,0.0,0.0,0.0,0.0,0.0,3.04,231.0,422.0,1.0,4.0,34,3.0400000000000005,111.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,119.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +37,37,0.0,186.8,0.0,1603186991.9,165.56291390728478,3.02,0.0,0.0,18.0,36,9.9,0.0,116.0,133.0,-58.0,8.0,45.0,16.0,57.55111033177316,443.3333333333333,107.00909577314071,-19.0,52.2237727,6.847754400000001,3.02,186.8,0.0,0.0,186.8,70.90000009536743,0.0,0.0,0.0,0.0,0.0,3.02,256.0,476.0,1.0,4.0,35,3.02,116.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,133.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +38,38,0.0,197.0,0.0,1603186995.3,168.3501683501683,2.97,0.0,0.0,17.5,37,10.1,0.0,117.0,135.0,-60.0,9.0,46.0,14.0,58.45034643070712,462.85714285714283,109.48199504520909,-22.0,52.2237057,6.8478549,2.97,197.0,0.0,0.0,197.0,74.29999995231628,0.0,0.0,0.0,0.0,0.0,2.97,260.0,487.0,1.0,4.0,36,2.9700000000000006,117.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,135.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +39,39,0.0,207.1,0.0,1603186999.0,172.41379310344828,2.9,0.0,0.0,16.0,38,10.2,0.0,120.0,120.0,-60.0,9.0,44.0,15.0,57.55111033177316,450.0,105.21062357527279,-23.0,52.2236395,6.8479578,2.9,207.1,0.0,0.0,207.1,78.0,0.0,0.0,0.0,0.0,0.0,2.9,256.0,468.0,1.0,4.0,37,2.9,120.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,120.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +40,40,0.0,217.9,0.0,1603187002.5,173.01038062283737,2.89,0.0,0.0,16.5,39,10.8,0.0,123.0,134.0,-60.0,7.0,46.0,13.0,61.14805472750896,487.27272727272725,107.00909577314071,-3.0,52.2235704,6.8480687000000025,2.89,217.9,0.0,0.0,217.9,81.5,0.0,0.0,0.0,0.0,0.0,2.89,272.0,476.0,1.0,4.0,38,2.89,123.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,134.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +41,41,0.0,229.0,0.0,1603187006.3,171.8213058419244,2.91,0.0,0.0,16.0,40,11.1,0.0,128.0,133.0,-60.0,8.0,47.0,13.0,63.62095399957736,498.75,109.70680406994256,-23.0,52.2234974,6.848179300000001,2.91,229.0,0.0,0.0,229.0,85.29999995231628,0.0,0.0,0.0,0.0,0.0,2.91,283.0,488.0,1.0,4.0,39,2.91,128.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,133.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +42,42,0.0,239.7,0.0,1603187009.9,171.8213058419244,2.91,0.0,0.0,17.0,41,10.7,0.0,127.0,130.0,-60.0,8.0,45.0,12.0,58.22553740597362,458.8235294117647,105.88505064947329,-24.0,52.2234278,6.848287400000001,2.91,239.7,0.0,0.0,239.7,88.90000009536743,0.0,0.0,0.0,0.0,0.0,2.91,259.0,471.0,1.0,4.0,40,2.91,127.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,130.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +43,43,0.0,249.9,0.0,1603187013.3,170.06802721088437,2.94,0.0,0.0,17.0,42,10.2,0.0,127.0,130.0,-60.0,8.0,46.0,15.0,58.22553740597362,458.8235294117647,103.4121513774049,-17.0,52.2233607,6.8483896999999985,2.94,249.9,0.0,0.0,249.9,92.29999995231628,0.0,0.0,0.0,0.0,0.0,2.94,259.0,460.0,1.0,4.0,41,2.94,127.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,130.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +44,44,0.0,260.4,0.0,1603187017.0,170.64846416382252,2.93,0.0,0.0,16.5,43,10.5,0.0,127.0,126.0,-61.0,9.0,43.0,13.0,58.22553740597362,458.1818181818182,109.03237699574213,-9.0,52.2232932,6.8484966,2.93,260.4,0.0,0.0,260.4,96.0,0.0,0.0,0.0,0.0,0.0,2.93,259.0,485.0,1.0,4.0,42,2.93,127.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,126.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +45,45,0.0,272.0,0.0,1603187020.6999998,170.06802721088437,2.94,0.0,0.0,16.0,44,11.6,0.0,127.0,131.0,-60.0,7.0,47.0,14.0,62.04729082644294,491.25,109.48199504520909,-8.0,52.223218,6.8486137000000005,2.94,272.0,0.0,0.0,272.0,99.69999980926514,0.0,0.0,0.0,0.0,0.0,2.94,276.0,487.0,1.0,4.0,43,2.94,127.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,131.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +46,46,0.0,282.6,0.0,1603187024.3,168.9189189189189,2.96,0.0,0.0,17.0,45,10.6,0.0,131.0,136.0,-62.0,8.0,47.0,14.0,60.4736276533085,480.0,111.730085292544,-18.0,52.2231495,6.8487219,2.96,282.6,0.0,0.0,282.6,103.29999995231628,0.0,0.0,0.0,0.0,0.0,2.96,269.0,497.0,1.0,4.0,44,2.9600000000000004,131.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,136.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +47,47,0.0,293.3,0.0,1603187027.9,169.4915254237288,2.95,0.0,0.0,16.5,46,10.8,0.0,135.0,136.0,-60.0,8.0,48.0,14.0,60.02400960384154,494.54545454545456,108.80756797100862,-21.0,52.2230777,6.8488274,2.95,293.3,0.0,0.0,293.3,106.90000009536743,0.0,0.0,0.0,0.0,0.0,2.95,267.0,484.0,1.0,4.0,45,2.95,135.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,136.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +48,48,0.0,304.0,0.0,1603187031.5,170.06802721088437,2.94,0.0,0.0,16.5,47,10.6,0.0,135.0,144.0,-61.0,7.0,45.0,12.0,65.86904424691225,523.6363636363636,120.27282823241656,-17.0,52.2230076,6.8489331999999985,2.94,304.0,0.0,0.0,304.0,110.5,0.0,0.0,0.0,0.0,0.0,2.94,293.0,535.0,1.0,4.0,46,2.94,135.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,144.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +49,49,0.0,315.1,0.0,1603187035.3,171.8213058419244,2.91,0.0,0.0,16.0,48,11.2,0.0,137.0,134.0,-59.0,7.0,47.0,13.0,66.76828034584621,502.5,118.69916505928214,-12.0,52.2229314,6.849039500000001,2.91,315.1,0.0,0.0,315.1,114.29999995231628,0.0,0.0,0.0,0.0,0.0,2.91,297.0,528.0,1.0,4.0,47,2.91,137.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,134.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +50,50,0.0,325.9,0.0,1603187038.9,170.06802721088437,2.94,0.0,0.0,17.0,49,10.7,0.0,136.0,138.0,-60.0,8.0,47.0,13.0,62.04729082644294,487.05882352941177,107.90833187207468,-8.0,52.222859,6.8491437999999984,2.94,325.9,0.0,0.0,325.9,117.90000009536743,0.0,0.0,0.0,0.0,0.0,2.94,276.0,480.0,1.0,4.0,48,2.94,136.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,138.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +51,51,0.0,335.9,0.0,1603187042.3,167.78523489932888,2.98,0.0,0.0,17.5,50,10.0,0.0,136.0,123.0,-62.0,9.0,47.0,14.0,53.50454788657036,421.7142857142857,96.89268966013373,0.0,52.2227922,6.8492429,2.98,335.9,0.0,0.0,335.9,121.29999995231628,0.0,0.0,0.0,0.0,0.0,2.98,238.0,431.0,1.0,4.0,49,2.9799999999999995,136.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,123.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +52,52,0.0,345.3,0.0,1603187045.5,170.64846416382252,2.93,0.0,0.0,18.0,51,9.4,0.0,137.0,153.0,-60.0,8.0,46.0,13.0,64.07057204904433,510.0,115.10222066354632,-12.0,52.222731,6.849338499999999,2.93,345.3,0.0,0.0,345.3,124.5,0.0,0.0,0.0,0.0,0.0,2.93,285.0,512.0,1.0,4.0,50,2.93,137.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,153.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +53,53,0.0,355.7,0.0,1603187048.9,169.4915254237288,2.95,0.0,0.0,18.0,52,10.3,0.0,137.0,157.0,-60.0,6.0,48.0,14.0,66.76828034584621,523.3333333333334,118.47435603454865,-24.0,52.2226643,6.8494438,2.95,355.7,0.0,0.0,355.7,127.90000009536743,0.0,0.0,0.0,0.0,0.0,2.95,297.0,527.0,1.0,4.0,51,2.95,137.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,157.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +54,54,0.0,366.4,0.0,1603187052.3,163.93442622950818,3.05,0.0,0.0,18.0,53,10.8,0.0,138.0,157.0,-60.0,7.0,48.0,13.0,65.19461717271179,523.3333333333334,117.79992896034818,-22.0,52.222595,6.8495541,3.05,366.4,0.0,0.0,366.4,131.29999995231628,0.0,0.0,0.0,0.0,0.0,3.05,290.00000000000006,524.0,1.0,4.0,52,3.0500000000000003,138.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,157.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +55,55,0.0,376.8,0.0,1603187055.5,160.25641025641025,3.12,0.0,0.0,18.0,54,10.4,0.0,139.0,152.0,-61.0,8.0,47.0,11.0,65.41942619744528,506.6666666666667,114.42779358934584,-19.0,52.2225274,6.8496589000000005,3.12,376.8,0.0,0.0,376.8,134.5,0.0,0.0,0.0,0.0,0.0,3.12,291.00000000000006,509.0,1.0,4.0,53,3.12,139.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,152.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +56,56,0.0,387.3,0.0,1603187059.0,158.7301587301587,3.15,0.0,0.0,17.5,55,10.4,0.0,140.0,134.0,-61.0,8.0,45.0,12.0,61.59767277697596,459.42857142857144,102.06329722900395,-4.0,52.2224579,6.8497615000000005,3.15,387.3,0.0,0.0,387.3,138.0,0.0,0.0,0.0,0.0,0.0,3.15,274.0,454.0,1.0,4.0,54,3.1500000000000004,140.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,134.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +57,57,0.0,397.4,0.0,1603187062.1,157.7287066246057,3.17,0.0,0.0,19.0,56,10.1,0.0,141.0,162.0,-61.0,7.0,46.0,12.0,65.19461717271179,511.57894736842104,113.52855749041193,-11.0,52.2223891,6.8498579,3.17,397.4,0.0,0.0,397.4,141.09999990463257,0.0,0.0,0.0,0.0,0.0,3.17,290.00000000000006,505.0,1.0,4.0,55,3.1699999999999995,141.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,162.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +58,58,0.0,408.6,0.0,1603187065.5,156.73981191222572,3.19,0.0,0.0,18.0,57,11.3,0.0,135.0,150.0,-60.0,7.0,49.0,16.0,61.372863752242466,500.0,115.10222066354632,-14.0,52.2223131,6.8499674,3.19,408.6,0.0,0.0,408.6,144.5,0.0,0.0,0.0,0.0,0.0,3.19,273.0,512.0,1.0,4.0,56,3.19,135.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,150.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +59,59,0.0,419.2,0.0,1603187068.9,157.23270440251568,3.18,0.0,0.0,18.0,58,10.6,0.0,137.0,153.0,-62.0,9.0,47.0,12.0,63.171335950110375,510.0,118.92397408401564,-20.0,52.2222421,6.85007,3.18,419.2,0.0,0.0,419.2,147.90000009536743,0.0,0.0,0.0,0.0,0.0,3.18,281.0,529.0,1.0,4.0,57,3.180000000000001,137.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,153.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +60,60,0.0,429.4,0.0,1603187072.1,159.2356687898089,3.14,0.0,0.0,17.5,59,10.2,0.0,139.0,138.0,-60.0,8.0,48.0,16.0,54.85340203497128,473.14285714285717,114.20298456461235,-16.0,52.22217620000001,6.8501747,3.14,429.4,0.0,0.0,429.4,151.09999990463257,0.0,0.0,0.0,0.0,0.0,3.14,244.0,508.0,1.0,4.0,58,3.140000000000001,139.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,138.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +61,61,0.0,440.4,0.0,1603187075.6999998,161.29032258064515,3.1,0.0,0.0,17.5,60,11.0,0.0,144.0,151.0,-60.0,8.0,46.0,11.0,64.7449991232448,517.7142857142857,114.42779358934584,-17.0,52.2221046,6.850286200000001,3.1,440.4,0.0,0.0,440.4,154.69999980926514,0.0,0.0,0.0,0.0,0.0,3.1,287.99999999999994,509.0,1.0,4.0,59,3.1,0.0,144.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,151.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +62,62,0.0,451.1,0.0,1603187079.1,161.81229773462783,3.09,0.0,0.0,17.5,61,10.6,0.0,149.0,136.0,-61.0,7.0,47.0,14.0,57.32630130703967,466.2857142857143,110.38123114414304,-20.0,52.222035,6.8503928,3.09,451.1,0.0,0.0,451.1,158.09999990463257,0.0,0.0,0.0,0.0,0.0,3.09,255.0,491.0,1.0,4.0,60,3.09,0.0,0.0,149.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,136.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +63,63,0.0,461.7,0.0,1603187082.5,162.86644951140067,3.07,0.0,0.0,17.0,62,10.7,0.0,151.0,144.0,-60.0,7.0,49.0,15.0,60.4736276533085,508.2352941176471,110.15642211940956,-21.0,52.2219651,6.850499900000001,3.07,461.7,0.0,0.0,461.7,161.5,0.0,0.0,0.0,0.0,0.0,3.07,269.0,490.0,1.0,4.0,61,3.0699999999999994,0.0,0.0,151.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,144.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +64,64,0.0,472.0,0.0,1603187086.0,162.86644951140067,3.07,0.0,0.0,17.5,63,10.2,0.0,152.0,134.0,-61.0,6.0,46.0,11.0,56.87668325757269,459.42857142857144,104.08657845160536,-1.0,52.2218979,6.8506021,3.07,472.0,0.0,0.0,472.0,165.0,0.0,0.0,0.0,0.0,0.0,3.07,253.0,463.0,1.0,4.0,62,3.0699999999999994,0.0,0.0,152.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,134.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +65,65,0.0,483.1,0.0,1603187089.3,160.25641025641025,3.12,0.0,0.0,17.5,64,11.1,0.0,152.0,149.0,-60.0,7.0,48.0,14.0,61.372863752242466,510.85714285714283,110.60604016887652,-23.0,52.2218216,6.850707000000001,3.12,483.1,0.0,0.0,483.1,168.29999995231628,0.0,0.0,0.0,0.0,0.0,3.12,273.0,492.0,1.0,4.0,63,3.12,0.0,0.0,152.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,149.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +66,66,0.0,494.3,0.0,1603187093.0,158.7301587301587,3.15,0.0,0.0,17.5,65,11.2,0.0,149.0,151.0,-61.0,8.0,47.0,13.0,65.19461717271179,517.7142857142857,119.14878310874913,-20.0,52.2217476,6.8508185,3.15,494.3,0.0,0.0,494.3,172.0,0.0,0.0,0.0,0.0,0.0,3.15,290.00000000000006,530.0,1.0,4.0,64,3.1500000000000004,0.0,0.0,149.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,151.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +67,67,0.0,504.9,0.0,1603187096.3,159.7444089456869,3.13,0.0,0.0,17.5,66,10.6,0.0,147.0,138.0,-61.0,8.0,47.0,15.0,60.4736276533085,473.14285714285717,111.50527626781047,-17.0,52.2216782,6.8509254,3.13,504.9,0.0,0.0,504.9,175.29999995231628,0.0,0.0,0.0,0.0,0.0,3.13,269.0,496.0,1.0,4.0,65,3.13,0.0,0.0,147.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,138.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +68,68,0.0,515.5,0.0,1603187099.8,161.81229773462783,3.09,0.0,0.0,17.5,67,10.6,0.0,149.0,142.0,-60.0,6.0,48.0,12.0,61.59767277697596,486.85714285714283,108.13314089680814,-22.0,52.22160820000001,6.8510299,3.09,515.5,0.0,0.0,515.5,178.79999995231628,0.0,0.0,0.0,0.0,0.0,3.09,274.0,481.0,1.0,4.0,66,3.09,0.0,0.0,149.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,142.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +69,69,0.0,526.6,0.0,1603187103.3,161.81229773462783,3.09,0.0,0.0,17.0,68,11.1,0.0,147.0,139.0,-61.0,6.0,49.0,15.0,59.799200579108046,490.5882352941176,109.2571860204756,-22.0,52.2215329,6.8511375,3.09,526.6,0.0,0.0,526.6,182.29999995231628,0.0,0.0,0.0,0.0,0.0,3.09,266.0,486.0,1.0,4.0,67,3.09,0.0,0.0,147.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,139.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +70,70,0.0,537.4,0.0,1603187107.0,161.81229773462783,3.09,0.0,0.0,17.0,69,10.8,0.0,148.0,144.0,-61.0,7.0,47.0,13.0,63.39614497484386,508.2352941176471,117.79992896034818,-13.0,52.221459,6.8512397,3.09,537.4,0.0,0.0,537.4,186.0,0.0,0.0,0.0,0.0,0.0,3.09,282.0,524.0,1.0,4.0,68,3.09,0.0,0.0,148.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,144.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +71,71,0.0,548.5,0.0,1603187110.3,162.33766233766232,3.08,0.0,0.0,17.0,70,11.1,0.0,146.0,137.0,-60.0,8.0,47.0,14.0,61.82248180170944,483.52941176470586,112.85413041621143,-21.0,52.2213814,6.8513432,3.08,548.5,0.0,0.0,548.5,189.29999995231628,0.0,0.0,0.0,0.0,0.0,3.08,275.0,502.0,1.0,4.0,69,3.08,0.0,146.0,146.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,137.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +72,72,0.0,559.2,0.0,1603187113.6999998,159.7444089456869,3.13,0.0,0.0,17.5,71,10.7,0.0,146.0,146.0,-61.0,9.0,49.0,13.0,62.04729082644294,500.57142857142856,112.40451236674446,-17.0,52.2213066,6.851441499999999,3.13,559.2,0.0,0.0,559.2,192.69999980926514,0.0,0.0,0.0,0.0,0.0,3.13,276.0,500.00000000000006,1.0,4.0,70,3.13,0.0,146.0,146.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,146.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +73,73,0.0,569.9,0.0,1603187117.1,158.2278481012658,3.16,0.0,0.0,17.5,72,10.7,0.0,146.0,145.0,-62.0,7.0,47.0,13.0,57.55111033177316,497.14285714285717,116.67588383668074,-14.0,52.2212338,6.8515443,3.16,569.9,0.0,0.0,569.9,196.09999990463257,0.0,0.0,0.0,0.0,0.0,3.16,256.0,519.0,1.0,4.0,71,3.16,0.0,146.0,146.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,145.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +74,74,0.0,580.8,0.0,1603187120.5,158.2278481012658,3.16,0.0,0.0,18.0,73,10.9,0.0,145.0,156.0,-61.0,7.0,48.0,11.0,60.92324570277549,520.0,115.77664773774679,-14.0,52.2211594,6.8516474,3.16,580.8,0.0,0.0,580.8,199.5,0.0,0.0,0.0,0.0,0.0,3.16,271.0,515.0,1.0,4.0,72,3.16,0.0,145.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,156.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +75,75,0.0,592.0,0.0,1603187124.1,158.7301587301587,3.15,0.0,0.0,17.0,74,11.1,0.0,146.0,153.0,-60.0,7.0,48.0,13.0,63.845763024310855,540.0,119.14878310874913,-11.0,52.2210847,6.8517565000000005,3.15,592.0,0.0,0.0,592.0,203.09999990463257,0.0,0.0,0.0,0.0,0.0,3.15,284.0,530.0,1.0,4.0,73,3.1500000000000004,0.0,146.0,146.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,153.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +76,76,0.0,602.7,0.0,1603187127.6,160.77170418006432,3.11,0.0,0.0,17.0,75,10.8,0.0,146.0,150.0,-62.0,7.0,48.0,14.0,64.7449991232448,529.4117647058823,113.7533665151454,-16.0,52.2210121,6.8518604000000005,3.11,602.7,0.0,0.0,602.7,206.59999990463257,0.0,0.0,0.0,0.0,0.0,3.11,287.99999999999994,506.0,1.0,4.0,74,3.11,0.0,146.0,146.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,150.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +77,77,0.0,613.0,0.0,1603187131.0,161.81229773462783,3.09,0.0,0.0,17.5,76,10.3,0.0,148.0,155.0,-61.0,7.0,48.0,13.0,65.19461717271179,531.4285714285714,118.92397408401564,-17.0,52.2209423,6.8519588,3.09,613.0,0.0,0.0,613.0,210.0,0.0,0.0,0.0,0.0,0.0,3.09,290.00000000000006,529.0,1.0,4.0,75,3.09,0.0,0.0,148.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,155.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +78,78,0.0,624.8,0.0,1603187134.5,159.2356687898089,3.14,0.0,0.0,17.0,77,11.8,0.0,148.0,140.0,-62.0,7.0,47.0,12.0,60.4736276533085,494.11764705882354,112.17970334201095,-15.0,52.2208624,6.8520724,3.14,624.8,0.0,0.0,624.8,213.5,0.0,0.0,0.0,0.0,0.0,3.14,269.0,499.00000000000006,1.0,4.0,76,3.140000000000001,0.0,0.0,148.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,140.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +79,79,0.0,636.0,0.0,1603187138.1999998,158.7301587301587,3.15,0.0,0.0,16.5,78,11.2,0.0,152.0,142.0,-61.0,8.0,47.0,13.0,61.372863752242466,516.3636363636364,120.04801920768308,-20.0,52.2207865,6.8521799,3.15,636.0,0.0,0.0,636.0,217.19999980926514,0.0,0.0,0.0,0.0,0.0,3.15,273.0,534.0,1.0,4.0,77,3.1500000000000004,0.0,0.0,152.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,142.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +80,80,0.0,646.5,0.0,1603187141.5,161.81229773462783,3.09,0.0,0.0,17.0,79,10.5,0.0,149.0,142.0,31.0,8.0,35.0,13.0,-1.3488541484009329,501.1764705882353,0.8992360989339556,32.0,52.2207156,6.852283,3.09,646.5,0.0,0.0,646.5,220.5,0.0,0.0,0.0,0.0,0.0,3.09,-6.0,4.0,1.0,4.0,78,3.09,0.0,0.0,149.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,142.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +81,81,0.0,646.5,0.0,1603187141.5,161.81229773462783,3.09,0.0,0.0,17.0,79,10.5,0.0,149.0,43.0,-48.0,4.0,37.0,15.0,36.86868005629218,151.76470588235293,64.07057204904433,3.0,52.2207156,6.852283,3.09,646.5,0.0,0.0,646.5,220.5,0.0,0.0,0.0,0.0,0.0,3.09,164.0,285.0,1.0,4.0,78,3.09,0.0,0.0,149.0,0.0,0.0,0.0,142,146,160,167,180,192,43.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +82,82,0.0,646.5,0.0,1603187141.5,161.81229773462783,3.09,0.0,0.0,17.0,79,10.5,0.0,149.0,0.0,15.0,4.0,27.0,15.0,0.2248090247334889,0.0,3.8217534204693107,15.0,52.2207156,6.852283,3.09,646.5,0.0,0.0,646.5,220.5,0.0,0.0,0.0,0.0,0.0,3.09,1.0,17.0,1.0,4.0,78,3.09,0.0,0.0,149.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +83,83,0.0,646.5,0.0,1603187141.5,161.81229773462783,3.09,0.0,0.0,17.0,79,10.5,0.0,149.0,149.0,-61.0,7.0,47.0,12.0,66.76828034584621,525.8823529411765,119.37359213348259,-14.0,52.2207156,6.852283,3.09,646.5,0.0,0.0,646.5,220.5,0.0,0.0,0.0,0.0,0.0,3.09,297.0,531.0,1.0,4.0,78,3.09,0.0,0.0,149.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,149.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +84,84,0.0,668.0,0.0,1603187159.9,294.11764705882354,1.7,0.0,0.0,10.0,80,21.5,0.0,144.0,56.0,-44.0,3.0,41.0,14.0,38.667152254160094,336.0,76.43506840938622,3.0,52.2205765,6.8525,1.7,668.0,0.0,0.0,668.0,238.90000009536743,0.0,0.0,0.0,0.0,0.0,1.7,172.0,339.99999999999994,1.0,4.0,81,1.7,0.0,144.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,56.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +85,85,0.0,668.3,0.0,1603187162.9,1562.5,0.32,0.0,0.0,25.5,81,0.3,0.0,143.0,56.0,-44.0,3.0,41.0,14.0,38.667152254160094,131.76470588235293,76.43506840938622,3.0,52.2205856,6.852516900000001,0.32,668.3,0.0,0.0,668.3,241.90000009536743,0.0,0.0,0.0,0.0,0.0,0.32,172.0,339.99999999999994,1.0,4.0,82,0.32,0.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +86,86,0.0,668.6,0.0,1603187165.1,1250.0,0.4,0.0,0.0,20.0,82,0.3,0.0,144.0,59.0,-40.0,2.0,40.0,11.0,42.93852372409639,177.0,83.62895720085788,-2.0,52.2205915,6.852528,0.4,668.6,0.0,0.0,668.6,244.09999990463257,0.0,0.0,0.0,0.0,0.0,0.4,191.0,372.0,1.0,4.0,83,0.4,0.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +87,87,0.0,668.6,0.0,1603187168.3,1111.111111111111,0.45,0.0,0.0,26.5,83,0.0,0.0,142.0,75.0,-10.0,2.0,39.0,10.0,46.08585007036522,169.81132075471697,85.2026203739923,4.0,52.2206134,6.8525385,0.45,668.6,0.0,0.0,668.6,247.29999995231628,0.0,0.0,0.0,0.0,0.0,0.45,205.0,379.0,1.0,4.0,84,0.45,0.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +88,88,0.0,668.6,0.0,1603187170.1,833.3333333333335,0.6,0.0,0.0,22.5,84,0.0,0.0,140.0,103.0,-7.0,3.0,38.0,9.0,43.388141773563355,274.6666666666667,82.50491207719044,7.0,52.2206265,6.8525382,0.6,668.6,0.0,0.0,668.6,249.09999990463257,0.0,0.0,0.0,0.0,0.0,0.6,193.0,367.0,1.0,4.0,85,0.5999999999999999,0.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +89,89,0.0,668.6,0.0,1603187171.4,526.3157894736843,0.95,0.0,0.0,43.0,85,0.0,0.0,140.0,111.0,-6.0,2.0,42.0,11.0,42.93852372409639,154.88372093023256,73.51255108785088,11.0,52.2206413,6.852531599999999,0.95,668.6,0.0,0.0,668.6,250.40000009536743,0.0,0.0,0.0,0.0,0.0,0.95,191.0,327.0,1.0,4.0,86,0.9499999999999998,0.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +90,90,0.0,668.6,0.0,1603187173.0,420.1680672268908,1.19,0.0,0.0,50.5,86,0.0,0.0,139.0,111.0,-6.0,2.0,42.0,11.0,42.93852372409639,131.88118811881188,73.51255108785088,11.0,52.2206578,6.8525198000000005,1.19,668.6,0.0,0.0,668.6,252.0,0.0,0.0,0.0,0.0,0.0,1.19,191.0,327.0,1.0,4.0,87,1.19,0.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +91,91,0.0,668.6,0.0,1603187173.6999998,357.1428571428572,1.4,0.0,0.0,45.0,87,0.0,0.0,138.0,170.0,-48.0,2.0,47.0,13.0,75.53583231045226,226.66666666666666,128.14114409808866,-4.0,52.2206698,6.8525079,1.4,668.6,0.0,0.0,668.6,252.69999980926514,0.0,0.0,0.0,0.0,0.0,1.4,336.0,570.0,1.0,4.0,88,1.3999999999999997,138.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,170.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +92,92,0.0,671.5,0.0,1603187176.6999998,259.06735751295344,1.93,0.0,0.0,21.0,88,2.9,0.0,135.0,221.0,-56.0,5.0,48.0,11.0,73.51255108785088,631.4285714285714,131.06366141962405,-11.0,52.220726,6.8524475,1.93,671.5,0.0,0.0,671.5,255.69999980926514,0.0,0.0,0.0,0.0,0.0,1.93,327.0,583.0,1.0,4.0,89,1.9299999999999995,135.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,221.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +93,93,0.0,680.8,0.0,1603187179.5,179.21146953405014,2.79,0.0,0.0,22.0,89,9.4,0.0,134.0,207.0,-60.0,6.0,47.0,12.0,69.46598864264807,564.5454545454545,125.21862677655331,-19.0,52.220796,6.8523714999999985,2.79,680.8,0.0,0.0,680.8,258.5,0.0,0.0,0.0,0.0,0.0,2.79,309.0,557.0,1.0,4.0,90,2.7900000000000005,134.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,207.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +94,94,0.0,691.8,0.0,1603187182.5,146.19883040935673,3.42,0.0,0.0,19.5,90,10.9,0.0,134.0,164.0,-60.0,6.0,48.0,14.0,58.675155455440596,504.61538461538464,112.85413041621143,-23.0,52.2208777,6.8522824999999985,3.42,691.8,0.0,0.0,691.8,261.5,0.0,0.0,0.0,0.0,0.0,3.42,261.0,502.0,1.0,4.0,91,3.42,134.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,164.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +95,95,0.0,703.3,0.0,1603187185.6999998,139.27576601671308,3.59,0.0,0.0,18.5,91,11.5,0.0,138.0,153.0,-60.0,8.0,47.0,12.0,57.32630130703967,496.2162162162162,114.87741163881284,-19.0,52.22096370000001,6.8521893,3.59,703.3,0.0,0.0,703.3,264.69999980926514,0.0,0.0,0.0,0.0,0.0,3.59,255.0,511.0,1.0,4.0,92,3.5900000000000003,138.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,153.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +96,96,0.0,715.1,0.0,1603187189.1,141.24293785310738,3.54,0.0,0.0,18.0,92,11.8,0.0,137.0,154.0,-60.0,6.0,47.0,12.0,59.799200579108046,513.3333333333334,114.42779358934584,-19.0,52.2210521,6.852092999999999,3.54,715.1,0.0,0.0,715.1,268.09999990463257,0.0,0.0,0.0,0.0,0.0,3.54,266.0,509.0,1.0,4.0,93,3.5399999999999987,137.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,154.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +97,97,0.0,726.4,0.0,1603187192.3,143.67816091954026,3.48,0.0,0.0,19.0,93,11.4,0.0,137.0,164.0,-61.0,6.0,48.0,10.0,62.04729082644294,517.8947368421053,106.55947772367372,3.0,52.2211346,6.8519962,3.48,726.4,0.0,0.0,726.4,271.2999999523163,0.0,0.0,0.0,0.0,0.0,3.48,276.0,474.0,1.0,4.0,94,3.479999999999998,137.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,164.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +98,98,0.0,736.6,0.0,1603187195.3,144.50867052023122,3.46,0.0,0.0,19.5,94,10.2,0.0,137.0,178.0,-60.0,7.0,49.0,12.0,64.52019009851129,547.6923076923077,121.62168238081749,-9.0,52.221208,6.8519061,3.46,736.6,0.0,0.0,736.6,274.2999999523163,0.0,0.0,0.0,0.0,0.0,3.46,286.99999999999994,541.0,1.0,4.0,95,3.46,137.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,178.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +99,99,0.0,747.7,0.0,1603187198.5,144.92753623188406,3.45,0.0,0.0,18.5,95,11.1,0.0,135.0,148.0,-59.0,7.0,48.0,14.0,59.12477350490758,480.0,109.48199504520909,-22.0,52.221285,6.851803,3.45,747.7,0.0,0.0,747.7,277.5,0.0,0.0,0.0,0.0,0.0,3.45,263.0,487.0,1.0,4.0,96,3.45,135.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,148.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +100,100,0.0,759.3,0.0,1603187201.9,145.7725947521866,3.43,0.0,0.0,18.0,96,11.6,0.0,137.0,143.0,-59.0,7.0,49.0,15.0,58.45034643070712,476.6666666666667,107.90833187207468,-14.0,52.2213648,6.8516945000000025,3.43,759.3,0.0,0.0,759.3,280.90000009536743,0.0,0.0,0.0,0.0,0.0,3.43,260.0,480.0,1.0,4.0,97,3.43,137.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,143.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +101,101,0.0,770.2,0.0,1603187205.1,147.92899408284026,3.38,0.0,0.0,18.0,97,11.0,0.0,141.0,133.0,-59.0,6.0,47.0,11.0,52.83012081236989,443.3333333333333,101.16406113007,0.0,52.2214399,6.8515905,3.38,770.2,0.0,0.0,770.2,284.09999990463257,0.0,0.0,0.0,0.0,0.0,3.38,235.0,450.0,1.0,4.0,98,3.3799999999999994,141.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,133.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +102,102,0.0,780.2,0.0,1603187208.1,151.51515151515153,3.3,0.0,0.0,19.5,98,10.0,0.0,142.0,174.0,-59.0,6.0,49.0,13.0,62.49690887590992,535.3846153846154,120.04801920768308,-10.0,52.2215069,6.851493,3.3,780.2,0.0,0.0,780.2,287.09999990463257,0.0,0.0,0.0,0.0,0.0,3.3,278.0,534.0,1.0,4.0,99,3.3,142.0,142.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,174.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +103,103,0.0,791.3,0.0,1603187211.3,151.51515151515153,3.3,0.0,0.0,19.5,99,11.1,0.0,141.0,151.0,-60.0,6.0,48.0,12.0,54.85340203497128,464.61538461538464,100.48963405586954,-1.0,52.2215804,6.851383099999999,3.3,791.3,0.0,0.0,791.3,290.2999999523163,0.0,0.0,0.0,0.0,0.0,3.3,244.0,447.00000000000006,1.0,4.0,100,3.3,141.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,151.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +104,104,0.0,801.0,0.0,1603187214.1,148.80952380952382,3.36,0.0,0.0,20.0,100,9.6,0.0,141.0,166.0,-60.0,6.0,47.0,13.0,57.55111033177316,498.0,114.42779358934584,-22.0,52.2216445,6.8512871,3.36,801.0,0.0,0.0,801.0,293.09999990463257,0.0,0.0,0.0,0.0,0.0,3.36,256.0,509.0,1.0,4.0,101,3.36,141.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,166.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +105,105,0.0,811.8,0.0,1603187217.3,148.3679525222552,3.37,0.0,0.0,20.0,101,10.9,0.0,142.0,157.0,-60.0,6.0,47.0,10.0,55.52782910917176,471.0,108.58275894627512,3.0,52.221712,6.8511725000000006,3.37,811.8,0.0,0.0,811.8,296.2999999523163,0.0,0.0,0.0,0.0,0.0,3.37,247.0,483.0,1.0,4.0,102,3.37,142.0,142.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,157.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +106,106,0.0,822.0,0.0,1603187220.3,148.80952380952382,3.36,0.0,0.0,19.5,102,10.2,0.0,144.0,162.0,-59.0,6.0,47.0,11.0,58.675155455440596,498.46153846153845,109.70680406994256,-13.0,52.2217764,6.8510663,3.36,822.0,0.0,0.0,822.0,299.2999999523163,0.0,0.0,0.0,0.0,0.0,3.36,261.0,488.0,1.0,4.0,103,3.36,0.0,144.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,162.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +107,107,0.0,832.6,0.0,1603187223.4,147.92899408284026,3.38,0.0,0.0,19.5,103,10.5,0.0,147.0,157.0,-60.0,7.0,49.0,14.0,56.65187423283921,483.0769230769231,109.48199504520909,-12.0,52.2218413,6.8509542,3.38,832.6,0.0,0.0,832.6,302.40000009536743,0.0,0.0,0.0,0.0,0.0,3.38,252.0,487.0,1.0,4.0,104,3.3799999999999994,0.0,0.0,147.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,157.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +108,108,0.0,843.7,0.0,1603187226.5,147.92899408284026,3.38,0.0,0.0,19.0,104,11.1,0.0,149.0,155.0,-60.0,5.0,47.0,11.0,58.45034643070712,489.4736842105263,107.00909577314071,-2.0,52.22191289999999,6.85084,3.38,843.7,0.0,0.0,843.7,305.5,0.0,0.0,0.0,0.0,0.0,3.38,260.0,476.0,1.0,4.0,105,3.3799999999999994,0.0,0.0,149.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,155.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +109,109,0.0,853.9,0.0,1603187229.6,148.80952380952382,3.36,0.0,0.0,19.0,105,10.2,0.0,150.0,152.0,-59.0,7.0,47.0,13.0,56.87668325757269,480.0,109.93161309467608,-19.0,52.221976700000006,6.8507319,3.36,853.9,0.0,0.0,853.9,308.59999990463257,0.0,0.0,0.0,0.0,0.0,3.36,253.0,489.0,1.0,4.0,106,3.36,0.0,0.0,150.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,152.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +110,110,0.0,864.8,0.0,1603187233.0,148.3679525222552,3.37,0.0,0.0,19.0,106,10.9,0.0,153.0,148.0,-60.0,6.0,48.0,14.0,53.27973886183686,467.36842105263156,111.50527626781047,-22.0,52.2220425,6.850614,3.37,864.8,0.0,0.0,864.8,312.0,0.0,0.0,0.0,0.0,0.0,3.37,237.0,496.0,1.0,4.0,107,3.37,0.0,0.0,153.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,148.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +111,111,0.0,875.0,0.0,1603187236.0,147.92899408284026,3.38,0.0,0.0,18.5,107,10.2,0.0,153.0,145.0,-60.0,6.0,47.0,15.0,55.52782910917176,470.27027027027026,108.35794992154163,-6.0,52.2221051,6.850504300000001,3.38,875.0,0.0,0.0,875.0,315.0,0.0,0.0,0.0,0.0,0.0,3.38,247.0,482.0,1.0,4.0,108,3.3799999999999994,0.0,0.0,153.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,145.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +112,112,0.0,886.0,0.0,1603187239.1,146.19883040935673,3.42,0.0,0.0,19.0,108,11.0,0.0,153.0,159.0,-60.0,7.0,47.0,15.0,62.04729082644294,502.10526315789474,110.38123114414304,-20.0,52.2221761,6.8503925,3.42,886.0,0.0,0.0,886.0,318.09999990463257,0.0,0.0,0.0,0.0,0.0,3.42,276.0,491.0,1.0,4.0,109,3.42,0.0,0.0,153.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,159.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +113,113,0.0,897.1,0.0,1603187242.1999998,143.67816091954026,3.48,0.0,0.0,19.0,109,11.1,0.0,153.0,148.0,-60.0,8.0,47.0,13.0,58.22553740597362,467.36842105263156,108.80756797100862,-19.0,52.2222481,6.8502795,3.48,897.1,0.0,0.0,897.1,321.19999980926514,0.0,0.0,0.0,0.0,0.0,3.48,259.0,484.0,1.0,4.0,110,3.479999999999998,0.0,0.0,153.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,148.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +114,114,0.0,908.6,0.0,1603187245.5,144.0922190201729,3.47,0.0,0.0,19.0,110,11.5,0.0,153.0,143.0,-59.0,7.0,47.0,13.0,55.977447158638725,451.57894736842104,109.03237699574213,-17.0,52.2223218,6.8501610999999984,3.47,908.6,0.0,0.0,908.6,324.5,0.0,0.0,0.0,0.0,0.0,3.47,249.0,485.0,1.0,4.0,111,3.47,0.0,0.0,153.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,143.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +115,115,0.0,919.7,0.0,1603187248.8,145.3488372093023,3.44,0.0,0.0,18.5,111,11.1,0.0,152.0,137.0,-59.0,5.0,46.0,11.0,51.25645763923547,444.3243243243243,103.4121513774049,1.0,52.2223938,6.850048700000001,3.44,919.7,0.0,0.0,919.7,327.7999999523163,0.0,0.0,0.0,0.0,0.0,3.44,228.0,460.0,1.0,4.0,112,3.4400000000000004,0.0,0.0,152.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,137.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +116,116,0.0,930.0,0.0,1603187251.6999998,146.6275659824047,3.41,0.0,0.0,19.0,112,10.2,0.0,152.0,157.0,-59.0,7.0,49.0,15.0,58.89996448017409,495.7894736842105,108.13314089680814,-27.0,52.22246,6.8499446,3.41,930.0,0.0,0.0,930.0,330.69999980926514,0.0,0.0,0.0,0.0,0.0,3.41,262.0,481.0,1.0,4.0,113,3.41,0.0,0.0,152.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,157.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +117,117,0.0,941.3,0.0,1603187255.1,147.92899408284026,3.38,0.0,0.0,18.5,113,11.3,0.0,151.0,143.0,-61.0,6.0,48.0,16.0,58.22553740597362,463.7837837837838,105.21062357527279,-17.0,52.2225316,6.8498266,3.38,941.3,0.0,0.0,941.3,334.09999990463257,0.0,0.0,0.0,0.0,0.0,3.38,259.0,468.0,1.0,4.0,114,3.3799999999999994,0.0,0.0,151.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,143.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +118,118,0.0,951.9,0.0,1603187258.1,147.92899408284026,3.38,0.0,0.0,19.0,114,10.6,0.0,152.0,145.0,-60.0,6.0,47.0,11.0,57.775919356506655,457.89473684210526,98.91597088273512,-3.0,52.2225997,6.8497185,3.38,951.9,0.0,0.0,951.9,337.09999990463257,0.0,0.0,0.0,0.0,0.0,3.38,257.0,440.0,1.0,4.0,115,3.3799999999999994,0.0,0.0,152.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,145.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +119,119,0.0,962.6,0.0,1603187261.4,148.3679525222552,3.37,0.0,0.0,19.5,115,10.7,0.0,153.0,151.0,-60.0,7.0,48.0,13.0,55.52782910917176,464.61538461538464,104.76100552580584,-15.0,52.2226678,6.8496079,3.37,962.6,0.0,0.0,962.6,340.40000009536743,0.0,0.0,0.0,0.0,0.0,3.37,247.0,466.0,1.0,4.0,116,3.37,0.0,0.0,153.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,151.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +120,120,0.0,972.9,0.0,1603187264.4,146.6275659824047,3.41,0.0,0.0,20.0,116,10.3,0.0,153.0,140.0,-60.0,7.0,47.0,13.0,49.45798544136756,420.0,95.99345356119976,-3.0,52.2227345,6.8495019,3.41,972.9,0.0,0.0,972.9,343.40000009536743,0.0,0.0,0.0,0.0,0.0,3.41,220.0,427.0,1.0,4.0,117,3.41,0.0,0.0,153.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,140.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +121,121,0.0,983.3,0.0,1603187267.4,145.7725947521866,3.43,0.0,0.0,20.0,117,10.4,0.0,153.0,163.0,-60.0,7.0,49.0,15.0,58.45034643070712,489.0,108.58275894627512,-17.0,52.2228027,6.8493985,3.43,983.3,0.0,0.0,983.3,346.40000009536743,0.0,0.0,0.0,0.0,0.0,3.43,260.0,483.0,1.0,4.0,118,3.43,0.0,0.0,153.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,163.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +122,122,0.0,993.9,0.0,1603187270.4,144.0922190201729,3.47,0.0,0.0,19.5,118,10.6,0.0,154.0,172.0,-60.0,5.0,48.0,14.0,59.574391554374564,529.2307692307693,122.29610945501793,-17.0,52.2228738,6.8492947,3.47,993.9,0.0,0.0,993.9,349.40000009536743,0.0,0.0,0.0,0.0,0.0,3.47,265.0,544.0,1.0,4.0,119,3.47,0.0,0.0,154.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,172.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +123,123,0.0,1004.4,0.0,1603187273.4,142.45014245014247,3.51,0.0,0.0,20.0,119,10.5,0.0,154.0,166.0,-60.0,7.0,46.0,13.0,58.00072838124014,498.0,116.00145676248027,-19.0,52.2229433,6.849189599999999,3.51,1004.4,0.0,0.0,1004.4,352.40000009536743,0.0,0.0,0.0,0.0,0.0,3.51,258.0,516.0,1.0,4.0,120,3.51,0.0,0.0,154.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,166.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +124,124,0.0,1014.6,0.0,1603187276.1999998,142.85714285714286,3.5,0.0,0.0,20.5,120,10.1,0.0,155.0,196.0,-59.0,5.0,48.0,9.0,66.09385327164574,573.6585365853658,117.12550188614773,-2.0,52.22301029999999,6.8490891000000005,3.5,1014.6,0.0,0.0,1014.6,355.19999980926514,0.0,0.0,0.0,0.0,0.0,3.5,294.0,521.0,1.0,4.0,121,3.5,0.0,0.0,155.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,196.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +125,125,0.0,1025.0,0.0,1603187279.1,143.67816091954026,3.48,0.0,0.0,20.5,121,10.4,0.0,157.0,162.0,-58.0,5.0,48.0,13.0,58.89996448017409,474.1463414634146,106.10985967420677,-8.0,52.2230756,6.848978999999999,3.48,1025.0,0.0,0.0,1025.0,358.09999990463257,0.0,0.0,0.0,0.0,0.0,3.48,262.0,472.0,1.0,4.0,122,3.479999999999998,0.0,0.0,157.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,162.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +126,126,0.0,1035.4,0.0,1603187282.1999998,144.50867052023122,3.46,0.0,0.0,20.0,122,10.3,0.0,158.0,151.0,-57.0,5.0,47.0,13.0,56.65187423283921,453.0,108.80756797100862,-2.0,52.2231404,6.8488699,3.46,1035.4,0.0,0.0,1035.4,361.19999980926514,0.0,0.0,0.0,0.0,0.0,3.46,252.0,484.0,1.0,4.0,123,3.46,0.0,0.0,158.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,151.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +127,127,0.0,1045.7,0.0,1603187285.1,145.3488372093023,3.44,0.0,0.0,20.5,123,10.3,0.0,158.0,154.0,-58.0,6.0,47.0,16.0,53.95416593603733,450.7317073170732,114.42779358934584,-15.0,52.2232033,6.8487594,3.44,1045.7,0.0,0.0,1045.7,364.09999990463257,0.0,0.0,0.0,0.0,0.0,3.44,240.0,509.0,1.0,4.0,124,3.4400000000000004,0.0,0.0,158.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,154.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +128,128,0.0,1055.8,0.0,1603187288.0,144.0922190201729,3.47,0.0,0.0,20.5,124,10.1,0.0,158.0,139.0,-57.0,6.0,44.0,14.0,50.58203056503501,406.8292682926829,96.21826258593323,-6.0,52.2232674,6.8486547999999985,3.47,1055.8,0.0,0.0,1055.8,367.0,0.0,0.0,0.0,0.0,0.0,3.47,225.0,428.0,1.0,4.0,125,3.47,0.0,0.0,158.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,139.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +129,129,0.0,1066.4,0.0,1603187291.0,142.04545454545453,3.52,0.0,0.0,20.0,125,10.6,0.0,158.0,153.0,-60.0,7.0,46.0,14.0,54.6285930102378,459.0,101.83848820427048,-11.0,52.22333629999999,6.8485477,3.52,1066.4,0.0,0.0,1066.4,370.0,0.0,0.0,0.0,0.0,0.0,3.52,243.0,453.0,1.0,4.0,126,3.5200000000000005,0.0,0.0,158.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,153.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +130,130,0.0,1077.3,0.0,1603187294.0,140.84507042253526,3.55,0.0,0.0,21.0,126,10.9,0.0,160.0,157.0,-60.0,6.0,45.0,11.0,55.752638133905236,448.57142857142856,98.91597088273512,-2.0,52.2234095,6.8484409,3.55,1077.3,0.0,0.0,1077.3,373.0,0.0,0.0,0.0,0.0,0.0,3.55,248.0,440.0,1.0,4.0,127,3.549999999999999,0.0,0.0,160.0,160.0,0.0,0.0,142,146,160,167,180,192,0.0,157.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +131,131,0.0,1084.4,0.0,1603187296.0,138.12154696132598,3.62,0.0,0.0,25.5,127,7.1,0.0,161.0,284.0,-57.0,4.0,47.0,12.0,82.7297211019239,668.2352941176471,145.4514390025673,-15.0,52.2234577,6.8483733,3.62,1084.4,0.0,0.0,1084.4,375.0,0.0,0.0,0.0,0.0,0.0,3.62,368.0,647.0,1.0,4.0,128,3.62,0.0,0.0,0.0,161.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,284.0,124.30000000000001,169.5,203.4,237.3,271.2 +132,132,0.0,1093.8,0.0,1603187298.1,129.87012987012986,3.85,0.0,0.0,29.0,128,9.4,0.0,161.0,295.0,-58.0,3.0,47.0,10.0,78.45834963198763,610.3448275862069,139.6064043594966,-13.0,52.2235223,6.848283900000001,3.85,1093.8,0.0,0.0,1093.8,377.09999990463257,0.0,0.0,0.0,0.0,0.0,3.85,349.0,621.0,1.0,4.0,129,3.850000000000001,0.0,0.0,0.0,161.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,295.0,124.30000000000001,169.5,203.4,237.3,271.2 +133,133,0.0,1103.0,0.0,1603187300.4,123.15270935960592,4.06,0.0,0.0,29.5,129,9.2,0.0,161.0,293.0,-60.0,3.0,47.0,12.0,78.00873158252065,595.9322033898305,141.85449460683148,-13.0,52.2235838,6.8481936,4.06,1103.0,0.0,0.0,1103.0,379.40000009536743,0.0,0.0,0.0,0.0,0.0,4.06,347.0,631.0000000000001,1.0,4.0,130,4.06,0.0,0.0,0.0,161.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,293.0,124.30000000000001,169.5,203.4,237.3,271.2 +134,134,0.0,1110.8,0.0,1603187302.1999998,120.48192771084335,4.15,0.0,0.0,29.0,130,7.8,0.0,163.0,311.0,-58.0,5.0,51.0,14.0,78.00873158252065,643.448275862069,145.4514390025673,-15.0,52.2236359,6.8481166,4.15,1110.8,0.0,0.0,1110.8,381.19999980926514,0.0,0.0,0.0,0.0,0.0,4.15,347.0,647.0,1.0,4.0,131,4.15,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,311.0,124.30000000000001,169.5,203.4,237.3,271.2 +135,135,0.0,1120.0,0.0,1603187304.4,117.096018735363,4.27,0.0,0.0,30.5,131,9.2,0.0,165.0,304.0,-60.0,3.0,47.0,12.0,78.00873158252065,598.0327868852459,140.05602240896357,-16.0,52.223696200000006,6.8480254,4.27,1120.0,0.0,0.0,1120.0,383.40000009536743,0.0,0.0,0.0,0.0,0.0,4.27,347.0,623.0,1.0,4.0,132,4.27,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,304.0,124.30000000000001,169.5,203.4,237.3,271.2 +136,136,0.0,1128.6,0.0,1603187306.4,118.20330969267137,4.23,0.0,0.0,30.0,132,8.6,0.0,164.0,301.0,-59.0,4.0,46.0,11.0,74.8614052362518,602.0,136.00945996376078,-13.0,52.2237533,6.8479398,4.23,1128.6,0.0,0.0,1128.6,385.40000009536743,0.0,0.0,0.0,0.0,0.0,4.23,333.0,605.0,1.0,4.0,133,4.230000000000001,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,301.0,124.30000000000001,169.5,203.4,237.3,271.2 +137,137,0.0,1136.8,0.0,1603187308.1999998,117.096018735363,4.27,0.0,0.0,30.0,133,8.2,0.0,165.0,299.0,-58.0,4.0,49.0,13.0,76.88468645885321,598.0,129.26518922175615,-20.0,52.223808700000006,6.847861,4.27,1136.8,0.0,0.0,1136.8,387.19999980926514,0.0,0.0,0.0,0.0,0.0,4.27,342.00000000000006,575.0,1.0,4.0,134,4.27,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,299.0,124.30000000000001,169.5,203.4,237.3,271.2 +138,138,0.0,1145.6,0.0,1603187310.1,113.89521640091115,4.39,0.0,0.0,30.5,134,8.8,0.0,169.0,321.0,-60.0,3.0,46.0,11.0,80.48163085458903,631.4754098360655,142.52892168103196,-12.0,52.2238681,6.8477759,4.39,1145.6,0.0,0.0,1145.6,389.09999990463257,0.0,0.0,0.0,0.0,0.0,4.39,358.0,634.0,1.0,4.0,135,4.3900000000000015,0.0,0.0,0.0,0.0,169.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,321.0,124.30000000000001,169.5,203.4,237.3,271.2 +139,139,0.0,1154.3,0.0,1603187312.1999998,115.74074074074072,4.32,0.0,0.0,31.0,135,8.7,0.0,169.0,308.0,-59.0,3.0,48.0,14.0,76.43506840938622,596.1290322580645,144.55220290363337,-14.0,52.223926,6.8476902000000015,4.32,1154.3,0.0,0.0,1154.3,391.19999980926514,0.0,0.0,0.0,0.0,0.0,4.32,339.99999999999994,643.0,1.0,4.0,136,4.320000000000001,0.0,0.0,0.0,0.0,169.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,308.0,124.30000000000001,169.5,203.4,237.3,271.2 +140,140,0.0,1162.3,0.0,1603187314.1,115.74074074074072,4.32,0.0,0.0,31.0,136,8.0,0.0,169.0,319.0,-59.0,3.0,47.0,11.0,75.98545035991923,617.4193548387096,141.85449460683148,-16.0,52.2239789,6.84761,4.32,1162.3,0.0,0.0,1162.3,393.09999990463257,0.0,0.0,0.0,0.0,0.0,4.32,338.0,631.0000000000001,1.0,4.0,137,4.320000000000001,0.0,0.0,0.0,0.0,169.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,319.0,124.30000000000001,169.5,203.4,237.3,271.2 +141,141,0.0,1171.2,0.0,1603187316.0,112.35955056179778,4.45,0.0,0.0,32.5,137,8.9,0.0,170.0,349.0,-60.0,3.0,47.0,12.0,82.7297211019239,644.3076923076923,144.77701192836685,-13.0,52.2240386,6.8475239000000006,4.45,1171.2,0.0,0.0,1171.2,395.0,0.0,0.0,0.0,0.0,0.0,4.45,368.0,644.0,1.0,4.0,138,4.449999999999998,0.0,0.0,0.0,0.0,170.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,349.0,124.30000000000001,169.5,203.4,237.3,271.2 +142,142,0.0,1179.5,0.0,1603187317.8,110.86474501108648,4.51,0.0,0.0,33.0,138,8.4,0.0,171.0,346.0,-60.0,3.0,48.0,12.0,83.85376622559136,629.0909090909091,137.80793216162868,-14.0,52.224095,6.8474428,4.51,1179.5,0.0,0.0,1179.5,396.7999999523163,0.0,0.0,0.0,0.0,0.0,4.51,373.0,613.0,1.0,4.0,139,4.51,0.0,0.0,0.0,0.0,171.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,346.0,124.30000000000001,169.5,203.4,237.3,271.2 +143,143,0.0,1187.8,0.0,1603187319.6,110.13215859030836,4.54,0.0,0.0,32.5,139,8.3,0.0,171.0,324.0,-59.0,3.0,47.0,11.0,78.45834963198763,598.1538461538462,140.28083143369707,-16.0,52.2241514,6.847363799999999,4.54,1187.8,0.0,0.0,1187.8,398.59999990463257,0.0,0.0,0.0,0.0,0.0,4.54,349.0,624.0,1.0,4.0,140,4.54,0.0,0.0,0.0,0.0,171.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,324.0,124.30000000000001,169.5,203.4,237.3,271.2 +144,144,0.0,1196.0,0.0,1603187321.4,110.37527593818984,4.53,0.0,0.0,32.5,140,8.2,0.0,170.0,306.0,-59.0,3.0,46.0,11.0,74.18697816205132,564.9230769230769,123.8697726281524,-8.0,52.22420570000001,6.8472823000000025,4.53,1196.0,0.0,0.0,1196.0,400.40000009536743,0.0,0.0,0.0,0.0,0.0,4.53,330.0,551.0,1.0,4.0,141,4.53,0.0,0.0,0.0,0.0,170.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,306.0,124.30000000000001,169.5,203.4,237.3,271.2 +145,145,0.0,1203.5,0.0,1603187323.1,110.86474501108648,4.51,0.0,0.0,33.5,141,7.5,0.0,170.0,338.0,-60.0,4.0,46.0,9.0,79.80720378038856,605.3731343283582,143.42815777996591,-15.0,52.224255,6.8472085000000025,4.51,1203.5,0.0,0.0,1203.5,402.09999990463257,0.0,0.0,0.0,0.0,0.0,4.51,355.0,638.0,1.0,4.0,142,4.51,0.0,0.0,0.0,0.0,170.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,338.0,124.30000000000001,169.5,203.4,237.3,271.2 +146,146,0.0,1212.8,0.0,1603187325.1,109.40919037199123,4.57,0.0,0.0,32.0,142,9.4,0.0,173.0,306.0,-59.0,4.0,48.0,11.0,75.53583231045226,573.75,122.29610945501793,-31.0,52.2243162,6.8471141000000015,4.57,1212.8,0.0,0.0,1212.8,404.09999990463257,0.0,0.0,0.0,0.0,0.0,4.57,336.0,544.0,1.0,4.0,143,4.570000000000001,0.0,0.0,0.0,0.0,173.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,306.0,124.30000000000001,169.5,203.4,237.3,271.2 +147,147,0.0,1221.1,0.0,1603187327.0,111.358574610245,4.49,0.0,0.0,31.5,143,8.2,0.0,175.0,327.0,-60.0,4.0,49.0,12.0,78.90796768145461,622.8571428571429,134.88541484009338,-16.0,52.2243719,6.847034700000001,4.49,1221.1,0.0,0.0,1221.1,406.0,0.0,0.0,0.0,0.0,0.0,4.49,351.0,600.0,1.0,4.0,144,4.489999999999998,0.0,0.0,0.0,0.0,175.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,327.0,124.30000000000001,169.5,203.4,237.3,271.2 +148,148,0.0,1229.0,0.0,1603187329.0,113.12217194570135,4.42,0.0,0.0,32.0,144,8.0,0.0,175.0,319.0,-59.0,3.0,48.0,11.0,79.1327767061881,598.125,139.38159533476312,-15.0,52.2244234,6.846953599999999,4.42,1229.0,0.0,0.0,1229.0,408.0,0.0,0.0,0.0,0.0,0.0,4.42,352.0,620.0,1.0,4.0,145,4.42,0.0,0.0,0.0,0.0,175.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,319.0,124.30000000000001,169.5,203.4,237.3,271.2 +149,149,0.0,1237.9,0.0,1603187330.8,111.358574610245,4.49,0.0,0.0,32.5,145,8.9,0.0,175.0,340.0,-60.0,3.0,49.0,12.0,81.83048500298995,627.6923076923077,140.50564045843055,-19.0,52.2244826,6.8468659,4.49,1237.9,0.0,0.0,1237.9,409.7999999523163,0.0,0.0,0.0,0.0,0.0,4.49,364.0,624.9999999999999,1.0,4.0,146,4.489999999999998,0.0,0.0,0.0,0.0,175.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,340.0,124.30000000000001,169.5,203.4,237.3,271.2 +150,150,0.0,1246.2,0.0,1603187332.6,112.10762331838563,4.46,0.0,0.0,32.5,146,8.2,0.0,175.0,316.0,-60.0,4.0,49.0,13.0,77.33430450832019,583.3846153846154,137.3583141121617,-18.0,52.224539,6.8467879,4.46,1246.2,0.0,0.0,1246.2,411.59999990463257,0.0,0.0,0.0,0.0,0.0,4.46,344.0,611.0,1.0,4.0,147,4.460000000000001,0.0,0.0,0.0,0.0,175.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,316.0,124.30000000000001,169.5,203.4,237.3,271.2 +151,151,0.0,1255.0,0.0,1603187334.6,112.6126126126126,4.44,0.0,0.0,31.0,147,8.8,0.0,180.0,319.0,-61.0,3.0,45.0,11.0,76.88468645885321,617.4193548387096,141.18006753263103,-20.0,52.2245977,6.8467012999999985,4.44,1255.0,0.0,0.0,1255.0,413.59999990463257,0.0,0.0,0.0,0.0,0.0,4.44,342.00000000000006,628.0,1.0,4.0,148,4.44,0.0,0.0,0.0,0.0,180.0,180.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,319.0,124.30000000000001,169.5,203.4,237.3,271.2 +152,152,0.0,1263.2,0.0,1603187336.4,114.6788990825688,4.36,0.0,0.0,32.5,148,8.3,0.0,182.0,315.0,-59.0,2.0,47.0,12.0,77.78392255778716,581.5384615384615,139.38159533476312,-18.0,52.2246529,6.8466207,4.36,1263.2,0.0,0.0,1263.2,415.40000009536743,0.0,0.0,0.0,0.0,0.0,4.36,346.0,620.0,1.0,4.0,149,4.36,0.0,0.0,0.0,0.0,0.0,182.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,315.0,124.30000000000001,169.5,203.4,237.3,271.2 +153,153,0.0,1270.6,0.0,1603187338.1,114.41647597254006,4.37,0.0,0.0,32.0,149,7.4,0.0,181.0,335.0,-60.0,2.0,47.0,11.0,80.93124890405599,628.125,139.8312133842301,-16.0,52.2247014,6.8465472000000025,4.37,1270.6,0.0,0.0,1270.6,417.09999990463257,0.0,0.0,0.0,0.0,0.0,4.37,360.0,622.0,1.0,4.0,150,4.369999999999999,0.0,0.0,0.0,0.0,0.0,181.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,335.0,124.30000000000001,169.5,203.4,237.3,271.2 +154,154,0.0,1279.5,0.0,1603187340.0,109.8901098901099,4.55,0.0,0.0,32.5,150,8.9,0.0,180.0,329.0,-60.0,3.0,48.0,12.0,80.25682182985555,607.3846153846154,138.25755021109566,-17.0,52.2247602,6.8464587,4.55,1279.5,0.0,0.0,1279.5,419.0,0.0,0.0,0.0,0.0,0.0,4.55,357.0,615.0,1.0,4.0,151,4.55,0.0,0.0,0.0,0.0,180.0,180.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,329.0,124.30000000000001,169.5,203.4,237.3,271.2 +155,155,0.0,1288.5,0.0,1603187342.0,111.11111111111113,4.5,0.0,0.0,33.0,151,9.0,0.0,180.0,329.0,-59.0,3.0,47.0,12.0,79.1327767061881,598.1818181818181,140.50564045843055,-15.0,52.2248193,6.8463691,4.5,1288.5,0.0,0.0,1288.5,421.0,0.0,0.0,0.0,0.0,0.0,4.5,352.0,624.9999999999999,1.0,4.0,152,4.499999999999999,0.0,0.0,0.0,0.0,180.0,180.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,329.0,124.30000000000001,169.5,203.4,237.3,271.2 +156,156,0.0,1296.0,0.0,1603187343.6,112.35955056179778,4.45,0.0,0.0,33.0,152,7.6,0.0,179.0,332.0,-60.0,4.0,47.0,12.0,78.90796768145461,603.6363636363636,137.13350508742823,-17.0,52.224869700000006,6.846294199999999,4.45,1296.0,0.0,0.0,1296.0,422.59999990463257,0.0,0.0,0.0,0.0,0.0,4.45,351.0,610.0,1.0,4.0,153,4.449999999999998,0.0,0.0,0.0,0.0,179.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,332.0,124.30000000000001,169.5,203.4,237.3,271.2 +157,157,0.0,1304.4,0.0,1603187345.4,110.61946902654869,4.52,0.0,0.0,34.0,153,8.3,0.0,179.0,350.0,-61.0,3.0,48.0,12.0,81.60567597825646,617.6470588235294,136.90869606269473,-18.0,52.2249246,6.8462117,4.52,1304.4,0.0,0.0,1304.4,424.40000009536743,0.0,0.0,0.0,0.0,0.0,4.52,363.0,609.0,1.0,4.0,154,4.52,0.0,0.0,0.0,0.0,179.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,350.0,124.30000000000001,169.5,203.4,237.3,271.2 +158,158,0.0,1312.1,0.0,1603187347.1,109.17030567685588,4.58,0.0,0.0,35.0,154,7.7,0.0,176.0,334.0,-58.0,2.0,47.0,12.0,77.33430450832019,572.5714285714286,135.5598419142938,-15.0,52.2249765,6.8461363,4.58,1312.1,0.0,0.0,1312.1,426.09999990463257,0.0,0.0,0.0,0.0,0.0,4.58,344.0,603.0,1.0,4.0,155,4.580000000000001,0.0,0.0,0.0,0.0,176.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,334.0,124.30000000000001,169.5,203.4,237.3,271.2 +159,159,0.0,1320.9,0.0,1603187349.0,106.1571125265393,4.71,0.0,0.0,35.5,155,8.9,0.0,174.0,318.0,-57.0,2.0,48.0,12.0,74.4117871867848,537.4647887323944,129.04038019702259,-20.0,52.22503579999999,6.8460499000000015,4.71,1320.9,0.0,0.0,1320.9,428.0,0.0,0.0,0.0,0.0,0.0,4.71,331.0,573.9999999999999,1.0,4.0,156,4.709999999999999,0.0,0.0,0.0,0.0,174.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,318.0,124.30000000000001,169.5,203.4,237.3,271.2 +160,160,0.0,1328.9,0.0,1603187350.8,107.75862068965515,4.64,0.0,0.0,32.0,156,8.0,0.0,174.0,299.0,-59.0,3.0,47.0,13.0,72.38850596418342,560.625,129.9396162959566,-17.0,52.225089,6.845971499999999,4.64,1328.9,0.0,0.0,1328.9,429.7999999523163,0.0,0.0,0.0,0.0,0.0,4.64,322.0,578.0000000000001,1.0,4.0,157,4.6400000000000015,0.0,0.0,0.0,0.0,174.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,299.0,124.30000000000001,169.5,203.4,237.3,271.2 +161,161,0.0,1340.2,0.0,1603187353.4,112.86681715575621,4.43,0.0,0.0,26.0,157,11.3,0.0,175.0,61.0,-59.0,50.0,44.0,25.0,19.558385151813525,140.76923076923077,40.01600640256103,12.0,52.2251654,6.845862,4.43,1340.2,0.0,0.0,1340.2,432.40000009536743,0.0,0.0,0.0,0.0,0.0,4.43,87.0,178.0,1.0,4.0,158,4.43,0.0,0.0,0.0,0.0,175.0,0.0,142,146,160,167,180,192,61.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +162,162,0.0,1348.8,0.0,1603187356.0,123.15270935960592,4.06,0.0,0.0,21.0,158,8.6,0.0,172.0,61.0,-59.0,43.0,46.0,20.0,24.054565646483308,174.28571428571428,49.682794466101036,4.0,52.2252248,6.8457813,4.06,1348.8,0.0,0.0,1348.8,435.0,0.0,0.0,0.0,0.0,0.0,4.06,107.0,221.0,1.0,4.0,159,4.06,0.0,0.0,0.0,0.0,172.0,0.0,142,146,160,167,180,192,61.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +163,163,0.0,1357.9,0.0,1603187359.0,146.19883040935673,3.42,0.0,0.0,18.5,159,9.0,0.0,170.0,93.0,-58.0,10.0,47.0,21.0,37.09348908102567,301.6216216216216,73.06293303838389,-15.0,52.2252876,6.8456975999999985,3.42,1357.9,0.0,0.0,1357.9,438.0,0.0,0.0,0.0,0.0,0.0,3.42,165.0,325.0,1.0,4.0,160,3.42,0.0,0.0,0.0,0.0,170.0,0.0,142,146,160,167,180,192,93.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +164,164,0.0,1368.4,0.0,1603187362.4,163.93442622950818,3.05,0.0,0.0,18.0,160,10.5,0.0,170.0,87.0,-58.0,7.0,45.0,20.0,34.17097175949032,290.0,66.54347132111272,-13.0,52.2253608,6.8455996,3.05,1368.4,0.0,0.0,1368.4,441.40000009536743,0.0,0.0,0.0,0.0,0.0,3.05,152.0,296.0,1.0,4.0,161,3.0500000000000003,0.0,0.0,0.0,0.0,170.0,0.0,142,146,160,167,180,192,87.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +165,165,0.0,1378.2,0.0,1603187365.8,168.3501683501683,2.97,0.0,0.0,17.5,161,9.8,0.0,168.0,93.0,-59.0,9.0,47.0,21.0,39.34157932836056,318.85714285714283,77.78392255778716,-21.0,52.2254284,6.8455071,2.97,1378.2,0.0,0.0,1378.2,444.7999999523163,0.0,0.0,0.0,0.0,0.0,2.97,175.0,346.0,1.0,4.0,162,2.9700000000000006,0.0,0.0,0.0,0.0,168.0,0.0,142,146,160,167,180,192,93.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +166,166,0.0,1388.1,0.0,1603187369.1999998,172.41379310344828,2.9,0.0,0.0,17.5,162,9.8,0.0,168.0,84.0,-58.0,14.0,45.0,18.0,34.17097175949032,288.0,72.16369693944993,-17.0,52.2254969,6.8454157,2.9,1388.1,0.0,0.0,1388.1,448.19999980926514,0.0,0.0,0.0,0.0,0.0,2.9,152.0,321.0,1.0,4.0,163,2.9,0.0,0.0,0.0,0.0,168.0,0.0,142,146,160,167,180,192,84.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +167,167,0.0,1397.9,0.0,1603187372.6,173.61111111111111,2.88,0.0,0.0,17.5,163,9.8,0.0,161.0,93.0,-58.0,7.0,43.0,21.0,38.89196127889358,318.85714285714283,81.83048500298995,-18.0,52.22556470000001,6.845323599999999,2.88,1397.9,0.0,0.0,1397.9,451.59999990463257,0.0,0.0,0.0,0.0,0.0,2.88,173.0,364.0,1.0,4.0,164,2.88,0.0,0.0,0.0,161.0,0.0,0.0,142,146,160,167,180,192,93.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +168,168,0.0,1408.0,0.0,1603187376.0,171.8213058419244,2.91,0.0,0.0,17.5,164,10.2,0.0,169.0,95.0,-58.0,8.0,44.0,19.0,40.24081542729451,325.7142857142857,81.60567597825646,-23.0,52.225635,6.845229,2.91,1408.0,0.0,0.0,1408.0,455.0,0.0,0.0,0.0,0.0,0.0,2.91,179.0,363.0,1.0,4.0,165,2.91,0.0,0.0,0.0,0.0,169.0,0.0,142,146,160,167,180,192,95.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +169,169,0.0,1418.6,0.0,1603187379.4,166.66666666666666,3.0,0.0,0.0,18.0,165,10.5,0.0,173.0,82.0,-56.0,13.0,43.0,21.0,35.969443957358216,273.3333333333333,74.18697816205132,-10.0,52.2257096,6.8451339,3.0,1418.6,0.0,0.0,1418.6,458.40000009536743,0.0,0.0,0.0,0.0,0.0,3.0,160.0,330.0,1.0,4.0,166,3.0,0.0,0.0,0.0,0.0,173.0,0.0,142,146,160,167,180,192,82.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +170,170,0.0,1428.5,0.0,1603187382.6,165.01650165016503,3.03,0.0,0.0,18.5,166,9.9,0.0,174.0,88.0,-59.0,13.0,42.0,16.0,37.318298105759155,285.4054054054054,73.06293303838389,2.0,52.225784,6.8450535000000015,3.03,1428.5,0.0,0.0,1428.5,461.59999990463257,0.0,0.0,0.0,0.0,0.0,3.03,166.0,325.0,1.0,4.0,167,3.03,0.0,0.0,0.0,0.0,174.0,0.0,142,146,160,167,180,192,88.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +171,171,0.0,1438.4,0.0,1603187386.0,165.01650165016503,3.03,0.0,0.0,18.5,167,10.0,0.0,173.0,94.0,-58.0,8.0,43.0,23.0,39.34157932836056,304.86486486486484,78.90796768145461,-29.0,52.2258614,6.844980499999999,3.03,1438.4,0.0,0.0,1438.4,465.0,0.0,0.0,0.0,0.0,0.0,3.03,175.0,351.0,1.0,4.0,168,3.03,0.0,0.0,0.0,0.0,173.0,0.0,142,146,160,167,180,192,94.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +172,172,0.0,1448.1,0.0,1603187389.0,161.29032258064515,3.1,0.0,0.0,18.5,168,9.7,0.0,172.0,94.0,18.0,8.0,35.0,23.0,0.6744270742004667,304.86486486486484,3.5969443957358225,23.0,52.22593970000001,6.8449182,3.1,1448.1,0.0,0.0,1448.1,468.0,0.0,0.0,0.0,0.0,0.0,3.1,3.0,16.0,1.0,4.0,169,3.1,0.0,0.0,0.0,0.0,172.0,0.0,142,146,160,167,180,192,94.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +173,173,0.0,1448.1,0.0,1603187392.3,161.29032258064515,3.1,0.0,0.0,18.5,168,9.7,0.0,172.0,85.0,-57.0,8.0,44.0,23.0,36.64387103155868,275.6756756756757,74.18697816205132,-19.0,52.22593970000001,6.8449182,3.1,1448.1,0.0,0.0,1448.1,471.2999999523163,0.0,0.0,0.0,0.0,0.0,3.1,163.0,330.0,1.0,4.0,170,3.1,0.0,0.0,0.0,0.0,172.0,0.0,142,146,160,167,180,192,85.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +174,174,0.0,1467.1,0.0,1603187395.6,166.66666666666666,3.0,0.0,0.0,9.0,169,18.9,0.0,171.0,93.0,-55.0,4.0,42.0,24.0,42.264096649895905,620.0,79.80720378038856,-21.0,52.2260984,6.8448183,3.0,1467.1,0.0,0.0,1467.1,474.59999990463257,0.0,0.0,0.0,0.0,0.0,3.0,188.0,355.0,1.0,4.0,170,3.0,0.0,0.0,0.0,0.0,171.0,0.0,142,146,160,167,180,192,93.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +175,175,0.0,1478.9,0.0,1603187399.8,179.21146953405014,2.79,0.0,0.0,14.5,170,11.9,0.0,170.0,112.0,-57.0,6.0,44.0,23.0,41.14005152622847,463.44827586206895,79.80720378038856,-20.0,52.2261995,6.8447644,2.79,1478.9,0.0,0.0,1478.9,478.7999999523163,0.0,0.0,0.0,0.0,0.0,2.79,183.0,355.0,1.0,4.0,171,2.7900000000000005,0.0,0.0,0.0,0.0,170.0,0.0,142,146,160,167,180,192,112.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +176,176,0.0,1488.2,0.0,1603187402.8,176.67844522968196,2.83,0.0,0.0,19.0,171,9.3,0.0,170.0,111.0,-57.0,5.0,45.0,22.0,44.736995921964294,350.5263157894737,87.45071062132719,-20.0,52.2262807,6.8447359,2.83,1488.2,0.0,0.0,1488.2,481.7999999523163,0.0,0.0,0.0,0.0,0.0,2.83,199.0,389.0,1.0,4.0,172,2.8300000000000005,0.0,0.0,0.0,0.0,170.0,0.0,142,146,160,167,180,192,111.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +177,177,0.0,1498.6,0.0,1603187406.0,163.3986928104575,3.06,0.0,0.0,18.5,172,10.5,0.0,169.0,111.0,17.0,5.0,34.0,22.0,0.4496180494669778,360.0,4.0465624452028,18.0,52.2263739,6.844717,3.06,1498.6,0.0,0.0,1498.6,485.0,0.0,0.0,0.0,0.0,0.0,3.06,2.0,17.999999999999996,1.0,4.0,173,3.06,0.0,0.0,0.0,0.0,169.0,0.0,142,146,160,167,180,192,111.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +178,178,0.0,1498.6,0.0,1603187406.0,163.3986928104575,3.06,0.0,0.0,18.5,172,10.5,0.0,169.0,0.0,15.0,5.0,20.0,22.0,0.2248090247334889,0.0,4.0465624452028,17.0,52.2263739,6.844717,3.06,1498.6,0.0,0.0,1498.6,485.0,0.0,0.0,0.0,0.0,0.0,3.06,1.0,17.999999999999996,1.0,4.0,173,3.06,0.0,0.0,0.0,0.0,169.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +179,179,0.0,1498.6,0.0,1603187406.0,163.3986928104575,3.06,0.0,0.0,18.5,172,10.5,0.0,169.0,0.0,16.0,5.0,21.0,22.0,-0.6744270742004667,0.0,1.5736631731344224,20.0,52.2263739,6.844717,3.06,1498.6,0.0,0.0,1498.6,485.0,0.0,0.0,0.0,0.0,0.0,3.06,-3.0,7.000000000000001,1.0,4.0,173,3.06,0.0,0.0,0.0,0.0,169.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +180,180,0.0,1498.6,0.0,1603187406.0,163.3986928104575,3.06,0.0,0.0,18.5,172,10.5,0.0,169.0,0.0,10.0,5.0,20.0,22.0,0.6744270742004667,0.0,7.418697816205134,17.0,52.2263739,6.844717,3.06,1498.6,0.0,0.0,1498.6,485.0,0.0,0.0,0.0,0.0,0.0,3.06,3.0,33.0,1.0,4.0,173,3.06,0.0,0.0,0.0,0.0,169.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +181,181,0.0,1498.6,0.0,1603187406.0,163.3986928104575,3.06,0.0,0.0,18.5,172,10.5,0.0,169.0,0.0,22.0,5.0,27.0,22.0,1.1240451236674445,0.0,2.472899272068378,24.0,52.2263739,6.844717,3.06,1498.6,0.0,0.0,1498.6,485.0,0.0,0.0,0.0,0.0,0.0,3.06,5.0,11.0,1.0,4.0,173,3.06,0.0,0.0,0.0,0.0,169.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +182,182,0.0,1498.6,0.0,1603187406.0,163.3986928104575,3.06,0.0,0.0,18.5,172,10.5,0.0,169.0,0.0,22.0,5.0,27.0,22.0,1.3488541484009329,0.0,2.9225173215353566,26.0,52.2263739,6.844717,3.06,1498.6,0.0,0.0,1498.6,485.0,0.0,0.0,0.0,0.0,0.0,3.06,6.0,13.0,1.0,4.0,173,3.06,0.0,0.0,0.0,0.0,169.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +183,183,0.0,1498.6,0.0,1603187406.0,163.3986928104575,3.06,0.0,0.0,18.5,172,10.5,0.0,169.0,100.0,-56.0,8.0,45.0,20.0,39.79119737782754,324.3243243243243,83.85376622559136,-14.0,52.2263739,6.844717,3.06,1498.6,0.0,0.0,1498.6,485.0,0.0,0.0,0.0,0.0,0.0,3.06,177.0,373.0,1.0,4.0,173,3.06,0.0,0.0,0.0,0.0,169.0,0.0,142,146,160,167,180,192,100.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +184,184,0.0,1533.1,0.0,1603187422.3,210.0840336134454,2.38,0.0,0.0,10.0,173,34.6,0.0,164.0,2.0,22.0,8.0,36.0,20.0,2.2480902473348894,12.0,7.64350684093862,25.0,52.2266833,6.8446882,2.38,1533.1,0.0,0.0,1533.1,501.2999999523163,0.0,0.0,0.0,0.0,0.0,2.38,10.0,34.0,1.0,4.0,176,2.38,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,2.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +185,185,0.0,1533.1,0.0,1603187423.15,210.0840336134454,2.38,0.0,0.0,10.0,173,34.6,0.0,164.0,1.0,25.0,8.0,36.0,20.0,0.6744270742004667,6.0,4.945798544136756,33.0,52.2266833,6.8446882,2.38,1533.1,0.0,0.0,1533.1,502.15000009536743,0.0,0.0,0.0,0.0,0.0,2.38,3.0,22.0,1.0,4.0,176,2.38,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,1.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +186,186,0.0,1535.2,0.0,1603187424.0,357.1428571428572,1.4,0.0,0.0,24.0,174,2.1,0.0,163.0,1.0,25.0,8.0,36.0,20.0,0.6744270742004667,2.5,4.945798544136756,33.0,52.2267021,6.8446855,1.4,1535.2,0.0,0.0,1535.2,503.0,0.0,0.0,0.0,0.0,0.0,1.4,3.0,22.0,1.0,4.0,176,1.3999999999999997,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,1.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +187,187,0.0,1536.5,0.0,1603187425.1999998,409.8360655737705,1.22,0.0,0.0,43.5,175,1.3,0.0,163.0,2.0,15.0,8.0,24.0,20.0,1.7984721978679112,2.7586206896551726,6.9690797667381545,15.0,52.2267134,6.8446838,1.22,1536.5,0.0,0.0,1536.5,504.19999980926514,0.0,0.0,0.0,0.0,0.0,1.22,8.0,31.0,1.0,4.0,177,1.22,0.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +188,188,0.0,1536.5,0.0,1603187425.1999998,409.8360655737705,1.22,0.0,0.0,43.5,175,1.3,0.0,163.0,2.0,-6.0,8.0,19.0,20.0,3.8217534204693107,2.7586206896551726,6.744270742004668,0.0,52.2267134,6.8446838,1.22,1536.5,0.0,0.0,1536.5,504.19999980926514,0.0,0.0,0.0,0.0,0.0,1.22,17.0,30.0,1.0,4.0,177,1.22,0.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +189,189,0.0,1536.5,0.0,1603187425.1999998,409.8360655737705,1.22,0.0,0.0,43.5,175,1.3,0.0,163.0,1.0,-3.0,8.0,6.0,20.0,3.8217534204693107,1.3793103448275863,5.1706075688702455,5.0,52.2267134,6.8446838,1.22,1536.5,0.0,0.0,1536.5,504.19999980926514,0.0,0.0,0.0,0.0,0.0,1.22,17.0,23.0,1.0,4.0,177,1.22,0.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +190,190,0.0,1541.6,0.0,1603187431.3,462.9629629629629,1.08,0.0,0.0,10.5,176,5.1,0.0,158.0,1.0,19.0,8.0,30.0,20.0,1.1240451236674445,5.714285714285714,4.271371469936288,20.0,52.2267594,6.8446783,1.08,1541.6,0.0,0.0,1541.6,510.2999999523163,0.0,0.0,0.0,0.0,0.0,1.08,5.0,19.0,1.0,4.0,178,1.0800000000000003,0.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +191,191,0.0,1543.1,0.0,1603187432.4,588.2352941176471,0.85,0.0,0.0,38.5,177,1.5,0.0,156.0,1.0,19.0,8.0,30.0,20.0,1.1240451236674445,1.5584415584415585,4.271371469936288,20.0,52.22677279999999,6.8446762,0.85,1543.1,0.0,0.0,1543.1,511.40000009536743,0.0,0.0,0.0,0.0,0.0,0.85,5.0,19.0,1.0,4.0,179,0.85,0.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +192,192,0.0,1544.3,0.0,1603187433.4,543.4782608695652,0.92,0.0,0.0,47.0,178,1.1,0.0,155.0,134.0,-52.0,3.0,43.0,13.0,62.04729082644294,171.06382978723406,99.36558893220207,-11.0,52.22678300000001,6.8446739,0.92,1544.3,0.0,0.0,1544.3,512.4000000953674,0.0,0.0,0.0,0.0,0.0,0.92,276.0,442.0,1.0,4.0,180,0.92,0.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +193,193,0.0,1551.4,0.0,1603187437.1,328.9473684210526,1.52,0.0,0.0,17.5,179,7.2,0.0,152.0,140.0,-57.0,5.0,46.0,15.0,56.65187423283921,480.0,108.13314089680814,-22.0,52.2268472,6.8446646,1.52,1551.4,0.0,0.0,1551.4,516.0999999046326,0.0,0.0,0.0,0.0,0.0,1.52,252.0,481.0,1.0,4.0,181,1.5200000000000002,0.0,0.0,152.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,140.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +194,194,0.0,1561.5,0.0,1603187440.1999998,203.2520325203252,2.46,0.0,0.0,18.5,180,10.1,0.0,151.0,141.0,-57.0,5.0,48.0,16.0,54.85340203497128,457.2972972972973,102.73772430320444,-11.0,52.2269376,6.8446572,2.46,1561.5,0.0,0.0,1561.5,519.1999998092651,0.0,0.0,0.0,0.0,0.0,2.46,244.0,457.0,1.0,4.0,182,2.46,0.0,0.0,151.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,141.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +195,195,0.0,1572.1,0.0,1603187443.4,158.2278481012658,3.16,0.0,0.0,18.5,181,10.6,0.0,149.0,117.0,-58.0,5.0,47.0,19.0,47.20989519403267,379.4594594594595,92.84612721493092,-21.0,52.2270326,6.8446523,3.16,1572.1,0.0,0.0,1572.1,522.4000000953674,0.0,0.0,0.0,0.0,0.0,3.16,210.0,413.0,1.0,4.0,183,3.16,0.0,0.0,149.0,0.0,0.0,0.0,142,146,160,167,180,192,117.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +196,196,0.0,1583.0,0.0,1603187446.6,148.80952380952382,3.36,0.0,0.0,19.0,182,10.9,0.0,148.0,147.0,-59.0,5.0,49.0,14.0,58.45034643070712,464.2105263157895,100.04001600640257,0.0,52.2271301,6.844655499999999,3.36,1583.0,0.0,0.0,1583.0,525.5999999046326,0.0,0.0,0.0,0.0,0.0,3.36,260.0,445.0,1.0,4.0,184,3.36,0.0,0.0,148.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,147.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +197,197,0.0,1593.8,0.0,1603187449.8,147.05882352941177,3.4,0.0,0.0,18.5,183,10.8,0.0,147.0,135.0,-59.0,7.0,46.0,14.0,49.90760349083453,437.8378378378378,101.83848820427048,-14.0,52.2272273,6.8446642,3.4,1593.8,0.0,0.0,1593.8,528.7999999523163,0.0,0.0,0.0,0.0,0.0,3.4,222.0,453.0,1.0,4.0,185,3.4,0.0,0.0,147.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,135.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +198,198,0.0,1604.8,0.0,1603187453.0,146.6275659824047,3.41,0.0,0.0,18.5,184,11.0,0.0,148.0,142.0,-60.0,7.0,46.0,13.0,53.27973886183686,460.5405405405405,104.31138747633885,-18.0,52.2273264,6.8446738,3.41,1604.8,0.0,0.0,1604.8,532.0,0.0,0.0,0.0,0.0,0.0,3.41,237.0,464.0,1.0,4.0,186,3.41,0.0,0.0,148.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,142.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +199,199,0.0,1616.0,0.0,1603187456.1999998,145.7725947521866,3.43,0.0,0.0,18.5,185,11.1,0.0,147.0,144.0,-59.0,6.0,47.0,13.0,56.20225618337223,467.02702702702703,99.36558893220207,-28.0,52.2274264,6.844685000000001,3.43,1616.0,0.0,0.0,1616.0,535.1999998092651,0.0,0.0,0.0,0.0,0.0,3.43,250.00000000000003,442.0,1.0,4.0,187,3.43,0.0,0.0,147.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,144.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +200,200,0.0,1627.1,0.0,1603187459.4,144.92753623188406,3.45,0.0,0.0,18.5,186,11.1,0.0,148.0,150.0,-59.0,6.0,47.0,12.0,58.22553740597362,486.4864864864865,107.6835228473412,-20.0,52.2275256,6.8447004,3.45,1627.1,0.0,0.0,1627.1,538.4000000953674,0.0,0.0,0.0,0.0,0.0,3.45,259.0,479.0,1.0,4.0,188,3.45,0.0,0.0,148.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,150.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +201,201,0.0,1638.1,0.0,1603187462.6,144.50867052023122,3.46,0.0,0.0,19.0,187,10.9,0.0,150.0,149.0,-60.0,4.0,47.0,12.0,53.72935691130385,470.5263157894737,108.13314089680814,-7.0,52.2276236,6.8447177,3.46,1638.1,0.0,0.0,1638.1,541.5999999046326,0.0,0.0,0.0,0.0,0.0,3.46,239.0,481.0,1.0,4.0,189,3.46,0.0,0.0,150.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,149.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +202,202,0.0,1648.9,0.0,1603187465.8,145.3488372093023,3.44,0.0,0.0,19.0,188,10.9,0.0,150.0,166.0,-60.0,7.0,48.0,11.0,61.59767277697596,524.2105263157895,112.40451236674446,-12.0,52.227721,6.8447273,3.44,1648.9,0.0,0.0,1648.9,544.7999999523163,0.0,0.0,0.0,0.0,0.0,3.44,274.0,500.00000000000006,1.0,4.0,190,3.4400000000000004,0.0,0.0,150.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,166.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +203,203,0.0,1660.0,0.0,1603187469.0,145.3488372093023,3.44,0.0,0.0,19.0,189,11.0,0.0,151.0,159.0,-60.0,6.0,48.0,13.0,55.977447158638725,502.10526315789474,112.17970334201095,-16.0,52.22781989999999,6.8447375,3.44,1660.0,0.0,0.0,1660.0,548.0,0.0,0.0,0.0,0.0,0.0,3.44,249.0,499.00000000000006,1.0,4.0,191,3.4400000000000004,0.0,0.0,151.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,159.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +204,204,0.0,1670.6,0.0,1603187472.0,144.50867052023122,3.46,0.0,0.0,19.5,190,10.7,0.0,151.0,163.0,-62.0,6.0,48.0,11.0,56.87668325757269,501.53846153846155,109.03237699574213,-2.0,52.2279157,6.8447406000000015,3.46,1670.6,0.0,0.0,1670.6,551.0,0.0,0.0,0.0,0.0,0.0,3.46,253.0,485.0,1.0,4.0,192,3.46,0.0,0.0,151.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,163.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +205,205,0.0,1681.0,0.0,1603187475.0,145.7725947521866,3.43,0.0,0.0,19.0,191,10.3,0.0,151.0,176.0,-61.0,5.0,49.0,13.0,64.29538107377782,555.7894736842105,122.97053652921842,-20.0,52.2280085,6.8447377000000005,3.43,1681.0,0.0,0.0,1681.0,554.0,0.0,0.0,0.0,0.0,0.0,3.43,285.99999999999994,547.0,1.0,4.0,193,3.43,0.0,0.0,151.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,176.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +206,206,0.0,1692.0,0.0,1603187478.1999998,146.6275659824047,3.41,0.0,0.0,19.5,192,11.1,0.0,151.0,159.0,-60.0,6.0,48.0,16.0,61.59767277697596,489.2307692307692,113.52855749041193,-14.0,52.2281078,6.8447283,3.41,1692.0,0.0,0.0,1692.0,557.1999998092651,0.0,0.0,0.0,0.0,0.0,3.41,274.0,505.0,1.0,4.0,194,3.41,0.0,0.0,151.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,159.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +207,207,0.0,1702.5,0.0,1603187481.1999998,147.05882352941177,3.4,0.0,0.0,19.5,193,10.4,0.0,152.0,168.0,-61.0,6.0,48.0,11.0,62.9465269253769,516.9230769230769,118.24954700981516,-12.0,52.2282013,6.8447156000000025,3.4,1702.5,0.0,0.0,1702.5,560.1999998092651,0.0,0.0,0.0,0.0,0.0,3.4,280.0,526.0,1.0,4.0,195,3.4,0.0,0.0,152.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,168.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +208,208,0.0,1713.4,0.0,1603187484.4,148.80952380952382,3.36,0.0,0.0,18.5,194,10.9,0.0,151.0,147.0,-59.0,6.0,48.0,13.0,56.87668325757269,476.7567567567568,116.00145676248027,-23.0,52.2282984,6.8446927,3.36,1713.4,0.0,0.0,1713.4,563.4000000953674,0.0,0.0,0.0,0.0,0.0,3.36,253.0,516.0,1.0,4.0,196,3.36,0.0,0.0,151.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,147.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +209,209,0.0,1724.3,0.0,1603187487.6,150.15015015015015,3.33,0.0,0.0,19.0,195,10.9,0.0,151.0,156.0,-60.0,6.0,48.0,13.0,57.101492282306175,492.63157894736844,109.70680406994256,-15.0,52.2283952,6.844665400000001,3.33,1724.3,0.0,0.0,1724.3,566.5999999046326,0.0,0.0,0.0,0.0,0.0,3.33,254.0,488.0,1.0,4.0,197,3.33,0.0,0.0,151.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,156.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +210,210,0.0,1735.4,0.0,1603187491.0,149.2537313432836,3.35,0.0,0.0,19.0,196,11.1,0.0,151.0,152.0,-59.0,7.0,47.0,13.0,56.20225618337223,480.0,111.05565821834352,-10.0,52.2284927,6.844634299999999,3.35,1735.4,0.0,0.0,1735.4,570.0,0.0,0.0,0.0,0.0,0.0,3.35,250.00000000000003,494.0,1.0,4.0,198,3.35,0.0,0.0,151.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,152.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +211,211,0.0,1745.8,0.0,1603187494.0,147.49262536873155,3.39,0.0,0.0,19.0,197,10.4,0.0,152.0,161.0,-61.0,6.0,49.0,14.0,60.698436678042,508.42105263157896,115.77664773774679,-11.0,52.2285842,6.8446005,3.39,1745.8,0.0,0.0,1745.8,573.0,0.0,0.0,0.0,0.0,0.0,3.39,270.0,515.0,1.0,4.0,199,3.39,0.0,0.0,152.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,161.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +212,212,0.0,1756.3,0.0,1603187497.0,145.3488372093023,3.44,0.0,0.0,19.0,198,10.5,0.0,151.0,160.0,-60.0,7.0,50.0,16.0,60.02400960384154,505.2631578947368,112.62932139147793,-19.0,52.2286753,6.8445595,3.44,1756.3,0.0,0.0,1756.3,576.0,0.0,0.0,0.0,0.0,0.0,3.44,267.0,501.00000000000006,1.0,4.0,200,3.4400000000000004,0.0,0.0,151.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,160.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +213,213,0.0,1766.9,0.0,1603187500.0,142.85714285714286,3.5,0.0,0.0,19.5,199,10.5,0.0,150.0,159.0,-60.0,7.0,48.0,11.0,55.52782910917176,489.2307692307692,115.3270296882798,-15.0,52.228766,6.8445149,3.5,1766.9,0.0,0.0,1766.9,579.0,0.0,0.0,0.0,0.0,0.0,3.5,247.0,513.0,1.0,4.0,201,3.5,0.0,0.0,150.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,159.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +214,214,0.0,1777.9,0.0,1603187503.1999998,142.04545454545453,3.52,0.0,0.0,19.0,200,11.0,0.0,152.0,166.0,-60.0,5.0,49.0,14.0,63.39614497484386,524.2105263157895,112.17970334201095,-23.0,52.2288603,6.8444661999999985,3.52,1777.9,0.0,0.0,1777.9,582.1999998092651,0.0,0.0,0.0,0.0,0.0,3.52,282.0,499.00000000000006,1.0,4.0,202,3.5200000000000005,0.0,0.0,152.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,166.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +215,215,0.0,1789.1,0.0,1603187506.3,142.04545454545453,3.52,0.0,0.0,19.0,201,11.2,0.0,153.0,155.0,-60.0,5.0,48.0,12.0,56.65187423283921,489.4736842105263,110.38123114414304,-3.0,52.2289546,6.8444106,3.52,1789.1,0.0,0.0,1789.1,585.2999999523163,0.0,0.0,0.0,0.0,0.0,3.52,252.0,491.0,1.0,4.0,203,3.5200000000000005,0.0,0.0,153.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,155.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +216,216,0.0,1799.8,0.0,1603187509.4,142.85714285714286,3.5,0.0,0.0,19.5,202,10.8,0.0,152.0,157.0,-59.0,6.0,50.0,16.0,61.372863752242466,483.0769230769231,111.280467243077,-19.0,52.2290452,6.8443553,3.5,1799.8,0.0,0.0,1799.8,588.4000000953674,0.0,0.0,0.0,0.0,0.0,3.5,273.0,495.0,1.0,4.0,204,3.5,0.0,0.0,152.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,157.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +217,217,0.0,1810.9,0.0,1603187512.6,144.0922190201729,3.47,0.0,0.0,19.0,203,11.1,0.0,153.0,159.0,-60.0,6.0,49.0,15.0,55.977447158638725,502.10526315789474,115.55183871301331,-18.0,52.2291373,6.8442935,3.47,1810.9,0.0,0.0,1810.9,591.5999999046326,0.0,0.0,0.0,0.0,0.0,3.47,249.0,514.0,1.0,4.0,205,3.47,0.0,0.0,153.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,159.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +218,218,0.0,1821.9,0.0,1603187515.8,143.67816091954026,3.48,0.0,0.0,19.0,204,11.0,0.0,153.0,157.0,-59.0,7.0,50.0,16.0,55.977447158638725,495.7894736842105,117.5751199356147,-20.0,52.2292276,6.8442297000000005,3.48,1821.9,0.0,0.0,1821.9,594.7999999523163,0.0,0.0,0.0,0.0,0.0,3.48,249.0,523.0,1.0,4.0,206,3.479999999999998,0.0,0.0,153.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,157.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +219,219,0.0,1832.4,0.0,1603187518.8,144.50867052023122,3.46,0.0,0.0,19.0,205,10.5,0.0,152.0,166.0,-61.0,5.0,50.0,14.0,62.49690887590992,524.2105263157895,109.93161309467608,-7.0,52.2293131,6.8441646999999985,3.46,1832.4,0.0,0.0,1832.4,597.7999999523163,0.0,0.0,0.0,0.0,0.0,3.46,278.0,489.0,1.0,4.0,207,3.46,0.0,0.0,152.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,166.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +220,220,0.0,1843.2,0.0,1603187522.0,145.7725947521866,3.43,0.0,0.0,19.0,206,10.8,0.0,153.0,137.0,-57.0,7.0,46.0,14.0,50.58203056503501,432.63157894736844,103.18734235267141,-18.0,52.2293995,6.844090799999999,3.43,1843.2,0.0,0.0,1843.2,601.0,0.0,0.0,0.0,0.0,0.0,3.43,225.0,459.0,1.0,4.0,208,3.43,0.0,0.0,153.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,137.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +221,221,0.0,1854.2,0.0,1603187525.1999998,145.7725947521866,3.43,0.0,0.0,19.0,207,11.0,0.0,153.0,148.0,-59.0,5.0,47.0,15.0,53.50454788657036,467.36842105263156,110.38123114414304,-17.0,52.22948710000001,6.8440159,3.43,1854.2,0.0,0.0,1854.2,604.1999998092651,0.0,0.0,0.0,0.0,0.0,3.43,238.0,491.0,1.0,4.0,209,3.43,0.0,0.0,153.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,148.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +222,222,0.0,1864.8,0.0,1603187528.1999998,145.3488372093023,3.44,0.0,0.0,19.0,208,10.6,0.0,155.0,151.0,-59.0,6.0,47.0,14.0,54.85340203497128,476.8421052631579,108.13314089680814,-16.0,52.2295713,6.8439427,3.44,1864.8,0.0,0.0,1864.8,607.1999998092651,0.0,0.0,0.0,0.0,0.0,3.44,244.0,481.0,1.0,4.0,210,3.4400000000000004,0.0,0.0,155.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,151.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +223,223,0.0,1875.9,0.0,1603187531.4,144.50867052023122,3.46,0.0,0.0,19.0,209,11.0,0.0,157.0,160.0,-60.0,6.0,48.0,14.0,62.272099851176435,505.2631578947368,112.17970334201095,-21.0,52.2296604,6.8438717,3.46,1875.9,0.0,0.0,1875.9,610.4000000953674,0.0,0.0,0.0,0.0,0.0,3.46,277.0,499.00000000000006,1.0,4.0,211,3.46,0.0,0.0,157.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,160.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +224,224,0.0,1887.0,0.0,1603187534.6,144.0922190201729,3.47,0.0,0.0,19.5,210,11.1,0.0,157.0,163.0,-60.0,5.0,48.0,13.0,65.41942619744528,501.53846153846155,112.17970334201095,-2.0,52.2297512,6.8438024,3.47,1887.0,0.0,0.0,1887.0,613.5999999046326,0.0,0.0,0.0,0.0,0.0,3.47,291.00000000000006,499.00000000000006,1.0,4.0,212,3.47,0.0,0.0,157.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,163.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +225,225,0.0,1898.2,0.0,1603187537.8,144.0922190201729,3.47,0.0,0.0,18.5,211,11.1,0.0,155.0,151.0,-58.0,6.0,48.0,16.0,62.04729082644294,489.72972972972974,119.82321018294958,-16.0,52.2298407,6.8437300999999975,3.47,1898.2,0.0,0.0,1898.2,616.7999999523163,0.0,0.0,0.0,0.0,0.0,3.47,276.0,533.0,1.0,4.0,213,3.47,0.0,0.0,155.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,151.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +226,226,0.0,1908.5,0.0,1603187540.8,144.50867052023122,3.46,0.0,0.0,19.5,212,10.3,0.0,155.0,166.0,-59.0,5.0,48.0,14.0,66.76828034584621,510.7692307692308,116.45107481194724,-14.0,52.2299238,6.8436625,3.46,1908.5,0.0,0.0,1908.5,619.7999999523163,0.0,0.0,0.0,0.0,0.0,3.46,297.0,518.0,1.0,4.0,214,3.46,0.0,0.0,155.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,166.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +227,227,0.0,1919.3,0.0,1603187544.0,146.19883040935673,3.42,0.0,0.0,19.0,213,10.8,0.0,155.0,162.0,-59.0,8.0,51.0,15.0,60.92324570277549,511.57894736842104,118.47435603454865,-20.0,52.2300095,6.8435872999999985,3.42,1919.3,0.0,0.0,1919.3,623.0,0.0,0.0,0.0,0.0,0.0,3.42,271.0,527.0,1.0,4.0,215,3.42,0.0,0.0,155.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,162.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +228,228,0.0,1930.5,0.0,1603187547.1999998,146.19883040935673,3.42,0.0,0.0,18.5,214,11.2,0.0,155.0,155.0,-59.0,6.0,49.0,13.0,57.101492282306175,502.7027027027027,113.07893944094492,-20.0,52.2300972,6.8435066,3.42,1930.5,0.0,0.0,1930.5,626.1999998092651,0.0,0.0,0.0,0.0,0.0,3.42,254.0,503.0,1.0,4.0,216,3.42,0.0,0.0,155.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,155.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +229,229,0.0,1941.5,0.0,1603187550.4,147.05882352941177,3.4,0.0,0.0,19.0,215,10.9,0.0,156.0,171.0,-61.0,6.0,48.0,12.0,62.721717900643405,540.0,123.19534555395192,-8.0,52.2301817,6.8434238,3.4,1941.5,0.0,0.0,1941.5,629.4000000953674,0.0,0.0,0.0,0.0,0.0,3.4,279.0,548.0,1.0,4.0,217,3.4,0.0,0.0,156.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,171.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +230,230,0.0,1951.8,0.0,1603187553.4,148.80952380952382,3.36,0.0,0.0,19.5,216,10.3,0.0,156.0,159.0,-60.0,8.0,48.0,12.0,53.95416593603733,489.2307692307692,122.52091847975143,-13.0,52.2302589,6.8433408,3.36,1951.8,0.0,0.0,1951.8,632.4000000953674,0.0,0.0,0.0,0.0,0.0,3.36,240.0,545.0,1.0,4.0,218,3.36,0.0,0.0,156.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,159.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +231,231,0.0,1962.8,0.0,1603187556.6,148.3679525222552,3.37,0.0,0.0,19.0,217,11.0,0.0,154.0,169.0,-60.0,6.0,48.0,13.0,58.675155455440596,533.6842105263158,114.65260261407934,-11.0,52.2303401,6.8432478,3.37,1962.8,0.0,0.0,1962.8,635.5999999046326,0.0,0.0,0.0,0.0,0.0,3.37,261.0,510.0,1.0,4.0,219,3.37,0.0,0.0,154.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,169.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +232,232,0.0,1974.0,0.0,1603187560.1,146.19883040935673,3.42,0.0,0.0,19.0,218,11.2,0.0,156.0,161.0,-60.0,7.0,47.0,13.0,59.12477350490758,508.42105263157896,123.64496360341889,-11.0,52.2304207,6.843149900000001,3.42,1974.0,0.0,0.0,1974.0,639.0999999046326,0.0,0.0,0.0,0.0,0.0,3.42,263.0,550.0,1.0,4.0,220,3.42,0.0,0.0,156.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,161.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +233,233,0.0,1984.6,0.0,1603187563.0,145.3488372093023,3.44,0.0,0.0,19.0,219,10.6,0.0,156.0,157.0,-60.0,6.0,49.0,14.0,59.34958252964107,495.7894736842105,111.05565821834352,-30.0,52.2304965,6.843054799999999,3.44,1984.6,0.0,0.0,1984.6,642.0,0.0,0.0,0.0,0.0,0.0,3.44,264.0,494.0,1.0,4.0,221,3.4400000000000004,0.0,0.0,156.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,157.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +234,234,0.0,1995.1,0.0,1603187566.0,144.92753623188406,3.45,0.0,0.0,19.0,220,10.5,0.0,154.0,152.0,-59.0,7.0,50.0,15.0,58.00072838124014,480.0,104.98581455053932,-10.0,52.2305699,6.842959,3.45,1995.1,0.0,0.0,1995.1,645.0,0.0,0.0,0.0,0.0,0.0,3.45,258.0,467.0,1.0,4.0,222,3.45,0.0,0.0,154.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,152.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +235,235,0.0,2005.6,0.0,1603187569.0,143.2664756446991,3.49,0.0,0.0,19.0,221,10.5,0.0,155.0,154.0,-59.0,6.0,49.0,15.0,58.45034643070712,486.3157894736842,109.48199504520909,-4.0,52.2306434,6.8428625,3.49,2005.6,0.0,0.0,2005.6,648.0,0.0,0.0,0.0,0.0,0.0,3.49,260.0,487.0,1.0,4.0,223,3.4900000000000007,0.0,0.0,155.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,154.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +236,236,0.0,2016.5,0.0,1603187572.1999998,143.67816091954026,3.48,0.0,0.0,19.0,222,10.9,0.0,156.0,138.0,-58.0,8.0,47.0,13.0,55.30302008443826,435.7894736842105,106.78428674840723,-18.0,52.230718,6.8427592000000015,3.48,2016.5,0.0,0.0,2016.5,651.1999998092651,0.0,0.0,0.0,0.0,0.0,3.48,246.0,475.0,1.0,4.0,224,3.479999999999998,0.0,0.0,156.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,138.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +237,237,0.0,2027.9,0.0,1603187575.4,144.50867052023122,3.46,0.0,0.0,19.0,223,11.4,0.0,156.0,156.0,-59.0,5.0,47.0,14.0,56.20225618337223,492.63157894736844,112.17970334201095,-14.0,52.2307968,6.8426525,3.46,2027.9,0.0,0.0,2027.9,654.4000000953674,0.0,0.0,0.0,0.0,0.0,3.46,250.00000000000003,499.00000000000006,1.0,4.0,225,3.46,0.0,0.0,156.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,156.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +238,238,0.0,2039.2,0.0,1603187578.6,144.50867052023122,3.46,0.0,0.0,18.5,224,11.3,0.0,156.0,147.0,-60.0,6.0,47.0,13.0,57.32630130703967,476.7567567567568,106.78428674840723,-18.0,52.2308739,6.8425452999999985,3.46,2039.2,0.0,0.0,2039.2,657.5999999046326,0.0,0.0,0.0,0.0,0.0,3.46,255.0,475.0,1.0,4.0,226,3.46,0.0,0.0,156.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,147.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +239,239,0.0,2050.4,0.0,1603187581.8,143.2664756446991,3.49,0.0,0.0,18.5,225,11.2,0.0,156.0,147.0,-59.0,6.0,50.0,20.0,55.30302008443826,476.7567567567568,118.69916505928214,-14.0,52.2309499,6.8424377000000005,3.49,2050.4,0.0,0.0,2050.4,660.7999999523163,0.0,0.0,0.0,0.0,0.0,3.49,246.0,528.0,1.0,4.0,227,3.4900000000000007,0.0,0.0,156.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,147.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +240,240,0.0,2061.4,0.0,1603187585.0,143.67816091954026,3.48,0.0,0.0,19.0,226,11.0,0.0,157.0,152.0,-59.0,6.0,45.0,12.0,58.00072838124014,480.0,113.07893944094492,-16.0,52.23102479999999,6.842332099999999,3.48,2061.4,0.0,0.0,2061.4,664.0,0.0,0.0,0.0,0.0,0.0,3.48,258.0,503.0,1.0,4.0,228,3.479999999999998,0.0,0.0,157.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,152.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +241,241,0.0,2073.1,0.0,1603187588.4,144.92753623188406,3.45,0.0,0.0,17.5,227,11.7,0.0,159.0,153.0,-58.0,5.0,48.0,13.0,65.64423522217875,524.5714285714286,121.62168238081749,-11.0,52.23110250000001,6.8422168,3.45,2073.1,0.0,0.0,2073.1,667.4000000953674,0.0,0.0,0.0,0.0,0.0,3.45,292.0,541.0,1.0,4.0,229,3.45,0.0,0.0,159.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,153.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +242,242,0.0,2083.7,0.0,1603187591.6,146.19883040935673,3.42,0.0,0.0,19.5,228,10.7,0.0,157.0,168.0,-60.0,6.0,48.0,14.0,65.86904424691225,516.9230769230769,115.77664773774679,-16.0,52.231171,6.8421073,3.42,2083.7,0.0,0.0,2083.7,670.5999999046326,0.0,0.0,0.0,0.0,0.0,3.42,293.0,515.0,1.0,4.0,230,3.42,0.0,0.0,157.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,168.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +243,243,0.0,2094.4,0.0,1603187594.6,144.92753623188406,3.45,0.0,0.0,19.5,229,10.7,0.0,156.0,172.0,-60.0,5.0,48.0,15.0,63.62095399957736,529.2307692307693,118.24954700981516,-16.0,52.23124110000001,6.8420015,3.45,2094.4,0.0,0.0,2094.4,673.5999999046326,0.0,0.0,0.0,0.0,0.0,3.45,283.0,526.0,1.0,4.0,231,3.45,0.0,0.0,156.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,172.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +244,244,0.0,2105.4,0.0,1603187597.8,142.45014245014247,3.51,0.0,0.0,19.0,230,11.1,0.0,156.0,169.0,-60.0,7.0,47.0,12.0,62.9465269253769,533.6842105263158,129.04038019702259,-20.0,52.2313138,6.8418909,3.51,2105.4,0.0,0.0,2105.4,676.7999999523163,0.0,0.0,0.0,0.0,0.0,3.51,280.0,573.9999999999999,1.0,4.0,232,3.51,0.0,0.0,156.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,169.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +245,245,0.0,2116.5,0.0,1603187601.0,143.2664756446991,3.49,0.0,0.0,18.5,231,11.1,0.0,156.0,155.0,-60.0,6.0,46.0,13.0,61.59767277697596,502.7027027027027,113.30374846567841,-17.0,52.2313855,6.8417782,3.49,2116.5,0.0,0.0,2116.5,680.0,0.0,0.0,0.0,0.0,0.0,3.49,274.0,504.0,1.0,4.0,233,3.4900000000000007,0.0,0.0,156.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,155.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +246,246,0.0,2127.5,0.0,1603187604.1999998,145.7725947521866,3.43,0.0,0.0,19.0,232,11.0,0.0,157.0,150.0,-61.0,7.0,49.0,17.0,57.32630130703967,473.6842105263158,116.22626578721376,-14.0,52.231456,6.8416658,3.43,2127.5,0.0,0.0,2127.5,683.1999998092651,0.0,0.0,0.0,0.0,0.0,3.43,255.0,517.0,1.0,4.0,234,3.43,0.0,0.0,157.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,150.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +247,247,0.0,2138.8,0.0,1603187607.4,146.6275659824047,3.41,0.0,0.0,18.0,233,11.3,0.0,157.0,147.0,-59.0,5.0,46.0,14.0,59.34958252964107,490.0,114.87741163881284,-19.0,52.2315272,6.841547900000001,3.41,2138.8,0.0,0.0,2138.8,686.4000000953674,0.0,0.0,0.0,0.0,0.0,3.41,264.0,511.0,1.0,4.0,235,3.41,0.0,0.0,157.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,147.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +248,248,0.0,2149.8,0.0,1603187610.6,147.49262536873155,3.39,0.0,0.0,18.0,234,11.0,0.0,157.0,148.0,-59.0,4.0,47.0,13.0,56.42706520810572,493.3333333333333,109.48199504520909,-4.0,52.2315974,6.8414333,3.39,2149.8,0.0,0.0,2149.8,689.5999999046326,0.0,0.0,0.0,0.0,0.0,3.39,251.0,487.0,1.0,4.0,236,3.39,0.0,0.0,157.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,148.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +249,249,0.0,2160.4,0.0,1603187614.0,149.2537313432836,3.35,0.0,0.0,19.0,235,10.6,0.0,157.0,149.0,-59.0,6.0,48.0,15.0,62.272099851176435,470.5263157894737,107.6835228473412,-16.0,52.2316624,6.8413195999999985,3.35,2160.4,0.0,0.0,2160.4,693.0,0.0,0.0,0.0,0.0,0.0,3.35,277.0,479.0,1.0,4.0,237,3.35,0.0,0.0,157.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,149.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +250,250,0.0,2170.1,0.0,1603187617.0,151.9756838905775,3.29,0.0,0.0,18.0,236,9.7,0.0,158.0,156.0,-60.0,5.0,47.0,13.0,62.272099851176435,520.0,114.65260261407934,-16.0,52.2317248,6.8412203,3.29,2170.1,0.0,0.0,2170.1,696.0,0.0,0.0,0.0,0.0,0.0,3.29,277.0,510.0,1.0,4.0,237,3.29,0.0,0.0,158.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,156.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +251,251,0.0,2181.3,0.0,1603187620.3,153.84615384615384,3.25,0.0,0.0,18.5,237,11.2,0.0,158.0,149.0,-57.0,7.0,48.0,15.0,59.799200579108046,483.2432432432432,116.90069286141424,-7.0,52.2318024,6.8411158,3.25,2181.3,0.0,0.0,2181.3,699.2999999523163,0.0,0.0,0.0,0.0,0.0,3.25,266.0,520.0,1.0,4.0,239,3.25,0.0,0.0,158.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,149.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +252,252,0.0,2193.0,0.0,1603187623.6,148.3679525222552,3.37,0.0,0.0,18.5,238,11.7,0.0,157.0,176.0,-59.0,4.0,48.0,10.0,73.06293303838389,570.8108108108108,112.17970334201095,-3.0,52.2318826,6.8410062000000025,3.37,2193.0,0.0,0.0,2193.0,702.5999999046326,0.0,0.0,0.0,0.0,0.0,3.37,325.0,499.00000000000006,1.0,4.0,240,3.37,0.0,0.0,157.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,176.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +253,253,0.0,2203.5,0.0,1603187626.6,145.7725947521866,3.43,0.0,0.0,19.5,239,10.6,0.0,157.0,159.0,-58.0,4.0,47.0,14.0,64.9698081479783,489.2307692307692,114.20298456461235,-15.0,52.2319526,6.8409015,3.43,2203.5,0.0,0.0,2203.5,705.5999999046326,0.0,0.0,0.0,0.0,0.0,3.43,289.00000000000006,508.0,1.0,4.0,241,3.43,0.0,0.0,157.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,159.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +254,254,0.0,2214.2,0.0,1603187629.8,148.3679525222552,3.37,0.0,0.0,19.0,240,10.6,0.0,157.0,159.0,-59.0,6.0,46.0,10.0,59.574391554374564,502.10526315789474,116.45107481194724,-28.0,52.2320227,6.8407954,3.37,2214.2,0.0,0.0,2214.2,708.7999999523163,0.0,0.0,0.0,0.0,0.0,3.37,265.0,518.0,1.0,4.0,242,3.37,0.0,0.0,157.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,159.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +255,255,0.0,2225.3,0.0,1603187632.8,146.6275659824047,3.41,0.0,0.0,19.0,241,11.1,0.0,160.0,152.0,-59.0,5.0,46.0,14.0,58.00072838124014,480.0,111.50527626781047,-33.0,52.2320937,6.840681,3.41,2225.3,0.0,0.0,2225.3,711.7999999523163,0.0,0.0,0.0,0.0,0.0,3.41,258.0,496.0,1.0,4.0,242,3.41,0.0,0.0,160.0,160.0,0.0,0.0,142,146,160,167,180,192,0.0,152.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +256,256,0.0,2236.8,0.0,1603187636.0,142.85714285714286,3.5,0.0,0.0,19.0,242,11.5,0.0,160.0,158.0,-59.0,6.0,45.0,13.0,61.59767277697596,498.94736842105266,121.396873356084,-19.0,52.2321675,6.840563,3.5,2236.8,0.0,0.0,2236.8,715.0,0.0,0.0,0.0,0.0,0.0,3.5,274.0,540.0,1.0,4.0,243,3.5,0.0,0.0,160.0,160.0,0.0,0.0,142,146,160,167,180,192,0.0,158.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +257,257,0.0,2248.4,0.0,1603187639.1999998,142.45014245014247,3.51,0.0,0.0,19.0,243,11.6,0.0,160.0,147.0,-58.0,7.0,48.0,13.0,58.00072838124014,464.2105263157895,106.78428674840723,-30.0,52.2322423,6.8404439,3.51,2248.4,0.0,0.0,2248.4,718.1999998092651,0.0,0.0,0.0,0.0,0.0,3.51,258.0,475.0,1.0,4.0,244,3.51,0.0,0.0,160.0,160.0,0.0,0.0,142,146,160,167,180,192,0.0,147.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +258,258,0.0,2260.3,0.0,1603187642.6,142.45014245014247,3.51,0.0,0.0,18.5,244,11.9,0.0,158.0,151.0,-59.0,6.0,47.0,13.0,58.22553740597362,489.72972972972974,108.13314089680814,-13.0,52.2323195,6.8403231,3.51,2260.3,0.0,0.0,2260.3,721.5999999046326,0.0,0.0,0.0,0.0,0.0,3.51,259.0,481.0,1.0,4.0,246,3.51,0.0,0.0,158.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,151.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +259,259,0.0,2271.6,0.0,1603187645.8,143.2664756446991,3.49,0.0,0.0,18.5,245,11.3,0.0,159.0,143.0,-59.0,8.0,47.0,13.0,53.95416593603733,463.7837837837838,110.15642211940956,-13.0,52.2323925,6.840208099999999,3.49,2271.6,0.0,0.0,2271.6,724.7999999523163,0.0,0.0,0.0,0.0,0.0,3.49,240.0,490.0,1.0,4.0,247,3.4900000000000007,0.0,0.0,159.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,143.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +260,260,0.0,2283.0,0.0,1603187649.0,144.50867052023122,3.46,0.0,0.0,18.5,246,11.4,0.0,159.0,148.0,-58.0,5.0,48.0,13.0,57.55111033177316,480.0,110.83084919361002,-13.0,52.2324668,6.8400936,3.46,2283.0,0.0,0.0,2283.0,728.0,0.0,0.0,0.0,0.0,0.0,3.46,256.0,493.0,1.0,4.0,248,3.46,0.0,0.0,159.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,148.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +261,261,0.0,2294.8,0.0,1603187652.4,145.3488372093023,3.44,0.0,0.0,18.0,247,11.9,0.0,159.0,158.0,-60.0,6.0,49.0,14.0,62.272099851176435,526.6666666666666,115.55183871301331,-20.0,52.23254470000001,6.8399747999999985,3.44,2294.8,0.0,0.0,2294.8,731.4000000953674,0.0,0.0,0.0,0.0,0.0,3.44,277.0,514.0,1.0,4.0,249,3.4400000000000004,0.0,0.0,159.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,158.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +262,262,0.0,2306.8,0.0,1603187656.1,146.6275659824047,3.41,0.0,0.0,18.0,248,11.9,0.0,159.0,155.0,-60.0,6.0,48.0,12.0,63.845763024310855,516.6666666666666,114.42779358934584,-13.0,52.2326225,6.8398545,3.41,2306.8,0.0,0.0,2306.8,735.0999999046326,0.0,0.0,0.0,0.0,0.0,3.41,284.0,509.0,1.0,4.0,250,3.41,0.0,0.0,159.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,155.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +263,263,0.0,2317.5,0.0,1603187659.1,147.49262536873155,3.39,0.0,0.0,17.5,249,10.8,0.0,159.0,150.0,-60.0,7.0,48.0,13.0,61.14805472750896,514.2857142857143,117.5751199356147,-20.0,52.232692,6.8397447,3.39,2317.5,0.0,0.0,2317.5,738.0999999046326,0.0,0.0,0.0,0.0,0.0,3.39,272.0,523.0,1.0,4.0,251,3.39,0.0,0.0,159.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,150.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +264,264,0.0,2329.7,0.0,1603187662.4,146.19883040935673,3.42,0.0,0.0,18.0,250,12.1,0.0,159.0,166.0,-61.0,6.0,47.0,12.0,69.46598864264807,553.3333333333334,120.49763725715005,-19.0,52.2327723,6.839624099999999,3.42,2329.7,0.0,0.0,2329.7,741.4000000953674,0.0,0.0,0.0,0.0,0.0,3.42,309.0,536.0,1.0,4.0,252,3.42,0.0,0.0,159.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,166.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +265,265,0.0,2341.4,0.0,1603187665.8,144.50867052023122,3.46,0.0,0.0,18.5,251,11.7,0.0,159.0,158.0,-60.0,7.0,47.0,12.0,63.62095399957736,512.4324324324324,116.90069286141424,-24.0,52.2328497,6.8395076,3.46,2341.4,0.0,0.0,2341.4,744.7999999523163,0.0,0.0,0.0,0.0,0.0,3.46,283.0,520.0,1.0,4.0,253,3.46,0.0,0.0,159.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,158.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +266,266,0.0,2352.8,0.0,1603187669.0,143.67816091954026,3.48,0.0,0.0,18.5,252,11.4,0.0,159.0,158.0,28.0,7.0,34.0,12.0,-1.5736631731344224,512.4324324324324,2.6977082968018657,34.0,52.2329229,6.839391,3.48,2352.8,0.0,0.0,2352.8,748.0,0.0,0.0,0.0,0.0,0.0,3.48,-7.000000000000001,12.0,1.0,4.0,254,3.479999999999998,0.0,0.0,159.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,158.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +267,267,0.0,2352.8,0.0,1603187669.0,143.67816091954026,3.48,0.0,0.0,18.5,252,11.4,0.0,159.0,1.0,10.0,7.0,33.0,12.0,0.6744270742004667,3.2432432432432434,2.6977082968018657,16.0,52.2329229,6.839391,3.48,2352.8,0.0,0.0,2352.8,748.0,0.0,0.0,0.0,0.0,0.0,3.48,3.0,12.0,1.0,4.0,254,3.479999999999998,0.0,0.0,159.0,0.0,0.0,0.0,142,146,160,167,180,192,1.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +268,268,0.0,2352.8,0.0,1603187669.0,143.67816091954026,3.48,0.0,0.0,18.5,252,11.4,0.0,159.0,144.0,-59.0,7.0,48.0,16.0,57.32630130703967,467.02702702702703,111.95489431727744,-21.0,52.2329229,6.839391,3.48,2352.8,0.0,0.0,2352.8,748.0,0.0,0.0,0.0,0.0,0.0,3.48,255.0,498.0,1.0,4.0,254,3.479999999999998,0.0,0.0,159.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,144.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +269,269,0.0,2382.7,0.0,1603187680.8,191.57088122605361,2.61,0.0,0.0,23.0,253,29.9,0.0,159.0,194.0,-51.0,4.0,46.0,10.0,66.54347132111272,506.0869565217391,127.24190799915472,-15.0,52.2331205,6.8390943,2.61,2382.7,0.0,0.0,2382.7,759.7999999523163,0.0,0.0,0.0,0.0,0.0,2.61,296.0,566.0,1.0,4.0,258,2.6100000000000003,0.0,0.0,159.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,194.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +270,270,0.0,2390.9,0.0,1603187684.0,239.2344497607656,2.09,0.0,0.0,19.5,254,8.3,0.0,159.0,185.0,-59.0,5.0,46.0,13.0,63.845763024310855,569.2307692307693,122.29610945501793,-14.0,52.2331719,6.8390065,2.09,2390.9,0.0,0.0,2390.9,763.0,0.0,0.0,0.0,0.0,0.0,2.09,284.0,544.0,1.0,4.0,259,2.0899999999999994,0.0,0.0,159.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,185.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +271,271,0.0,2401.0,0.0,1603187687.0,177.9359430604982,2.81,0.0,0.0,19.5,255,10.1,0.0,159.0,181.0,-60.0,5.0,45.0,12.0,63.62095399957736,556.9230769230769,120.7224462818835,-25.0,52.2332362,6.8389032000000025,2.81,2401.0,0.0,0.0,2401.0,766.0,0.0,0.0,0.0,0.0,0.0,2.81,283.0,537.0,1.0,4.0,260,2.81,0.0,0.0,159.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,181.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +272,272,0.0,2411.9,0.0,1603187690.1999998,151.51515151515153,3.3,0.0,0.0,19.5,256,10.9,0.0,158.0,169.0,-60.0,7.0,46.0,13.0,63.171335950110375,520.0,116.22626578721376,-18.0,52.23330479999999,6.8387892999999975,3.3,2411.9,0.0,0.0,2411.9,769.1999998092651,0.0,0.0,0.0,0.0,0.0,3.3,281.0,517.0,1.0,4.0,261,3.3,0.0,0.0,158.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,169.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +273,273,0.0,2422.7,0.0,1603187693.1999998,144.50867052023122,3.46,0.0,0.0,19.0,257,10.8,0.0,158.0,156.0,-60.0,6.0,46.0,12.0,63.62095399957736,492.63157894736844,112.40451236674446,-17.0,52.233375,6.8386799,3.46,2422.7,0.0,0.0,2422.7,772.1999998092651,0.0,0.0,0.0,0.0,0.0,3.46,283.0,500.00000000000006,1.0,4.0,262,3.46,0.0,0.0,158.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,156.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +274,274,0.0,2433.9,0.0,1603187696.4,143.2664756446991,3.49,0.0,0.0,19.0,258,11.3,0.0,157.0,160.0,-61.0,6.0,45.0,11.0,58.89996448017409,505.2631578947368,118.24954700981516,-22.0,52.2334455,6.838561500000001,3.49,2433.9,0.0,0.0,2433.9,775.4000000953674,0.0,0.0,0.0,0.0,0.0,3.49,262.0,526.0,1.0,4.0,263,3.4900000000000007,0.0,0.0,157.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,160.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +275,275,0.0,2445.5,0.0,1603187699.6,142.45014245014247,3.51,0.0,0.0,19.0,259,11.5,0.0,156.0,161.0,-61.0,5.0,47.0,12.0,60.02400960384154,508.42105263157896,109.03237699574213,-2.0,52.233519,6.8384422,3.51,2445.5,0.0,0.0,2445.5,778.5999999046326,0.0,0.0,0.0,0.0,0.0,3.51,267.0,485.0,1.0,4.0,264,3.51,0.0,0.0,156.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,161.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +276,276,0.0,2456.0,0.0,1603187702.6,142.04545454545453,3.52,0.0,0.0,19.5,260,10.6,0.0,157.0,172.0,-60.0,5.0,45.0,12.0,62.272099851176435,529.2307692307693,116.22626578721376,-15.0,52.2335853,6.8383314,3.52,2456.0,0.0,0.0,2456.0,781.5999999046326,0.0,0.0,0.0,0.0,0.0,3.52,277.0,517.0,1.0,4.0,265,3.5200000000000005,0.0,0.0,157.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,172.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +277,277,0.0,2467.2,0.0,1603187705.8,142.45014245014247,3.51,0.0,0.0,19.0,261,11.2,0.0,156.0,146.0,-60.0,6.0,46.0,13.0,58.45034643070712,461.05263157894734,103.18734235267141,-33.0,52.233658,6.8382177,3.51,2467.2,0.0,0.0,2467.2,784.7999999523163,0.0,0.0,0.0,0.0,0.0,3.51,260.0,459.0,1.0,4.0,266,3.51,0.0,0.0,156.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,146.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +278,278,0.0,2478.4,0.0,1603187709.0,143.67816091954026,3.48,0.0,0.0,18.5,262,11.1,0.0,157.0,154.0,-61.0,6.0,46.0,12.0,57.55111033177316,499.4594594594595,110.60604016887652,-28.0,52.2337295,6.8381035999999975,3.48,2478.4,0.0,0.0,2478.4,788.0,0.0,0.0,0.0,0.0,0.0,3.48,256.0,492.0,1.0,4.0,267,3.479999999999998,0.0,0.0,157.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,154.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +279,279,0.0,2489.6,0.0,1603187712.1999998,144.0922190201729,3.47,0.0,0.0,18.5,263,11.3,0.0,157.0,154.0,-60.0,6.0,47.0,14.0,59.34958252964107,499.4594594594595,109.70680406994256,-25.0,52.2338024,6.8379885,3.47,2489.6,0.0,0.0,2489.6,791.1999998092651,0.0,0.0,0.0,0.0,0.0,3.47,264.0,488.0,1.0,4.0,268,3.47,0.0,0.0,157.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,154.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +280,280,0.0,2501.0,0.0,1603187715.4,144.0922190201729,3.47,0.0,0.0,18.5,264,11.3,0.0,157.0,153.0,-60.0,6.0,45.0,11.0,58.89996448017409,496.2162162162162,108.80756797100862,-16.0,52.2338748,6.8378722000000005,3.47,2501.0,0.0,0.0,2501.0,794.4000000953674,0.0,0.0,0.0,0.0,0.0,3.47,262.0,484.0,1.0,4.0,269,3.47,0.0,0.0,157.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,153.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +281,281,0.0,2512.1,0.0,1603187718.6,145.7725947521866,3.43,0.0,0.0,18.5,265,11.1,0.0,158.0,152.0,-61.0,6.0,46.0,12.0,56.42706520810572,492.97297297297297,104.98581455053932,-30.0,52.2339447,6.8377557,3.43,2512.1,0.0,0.0,2512.1,797.5999999046326,0.0,0.0,0.0,0.0,0.0,3.43,251.0,467.0,1.0,4.0,270,3.43,0.0,0.0,158.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,152.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +282,282,0.0,2523.4,0.0,1603187722.1,145.3488372093023,3.44,0.0,0.0,18.5,266,11.3,0.0,158.0,154.0,-60.0,6.0,46.0,12.0,58.00072838124014,499.4594594594595,111.05565821834352,-32.0,52.2340193,6.8376428,3.44,2523.4,0.0,0.0,2523.4,801.0999999046326,0.0,0.0,0.0,0.0,0.0,3.44,258.0,494.0,1.0,4.0,271,3.4400000000000004,0.0,0.0,158.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,154.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +283,283,0.0,2533.8,0.0,1603187725.1,144.50867052023122,3.46,0.0,0.0,18.5,267,10.4,0.0,158.0,150.0,-61.0,8.0,47.0,13.0,57.32630130703967,486.4864864864865,109.70680406994256,-28.0,52.23408670000001,6.837536599999999,3.46,2533.8,0.0,0.0,2533.8,804.0999999046326,0.0,0.0,0.0,0.0,0.0,3.46,255.0,488.0,1.0,4.0,272,3.46,0.0,0.0,158.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,150.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +284,284,0.0,2545.2,0.0,1603187728.3,145.3488372093023,3.44,0.0,0.0,18.5,268,11.4,0.0,158.0,151.0,-60.0,7.0,47.0,14.0,57.32630130703967,489.72972972972974,113.07893944094492,-18.0,52.2341598,6.8374193,3.44,2545.2,0.0,0.0,2545.2,807.2999999523163,0.0,0.0,0.0,0.0,0.0,3.44,255.0,503.0,1.0,4.0,273,3.4400000000000004,0.0,0.0,158.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,151.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +285,285,0.0,2556.6,0.0,1603187731.6,145.3488372093023,3.44,0.0,0.0,18.5,269,11.4,0.0,157.0,157.0,-60.0,6.0,48.0,13.0,61.82248180170944,509.18918918918916,111.95489431727744,-10.0,52.2342346,6.8373057,3.44,2556.6,0.0,0.0,2556.6,810.5999999046326,0.0,0.0,0.0,0.0,0.0,3.44,275.0,498.0,1.0,4.0,274,3.4400000000000004,0.0,0.0,157.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,157.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +286,286,0.0,2567.6,0.0,1603187734.8,146.19883040935673,3.42,0.0,0.0,18.5,270,11.0,0.0,157.0,161.0,-61.0,7.0,50.0,14.0,62.49690887590992,522.1621621621622,110.15642211940956,-17.0,52.2343068,6.837195,3.42,2567.6,0.0,0.0,2567.6,813.7999999523163,0.0,0.0,0.0,0.0,0.0,3.42,278.0,490.0,1.0,4.0,275,3.42,0.0,0.0,157.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,161.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +287,287,0.0,2578.8,0.0,1603187738.0,146.6275659824047,3.41,0.0,0.0,18.0,271,11.2,0.0,156.0,157.0,-61.0,6.0,48.0,14.0,63.39614497484386,523.3333333333334,115.55183871301331,-23.0,52.2343789,6.8370805999999975,3.41,2578.8,0.0,0.0,2578.8,817.0,0.0,0.0,0.0,0.0,0.0,3.41,282.0,514.0,1.0,4.0,276,3.41,0.0,0.0,156.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,157.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +288,288,0.0,2590.8,0.0,1603187741.4,145.7725947521866,3.43,0.0,0.0,18.0,272,11.9,0.0,156.0,152.0,-61.0,6.0,48.0,13.0,59.12477350490758,506.6666666666667,112.40451236674446,-14.0,52.2344579,6.836962,3.43,2590.8,0.0,0.0,2590.8,820.4000000953674,0.0,0.0,0.0,0.0,0.0,3.43,263.0,500.00000000000006,1.0,4.0,277,3.43,0.0,0.0,156.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,152.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +289,289,0.0,2601.4,0.0,1603187744.4,144.50867052023122,3.46,0.0,0.0,19.0,273,10.7,0.0,157.0,159.0,-60.0,5.0,46.0,11.0,60.4736276533085,502.10526315789474,110.15642211940956,-15.0,52.2345273,6.836854700000001,3.46,2601.4,0.0,0.0,2601.4,823.4000000953674,0.0,0.0,0.0,0.0,0.0,3.46,269.0,490.0,1.0,4.0,278,3.46,0.0,0.0,157.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,159.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +290,290,0.0,2613.2,0.0,1603187747.8,144.92753623188406,3.45,0.0,0.0,18.0,274,11.7,0.0,160.0,147.0,-61.0,6.0,48.0,14.0,56.87668325757269,490.0,109.70680406994256,-32.0,52.2346043,6.8367369999999985,3.45,2613.2,0.0,0.0,2613.2,826.7999999523163,0.0,0.0,0.0,0.0,0.0,3.45,253.0,488.0,1.0,4.0,279,3.45,0.0,0.0,160.0,160.0,0.0,0.0,142,146,160,167,180,192,0.0,147.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +291,291,0.0,2624.8,0.0,1603187751.1999998,145.7725947521866,3.43,0.0,0.0,18.0,275,11.7,0.0,160.0,150.0,-60.0,6.0,47.0,13.0,59.12477350490758,500.0,107.6835228473412,-25.0,52.2346802,6.836619099999999,3.43,2624.8,0.0,0.0,2624.8,830.1999998092651,0.0,0.0,0.0,0.0,0.0,3.43,263.0,479.0,1.0,4.0,280,3.43,0.0,0.0,160.0,160.0,0.0,0.0,142,146,160,167,180,192,0.0,150.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +292,292,0.0,2635.9,0.0,1603187754.4,147.05882352941177,3.4,0.0,0.0,18.0,276,11.1,0.0,159.0,154.0,-61.0,7.0,47.0,12.0,59.34958252964107,513.3333333333334,118.02473798508169,-26.0,52.2347531,6.8365087,3.4,2635.9,0.0,0.0,2635.9,833.4000000953674,0.0,0.0,0.0,0.0,0.0,3.4,264.0,525.0,1.0,4.0,281,3.4,0.0,0.0,159.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,154.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +293,293,0.0,2647.1,0.0,1603187757.6,148.80952380952382,3.36,0.0,0.0,18.5,277,11.3,0.0,160.0,157.0,-61.0,6.0,48.0,15.0,62.04729082644294,509.18918918918916,116.00145676248027,-29.0,52.2348273,6.8363966,3.36,2647.1,0.0,0.0,2647.1,836.5999999046326,0.0,0.0,0.0,0.0,0.0,3.36,276.0,516.0,1.0,4.0,282,3.36,0.0,0.0,160.0,160.0,0.0,0.0,142,146,160,167,180,192,0.0,157.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +294,294,0.0,2658.1,0.0,1603187761.1,148.3679525222552,3.37,0.0,0.0,18.5,278,11.0,0.0,163.0,147.0,-60.0,6.0,46.0,14.0,57.55111033177316,476.7567567567568,113.7533665151454,-23.0,52.2348993,6.8362875,3.37,2658.1,0.0,0.0,2658.1,840.0999999046326,0.0,0.0,0.0,0.0,0.0,3.37,256.0,506.0,1.0,4.0,283,3.37,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,147.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +295,295,0.0,2668.7,0.0,1603187764.1,146.6275659824047,3.41,0.0,0.0,18.5,279,10.6,0.0,163.0,148.0,-60.0,7.0,46.0,16.0,56.42706520810572,480.0,112.62932139147793,-16.0,52.2349693,6.8361813,3.41,2668.7,0.0,0.0,2668.7,843.0999999046326,0.0,0.0,0.0,0.0,0.0,3.41,251.0,501.00000000000006,1.0,4.0,284,3.41,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,148.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +296,296,0.0,2680.3,0.0,1603187767.3,144.92753623188406,3.45,0.0,0.0,18.5,280,11.6,0.0,163.0,149.0,-60.0,6.0,46.0,12.0,57.32630130703967,483.2432432432432,109.48199504520909,-26.0,52.2350439,6.836062700000001,3.45,2680.3,0.0,0.0,2680.3,846.2999999523163,0.0,0.0,0.0,0.0,0.0,3.45,255.0,487.0,1.0,4.0,285,3.45,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,149.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +297,297,0.0,2692.0,0.0,1603187770.6,143.67816091954026,3.48,0.0,0.0,18.5,281,11.7,0.0,163.0,151.0,-61.0,7.0,47.0,13.0,55.752638133905236,489.72972972972974,110.60604016887652,-15.0,52.2351226,6.8359495,3.48,2692.0,0.0,0.0,2692.0,849.5999999046326,0.0,0.0,0.0,0.0,0.0,3.48,248.0,492.0,1.0,4.0,286,3.479999999999998,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,151.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +298,298,0.0,2703.2,0.0,1603187773.8,143.67816091954026,3.48,0.0,0.0,18.5,282,11.2,0.0,162.0,150.0,-60.0,7.0,46.0,12.0,54.6285930102378,486.4864864864865,111.95489431727744,-25.0,52.2351961,6.835837700000001,3.48,2703.2,0.0,0.0,2703.2,852.7999999523163,0.0,0.0,0.0,0.0,0.0,3.48,243.0,498.0,1.0,4.0,287,3.479999999999998,0.0,0.0,0.0,162.0,0.0,0.0,142,146,160,167,180,192,0.0,150.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +299,299,0.0,2714.4,0.0,1603187777.0,144.50867052023122,3.46,0.0,0.0,18.0,283,11.2,0.0,162.0,152.0,-60.0,6.0,46.0,12.0,60.92324570277549,506.6666666666667,109.03237699574213,-33.0,52.2352686,6.8357237999999985,3.46,2714.4,0.0,0.0,2714.4,856.0,0.0,0.0,0.0,0.0,0.0,3.46,271.0,485.0,1.0,4.0,288,3.46,0.0,0.0,0.0,162.0,0.0,0.0,142,146,160,167,180,192,0.0,152.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +300,300,0.0,2725.7,0.0,1603187780.1999998,144.0922190201729,3.47,0.0,0.0,18.0,284,11.3,0.0,160.0,143.0,-60.0,6.0,46.0,13.0,53.95416593603733,476.6666666666667,106.55947772367372,-12.0,52.2353429,6.835610400000001,3.47,2725.7,0.0,0.0,2725.7,859.1999998092651,0.0,0.0,0.0,0.0,0.0,3.47,240.0,474.0,1.0,4.0,289,3.47,0.0,0.0,160.0,160.0,0.0,0.0,142,146,160,167,180,192,0.0,143.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +301,301,0.0,2737.5,0.0,1603187783.6,143.67816091954026,3.48,0.0,0.0,18.0,285,11.8,0.0,160.0,147.0,-60.0,6.0,47.0,14.0,56.42706520810572,490.0,107.90833187207468,-13.0,52.2354215,6.8354934000000025,3.48,2737.5,0.0,0.0,2737.5,862.5999999046326,0.0,0.0,0.0,0.0,0.0,3.48,251.0,480.0,1.0,4.0,290,3.479999999999998,0.0,0.0,160.0,160.0,0.0,0.0,142,146,160,167,180,192,0.0,147.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +302,302,0.0,2749.3,0.0,1603187787.0,144.50867052023122,3.46,0.0,0.0,17.5,286,11.8,0.0,158.0,147.0,-60.0,8.0,46.0,12.0,55.30302008443826,504.0,111.95489431727744,-13.0,52.2355006,6.835379400000001,3.46,2749.3,0.0,0.0,2749.3,866.0,0.0,0.0,0.0,0.0,0.0,3.46,246.0,498.0,1.0,4.0,291,3.46,0.0,0.0,158.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,147.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +303,303,0.0,2760.9,0.0,1603187790.4,146.6275659824047,3.41,0.0,0.0,18.0,287,11.6,0.0,159.0,152.0,-61.0,6.0,48.0,12.0,58.45034643070712,506.6666666666667,109.03237699574213,-3.0,52.2355773,6.8352631,3.41,2760.9,0.0,0.0,2760.9,869.4000000953674,0.0,0.0,0.0,0.0,0.0,3.41,260.0,485.0,1.0,4.0,292,3.41,0.0,0.0,159.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,152.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +304,304,0.0,2771.4,0.0,1603187793.4,147.05882352941177,3.4,0.0,0.0,19.0,288,10.5,0.0,159.0,160.0,-60.0,6.0,47.0,14.0,60.92324570277549,505.2631578947368,109.2571860204756,-26.0,52.2356453,6.8351569,3.4,2771.4,0.0,0.0,2771.4,872.4000000953674,0.0,0.0,0.0,0.0,0.0,3.4,271.0,486.0,1.0,4.0,293,3.4,0.0,0.0,159.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,160.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +305,305,0.0,2782.6,0.0,1603187796.6,146.6275659824047,3.41,0.0,0.0,18.5,289,11.2,0.0,160.0,148.0,-60.0,7.0,46.0,12.0,60.698436678042,480.0,107.90833187207468,-29.0,52.2357171,6.8350427,3.41,2782.6,0.0,0.0,2782.6,875.5999999046326,0.0,0.0,0.0,0.0,0.0,3.41,270.0,480.0,1.0,4.0,294,3.41,0.0,0.0,160.0,160.0,0.0,0.0,142,146,160,167,180,192,0.0,148.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +306,306,0.0,2793.6,0.0,1603187800.1,145.7725947521866,3.43,0.0,0.0,18.5,290,11.0,0.0,161.0,155.0,-60.0,6.0,47.0,13.0,58.89996448017409,502.7027027027027,113.07893944094492,-29.0,52.23578670000001,6.834927799999999,3.43,2793.6,0.0,0.0,2793.6,879.0999999046326,0.0,0.0,0.0,0.0,0.0,3.43,262.0,503.0,1.0,4.0,295,3.43,0.0,0.0,0.0,161.0,0.0,0.0,142,146,160,167,180,192,0.0,155.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +307,307,0.0,2804.3,0.0,1603187803.1,144.50867052023122,3.46,0.0,0.0,18.5,291,10.7,0.0,161.0,160.0,-60.0,6.0,48.0,13.0,66.09385327164574,518.918918918919,113.97817553987889,-32.0,52.235855,6.8348166,3.46,2804.3,0.0,0.0,2804.3,882.0999999046326,0.0,0.0,0.0,0.0,0.0,3.46,294.0,507.0,1.0,4.0,296,3.46,0.0,0.0,0.0,161.0,0.0,0.0,142,146,160,167,180,192,0.0,160.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +308,308,0.0,2816.1,0.0,1603187806.3,142.04545454545453,3.52,0.0,0.0,18.5,292,11.8,0.0,161.0,159.0,-60.0,7.0,48.0,12.0,64.52019009851129,515.6756756756756,111.95489431727744,-24.0,52.235932,6.834697200000001,3.52,2816.1,0.0,0.0,2816.1,885.2999999523163,0.0,0.0,0.0,0.0,0.0,3.52,286.99999999999994,498.0,1.0,4.0,297,3.5200000000000005,0.0,0.0,0.0,161.0,0.0,0.0,142,146,160,167,180,192,0.0,159.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +309,309,0.0,2827.8,0.0,1603187809.6,140.84507042253526,3.55,0.0,0.0,19.0,293,11.7,0.0,161.0,162.0,-60.0,5.0,46.0,12.0,63.62095399957736,511.57894736842104,112.17970334201095,-16.0,52.2360071,6.8345771,3.55,2827.8,0.0,0.0,2827.8,888.5999999046326,0.0,0.0,0.0,0.0,0.0,3.55,283.0,499.00000000000006,1.0,4.0,298,3.549999999999999,0.0,0.0,0.0,161.0,0.0,0.0,142,146,160,167,180,192,0.0,162.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +310,310,0.0,2839.3,0.0,1603187812.8,142.04545454545453,3.52,0.0,0.0,18.5,294,11.4,0.0,161.0,149.0,-61.0,7.0,47.0,12.0,57.775919356506655,483.2432432432432,108.58275894627512,-35.0,52.2360796,6.834458099999999,3.52,2839.3,0.0,0.0,2839.3,891.7999999523163,0.0,0.0,0.0,0.0,0.0,3.52,257.0,483.0,1.0,4.0,299,3.5200000000000005,0.0,0.0,0.0,161.0,0.0,0.0,142,146,160,167,180,192,0.0,149.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +311,311,0.0,2850.7,0.0,1603187816.0,142.04545454545453,3.52,0.0,0.0,18.5,295,11.4,0.0,162.0,163.0,-60.0,7.0,48.0,12.0,63.62095399957736,528.6486486486486,117.35031091088119,-25.0,52.2361543,6.8343435,3.52,2850.7,0.0,0.0,2850.7,895.0,0.0,0.0,0.0,0.0,0.0,3.52,283.0,522.0,1.0,4.0,300,3.5200000000000005,0.0,0.0,0.0,162.0,0.0,0.0,142,146,160,167,180,192,0.0,163.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +312,312,0.0,2862.2,0.0,1603187819.1999998,141.24293785310738,3.54,0.0,0.0,18.0,296,11.5,0.0,162.0,150.0,-61.0,6.0,47.0,13.0,60.92324570277549,500.0,110.60604016887652,-33.0,52.2362292,6.8342267,3.54,2862.2,0.0,0.0,2862.2,898.1999998092651,0.0,0.0,0.0,0.0,0.0,3.54,271.0,492.0,1.0,4.0,301,3.5399999999999987,0.0,0.0,0.0,162.0,0.0,0.0,142,146,160,167,180,192,0.0,150.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +313,313,0.0,2874.3,0.0,1603187822.6,141.24293785310738,3.54,0.0,0.0,18.0,297,12.1,0.0,160.0,147.0,-61.0,7.0,46.0,12.0,60.4736276533085,490.0,112.17970334201095,-26.0,52.2363084,6.8341051,3.54,2874.3,0.0,0.0,2874.3,901.5999999046326,0.0,0.0,0.0,0.0,0.0,3.54,269.0,499.00000000000006,1.0,4.0,302,3.5399999999999987,0.0,0.0,160.0,160.0,0.0,0.0,142,146,160,167,180,192,0.0,147.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +314,314,0.0,2885.6,0.0,1603187825.8,142.04545454545453,3.52,0.0,0.0,18.0,298,11.3,0.0,162.0,143.0,-61.0,8.0,47.0,12.0,57.101492282306175,476.6666666666667,107.2339047978742,-19.0,52.2363826,6.8339922999999985,3.52,2885.6,0.0,0.0,2885.6,904.7999999523163,0.0,0.0,0.0,0.0,0.0,3.52,254.0,477.0,1.0,4.0,303,3.5200000000000005,0.0,0.0,0.0,162.0,0.0,0.0,142,146,160,167,180,192,0.0,143.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +315,315,0.0,2897.3,0.0,1603187829.1999998,143.2664756446991,3.49,0.0,0.0,18.5,299,11.7,0.0,162.0,154.0,-60.0,6.0,47.0,12.0,59.12477350490758,499.4594594594595,104.53619650107237,-14.0,52.2364594,6.833874400000001,3.49,2897.3,0.0,0.0,2897.3,908.1999998092651,0.0,0.0,0.0,0.0,0.0,3.49,263.0,465.0,1.0,4.0,304,3.4900000000000007,0.0,0.0,0.0,162.0,0.0,0.0,142,146,160,167,180,192,0.0,154.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +316,316,0.0,2908.8,0.0,1603187832.4,144.50867052023122,3.46,0.0,0.0,18.5,300,11.5,0.0,163.0,155.0,-60.0,5.0,47.0,14.0,64.07057204904433,502.7027027027027,107.45871382260769,-13.0,52.2365359,6.8337622000000025,3.46,2908.8,0.0,0.0,2908.8,911.4000000953674,0.0,0.0,0.0,0.0,0.0,3.46,285.0,478.0,1.0,4.0,305,3.46,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,155.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +317,317,0.0,2920.0,0.0,1603187835.6,145.7725947521866,3.43,0.0,0.0,18.5,301,11.3,0.0,164.0,151.0,-59.0,6.0,47.0,13.0,59.34958252964107,489.72972972972974,107.90833187207468,-33.0,52.23661120000001,6.833652099999999,3.43,2920.0,0.0,0.0,2920.0,914.5999999046326,0.0,0.0,0.0,0.0,0.0,3.43,264.0,480.0,1.0,4.0,306,3.43,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,151.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +318,318,0.0,2931.4,0.0,1603187839.1,145.7725947521866,3.43,0.0,0.0,18.5,302,11.4,0.0,162.0,151.0,-60.0,5.0,47.0,13.0,58.675155455440596,489.72972972972974,109.03237699574213,-13.0,52.2366849,6.8335358999999976,3.43,2931.4,0.0,0.0,2931.4,918.0999999046326,0.0,0.0,0.0,0.0,0.0,3.43,261.0,485.0,1.0,4.0,307,3.43,0.0,0.0,0.0,162.0,0.0,0.0,142,146,160,167,180,192,0.0,151.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +319,319,0.0,2942.2,0.0,1603187842.1,144.0922190201729,3.47,0.0,0.0,18.5,303,10.8,0.0,162.0,150.0,-60.0,5.0,47.0,13.0,58.675155455440596,486.4864864864865,106.33466869894023,-34.0,52.23675460000001,6.833426400000001,3.47,2942.2,0.0,0.0,2942.2,921.0999999046326,0.0,0.0,0.0,0.0,0.0,3.47,261.0,473.0,1.0,4.0,308,3.47,0.0,0.0,0.0,162.0,0.0,0.0,142,146,160,167,180,192,0.0,150.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +320,320,0.0,2953.5,0.0,1603187845.1999998,141.24293785310738,3.54,0.0,0.0,18.5,304,11.3,0.0,163.0,155.0,-60.0,5.0,48.0,13.0,56.42706520810572,502.7027027027027,107.6835228473412,-14.0,52.23682879999999,6.8333128,3.54,2953.5,0.0,0.0,2953.5,924.1999998092651,0.0,0.0,0.0,0.0,0.0,3.54,251.0,479.0,1.0,4.0,309,3.5399999999999987,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,155.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +321,321,0.0,2965.4,0.0,1603187848.4,140.84507042253526,3.55,0.0,0.0,18.5,305,11.8,0.0,165.0,155.0,-61.0,6.0,47.0,11.0,56.20225618337223,502.7027027027027,110.38123114414304,-18.0,52.2369058,6.8331931,3.55,2965.4,0.0,0.0,2965.4,927.4000000953674,0.0,0.0,0.0,0.0,0.0,3.55,250.00000000000003,491.0,1.0,4.0,310,3.549999999999999,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,155.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +322,322,0.0,2976.8,0.0,1603187851.6,142.04545454545453,3.52,0.0,0.0,18.5,306,11.4,0.0,164.0,158.0,-61.0,6.0,50.0,14.0,62.04729082644294,512.4324324324324,106.10985967420677,-7.0,52.2369801,6.833077799999999,3.52,2976.8,0.0,0.0,2976.8,930.5999999046326,0.0,0.0,0.0,0.0,0.0,3.52,276.0,472.0,1.0,4.0,311,3.5200000000000005,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,158.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +323,323,0.0,2987.8,0.0,1603187854.8,142.85714285714286,3.5,0.0,0.0,19.0,307,11.1,0.0,163.0,151.0,-60.0,7.0,47.0,14.0,55.977447158638725,476.8421052631579,109.93161309467608,-19.0,52.2370511,6.832964100000001,3.5,2987.8,0.0,0.0,2987.8,933.7999999523163,0.0,0.0,0.0,0.0,0.0,3.5,249.0,489.0,1.0,4.0,312,3.5,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,151.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +324,324,0.0,2999.0,0.0,1603187858.0,143.2664756446991,3.49,0.0,0.0,19.0,308,11.1,0.0,164.0,155.0,-59.0,7.0,49.0,16.0,57.55111033177316,489.4736842105263,113.97817553987889,-25.0,52.237124,6.8328522,3.49,2999.0,0.0,0.0,2999.0,937.0,0.0,0.0,0.0,0.0,0.0,3.49,256.0,507.0,1.0,4.0,313,3.4900000000000007,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,155.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +325,325,0.0,3010.2,0.0,1603187861.1999998,143.2664756446991,3.49,0.0,0.0,18.5,309,11.2,0.0,164.0,150.0,-59.0,6.0,47.0,12.0,56.42706520810572,486.4864864864865,111.280467243077,-25.0,52.2371966,6.8327380999999985,3.49,3010.2,0.0,0.0,3010.2,940.1999998092651,0.0,0.0,0.0,0.0,0.0,3.49,251.0,495.0,1.0,4.0,314,3.4900000000000007,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,150.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +326,326,0.0,3021.3,0.0,1603187864.4,143.67816091954026,3.48,0.0,0.0,18.5,310,11.1,0.0,161.0,153.0,-60.0,5.0,47.0,13.0,56.87668325757269,496.2162162162162,110.15642211940956,-20.0,52.2372669,6.8326227,3.48,3021.3,0.0,0.0,3021.3,943.4000000953674,0.0,0.0,0.0,0.0,0.0,3.48,253.0,490.0,1.0,4.0,315,3.479999999999998,0.0,0.0,0.0,161.0,0.0,0.0,142,146,160,167,180,192,0.0,153.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +327,327,0.0,3032.5,0.0,1603187867.6,144.50867052023122,3.46,0.0,0.0,18.5,311,11.2,0.0,162.0,160.0,-61.0,7.0,48.0,13.0,61.372863752242466,518.918918918919,113.07893944094492,-19.0,52.2373391,6.8325088,3.46,3032.5,0.0,0.0,3032.5,946.5999999046326,0.0,0.0,0.0,0.0,0.0,3.46,273.0,503.0,1.0,4.0,316,3.46,0.0,0.0,0.0,162.0,0.0,0.0,142,146,160,167,180,192,0.0,160.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +328,328,0.0,3043.8,0.0,1603187870.8,143.67816091954026,3.48,0.0,0.0,18.5,312,11.3,0.0,164.0,152.0,-60.0,6.0,48.0,15.0,60.4736276533085,492.97297297297297,111.280467243077,-30.0,52.2374125,6.832393400000001,3.48,3043.8,0.0,0.0,3043.8,949.7999999523163,0.0,0.0,0.0,0.0,0.0,3.48,269.0,495.0,1.0,4.0,317,3.479999999999998,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,152.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +329,329,0.0,3055.6,0.0,1603187874.1999998,143.67816091954026,3.48,0.0,0.0,18.0,313,11.8,0.0,163.0,150.0,-60.0,5.0,48.0,13.0,62.04729082644294,500.0,112.40451236674446,-20.0,52.2374877,6.8322718999999985,3.48,3055.6,0.0,0.0,3055.6,953.1999998092651,0.0,0.0,0.0,0.0,0.0,3.48,276.0,500.00000000000006,1.0,4.0,318,3.479999999999998,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,150.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +330,330,0.0,3067.7,0.0,1603187877.6,145.3488372093023,3.44,0.0,0.0,18.0,314,12.1,0.0,162.0,152.0,-61.0,5.0,47.0,12.0,58.45034643070712,506.6666666666667,111.05565821834352,-24.0,52.2375668,6.8321495,3.44,3067.7,0.0,0.0,3067.7,956.5999999046326,0.0,0.0,0.0,0.0,0.0,3.44,260.0,494.0,1.0,4.0,319,3.4400000000000004,0.0,0.0,0.0,162.0,0.0,0.0,142,146,160,167,180,192,0.0,152.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +331,331,0.0,3079.2,0.0,1603187881.1,146.19883040935673,3.42,0.0,0.0,17.5,315,11.5,0.0,162.0,147.0,-60.0,6.0,47.0,12.0,56.87668325757269,504.0,115.3270296882798,-22.0,52.2376423,6.832035,3.42,3079.2,0.0,0.0,3079.2,960.0999999046326,0.0,0.0,0.0,0.0,0.0,3.42,253.0,513.0,1.0,4.0,320,3.42,0.0,0.0,0.0,162.0,0.0,0.0,142,146,160,167,180,192,0.0,147.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +332,332,0.0,3090.4,0.0,1603187884.1999998,144.92753623188406,3.45,0.0,0.0,18.5,316,11.2,0.0,162.0,150.0,-59.0,6.0,46.0,12.0,56.65187423283921,486.4864864864865,111.280467243077,-26.0,52.2377146,6.8319207,3.45,3090.4,0.0,0.0,3090.4,963.1999998092651,0.0,0.0,0.0,0.0,0.0,3.45,252.0,495.0,1.0,4.0,321,3.45,0.0,0.0,0.0,162.0,0.0,0.0,142,146,160,167,180,192,0.0,150.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +333,333,0.0,3101.5,0.0,1603187887.3,144.0922190201729,3.47,0.0,0.0,18.5,317,11.1,0.0,162.0,154.0,-60.0,5.0,48.0,12.0,55.52782910917176,499.4594594594595,107.00909577314071,-2.0,52.2377865,6.8318087,3.47,3101.5,0.0,0.0,3101.5,966.2999999523163,0.0,0.0,0.0,0.0,0.0,3.47,247.0,476.0,1.0,4.0,322,3.47,0.0,0.0,0.0,162.0,0.0,0.0,142,146,160,167,180,192,0.0,154.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +334,334,0.0,3112.6,0.0,1603187890.4,143.67816091954026,3.48,0.0,0.0,19.0,318,11.1,0.0,161.0,161.0,-59.0,5.0,48.0,14.0,57.32630130703967,508.42105263157896,112.85413041621143,-14.0,52.23785820000001,6.831695,3.48,3112.6,0.0,0.0,3112.6,969.4000000953674,0.0,0.0,0.0,0.0,0.0,3.48,255.0,502.0,1.0,4.0,323,3.479999999999998,0.0,0.0,0.0,161.0,0.0,0.0,142,146,160,167,180,192,0.0,161.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +335,335,0.0,3124.5,0.0,1603187893.8,142.45014245014247,3.51,0.0,0.0,18.5,319,11.9,0.0,161.0,152.0,-60.0,5.0,46.0,13.0,58.675155455440596,492.97297297297297,112.62932139147793,-27.0,52.2379338,6.8315723,3.51,3124.5,0.0,0.0,3124.5,972.7999999523163,0.0,0.0,0.0,0.0,0.0,3.51,261.0,501.00000000000006,1.0,4.0,324,3.51,0.0,0.0,0.0,161.0,0.0,0.0,142,146,160,167,180,192,0.0,152.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +336,336,0.0,3135.8,0.0,1603187897.0,142.45014245014247,3.51,0.0,0.0,18.5,320,11.3,0.0,159.0,147.0,-60.0,6.0,47.0,13.0,55.977447158638725,476.7567567567568,109.03237699574213,-18.0,52.2380078,6.8314581999999975,3.51,3135.8,0.0,0.0,3135.8,976.0,0.0,0.0,0.0,0.0,0.0,3.51,249.0,485.0,1.0,4.0,325,3.51,0.0,0.0,159.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,147.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +337,337,0.0,3147.1,0.0,1603187900.1999998,143.2664756446991,3.49,0.0,0.0,18.0,321,11.3,0.0,159.0,158.0,-61.0,6.0,48.0,12.0,57.775919356506655,526.6666666666666,113.7533665151454,-14.0,52.2380814,6.831344099999999,3.49,3147.1,0.0,0.0,3147.1,979.1999998092651,0.0,0.0,0.0,0.0,0.0,3.49,257.0,506.0,1.0,4.0,326,3.4900000000000007,0.0,0.0,159.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,158.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +338,338,0.0,3158.8,0.0,1603187903.6,144.0922190201729,3.47,0.0,0.0,18.5,322,11.8,0.0,161.0,155.0,-60.0,6.0,50.0,16.0,59.799200579108046,502.7027027027027,109.93161309467608,-34.0,52.2381572,6.8312243000000015,3.47,3158.8,0.0,0.0,3158.8,982.5999999046326,0.0,0.0,0.0,0.0,0.0,3.47,266.0,489.0,1.0,4.0,327,3.47,0.0,0.0,0.0,161.0,0.0,0.0,142,146,160,167,180,192,0.0,155.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +339,339,0.0,3170.2,0.0,1603187906.8,144.92753623188406,3.45,0.0,0.0,17.5,323,11.4,0.0,162.0,139.0,-60.0,6.0,47.0,14.0,54.178974960770816,476.57142857142856,113.30374846567841,-19.0,52.2382316,6.8311098,3.45,3170.2,0.0,0.0,3170.2,985.7999999523163,0.0,0.0,0.0,0.0,0.0,3.45,241.0,504.0,1.0,4.0,328,3.45,0.0,0.0,0.0,162.0,0.0,0.0,142,146,160,167,180,192,0.0,139.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +340,340,0.0,3181.8,0.0,1603187910.1999998,145.3488372093023,3.44,0.0,0.0,18.0,324,11.6,0.0,163.0,148.0,-60.0,6.0,49.0,13.0,56.65187423283921,493.3333333333333,104.31138747633885,-34.0,52.2383079,6.8309937000000005,3.44,3181.8,0.0,0.0,3181.8,989.1999998092651,0.0,0.0,0.0,0.0,0.0,3.44,252.0,464.0,1.0,4.0,329,3.4400000000000004,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,148.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +341,341,0.0,3194.0,0.0,1603187913.6,146.19883040935673,3.42,0.0,0.0,18.0,325,12.2,0.0,162.0,149.0,-59.0,5.0,48.0,16.0,60.02400960384154,496.6666666666667,113.7533665151454,-25.0,52.2383871,6.8308712,3.42,3194.0,0.0,0.0,3194.0,992.5999999046326,0.0,0.0,0.0,0.0,0.0,3.42,267.0,506.0,1.0,4.0,330,3.42,0.0,0.0,0.0,162.0,0.0,0.0,142,146,160,167,180,192,0.0,149.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +342,342,0.0,3204.7,0.0,1603187916.6,146.6275659824047,3.41,0.0,0.0,19.0,326,10.7,0.0,162.0,162.0,-61.0,6.0,48.0,10.0,58.22553740597362,511.57894736842104,109.70680406994256,-9.0,52.2384561,6.8307619000000015,3.41,3204.7,0.0,0.0,3204.7,995.5999999046326,0.0,0.0,0.0,0.0,0.0,3.41,259.0,488.0,1.0,4.0,331,3.41,0.0,0.0,0.0,162.0,0.0,0.0,142,146,160,167,180,192,0.0,162.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +343,343,0.0,3215.6,0.0,1603187920.1,146.19883040935673,3.42,0.0,0.0,19.0,327,10.9,0.0,162.0,168.0,-61.0,6.0,47.0,12.0,63.39614497484386,530.5263157894736,113.7533665151454,-14.0,52.2385251,6.830647999999999,3.42,3215.6,0.0,0.0,3215.6,999.0999999046326,0.0,0.0,0.0,0.0,0.0,3.42,282.0,506.0,1.0,4.0,332,3.42,0.0,0.0,0.0,162.0,0.0,0.0,142,146,160,167,180,192,0.0,168.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +344,344,0.0,3226.4,0.0,1603187923.1,144.50867052023122,3.46,0.0,0.0,19.0,328,10.8,0.0,163.0,157.0,-60.0,5.0,48.0,13.0,56.20225618337223,495.7894736842105,111.50527626781047,-16.0,52.2385926,6.830534599999999,3.46,3226.4,0.0,0.0,3226.4,1002.0999999046326,0.0,0.0,0.0,0.0,0.0,3.46,250.00000000000003,496.0,1.0,4.0,333,3.46,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,157.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +345,345,0.0,3237.1,0.0,1603187926.1,142.04545454545453,3.52,0.0,0.0,19.0,329,10.7,0.0,161.0,159.0,-60.0,5.0,49.0,15.0,59.799200579108046,502.10526315789474,118.92397408401564,-19.0,52.2386599,6.830422099999999,3.52,3237.1,0.0,0.0,3237.1,1005.0999999046326,0.0,0.0,0.0,0.0,0.0,3.52,266.0,529.0,1.0,4.0,334,3.5200000000000005,0.0,0.0,0.0,161.0,0.0,0.0,142,146,160,167,180,192,0.0,159.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +346,346,0.0,3249.2,0.0,1603187929.4,140.84507042253526,3.55,0.0,0.0,18.5,330,12.1,0.0,161.0,153.0,-61.0,7.0,47.0,14.0,61.82248180170944,496.2162162162162,118.02473798508169,-24.0,52.2387346,6.8302934,3.55,3249.2,0.0,0.0,3249.2,1008.4000000953674,0.0,0.0,0.0,0.0,0.0,3.55,275.0,525.0,1.0,4.0,335,3.549999999999999,0.0,0.0,0.0,161.0,0.0,0.0,142,146,160,167,180,192,0.0,153.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +347,347,0.0,3260.4,0.0,1603187932.6,141.643059490085,3.53,0.0,0.0,18.5,331,11.2,0.0,163.0,152.0,-61.0,8.0,48.0,13.0,58.675155455440596,492.97297297297297,108.35794992154163,-5.0,52.2388035,6.8301741,3.53,3260.4,0.0,0.0,3260.4,1011.5999999046326,0.0,0.0,0.0,0.0,0.0,3.53,261.0,482.0,1.0,4.0,336,3.53,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,152.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +348,348,0.0,3270.7,0.0,1603187935.6,142.45014245014247,3.51,0.0,0.0,19.5,332,10.4,0.0,164.0,160.0,-60.0,6.0,47.0,14.0,57.55111033177316,492.3076923076923,114.65260261407934,-27.0,52.2388688,6.8300652,3.51,3270.7,0.0,0.0,3270.7,1014.5999999046326,0.0,0.0,0.0,0.0,0.0,3.51,256.0,510.0,1.0,4.0,337,3.51,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,160.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +349,349,0.0,3282.1,0.0,1603187938.8,142.85714285714286,3.5,0.0,0.0,18.5,333,11.3,0.0,164.0,153.0,-59.0,5.0,46.0,12.0,55.52782910917176,496.2162162162162,112.40451236674446,-31.0,52.2389396,6.8299455999999985,3.5,3282.1,0.0,0.0,3282.1,1017.7999999523163,0.0,0.0,0.0,0.0,0.0,3.5,247.0,500.00000000000006,1.0,4.0,338,3.5,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,153.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +350,350,0.0,3293.3,0.0,1603187942.0,142.85714285714286,3.5,0.0,0.0,19.0,334,11.3,0.0,165.0,150.0,-60.0,6.0,46.0,13.0,56.87668325757269,473.6842105263158,107.90833187207468,-14.0,52.2390104,6.8298278,3.5,3293.3,0.0,0.0,3293.3,1021.0,0.0,0.0,0.0,0.0,0.0,3.5,253.0,480.0,1.0,4.0,339,3.5,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,150.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +351,351,0.0,3304.7,0.0,1603187945.1999998,142.85714285714286,3.5,0.0,0.0,18.5,335,11.4,0.0,165.0,152.0,-60.0,6.0,46.0,12.0,56.42706520810572,492.97297297297297,109.48199504520909,-30.0,52.2390809,6.8297068,3.5,3304.7,0.0,0.0,3304.7,1024.1999998092651,0.0,0.0,0.0,0.0,0.0,3.5,251.0,487.0,1.0,4.0,340,3.5,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,152.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +352,352,0.0,3315.8,0.0,1603187948.4,143.2664756446991,3.49,0.0,0.0,18.5,336,11.1,0.0,165.0,158.0,-60.0,6.0,48.0,13.0,58.22553740597362,512.4324324324324,110.60604016887652,-17.0,52.2391508,6.8295905,3.49,3315.8,0.0,0.0,3315.8,1027.4000000953674,0.0,0.0,0.0,0.0,0.0,3.49,259.0,492.0,1.0,4.0,341,3.4900000000000007,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,158.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +353,353,0.0,3326.9,0.0,1603187951.6,144.50867052023122,3.46,0.0,0.0,18.0,337,11.1,0.0,164.0,154.0,-60.0,4.0,48.0,15.0,60.24881862857502,513.3333333333334,111.95489431727744,-19.0,52.2392212,6.829476,3.46,3326.9,0.0,0.0,3326.9,1030.5999999046326,0.0,0.0,0.0,0.0,0.0,3.46,268.0,498.0,1.0,4.0,342,3.46,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,154.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +354,354,0.0,3338.6,0.0,1603187955.0,144.50867052023122,3.46,0.0,0.0,18.5,338,11.7,0.0,161.0,155.0,-59.0,4.0,49.0,15.0,63.845763024310855,502.7027027027027,111.50527626781047,-16.0,52.2392966,6.829355499999999,3.46,3338.6,0.0,0.0,3338.6,1034.0,0.0,0.0,0.0,0.0,0.0,3.46,284.0,496.0,1.0,4.0,343,3.46,0.0,0.0,0.0,161.0,0.0,0.0,142,146,160,167,180,192,0.0,155.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +355,355,0.0,3349.7,0.0,1603187958.1999998,144.92753623188406,3.45,0.0,0.0,19.0,339,11.1,0.0,158.0,161.0,-60.0,5.0,47.0,12.0,60.4736276533085,508.42105263157896,113.07893944094492,-27.0,52.2393656,6.829238900000001,3.45,3349.7,0.0,0.0,3349.7,1037.1999998092651,0.0,0.0,0.0,0.0,0.0,3.45,269.0,503.0,1.0,4.0,344,3.45,0.0,0.0,158.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,161.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +356,356,0.0,3360.8,0.0,1603187961.4,147.05882352941177,3.4,0.0,0.0,18.5,340,11.1,0.0,158.0,154.0,-60.0,6.0,47.0,12.0,62.721717900643405,499.4594594594595,109.48199504520909,-32.0,52.2394359,6.8291233999999985,3.4,3360.8,0.0,0.0,3360.8,1040.4000000953674,0.0,0.0,0.0,0.0,0.0,3.4,279.0,487.0,1.0,4.0,345,3.4,0.0,0.0,158.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,154.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +357,357,0.0,3371.7,0.0,1603187964.6,147.92899408284026,3.38,0.0,0.0,18.5,341,10.9,0.0,159.0,153.0,-60.0,7.0,48.0,14.0,60.24881862857502,496.2162162162162,115.3270296882798,-23.0,52.2395053,6.829011200000001,3.38,3371.7,0.0,0.0,3371.7,1043.5999999046326,0.0,0.0,0.0,0.0,0.0,3.38,268.0,513.0,1.0,4.0,346,3.3799999999999994,0.0,0.0,159.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,153.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +358,358,0.0,3382.9,0.0,1603187968.1,148.80952380952382,3.36,0.0,0.0,18.0,342,11.2,0.0,152.0,148.0,-60.0,6.0,47.0,12.0,57.55111033177316,493.3333333333333,111.730085292544,-14.0,52.2395781,6.828898,3.36,3382.9,0.0,0.0,3382.9,1047.0999999046326,0.0,0.0,0.0,0.0,0.0,3.36,256.0,497.0,1.0,4.0,347,3.36,0.0,0.0,152.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,148.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +359,359,0.0,3393.5,0.0,1603187971.1,147.92899408284026,3.38,0.0,0.0,18.0,343,10.6,0.0,155.0,147.0,-59.0,5.0,47.0,13.0,55.752638133905236,490.0,108.80756797100862,-25.0,52.2396449,6.8287869999999975,3.38,3393.5,0.0,0.0,3393.5,1050.0999999046326,0.0,0.0,0.0,0.0,0.0,3.38,248.0,484.0,1.0,4.0,348,3.3799999999999994,0.0,0.0,155.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,147.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +360,360,0.0,3405.5,0.0,1603187974.4,145.3488372093023,3.44,0.0,0.0,18.0,344,12.0,0.0,162.0,152.0,-60.0,5.0,47.0,12.0,56.87668325757269,506.6666666666667,108.13314089680814,-33.0,52.239723100000006,6.8286642,3.44,3405.5,0.0,0.0,3405.5,1053.4000000953674,0.0,0.0,0.0,0.0,0.0,3.44,253.0,481.0,1.0,4.0,349,3.4400000000000004,0.0,0.0,0.0,162.0,0.0,0.0,142,146,160,167,180,192,0.0,152.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +361,361,0.0,3416.8,0.0,1603187977.6,144.50867052023122,3.46,0.0,0.0,18.5,345,11.3,0.0,164.0,155.0,-60.0,6.0,47.0,13.0,58.45034643070712,502.7027027027027,111.280467243077,-20.0,52.2397949,6.828548,3.46,3416.8,0.0,0.0,3416.8,1056.5999999046326,0.0,0.0,0.0,0.0,0.0,3.46,260.0,495.0,1.0,4.0,350,3.46,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,155.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +362,362,0.0,3428.5,0.0,1603187981.0,144.50867052023122,3.46,0.0,0.0,18.0,346,11.7,0.0,164.0,151.0,-60.0,6.0,48.0,13.0,58.22553740597362,503.3333333333333,112.17970334201095,-16.0,52.2398703,6.8284286,3.46,3428.5,0.0,0.0,3428.5,1060.0,0.0,0.0,0.0,0.0,0.0,3.46,259.0,499.00000000000006,1.0,4.0,351,3.46,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,151.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +363,363,0.0,3439.7,0.0,1603187984.1999998,145.3488372093023,3.44,0.0,0.0,18.5,347,11.2,0.0,165.0,152.0,-60.0,6.0,46.0,12.0,59.799200579108046,492.97297297297297,109.03237699574213,-31.0,52.2399403,6.8283109,3.44,3439.7,0.0,0.0,3439.7,1063.1999998092651,0.0,0.0,0.0,0.0,0.0,3.44,266.0,485.0,1.0,4.0,352,3.4400000000000004,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,152.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +364,364,0.0,3451.1,0.0,1603187987.4,144.0922190201729,3.47,0.0,0.0,19.0,348,11.5,0.0,165.0,172.0,-61.0,7.0,50.0,13.0,64.7449991232448,543.1578947368421,118.24954700981516,-5.0,52.24001320000001,6.8281925,3.47,3451.1,0.0,0.0,3451.1,1066.4000000953674,0.0,0.0,0.0,0.0,0.0,3.47,287.99999999999994,526.0,1.0,4.0,353,3.47,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,172.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +365,365,0.0,3461.6,0.0,1603187990.4,142.85714285714286,3.5,0.0,0.0,19.5,349,10.5,0.0,166.0,165.0,-60.0,7.0,48.0,13.0,64.7449991232448,507.6923076923077,118.92397408401564,-16.0,52.2400791,6.8280816999999985,3.5,3461.6,0.0,0.0,3461.6,1069.4000000953674,0.0,0.0,0.0,0.0,0.0,3.5,287.99999999999994,529.0,1.0,4.0,354,3.5,0.0,0.0,0.0,166.0,0.0,0.0,142,146,160,167,180,192,0.0,165.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +366,366,0.0,3473.0,0.0,1603187993.6,142.85714285714286,3.5,0.0,0.0,19.0,350,11.3,0.0,166.0,158.0,-60.0,6.0,49.0,14.0,61.14805472750896,498.94736842105266,112.85413041621143,-19.0,52.2401521,6.8279662,3.5,3473.0,0.0,0.0,3473.0,1072.5999999046326,0.0,0.0,0.0,0.0,0.0,3.5,272.0,502.0,1.0,4.0,355,3.5,0.0,0.0,0.0,166.0,0.0,0.0,142,146,160,167,180,192,0.0,158.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +367,367,0.0,3483.6,0.0,1603187996.6,143.67816091954026,3.48,0.0,0.0,19.0,351,10.7,0.0,166.0,154.0,-59.0,7.0,47.0,12.0,54.6285930102378,486.3157894736842,113.30374846567841,-15.0,52.2402191,6.8278544000000005,3.48,3483.6,0.0,0.0,3483.6,1075.5999999046326,0.0,0.0,0.0,0.0,0.0,3.48,243.0,504.0,1.0,4.0,355,3.479999999999998,0.0,0.0,0.0,166.0,0.0,0.0,142,146,160,167,180,192,0.0,154.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +368,368,0.0,3494.5,0.0,1603187999.8,144.50867052023122,3.46,0.0,0.0,19.0,352,10.9,0.0,165.0,166.0,-59.0,5.0,48.0,14.0,61.82248180170944,524.2105263157895,111.50527626781047,-14.0,52.240287,6.82774,3.46,3494.5,0.0,0.0,3494.5,1078.7999999523163,0.0,0.0,0.0,0.0,0.0,3.46,275.0,496.0,1.0,4.0,356,3.46,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,166.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +369,369,0.0,3505.1,0.0,1603188003.0,149.70059880239518,3.34,0.0,0.0,19.0,353,10.6,0.0,163.0,162.0,-60.0,8.0,49.0,14.0,62.721717900643405,511.57894736842104,112.85413041621143,-9.0,52.2403527,6.827627400000001,3.34,3505.1,0.0,0.0,3505.1,1082.0,0.0,0.0,0.0,0.0,0.0,3.34,279.0,502.0,1.0,4.0,358,3.3400000000000007,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,162.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +370,370,0.0,3516.5,0.0,1603188006.1999998,151.0574018126888,3.31,0.0,0.0,19.0,354,11.4,0.0,164.0,158.0,-59.0,5.0,47.0,12.0,58.89996448017409,498.94736842105266,109.48199504520909,-33.0,52.2404196,6.8275007,3.31,3516.5,0.0,0.0,3516.5,1085.1999998092651,0.0,0.0,0.0,0.0,0.0,3.31,262.0,487.0,1.0,4.0,359,3.3100000000000005,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,158.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +371,371,0.0,3527.4,0.0,1603188009.1999998,145.7725947521866,3.43,0.0,0.0,19.0,355,10.9,0.0,164.0,151.0,-60.0,6.0,48.0,14.0,58.45034643070712,476.8421052631579,108.58275894627512,-19.0,52.2404835,6.827380000000002,3.43,3527.4,0.0,0.0,3527.4,1088.1999998092651,0.0,0.0,0.0,0.0,0.0,3.43,260.0,483.0,1.0,4.0,359,3.43,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,151.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +372,372,0.0,3538.5,0.0,1603188012.4,145.3488372093023,3.44,0.0,0.0,19.0,356,11.1,0.0,162.0,153.0,-59.0,8.0,47.0,12.0,54.40378398550431,483.1578947368421,116.00145676248027,-20.0,52.2405484,6.8272556,3.44,3538.5,0.0,0.0,3538.5,1091.4000000953674,0.0,0.0,0.0,0.0,0.0,3.44,242.0,516.0,1.0,4.0,360,3.4400000000000004,0.0,0.0,0.0,162.0,0.0,0.0,142,146,160,167,180,192,0.0,153.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +373,373,0.0,3549.8,0.0,1603188015.6,146.19883040935673,3.42,0.0,0.0,19.0,357,11.3,0.0,162.0,155.0,-60.0,5.0,49.0,14.0,58.22553740597362,489.4736842105263,109.03237699574213,-1.0,52.2406144,6.827130499999999,3.42,3549.8,0.0,0.0,3549.8,1094.5999999046326,0.0,0.0,0.0,0.0,0.0,3.42,259.0,485.0,1.0,4.0,361,3.42,0.0,0.0,0.0,162.0,0.0,0.0,142,146,160,167,180,192,0.0,155.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +374,374,0.0,3560.2,0.0,1603188018.6,146.19883040935673,3.42,0.0,0.0,19.5,358,10.4,0.0,163.0,163.0,-59.0,6.0,48.0,14.0,60.4736276533085,501.53846153846155,105.4354326000063,-4.0,52.2406743,6.8270135,3.42,3560.2,0.0,0.0,3560.2,1097.5999999046326,0.0,0.0,0.0,0.0,0.0,3.42,269.0,469.0,1.0,4.0,362,3.42,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,163.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +375,375,0.0,3571.3,0.0,1603188022.1,146.6275659824047,3.41,0.0,0.0,19.0,359,11.2,0.0,165.0,150.0,-59.0,7.0,48.0,15.0,59.799200579108046,473.6842105263158,111.95489431727744,-22.0,52.2407415,6.8268915,3.41,3571.3,0.0,0.0,3571.3,1101.0999999046326,0.0,0.0,0.0,0.0,0.0,3.41,266.0,498.0,1.0,4.0,364,3.41,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,150.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +376,376,0.0,3582.2,0.0,1603188025.1,145.3488372093023,3.44,0.0,0.0,18.5,360,10.9,0.0,165.0,145.0,-59.0,6.0,46.0,14.0,56.20225618337223,470.27027027027026,107.2339047978742,-20.0,52.2408057,6.8267712,3.44,3582.2,0.0,0.0,3582.2,1104.0999999046326,0.0,0.0,0.0,0.0,0.0,3.44,250.00000000000003,477.0,1.0,4.0,364,3.4400000000000004,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,145.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +377,377,0.0,3593.0,0.0,1603188028.1,142.85714285714286,3.5,0.0,0.0,19.0,361,10.7,0.0,165.0,145.0,-59.0,8.0,47.0,14.0,53.50454788657036,457.89473684210526,105.4354326000063,-14.0,52.24087,6.8266537,3.5,3593.0,0.0,0.0,3593.0,1107.0999999046326,0.0,0.0,0.0,0.0,0.0,3.5,238.0,469.0,1.0,4.0,365,3.5,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,145.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +378,378,0.0,3604.7,0.0,1603188031.3,142.04545454545453,3.52,0.0,0.0,19.0,362,11.7,0.0,164.0,156.0,-59.0,5.0,47.0,13.0,59.799200579108046,492.63157894736844,108.35794992154163,-13.0,52.240939,6.826523599999999,3.52,3604.7,0.0,0.0,3604.7,1110.2999999523163,0.0,0.0,0.0,0.0,0.0,3.52,266.0,482.0,1.0,4.0,366,3.5200000000000005,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,156.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +379,379,0.0,3616.1,0.0,1603188034.4,141.24293785310738,3.54,0.0,0.0,19.0,363,11.4,0.0,164.0,161.0,-60.0,8.0,48.0,13.0,62.721717900643405,508.42105263157896,117.12550188614773,-25.0,52.2410066,6.8263984,3.54,3616.1,0.0,0.0,3616.1,1113.4000000953674,0.0,0.0,0.0,0.0,0.0,3.54,279.0,521.0,1.0,4.0,367,3.5399999999999987,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,161.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +380,380,0.0,3627.9,0.0,1603188037.8,141.24293785310738,3.54,0.0,0.0,18.5,364,11.9,0.0,164.0,152.0,-60.0,6.0,48.0,14.0,60.92324570277549,492.97297297297297,109.48199504520909,-25.0,52.2410759,6.826266,3.54,3627.9,0.0,0.0,3627.9,1116.7999999523163,0.0,0.0,0.0,0.0,0.0,3.54,271.0,487.0,1.0,4.0,368,3.5399999999999987,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,152.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +381,381,0.0,3639.1,0.0,1603188041.0,142.45014245014247,3.51,0.0,0.0,18.5,365,11.1,0.0,163.0,155.0,-60.0,6.0,47.0,12.0,59.574391554374564,502.7027027027027,116.22626578721376,-28.0,52.2411407,6.8261421,3.51,3639.1,0.0,0.0,3639.1,1120.0,0.0,0.0,0.0,0.0,0.0,3.51,265.0,517.0,1.0,4.0,369,3.51,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,155.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +382,382,0.0,3650.3,0.0,1603188044.1999998,144.50867052023122,3.46,0.0,0.0,18.5,366,11.3,0.0,162.0,165.0,-60.0,5.0,50.0,12.0,64.29538107377782,535.1351351351351,112.62932139147793,-5.0,52.2412076,6.8260183,3.46,3650.3,0.0,0.0,3650.3,1123.1999998092651,0.0,0.0,0.0,0.0,0.0,3.46,285.99999999999994,501.00000000000006,1.0,4.0,370,3.46,0.0,0.0,0.0,162.0,0.0,0.0,142,146,160,167,180,192,0.0,165.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +383,383,0.0,3661.4,0.0,1603188047.4,145.7725947521866,3.43,0.0,0.0,18.5,367,11.1,0.0,163.0,156.0,-60.0,7.0,47.0,11.0,59.799200579108046,505.94594594594594,108.13314089680814,-11.0,52.2412702,6.8258923,3.43,3661.4,0.0,0.0,3661.4,1126.4000000953674,0.0,0.0,0.0,0.0,0.0,3.43,266.0,481.0,1.0,4.0,371,3.43,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,156.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +384,384,0.0,3672.4,0.0,1603188050.6,145.3488372093023,3.44,0.0,0.0,18.5,368,11.0,0.0,164.0,153.0,-59.0,6.0,47.0,12.0,58.675155455440596,496.2162162162162,113.97817553987889,-24.0,52.2413329,6.8257667,3.44,3672.4,0.0,0.0,3672.4,1129.5999999046326,0.0,0.0,0.0,0.0,0.0,3.44,261.0,507.0,1.0,4.0,372,3.4400000000000004,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,153.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +385,385,0.0,3683.6,0.0,1603188053.8,145.7725947521866,3.43,0.0,0.0,18.5,369,11.2,0.0,163.0,154.0,-59.0,7.0,49.0,14.0,59.34958252964107,499.4594594594595,115.77664773774679,-26.0,52.241396,6.8256387,3.43,3683.6,0.0,0.0,3683.6,1132.7999999523163,0.0,0.0,0.0,0.0,0.0,3.43,264.0,515.0,1.0,4.0,373,3.43,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,154.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +386,386,0.0,3695.2,0.0,1603188057.1999998,145.3488372093023,3.44,0.0,0.0,18.5,370,11.6,0.0,165.0,151.0,-59.0,6.0,48.0,13.0,58.00072838124014,489.72972972972974,112.62932139147793,-18.0,52.2414587,6.8255027,3.44,3695.2,0.0,0.0,3695.2,1136.1999998092651,0.0,0.0,0.0,0.0,0.0,3.44,258.0,501.00000000000006,1.0,4.0,374,3.4400000000000004,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,151.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +387,387,0.0,3706.3,0.0,1603188060.4,145.7725947521866,3.43,0.0,0.0,18.0,371,11.2,0.0,165.0,157.0,-60.0,7.0,50.0,15.0,60.92324570277549,523.3333333333334,122.29610945501793,-17.0,52.2415185,6.8253727,3.43,3706.3,0.0,0.0,3706.3,1139.4000000953674,0.0,0.0,0.0,0.0,0.0,3.43,271.0,544.0,1.0,4.0,375,3.43,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,157.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +388,388,0.0,3717.2,0.0,1603188063.6,147.92899408284026,3.38,0.0,0.0,18.5,372,10.9,0.0,163.0,150.0,-60.0,10.0,49.0,15.0,61.372863752242466,486.4864864864865,111.280467243077,-23.0,52.2415771,6.8252446,3.38,3717.2,0.0,0.0,3717.2,1142.5999999046326,0.0,0.0,0.0,0.0,0.0,3.38,273.0,495.0,1.0,4.0,376,3.3799999999999994,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,150.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +389,389,0.0,3728.2,0.0,1603188067.1,149.70059880239518,3.34,0.0,0.0,18.5,373,11.0,0.0,163.0,147.0,-59.0,6.0,46.0,14.0,57.101492282306175,476.7567567567568,113.07893944094492,-32.0,52.2416348,6.825114,3.34,3728.2,0.0,0.0,3728.2,1146.0999999046326,0.0,0.0,0.0,0.0,0.0,3.34,254.0,503.0,1.0,4.0,377,3.3400000000000007,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,147.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +390,390,0.0,3738.9,0.0,1603188070.1,147.49262536873155,3.39,0.0,0.0,19.0,374,10.7,0.0,162.0,142.0,-59.0,6.0,47.0,12.0,55.07821105970478,448.42105263157896,101.83848820427048,-5.0,52.2416892,6.8249843,3.39,3738.9,0.0,0.0,3738.9,1149.0999999046326,0.0,0.0,0.0,0.0,0.0,3.39,245.0,453.0,1.0,4.0,378,3.39,0.0,0.0,0.0,162.0,0.0,0.0,142,146,160,167,180,192,0.0,142.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +391,391,0.0,3749.3,0.0,1603188073.1,144.92753623188406,3.45,0.0,0.0,19.0,375,10.4,0.0,164.0,160.0,-58.0,5.0,48.0,15.0,60.92324570277549,505.2631578947368,112.85413041621143,-16.0,52.2417429,6.824859,3.45,3749.3,0.0,0.0,3749.3,1152.0999999046326,0.0,0.0,0.0,0.0,0.0,3.45,271.0,502.0,1.0,4.0,379,3.45,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,160.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +392,392,0.0,3760.8,0.0,1603188076.3,143.67816091954026,3.48,0.0,0.0,18.5,376,11.5,0.0,165.0,152.0,-60.0,6.0,46.0,13.0,60.02400960384154,492.97297297297297,111.280467243077,-28.0,52.24180250000001,6.824721799999999,3.48,3760.8,0.0,0.0,3760.8,1155.2999999523163,0.0,0.0,0.0,0.0,0.0,3.48,267.0,495.0,1.0,4.0,380,3.479999999999998,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,152.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +393,393,0.0,3771.9,0.0,1603188079.4,143.67816091954026,3.48,0.0,0.0,19.0,377,11.1,0.0,165.0,155.0,-61.0,7.0,47.0,13.0,60.4736276533085,489.4736842105263,111.50527626781047,-29.0,52.2418583,6.8245875,3.48,3771.9,0.0,0.0,3771.9,1158.4000000953674,0.0,0.0,0.0,0.0,0.0,3.48,269.0,496.0,1.0,4.0,381,3.479999999999998,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,155.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +394,394,0.0,3783.4,0.0,1603188082.8,144.50867052023122,3.46,0.0,0.0,18.5,378,11.6,0.0,165.0,156.0,-60.0,5.0,48.0,16.0,60.02400960384154,505.94594594594594,114.20298456461235,-23.0,52.24192,6.8244512,3.46,3783.4,0.0,0.0,3783.4,1161.7999999523163,0.0,0.0,0.0,0.0,0.0,3.46,267.0,508.0,1.0,4.0,382,3.46,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,156.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +395,395,0.0,3794.6,0.0,1603188086.0,144.50867052023122,3.46,0.0,0.0,18.5,379,11.1,0.0,166.0,151.0,-59.0,6.0,48.0,13.0,60.698436678042,489.72972972972974,110.15642211940956,-29.0,52.241978,6.8243179000000005,3.46,3794.6,0.0,0.0,3794.6,1165.0,0.0,0.0,0.0,0.0,0.0,3.46,270.0,490.0,1.0,4.0,383,3.46,0.0,0.0,0.0,166.0,0.0,0.0,142,146,160,167,180,192,0.0,151.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +396,396,0.0,3805.6,0.0,1603188089.1999998,144.50867052023122,3.46,0.0,0.0,19.0,380,11.0,0.0,166.0,153.0,-60.0,5.0,47.0,13.0,58.45034643070712,483.1578947368421,113.97817553987889,-28.0,52.242035,6.8241852,3.46,3805.6,0.0,0.0,3805.6,1168.1999998092651,0.0,0.0,0.0,0.0,0.0,3.46,260.0,507.0,1.0,4.0,384,3.46,0.0,0.0,0.0,166.0,0.0,0.0,142,146,160,167,180,192,0.0,153.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +397,397,0.0,3816.7,0.0,1603188092.4,145.3488372093023,3.44,0.0,0.0,18.0,381,11.1,0.0,167.0,153.0,-59.0,5.0,48.0,13.0,59.34958252964107,510.0,110.15642211940956,-20.0,52.2420929,6.8240523,3.44,3816.7,0.0,0.0,3816.7,1171.4000000953674,0.0,0.0,0.0,0.0,0.0,3.44,264.0,490.0,1.0,4.0,385,3.4400000000000004,0.0,0.0,0.0,167.0,167.0,0.0,142,146,160,167,180,192,0.0,153.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +398,398,0.0,3827.9,0.0,1603188095.8,146.6275659824047,3.41,0.0,0.0,18.5,382,11.2,0.0,163.0,157.0,-60.0,6.0,48.0,12.0,60.92324570277549,509.18918918918916,113.7533665151454,-15.0,52.2421503,6.8239180999999975,3.41,3827.9,0.0,0.0,3827.9,1174.7999999523163,0.0,0.0,0.0,0.0,0.0,3.41,271.0,506.0,1.0,4.0,386,3.41,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,157.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +399,399,0.0,3839.0,0.0,1603188099.0,147.05882352941177,3.4,0.0,0.0,18.5,383,11.1,0.0,167.0,155.0,-61.0,5.0,48.0,13.0,63.39614497484386,502.7027027027027,107.90833187207468,-5.0,52.2422063,6.8237837,3.4,3839.0,0.0,0.0,3839.0,1178.0,0.0,0.0,0.0,0.0,0.0,3.4,282.0,480.0,1.0,4.0,387,3.4,0.0,0.0,0.0,167.0,167.0,0.0,142,146,160,167,180,192,0.0,155.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +400,400,0.0,3850.0,0.0,1603188102.1999998,147.92899408284026,3.38,0.0,0.0,19.0,384,11.1,0.0,167.0,158.0,-60.0,6.0,47.0,12.0,59.574391554374564,498.94736842105266,111.05565821834352,-29.0,52.2422609,6.8236478000000025,3.38,3850.0,0.0,0.0,3850.0,1181.1999998092651,0.0,0.0,0.0,0.0,0.0,3.38,265.0,494.0,1.0,4.0,388,3.3799999999999994,0.0,0.0,0.0,167.0,167.0,0.0,142,146,160,167,180,192,0.0,158.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +401,401,0.0,3860.7,0.0,1603188105.1999998,147.05882352941177,3.4,0.0,0.0,19.0,385,10.7,0.0,167.0,158.0,-59.0,5.0,49.0,15.0,60.4736276533085,498.94736842105266,108.13314089680814,-30.0,52.2423119,6.8235154000000025,3.4,3860.7,0.0,0.0,3860.7,1184.1999998092651,0.0,0.0,0.0,0.0,0.0,3.4,269.0,481.0,1.0,4.0,389,3.4,0.0,0.0,0.0,167.0,167.0,0.0,142,146,160,167,180,192,0.0,158.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +402,402,0.0,3872.0,0.0,1603188108.4,145.7725947521866,3.43,0.0,0.0,18.5,386,11.3,0.0,167.0,153.0,-60.0,6.0,46.0,11.0,58.675155455440596,496.2162162162162,112.40451236674446,-24.0,52.2423682,6.8233779000000006,3.43,3872.0,0.0,0.0,3872.0,1187.4000000953674,0.0,0.0,0.0,0.0,0.0,3.43,261.0,500.00000000000006,1.0,4.0,390,3.43,0.0,0.0,0.0,167.0,167.0,0.0,142,146,160,167,180,192,0.0,153.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +403,403,0.0,3883.6,0.0,1603188112.1,147.49262536873155,3.39,0.0,0.0,18.5,387,11.6,0.0,162.0,148.0,-59.0,6.0,47.0,14.0,56.87668325757269,480.0,110.15642211940956,-21.0,52.2424239,6.8232338000000015,3.39,3883.6,0.0,0.0,3883.6,1191.0999999046326,0.0,0.0,0.0,0.0,0.0,3.39,253.0,490.0,1.0,4.0,392,3.39,0.0,0.0,0.0,162.0,0.0,0.0,142,146,160,167,180,192,0.0,148.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +404,404,0.0,3893.9,0.0,1603188115.1,147.92899408284026,3.38,0.0,0.0,18.5,388,10.3,0.0,160.0,153.0,-59.0,5.0,46.0,12.0,59.12477350490758,496.2162162162162,110.38123114414304,-19.0,52.2424709,6.8231033,3.38,3893.9,0.0,0.0,3893.9,1194.0999999046326,0.0,0.0,0.0,0.0,0.0,3.38,263.0,491.0,1.0,4.0,392,3.3799999999999994,0.0,0.0,160.0,160.0,0.0,0.0,142,146,160,167,180,192,0.0,153.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +405,405,0.0,3904.9,0.0,1603188118.1999998,145.7725947521866,3.43,0.0,0.0,18.5,389,11.0,0.0,160.0,144.0,-59.0,6.0,47.0,12.0,53.95416593603733,467.02702702702703,108.13314089680814,-32.0,52.2425234,6.8229666,3.43,3904.9,0.0,0.0,3904.9,1197.1999998092651,0.0,0.0,0.0,0.0,0.0,3.43,240.0,481.0,1.0,4.0,393,3.43,0.0,0.0,160.0,160.0,0.0,0.0,142,146,160,167,180,192,0.0,144.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +406,406,0.0,3916.5,0.0,1603188121.4,143.67816091954026,3.48,0.0,0.0,18.0,390,11.6,0.0,160.0,143.0,-60.0,7.0,48.0,16.0,53.27973886183686,476.6666666666667,113.30374846567841,-17.0,52.2425769,6.8228201,3.48,3916.5,0.0,0.0,3916.5,1200.4000000953674,0.0,0.0,0.0,0.0,0.0,3.48,237.0,504.0,1.0,4.0,394,3.479999999999998,0.0,0.0,160.0,160.0,0.0,0.0,142,146,160,167,180,192,0.0,143.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +407,407,0.0,3927.5,0.0,1603188124.6,145.3488372093023,3.44,0.0,0.0,18.5,391,11.0,0.0,160.0,154.0,-60.0,6.0,47.0,14.0,56.42706520810572,499.4594594594595,111.50527626781047,-15.0,52.2426268,6.822681599999999,3.44,3927.5,0.0,0.0,3927.5,1203.5999999046326,0.0,0.0,0.0,0.0,0.0,3.44,251.0,496.0,1.0,4.0,395,3.4400000000000004,0.0,0.0,160.0,160.0,0.0,0.0,142,146,160,167,180,192,0.0,154.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +408,408,0.0,3938.5,0.0,1603188127.8,147.49262536873155,3.39,0.0,0.0,19.0,392,11.0,0.0,162.0,152.0,-59.0,5.0,46.0,13.0,55.52782910917176,480.0,113.52855749041193,-18.0,52.2426772,6.8225435,3.39,3938.5,0.0,0.0,3938.5,1206.7999999523163,0.0,0.0,0.0,0.0,0.0,3.39,247.0,505.0,1.0,4.0,396,3.39,0.0,0.0,0.0,162.0,0.0,0.0,142,146,160,167,180,192,0.0,152.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +409,409,0.0,3949.1,0.0,1603188131.0,147.92899408284026,3.38,0.0,0.0,18.5,393,10.7,0.0,164.0,162.0,-61.0,6.0,48.0,13.0,60.24881862857502,525.4054054054054,114.87741163881284,-29.0,52.2427277,6.8224101,3.38,3949.1,0.0,0.0,3949.1,1210.0,0.0,0.0,0.0,0.0,0.0,3.38,268.0,511.0,1.0,4.0,397,3.3799999999999994,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,162.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +410,410,0.0,3960.2,0.0,1603188134.1999998,147.49262536873155,3.39,0.0,0.0,19.0,394,11.1,0.0,164.0,165.0,-61.0,5.0,48.0,11.0,59.799200579108046,521.0526315789474,111.730085292544,-1.0,52.2427783,6.8222703,3.39,3960.2,0.0,0.0,3960.2,1213.1999998092651,0.0,0.0,0.0,0.0,0.0,3.39,266.0,497.0,1.0,4.0,398,3.39,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,165.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +411,411,0.0,3970.8,0.0,1603188137.1999998,146.19883040935673,3.42,0.0,0.0,19.5,395,10.6,0.0,164.0,157.0,-59.0,5.0,47.0,12.0,55.07821105970478,483.0769230769231,109.93161309467608,-31.0,52.2428269,6.8221371,3.42,3970.8,0.0,0.0,3970.8,1216.1999998092651,0.0,0.0,0.0,0.0,0.0,3.42,245.0,489.0,1.0,4.0,399,3.42,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,157.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +412,412,0.0,3982.0,0.0,1603188140.4,144.50867052023122,3.46,0.0,0.0,19.0,396,11.2,0.0,164.0,163.0,-60.0,5.0,48.0,13.0,59.574391554374564,514.7368421052631,110.60604016887652,-30.0,52.2428767,6.8219942,3.46,3982.0,0.0,0.0,3982.0,1219.4000000953674,0.0,0.0,0.0,0.0,0.0,3.46,265.0,492.0,1.0,4.0,400,3.46,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,163.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +413,413,0.0,3993.0,0.0,1603188143.6,143.67816091954026,3.48,0.0,0.0,19.0,397,11.0,0.0,164.0,158.0,-60.0,6.0,48.0,14.0,57.32630130703967,498.94736842105266,115.77664773774679,-16.0,52.2429294,6.8218573000000005,3.48,3993.0,0.0,0.0,3993.0,1222.5999999046326,0.0,0.0,0.0,0.0,0.0,3.48,255.0,515.0,1.0,4.0,401,3.479999999999998,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,158.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +414,414,0.0,4003.6,0.0,1603188146.6,143.2664756446991,3.49,0.0,0.0,19.0,398,10.6,0.0,164.0,162.0,-60.0,5.0,48.0,13.0,59.799200579108046,511.57894736842104,110.60604016887652,-14.0,52.2429773,6.8217233,3.49,4003.6,0.0,0.0,4003.6,1225.5999999046326,0.0,0.0,0.0,0.0,0.0,3.49,266.0,492.0,1.0,4.0,402,3.4900000000000007,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,162.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +415,415,0.0,4014.8,0.0,1603188149.8,142.85714285714286,3.5,0.0,0.0,19.0,399,11.2,0.0,163.0,163.0,-61.0,7.0,48.0,12.0,59.12477350490758,514.7368421052631,118.47435603454865,-23.0,52.2430281,6.8215808,3.5,4014.8,0.0,0.0,4014.8,1228.7999999523163,0.0,0.0,0.0,0.0,0.0,3.5,263.0,527.0,1.0,4.0,403,3.5,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,163.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +416,416,0.0,4025.9,0.0,1603188153.0,143.2664756446991,3.49,0.0,0.0,19.5,400,11.1,0.0,164.0,158.0,-60.0,6.0,47.0,14.0,56.42706520810572,486.15384615384613,110.83084919361002,-31.0,52.2430798,6.8214417,3.49,4025.9,0.0,0.0,4025.9,1232.0,0.0,0.0,0.0,0.0,0.0,3.49,251.0,493.0,1.0,4.0,404,3.4900000000000007,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,158.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +417,417,0.0,4036.6,0.0,1603188156.0,144.0922190201729,3.47,0.0,0.0,18.5,401,10.7,0.0,165.0,150.0,-61.0,6.0,48.0,13.0,56.42706520810572,486.4864864864865,106.55947772367372,-31.0,52.2431306,6.8213088000000015,3.47,4036.6,0.0,0.0,4036.6,1235.0,0.0,0.0,0.0,0.0,0.0,3.47,251.0,474.0,1.0,4.0,405,3.47,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,150.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +418,418,0.0,4048.4,0.0,1603188159.4,144.92753623188406,3.45,0.0,0.0,18.5,402,11.8,0.0,165.0,150.0,-60.0,6.0,48.0,12.0,56.42706520810572,486.4864864864865,107.2339047978742,-33.0,52.24318510000001,6.8211610999999985,3.45,4048.4,0.0,0.0,4048.4,1238.4000000953674,0.0,0.0,0.0,0.0,0.0,3.45,251.0,477.0,1.0,4.0,406,3.45,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,150.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +419,419,0.0,4059.4,0.0,1603188162.6,146.19883040935673,3.42,0.0,0.0,18.5,403,11.1,0.0,165.0,158.0,-60.0,5.0,48.0,13.0,62.04729082644294,512.4324324324324,112.17970334201095,-18.0,52.24323620000001,6.8210215,3.42,4059.4,0.0,0.0,4059.4,1241.5999999046326,0.0,0.0,0.0,0.0,0.0,3.42,276.0,499.00000000000006,1.0,4.0,407,3.42,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,158.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +420,420,0.0,4070.6,0.0,1603188166.1,147.49262536873155,3.39,0.0,0.0,19.0,404,11.1,0.0,163.0,157.0,-60.0,6.0,48.0,13.0,59.12477350490758,495.7894736842105,113.97817553987889,-16.0,52.24328720000001,6.8208811,3.39,4070.6,0.0,0.0,4070.6,1245.0999999046326,0.0,0.0,0.0,0.0,0.0,3.39,263.0,507.0,1.0,4.0,408,3.39,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,157.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +421,421,0.0,4081.0,0.0,1603188169.1,146.6275659824047,3.41,0.0,0.0,19.0,405,10.4,0.0,162.0,170.0,-62.0,6.0,51.0,14.0,61.59767277697596,536.8421052631579,114.20298456461235,-1.0,52.2433325,6.8207478,3.41,4081.0,0.0,0.0,4081.0,1248.0999999046326,0.0,0.0,0.0,0.0,0.0,3.41,274.0,508.0,1.0,4.0,409,3.41,0.0,0.0,0.0,162.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,170.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +422,422,0.0,4091.3,0.0,1603188172.1,146.19883040935673,3.42,0.0,0.0,19.5,406,10.4,0.0,164.0,163.0,-60.0,6.0,48.0,11.0,57.101492282306175,501.53846153846155,109.03237699574213,-9.0,52.2433769,6.8206137,3.42,4091.3,0.0,0.0,4091.3,1251.0999999046326,0.0,0.0,0.0,0.0,0.0,3.42,254.0,485.0,1.0,4.0,410,3.42,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,163.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +423,423,0.0,4101.9,0.0,1603188175.1,144.50867052023122,3.46,0.0,0.0,19.5,407,10.5,0.0,165.0,174.0,-60.0,6.0,46.0,11.0,62.272099851176435,535.3846153846154,117.5751199356147,-17.0,52.2434186,6.8204752000000015,3.46,4101.9,0.0,0.0,4101.9,1254.0999999046326,0.0,0.0,0.0,0.0,0.0,3.46,277.0,523.0,1.0,4.0,411,3.46,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,174.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +424,424,0.0,4112.3,0.0,1603188178.1,142.45014245014247,3.51,0.0,0.0,19.0,408,10.4,0.0,165.0,169.0,-60.0,5.0,46.0,11.0,60.02400960384154,533.6842105263158,117.12550188614773,-17.0,52.2434588,6.8203368000000015,3.51,4112.3,0.0,0.0,4112.3,1257.0999999046326,0.0,0.0,0.0,0.0,0.0,3.51,267.0,521.0,1.0,4.0,412,3.51,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,169.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +425,425,0.0,4123.6,0.0,1603188181.1999998,140.4494382022472,3.56,0.0,0.0,19.0,409,11.2,0.0,165.0,166.0,-60.0,7.0,49.0,14.0,63.62095399957736,524.2105263157895,116.90069286141424,-26.0,52.2435023,6.8201879000000005,3.56,4123.6,0.0,0.0,4123.6,1260.1999998092651,0.0,0.0,0.0,0.0,0.0,3.56,283.0,520.0,1.0,4.0,413,3.56,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,166.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +426,426,0.0,4135.3,0.0,1603188184.4,140.05602240896357,3.57,0.0,0.0,19.0,410,11.8,0.0,165.0,157.0,-60.0,6.0,48.0,14.0,57.55111033177316,495.7894736842105,117.79992896034818,-14.0,52.2435467,6.820031299999999,3.57,4135.3,0.0,0.0,4135.3,1263.4000000953674,0.0,0.0,0.0,0.0,0.0,3.57,256.0,524.0,1.0,4.0,414,3.5700000000000003,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,157.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +427,427,0.0,4146.4,0.0,1603188187.6,141.24293785310738,3.54,0.0,0.0,19.0,411,11.1,0.0,165.0,151.0,-60.0,5.0,49.0,18.0,55.52782910917176,476.8421052631579,110.15642211940956,-19.0,52.2435893,6.8198843999999985,3.54,4146.4,0.0,0.0,4146.4,1266.5999999046326,0.0,0.0,0.0,0.0,0.0,3.54,247.0,490.0,1.0,4.0,415,3.5399999999999987,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,151.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +428,428,0.0,4156.6,0.0,1603188190.6,144.0922190201729,3.47,0.0,0.0,19.0,412,10.2,0.0,164.0,172.0,-59.0,5.0,49.0,15.0,62.272099851176435,543.1578947368421,122.74572750448492,-14.0,52.2436281,6.8197484,3.47,4156.6,0.0,0.0,4156.6,1269.5999999046326,0.0,0.0,0.0,0.0,0.0,3.47,277.0,546.0,1.0,4.0,416,3.47,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,172.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +429,429,0.0,4167.6,0.0,1603188193.8,145.7725947521866,3.43,0.0,0.0,19.0,413,11.0,0.0,169.0,171.0,-60.0,5.0,48.0,13.0,61.372863752242466,540.0,118.02473798508169,-3.0,52.2436703,6.819602400000001,3.43,4167.6,0.0,0.0,4167.6,1272.7999999523163,0.0,0.0,0.0,0.0,0.0,3.43,273.0,525.0,1.0,4.0,417,3.43,0.0,0.0,0.0,0.0,169.0,0.0,142,146,160,167,180,192,0.0,0.0,171.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +430,430,0.0,4178.0,0.0,1603188196.8,144.0922190201729,3.47,0.0,0.0,20.0,414,10.3,0.0,167.0,183.0,-60.0,6.0,47.0,11.0,62.721717900643405,549.0,118.92397408401564,-22.0,52.2437123,6.819467200000001,3.47,4178.0,0.0,0.0,4178.0,1275.7999999523163,0.0,0.0,0.0,0.0,0.0,3.47,279.0,529.0,1.0,4.0,418,3.47,0.0,0.0,0.0,167.0,167.0,0.0,142,146,160,167,180,192,0.0,0.0,183.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +431,431,0.0,4188.7,0.0,1603188199.8,142.04545454545453,3.52,0.0,0.0,19.5,415,10.7,0.0,167.0,169.0,-61.0,5.0,47.0,13.0,62.04729082644294,520.0,116.90069286141424,-27.0,52.2437557,6.8193262999999975,3.52,4188.7,0.0,0.0,4188.7,1278.7999999523163,0.0,0.0,0.0,0.0,0.0,3.52,276.0,520.0,1.0,4.0,419,3.5200000000000005,0.0,0.0,0.0,167.0,167.0,0.0,142,146,160,167,180,192,0.0,169.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +432,432,0.0,4200.0,0.0,1603188203.0,140.84507042253526,3.55,0.0,0.0,19.0,416,11.3,0.0,165.0,173.0,-61.0,5.0,49.0,13.0,63.845763024310855,546.3157894736842,124.99381775181983,-11.0,52.24380120000001,6.819178999999999,3.55,4200.0,0.0,0.0,4200.0,1282.0,0.0,0.0,0.0,0.0,0.0,3.55,284.0,556.0,1.0,4.0,420,3.549999999999999,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,173.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +433,433,0.0,4211.4,0.0,1603188206.1999998,142.04545454545453,3.52,0.0,0.0,19.5,417,11.4,0.0,164.0,176.0,-60.0,5.0,49.0,14.0,62.49690887590992,541.5384615384615,120.27282823241656,-20.0,52.243848,6.8190297000000015,3.52,4211.4,0.0,0.0,4211.4,1285.1999998092651,0.0,0.0,0.0,0.0,0.0,3.52,278.0,535.0,1.0,4.0,421,3.5200000000000005,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,176.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +434,434,0.0,4222.4,0.0,1603188209.1999998,142.04545454545453,3.52,0.0,0.0,19.0,418,11.0,0.0,165.0,175.0,-61.0,6.0,47.0,9.0,67.66751644478016,552.6315789473684,112.62932139147793,-3.0,52.2438927,6.8188863,3.52,4222.4,0.0,0.0,4222.4,1288.1999998092651,0.0,0.0,0.0,0.0,0.0,3.52,301.0,501.00000000000006,1.0,4.0,422,3.5200000000000005,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,175.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +435,435,0.0,4233.5,0.0,1603188212.4,143.2664756446991,3.49,0.0,0.0,19.0,419,11.2,0.0,165.0,165.0,-59.0,6.0,48.0,12.0,60.4736276533085,521.0526315789474,118.47435603454865,-22.0,52.2439354,6.8187386,3.49,4233.5,0.0,0.0,4233.5,1291.4000000953674,0.0,0.0,0.0,0.0,0.0,3.49,269.0,527.0,1.0,4.0,423,3.4900000000000007,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,165.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +436,436,0.0,4244.7,0.0,1603188215.6,144.0922190201729,3.47,0.0,0.0,19.0,420,11.2,0.0,165.0,169.0,-60.0,6.0,48.0,13.0,60.4736276533085,533.6842105263158,119.14878310874913,-16.0,52.2439769,6.818588799999999,3.47,4244.7,0.0,0.0,4244.7,1294.5999999046326,0.0,0.0,0.0,0.0,0.0,3.47,269.0,530.0,1.0,4.0,424,3.47,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,169.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +437,437,0.0,4255.3,0.0,1603188218.6,142.85714285714286,3.5,0.0,0.0,19.0,421,10.6,0.0,166.0,179.0,-60.0,6.0,49.0,12.0,62.272099851176435,565.2631578947369,123.64496360341889,-17.0,52.2440158,6.818446400000001,3.5,4255.3,0.0,0.0,4255.3,1297.5999999046326,0.0,0.0,0.0,0.0,0.0,3.5,277.0,550.0,1.0,4.0,425,3.5,0.0,0.0,0.0,166.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,179.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +438,438,0.0,4266.6,0.0,1603188221.8,142.45014245014247,3.51,0.0,0.0,19.0,422,11.2,0.0,168.0,179.0,-61.0,5.0,48.0,12.0,68.34194351898064,565.2631578947369,124.99381775181983,-19.0,52.2440554,6.8182949000000015,3.51,4266.6,0.0,0.0,4266.6,1300.7999999523163,0.0,0.0,0.0,0.0,0.0,3.51,304.0,556.0,1.0,4.0,426,3.51,0.0,0.0,0.0,0.0,168.0,0.0,142,146,160,167,180,192,0.0,0.0,179.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +439,439,0.0,4277.8,0.0,1603188225.0,142.04545454545453,3.52,0.0,0.0,18.5,423,11.3,0.0,168.0,169.0,-61.0,6.0,48.0,13.0,62.04729082644294,548.1081081081081,126.11786287548729,-27.0,52.2440972,6.8181442,3.52,4277.8,0.0,0.0,4277.8,1304.0,0.0,0.0,0.0,0.0,0.0,3.52,276.0,561.0,1.0,4.0,427,3.5200000000000005,0.0,0.0,0.0,0.0,168.0,0.0,142,146,160,167,180,192,0.0,169.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +440,440,0.0,4289.1,0.0,1603188228.1999998,144.50867052023122,3.46,0.0,0.0,19.0,424,11.3,0.0,167.0,164.0,-61.0,6.0,48.0,10.0,59.574391554374564,517.8947368421053,109.93161309467608,-8.0,52.2441384,6.8179931,3.46,4289.1,0.0,0.0,4289.1,1307.1999998092651,0.0,0.0,0.0,0.0,0.0,3.46,265.0,489.0,1.0,4.0,428,3.46,0.0,0.0,0.0,167.0,167.0,0.0,142,146,160,167,180,192,0.0,164.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +441,441,0.0,4300.3,0.0,1603188231.4,146.19883040935673,3.42,0.0,0.0,19.0,425,11.2,0.0,167.0,171.0,-60.0,5.0,47.0,14.0,64.9698081479783,540.0,119.82321018294958,-19.0,52.2441751,6.8178401,3.42,4300.3,0.0,0.0,4300.3,1310.4000000953674,0.0,0.0,0.0,0.0,0.0,3.42,289.00000000000006,533.0,1.0,4.0,429,3.42,0.0,0.0,0.0,167.0,167.0,0.0,142,146,160,167,180,192,0.0,0.0,171.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +442,442,0.0,4310.9,0.0,1603188234.4,144.92753623188406,3.45,0.0,0.0,19.0,426,10.6,0.0,167.0,161.0,-60.0,6.0,48.0,12.0,58.22553740597362,508.42105263157896,118.92397408401564,-25.0,52.2442107,6.8176956,3.45,4310.9,0.0,0.0,4310.9,1313.4000000953674,0.0,0.0,0.0,0.0,0.0,3.45,259.0,529.0,1.0,4.0,430,3.45,0.0,0.0,0.0,167.0,167.0,0.0,142,146,160,167,180,192,0.0,161.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +443,443,0.0,4322.0,0.0,1603188237.6,145.7725947521866,3.43,0.0,0.0,18.5,427,11.1,0.0,166.0,165.0,-60.0,6.0,48.0,13.0,59.34958252964107,535.1351351351351,120.04801920768308,-23.0,52.2442461,6.8175442,3.43,4322.0,0.0,0.0,4322.0,1316.5999999046326,0.0,0.0,0.0,0.0,0.0,3.43,264.0,534.0,1.0,4.0,431,3.43,0.0,0.0,0.0,166.0,0.0,0.0,142,146,160,167,180,192,0.0,165.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +444,444,0.0,4333.1,0.0,1603188241.1,145.3488372093023,3.44,0.0,0.0,19.0,428,11.1,0.0,164.0,162.0,-61.0,7.0,48.0,14.0,60.24881862857502,511.57894736842104,114.42779358934584,-21.0,52.2442813,6.8173916,3.44,4333.1,0.0,0.0,4333.1,1320.0999999046326,0.0,0.0,0.0,0.0,0.0,3.44,268.0,509.0,1.0,4.0,432,3.4400000000000004,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,162.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +445,445,0.0,4343.4,0.0,1603188244.1,144.0922190201729,3.47,0.0,0.0,19.5,429,10.3,0.0,162.0,166.0,-62.0,6.0,48.0,12.0,63.171335950110375,510.7692307692308,110.83084919361002,-6.0,52.2443146,6.81725,3.47,4343.4,0.0,0.0,4343.4,1323.0999999046326,0.0,0.0,0.0,0.0,0.0,3.47,281.0,493.0,1.0,4.0,433,3.47,0.0,0.0,0.0,162.0,0.0,0.0,142,146,160,167,180,192,0.0,166.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +446,446,0.0,4354.0,0.0,1603188247.1,144.50867052023122,3.46,0.0,0.0,19.0,430,10.6,0.0,162.0,156.0,-59.0,6.0,49.0,15.0,57.32630130703967,492.63157894736844,111.95489431727744,-29.0,52.2443449,6.8171026,3.46,4354.0,0.0,0.0,4354.0,1326.0999999046326,0.0,0.0,0.0,0.0,0.0,3.46,255.0,498.0,1.0,4.0,434,3.46,0.0,0.0,0.0,162.0,0.0,0.0,142,146,160,167,180,192,0.0,156.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +447,447,0.0,4365.0,0.0,1603188250.1999998,144.0922190201729,3.47,0.0,0.0,18.5,431,11.0,0.0,163.0,163.0,-61.0,6.0,48.0,13.0,60.698436678042,528.6486486486486,123.64496360341889,-24.0,52.2443758,6.816949900000001,3.47,4365.0,0.0,0.0,4365.0,1329.1999998092651,0.0,0.0,0.0,0.0,0.0,3.47,270.0,550.0,1.0,4.0,435,3.47,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,163.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +448,448,0.0,4376.5,0.0,1603188253.4,142.85714285714286,3.5,0.0,0.0,18.5,432,11.6,0.0,168.0,166.0,-60.0,7.0,46.0,10.0,62.721717900643405,538.3783783783783,119.59840115821608,-28.0,52.2444099,6.8167896999999975,3.5,4376.5,0.0,0.0,4376.5,1332.4000000953674,0.0,0.0,0.0,0.0,0.0,3.5,279.0,532.0,1.0,4.0,436,3.5,0.0,0.0,0.0,0.0,168.0,0.0,142,146,160,167,180,192,0.0,166.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +449,449,0.0,4387.5,0.0,1603188256.6,143.2664756446991,3.49,0.0,0.0,19.5,433,11.0,0.0,168.0,172.0,-61.0,6.0,45.0,10.0,63.845763024310855,529.2307692307693,118.47435603454865,-17.0,52.2444422,6.816637299999999,3.49,4387.5,0.0,0.0,4387.5,1335.5999999046326,0.0,0.0,0.0,0.0,0.0,3.49,284.0,527.0,1.0,4.0,437,3.4900000000000007,0.0,0.0,0.0,0.0,168.0,0.0,142,146,160,167,180,192,0.0,0.0,172.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +450,450,0.0,4398.6,0.0,1603188259.8,142.85714285714286,3.5,0.0,0.0,19.0,434,11.0,0.0,169.0,169.0,-61.0,6.0,45.0,9.0,64.52019009851129,533.6842105263158,115.55183871301331,-29.0,52.2444734,6.8164835,3.5,4398.6,0.0,0.0,4398.6,1338.7999999523163,0.0,0.0,0.0,0.0,0.0,3.5,286.99999999999994,514.0,1.0,4.0,438,3.5,0.0,0.0,0.0,0.0,169.0,0.0,142,146,160,167,180,192,0.0,169.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +451,451,0.0,4409.9,0.0,1603188263.0,142.45014245014247,3.51,0.0,0.0,19.0,435,11.3,0.0,171.0,170.0,-61.0,6.0,48.0,12.0,64.9698081479783,536.8421052631579,120.7224462818835,-11.0,52.2445032,6.816324400000001,3.51,4409.9,0.0,0.0,4409.9,1342.0,0.0,0.0,0.0,0.0,0.0,3.51,289.00000000000006,537.0,1.0,4.0,439,3.51,0.0,0.0,0.0,0.0,171.0,0.0,142,146,160,167,180,192,0.0,0.0,170.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +452,452,0.0,4420.6,0.0,1603188266.0,142.04545454545453,3.52,0.0,0.0,19.0,436,10.7,0.0,171.0,148.0,-61.0,6.0,48.0,13.0,55.07821105970478,467.36842105263156,101.61367917953699,-5.0,52.2445328,6.816174900000001,3.52,4420.6,0.0,0.0,4420.6,1345.0,0.0,0.0,0.0,0.0,0.0,3.52,245.0,452.0,1.0,4.0,440,3.5200000000000005,0.0,0.0,0.0,0.0,171.0,0.0,142,146,160,167,180,192,0.0,148.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +453,453,0.0,4431.4,0.0,1603188269.1999998,142.85714285714286,3.5,0.0,0.0,19.0,437,10.8,0.0,169.0,152.0,-61.0,7.0,48.0,16.0,55.30302008443826,480.0,110.38123114414304,-17.0,52.24456110000001,6.8160232,3.5,4431.4,0.0,0.0,4431.4,1348.1999998092651,0.0,0.0,0.0,0.0,0.0,3.5,246.0,491.0,1.0,4.0,441,3.5,0.0,0.0,0.0,0.0,169.0,0.0,142,146,160,167,180,192,0.0,152.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +454,454,0.0,4442.4,0.0,1603188272.4,144.0922190201729,3.47,0.0,0.0,19.0,438,10.9,0.0,169.0,159.0,-60.0,6.0,50.0,16.0,61.59767277697596,502.10526315789474,114.87741163881284,-24.0,52.2445909,6.8158701,3.47,4442.4,0.0,0.0,4442.4,1351.4000000953674,0.0,0.0,0.0,0.0,0.0,3.47,274.0,511.0,1.0,4.0,442,3.47,0.0,0.0,0.0,0.0,169.0,0.0,142,146,160,167,180,192,0.0,159.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +455,455,0.0,4453.3,0.0,1603188275.6999998,144.92753623188406,3.45,0.0,0.0,18.5,439,10.9,0.0,171.0,145.0,-59.0,6.0,48.0,18.0,56.87668325757269,470.27027027027026,115.77664773774679,-21.0,52.2446204,6.8157177,3.45,4453.3,0.0,0.0,4453.3,1354.6999998092651,0.0,0.0,0.0,0.0,0.0,3.45,253.0,515.0,1.0,4.0,443,3.45,0.0,0.0,0.0,0.0,171.0,0.0,142,146,160,167,180,192,0.0,145.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +456,456,0.0,4464.2,0.0,1603188278.8,147.49262536873155,3.39,0.0,0.0,18.0,440,10.9,0.0,171.0,137.0,-59.0,6.0,48.0,16.0,54.178974960770816,456.6666666666667,109.03237699574213,-26.0,52.2446487,6.8155641000000005,3.39,4464.2,0.0,0.0,4464.2,1357.7999999523163,0.0,0.0,0.0,0.0,0.0,3.39,241.0,485.0,1.0,4.0,444,3.39,0.0,0.0,0.0,0.0,171.0,0.0,142,146,160,167,180,192,0.0,137.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +457,457,0.0,4475.3,0.0,1603188282.1999998,149.2537313432836,3.35,0.0,0.0,18.0,441,11.1,0.0,171.0,145.0,-60.0,5.0,49.0,14.0,55.752638133905236,483.3333333333333,109.2571860204756,-16.0,52.2446784,6.8154092,3.35,4475.3,0.0,0.0,4475.3,1361.1999998092651,0.0,0.0,0.0,0.0,0.0,3.35,248.0,486.0,1.0,4.0,445,3.35,0.0,0.0,0.0,0.0,171.0,0.0,142,146,160,167,180,192,0.0,145.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +458,458,0.0,4486.1,0.0,1603188285.4,150.60240963855424,3.32,0.0,0.0,18.5,442,10.8,0.0,170.0,147.0,-61.0,6.0,48.0,13.0,54.40378398550431,476.7567567567568,106.78428674840723,0.0,52.2447107,6.815259599999999,3.32,4486.1,0.0,0.0,4486.1,1364.4000000953674,0.0,0.0,0.0,0.0,0.0,3.32,242.0,475.0,1.0,4.0,446,3.3199999999999994,0.0,0.0,0.0,0.0,170.0,0.0,142,146,160,167,180,192,0.0,147.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +459,459,0.0,4496.7,0.0,1603188288.6999998,152.9051987767584,3.27,0.0,0.0,19.0,443,10.6,0.0,169.0,158.0,-59.0,5.0,49.0,15.0,59.574391554374564,498.94736842105266,108.35794992154163,-33.0,52.2447401,6.8151114,3.27,4496.7,0.0,0.0,4496.7,1367.6999998092651,0.0,0.0,0.0,0.0,0.0,3.27,265.0,482.0,1.0,4.0,447,3.2700000000000005,0.0,0.0,0.0,0.0,169.0,0.0,142,146,160,167,180,192,0.0,158.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +460,460,0.0,4507.7,0.0,1603188292.1,151.0574018126888,3.31,0.0,0.0,18.5,444,10.9,0.0,168.0,155.0,-60.0,7.0,48.0,14.0,60.92324570277549,502.7027027027027,109.93161309467608,-31.0,52.2447719,6.8149595000000005,3.31,4507.7,0.0,0.0,4507.7,1371.0999999046326,0.0,0.0,0.0,0.0,0.0,3.31,271.0,489.0,1.0,4.0,448,3.3100000000000005,0.0,0.0,0.0,0.0,168.0,0.0,142,146,160,167,180,192,0.0,155.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +461,461,0.0,4518.1,0.0,1603188295.1,147.49262536873155,3.39,0.0,0.0,19.0,445,10.4,0.0,168.0,146.0,-61.0,7.0,49.0,14.0,54.40378398550431,461.05263157894734,109.93161309467608,-28.0,52.2448011,6.8148141,3.39,4518.1,0.0,0.0,4518.1,1374.0999999046326,0.0,0.0,0.0,0.0,0.0,3.39,242.0,489.0,1.0,4.0,449,3.39,0.0,0.0,0.0,0.0,168.0,0.0,142,146,160,167,180,192,0.0,146.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +462,462,0.0,4528.6,0.0,1603188298.1,144.92753623188406,3.45,0.0,0.0,18.5,446,10.5,0.0,168.0,152.0,-60.0,5.0,47.0,13.0,54.40378398550431,492.97297297297297,115.3270296882798,-18.0,52.2448309,6.8146678,3.45,4528.6,0.0,0.0,4528.6,1377.0999999046326,0.0,0.0,0.0,0.0,0.0,3.45,242.0,513.0,1.0,4.0,450,3.45,0.0,0.0,0.0,0.0,168.0,0.0,142,146,160,167,180,192,0.0,152.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +463,463,0.0,4539.8,0.0,1603188301.3,143.67816091954026,3.48,0.0,0.0,18.5,447,11.3,0.0,167.0,158.0,-60.0,5.0,49.0,15.0,61.372863752242466,512.4324324324324,110.83084919361002,-22.0,52.2448619,6.8145107000000005,3.48,4539.8,0.0,0.0,4539.8,1380.2999999523163,0.0,0.0,0.0,0.0,0.0,3.48,273.0,493.0,1.0,4.0,451,3.479999999999998,0.0,0.0,0.0,167.0,167.0,0.0,142,146,160,167,180,192,0.0,158.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +464,464,0.0,4551.1,0.0,1603188304.6,146.19883040935673,3.42,0.0,0.0,19.0,448,11.2,0.0,166.0,148.0,-61.0,6.0,48.0,12.0,54.6285930102378,467.36842105263156,105.21062357527279,-10.0,52.2448927,6.8143542,3.42,4551.1,0.0,0.0,4551.1,1383.5999999046326,0.0,0.0,0.0,0.0,0.0,3.42,243.0,468.0,1.0,4.0,452,3.42,0.0,0.0,0.0,166.0,0.0,0.0,142,146,160,167,180,192,0.0,148.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +465,465,0.0,4561.1,0.0,1603188307.6,147.49262536873155,3.39,0.0,0.0,19.0,449,10.0,0.0,170.0,153.0,-58.0,6.0,48.0,14.0,55.977447158638725,483.1578947368421,109.48199504520909,-9.0,52.2449204,6.8142143,3.39,4561.1,0.0,0.0,4561.1,1386.5999999046326,0.0,0.0,0.0,0.0,0.0,3.39,249.0,487.0,1.0,4.0,453,3.39,0.0,0.0,0.0,0.0,170.0,0.0,142,146,160,167,180,192,0.0,153.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +466,466,0.0,4571.8,0.0,1603188310.8,147.05882352941177,3.4,0.0,0.0,19.0,450,10.7,0.0,168.0,144.0,-60.0,7.0,48.0,15.0,55.30302008443826,454.7368421052632,109.2571860204756,-22.0,52.2449484,6.8140643,3.4,4571.8,0.0,0.0,4571.8,1389.7999999523163,0.0,0.0,0.0,0.0,0.0,3.4,246.0,486.0,1.0,4.0,454,3.4,0.0,0.0,0.0,0.0,168.0,0.0,142,146,160,167,180,192,0.0,144.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +467,467,0.0,4582.6,0.0,1603188314.0,148.3679525222552,3.37,0.0,0.0,19.0,451,10.8,0.0,166.0,151.0,-60.0,7.0,47.0,13.0,55.752638133905236,476.8421052631579,113.97817553987889,-21.0,52.2449769,6.8139128,3.37,4582.6,0.0,0.0,4582.6,1393.0,0.0,0.0,0.0,0.0,0.0,3.37,248.0,507.0,1.0,4.0,455,3.37,0.0,0.0,0.0,166.0,0.0,0.0,142,146,160,167,180,192,0.0,151.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +468,468,0.0,4593.2,0.0,1603188317.1999998,149.2537313432836,3.35,0.0,0.0,19.0,452,10.7,0.0,165.0,155.0,-60.0,8.0,47.0,13.0,55.52782910917176,489.4736842105263,120.04801920768308,-23.0,52.245005,6.813763400000001,3.35,4593.2,0.0,0.0,4593.2,1396.1999998092651,0.0,0.0,0.0,0.0,0.0,3.35,247.0,534.0,1.0,4.0,456,3.35,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,155.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +469,469,0.0,4604.3,0.0,1603188320.4,148.3679525222552,3.37,0.0,0.0,18.5,453,11.1,0.0,165.0,152.0,-60.0,6.0,47.0,13.0,56.65187423283921,492.97297297297297,116.90069286141424,-18.0,52.245034,6.8136084000000015,3.37,4604.3,0.0,0.0,4604.3,1399.4000000953674,0.0,0.0,0.0,0.0,0.0,3.37,252.0,520.0,1.0,4.0,457,3.37,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,152.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +470,470,0.0,4615.6,0.0,1603188323.8,147.92899408284026,3.38,0.0,0.0,18.0,454,11.3,0.0,166.0,146.0,-59.0,5.0,47.0,14.0,55.07821105970478,486.6666666666667,112.85413041621143,-23.0,52.2450638,6.8134497000000005,3.38,4615.6,0.0,0.0,4615.6,1402.7999999523163,0.0,0.0,0.0,0.0,0.0,3.38,245.0,502.0,1.0,4.0,458,3.3799999999999994,0.0,0.0,0.0,166.0,0.0,0.0,142,146,160,167,180,192,0.0,146.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +471,471,0.0,4625.8,0.0,1603188326.8,148.3679525222552,3.37,0.0,0.0,19.0,455,10.2,0.0,167.0,155.0,-59.0,5.0,48.0,14.0,56.42706520810572,489.4736842105263,111.730085292544,-23.0,52.245088,6.8133054999999985,3.37,4625.8,0.0,0.0,4625.8,1405.7999999523163,0.0,0.0,0.0,0.0,0.0,3.37,251.0,497.0,1.0,4.0,459,3.37,0.0,0.0,0.0,167.0,167.0,0.0,142,146,160,167,180,192,0.0,155.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +472,472,0.0,4637.0,0.0,1603188330.1999998,148.3679525222552,3.37,0.0,0.0,18.5,456,11.2,0.0,169.0,155.0,-61.0,7.0,47.0,14.0,58.22553740597362,502.7027027027027,118.69916505928214,-23.0,52.2451161,6.8131467999999975,3.37,4637.0,0.0,0.0,4637.0,1409.1999998092651,0.0,0.0,0.0,0.0,0.0,3.37,259.0,528.0,1.0,4.0,460,3.37,0.0,0.0,0.0,0.0,169.0,0.0,142,146,160,167,180,192,0.0,155.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +473,473,0.0,4648.0,0.0,1603188333.4,148.80952380952382,3.36,0.0,0.0,18.0,457,10.9,0.0,167.0,153.0,-63.0,7.0,49.0,14.0,60.4736276533085,510.0,103.86176942687187,-2.0,52.24514370000001,6.8129931,3.36,4648.0,0.0,0.0,4648.0,1412.4000000953674,0.0,0.0,0.0,0.0,0.0,3.36,269.0,462.0,1.0,4.0,461,3.36,0.0,0.0,0.0,167.0,167.0,0.0,142,146,160,167,180,192,0.0,153.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +474,474,0.0,4658.6,0.0,1603188336.6,151.0574018126888,3.31,0.0,0.0,18.0,458,10.6,0.0,166.0,160.0,-61.0,7.0,48.0,12.0,61.14805472750896,533.3333333333334,118.69916505928214,-28.0,52.2451671,6.812842,3.31,4658.6,0.0,0.0,4658.6,1415.5999999046326,0.0,0.0,0.0,0.0,0.0,3.31,272.0,528.0,1.0,4.0,462,3.3100000000000005,0.0,0.0,0.0,166.0,0.0,0.0,142,146,160,167,180,192,0.0,160.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +475,475,0.0,4669.4,0.0,1603188340.1,150.15015015015015,3.33,0.0,0.0,19.0,459,10.9,0.0,165.0,157.0,-60.0,6.0,48.0,14.0,56.42706520810572,495.7894736842105,116.00145676248027,-23.0,52.2451927,6.8126884999999975,3.33,4669.4,0.0,0.0,4669.4,1419.0999999046326,0.0,0.0,0.0,0.0,0.0,3.33,251.0,516.0,1.0,4.0,463,3.33,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,157.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +476,476,0.0,4679.7,0.0,1603188343.1,147.49262536873155,3.39,0.0,0.0,18.5,460,10.3,0.0,165.0,158.0,-60.0,6.0,48.0,15.0,58.00072838124014,512.4324324324324,121.17206433135051,-20.0,52.2452164,6.812542,3.39,4679.7,0.0,0.0,4679.7,1422.0999999046326,0.0,0.0,0.0,0.0,0.0,3.39,258.0,539.0,1.0,4.0,464,3.39,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,158.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +477,477,0.0,4691.5,0.0,1603188346.4,146.6275659824047,3.41,0.0,0.0,18.0,461,11.8,0.0,165.0,152.0,-60.0,5.0,47.0,13.0,57.55111033177316,506.6666666666667,113.97817553987889,-14.0,52.2452433,6.812375099999999,3.41,4691.5,0.0,0.0,4691.5,1425.4000000953674,0.0,0.0,0.0,0.0,0.0,3.41,256.0,507.0,1.0,4.0,465,3.41,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,152.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +478,478,0.0,4702.8,0.0,1603188349.8,147.05882352941177,3.4,0.0,0.0,18.0,462,11.3,0.0,164.0,148.0,-60.0,7.0,47.0,15.0,56.42706520810572,493.3333333333333,119.37359213348259,-17.0,52.2452693,6.8122148000000005,3.4,4702.8,0.0,0.0,4702.8,1428.7999999523163,0.0,0.0,0.0,0.0,0.0,3.4,251.0,531.0,1.0,4.0,466,3.4,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,148.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +479,479,0.0,4713.6,0.0,1603188353.0,148.80952380952382,3.36,0.0,0.0,18.0,463,10.8,0.0,166.0,150.0,-60.0,6.0,47.0,14.0,57.775919356506655,500.0,117.5751199356147,-19.0,52.245292600000006,6.8120609,3.36,4713.6,0.0,0.0,4713.6,1432.0,0.0,0.0,0.0,0.0,0.0,3.36,257.0,523.0,1.0,4.0,467,3.36,0.0,0.0,0.0,166.0,0.0,0.0,142,146,160,167,180,192,0.0,150.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +480,480,0.0,4724.4,0.0,1603188356.1999998,149.2537313432836,3.35,0.0,0.0,18.5,464,10.8,0.0,167.0,147.0,-60.0,6.0,48.0,13.0,53.72935691130385,476.7567567567568,109.2571860204756,-31.0,52.2453155,6.8119069,3.35,4724.4,0.0,0.0,4724.4,1435.1999998092651,0.0,0.0,0.0,0.0,0.0,3.35,239.0,486.0,1.0,4.0,468,3.35,0.0,0.0,0.0,167.0,167.0,0.0,142,146,160,167,180,192,0.0,147.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +481,481,0.0,4735.0,0.0,1603188359.4,149.70059880239518,3.34,0.0,0.0,18.5,465,10.6,0.0,166.0,153.0,-59.0,5.0,49.0,14.0,58.675155455440596,496.2162162162162,109.93161309467608,-21.0,52.2453362,6.8117549,3.34,4735.0,0.0,0.0,4735.0,1438.4000000953674,0.0,0.0,0.0,0.0,0.0,3.34,261.0,489.0,1.0,4.0,469,3.3400000000000007,0.0,0.0,0.0,166.0,0.0,0.0,142,146,160,167,180,192,0.0,153.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +482,482,0.0,4745.8,0.0,1603188362.6,149.70059880239518,3.34,0.0,0.0,18.5,466,10.8,0.0,168.0,155.0,-61.0,6.0,47.0,11.0,58.22553740597362,502.7027027027027,108.58275894627512,-2.0,52.2453558,6.811600500000001,3.34,4745.8,0.0,0.0,4745.8,1441.5999999046326,0.0,0.0,0.0,0.0,0.0,3.34,259.0,483.0,1.0,4.0,470,3.3400000000000007,0.0,0.0,0.0,0.0,168.0,0.0,142,146,160,167,180,192,0.0,155.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +483,483,0.0,4756.5,0.0,1603188365.8,149.70059880239518,3.34,0.0,0.0,19.5,467,10.8,0.0,168.0,162.0,-59.0,6.0,48.0,13.0,59.574391554374564,498.46153846153845,116.45107481194724,-21.0,52.2453763,6.8114461,3.34,4756.5,0.0,0.0,4756.5,1444.7999999523163,0.0,0.0,0.0,0.0,0.0,3.34,265.0,518.0,1.0,4.0,471,3.3400000000000007,0.0,0.0,0.0,0.0,168.0,0.0,142,146,160,167,180,192,0.0,162.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +484,484,0.0,4767.6,0.0,1603188369.0,148.3679525222552,3.37,0.0,0.0,18.5,468,11.1,0.0,169.0,152.0,-60.0,6.0,49.0,14.0,57.32630130703967,492.97297297297297,113.52855749041193,-22.0,52.24539620000001,6.8112866,3.37,4767.6,0.0,0.0,4767.6,1448.0,0.0,0.0,0.0,0.0,0.0,3.37,255.0,505.0,1.0,4.0,472,3.37,0.0,0.0,0.0,0.0,169.0,0.0,142,146,160,167,180,192,0.0,152.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +485,485,0.0,4778.2,0.0,1603188372.1999998,147.92899408284026,3.38,0.0,0.0,18.5,469,10.5,0.0,169.0,142.0,-59.0,6.0,47.0,15.0,52.83012081236989,460.5405405405405,109.03237699574213,-28.0,52.2454129,6.811134700000001,3.38,4778.2,0.0,0.0,4778.2,1451.1999998092651,0.0,0.0,0.0,0.0,0.0,3.38,235.0,485.0,1.0,4.0,473,3.3799999999999994,0.0,0.0,0.0,0.0,169.0,0.0,142,146,160,167,180,192,0.0,142.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +486,486,0.0,4788.9,0.0,1603188375.4,150.15015015015015,3.33,0.0,0.0,18.0,470,10.8,0.0,168.0,149.0,-59.0,6.0,47.0,14.0,58.675155455440596,496.6666666666667,113.52855749041193,-21.0,52.2454315,6.8109795,3.33,4788.9,0.0,0.0,4788.9,1454.4000000953674,0.0,0.0,0.0,0.0,0.0,3.33,261.0,505.0,1.0,4.0,474,3.33,0.0,0.0,0.0,0.0,168.0,0.0,142,146,160,167,180,192,0.0,149.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +487,487,0.0,4800.5,0.0,1603188379.1,151.51515151515153,3.3,0.0,0.0,18.0,471,11.5,0.0,167.0,137.0,-59.0,5.0,48.0,15.0,56.20225618337223,456.6666666666667,103.86176942687187,-22.0,52.2454502,6.8108132,3.3,4800.5,0.0,0.0,4800.5,1458.0999999046326,0.0,0.0,0.0,0.0,0.0,3.3,250.00000000000003,462.0,1.0,4.0,475,3.3,0.0,0.0,0.0,167.0,167.0,0.0,142,146,160,167,180,192,0.0,137.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +488,488,0.0,4810.8,0.0,1603188382.1,150.15015015015015,3.33,0.0,0.0,17.5,472,10.4,0.0,166.0,143.0,-59.0,6.0,49.0,15.0,54.178974960770816,490.2857142857143,109.2571860204756,-29.0,52.2454674,6.810664,3.33,4810.8,0.0,0.0,4810.8,1461.0999999046326,0.0,0.0,0.0,0.0,0.0,3.33,241.0,486.0,1.0,4.0,476,3.33,0.0,0.0,0.0,166.0,0.0,0.0,142,146,160,167,180,192,0.0,143.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +489,489,0.0,4822.6,0.0,1603188385.4,148.3679525222552,3.37,0.0,0.0,18.0,473,11.8,0.0,164.0,147.0,-59.0,6.0,48.0,12.0,56.65187423283921,490.0,112.85413041621143,-26.0,52.24548770000001,6.810494500000001,3.37,4822.6,0.0,0.0,4822.6,1464.4000000953674,0.0,0.0,0.0,0.0,0.0,3.37,252.0,502.0,1.0,4.0,477,3.37,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,147.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +490,490,0.0,4834.0,0.0,1603188388.8,147.49262536873155,3.39,0.0,0.0,18.0,474,11.5,0.0,164.0,143.0,-60.0,5.0,48.0,12.0,53.50454788657036,476.6666666666667,102.06329722900395,2.0,52.2455059,6.8103291,3.39,4834.0,0.0,0.0,4834.0,1467.7999999523163,0.0,0.0,0.0,0.0,0.0,3.39,238.0,454.0,1.0,4.0,478,3.39,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,143.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +491,491,0.0,4844.1,0.0,1603188391.8,148.3679525222552,3.37,0.0,0.0,19.0,475,10.1,0.0,162.0,150.0,-59.0,7.0,49.0,16.0,54.85340203497128,473.6842105263158,105.4354326000063,-29.0,52.2455211,6.810183,3.37,4844.1,0.0,0.0,4844.1,1470.7999999523163,0.0,0.0,0.0,0.0,0.0,3.37,244.0,469.0,1.0,4.0,479,3.37,0.0,0.0,0.0,162.0,0.0,0.0,142,146,160,167,180,192,0.0,150.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +492,492,0.0,4855.3,0.0,1603188395.1999998,149.2537313432836,3.35,0.0,0.0,18.0,476,11.2,0.0,163.0,142.0,-60.0,7.0,48.0,14.0,53.95416593603733,473.3333333333333,114.65260261407934,-25.0,52.2455389,6.8100216,3.35,4855.3,0.0,0.0,4855.3,1474.1999998092651,0.0,0.0,0.0,0.0,0.0,3.35,240.0,510.0,1.0,4.0,480,3.35,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,142.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +493,493,0.0,4866.4,0.0,1603188398.4,149.2537313432836,3.35,0.0,0.0,18.0,477,11.1,0.0,164.0,150.0,-61.0,7.0,47.0,15.0,56.65187423283921,500.0,123.19534555395192,-14.0,52.2455565,6.8098616,3.35,4866.4,0.0,0.0,4866.4,1477.4000000953674,0.0,0.0,0.0,0.0,0.0,3.35,252.0,548.0,1.0,4.0,481,3.35,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,150.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +494,494,0.0,4877.5,0.0,1603188401.8,149.2537313432836,3.35,0.0,0.0,18.5,478,11.1,0.0,165.0,136.0,-59.0,7.0,48.0,16.0,51.93088471343594,441.0810810810811,103.6369604021384,-31.0,52.2455737,6.809700500000001,3.35,4877.5,0.0,0.0,4877.5,1480.7999999523163,0.0,0.0,0.0,0.0,0.0,3.35,231.0,461.0,1.0,4.0,482,3.35,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,136.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +495,495,0.0,4888.3,0.0,1603188405.0,150.60240963855424,3.32,0.0,0.0,19.0,479,10.7,0.0,164.0,154.0,-61.0,6.0,47.0,11.0,55.752638133905236,486.3157894736842,109.93161309467608,-8.0,52.2455922,6.8095456999999975,3.32,4888.3,0.0,0.0,4888.3,1484.0,0.0,0.0,0.0,0.0,0.0,3.32,248.0,489.0,1.0,4.0,483,3.3199999999999994,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,154.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +496,496,0.0,4898.5,0.0,1603188408.0,150.15015015015015,3.33,0.0,0.0,19.0,480,10.2,0.0,163.0,171.0,-59.0,6.0,45.0,11.0,61.82248180170944,540.0,116.22626578721376,-28.0,52.2456105,6.8093992,3.33,4898.5,0.0,0.0,4898.5,1487.0,0.0,0.0,0.0,0.0,0.0,3.33,275.0,517.0,1.0,4.0,484,3.33,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,171.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +497,497,0.0,4908.8,0.0,1603188411.0,147.49262536873155,3.39,0.0,0.0,19.5,481,10.3,0.0,163.0,164.0,-60.0,7.0,45.0,12.0,60.24881862857502,504.61538461538464,113.52855749041193,-16.0,52.24562879999999,6.8092505,3.39,4908.8,0.0,0.0,4908.8,1490.0,0.0,0.0,0.0,0.0,0.0,3.39,268.0,505.0,1.0,4.0,485,3.39,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,164.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +498,498,0.0,4919.5,0.0,1603188414.1999998,147.05882352941177,3.4,0.0,0.0,19.0,482,10.7,0.0,163.0,165.0,-61.0,6.0,45.0,11.0,62.272099851176435,521.0526315789474,114.65260261407934,-30.0,52.245648,6.8090964000000005,3.4,4919.5,0.0,0.0,4919.5,1493.1999998092651,0.0,0.0,0.0,0.0,0.0,3.4,277.0,510.0,1.0,4.0,486,3.4,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,165.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +499,499,0.0,4930.1,0.0,1603188417.4,149.70059880239518,3.34,0.0,0.0,19.0,483,10.5,0.0,163.0,165.0,-60.0,6.0,45.0,10.0,63.171335950110375,521.0526315789474,117.35031091088119,-30.0,52.2456649,6.8089444000000015,3.34,4930.1,0.0,0.0,4930.1,1496.4000000953674,0.0,0.0,0.0,0.0,0.0,3.34,281.0,522.0,1.0,4.0,487,3.3400000000000007,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,165.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +500,500,0.0,4941.0,0.0,1603188420.6,151.9756838905775,3.29,0.0,0.0,18.5,484,11.0,0.0,163.0,26.0,-39.0,22.0,34.0,14.0,24.953801745417266,84.32432432432432,41.81447860042893,7.0,52.2456816,6.8087858999999975,3.29,4941.0,0.0,0.0,4941.0,1499.5999999046326,0.0,0.0,0.0,0.0,0.0,3.29,111.0,186.0,1.0,4.0,488,3.29,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,26.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +501,501,0.0,4941.0,0.0,1603188420.6,151.9756838905775,3.29,0.0,0.0,18.5,484,11.0,0.0,163.0,0.0,20.0,22.0,25.0,14.0,1.1240451236674445,0.0,2.2480902473348894,22.0,52.2456816,6.8087858999999975,3.29,4941.0,0.0,0.0,4941.0,1499.5999999046326,0.0,0.0,0.0,0.0,0.0,3.29,5.0,10.0,1.0,4.0,488,3.29,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +502,502,0.0,4941.0,0.0,1603188420.6,151.9756838905775,3.29,0.0,0.0,18.5,484,11.0,0.0,163.0,141.0,-60.0,6.0,47.0,12.0,53.27973886183686,457.2972972972973,103.86176942687187,-11.0,52.2456816,6.8087858999999975,3.29,4941.0,0.0,0.0,4941.0,1499.5999999046326,0.0,0.0,0.0,0.0,0.0,3.29,237.0,462.0,1.0,4.0,488,3.29,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,141.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +503,503,0.0,4970.1,0.0,1603188443.8,284.09090909090907,1.76,0.0,0.0,23.0,485,29.0,0.0,163.0,29.0,-40.0,9.0,38.0,14.0,29.674791264820534,75.65217391304348,50.58203056503501,-2.0,52.24571270000001,6.8083652999999975,1.76,4970.1,0.0,0.0,4970.1,1522.7999999523163,0.0,0.0,0.0,0.0,0.0,1.76,132.0,225.0,1.0,4.0,497,1.7600000000000002,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,29.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +504,504,0.0,4970.6,0.0,1603188446.6999998,2083.333333333333,0.24,0.0,0.0,9.5,486,0.5,0.0,162.0,29.0,-40.0,9.0,38.0,14.0,29.674791264820534,183.1578947368421,50.58203056503501,-2.0,52.24569879999999,6.8083592999999984,0.24,4970.6,0.0,0.0,4970.6,1525.6999998092651,0.0,0.0,0.0,0.0,0.0,0.24,132.0,225.0,1.0,4.0,497,0.24000000000000005,0.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +505,505,0.0,4971.2,0.0,1603188449.0,1428.571428571429,0.35,0.0,0.0,20.0,487,0.6,0.0,160.0,28.0,-37.0,7.0,38.0,16.0,28.101128091686114,84.0,49.682794466101036,-8.0,52.2456939,6.8083551999999985,0.35,4971.2,0.0,0.0,4971.2,1528.0,0.0,0.0,0.0,0.0,0.0,0.35,125.0,221.0,1.0,4.0,498,0.3499999999999999,0.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +506,506,0.0,4972.4,0.0,1603188452.3,1470.5882352941173,0.34,0.0,0.0,22.0,488,1.3,0.0,154.0,28.0,-37.0,7.0,38.0,16.0,28.101128091686114,76.36363636363636,49.682794466101036,-8.0,52.24568220000001,6.808357000000001,0.34,4972.4,0.0,0.0,4972.4,1531.2999999523163,0.0,0.0,0.0,0.0,0.0,0.34,125.0,221.0,1.0,4.0,499,0.3400000000000001,0.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +507,507,0.0,4973.0,0.0,1603188454.1,1470.5882352941173,0.34,0.0,0.0,24.0,489,0.5,0.0,150.0,46.0,-28.0,2.0,36.0,9.0,43.16333274882987,115.0,70.14041571684854,-7.0,52.2456773,6.8083587,0.34,4973.0,0.0,0.0,4973.0,1533.0999999046326,0.0,0.0,0.0,0.0,0.0,0.34,192.0,312.0,1.0,4.0,500,0.3400000000000001,0.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +508,508,0.0,4974.1,0.0,1603188456.4,1219.5121951219512,0.41,0.0,0.0,25.5,490,1.1,0.0,149.0,84.0,-8.0,2.0,38.0,11.0,40.24081542729451,197.64705882352942,74.8614052362518,6.0,52.245668,6.8083716,0.41,4974.1,0.0,0.0,4974.1,1535.4000000953674,0.0,0.0,0.0,0.0,0.0,0.41,179.0,333.0,1.0,4.0,501,0.41,0.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +509,509,0.0,4976.0,0.0,1603188458.6999998,724.6376811594204,0.69,0.0,0.0,31.0,491,1.8,0.0,147.0,26.0,-8.0,4.0,25.0,13.0,19.333576127080047,50.32258064516129,44.06256884776383,2.0,52.2456579,6.8084007,0.69,4976.0,0.0,0.0,4976.0,1537.6999998092651,0.0,0.0,0.0,0.0,0.0,0.69,86.0,196.0,1.0,4.0,502,0.69,0.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +510,510,0.0,4992.5,0.0,1603188484.9,819.672131147541,0.61,0.0,0.0,12.0,492,16.5,0.0,131.0,115.0,-47.0,4.0,47.0,13.0,53.27973886183686,575.0,100.26482503113606,-6.0,52.2455987,6.8086308,0.61,4992.5,0.0,0.0,4992.5,1563.9000000953674,0.0,0.0,0.0,0.0,0.0,0.61,237.0,446.00000000000006,1.0,4.0,507,0.61,0.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +511,511,0.0,4999.4,0.0,1603188488.6,438.59649122807025,1.14,0.0,0.0,16.0,493,6.9,0.0,126.0,165.0,-57.0,5.0,47.0,11.0,66.09385327164574,618.75,119.82321018294958,-15.0,52.2455848,6.8087297000000016,1.14,4999.4,0.0,0.0,4999.4,1567.5999999046326,0.0,0.0,0.0,0.0,0.0,1.14,294.0,533.0,1.0,4.0,508,1.14,0.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +512,512,0.0,5009.5,0.0,1603188492.3,228.31050228310505,2.19,0.0,0.0,17.0,494,10.1,0.0,125.0,146.0,-58.0,6.0,47.0,12.0,60.24881862857502,515.2941176470588,112.85413041621143,-14.0,52.245564,6.8088739,2.19,5009.5,0.0,0.0,5009.5,1571.2999999523163,0.0,0.0,0.0,0.0,0.0,2.19,268.0,502.0,1.0,4.0,509,2.1899999999999995,125.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,146.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +513,513,0.0,5020.1,0.0,1603188495.6999998,172.41379310344828,2.9,0.0,0.0,17.5,495,10.6,0.0,125.0,148.0,-60.0,7.0,49.0,14.0,60.698436678042,507.42857142857144,111.95489431727744,-22.0,52.2455472,6.809027,2.9,5020.1,0.0,0.0,5020.1,1574.6999998092651,0.0,0.0,0.0,0.0,0.0,2.9,270.0,498.0,1.0,4.0,510,2.9,125.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,148.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +514,514,0.0,5030.6,0.0,1603188499.1,158.7301587301587,3.15,0.0,0.0,18.0,496,10.5,0.0,126.0,156.0,-60.0,9.0,48.0,12.0,64.07057204904433,520.0,114.42779358934584,-13.0,52.2455292,6.8091781000000005,3.15,5030.6,0.0,0.0,5030.6,1578.0999999046326,0.0,0.0,0.0,0.0,0.0,3.15,285.0,509.0,1.0,4.0,511,3.1500000000000004,126.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,156.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +515,515,0.0,5040.9,0.0,1603188502.1,151.0574018126888,3.31,0.0,0.0,19.0,497,10.3,0.0,127.0,155.0,-60.0,8.0,47.0,12.0,61.59767277697596,489.4736842105263,119.59840115821608,-15.0,52.2455113,6.8093266,3.31,5040.9,0.0,0.0,5040.9,1581.0999999046326,0.0,0.0,0.0,0.0,0.0,3.31,274.0,532.0,1.0,4.0,512,3.3100000000000005,127.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,155.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +516,516,0.0,5052.2,0.0,1603188505.3,145.7725947521866,3.43,0.0,0.0,18.5,498,11.3,0.0,129.0,147.0,-59.0,7.0,50.0,15.0,55.07821105970478,476.7567567567568,109.93161309467608,-16.0,52.2454913,6.8094885,3.43,5052.2,0.0,0.0,5052.2,1584.2999999523163,0.0,0.0,0.0,0.0,0.0,3.43,245.0,489.0,1.0,4.0,513,3.43,129.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,147.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +517,517,0.0,5063.4,0.0,1603188508.6999998,145.7725947521866,3.43,0.0,0.0,18.5,499,11.2,0.0,130.0,152.0,-60.0,7.0,48.0,15.0,59.574391554374564,492.97297297297297,113.30374846567841,-16.0,52.2454712,6.809649900000001,3.43,5063.4,0.0,0.0,5063.4,1587.6999998092651,0.0,0.0,0.0,0.0,0.0,3.43,265.0,504.0,1.0,4.0,514,3.43,130.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,152.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +518,518,0.0,5074.1,0.0,1603188511.9,147.92899408284026,3.38,0.0,0.0,18.0,500,10.7,0.0,132.0,143.0,-60.0,7.0,48.0,15.0,60.02400960384154,476.6666666666667,109.03237699574213,-17.0,52.2454527,6.8098037,3.38,5074.1,0.0,0.0,5074.1,1590.9000000953674,0.0,0.0,0.0,0.0,0.0,3.38,267.0,485.0,1.0,4.0,515,3.3799999999999994,132.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,143.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +519,519,0.0,5085.3,0.0,1603188515.1999998,150.15015015015015,3.33,0.0,0.0,18.0,501,11.2,0.0,134.0,142.0,-59.0,7.0,47.0,13.0,55.752638133905236,473.3333333333333,108.80756797100862,-14.0,52.245432,6.809964,3.33,5085.3,0.0,0.0,5085.3,1594.1999998092651,0.0,0.0,0.0,0.0,0.0,3.33,248.0,484.0,1.0,4.0,516,3.33,134.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,142.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +520,520,0.0,5096.0,0.0,1603188518.5,150.60240963855424,3.32,0.0,0.0,18.5,502,10.7,0.0,135.0,150.0,-60.0,8.0,46.0,16.0,58.675155455440596,486.4864864864865,116.67588383668074,-30.0,52.2454105,6.8101174,3.32,5096.0,0.0,0.0,5096.0,1597.5,0.0,0.0,0.0,0.0,0.0,3.32,261.0,519.0,1.0,4.0,517,3.3199999999999994,135.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,150.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +521,521,0.0,5106.8,0.0,1603188521.6999998,149.2537313432836,3.35,0.0,0.0,18.5,503,10.8,0.0,136.0,159.0,-60.0,6.0,47.0,14.0,62.9465269253769,515.6756756756756,116.90069286141424,-17.0,52.2453898,6.810273,3.35,5106.8,0.0,0.0,5106.8,1600.6999998092651,0.0,0.0,0.0,0.0,0.0,3.35,280.0,520.0,1.0,4.0,518,3.35,136.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,159.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +522,522,0.0,5117.8,0.0,1603188524.9,147.05882352941177,3.4,0.0,0.0,19.0,504,10.9,0.0,136.0,164.0,-61.0,6.0,46.0,13.0,61.59767277697596,517.8947368421053,117.5751199356147,-17.0,52.2453674,6.810429400000001,3.4,5117.8,0.0,0.0,5117.8,1603.9000000953674,0.0,0.0,0.0,0.0,0.0,3.4,274.0,523.0,1.0,4.0,519,3.4,136.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,164.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +523,523,0.0,5128.9,0.0,1603188528.1,144.50867052023122,3.46,0.0,0.0,19.0,505,11.1,0.0,139.0,170.0,-61.0,5.0,48.0,14.0,67.66751644478016,536.8421052631579,119.59840115821608,-17.0,52.2453467,6.8105883,3.46,5128.9,0.0,0.0,5128.9,1607.0999999046326,0.0,0.0,0.0,0.0,0.0,3.46,301.0,532.0,1.0,4.0,520,3.46,139.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,170.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +524,524,0.0,5140.0,0.0,1603188531.3,143.2664756446991,3.49,0.0,0.0,18.5,506,11.1,0.0,140.0,166.0,-62.0,6.0,48.0,12.0,61.372863752242466,538.3783783783783,125.21862677655331,-16.0,52.2453245,6.8107472000000016,3.49,5140.0,0.0,0.0,5140.0,1610.2999999523163,0.0,0.0,0.0,0.0,0.0,3.49,273.0,557.0,1.0,4.0,521,3.4900000000000007,140.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,166.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +525,525,0.0,5151.1,0.0,1603188534.5,144.50867052023122,3.46,0.0,0.0,18.5,507,11.2,0.0,142.0,160.0,-60.0,6.0,48.0,16.0,61.372863752242466,518.918918918919,118.92397408401564,-26.0,52.245304,6.8109074000000005,3.46,5151.1,0.0,0.0,5151.1,1613.5,0.0,0.0,0.0,0.0,0.0,3.46,273.0,529.0,1.0,4.0,522,3.46,142.0,142.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,160.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +526,526,0.0,5162.0,0.0,1603188537.6,147.05882352941177,3.4,0.0,0.0,18.5,508,10.9,0.0,144.0,146.0,-60.0,6.0,47.0,14.0,54.85340203497128,473.5135135135135,109.93161309467608,-31.0,52.2452835,6.8110635,3.4,5162.0,0.0,0.0,5162.0,1616.5999999046326,0.0,0.0,0.0,0.0,0.0,3.4,244.0,489.0,1.0,4.0,523,3.4,0.0,144.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,146.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +527,527,0.0,5173.1,0.0,1603188541.1,148.3679525222552,3.37,0.0,0.0,19.0,509,11.1,0.0,148.0,151.0,-60.0,7.0,48.0,15.0,59.574391554374564,476.8421052631579,107.00909577314071,-13.0,52.2452608,6.8112222,3.37,5173.1,0.0,0.0,5173.1,1620.0999999046326,0.0,0.0,0.0,0.0,0.0,3.37,265.0,476.0,1.0,4.0,524,3.37,0.0,0.0,148.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,151.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +528,528,0.0,5183.6,0.0,1603188544.1,147.49262536873155,3.39,0.0,0.0,18.5,510,10.4,0.0,149.0,147.0,-61.0,8.0,46.0,13.0,56.42706520810572,476.7567567567568,111.50527626781047,-14.0,52.2452425,6.811372500000001,3.39,5183.6,0.0,0.0,5183.6,1623.0999999046326,0.0,0.0,0.0,0.0,0.0,3.39,251.0,496.0,1.0,4.0,525,3.39,0.0,0.0,149.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,147.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +529,529,0.0,5194.5,0.0,1603188547.1999998,144.92753623188406,3.45,0.0,0.0,18.5,511,11.0,0.0,149.0,150.0,-61.0,7.0,45.0,13.0,55.07821105970478,486.4864864864865,117.35031091088119,-22.0,52.2452211,6.8115295,3.45,5194.5,0.0,0.0,5194.5,1626.1999998092651,0.0,0.0,0.0,0.0,0.0,3.45,245.0,522.0,1.0,4.0,526,3.45,0.0,0.0,149.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,150.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +530,530,0.0,5205.9,0.0,1603188550.5,144.50867052023122,3.46,0.0,0.0,18.5,512,11.4,0.0,149.0,155.0,-60.0,7.0,48.0,15.0,61.372863752242466,502.7027027027027,110.38123114414304,-29.0,52.2452005,6.8116936,3.46,5205.9,0.0,0.0,5205.9,1629.5,0.0,0.0,0.0,0.0,0.0,3.46,273.0,491.0,1.0,4.0,527,3.46,0.0,0.0,149.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,155.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +531,531,0.0,5216.8,0.0,1603188553.6999998,145.3488372093023,3.44,0.0,0.0,18.5,513,10.9,0.0,150.0,152.0,-60.0,6.0,45.0,11.0,60.02400960384154,492.97297297297297,113.30374846567841,-15.0,52.2451787,6.8118491,3.44,5216.8,0.0,0.0,5216.8,1632.6999998092651,0.0,0.0,0.0,0.0,0.0,3.44,267.0,504.0,1.0,4.0,528,3.4400000000000004,0.0,0.0,150.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,152.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +532,532,0.0,5227.7,0.0,1603188556.9,146.19883040935673,3.42,0.0,0.0,18.5,514,10.9,0.0,153.0,150.0,-58.0,6.0,45.0,13.0,57.55111033177316,486.4864864864865,112.62932139147793,-29.0,52.2451558,6.8120048,3.42,5227.7,0.0,0.0,5227.7,1635.9000000953674,0.0,0.0,0.0,0.0,0.0,3.42,256.0,501.00000000000006,1.0,4.0,529,3.42,0.0,0.0,153.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,150.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +533,533,0.0,5238.7,0.0,1603188560.1,146.19883040935673,3.42,0.0,0.0,19.0,515,10.9,0.0,153.0,137.0,-60.0,6.0,46.0,13.0,51.70607568870245,432.63157894736844,100.71444308060305,0.0,52.2451293,6.8121595,3.42,5238.7,0.0,0.0,5238.7,1639.0999999046326,0.0,0.0,0.0,0.0,0.0,3.42,230.0,448.00000000000006,1.0,4.0,530,3.42,0.0,0.0,153.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,137.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +534,534,0.0,5249.3,0.0,1603188563.3,147.05882352941177,3.4,0.0,0.0,18.5,516,10.6,0.0,155.0,160.0,-59.0,7.0,45.0,12.0,60.698436678042,518.918918918919,118.69916505928214,-10.0,52.245105,6.8123104,3.4,5249.3,0.0,0.0,5249.3,1642.2999999523163,0.0,0.0,0.0,0.0,0.0,3.4,270.0,528.0,1.0,4.0,531,3.4,0.0,0.0,155.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,160.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +535,535,0.0,5260.7,0.0,1603188566.6999998,147.92899408284026,3.38,0.0,0.0,18.5,517,11.4,0.0,155.0,159.0,-60.0,7.0,47.0,13.0,62.721717900643405,515.6756756756756,115.10222066354632,-25.0,52.2450771,6.8124705999999975,3.38,5260.7,0.0,0.0,5260.7,1645.6999998092651,0.0,0.0,0.0,0.0,0.0,3.38,279.0,512.0,1.0,4.0,532,3.3799999999999994,0.0,0.0,155.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,159.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +536,536,0.0,5271.8,0.0,1603188569.9,147.49262536873155,3.39,0.0,0.0,18.5,518,11.1,0.0,156.0,146.0,-61.0,9.0,46.0,15.0,59.799200579108046,473.5135135135135,115.77664773774679,-17.0,52.24505170000001,6.812627799999999,3.39,5271.8,0.0,0.0,5271.8,1648.9000000953674,0.0,0.0,0.0,0.0,0.0,3.39,266.0,515.0,1.0,4.0,533,3.39,0.0,0.0,156.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,146.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +537,537,0.0,5282.7,0.0,1603188573.1,147.92899408284026,3.38,0.0,0.0,18.0,519,10.9,0.0,159.0,147.0,-60.0,7.0,46.0,13.0,58.89996448017409,490.0,111.730085292544,-18.0,52.2450249,6.812782,3.38,5282.7,0.0,0.0,5282.7,1652.0999999046326,0.0,0.0,0.0,0.0,0.0,3.38,262.0,497.0,1.0,4.0,534,3.3799999999999994,0.0,0.0,159.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,147.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +538,538,0.0,5293.6,0.0,1603188576.3,148.80952380952382,3.36,0.0,0.0,18.5,520,10.9,0.0,161.0,145.0,-59.0,5.0,46.0,13.0,56.87668325757269,470.27027027027026,109.03237699574213,-20.0,52.24499779999999,6.8129355,3.36,5293.6,0.0,0.0,5293.6,1655.2999999523163,0.0,0.0,0.0,0.0,0.0,3.36,253.0,485.0,1.0,4.0,535,3.36,0.0,0.0,0.0,161.0,0.0,0.0,142,146,160,167,180,192,0.0,145.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +539,539,0.0,5304.9,0.0,1603188579.6999998,149.70059880239518,3.34,0.0,0.0,18.5,521,11.3,0.0,162.0,151.0,-60.0,7.0,46.0,12.0,57.32630130703967,489.72972972972974,114.65260261407934,-20.0,52.2449691,6.8130944000000015,3.34,5304.9,0.0,0.0,5304.9,1658.6999998092651,0.0,0.0,0.0,0.0,0.0,3.34,255.0,510.0,1.0,4.0,536,3.3400000000000007,0.0,0.0,0.0,162.0,0.0,0.0,142,146,160,167,180,192,0.0,151.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +540,540,0.0,5315.9,0.0,1603188583.1,150.60240963855424,3.32,0.0,0.0,18.0,522,11.0,0.0,162.0,142.0,-59.0,6.0,48.0,16.0,55.07821105970478,473.3333333333333,107.6835228473412,-19.0,52.2449403,6.8132493,3.32,5315.9,0.0,0.0,5315.9,1662.0999999046326,0.0,0.0,0.0,0.0,0.0,3.32,245.0,479.0,1.0,4.0,537,3.3199999999999994,0.0,0.0,0.0,162.0,0.0,0.0,142,146,160,167,180,192,0.0,142.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +541,541,0.0,5326.4,0.0,1603188586.1,148.80952380952382,3.36,0.0,0.0,18.5,523,10.5,0.0,164.0,147.0,-60.0,7.0,46.0,12.0,55.52782910917176,476.7567567567568,111.730085292544,-24.0,52.24491610000001,6.813397900000001,3.36,5326.4,0.0,0.0,5326.4,1665.0999999046326,0.0,0.0,0.0,0.0,0.0,3.36,247.0,497.0,1.0,4.0,538,3.36,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,147.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +542,542,0.0,5338.2,0.0,1603188589.5,145.7725947521866,3.43,0.0,0.0,18.0,524,11.8,0.0,166.0,151.0,-60.0,7.0,47.0,14.0,56.87668325757269,503.3333333333333,115.55183871301331,-27.0,52.2448856,6.813564,3.43,5338.2,0.0,0.0,5338.2,1668.5,0.0,0.0,0.0,0.0,0.0,3.43,253.0,514.0,1.0,4.0,539,3.43,0.0,0.0,0.0,166.0,0.0,0.0,142,146,160,167,180,192,0.0,151.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +543,543,0.0,5349.1,0.0,1603188592.6999998,144.92753623188406,3.45,0.0,0.0,18.5,525,10.9,0.0,165.0,154.0,-60.0,7.0,49.0,15.0,56.65187423283921,499.4594594594595,120.04801920768308,-15.0,52.2448556,6.8137164000000014,3.45,5349.1,0.0,0.0,5349.1,1671.6999998092651,0.0,0.0,0.0,0.0,0.0,3.45,252.0,534.0,1.0,4.0,540,3.45,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,154.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +544,544,0.0,5359.9,0.0,1603188595.9,146.6275659824047,3.41,0.0,0.0,18.5,526,10.8,0.0,163.0,153.0,-59.0,6.0,48.0,13.0,56.65187423283921,496.2162162162162,111.05565821834352,-23.0,52.2448255,6.8138671,3.41,5359.9,0.0,0.0,5359.9,1674.9000000953674,0.0,0.0,0.0,0.0,0.0,3.41,252.0,494.0,1.0,4.0,541,3.41,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,153.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +545,545,0.0,5370.9,0.0,1603188599.1,146.6275659824047,3.41,0.0,0.0,18.5,527,10.9,0.0,163.0,151.0,-59.0,6.0,47.0,12.0,55.52782910917176,489.72972972972974,109.93161309467608,-25.0,52.2447967,6.8140207,3.41,5370.9,0.0,0.0,5370.9,1678.0999999046326,0.0,0.0,0.0,0.0,0.0,3.41,247.0,489.0,1.0,4.0,542,3.41,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,151.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +546,546,0.0,5382.3,0.0,1603188602.5,146.6275659824047,3.41,0.0,0.0,18.0,528,11.5,0.0,162.0,143.0,-61.0,7.0,48.0,16.0,56.42706520810572,476.6666666666667,115.77664773774679,-25.0,52.2447661,6.814180800000001,3.41,5382.3,0.0,0.0,5382.3,1681.5,0.0,0.0,0.0,0.0,0.0,3.41,251.0,515.0,1.0,4.0,543,3.41,0.0,0.0,0.0,162.0,0.0,0.0,142,146,160,167,180,192,0.0,143.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +547,547,0.0,5393.6,0.0,1603188605.9,147.92899408284026,3.38,0.0,0.0,18.5,529,11.3,0.0,162.0,147.0,-60.0,7.0,48.0,15.0,56.65187423283921,476.7567567567568,111.50527626781047,-24.0,52.2447353,6.8143383,3.38,5393.6,0.0,0.0,5393.6,1684.9000000953674,0.0,0.0,0.0,0.0,0.0,3.38,252.0,496.0,1.0,4.0,544,3.3799999999999994,0.0,0.0,0.0,162.0,0.0,0.0,142,146,160,167,180,192,0.0,147.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +548,548,0.0,5404.4,0.0,1603188609.1,149.2537313432836,3.35,0.0,0.0,17.5,530,10.8,0.0,161.0,142.0,-59.0,8.0,46.0,15.0,58.22553740597362,486.85714285714283,123.8697726281524,-11.0,52.2447038,6.8144886,3.35,5404.4,0.0,0.0,5404.4,1688.0999999046326,0.0,0.0,0.0,0.0,0.0,3.35,259.0,551.0,1.0,4.0,545,3.35,0.0,0.0,0.0,161.0,0.0,0.0,142,146,160,167,180,192,0.0,142.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +549,549,0.0,5415.6,0.0,1603188612.5,151.51515151515153,3.3,0.0,0.0,18.0,531,11.2,0.0,160.0,149.0,-59.0,7.0,49.0,16.0,59.799200579108046,496.6666666666667,113.97817553987889,-30.0,52.2446731,6.8146456,3.3,5415.6,0.0,0.0,5415.6,1691.5,0.0,0.0,0.0,0.0,0.0,3.3,266.0,507.0,1.0,4.0,546,3.3,0.0,0.0,160.0,160.0,0.0,0.0,142,146,160,167,180,192,0.0,149.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +550,550,0.0,5426.4,0.0,1603188615.6999998,152.9051987767584,3.27,0.0,0.0,18.5,532,10.8,0.0,163.0,157.0,-60.0,7.0,45.0,12.0,61.372863752242466,509.18918918918916,113.30374846567841,-26.0,52.2446425,6.8147959,3.27,5426.4,0.0,0.0,5426.4,1694.6999998092651,0.0,0.0,0.0,0.0,0.0,3.27,273.0,504.0,1.0,4.0,547,3.2700000000000005,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,157.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +551,551,0.0,5437.4,0.0,1603188619.1,150.60240963855424,3.32,0.0,0.0,19.0,533,10.9,0.0,162.0,161.0,-61.0,8.0,46.0,11.0,60.698436678042,508.42105263157896,120.04801920768308,-23.0,52.2446124,6.8149489,3.32,5437.4,0.0,0.0,5437.4,1698.0999999046326,0.0,0.0,0.0,0.0,0.0,3.32,270.0,534.0,1.0,4.0,548,3.3199999999999994,0.0,0.0,0.0,162.0,0.0,0.0,142,146,160,167,180,192,0.0,161.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +552,552,0.0,5447.9,0.0,1603188622.1,147.49262536873155,3.39,0.0,0.0,19.0,534,10.5,0.0,164.0,164.0,-60.0,5.0,48.0,11.0,64.07057204904433,517.8947368421053,120.27282823241656,-15.0,52.2445848,6.8150960000000005,3.39,5447.9,0.0,0.0,5447.9,1701.0999999046326,0.0,0.0,0.0,0.0,0.0,3.39,285.0,535.0,1.0,4.0,549,3.39,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,164.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +553,553,0.0,5459.4,0.0,1603188625.3,144.50867052023122,3.46,0.0,0.0,18.0,535,11.5,0.0,164.0,148.0,-61.0,9.0,48.0,14.0,56.87668325757269,493.3333333333333,112.85413041621143,-24.0,52.2445535,6.8152573000000025,3.46,5459.4,0.0,0.0,5459.4,1704.2999999523163,0.0,0.0,0.0,0.0,0.0,3.46,253.0,502.0,1.0,4.0,550,3.46,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,148.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +554,554,0.0,5470.9,0.0,1603188628.6999998,143.67816091954026,3.48,0.0,0.0,18.5,536,11.5,0.0,164.0,156.0,-60.0,5.0,47.0,13.0,58.22553740597362,505.94594594594594,116.00145676248027,-17.0,52.2445234,6.8154184,3.48,5470.9,0.0,0.0,5470.9,1707.6999998092651,0.0,0.0,0.0,0.0,0.0,3.48,259.0,516.0,1.0,4.0,551,3.479999999999998,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,156.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +555,555,0.0,5481.8,0.0,1603188631.9,145.3488372093023,3.44,0.0,0.0,18.0,537,10.9,0.0,163.0,152.0,-60.0,6.0,48.0,16.0,59.799200579108046,506.6666666666667,111.50527626781047,-15.0,52.2444944,6.8155712,3.44,5481.8,0.0,0.0,5481.8,1710.9000000953674,0.0,0.0,0.0,0.0,0.0,3.44,266.0,496.0,1.0,4.0,552,3.4400000000000004,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,152.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +556,556,0.0,5493.2,0.0,1603188635.3,146.6275659824047,3.41,0.0,0.0,17.5,538,11.5,0.0,163.0,134.0,-59.0,6.0,46.0,14.0,53.50454788657036,459.42857142857144,113.30374846567841,-27.0,52.244461,6.8157302,3.41,5493.2,0.0,0.0,5493.2,1714.2999999523163,0.0,0.0,0.0,0.0,0.0,3.41,238.0,504.0,1.0,4.0,553,3.41,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,134.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +557,557,0.0,5504.1,0.0,1603188638.5,147.49262536873155,3.39,0.0,0.0,18.0,539,10.9,0.0,164.0,144.0,-59.0,6.0,47.0,13.0,54.85340203497128,480.0,110.38123114414304,-20.0,52.244429,6.815881299999999,3.39,5504.1,0.0,0.0,5504.1,1717.5,0.0,0.0,0.0,0.0,0.0,3.39,244.0,491.0,1.0,4.0,554,3.39,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,144.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +558,558,0.0,5515.5,0.0,1603188641.9,148.3679525222552,3.37,0.0,0.0,18.5,540,11.4,0.0,165.0,133.0,-60.0,6.0,45.0,13.0,51.25645763923547,431.35135135135135,100.04001600640257,2.0,52.2443922,6.816037400000001,3.37,5515.5,0.0,0.0,5515.5,1720.9000000953674,0.0,0.0,0.0,0.0,0.0,3.37,228.0,445.0,1.0,4.0,555,3.37,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,133.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +559,559,0.0,5525.6,0.0,1603188644.9,149.2537313432836,3.35,0.0,0.0,19.0,541,10.0,0.0,162.0,152.0,-60.0,7.0,47.0,14.0,55.752638133905236,480.0,110.15642211940956,-16.0,52.2443609,6.816175500000001,3.35,5525.6,0.0,0.0,5525.6,1723.9000000953674,0.0,0.0,0.0,0.0,0.0,3.35,248.0,490.0,1.0,4.0,556,3.35,0.0,0.0,0.0,162.0,0.0,0.0,142,146,160,167,180,192,0.0,152.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +560,560,0.0,5537.0,0.0,1603188648.3,149.70059880239518,3.34,0.0,0.0,18.5,542,11.4,0.0,162.0,146.0,-60.0,7.0,46.0,14.0,55.07821105970478,473.5135135135135,111.280467243077,-19.0,52.2443233,6.816331699999999,3.34,5537.0,0.0,0.0,5537.0,1727.2999999523163,0.0,0.0,0.0,0.0,0.0,3.34,245.0,495.0,1.0,4.0,557,3.3400000000000007,0.0,0.0,0.0,162.0,0.0,0.0,142,146,160,167,180,192,0.0,146.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +561,561,0.0,5548.4,0.0,1603188651.6999998,150.60240963855424,3.32,0.0,0.0,18.0,543,11.4,0.0,163.0,153.0,-60.0,6.0,47.0,13.0,60.02400960384154,510.0,116.67588383668074,-17.0,52.24428620000001,6.816487,3.32,5548.4,0.0,0.0,5548.4,1730.6999998092651,0.0,0.0,0.0,0.0,0.0,3.32,267.0,519.0,1.0,4.0,558,3.3199999999999994,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,153.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +562,562,0.0,5559.2,0.0,1603188655.1,152.9051987767584,3.27,0.0,0.0,18.0,544,10.8,0.0,162.0,142.0,-60.0,7.0,46.0,12.0,56.65187423283921,473.3333333333333,113.30374846567841,-17.0,52.2442477,6.8166328,3.27,5559.2,0.0,0.0,5559.2,1734.0999999046326,0.0,0.0,0.0,0.0,0.0,3.27,252.0,504.0,1.0,4.0,559,3.2700000000000005,0.0,0.0,0.0,162.0,0.0,0.0,142,146,160,167,180,192,0.0,142.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +563,563,0.0,5569.9,0.0,1603188658.1999998,151.9756838905775,3.29,0.0,0.0,17.5,545,10.8,0.0,162.0,149.0,-60.0,8.0,47.0,13.0,60.698436678042,510.85714285714283,119.59840115821608,-22.0,52.244212,6.8167793,3.29,5569.9,0.0,0.0,5569.9,1737.1999998092651,0.0,0.0,0.0,0.0,0.0,3.29,270.0,532.0,1.0,4.0,560,3.29,0.0,0.0,0.0,162.0,0.0,0.0,142,146,160,167,180,192,0.0,149.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +564,564,0.0,5581.6,0.0,1603188661.6999998,149.70059880239518,3.34,0.0,0.0,18.0,546,11.6,0.0,164.0,143.0,-60.0,7.0,48.0,14.0,58.89996448017409,476.6666666666667,110.83084919361002,-27.0,52.2441759,6.8169391,3.34,5581.6,0.0,0.0,5581.6,1740.6999998092651,0.0,0.0,0.0,0.0,0.0,3.34,262.0,493.0,1.0,4.0,561,3.3400000000000007,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,143.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +565,565,0.0,5592.9,0.0,1603188665.1,149.2537313432836,3.35,0.0,0.0,18.0,547,11.3,0.0,164.0,140.0,-59.0,5.0,47.0,14.0,55.30302008443826,466.6666666666667,110.38123114414304,-20.0,52.2441388,6.8170940999999985,3.35,5592.9,0.0,0.0,5592.9,1744.0999999046326,0.0,0.0,0.0,0.0,0.0,3.35,246.0,491.0,1.0,4.0,562,3.35,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,140.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +566,566,0.0,5603.6,0.0,1603188668.3,149.70059880239518,3.34,0.0,0.0,18.0,548,10.7,0.0,164.0,154.0,-60.0,6.0,46.0,12.0,57.775919356506655,513.3333333333334,116.90069286141424,-24.0,52.2441037,6.8172399000000015,3.34,5603.6,0.0,0.0,5603.6,1747.2999999523163,0.0,0.0,0.0,0.0,0.0,3.34,257.0,520.0,1.0,4.0,563,3.3400000000000007,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,154.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +567,567,0.0,5615.0,0.0,1603188671.6999998,148.3679525222552,3.37,0.0,0.0,18.0,549,11.4,0.0,164.0,146.0,-60.0,6.0,47.0,14.0,56.87668325757269,486.6666666666667,114.20298456461235,-24.0,52.2440644,6.8173947,3.37,5615.0,0.0,0.0,5615.0,1750.6999998092651,0.0,0.0,0.0,0.0,0.0,3.37,253.0,508.0,1.0,4.0,564,3.37,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,146.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +568,568,0.0,5625.8,0.0,1603188674.9,148.3679525222552,3.37,0.0,0.0,18.0,550,10.8,0.0,161.0,145.0,-59.0,7.0,46.0,13.0,56.42706520810572,483.3333333333333,112.17970334201095,-23.0,52.2440271,6.817540400000001,3.37,5625.8,0.0,0.0,5625.8,1753.9000000953674,0.0,0.0,0.0,0.0,0.0,3.37,251.0,499.00000000000006,1.0,4.0,565,3.37,0.0,0.0,0.0,161.0,0.0,0.0,142,146,160,167,180,192,0.0,145.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +569,569,0.0,5637.2,0.0,1603188678.3,148.80952380952382,3.36,0.0,0.0,18.0,551,11.4,0.0,161.0,148.0,-60.0,6.0,46.0,14.0,59.574391554374564,493.3333333333333,111.280467243077,-15.0,52.2439864,6.8176936,3.36,5637.2,0.0,0.0,5637.2,1757.2999999523163,0.0,0.0,0.0,0.0,0.0,3.36,265.0,495.0,1.0,4.0,566,3.36,0.0,0.0,0.0,161.0,0.0,0.0,142,146,160,167,180,192,0.0,148.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +570,570,0.0,5648.0,0.0,1603188681.5,149.2537313432836,3.35,0.0,0.0,18.5,552,10.9,0.0,161.0,145.0,-60.0,7.0,47.0,13.0,56.42706520810572,470.27027027027026,113.7533665151454,-21.0,52.2439473,6.8178398,3.35,5648.0,0.0,0.0,5648.0,1760.5,0.0,0.0,0.0,0.0,0.0,3.35,251.0,506.0,1.0,4.0,567,3.35,0.0,0.0,0.0,161.0,0.0,0.0,142,146,160,167,180,192,0.0,145.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +571,571,0.0,5659.0,0.0,1603188684.6999998,149.70059880239518,3.34,0.0,0.0,18.5,553,10.9,0.0,162.0,144.0,-59.0,6.0,47.0,16.0,54.6285930102378,467.02702702702703,111.50527626781047,-20.0,52.2439072,6.817986200000001,3.34,5659.0,0.0,0.0,5659.0,1763.6999998092651,0.0,0.0,0.0,0.0,0.0,3.34,243.0,496.0,1.0,4.0,568,3.3400000000000007,0.0,0.0,0.0,162.0,0.0,0.0,142,146,160,167,180,192,0.0,144.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +572,572,0.0,5669.8,0.0,1603188688.1,149.70059880239518,3.34,0.0,0.0,18.5,554,10.9,0.0,162.0,142.0,-60.0,8.0,46.0,14.0,53.27973886183686,460.5405405405405,113.52855749041193,-12.0,52.2438674,6.8181314,3.34,5669.8,0.0,0.0,5669.8,1767.0999999046326,0.0,0.0,0.0,0.0,0.0,3.34,237.0,505.0,1.0,4.0,569,3.3400000000000007,0.0,0.0,0.0,162.0,0.0,0.0,142,146,160,167,180,192,0.0,142.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +573,573,0.0,5680.6,0.0,1603188691.1999998,148.3679525222552,3.37,0.0,0.0,18.0,555,10.8,0.0,164.0,151.0,-60.0,6.0,47.0,13.0,56.87668325757269,503.3333333333333,114.20298456461235,-22.0,52.2438271,6.8182752,3.37,5680.6,0.0,0.0,5680.6,1770.1999998092651,0.0,0.0,0.0,0.0,0.0,3.37,253.0,508.0,1.0,4.0,570,3.37,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,151.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +574,574,0.0,5692.1,0.0,1603188694.5,146.19883040935673,3.42,0.0,0.0,19.0,556,11.5,0.0,164.0,153.0,-60.0,8.0,47.0,14.0,56.20225618337223,483.1578947368421,116.00145676248027,-24.0,52.2437803,6.8184261,3.42,5692.1,0.0,0.0,5692.1,1773.5,0.0,0.0,0.0,0.0,0.0,3.42,250.00000000000003,516.0,1.0,4.0,571,3.42,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,153.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +575,575,0.0,5703.5,0.0,1603188697.9,146.19883040935673,3.42,0.0,0.0,18.0,557,11.4,0.0,162.0,144.0,-60.0,7.0,47.0,13.0,55.30302008443826,480.0,110.38123114414304,-22.0,52.2437371,6.8185777000000005,3.42,5703.5,0.0,0.0,5703.5,1776.9000000953674,0.0,0.0,0.0,0.0,0.0,3.42,246.0,491.0,1.0,4.0,572,3.42,0.0,0.0,0.0,162.0,0.0,0.0,142,146,160,167,180,192,0.0,144.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +576,576,0.0,5714.3,0.0,1603188701.1,148.80952380952382,3.36,0.0,0.0,18.0,558,10.8,0.0,161.0,152.0,-60.0,6.0,47.0,13.0,57.32630130703967,506.6666666666667,114.87741163881284,-16.0,52.2436991,6.8187229999999985,3.36,5714.3,0.0,0.0,5714.3,1780.0999999046326,0.0,0.0,0.0,0.0,0.0,3.36,255.0,511.0,1.0,4.0,573,3.36,0.0,0.0,0.0,161.0,0.0,0.0,142,146,160,167,180,192,0.0,152.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +577,577,0.0,5725.6,0.0,1603188704.5,149.70059880239518,3.34,0.0,0.0,18.0,559,11.4,0.0,161.0,146.0,-61.0,6.0,47.0,12.0,58.00072838124014,486.6666666666667,104.08657845160536,2.0,52.2436531,6.8188717999999975,3.34,5725.6,0.0,0.0,5725.6,1783.5,0.0,0.0,0.0,0.0,0.0,3.34,258.0,463.0,1.0,4.0,574,3.3400000000000007,0.0,0.0,0.0,161.0,0.0,0.0,142,146,160,167,180,192,0.0,146.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +578,578,0.0,5735.8,0.0,1603188707.5,149.2537313432836,3.35,0.0,0.0,19.0,560,10.2,0.0,160.0,161.0,-60.0,6.0,48.0,13.0,58.89996448017409,508.42105263157896,115.55183871301331,-17.0,52.2436133,6.819006,3.35,5735.8,0.0,0.0,5735.8,1786.5,0.0,0.0,0.0,0.0,0.0,3.35,262.0,514.0,1.0,4.0,575,3.35,0.0,0.0,160.0,160.0,0.0,0.0,142,146,160,167,180,192,0.0,161.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +579,579,0.0,5747.0,0.0,1603188710.9,148.80952380952382,3.36,0.0,0.0,18.5,561,11.2,0.0,160.0,163.0,-60.0,6.0,47.0,13.0,62.721717900643405,528.6486486486486,118.02473798508169,-18.0,52.2435727,6.8191561,3.36,5747.0,0.0,0.0,5747.0,1789.9000000953674,0.0,0.0,0.0,0.0,0.0,3.36,279.0,525.0,1.0,4.0,576,3.36,0.0,0.0,160.0,160.0,0.0,0.0,142,146,160,167,180,192,0.0,163.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +580,580,0.0,5757.9,0.0,1603188714.1,148.80952380952382,3.36,0.0,0.0,18.5,562,10.9,0.0,161.0,157.0,-61.0,6.0,47.0,12.0,60.24881862857502,509.18918918918916,120.27282823241656,-28.0,52.24353170000001,6.8193006999999985,3.36,5757.9,0.0,0.0,5757.9,1793.0999999046326,0.0,0.0,0.0,0.0,0.0,3.36,268.0,535.0,1.0,4.0,577,3.36,0.0,0.0,0.0,161.0,0.0,0.0,142,146,160,167,180,192,0.0,157.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +581,581,0.0,5768.7,0.0,1603188717.3,149.2537313432836,3.35,0.0,0.0,18.0,563,10.9,0.0,162.0,154.0,-61.0,7.0,48.0,13.0,57.775919356506655,513.3333333333334,118.92397408401564,-14.0,52.2434925,6.8194468,3.35,5768.7,0.0,0.0,5768.7,1796.2999999523163,0.0,0.0,0.0,0.0,0.0,3.35,257.0,529.0,1.0,4.0,578,3.35,0.0,0.0,0.0,162.0,0.0,0.0,142,146,160,167,180,192,0.0,154.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +582,582,0.0,5780.0,0.0,1603188720.6999998,151.0574018126888,3.31,0.0,0.0,18.0,564,11.2,0.0,163.0,160.0,-61.0,6.0,48.0,13.0,60.24881862857502,533.3333333333334,115.55183871301331,-35.0,52.2434536,6.8195993,3.31,5780.0,0.0,0.0,5780.0,1799.6999998092651,0.0,0.0,0.0,0.0,0.0,3.31,268.0,514.0,1.0,4.0,579,3.3100000000000005,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,160.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +583,583,0.0,5790.9,0.0,1603188724.1,152.4390243902439,3.28,0.0,0.0,18.5,565,10.9,0.0,163.0,153.0,-60.0,6.0,47.0,14.0,56.42706520810572,496.2162162162162,125.8930538507538,-23.0,52.243415,6.8197458,3.28,5790.9,0.0,0.0,5790.9,1803.0999999046326,0.0,0.0,0.0,0.0,0.0,3.28,251.0,560.0,1.0,4.0,580,3.28,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,153.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +584,584,0.0,5801.3,0.0,1603188727.1,150.15015015015015,3.33,0.0,0.0,18.0,566,10.5,0.0,164.0,153.0,-60.0,7.0,48.0,14.0,60.698436678042,510.0,115.3270296882798,-32.0,52.2433775,6.819886099999999,3.33,5801.3,0.0,0.0,5801.3,1806.0999999046326,0.0,0.0,0.0,0.0,0.0,3.33,270.0,513.0,1.0,4.0,581,3.33,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,153.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +585,585,0.0,5812.5,0.0,1603188730.4,147.49262536873155,3.39,0.0,0.0,18.5,567,11.2,0.0,163.0,146.0,-59.0,8.0,46.0,12.0,55.752638133905236,473.5135135135135,115.3270296882798,-30.0,52.243337,6.8200364,3.39,5812.5,0.0,0.0,5812.5,1809.4000000953674,0.0,0.0,0.0,0.0,0.0,3.39,248.0,513.0,1.0,4.0,582,3.39,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,146.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +586,586,0.0,5824.0,0.0,1603188733.6999998,146.6275659824047,3.41,0.0,0.0,18.5,568,11.5,0.0,162.0,152.0,-58.0,5.0,47.0,13.0,56.87668325757269,492.97297297297297,114.87741163881284,-20.0,52.243293,6.8201891,3.41,5824.0,0.0,0.0,5824.0,1812.6999998092651,0.0,0.0,0.0,0.0,0.0,3.41,253.0,511.0,1.0,4.0,583,3.41,0.0,0.0,0.0,162.0,0.0,0.0,142,146,160,167,180,192,0.0,152.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +587,587,0.0,5835.0,0.0,1603188736.9,147.05882352941177,3.4,0.0,0.0,18.5,569,11.0,0.0,160.0,155.0,-60.0,7.0,46.0,11.0,58.00072838124014,502.7027027027027,116.00145676248027,-15.0,52.2432493,6.8203331999999985,3.4,5835.0,0.0,0.0,5835.0,1815.9000000953674,0.0,0.0,0.0,0.0,0.0,3.4,258.0,516.0,1.0,4.0,584,3.4,0.0,0.0,160.0,160.0,0.0,0.0,142,146,160,167,180,192,0.0,155.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +588,588,0.0,5846.0,0.0,1603188740.1,147.05882352941177,3.4,0.0,0.0,18.5,570,11.0,0.0,159.0,130.0,-59.0,5.0,45.0,14.0,52.605311787636396,421.6216216216216,98.24154380853464,-4.0,52.2432055,6.820478200000001,3.4,5846.0,0.0,0.0,5846.0,1819.0999999046326,0.0,0.0,0.0,0.0,0.0,3.4,234.0,437.0,1.0,4.0,585,3.4,0.0,0.0,159.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,130.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +589,589,0.0,5856.6,0.0,1603188743.3,147.92899408284026,3.38,0.0,0.0,19.0,571,10.6,0.0,158.0,153.0,-59.0,6.0,46.0,13.0,56.42706520810572,483.1578947368421,113.52855749041193,-21.0,52.2431618,6.8206168000000025,3.38,5856.6,0.0,0.0,5856.6,1822.2999999523163,0.0,0.0,0.0,0.0,0.0,3.38,251.0,505.0,1.0,4.0,586,3.3799999999999994,0.0,0.0,158.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,153.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +590,590,0.0,5867.6,0.0,1603188746.5,149.2537313432836,3.35,0.0,0.0,18.5,572,10.9,0.0,160.0,153.0,-59.0,6.0,46.0,13.0,56.20225618337223,496.2162162162162,113.30374846567841,-26.0,52.2431187,6.8207613,3.35,5867.6,0.0,0.0,5867.6,1825.5,0.0,0.0,0.0,0.0,0.0,3.35,250.00000000000003,504.0,1.0,4.0,587,3.35,0.0,0.0,160.0,160.0,0.0,0.0,142,146,160,167,180,192,0.0,153.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +591,591,0.0,5878.6,0.0,1603188749.6999998,147.92899408284026,3.38,0.0,0.0,18.5,573,11.0,0.0,163.0,153.0,-60.0,6.0,48.0,13.0,58.00072838124014,496.2162162162162,118.69916505928214,-31.0,52.24306970000001,6.8209015,3.38,5878.6,0.0,0.0,5878.6,1828.6999998092651,0.0,0.0,0.0,0.0,0.0,3.38,258.0,528.0,1.0,4.0,588,3.3799999999999994,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,153.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +592,592,0.0,5890.0,0.0,1603188753.1,147.49262536873155,3.39,0.0,0.0,17.5,574,11.4,0.0,166.0,143.0,-60.0,5.0,47.0,14.0,55.30302008443826,490.2857142857143,112.62932139147793,-21.0,52.243019200000006,6.8210474,3.39,5890.0,0.0,0.0,5890.0,1832.0999999046326,0.0,0.0,0.0,0.0,0.0,3.39,246.0,501.00000000000006,1.0,4.0,589,3.39,0.0,0.0,0.0,166.0,0.0,0.0,142,146,160,167,180,192,0.0,143.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +593,593,0.0,5901.4,0.0,1603188756.5,149.2537313432836,3.35,0.0,0.0,18.5,575,11.4,0.0,167.0,142.0,-60.0,6.0,47.0,14.0,53.05492983710339,460.5405405405405,109.03237699574213,-21.0,52.2429702,6.8211947,3.35,5901.4,0.0,0.0,5901.4,1835.5,0.0,0.0,0.0,0.0,0.0,3.35,236.0,485.0,1.0,4.0,590,3.35,0.0,0.0,0.0,167.0,167.0,0.0,142,146,160,167,180,192,0.0,142.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +594,594,0.0,5912.3,0.0,1603188759.6999998,151.9756838905775,3.29,0.0,0.0,18.5,576,10.8,0.0,167.0,142.0,-60.0,6.0,45.0,15.0,53.72935691130385,460.5405405405405,105.4354326000063,-18.0,52.2429213,6.8213322,3.29,5912.3,0.0,0.0,5912.3,1838.6999998092651,0.0,0.0,0.0,0.0,0.0,3.29,239.0,469.0,1.0,4.0,591,3.29,0.0,0.0,0.0,167.0,167.0,0.0,142,146,160,167,180,192,0.0,142.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +595,595,0.0,5923.0,0.0,1603188763.1,151.9756838905775,3.29,0.0,0.0,18.0,577,10.8,0.0,167.0,155.0,-60.0,9.0,48.0,15.0,58.89996448017409,516.6666666666666,118.92397408401564,-26.0,52.2428717,6.8214679,3.29,5923.0,0.0,0.0,5923.0,1842.0999999046326,0.0,0.0,0.0,0.0,0.0,3.29,262.0,529.0,1.0,4.0,592,3.29,0.0,0.0,0.0,167.0,167.0,0.0,142,146,160,167,180,192,0.0,155.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +596,596,0.0,5933.2,0.0,1603188766.1,150.60240963855424,3.32,0.0,0.0,19.5,578,10.2,0.0,167.0,164.0,-59.0,6.0,48.0,13.0,58.22553740597362,504.61538461538464,114.87741163881284,-19.0,52.242823,6.8215939,3.32,5933.2,0.0,0.0,5933.2,1845.0999999046326,0.0,0.0,0.0,0.0,0.0,3.32,259.0,511.0,1.0,4.0,593,3.3199999999999994,0.0,0.0,0.0,167.0,167.0,0.0,142,146,160,167,180,192,0.0,164.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +597,597,0.0,5943.5,0.0,1603188769.1,148.3679525222552,3.37,0.0,0.0,19.0,579,10.3,0.0,167.0,167.0,-60.0,5.0,49.0,14.0,62.272099851176435,527.3684210526316,114.20298456461235,-16.0,52.2427751,6.8217235,3.37,5943.5,0.0,0.0,5943.5,1848.0999999046326,0.0,0.0,0.0,0.0,0.0,3.37,277.0,508.0,1.0,4.0,594,3.37,0.0,0.0,0.0,167.0,167.0,0.0,142,146,160,167,180,192,0.0,167.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +598,598,0.0,5954.8,0.0,1603188772.4,145.7725947521866,3.43,0.0,0.0,18.5,580,11.3,0.0,168.0,165.0,-60.0,6.0,48.0,10.0,62.721717900643405,535.1351351351351,121.396873356084,-24.0,52.2427235,6.8218663,3.43,5954.8,0.0,0.0,5954.8,1851.4000000953674,0.0,0.0,0.0,0.0,0.0,3.43,279.0,540.0,1.0,4.0,595,3.43,0.0,0.0,0.0,0.0,168.0,0.0,142,146,160,167,180,192,0.0,165.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +599,599,0.0,5966.2,0.0,1603188775.6999998,146.19883040935673,3.42,0.0,0.0,19.0,581,11.4,0.0,167.0,162.0,-60.0,6.0,48.0,13.0,58.89996448017409,511.57894736842104,116.22626578721376,-22.0,52.2426712,6.8220100000000015,3.42,5966.2,0.0,0.0,5966.2,1854.6999998092651,0.0,0.0,0.0,0.0,0.0,3.42,262.0,517.0,1.0,4.0,596,3.42,0.0,0.0,0.0,167.0,167.0,0.0,142,146,160,167,180,192,0.0,162.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +600,600,0.0,5976.9,0.0,1603188778.9,147.92899408284026,3.38,0.0,0.0,18.5,582,10.7,0.0,165.0,149.0,-60.0,5.0,48.0,14.0,57.55111033177316,483.2432432432432,107.6835228473412,1.0,52.2426232,6.8221462,3.38,5976.9,0.0,0.0,5976.9,1857.9000000953674,0.0,0.0,0.0,0.0,0.0,3.38,256.0,479.0,1.0,4.0,597,3.3799999999999994,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,149.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +601,601,0.0,5987.5,0.0,1603188782.1,150.60240963855424,3.32,0.0,0.0,18.5,583,10.6,0.0,166.0,150.0,-59.0,7.0,46.0,14.0,59.12477350490758,486.4864864864865,113.97817553987889,-16.0,52.2425738,6.8222798,3.32,5987.5,0.0,0.0,5987.5,1861.0999999046326,0.0,0.0,0.0,0.0,0.0,3.32,263.0,507.0,1.0,4.0,598,3.3199999999999994,0.0,0.0,0.0,166.0,0.0,0.0,142,146,160,167,180,192,0.0,150.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +602,602,0.0,5998.2,0.0,1603188785.3,151.9756838905775,3.29,0.0,0.0,18.5,584,10.6,0.0,167.0,140.0,-59.0,6.0,47.0,14.0,53.50454788657036,454.05405405405406,107.45871382260769,-20.0,52.2425247,6.8224131,3.29,5998.2,0.0,0.0,5998.2,1864.2999999523163,0.0,0.0,0.0,0.0,0.0,3.29,238.0,478.0,1.0,4.0,599,3.29,0.0,0.0,0.0,167.0,167.0,0.0,142,146,160,167,180,192,0.0,140.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +603,603,0.0,6008.7,0.0,1603188788.5,151.9756838905775,3.29,0.0,0.0,18.5,585,10.6,0.0,166.0,146.0,-59.0,6.0,47.0,15.0,55.30302008443826,473.5135135135135,112.40451236674446,-27.0,52.2424736,6.8225434000000025,3.29,6008.7,0.0,0.0,6008.7,1867.5,0.0,0.0,0.0,0.0,0.0,3.29,246.0,500.00000000000006,1.0,4.0,600,3.29,0.0,0.0,0.0,166.0,0.0,0.0,142,146,160,167,180,192,0.0,146.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +604,604,0.0,6019.2,0.0,1603188791.6999998,151.9756838905775,3.29,0.0,0.0,18.5,586,10.5,0.0,164.0,149.0,-59.0,5.0,47.0,14.0,55.30302008443826,483.2432432432432,112.85413041621143,-20.0,52.2424266,6.8226776,3.29,6019.2,0.0,0.0,6019.2,1870.6999998092651,0.0,0.0,0.0,0.0,0.0,3.29,246.0,502.0,1.0,4.0,601,3.29,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,149.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +605,605,0.0,6030.6,0.0,1603188795.1,151.0574018126888,3.31,0.0,0.0,18.5,587,11.3,0.0,163.0,146.0,-59.0,6.0,46.0,15.0,54.40378398550431,473.5135135135135,118.69916505928214,-19.0,52.2423733,6.8228192,3.31,6030.6,0.0,0.0,6030.6,1874.0999999046326,0.0,0.0,0.0,0.0,0.0,3.31,242.0,528.0,1.0,4.0,602,3.3100000000000005,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,146.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +606,606,0.0,6041.4,0.0,1603188798.3,150.15015015015015,3.33,0.0,0.0,18.5,588,10.8,0.0,164.0,140.0,-59.0,8.0,46.0,14.0,52.38050276290291,454.05405405405406,106.10985967420677,-24.0,52.2423252,6.8229566,3.33,6041.4,0.0,0.0,6041.4,1877.2999999523163,0.0,0.0,0.0,0.0,0.0,3.33,233.0,472.0,1.0,4.0,603,3.33,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,140.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +607,607,0.0,6052.0,0.0,1603188801.5,151.9756838905775,3.29,0.0,0.0,18.0,589,10.7,0.0,163.0,130.0,-59.0,7.0,45.0,15.0,51.93088471343594,433.3333333333333,102.06329722900395,-28.0,52.2422726,6.8230878,3.29,6052.0,0.0,0.0,6052.0,1880.5,0.0,0.0,0.0,0.0,0.0,3.29,231.0,454.0,1.0,4.0,604,3.29,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,130.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +608,608,0.0,6062.6,0.0,1603188804.6999998,154.79876160990713,3.23,0.0,0.0,18.5,590,10.6,0.0,163.0,138.0,-59.0,6.0,47.0,15.0,52.605311787636396,447.56756756756755,104.08657845160536,-15.0,52.24222329999999,6.8232209,3.23,6062.6,0.0,0.0,6062.6,1883.6999998092651,0.0,0.0,0.0,0.0,0.0,3.23,234.0,463.0,1.0,4.0,605,3.23,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,138.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +609,609,0.0,6073.4,0.0,1603188808.1,155.2795031055901,3.22,0.0,0.0,18.5,591,10.8,0.0,164.0,141.0,-60.0,5.0,47.0,12.0,53.05492983710339,457.2972972972973,101.3888701548035,3.0,52.242169200000006,6.823352000000001,3.22,6073.4,0.0,0.0,6073.4,1887.0999999046326,0.0,0.0,0.0,0.0,0.0,3.22,236.0,451.0,1.0,4.0,606,3.22,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,141.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +610,610,0.0,6083.5,0.0,1603188811.1,151.9756838905775,3.29,0.0,0.0,18.5,592,10.1,0.0,164.0,150.0,-60.0,8.0,47.0,13.0,54.40378398550431,486.4864864864865,109.2571860204756,-14.0,52.2421167,6.8234724,3.29,6083.5,0.0,0.0,6083.5,1890.0999999046326,0.0,0.0,0.0,0.0,0.0,3.29,242.0,486.0,1.0,4.0,607,3.29,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,150.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +611,611,0.0,6094.5,0.0,1603188814.4,149.70059880239518,3.34,0.0,0.0,19.0,593,11.0,0.0,164.0,158.0,-60.0,7.0,47.0,13.0,58.675155455440596,498.94736842105266,115.77664773774679,-19.0,52.2420614,6.823606,3.34,6094.5,0.0,0.0,6094.5,1893.4000000953674,0.0,0.0,0.0,0.0,0.0,3.34,261.0,515.0,1.0,4.0,608,3.3400000000000007,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,158.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +612,612,0.0,6105.7,0.0,1603188817.6999998,149.70059880239518,3.34,0.0,0.0,18.0,594,11.1,0.0,163.0,146.0,-60.0,6.0,46.0,14.0,54.6285930102378,486.6666666666667,120.04801920768308,-19.0,52.2420024,6.8237386,3.34,6105.7,0.0,0.0,6105.7,1896.6999998092651,0.0,0.0,0.0,0.0,0.0,3.34,243.0,534.0,1.0,4.0,609,3.3400000000000007,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,146.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +613,613,0.0,6116.3,0.0,1603188820.9,151.0574018126888,3.31,0.0,0.0,18.0,595,10.6,0.0,162.0,140.0,-60.0,6.0,46.0,14.0,53.50454788657036,466.6666666666667,106.78428674840723,-15.0,52.2419472,6.8238660000000015,3.31,6116.3,0.0,0.0,6116.3,1899.9000000953674,0.0,0.0,0.0,0.0,0.0,3.31,238.0,475.0,1.0,4.0,610,3.3100000000000005,0.0,0.0,0.0,162.0,0.0,0.0,142,146,160,167,180,192,0.0,140.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +614,614,0.0,6127.3,0.0,1603188824.3,152.9051987767584,3.27,0.0,0.0,18.0,596,11.1,0.0,162.0,149.0,-60.0,7.0,47.0,13.0,56.42706520810572,496.6666666666667,111.730085292544,-14.0,52.2418886,6.8239969,3.27,6127.3,0.0,0.0,6127.3,1903.2999999523163,0.0,0.0,0.0,0.0,0.0,3.27,251.0,497.0,1.0,4.0,611,3.2700000000000005,0.0,0.0,0.0,162.0,0.0,0.0,142,146,160,167,180,192,0.0,149.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +615,615,0.0,6137.9,0.0,1603188827.5,153.84615384615384,3.25,0.0,0.0,18.0,597,10.6,0.0,162.0,139.0,-60.0,7.0,47.0,13.0,53.27973886183686,463.3333333333333,105.4354326000063,-5.0,52.2418343,6.8241238,3.25,6137.9,0.0,0.0,6137.9,1906.5,0.0,0.0,0.0,0.0,0.0,3.25,237.0,469.0,1.0,4.0,612,3.25,0.0,0.0,0.0,162.0,0.0,0.0,142,146,160,167,180,192,0.0,139.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +616,616,0.0,6148.4,0.0,1603188830.6999998,154.32098765432102,3.24,0.0,0.0,18.5,598,10.5,0.0,162.0,150.0,-59.0,7.0,47.0,14.0,56.87668325757269,486.4864864864865,111.730085292544,-15.0,52.2417802,6.8242496,3.24,6148.4,0.0,0.0,6148.4,1909.6999998092651,0.0,0.0,0.0,0.0,0.0,3.24,253.0,497.0,1.0,4.0,613,3.24,0.0,0.0,0.0,162.0,0.0,0.0,142,146,160,167,180,192,0.0,150.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +617,617,0.0,6159.3,0.0,1603188834.1,155.2795031055901,3.22,0.0,0.0,18.0,599,11.0,0.0,163.0,145.0,-59.0,7.0,46.0,14.0,55.752638133905236,483.3333333333333,112.17970334201095,-13.0,52.2417226,6.824380099999999,3.22,6159.3,0.0,0.0,6159.3,1913.0999999046326,0.0,0.0,0.0,0.0,0.0,3.22,248.0,499.00000000000006,1.0,4.0,614,3.22,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,145.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +618,618,0.0,6170.2,0.0,1603188837.5,156.73981191222572,3.19,0.0,0.0,17.5,600,10.9,0.0,163.0,142.0,-58.0,6.0,47.0,15.0,54.85340203497128,486.85714285714283,114.42779358934584,-14.0,52.2416664,6.824511200000001,3.19,6170.2,0.0,0.0,6170.2,1916.5,0.0,0.0,0.0,0.0,0.0,3.19,244.0,509.0,1.0,4.0,615,3.19,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,142.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +619,619,0.0,6180.7,0.0,1603188840.6999998,158.7301587301587,3.15,0.0,0.0,18.0,601,10.5,0.0,160.0,151.0,-60.0,6.0,46.0,13.0,56.42706520810572,503.3333333333333,123.19534555395192,-16.0,52.2416101,6.8246338,3.15,6180.7,0.0,0.0,6180.7,1919.6999998092651,0.0,0.0,0.0,0.0,0.0,3.15,251.0,548.0,1.0,4.0,616,3.1500000000000004,0.0,0.0,160.0,160.0,0.0,0.0,142,146,160,167,180,192,0.0,151.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +620,620,0.0,6191.2,0.0,1603188844.1,157.7287066246057,3.17,0.0,0.0,18.0,602,10.5,0.0,164.0,149.0,-60.0,7.0,47.0,16.0,58.89996448017409,496.6666666666667,118.69916505928214,-24.0,52.24155620000001,6.824761099999999,3.17,6191.2,0.0,0.0,6191.2,1923.0999999046326,0.0,0.0,0.0,0.0,0.0,3.17,262.0,528.0,1.0,4.0,617,3.1699999999999995,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,149.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +621,621,0.0,6202.7,0.0,1603188847.5,153.3742331288344,3.26,0.0,0.0,17.5,603,11.4,0.0,165.0,137.0,-58.0,6.0,46.0,15.0,55.52782910917176,469.7142857142857,115.3270296882798,-17.0,52.2414968,6.8248979000000025,3.26,6202.7,0.0,0.0,6202.7,1926.5,0.0,0.0,0.0,0.0,0.0,3.26,247.0,513.0,1.0,4.0,618,3.26,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,137.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +622,622,0.0,6213.1,0.0,1603188850.6999998,152.4390243902439,3.28,0.0,0.0,18.0,604,10.4,0.0,165.0,138.0,-60.0,8.0,47.0,15.0,54.85340203497128,460.0,111.280467243077,-22.0,52.24144310000001,6.825023,3.28,6213.1,0.0,0.0,6213.1,1929.6999998092651,0.0,0.0,0.0,0.0,0.0,3.28,244.0,495.0,1.0,4.0,619,3.28,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,138.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +623,623,0.0,6223.8,0.0,1603188854.1,155.76323987538942,3.21,0.0,0.0,18.0,605,10.7,0.0,166.0,132.0,-60.0,8.0,48.0,17.0,52.605311787636396,440.0,102.28810625373742,-17.0,52.2413894,6.825153500000001,3.21,6223.8,0.0,0.0,6223.8,1933.0999999046326,0.0,0.0,0.0,0.0,0.0,3.21,234.0,455.0,1.0,4.0,620,3.21,0.0,0.0,0.0,166.0,0.0,0.0,142,146,160,167,180,192,0.0,132.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +624,624,0.0,6234.7,0.0,1603188857.5,156.25,3.2,0.0,0.0,18.0,606,10.9,0.0,165.0,130.0,-60.0,6.0,47.0,14.0,52.15569373816943,433.3333333333333,98.24154380853464,-8.0,52.2413299,6.8252803,3.2,6234.7,0.0,0.0,6234.7,1936.5,0.0,0.0,0.0,0.0,0.0,3.2,232.0,437.0,1.0,4.0,621,3.2,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,130.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +625,625,0.0,6244.3,0.0,1603188860.5,156.25,3.2,0.0,0.0,19.0,607,9.6,0.0,164.0,146.0,-58.0,8.0,47.0,14.0,54.6285930102378,461.05263157894734,113.07893944094492,-16.0,52.2412766,6.8253919000000005,3.2,6244.3,0.0,0.0,6244.3,1939.5,0.0,0.0,0.0,0.0,0.0,3.2,243.0,503.0,1.0,4.0,622,3.2,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,146.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +626,626,0.0,6255.2,0.0,1603188863.9,156.73981191222572,3.19,0.0,0.0,18.5,608,10.8,0.0,163.0,145.0,-59.0,6.0,46.0,15.0,54.178974960770816,470.27027027027026,117.35031091088119,-15.0,52.241216,6.825516,3.19,6255.2,0.0,0.0,6255.2,1942.9000000953674,0.0,0.0,0.0,0.0,0.0,3.19,241.0,522.0,1.0,4.0,623,3.19,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,145.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +627,627,0.0,6265.6,0.0,1603188867.1,155.76323987538942,3.21,0.0,0.0,18.0,609,10.4,0.0,163.0,143.0,-59.0,7.0,46.0,13.0,55.07821105970478,476.6666666666667,108.13314089680814,-14.0,52.2411558,6.8256324999999975,3.21,6265.6,0.0,0.0,6265.6,1946.0999999046326,0.0,0.0,0.0,0.0,0.0,3.21,245.0,481.0,1.0,4.0,624,3.21,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,143.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +628,628,0.0,6276.3,0.0,1603188870.5,156.73981191222572,3.19,0.0,0.0,18.0,610,10.7,0.0,164.0,151.0,-60.0,6.0,46.0,13.0,57.775919356506655,503.3333333333333,114.20298456461235,-19.0,52.2410927,6.8257518,3.19,6276.3,0.0,0.0,6276.3,1949.5,0.0,0.0,0.0,0.0,0.0,3.19,257.0,508.0,1.0,4.0,625,3.19,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,151.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +629,629,0.0,6286.7,0.0,1603188873.6999998,158.7301587301587,3.15,0.0,0.0,18.5,611,10.3,0.0,164.0,160.0,-60.0,7.0,48.0,13.0,62.272099851176435,518.918918918919,114.65260261407934,-30.0,52.241031,6.8258655,3.15,6286.7,0.0,0.0,6286.7,1952.6999998092651,0.0,0.0,0.0,0.0,0.0,3.15,277.0,510.0,1.0,4.0,626,3.1500000000000004,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,160.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +630,630,0.0,6297.2,0.0,1603188877.1,157.23270440251568,3.18,0.0,0.0,18.0,612,10.6,0.0,165.0,156.0,-60.0,7.0,47.0,14.0,60.698436678042,520.0,117.12550188614773,-27.0,52.2409674,6.825980499999999,3.18,6297.2,0.0,0.0,6297.2,1956.0999999046326,0.0,0.0,0.0,0.0,0.0,3.18,270.0,521.0,1.0,4.0,627,3.180000000000001,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,156.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +631,631,0.0,6308.4,0.0,1603188880.4,152.9051987767584,3.27,0.0,0.0,17.5,613,11.1,0.0,165.0,144.0,-59.0,6.0,47.0,13.0,56.87668325757269,493.7142857142857,113.97817553987889,-28.0,52.2408993,6.826100500000001,3.27,6308.4,0.0,0.0,6308.4,1959.4000000953674,0.0,0.0,0.0,0.0,0.0,3.27,253.0,507.0,1.0,4.0,628,3.2700000000000005,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,144.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +632,632,0.0,6319.4,0.0,1603188883.6999998,150.15015015015015,3.33,0.0,0.0,18.0,614,11.0,0.0,164.0,147.0,-60.0,7.0,47.0,13.0,56.42706520810572,490.0,116.22626578721376,-30.0,52.2408297,6.8262156,3.33,6319.4,0.0,0.0,6319.4,1962.6999998092651,0.0,0.0,0.0,0.0,0.0,3.33,251.0,517.0,1.0,4.0,629,3.33,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,147.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +633,633,0.0,6330.8,0.0,1603188887.1,150.60240963855424,3.32,0.0,0.0,18.0,615,11.4,0.0,164.0,153.0,-60.0,6.0,48.0,14.0,61.14805472750896,510.0,116.90069286141424,-14.0,52.2407576,6.826333999999999,3.32,6330.8,0.0,0.0,6330.8,1966.0999999046326,0.0,0.0,0.0,0.0,0.0,3.32,272.0,520.0,1.0,4.0,630,3.3199999999999994,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,153.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +634,634,0.0,6342.2,0.0,1603188890.5,151.0574018126888,3.31,0.0,0.0,17.5,616,11.4,0.0,165.0,147.0,-61.0,7.0,49.0,12.0,57.32630130703967,504.0,106.78428674840723,2.0,52.2406869,6.826454300000001,3.31,6342.2,0.0,0.0,6342.2,1969.5,0.0,0.0,0.0,0.0,0.0,3.31,255.0,475.0,1.0,4.0,631,3.3100000000000005,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,147.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +635,635,0.0,6352.0,0.0,1603188893.5,152.4390243902439,3.28,0.0,0.0,19.0,617,9.9,0.0,165.0,166.0,-60.0,6.0,47.0,14.0,59.574391554374564,524.2105263157895,121.17206433135051,-16.0,52.2406258,6.826559,3.28,6352.0,0.0,0.0,6352.0,1972.5,0.0,0.0,0.0,0.0,0.0,3.28,265.0,539.0,1.0,4.0,632,3.28,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,166.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +636,636,0.0,6362.4,0.0,1603188896.6999998,153.3742331288344,3.26,0.0,0.0,18.5,618,10.4,0.0,164.0,160.0,-60.0,7.0,47.0,13.0,58.675155455440596,518.918918918919,118.47435603454865,-21.0,52.2405649,6.8266753,3.26,6362.4,0.0,0.0,6362.4,1975.6999998092651,0.0,0.0,0.0,0.0,0.0,3.26,261.0,527.0,1.0,4.0,633,3.26,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,160.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +637,637,0.0,6373.2,0.0,1603188899.9,152.4390243902439,3.28,0.0,0.0,18.5,619,10.8,0.0,165.0,155.0,-60.0,7.0,48.0,13.0,58.22553740597362,502.7027027027027,117.79992896034818,-22.0,52.2405017,6.826794900000001,3.28,6373.2,0.0,0.0,6373.2,1978.9000000953674,0.0,0.0,0.0,0.0,0.0,3.28,259.0,524.0,1.0,4.0,634,3.28,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,155.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +638,638,0.0,6384.4,0.0,1603188903.3,151.0574018126888,3.31,0.0,0.0,18.0,620,11.2,0.0,163.0,153.0,-60.0,7.0,47.0,14.0,59.574391554374564,510.0,117.12550188614773,-17.0,52.24043820000001,6.8269229000000005,3.31,6384.4,0.0,0.0,6384.4,1982.2999999523163,0.0,0.0,0.0,0.0,0.0,3.31,265.0,521.0,1.0,4.0,635,3.3100000000000005,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,153.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +639,639,0.0,6395.2,0.0,1603188906.5,152.4390243902439,3.28,0.0,0.0,18.5,621,10.8,0.0,161.0,148.0,-60.0,6.0,47.0,14.0,56.87668325757269,480.0,116.90069286141424,-18.0,52.2403751,6.8270427,3.28,6395.2,0.0,0.0,6395.2,1985.5,0.0,0.0,0.0,0.0,0.0,3.28,253.0,520.0,1.0,4.0,636,3.28,0.0,0.0,0.0,161.0,0.0,0.0,142,146,160,167,180,192,0.0,148.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +640,640,0.0,6406.3,0.0,1603188910.1999998,154.32098765432102,3.24,0.0,0.0,18.0,622,11.1,0.0,161.0,146.0,-59.0,6.0,48.0,15.0,57.55111033177316,486.6666666666667,113.97817553987889,-16.0,52.2403123,6.8271693,3.24,6406.3,0.0,0.0,6406.3,1989.1999998092651,0.0,0.0,0.0,0.0,0.0,3.24,256.0,507.0,1.0,4.0,637,3.24,0.0,0.0,0.0,161.0,0.0,0.0,142,146,160,167,180,192,0.0,146.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +641,641,0.0,6416.6,0.0,1603188913.1999998,154.32098765432102,3.24,0.0,0.0,17.5,623,10.3,0.0,159.0,142.0,-59.0,6.0,47.0,13.0,56.42706520810572,486.85714285714283,118.47435603454865,-20.0,52.2402536,6.8272852,3.24,6416.6,0.0,0.0,6416.6,1992.1999998092651,0.0,0.0,0.0,0.0,0.0,3.24,251.0,527.0,1.0,4.0,638,3.24,0.0,0.0,159.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,142.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +642,642,0.0,6428.1,0.0,1603188916.5,152.4390243902439,3.28,0.0,0.0,18.0,624,11.5,0.0,160.0,147.0,-59.0,6.0,48.0,15.0,55.752638133905236,490.0,112.85413041621143,-23.0,52.2401884,6.8274164000000015,3.28,6428.1,0.0,0.0,6428.1,1995.5,0.0,0.0,0.0,0.0,0.0,3.28,248.0,502.0,1.0,4.0,639,3.28,0.0,0.0,160.0,160.0,0.0,0.0,142,146,160,167,180,192,0.0,147.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +643,643,0.0,6438.8,0.0,1603188919.6999998,151.0574018126888,3.31,0.0,0.0,18.0,625,10.7,0.0,163.0,139.0,-59.0,6.0,46.0,15.0,54.40378398550431,463.3333333333333,108.13314089680814,-21.0,52.24012620000001,6.8275364000000005,3.31,6438.8,0.0,0.0,6438.8,1998.6999998092651,0.0,0.0,0.0,0.0,0.0,3.31,242.0,481.0,1.0,4.0,640,3.3100000000000005,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,139.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +644,644,0.0,6449.8,0.0,1603188923.1,151.9756838905775,3.29,0.0,0.0,18.5,626,11.0,0.0,165.0,152.0,-59.0,6.0,48.0,14.0,56.42706520810572,492.97297297297297,115.55183871301331,-18.0,52.2400636,6.8276607999999985,3.29,6449.8,0.0,0.0,6449.8,2002.0999999046326,0.0,0.0,0.0,0.0,0.0,3.29,251.0,514.0,1.0,4.0,641,3.29,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,152.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +645,645,0.0,6460.2,0.0,1603188926.3,153.3742331288344,3.26,0.0,0.0,18.0,627,10.4,0.0,165.0,143.0,-59.0,6.0,47.0,13.0,55.52782910917176,476.6666666666667,110.83084919361002,-19.0,52.2400015,6.827775,3.26,6460.2,0.0,0.0,6460.2,2005.2999999523163,0.0,0.0,0.0,0.0,0.0,3.26,247.0,493.0,1.0,4.0,642,3.26,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,143.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +646,646,0.0,6471.1,0.0,1603188929.6999998,153.3742331288344,3.26,0.0,0.0,18.0,628,10.9,0.0,165.0,140.0,-59.0,6.0,48.0,17.0,56.42706520810572,466.6666666666667,108.13314089680814,-31.0,52.2399356,6.8278934000000016,3.26,6471.1,0.0,0.0,6471.1,2008.6999998092651,0.0,0.0,0.0,0.0,0.0,3.26,251.0,481.0,1.0,4.0,643,3.26,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,140.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +647,647,0.0,6482.4,0.0,1603188933.1,153.3742331288344,3.26,0.0,0.0,17.5,629,11.3,0.0,163.0,131.0,-58.0,6.0,47.0,13.0,51.70607568870245,449.14285714285717,106.33466869894023,-17.0,52.2398691,6.8280182,3.26,6482.4,0.0,0.0,6482.4,2012.0999999046326,0.0,0.0,0.0,0.0,0.0,3.26,230.0,473.0,1.0,4.0,644,3.26,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,131.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +648,648,0.0,6493.8,0.0,1603188936.5,152.4390243902439,3.28,0.0,0.0,18.0,630,11.4,0.0,163.0,137.0,-58.0,6.0,48.0,16.0,56.87668325757269,456.6666666666667,105.66024162473978,-22.0,52.23980020000001,6.828142,3.28,6493.8,0.0,0.0,6493.8,2015.5,0.0,0.0,0.0,0.0,0.0,3.28,253.0,470.0,1.0,4.0,645,3.28,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,137.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +649,649,0.0,6504.5,0.0,1603188939.6999998,152.9051987767584,3.27,0.0,0.0,18.0,631,10.8,0.0,163.0,132.0,-59.0,6.0,46.0,14.0,51.70607568870245,440.0,104.53619650107237,-11.0,52.239735,6.8282584,3.27,6504.5,0.0,0.0,6504.5,2018.6999998092651,0.0,0.0,0.0,0.0,0.0,3.27,230.0,465.0,1.0,4.0,646,3.2700000000000005,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,132.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +650,650,0.0,6515.2,0.0,1603188943.1999998,154.79876160990713,3.23,0.0,0.0,18.0,632,10.6,0.0,163.0,139.0,-58.0,6.0,47.0,16.0,56.42706520810572,463.3333333333333,104.31138747633885,-14.0,52.2396701,6.8283726,3.23,6515.2,0.0,0.0,6515.2,2022.1999998092651,0.0,0.0,0.0,0.0,0.0,3.23,251.0,464.0,1.0,4.0,647,3.23,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,139.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +651,651,0.0,6526.4,0.0,1603188946.4,152.9051987767584,3.27,0.0,0.0,17.5,633,11.2,0.0,162.0,131.0,-59.0,7.0,49.0,17.0,52.15569373816943,449.14285714285717,102.06329722900395,-16.0,52.2395975,6.8284868,3.27,6526.4,0.0,0.0,6526.4,2025.4000000953674,0.0,0.0,0.0,0.0,0.0,3.27,232.0,454.0,1.0,4.0,648,3.2700000000000005,0.0,0.0,0.0,162.0,0.0,0.0,142,146,160,167,180,192,0.0,131.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +652,652,0.0,6537.3,0.0,1603188949.6999998,151.9756838905775,3.29,0.0,0.0,18.0,634,10.9,0.0,163.0,154.0,-60.0,7.0,48.0,13.0,62.49690887590992,513.3333333333334,115.10222066354632,-21.0,52.2395277,6.828599900000001,3.29,6537.3,0.0,0.0,6537.3,2028.6999998092651,0.0,0.0,0.0,0.0,0.0,3.29,278.0,512.0,1.0,4.0,649,3.29,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,154.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +653,653,0.0,6548.4,0.0,1603188953.1,152.9051987767584,3.27,0.0,0.0,17.5,635,11.1,0.0,165.0,155.0,-60.0,6.0,47.0,12.0,60.02400960384154,531.4285714285714,118.24954700981516,-14.0,52.239456,6.8287122,3.27,6548.4,0.0,0.0,6548.4,2032.0999999046326,0.0,0.0,0.0,0.0,0.0,3.27,267.0,526.0,1.0,4.0,650,3.2700000000000005,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,155.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +654,654,0.0,6559.7,0.0,1603188956.5,151.9756838905775,3.29,0.0,0.0,18.0,636,11.3,0.0,165.0,154.0,-60.0,6.0,48.0,13.0,58.22553740597362,513.3333333333334,116.22626578721376,-17.0,52.2393813,6.8288252000000025,3.29,6559.7,0.0,0.0,6559.7,2035.5,0.0,0.0,0.0,0.0,0.0,3.29,259.0,517.0,1.0,4.0,651,3.29,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,154.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +655,655,0.0,6571.0,0.0,1603188959.9,151.0574018126888,3.31,0.0,0.0,17.5,637,11.2,0.0,165.0,153.0,-60.0,6.0,48.0,12.0,59.574391554374564,524.5714285714286,114.65260261407934,-30.0,52.239307200000006,6.8289372,3.31,6571.0,0.0,0.0,6571.0,2038.9000000953674,0.0,0.0,0.0,0.0,0.0,3.31,265.0,510.0,1.0,4.0,652,3.3100000000000005,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,153.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +656,656,0.0,6581.7,0.0,1603188963.1,151.9756838905775,3.29,0.0,0.0,18.0,638,10.7,0.0,166.0,160.0,-60.0,6.0,49.0,12.0,58.22553740597362,533.3333333333334,116.90069286141424,-23.0,52.23923720000001,6.829045,3.29,6581.7,0.0,0.0,6581.7,2042.0999999046326,0.0,0.0,0.0,0.0,0.0,3.29,259.0,520.0,1.0,4.0,653,3.29,0.0,0.0,0.0,166.0,0.0,0.0,142,146,160,167,180,192,0.0,160.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +657,657,0.0,6592.8,0.0,1603188966.5,151.9756838905775,3.29,0.0,0.0,18.5,639,11.1,0.0,166.0,155.0,-60.0,7.0,47.0,12.0,57.55111033177316,502.7027027027027,116.67588383668074,-15.0,52.2391674,6.8291613,3.29,6592.8,0.0,0.0,6592.8,2045.5,0.0,0.0,0.0,0.0,0.0,3.29,256.0,519.0,1.0,4.0,654,3.29,0.0,0.0,0.0,166.0,0.0,0.0,142,146,160,167,180,192,0.0,155.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +658,658,0.0,6603.5,0.0,1603188969.6999998,153.3742331288344,3.26,0.0,0.0,18.0,640,10.8,0.0,166.0,157.0,-60.0,7.0,48.0,13.0,58.45034643070712,523.3333333333334,119.59840115821608,-19.0,52.2390979,6.8292711,3.26,6603.5,0.0,0.0,6603.5,2048.699999809265,0.0,0.0,0.0,0.0,0.0,3.26,260.0,532.0,1.0,4.0,655,3.26,0.0,0.0,0.0,166.0,0.0,0.0,142,146,160,167,180,192,0.0,157.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +659,659,0.0,6614.2,0.0,1603188973.1999998,154.79876160990713,3.23,0.0,0.0,18.0,641,10.7,0.0,165.0,139.0,-60.0,6.0,49.0,14.0,54.40378398550431,463.3333333333333,102.06329722900395,1.0,52.2390299,6.8293819,3.23,6614.2,0.0,0.0,6614.2,2052.199999809265,0.0,0.0,0.0,0.0,0.0,3.23,242.0,454.0,1.0,4.0,656,3.23,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,139.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +660,660,0.0,6624.8,0.0,1603188976.3,153.3742331288344,3.26,0.0,0.0,18.0,642,10.5,0.0,165.0,154.0,-59.0,6.0,47.0,12.0,56.87668325757269,513.3333333333334,115.10222066354632,-20.0,52.2389625,6.8294905,3.26,6624.8,0.0,0.0,6624.8,2055.2999999523163,0.0,0.0,0.0,0.0,0.0,3.26,253.0,512.0,1.0,4.0,657,3.26,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,154.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +661,661,0.0,6636.4,0.0,1603188979.6999998,150.60240963855424,3.32,0.0,0.0,18.0,643,11.7,0.0,166.0,151.0,-59.0,5.0,48.0,13.0,60.698436678042,503.3333333333333,113.07893944094492,-22.0,52.2388888,6.829612400000001,3.32,6636.4,0.0,0.0,6636.4,2058.699999809265,0.0,0.0,0.0,0.0,0.0,3.32,270.0,503.0,1.0,4.0,658,3.3199999999999994,0.0,0.0,0.0,166.0,0.0,0.0,142,146,160,167,180,192,0.0,151.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +662,662,0.0,6647.2,0.0,1603188982.9,150.15015015015015,3.33,0.0,0.0,18.0,644,10.7,0.0,166.0,154.0,-60.0,6.0,48.0,14.0,57.32630130703967,513.3333333333334,112.85413041621143,-16.0,52.23882070000001,6.8297233,3.33,6647.2,0.0,0.0,6647.2,2061.9000000953674,0.0,0.0,0.0,0.0,0.0,3.33,255.0,502.0,1.0,4.0,659,3.33,0.0,0.0,0.0,166.0,0.0,0.0,142,146,160,167,180,192,0.0,154.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +663,663,0.0,6658.5,0.0,1603188986.3,150.60240963855424,3.32,0.0,0.0,18.0,645,11.4,0.0,165.0,146.0,-60.0,8.0,48.0,14.0,56.87668325757269,486.6666666666667,113.7533665151454,-29.0,52.2387485,6.8298416,3.32,6658.5,0.0,0.0,6658.5,2065.2999999523163,0.0,0.0,0.0,0.0,0.0,3.32,253.0,506.0,1.0,4.0,660,3.3199999999999994,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,146.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +664,664,0.0,6669.2,0.0,1603188989.5,150.60240963855424,3.32,0.0,0.0,18.0,646,10.7,0.0,164.0,155.0,-59.0,6.0,48.0,14.0,58.45034643070712,516.6666666666666,121.396873356084,-18.0,52.2386811,6.8299536,3.32,6669.2,0.0,0.0,6669.2,2068.5,0.0,0.0,0.0,0.0,0.0,3.32,260.0,540.0,1.0,4.0,661,3.3199999999999994,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,155.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +665,665,0.0,6680.4,0.0,1603188992.9,151.51515151515153,3.3,0.0,0.0,18.0,647,11.1,0.0,163.0,150.0,-59.0,6.0,47.0,13.0,56.87668325757269,500.0,116.22626578721376,-27.0,52.2386118,6.8300709,3.3,6680.4,0.0,0.0,6680.4,2071.9000000953674,0.0,0.0,0.0,0.0,0.0,3.3,253.0,517.0,1.0,4.0,662,3.3,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,150.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +666,666,0.0,6691.5,0.0,1603188996.3,151.9756838905775,3.29,0.0,0.0,18.0,648,11.2,0.0,160.0,152.0,-60.0,7.0,48.0,13.0,59.574391554374564,506.6666666666667,119.37359213348259,-14.0,52.2385403,6.8301856,3.29,6691.5,0.0,0.0,6691.5,2075.2999999523163,0.0,0.0,0.0,0.0,0.0,3.29,265.0,531.0,1.0,4.0,663,3.29,0.0,0.0,160.0,160.0,0.0,0.0,142,146,160,167,180,192,0.0,152.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +667,667,0.0,6702.3,0.0,1603188999.5,153.3742331288344,3.26,0.0,0.0,18.0,649,10.8,0.0,158.0,140.0,-60.0,8.0,46.0,14.0,56.20225618337223,466.6666666666667,118.24954700981516,-21.0,52.2384718,6.8302967999999975,3.26,6702.3,0.0,0.0,6702.3,2078.5,0.0,0.0,0.0,0.0,0.0,3.26,250.00000000000003,526.0,1.0,4.0,664,3.26,0.0,0.0,158.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,140.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +668,668,0.0,6713.4,0.0,1603189003.1999998,155.2795031055901,3.22,0.0,0.0,17.5,650,11.1,0.0,161.0,150.0,-59.0,5.0,48.0,13.0,57.55111033177316,514.2857142857143,116.22626578721376,-17.0,52.2384003,6.8304103000000005,3.22,6713.4,0.0,0.0,6713.4,2082.199999809265,0.0,0.0,0.0,0.0,0.0,3.22,256.0,517.0,1.0,4.0,665,3.22,0.0,0.0,0.0,161.0,0.0,0.0,142,146,160,167,180,192,0.0,150.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +669,669,0.0,6723.6,0.0,1603189006.1999998,154.32098765432102,3.24,0.0,0.0,18.5,651,10.3,0.0,161.0,140.0,-59.0,6.0,45.0,14.0,56.20225618337223,454.05405405405406,111.730085292544,-17.0,52.23833320000001,6.8305135,3.24,6723.6,0.0,0.0,6723.6,2085.199999809265,0.0,0.0,0.0,0.0,0.0,3.24,250.00000000000003,497.0,1.0,4.0,666,3.24,0.0,0.0,0.0,161.0,0.0,0.0,142,146,160,167,180,192,0.0,140.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +670,670,0.0,6735.0,0.0,1603189009.5,152.4390243902439,3.28,0.0,0.0,18.0,652,11.4,0.0,162.0,141.0,-59.0,8.0,48.0,15.0,60.92324570277549,470.0,111.730085292544,-18.0,52.2382593,6.830628699999999,3.28,6735.0,0.0,0.0,6735.0,2088.5,0.0,0.0,0.0,0.0,0.0,3.28,271.0,497.0,1.0,4.0,667,3.28,0.0,0.0,0.0,162.0,0.0,0.0,142,146,160,167,180,192,0.0,141.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +671,671,0.0,6746.1,0.0,1603189012.9,152.9051987767584,3.27,0.0,0.0,18.0,653,11.1,0.0,162.0,151.0,-59.0,6.0,47.0,14.0,63.39614497484386,503.3333333333333,114.42779358934584,-28.0,52.2381862,6.8307403,3.27,6746.1,0.0,0.0,6746.1,2091.9000000953674,0.0,0.0,0.0,0.0,0.0,3.27,282.0,509.0,1.0,4.0,668,3.2700000000000005,0.0,0.0,0.0,162.0,0.0,0.0,142,146,160,167,180,192,0.0,151.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +672,672,0.0,6756.9,0.0,1603189016.1,152.4390243902439,3.28,0.0,0.0,17.5,654,10.7,0.0,164.0,160.0,-60.0,7.0,48.0,12.0,64.9698081479783,548.5714285714286,120.49763725715005,-17.0,52.238115,6.830846000000001,3.28,6756.9,0.0,0.0,6756.9,2095.0999999046326,0.0,0.0,0.0,0.0,0.0,3.28,289.00000000000006,536.0,1.0,4.0,669,3.28,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,160.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +673,673,0.0,6767.8,0.0,1603189019.5,151.51515151515153,3.3,0.0,0.0,18.0,655,11.0,0.0,164.0,148.0,-61.0,9.0,46.0,13.0,58.89996448017409,493.3333333333333,119.14878310874913,-27.0,52.2380433,6.8309569,3.3,6767.8,0.0,0.0,6767.8,2098.5,0.0,0.0,0.0,0.0,0.0,3.3,262.0,530.0,1.0,4.0,670,3.3,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,148.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +674,674,0.0,6779.0,0.0,1603189022.9,152.4390243902439,3.28,0.0,0.0,17.5,656,11.2,0.0,164.0,152.0,-60.0,6.0,47.0,14.0,61.82248180170944,521.1428571428571,116.67588383668074,-15.0,52.2379692,6.8310675000000005,3.28,6779.0,0.0,0.0,6779.0,2101.9000000953674,0.0,0.0,0.0,0.0,0.0,3.28,275.0,519.0,1.0,4.0,671,3.28,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,152.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +675,675,0.0,6790.2,0.0,1603189026.3,153.3742331288344,3.26,0.0,0.0,18.0,657,11.2,0.0,165.0,145.0,-59.0,8.0,47.0,13.0,60.4736276533085,483.3333333333333,113.30374846567841,-25.0,52.2378945,6.831177499999999,3.26,6790.2,0.0,0.0,6790.2,2105.2999999523163,0.0,0.0,0.0,0.0,0.0,3.26,269.0,504.0,1.0,4.0,672,3.26,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,145.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +676,676,0.0,6801.5,0.0,1603189029.6999998,152.9051987767584,3.27,0.0,0.0,18.0,658,11.3,0.0,164.0,152.0,-59.0,6.0,48.0,12.0,59.574391554374564,506.6666666666667,115.55183871301331,0.0,52.23781810000001,6.8312869,3.27,6801.5,0.0,0.0,6801.5,2108.699999809265,0.0,0.0,0.0,0.0,0.0,3.27,265.0,514.0,1.0,4.0,673,3.2700000000000005,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,152.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +677,677,0.0,6811.4,0.0,1603189032.6999998,154.79876160990713,3.23,0.0,0.0,18.5,659,9.9,0.0,163.0,157.0,-58.0,6.0,49.0,14.0,61.82248180170944,509.18918918918916,114.20298456461235,-19.0,52.237752,6.8313834,3.23,6811.4,0.0,0.0,6811.4,2111.699999809265,0.0,0.0,0.0,0.0,0.0,3.23,275.0,508.0,1.0,4.0,674,3.23,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,157.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +678,678,0.0,6821.9,0.0,1603189036.1999998,155.76323987538942,3.21,0.0,0.0,18.0,660,10.5,0.0,165.0,151.0,-60.0,8.0,48.0,13.0,60.4736276533085,503.3333333333333,119.59840115821608,-23.0,52.2376823,6.831486999999999,3.21,6821.9,0.0,0.0,6821.9,2115.199999809265,0.0,0.0,0.0,0.0,0.0,3.21,269.0,532.0,1.0,4.0,675,3.21,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,151.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +679,679,0.0,6832.9,0.0,1603189039.4,153.84615384615384,3.25,0.0,0.0,18.0,661,11.0,0.0,165.0,148.0,-60.0,7.0,47.0,12.0,57.32630130703967,493.3333333333333,119.82321018294958,-22.0,52.237611,6.831598599999999,3.25,6832.9,0.0,0.0,6832.9,2118.4000000953674,0.0,0.0,0.0,0.0,0.0,3.25,255.0,533.0,1.0,4.0,676,3.25,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,148.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +680,680,0.0,6843.8,0.0,1603189042.6999998,152.9051987767584,3.27,0.0,0.0,18.0,662,10.9,0.0,164.0,147.0,-59.0,6.0,49.0,16.0,55.52782910917176,490.0,115.3270296882798,-17.0,52.2375411,6.831710799999999,3.27,6843.8,0.0,0.0,6843.8,2121.699999809265,0.0,0.0,0.0,0.0,0.0,3.27,247.0,513.0,1.0,4.0,677,3.2700000000000005,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,147.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +681,681,0.0,6855.0,0.0,1603189046.1,152.9051987767584,3.27,0.0,0.0,18.0,663,11.2,0.0,164.0,146.0,-59.0,6.0,47.0,14.0,54.85340203497128,486.6666666666667,113.30374846567841,-17.0,52.2374677,6.8318239,3.27,6855.0,0.0,0.0,6855.0,2125.0999999046326,0.0,0.0,0.0,0.0,0.0,3.27,244.0,504.0,1.0,4.0,678,3.2700000000000005,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,146.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +682,682,0.0,6866.1,0.0,1603189049.5,153.3742331288344,3.26,0.0,0.0,17.5,664,11.1,0.0,164.0,161.0,-60.0,8.0,49.0,15.0,66.31866229637922,552.0,123.64496360341889,-15.0,52.2373953,6.8319348,3.26,6866.1,0.0,0.0,6866.1,2128.5,0.0,0.0,0.0,0.0,0.0,3.26,295.0,550.0,1.0,4.0,679,3.26,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,161.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +683,683,0.0,6876.6,0.0,1603189052.6999998,153.3742331288344,3.26,0.0,0.0,18.0,665,10.6,0.0,163.0,159.0,-60.0,6.0,47.0,11.0,67.44270742004667,530.0,120.04801920768308,-11.0,52.2373273,6.8320429,3.26,6876.6,0.0,0.0,6876.6,2131.699999809265,0.0,0.0,0.0,0.0,0.0,3.26,300.0,534.0,1.0,4.0,680,3.26,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,159.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +684,684,0.0,6887.9,0.0,1603189056.1,152.9051987767584,3.27,0.0,0.0,18.5,666,11.2,0.0,164.0,161.0,-59.0,6.0,49.0,13.0,63.39614497484386,522.1621621621622,117.12550188614773,-20.0,52.237253,6.832153900000002,3.27,6887.9,0.0,0.0,6887.9,2135.0999999046326,0.0,0.0,0.0,0.0,0.0,3.27,282.0,521.0,1.0,4.0,681,3.2700000000000005,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,161.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +685,685,0.0,6898.5,0.0,1603189059.3,151.9756838905775,3.29,0.0,0.0,18.0,667,10.6,0.0,164.0,153.0,-60.0,7.0,47.0,13.0,60.02400960384154,510.0,121.84649140555098,-16.0,52.2371846,6.8322621,3.29,6898.5,0.0,0.0,6898.5,2138.2999999523163,0.0,0.0,0.0,0.0,0.0,3.29,267.0,542.0,1.0,4.0,682,3.29,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,153.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +686,686,0.0,6909.0,0.0,1603189062.5,153.3742331288344,3.26,0.0,0.0,18.5,668,10.6,0.0,163.0,156.0,-60.0,6.0,48.0,12.0,58.89996448017409,505.94594594594594,116.45107481194724,-2.0,52.23711760000001,6.8323724000000015,3.26,6909.0,0.0,0.0,6909.0,2141.5,0.0,0.0,0.0,0.0,0.0,3.26,262.0,518.0,1.0,4.0,683,3.26,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,156.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +687,687,0.0,6919.9,0.0,1603189066.1999998,156.73981191222572,3.19,0.0,0.0,18.5,669,10.9,0.0,162.0,155.0,-59.0,6.0,47.0,12.0,62.04729082644294,502.7027027027027,114.65260261407934,-23.0,52.2370477,6.8324832,3.19,6919.9,0.0,0.0,6919.9,2145.199999809265,0.0,0.0,0.0,0.0,0.0,3.19,276.0,510.0,1.0,4.0,684,3.19,0.0,0.0,0.0,162.0,0.0,0.0,142,146,160,167,180,192,0.0,155.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +688,688,0.0,6929.9,0.0,1603189069.1999998,156.73981191222572,3.19,0.0,0.0,18.0,670,10.1,0.0,160.0,145.0,-60.0,8.0,47.0,15.0,55.752638133905236,483.3333333333333,121.84649140555098,-19.0,52.2369835,6.832586900000001,3.19,6929.9,0.0,0.0,6929.9,2148.199999809265,0.0,0.0,0.0,0.0,0.0,3.19,248.0,542.0,1.0,4.0,685,3.19,0.0,0.0,160.0,160.0,0.0,0.0,142,146,160,167,180,192,0.0,145.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +689,689,0.0,6940.7,0.0,1603189072.4,154.32098765432102,3.24,0.0,0.0,18.0,671,10.8,0.0,162.0,151.0,-59.0,6.0,47.0,12.0,58.00072838124014,503.3333333333333,115.55183871301331,-12.0,52.2369146,6.8326983,3.24,6940.7,0.0,0.0,6940.7,2151.4000000953674,0.0,0.0,0.0,0.0,0.0,3.24,258.0,514.0,1.0,4.0,686,3.24,0.0,0.0,0.0,162.0,0.0,0.0,142,146,160,167,180,192,0.0,151.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +690,690,0.0,6951.5,0.0,1603189075.6999998,154.79876160990713,3.23,0.0,0.0,18.0,672,10.8,0.0,162.0,155.0,-59.0,8.0,48.0,14.0,61.82248180170944,516.6666666666666,121.62168238081749,-13.0,52.2368453,6.8328088000000005,3.23,6951.5,0.0,0.0,6951.5,2154.699999809265,0.0,0.0,0.0,0.0,0.0,3.23,275.0,541.0,1.0,4.0,687,3.23,0.0,0.0,0.0,162.0,0.0,0.0,142,146,160,167,180,192,0.0,155.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +691,691,0.0,6962.4,0.0,1603189079.1,156.25,3.2,0.0,0.0,18.0,673,10.8,0.0,165.0,135.0,-59.0,9.0,46.0,16.0,55.52782910917176,450.0,116.90069286141424,-15.0,52.2367748,6.8329185,3.2,6962.4,0.0,0.0,6962.4,2158.0999999046326,0.0,0.0,0.0,0.0,0.0,3.2,247.0,520.0,1.0,4.0,688,3.2,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,135.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +692,692,0.0,6972.6,0.0,1603189082.3,157.7287066246057,3.17,0.0,0.0,18.0,674,10.2,0.0,165.0,158.0,-59.0,6.0,46.0,11.0,59.574391554374564,526.6666666666666,120.7224462818835,-17.0,52.2367089,6.8330234,3.17,6972.6,0.0,0.0,6972.6,2161.2999999523163,0.0,0.0,0.0,0.0,0.0,3.17,265.0,537.0,1.0,4.0,689,3.1699999999999995,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,158.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +693,693,0.0,6983.4,0.0,1603189085.6999998,157.7287066246057,3.17,0.0,0.0,18.0,675,10.8,0.0,165.0,159.0,-60.0,7.0,48.0,13.0,61.372863752242466,530.0,117.12550188614773,-10.0,52.236639,6.8331328,3.17,6983.4,0.0,0.0,6983.4,2164.699999809265,0.0,0.0,0.0,0.0,0.0,3.17,273.0,521.0,1.0,4.0,690,3.1699999999999995,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,159.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +694,694,0.0,6994.5,0.0,1603189089.1,155.2795031055901,3.22,0.0,0.0,18.0,676,11.1,0.0,166.0,152.0,-59.0,6.0,47.0,14.0,62.49690887590992,506.6666666666667,113.7533665151454,-32.0,52.2365658,6.8332436,3.22,6994.5,0.0,0.0,6994.5,2168.0999999046326,0.0,0.0,0.0,0.0,0.0,3.22,278.0,506.0,1.0,4.0,691,3.22,0.0,0.0,0.0,166.0,0.0,0.0,142,146,160,167,180,192,0.0,152.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +695,695,0.0,7004.9,0.0,1603189092.3,154.32098765432102,3.24,0.0,0.0,18.0,677,10.4,0.0,166.0,143.0,-60.0,8.0,47.0,12.0,57.101492282306175,476.6666666666667,116.00145676248027,-11.0,52.23649870000001,6.8333492,3.24,7004.9,0.0,0.0,7004.9,2171.2999999523163,0.0,0.0,0.0,0.0,0.0,3.24,254.0,516.0,1.0,4.0,692,3.24,0.0,0.0,0.0,166.0,0.0,0.0,142,146,160,167,180,192,0.0,143.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +696,696,0.0,7015.8,0.0,1603189095.6999998,156.25,3.2,0.0,0.0,17.5,678,10.9,0.0,165.0,151.0,-61.0,7.0,48.0,11.0,58.00072838124014,517.7142857142857,109.93161309467608,3.0,52.236428,6.8334600000000005,3.2,7015.8,0.0,0.0,7015.8,2174.699999809265,0.0,0.0,0.0,0.0,0.0,3.2,258.0,489.0,1.0,4.0,693,3.2,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,151.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +697,697,0.0,7026.0,0.0,1603189099.1999998,159.2356687898089,3.14,0.0,0.0,18.5,679,10.2,0.0,167.0,148.0,-57.0,6.0,48.0,13.0,54.178974960770816,480.0,111.280467243077,-24.0,52.2363643,6.8335671,3.14,7026.0,0.0,0.0,7026.0,2178.199999809265,0.0,0.0,0.0,0.0,0.0,3.14,241.0,495.0,1.0,4.0,694,3.140000000000001,0.0,0.0,0.0,167.0,167.0,0.0,142,146,160,167,180,192,0.0,148.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +698,698,0.0,7035.8,0.0,1603189102.1999998,157.7287066246057,3.17,0.0,0.0,18.0,680,9.8,0.0,168.0,152.0,-60.0,7.0,48.0,13.0,59.34958252964107,506.6666666666667,109.70680406994256,-17.0,52.23630429999999,6.8336723,3.17,7035.8,0.0,0.0,7035.8,2181.199999809265,0.0,0.0,0.0,0.0,0.0,3.17,264.0,488.0,1.0,4.0,695,3.1699999999999995,0.0,0.0,0.0,0.0,168.0,0.0,142,146,160,167,180,192,0.0,152.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +699,699,0.0,7047.3,0.0,1603189105.5,153.84615384615384,3.25,0.0,0.0,18.0,681,11.6,0.0,167.0,151.0,-59.0,6.0,46.0,12.0,57.55111033177316,503.3333333333333,116.45107481194724,-15.0,52.2362321,6.8337947,3.25,7047.3,0.0,0.0,7047.3,2184.5,0.0,0.0,0.0,0.0,0.0,3.25,256.0,518.0,1.0,4.0,696,3.25,0.0,0.0,0.0,167.0,167.0,0.0,142,146,160,167,180,192,0.0,151.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +700,700,0.0,7058.3,0.0,1603189108.9,152.4390243902439,3.28,0.0,0.0,18.0,682,11.0,0.0,165.0,138.0,-58.0,6.0,46.0,15.0,54.178974960770816,460.0,112.17970334201095,-15.0,52.23616420000001,6.8339117,3.28,7058.3,0.0,0.0,7058.3,2187.9000000953674,0.0,0.0,0.0,0.0,0.0,3.28,241.0,499.00000000000006,1.0,4.0,697,3.28,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,138.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +701,701,0.0,7069.5,0.0,1603189112.3,153.84615384615384,3.25,0.0,0.0,17.5,683,11.2,0.0,166.0,153.0,-59.0,7.0,47.0,13.0,60.02400960384154,524.5714285714286,118.69916505928214,-15.0,52.236092600000006,6.834026299999999,3.25,7069.5,0.0,0.0,7069.5,2191.2999999523163,0.0,0.0,0.0,0.0,0.0,3.25,267.0,528.0,1.0,4.0,698,3.25,0.0,0.0,0.0,166.0,0.0,0.0,142,146,160,167,180,192,0.0,153.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +702,702,0.0,7080.2,0.0,1603189115.5,153.3742331288344,3.26,0.0,0.0,18.0,684,10.7,0.0,167.0,150.0,-59.0,6.0,47.0,13.0,58.22553740597362,500.0,119.37359213348259,-16.0,52.23602329999999,6.8341356,3.26,7080.2,0.0,0.0,7080.2,2194.5,0.0,0.0,0.0,0.0,0.0,3.26,259.0,531.0,1.0,4.0,698,3.26,0.0,0.0,0.0,167.0,167.0,0.0,142,146,160,167,180,192,0.0,150.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +703,703,0.0,7091.6,0.0,1603189118.9,151.0574018126888,3.31,0.0,0.0,17.5,685,11.4,0.0,166.0,152.0,-59.0,5.0,48.0,15.0,58.675155455440596,521.1428571428571,117.5751199356147,-18.0,52.2359479,6.834249099999999,3.31,7091.6,0.0,0.0,7091.6,2197.9000000953674,0.0,0.0,0.0,0.0,0.0,3.31,261.0,523.0,1.0,4.0,699,3.3100000000000005,0.0,0.0,0.0,166.0,0.0,0.0,142,146,160,167,180,192,0.0,152.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +704,704,0.0,7103.0,0.0,1603189122.3,149.2537313432836,3.35,0.0,0.0,18.0,686,11.3,0.0,167.0,155.0,-60.0,7.0,47.0,13.0,59.34958252964107,516.6666666666666,121.84649140555098,-16.0,52.2358746,6.8343645,3.35,7103.0,0.0,0.0,7103.0,2201.2999999523163,0.0,0.0,0.0,0.0,0.0,3.35,264.0,542.0,1.0,4.0,700,3.35,0.0,0.0,0.0,167.0,167.0,0.0,142,146,160,167,180,192,0.0,155.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +705,705,0.0,7113.5,0.0,1603189125.5,151.51515151515153,3.3,0.0,0.0,18.0,687,10.6,0.0,166.0,153.0,-59.0,6.0,48.0,13.0,58.45034643070712,510.0,123.64496360341889,-20.0,52.235806200000006,6.8344717999999975,3.3,7113.5,0.0,0.0,7113.5,2204.5,0.0,0.0,0.0,0.0,0.0,3.3,260.0,550.0,1.0,4.0,701,3.3,0.0,0.0,0.0,166.0,0.0,0.0,142,146,160,167,180,192,0.0,153.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +706,706,0.0,7124.1,0.0,1603189128.6999998,155.76323987538942,3.21,0.0,0.0,18.5,688,10.5,0.0,168.0,143.0,-58.0,6.0,48.0,17.0,53.72935691130385,463.7837837837838,114.42779358934584,-20.0,52.2357383,6.8345795,3.21,7124.1,0.0,0.0,7124.1,2207.699999809265,0.0,0.0,0.0,0.0,0.0,3.21,239.0,509.0,1.0,4.0,702,3.21,0.0,0.0,0.0,0.0,168.0,0.0,142,146,160,167,180,192,0.0,143.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +707,707,0.0,7134.5,0.0,1603189132.1999998,158.2278481012658,3.16,0.0,0.0,18.0,689,10.4,0.0,169.0,152.0,-58.0,8.0,48.0,13.0,59.799200579108046,506.6666666666667,121.396873356084,-23.0,52.2356715,6.8346860000000005,3.16,7134.5,0.0,0.0,7134.5,2211.199999809265,0.0,0.0,0.0,0.0,0.0,3.16,266.0,540.0,1.0,4.0,703,3.16,0.0,0.0,0.0,0.0,169.0,0.0,142,146,160,167,180,192,0.0,152.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +708,708,0.0,7144.8,0.0,1603189135.3,155.76323987538942,3.21,0.0,0.0,18.0,690,10.4,0.0,167.0,150.0,-60.0,6.0,47.0,11.0,60.24881862857502,500.0,108.13314089680814,-3.0,52.2356041,6.8347911,3.21,7144.8,0.0,0.0,7144.8,2214.2999999523163,0.0,0.0,0.0,0.0,0.0,3.21,268.0,481.0,1.0,4.0,704,3.21,0.0,0.0,0.0,167.0,167.0,0.0,142,146,160,167,180,192,0.0,150.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +709,709,0.0,7155.3,0.0,1603189138.5,154.32098765432102,3.24,0.0,0.0,18.5,691,10.5,0.0,166.0,140.0,-58.0,7.0,47.0,15.0,55.07821105970478,454.05405405405406,107.45871382260769,-24.0,52.235536,6.8348976,3.24,7155.3,0.0,0.0,7155.3,2217.5,0.0,0.0,0.0,0.0,0.0,3.24,245.0,478.0,1.0,4.0,705,3.24,0.0,0.0,0.0,166.0,0.0,0.0,142,146,160,167,180,192,0.0,140.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +710,710,0.0,7166.0,0.0,1603189141.9,157.23270440251568,3.18,0.0,0.0,18.0,692,10.7,0.0,166.0,146.0,-59.0,8.0,48.0,15.0,60.02400960384154,486.6666666666667,114.87741163881284,-22.0,52.2354693,6.8350103,3.18,7166.0,0.0,0.0,7166.0,2220.9000000953674,0.0,0.0,0.0,0.0,0.0,3.18,267.0,511.0,1.0,4.0,706,3.180000000000001,0.0,0.0,0.0,166.0,0.0,0.0,142,146,160,167,180,192,0.0,146.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +711,711,0.0,7177.0,0.0,1603189145.3,157.7287066246057,3.17,0.0,0.0,17.5,693,11.0,0.0,166.0,129.0,-59.0,8.0,46.0,14.0,54.178974960770816,442.2857142857143,114.20298456461235,-19.0,52.2353999,6.8351247000000015,3.17,7177.0,0.0,0.0,7177.0,2224.2999999523163,0.0,0.0,0.0,0.0,0.0,3.17,241.0,508.0,1.0,4.0,707,3.1699999999999995,0.0,0.0,0.0,166.0,0.0,0.0,142,146,160,167,180,192,0.0,129.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +712,712,0.0,7187.8,0.0,1603189148.6999998,157.23270440251568,3.18,0.0,0.0,17.5,694,10.8,0.0,166.0,125.0,-58.0,6.0,46.0,14.0,50.13241251556803,428.57142857142856,102.06329722900395,-19.0,52.2353299,6.8352344,3.18,7187.8,0.0,0.0,7187.8,2227.699999809265,0.0,0.0,0.0,0.0,0.0,3.18,223.00000000000003,454.0,1.0,4.0,708,3.180000000000001,0.0,0.0,0.0,166.0,0.0,0.0,142,146,160,167,180,192,0.0,125.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +713,713,0.0,7198.6,0.0,1603189152.1,157.7287066246057,3.17,0.0,0.0,18.0,695,10.9,0.0,166.0,122.0,-57.0,7.0,48.0,17.0,46.5354681198322,406.6666666666667,100.48963405586954,-18.0,52.23526029999999,6.835346,3.17,7198.6,0.0,0.0,7198.6,2231.0999999046326,0.0,0.0,0.0,0.0,0.0,3.17,207.0,447.00000000000006,1.0,4.0,709,3.1699999999999995,0.0,0.0,0.0,166.0,0.0,0.0,142,146,160,167,180,192,122.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +714,714,0.0,7209.1,0.0,1603189155.3,158.7301587301587,3.15,0.0,0.0,18.0,696,10.5,0.0,166.0,143.0,-61.0,7.0,47.0,12.0,53.72935691130385,476.6666666666667,107.00909577314071,-4.0,52.2351915,6.835451400000001,3.15,7209.1,0.0,0.0,7209.1,2234.2999999523163,0.0,0.0,0.0,0.0,0.0,3.15,239.0,476.0,1.0,4.0,710,3.1500000000000004,0.0,0.0,0.0,166.0,0.0,0.0,142,146,160,167,180,192,0.0,143.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +715,715,0.0,7219.8,0.0,1603189158.6999998,159.2356687898089,3.14,0.0,0.0,18.0,697,10.7,0.0,165.0,142.0,-59.0,8.0,47.0,16.0,54.85340203497128,473.3333333333333,117.12550188614773,-20.0,52.235121,6.8355576000000005,3.14,7219.8,0.0,0.0,7219.8,2237.699999809265,0.0,0.0,0.0,0.0,0.0,3.14,244.0,521.0,1.0,4.0,711,3.140000000000001,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,142.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +716,716,0.0,7230.4,0.0,1603189162.1999998,159.7444089456869,3.13,0.0,0.0,17.5,698,10.6,0.0,164.0,147.0,-60.0,7.0,47.0,13.0,56.65187423283921,504.0,111.95489431727744,-21.0,52.2350514,6.835664,3.13,7230.4,0.0,0.0,7230.4,2241.199999809265,0.0,0.0,0.0,0.0,0.0,3.13,252.0,498.0,1.0,4.0,712,3.13,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,147.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +717,717,0.0,7241.2,0.0,1603189165.4,158.2278481012658,3.16,0.0,0.0,17.5,699,10.8,0.0,164.0,144.0,-60.0,6.0,47.0,12.0,55.30302008443826,493.7142857142857,116.90069286141424,-16.0,52.23498,6.8357714000000005,3.16,7241.2,0.0,0.0,7241.2,2244.4000000953674,0.0,0.0,0.0,0.0,0.0,3.16,246.0,520.0,1.0,4.0,713,3.16,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,144.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +718,718,0.0,7252.6,0.0,1603189168.9,155.76323987538942,3.21,0.0,0.0,17.5,700,11.4,0.0,164.0,159.0,-60.0,6.0,48.0,13.0,61.372863752242466,545.1428571428571,118.92397408401564,-11.0,52.2349045,6.8358832,3.21,7252.6,0.0,0.0,7252.6,2247.9000000953674,0.0,0.0,0.0,0.0,0.0,3.21,273.0,529.0,1.0,4.0,714,3.21,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,159.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +719,719,0.0,7262.9,0.0,1603189172.1,156.25,3.2,0.0,0.0,17.5,701,10.3,0.0,165.0,154.0,-60.0,8.0,49.0,13.0,60.4736276533085,528.0,119.14878310874913,-23.0,52.2348376,6.835988799999999,3.2,7262.9,0.0,0.0,7262.9,2251.0999999046326,0.0,0.0,0.0,0.0,0.0,3.2,269.0,530.0,1.0,4.0,715,3.2,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,154.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +720,720,0.0,7274.5,0.0,1603189175.6999998,156.73981191222572,3.19,0.0,0.0,17.0,702,11.6,0.0,166.0,135.0,-59.0,7.0,49.0,16.0,54.178974960770816,476.47058823529414,120.7224462818835,-19.0,52.2347631,6.8361068,3.19,7274.5,0.0,0.0,7274.5,2254.699999809265,0.0,0.0,0.0,0.0,0.0,3.19,241.0,537.0,1.0,4.0,716,3.19,0.0,0.0,0.0,166.0,0.0,0.0,142,146,160,167,180,192,0.0,135.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +721,721,0.0,7285.1,0.0,1603189178.9,155.76323987538942,3.21,0.0,0.0,19.0,703,10.6,0.0,165.0,180.0,-59.0,4.0,47.0,12.0,69.69079766738156,568.421052631579,118.92397408401564,-13.0,52.2346941,6.836213000000001,3.21,7285.1,0.0,0.0,7285.1,2257.9000000953674,0.0,0.0,0.0,0.0,0.0,3.21,310.0,529.0,1.0,4.0,717,3.21,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,180.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +722,722,0.0,7295.9,0.0,1603189182.1,153.3742331288344,3.26,0.0,0.0,18.5,704,10.9,0.0,162.0,172.0,-60.0,6.0,48.0,12.0,64.29538107377782,557.8378378378378,125.4434358012868,-17.0,52.23462410000001,6.8363241,3.26,7295.9,0.0,0.0,7295.9,2261.0999999046326,0.0,0.0,0.0,0.0,0.0,3.26,285.99999999999994,558.0,1.0,4.0,718,3.26,0.0,0.0,0.0,162.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,172.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +723,723,0.0,7306.8,0.0,1603189185.3,149.2537313432836,3.35,0.0,0.0,19.0,705,10.9,0.0,162.0,167.0,-61.0,7.0,47.0,11.0,62.04729082644294,527.3684210526316,119.14878310874913,-14.0,52.234554,6.8364354999999986,3.35,7306.8,0.0,0.0,7306.8,2264.2999999523163,0.0,0.0,0.0,0.0,0.0,3.35,276.0,530.0,1.0,4.0,719,3.35,0.0,0.0,0.0,162.0,0.0,0.0,142,146,160,167,180,192,0.0,167.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +724,724,0.0,7317.7,0.0,1603189188.5,148.80952380952382,3.36,0.0,0.0,18.5,706,10.9,0.0,161.0,155.0,-60.0,6.0,48.0,11.0,61.59767277697596,502.7027027027027,104.53619650107237,-9.0,52.234484,6.836546799999999,3.36,7317.7,0.0,0.0,7317.7,2267.5,0.0,0.0,0.0,0.0,0.0,3.36,274.0,465.0,1.0,4.0,720,3.36,0.0,0.0,0.0,161.0,0.0,0.0,142,146,160,167,180,192,0.0,155.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +725,725,0.0,7329.7,0.0,1603189192.3,152.4390243902439,3.28,0.0,0.0,15.5,707,12.0,0.0,163.0,217.0,-59.0,6.0,50.0,16.0,60.24881862857502,840.0,126.79228994968771,-20.0,52.2344067,6.8366694,3.28,7329.7,0.0,0.0,7329.7,2271.2999999523163,0.0,0.0,0.0,0.0,0.0,3.28,268.0,564.0,1.0,4.0,721,3.28,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,217.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +726,726,0.0,7340.7,0.0,1603189195.5,152.9051987767584,3.27,0.0,0.0,18.5,708,11.0,0.0,163.0,165.0,-59.0,5.0,48.0,14.0,62.9465269253769,535.1351351351351,125.21862677655331,-20.0,52.2343365,6.8367825,3.27,7340.7,0.0,0.0,7340.7,2274.5,0.0,0.0,0.0,0.0,0.0,3.27,280.0,557.0,1.0,4.0,722,3.2700000000000005,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,165.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +727,727,0.0,7351.6,0.0,1603189198.6999998,149.70059880239518,3.34,0.0,0.0,18.5,709,11.0,0.0,163.0,150.0,-59.0,6.0,48.0,14.0,56.42706520810572,486.4864864864865,115.10222066354632,-18.0,52.2342657,6.8368944,3.34,7351.6,0.0,0.0,7351.6,2277.699999809265,0.0,0.0,0.0,0.0,0.0,3.34,251.0,512.0,1.0,4.0,723,3.3400000000000007,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,150.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +728,728,0.0,7362.7,0.0,1603189202.1,149.2537313432836,3.35,0.0,0.0,18.5,710,11.0,0.0,165.0,146.0,-58.0,6.0,48.0,17.0,56.42706520810572,473.5135135135135,121.84649140555098,-22.0,52.2341954,6.837009299999999,3.35,7362.7,0.0,0.0,7362.7,2281.0999999046326,0.0,0.0,0.0,0.0,0.0,3.35,251.0,542.0,1.0,4.0,724,3.35,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,146.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +729,729,0.0,7373.8,0.0,1603189205.5,152.9051987767584,3.27,0.0,0.0,17.5,711,11.1,0.0,165.0,141.0,-59.0,7.0,48.0,15.0,57.32630130703967,483.42857142857144,112.40451236674446,-15.0,52.2341254,6.8371243,3.27,7373.8,0.0,0.0,7373.8,2284.5,0.0,0.0,0.0,0.0,0.0,3.27,255.0,500.00000000000006,1.0,4.0,725,3.2700000000000005,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,141.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +730,730,0.0,7384.3,0.0,1603189208.6999998,155.76323987538942,3.21,0.0,0.0,18.0,712,10.5,0.0,164.0,150.0,-59.0,6.0,48.0,14.0,58.22553740597362,500.0,116.00145676248027,-16.0,52.2340589,6.8372338,3.21,7384.3,0.0,0.0,7384.3,2287.699999809265,0.0,0.0,0.0,0.0,0.0,3.21,259.0,516.0,1.0,4.0,726,3.21,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,150.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +731,731,0.0,7394.9,0.0,1603189212.1,155.76323987538942,3.21,0.0,0.0,18.0,713,10.6,0.0,166.0,148.0,-60.0,9.0,49.0,15.0,61.59767277697596,493.3333333333333,120.49763725715005,-22.0,52.2339929,6.8373459,3.21,7394.9,0.0,0.0,7394.9,2291.0999999046326,0.0,0.0,0.0,0.0,0.0,3.21,274.0,536.0,1.0,4.0,727,3.21,0.0,0.0,0.0,166.0,0.0,0.0,142,146,160,167,180,192,0.0,148.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +732,732,0.0,7405.7,0.0,1603189215.5,159.2356687898089,3.14,0.0,0.0,17.5,714,10.7,0.0,166.0,124.0,-58.0,6.0,46.0,17.0,54.40378398550431,425.14285714285717,109.03237699574213,-16.0,52.2339241,6.8374573000000005,3.14,7405.7,0.0,0.0,7405.7,2294.5,0.0,0.0,0.0,0.0,0.0,3.14,242.0,485.0,1.0,4.0,728,3.140000000000001,0.0,0.0,0.0,166.0,0.0,0.0,142,146,160,167,180,192,124.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +733,733,0.0,7416.7,0.0,1603189219.1999998,162.86644951140067,3.07,0.0,0.0,18.0,715,11.0,0.0,166.0,137.0,-59.0,6.0,46.0,14.0,53.27973886183686,456.6666666666667,112.85413041621143,-20.0,52.2338548,6.8375729000000005,3.07,7416.7,0.0,0.0,7416.7,2298.199999809265,0.0,0.0,0.0,0.0,0.0,3.07,237.0,502.0,1.0,4.0,729,3.0699999999999994,0.0,0.0,0.0,166.0,0.0,0.0,142,146,160,167,180,192,0.0,137.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +734,734,0.0,7427.1,0.0,1603189222.3,159.2356687898089,3.14,0.0,0.0,17.5,716,10.4,0.0,167.0,130.0,-58.0,7.0,48.0,18.0,54.6285930102378,445.7142857142857,111.05565821834352,-16.0,52.2337898,6.8376827,3.14,7427.1,0.0,0.0,7427.1,2301.2999999523163,0.0,0.0,0.0,0.0,0.0,3.14,243.0,494.0,1.0,4.0,730,3.140000000000001,0.0,0.0,0.0,167.0,167.0,0.0,142,146,160,167,180,192,0.0,130.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +735,735,0.0,7438.6,0.0,1603189225.6999998,154.79876160990713,3.23,0.0,0.0,17.5,717,11.5,0.0,167.0,135.0,-57.0,6.0,49.0,18.0,54.6285930102378,462.85714285714283,109.48199504520909,-14.0,52.2337169,6.8378024,3.23,7438.6,0.0,0.0,7438.6,2304.699999809265,0.0,0.0,0.0,0.0,0.0,3.23,243.0,487.0,1.0,4.0,731,3.23,0.0,0.0,0.0,167.0,167.0,0.0,142,146,160,167,180,192,0.0,135.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +736,736,0.0,7449.9,0.0,1603189229.1,152.9051987767584,3.27,0.0,0.0,17.5,718,11.3,0.0,166.0,147.0,-60.0,6.0,47.0,14.0,62.49690887590992,504.0,114.20298456461235,-17.0,52.2336455,6.8379195999999975,3.27,7449.9,0.0,0.0,7449.9,2308.0999999046326,0.0,0.0,0.0,0.0,0.0,3.27,278.0,508.0,1.0,4.0,732,3.2700000000000005,0.0,0.0,0.0,166.0,0.0,0.0,142,146,160,167,180,192,0.0,147.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +737,737,0.0,7461.1,0.0,1603189232.5,151.9756838905775,3.29,0.0,0.0,17.5,719,11.2,0.0,166.0,139.0,-58.0,6.0,47.0,15.0,56.20225618337223,476.57142857142856,113.07893944094492,-23.0,52.2335735,6.8380348,3.29,7461.1,0.0,0.0,7461.1,2311.5,0.0,0.0,0.0,0.0,0.0,3.29,250.00000000000003,503.0,1.0,4.0,733,3.29,0.0,0.0,0.0,166.0,0.0,0.0,142,146,160,167,180,192,0.0,139.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +738,738,0.0,7472.5,0.0,1603189235.9,151.51515151515153,3.3,0.0,0.0,17.5,720,11.4,0.0,165.0,147.0,-59.0,7.0,47.0,12.0,58.00072838124014,504.0,118.47435603454865,-14.0,52.23349810000001,6.8381478000000016,3.3,7472.5,0.0,0.0,7472.5,2314.9000000953674,0.0,0.0,0.0,0.0,0.0,3.3,258.0,527.0,1.0,4.0,734,3.3,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,147.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +739,739,0.0,7483.6,0.0,1603189239.3,152.4390243902439,3.28,0.0,0.0,17.5,721,11.2,0.0,164.0,140.0,-60.0,6.0,49.0,14.0,56.20225618337223,480.0,105.4354326000063,-4.0,52.233425,6.8382595,3.28,7483.6,0.0,0.0,7483.6,2318.2999999523163,0.0,0.0,0.0,0.0,0.0,3.28,250.00000000000003,469.0,1.0,4.0,735,3.28,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,140.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +740,740,0.0,7494.5,0.0,1603189242.6999998,156.25,3.2,0.0,0.0,17.5,722,10.8,0.0,163.0,150.0,-58.0,6.0,48.0,14.0,57.775919356506655,514.2857142857143,119.59840115821608,-14.0,52.2333545,6.8383688,3.2,7494.5,0.0,0.0,7494.5,2321.699999809265,0.0,0.0,0.0,0.0,0.0,3.2,257.0,532.0,1.0,4.0,736,3.2,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,150.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +741,741,0.0,7505.0,0.0,1603189246.1999998,158.2278481012658,3.16,0.0,0.0,18.0,723,10.5,0.0,164.0,145.0,-59.0,7.0,48.0,17.0,55.52782910917176,483.3333333333333,120.947255306617,-19.0,52.233287,6.8384777,3.16,7505.0,0.0,0.0,7505.0,2325.199999809265,0.0,0.0,0.0,0.0,0.0,3.16,247.0,538.0,1.0,4.0,737,3.16,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,145.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +742,742,0.0,7516.1,0.0,1603189249.4,155.2795031055901,3.22,0.0,0.0,17.5,724,11.0,0.0,164.0,146.0,-59.0,6.0,48.0,15.0,57.55111033177316,500.57142857142856,116.90069286141424,-15.0,52.2332163,6.838591,3.22,7516.1,0.0,0.0,7516.1,2328.4000000953674,0.0,0.0,0.0,0.0,0.0,3.22,256.0,520.0,1.0,4.0,738,3.22,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,146.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +743,743,0.0,7527.3,0.0,1603189252.6999998,153.3742331288344,3.26,0.0,0.0,18.0,725,11.2,0.0,165.0,152.0,-59.0,6.0,48.0,14.0,59.12477350490758,506.6666666666667,118.92397408401564,-19.0,52.2331446,6.8387065,3.26,7527.3,0.0,0.0,7527.3,2331.699999809265,0.0,0.0,0.0,0.0,0.0,3.26,263.0,529.0,1.0,4.0,739,3.26,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,152.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +744,744,0.0,7538.4,0.0,1603189256.1,153.3742331288344,3.26,0.0,0.0,17.5,726,11.1,0.0,163.0,145.0,-60.0,7.0,47.0,14.0,57.32630130703967,497.14285714285717,125.8930538507538,-18.0,52.233074,6.838822200000001,3.26,7538.4,0.0,0.0,7538.4,2335.0999999046326,0.0,0.0,0.0,0.0,0.0,3.26,255.0,560.0,1.0,4.0,740,3.26,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,145.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +745,745,0.0,7549.0,0.0,1603189259.3,153.84615384615384,3.25,0.0,0.0,18.0,727,10.6,0.0,162.0,144.0,-59.0,7.0,47.0,13.0,54.40378398550431,480.0,111.95489431727744,-25.0,52.233008,6.8389341,3.25,7549.0,0.0,0.0,7549.0,2338.2999999523163,0.0,0.0,0.0,0.0,0.0,3.25,242.0,498.0,1.0,4.0,741,3.25,0.0,0.0,0.0,162.0,0.0,0.0,142,146,160,167,180,192,0.0,144.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +746,746,0.0,7560.0,0.0,1603189262.6999998,154.32098765432102,3.24,0.0,0.0,18.0,728,11.0,0.0,162.0,137.0,-59.0,7.0,49.0,14.0,55.30302008443826,456.6666666666667,100.26482503113606,-6.0,52.2329399,6.8390519,3.24,7560.0,0.0,0.0,7560.0,2341.699999809265,0.0,0.0,0.0,0.0,0.0,3.24,246.0,446.00000000000006,1.0,4.0,742,3.24,0.0,0.0,0.0,162.0,0.0,0.0,142,146,160,167,180,192,0.0,137.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +747,747,0.0,7570.3,0.0,1603189265.9,155.2795031055901,3.22,0.0,0.0,18.0,729,10.3,0.0,159.0,133.0,-58.0,7.0,48.0,16.0,52.83012081236989,443.3333333333333,106.33466869894023,-20.0,52.2328765,6.8391613,3.22,7570.3,0.0,0.0,7570.3,2344.9000000953674,0.0,0.0,0.0,0.0,0.0,3.22,235.0,473.0,1.0,4.0,743,3.22,0.0,0.0,159.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,133.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +748,748,0.0,7580.5,0.0,1603189269.1,156.25,3.2,0.0,0.0,18.5,730,10.2,0.0,159.0,138.0,-58.0,6.0,47.0,15.0,51.70607568870245,447.56756756756755,109.48199504520909,-23.0,52.2328124,6.8392675,3.2,7580.5,0.0,0.0,7580.5,2348.0999999046326,0.0,0.0,0.0,0.0,0.0,3.2,230.0,487.0,1.0,4.0,744,3.2,0.0,0.0,159.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,138.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +749,749,0.0,7591.8,0.0,1603189272.6999998,156.73981191222572,3.19,0.0,0.0,17.5,731,11.3,0.0,159.0,141.0,-58.0,6.0,48.0,14.0,57.55111033177316,483.42857142857144,113.30374846567841,-18.0,52.2327401,6.839384599999999,3.19,7591.8,0.0,0.0,7591.8,2351.699999809265,0.0,0.0,0.0,0.0,0.0,3.19,256.0,504.0,1.0,4.0,745,3.19,0.0,0.0,159.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,141.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +750,750,0.0,7602.2,0.0,1603189276.1999998,159.7444089456869,3.13,0.0,0.0,17.5,732,10.4,0.0,160.0,138.0,-59.0,6.0,49.0,14.0,55.52782910917176,473.14285714285717,114.65260261407934,-20.0,52.2326745,6.8394925,3.13,7602.2,0.0,0.0,7602.2,2355.199999809265,0.0,0.0,0.0,0.0,0.0,3.13,247.0,510.0,1.0,4.0,746,3.13,0.0,0.0,160.0,160.0,0.0,0.0,142,146,160,167,180,192,0.0,138.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +751,751,0.0,7613.5,0.0,1603189279.5,159.2356687898089,3.14,0.0,0.0,17.5,733,11.3,0.0,162.0,132.0,-59.0,7.0,47.0,12.0,53.05492983710339,452.57142857142856,109.70680406994256,-3.0,52.2326015,6.8396084,3.14,7613.5,0.0,0.0,7613.5,2358.5,0.0,0.0,0.0,0.0,0.0,3.14,236.0,488.0,1.0,4.0,747,3.140000000000001,0.0,0.0,0.0,162.0,0.0,0.0,142,146,160,167,180,192,0.0,132.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +752,752,0.0,7623.6,0.0,1603189282.6999998,158.2278481012658,3.16,0.0,0.0,18.0,734,10.1,0.0,163.0,142.0,-57.0,5.0,46.0,13.0,55.752638133905236,473.3333333333333,112.17970334201095,-21.0,52.2325369,6.839711500000001,3.16,7623.6,0.0,0.0,7623.6,2361.699999809265,0.0,0.0,0.0,0.0,0.0,3.16,248.0,499.00000000000006,1.0,4.0,748,3.16,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,142.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +753,753,0.0,7634.4,0.0,1603189286.1,159.7444089456869,3.13,0.0,0.0,18.0,735,10.8,0.0,166.0,140.0,-58.0,6.0,48.0,16.0,56.20225618337223,466.6666666666667,111.730085292544,-19.0,52.232468,6.8398235000000005,3.13,7634.4,0.0,0.0,7634.4,2365.0999999046326,0.0,0.0,0.0,0.0,0.0,3.13,250.00000000000003,497.0,1.0,4.0,749,3.13,0.0,0.0,0.0,166.0,0.0,0.0,142,146,160,167,180,192,0.0,140.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +754,754,0.0,7645.4,0.0,1603189289.5,157.7287066246057,3.17,0.0,0.0,17.5,736,11.0,0.0,165.0,155.0,-58.0,5.0,48.0,13.0,61.372863752242466,531.4285714285714,120.04801920768308,-23.0,52.2323974,6.839936200000001,3.17,7645.4,0.0,0.0,7645.4,2368.5,0.0,0.0,0.0,0.0,0.0,3.17,273.0,534.0,1.0,4.0,750,3.1699999999999995,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,155.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +755,755,0.0,7656.2,0.0,1603189292.9,155.76323987538942,3.21,0.0,0.0,18.0,737,10.8,0.0,162.0,151.0,-58.0,7.0,47.0,13.0,60.698436678042,503.3333333333333,124.54419970235287,-17.0,52.2323279,6.8400477,3.21,7656.2,0.0,0.0,7656.2,2371.9000000953674,0.0,0.0,0.0,0.0,0.0,3.21,270.0,554.0,1.0,4.0,751,3.21,0.0,0.0,0.0,162.0,0.0,0.0,142,146,160,167,180,192,0.0,151.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +756,756,0.0,7667.5,0.0,1603189296.3,154.32098765432102,3.24,0.0,0.0,17.5,738,11.3,0.0,161.0,147.0,-60.0,6.0,48.0,15.0,62.04729082644294,504.0,120.04801920768308,-20.0,52.2322553,6.8401627000000005,3.24,7667.5,0.0,0.0,7667.5,2375.2999999523163,0.0,0.0,0.0,0.0,0.0,3.24,276.0,534.0,1.0,4.0,752,3.24,0.0,0.0,0.0,161.0,0.0,0.0,142,146,160,167,180,192,0.0,147.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +757,757,0.0,7678.5,0.0,1603189299.6999998,155.2795031055901,3.22,0.0,0.0,17.5,739,11.0,0.0,161.0,154.0,-59.0,6.0,49.0,15.0,64.52019009851129,528.0,123.64496360341889,-17.0,52.2321853,6.8402766,3.22,7678.5,0.0,0.0,7678.5,2378.699999809265,0.0,0.0,0.0,0.0,0.0,3.22,286.99999999999994,550.0,1.0,4.0,753,3.22,0.0,0.0,0.0,161.0,0.0,0.0,142,146,160,167,180,192,0.0,154.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +758,758,0.0,7689.0,0.0,1603189303.1999998,157.7287066246057,3.17,0.0,0.0,17.5,740,10.5,0.0,160.0,142.0,-59.0,8.0,47.0,16.0,57.55111033177316,486.85714285714283,125.8930538507538,-18.0,52.2321176,6.840384200000001,3.17,7689.0,0.0,0.0,7689.0,2382.199999809265,0.0,0.0,0.0,0.0,0.0,3.17,256.0,560.0,1.0,4.0,754,3.1699999999999995,0.0,0.0,160.0,160.0,0.0,0.0,142,146,160,167,180,192,0.0,142.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +759,759,0.0,7700.8,0.0,1603189306.6999998,157.7287066246057,3.17,0.0,0.0,17.5,741,11.8,0.0,160.0,136.0,-58.0,6.0,47.0,14.0,54.178974960770816,466.2857142857143,115.10222066354632,-17.0,52.2320432,6.8405068,3.17,7700.8,0.0,0.0,7700.8,2385.699999809265,0.0,0.0,0.0,0.0,0.0,3.17,241.0,512.0,1.0,4.0,755,3.1699999999999995,0.0,0.0,160.0,160.0,0.0,0.0,142,146,160,167,180,192,0.0,136.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +760,760,0.0,7711.4,0.0,1603189310.1,157.7287066246057,3.17,0.0,0.0,17.5,742,10.7,0.0,160.0,140.0,-59.0,7.0,48.0,15.0,55.07821105970478,480.0,122.74572750448492,-19.0,52.2319759,6.8406182,3.17,7711.4,0.0,0.0,7711.4,2389.0999999046326,0.0,0.0,0.0,0.0,0.0,3.17,245.0,546.0,1.0,4.0,756,3.1699999999999995,0.0,0.0,160.0,160.0,0.0,0.0,142,146,160,167,180,192,0.0,140.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +761,761,0.0,7722.7,0.0,1603189313.6999998,159.7444089456869,3.13,0.0,0.0,17.0,743,11.3,0.0,161.0,129.0,-58.0,7.0,46.0,15.0,53.27973886183686,455.29411764705884,113.07893944094492,-16.0,52.2319031,6.8407333,3.13,7722.7,0.0,0.0,7722.7,2392.699999809265,0.0,0.0,0.0,0.0,0.0,3.13,237.0,503.0,1.0,4.0,757,3.13,0.0,0.0,0.0,161.0,0.0,0.0,142,146,160,167,180,192,0.0,129.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +762,762,0.0,7733.4,0.0,1603189317.1,161.29032258064515,3.1,0.0,0.0,17.5,744,10.6,0.0,163.0,120.0,-59.0,8.0,48.0,17.0,50.35722154030152,411.42857142857144,101.61367917953699,-10.0,52.2318346,6.8408424,3.1,7733.4,0.0,0.0,7733.4,2396.0999999046326,0.0,0.0,0.0,0.0,0.0,3.1,224.00000000000003,452.0,1.0,4.0,758,3.1,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,120.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +763,763,0.0,7743.1,0.0,1603189320.3,163.93442622950818,3.05,0.0,0.0,18.0,745,9.8,0.0,163.0,134.0,-58.0,7.0,47.0,16.0,52.38050276290291,446.6666666666667,110.83084919361002,-20.0,52.23177329999999,6.8409437,3.05,7743.1,0.0,0.0,7743.1,2399.2999999523163,0.0,0.0,0.0,0.0,0.0,3.05,233.0,493.0,1.0,4.0,759,3.0500000000000003,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,134.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +764,764,0.0,7753.7,0.0,1603189324.1999998,167.78523489932888,2.98,0.0,0.0,17.5,746,10.6,0.0,164.0,129.0,-57.0,7.0,46.0,16.0,55.30302008443826,442.2857142857143,111.05565821834352,-15.0,52.2317061,6.8410541,2.98,7753.7,0.0,0.0,7753.7,2403.199999809265,0.0,0.0,0.0,0.0,0.0,2.98,246.0,494.0,1.0,4.0,760,2.9799999999999995,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,129.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +765,765,0.0,7763.3,0.0,1603189327.3,170.64846416382252,2.93,0.0,0.0,17.0,747,9.6,0.0,161.0,148.0,-59.0,6.0,49.0,14.0,62.721717900643405,522.3529411764706,128.14114409808866,-18.0,52.231643,6.841149900000001,2.93,7763.3,0.0,0.0,7763.3,2406.2999999523163,0.0,0.0,0.0,0.0,0.0,2.93,279.0,570.0,1.0,4.0,761,2.93,0.0,0.0,0.0,161.0,0.0,0.0,142,146,160,167,180,192,0.0,148.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +766,766,0.0,7774.3,0.0,1603189330.9,170.64846416382252,2.93,0.0,0.0,16.5,748,11.0,0.0,159.0,128.0,-58.0,8.0,47.0,17.0,55.30302008443826,465.45454545454544,125.8930538507538,-16.0,52.2315733,6.8412649000000005,2.93,7774.3,0.0,0.0,7774.3,2409.9000000953674,0.0,0.0,0.0,0.0,0.0,2.93,246.0,560.0,1.0,4.0,762,2.93,0.0,0.0,159.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,128.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +767,767,0.0,7784.3,0.0,1603189334.3,170.64846416382252,2.93,0.0,0.0,17.5,749,10.0,0.0,159.0,116.0,-56.0,6.0,48.0,21.0,49.682794466101036,397.7142857142857,103.18734235267141,-18.0,52.2315089,6.841367,2.93,7784.3,0.0,0.0,7784.3,2413.2999999523163,0.0,0.0,0.0,0.0,0.0,2.93,221.0,459.0,1.0,4.0,763,2.93,0.0,0.0,159.0,0.0,0.0,0.0,142,146,160,167,180,192,116.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +768,768,0.0,7794.7,0.0,1603189337.6999998,170.64846416382252,2.93,0.0,0.0,17.5,750,10.4,0.0,160.0,144.0,-56.0,6.0,49.0,17.0,59.574391554374564,493.7142857142857,113.30374846567841,-14.0,52.23144110000001,6.841472,2.93,7794.7,0.0,0.0,7794.7,2416.699999809265,0.0,0.0,0.0,0.0,0.0,2.93,265.0,504.0,1.0,4.0,764,2.93,0.0,0.0,160.0,160.0,0.0,0.0,142,146,160,167,180,192,0.0,144.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +769,769,0.0,7805.5,0.0,1603189341.1,165.56291390728478,3.02,0.0,0.0,17.5,751,10.8,0.0,163.0,127.0,-58.0,8.0,49.0,18.0,53.27973886183686,435.42857142857144,113.7533665151454,-20.0,52.2313717,6.8415827999999985,3.02,7805.5,0.0,0.0,7805.5,2420.0999999046326,0.0,0.0,0.0,0.0,0.0,3.02,237.0,506.0,1.0,4.0,765,3.02,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,127.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +770,770,0.0,7816.4,0.0,1603189344.5,161.81229773462783,3.09,0.0,0.0,17.5,752,10.9,0.0,167.0,128.0,-57.0,7.0,47.0,15.0,53.27973886183686,438.85714285714283,104.31138747633885,-5.0,52.2312995,6.84169,3.09,7816.4,0.0,0.0,7816.4,2423.5,0.0,0.0,0.0,0.0,0.0,3.09,237.0,464.0,1.0,4.0,766,3.09,0.0,0.0,0.0,167.0,167.0,0.0,142,146,160,167,180,192,0.0,128.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +771,771,0.0,7827.1,0.0,1603189348.1999998,163.3986928104575,3.06,0.0,0.0,18.0,753,10.7,0.0,165.0,144.0,-56.0,6.0,48.0,15.0,59.799200579108046,480.0,116.22626578721376,-16.0,52.2312292,6.8417963,3.06,7827.1,0.0,0.0,7827.1,2427.199999809265,0.0,0.0,0.0,0.0,0.0,3.06,266.0,517.0,1.0,4.0,767,3.06,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,144.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +772,772,0.0,7837.3,0.0,1603189351.3,163.3986928104575,3.06,0.0,0.0,17.5,754,10.2,0.0,163.0,141.0,-58.0,9.0,47.0,13.0,63.171335950110375,483.42857142857144,118.24954700981516,-12.0,52.2311607,6.841895599999999,3.06,7837.3,0.0,0.0,7837.3,2430.2999999523163,0.0,0.0,0.0,0.0,0.0,3.06,281.0,526.0,1.0,4.0,768,3.06,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,141.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +773,773,0.0,7848.1,0.0,1603189354.6999998,162.86644951140067,3.07,0.0,0.0,17.5,755,10.9,0.0,163.0,130.0,-58.0,7.0,47.0,16.0,57.775919356506655,445.7142857142857,120.49763725715005,-19.0,52.2310874,6.8420007,3.07,7848.1,0.0,0.0,7848.1,2433.699999809265,0.0,0.0,0.0,0.0,0.0,3.07,257.0,536.0,1.0,4.0,769,3.0699999999999994,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,130.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +774,774,0.0,7859.0,0.0,1603189358.3,165.01650165016503,3.03,0.0,0.0,17.5,756,10.9,0.0,163.0,132.0,-56.0,6.0,46.0,14.0,54.6285930102378,452.57142857142856,113.07893944094492,-15.0,52.2310146,6.8421071,3.03,7859.0,0.0,0.0,7859.0,2437.2999999523163,0.0,0.0,0.0,0.0,0.0,3.03,243.0,503.0,1.0,4.0,770,3.03,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,132.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +775,775,0.0,7869.4,0.0,1603189361.6999998,166.66666666666666,3.0,0.0,0.0,17.0,757,10.4,0.0,161.0,141.0,-57.0,10.0,47.0,13.0,57.55111033177316,497.6470588235294,122.74572750448492,-17.0,52.23094520000001,6.842209,3.0,7869.4,0.0,0.0,7869.4,2440.699999809265,0.0,0.0,0.0,0.0,0.0,3.0,256.0,546.0,1.0,4.0,771,3.0,0.0,0.0,0.0,161.0,0.0,0.0,142,146,160,167,180,192,0.0,141.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +776,776,0.0,7879.7,0.0,1603189365.1,167.22408026755855,2.99,0.0,0.0,17.5,758,10.3,0.0,161.0,139.0,-58.0,7.0,48.0,12.0,60.92324570277549,476.57142857142856,104.31138747633885,-2.0,52.2308759,6.8423095,2.99,7879.7,0.0,0.0,7879.7,2444.0999999046326,0.0,0.0,0.0,0.0,0.0,2.99,271.0,464.0,1.0,4.0,772,2.99,0.0,0.0,0.0,161.0,0.0,0.0,142,146,160,167,180,192,0.0,139.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +777,777,0.0,7889.7,0.0,1603189368.5,171.23287671232876,2.92,0.0,0.0,18.0,759,10.0,0.0,159.0,141.0,-57.0,6.0,51.0,20.0,56.42706520810572,470.0,119.59840115821608,-16.0,52.2308109,6.8424107,2.92,7889.7,0.0,0.0,7889.7,2447.5,0.0,0.0,0.0,0.0,0.0,2.92,251.0,532.0,1.0,4.0,773,2.92,0.0,0.0,159.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,141.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +778,778,0.0,7899.9,0.0,1603189372.1999998,174.82517482517483,2.86,0.0,0.0,17.0,760,10.2,0.0,159.0,135.0,-56.0,8.0,48.0,16.0,55.977447158638725,476.47058823529414,126.79228994968771,-17.0,52.2307445,6.8425137000000005,2.86,7899.9,0.0,0.0,7899.9,2451.199999809265,0.0,0.0,0.0,0.0,0.0,2.86,249.0,564.0,1.0,4.0,774,2.86,0.0,0.0,159.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,135.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +779,779,0.0,7910.0,0.0,1603189375.4,173.01038062283737,2.89,0.0,0.0,17.5,761,10.1,0.0,158.0,133.0,-58.0,8.0,47.0,16.0,54.85340203497128,456.0,117.12550188614773,-17.0,52.2306779,6.8426136,2.89,7910.0,0.0,0.0,7910.0,2454.4000000953674,0.0,0.0,0.0,0.0,0.0,2.89,244.0,521.0,1.0,4.0,775,2.89,0.0,0.0,158.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,133.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +780,780,0.0,7920.4,0.0,1603189378.9,171.23287671232876,2.92,0.0,0.0,17.0,762,10.5,0.0,162.0,125.0,-59.0,9.0,46.0,12.0,53.95416593603733,441.1764705882353,101.83848820427048,5.0,52.2306093,6.842718400000001,2.92,7920.4,0.0,0.0,7920.4,2457.9000000953674,0.0,0.0,0.0,0.0,0.0,2.92,240.0,453.0,1.0,4.0,776,2.92,0.0,0.0,0.0,162.0,0.0,0.0,142,146,160,167,180,192,0.0,125.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +781,781,0.0,7930.0,0.0,1603189382.3,174.21602787456445,2.87,0.0,0.0,18.0,763,9.6,0.0,162.0,149.0,-58.0,6.0,47.0,15.0,60.92324570277549,496.6666666666667,121.62168238081749,-14.0,52.2305464,6.8428137000000016,2.87,7930.0,0.0,0.0,7930.0,2461.2999999523163,0.0,0.0,0.0,0.0,0.0,2.87,271.0,541.0,1.0,4.0,777,2.87,0.0,0.0,0.0,162.0,0.0,0.0,142,146,160,167,180,192,0.0,149.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +782,782,0.0,7939.9,0.0,1603189385.6999998,175.43859649122803,2.85,0.0,0.0,17.5,764,9.9,0.0,161.0,156.0,-59.0,6.0,47.0,13.0,66.09385327164574,534.8571428571429,126.79228994968771,-21.0,52.2304816,6.842913,2.85,7939.9,0.0,0.0,7939.9,2464.699999809265,0.0,0.0,0.0,0.0,0.0,2.85,294.0,564.0,1.0,4.0,778,2.8500000000000005,0.0,0.0,0.0,161.0,0.0,0.0,142,146,160,167,180,192,0.0,156.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +783,783,0.0,7950.0,0.0,1603189389.1,171.23287671232876,2.92,0.0,0.0,17.5,765,10.2,0.0,160.0,162.0,-58.0,7.0,47.0,12.0,69.01637059318111,555.4285714285714,127.9163350733552,-11.0,52.2304146,6.8430141,2.92,7950.0,0.0,0.0,7950.0,2468.0999999046326,0.0,0.0,0.0,0.0,0.0,2.92,307.0,569.0,1.0,4.0,779,2.92,0.0,0.0,160.0,160.0,0.0,0.0,142,146,160,167,180,192,0.0,162.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +784,784,0.0,7960.5,0.0,1603189392.5,166.66666666666666,3.0,0.0,0.0,18.0,766,10.5,0.0,160.0,150.0,-59.0,6.0,45.0,12.0,60.698436678042,500.0,126.11786287548729,-13.0,52.2303453,6.8431190000000015,3.0,7960.5,0.0,0.0,7960.5,2471.5,0.0,0.0,0.0,0.0,0.0,3.0,270.0,561.0,1.0,4.0,780,3.0,0.0,0.0,160.0,160.0,0.0,0.0,142,146,160,167,180,192,0.0,150.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +785,785,0.0,7971.1,0.0,1603189396.1999998,163.93442622950818,3.05,0.0,0.0,18.0,767,10.6,0.0,161.0,153.0,-59.0,9.0,48.0,13.0,63.845763024310855,510.0,125.4434358012868,-16.0,52.2302771,6.8432264000000025,3.05,7971.1,0.0,0.0,7971.1,2475.199999809265,0.0,0.0,0.0,0.0,0.0,3.05,284.0,558.0,1.0,4.0,781,3.0500000000000003,0.0,0.0,0.0,161.0,0.0,0.0,142,146,160,167,180,192,0.0,153.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +786,786,0.0,7980.7,0.0,1603189399.1999998,165.56291390728478,3.02,0.0,0.0,17.5,768,9.6,0.0,161.0,138.0,-58.0,5.0,48.0,12.0,55.52782910917176,473.14285714285717,114.87741163881284,2.0,52.2302151,6.843323599999999,3.02,7980.7,0.0,0.0,7980.7,2478.199999809265,0.0,0.0,0.0,0.0,0.0,3.02,247.0,511.0,1.0,4.0,782,3.02,0.0,0.0,0.0,161.0,0.0,0.0,142,146,160,167,180,192,0.0,138.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +787,787,0.0,7990.9,0.0,1603189402.5,166.66666666666666,3.0,0.0,0.0,18.0,769,10.3,0.0,160.0,144.0,-58.0,7.0,48.0,17.0,55.752638133905236,480.0,120.49763725715005,-16.0,52.23014970000001,6.8434300000000015,3.0,7990.9,0.0,0.0,7990.9,2481.5,0.0,0.0,0.0,0.0,0.0,3.0,248.0,536.0,1.0,4.0,783,3.0,0.0,0.0,160.0,160.0,0.0,0.0,142,146,160,167,180,192,0.0,144.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +788,788,0.0,8001.1,0.0,1603189405.9,167.22408026755855,2.99,0.0,0.0,17.5,770,10.1,0.0,159.0,146.0,-58.0,6.0,50.0,17.0,62.04729082644294,500.57142857142856,113.7533665151454,-16.0,52.2300847,6.843535,2.99,8001.1,0.0,0.0,8001.1,2484.9000000953674,0.0,0.0,0.0,0.0,0.0,2.99,276.0,506.0,1.0,4.0,784,2.99,0.0,0.0,159.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,146.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +789,789,0.0,8011.3,0.0,1603189409.3,167.78523489932888,2.98,0.0,0.0,17.5,771,10.1,0.0,161.0,151.0,-58.0,6.0,48.0,15.0,64.9698081479783,517.7142857142857,129.4899982464896,-22.0,52.2300204,6.8436402,2.98,8011.3,0.0,0.0,8011.3,2488.2999999523163,0.0,0.0,0.0,0.0,0.0,2.98,289.00000000000006,575.9999999999999,1.0,4.0,785,2.9799999999999995,0.0,0.0,0.0,161.0,0.0,0.0,142,146,160,167,180,192,0.0,151.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +790,790,0.0,8021.4,0.0,1603189412.6999998,168.3501683501683,2.97,0.0,0.0,17.5,772,10.2,0.0,161.0,137.0,-57.0,7.0,47.0,13.0,57.55111033177316,469.7142857142857,113.07893944094492,-11.0,52.2299556,6.8437448000000005,2.97,8021.4,0.0,0.0,8021.4,2491.699999809265,0.0,0.0,0.0,0.0,0.0,2.97,256.0,503.0,1.0,4.0,786,2.9700000000000006,0.0,0.0,0.0,161.0,0.0,0.0,142,146,160,167,180,192,0.0,137.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +791,791,0.0,8031.5,0.0,1603189416.1,170.06802721088437,2.94,0.0,0.0,17.5,773,10.1,0.0,161.0,145.0,-57.0,6.0,49.0,15.0,60.24881862857502,497.14285714285717,116.22626578721376,-12.0,52.2298906,6.8438490000000005,2.94,8031.5,0.0,0.0,8031.5,2495.0999999046326,0.0,0.0,0.0,0.0,0.0,2.94,268.0,517.0,1.0,4.0,787,2.94,0.0,0.0,0.0,161.0,0.0,0.0,142,146,160,167,180,192,0.0,145.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +792,792,0.0,8041.7,0.0,1603189419.5,171.23287671232876,2.92,0.0,0.0,18.0,774,10.2,0.0,161.0,152.0,-59.0,5.0,47.0,12.0,63.62095399957736,506.6666666666667,117.79992896034818,0.0,52.22982620000001,6.8439553,2.92,8041.7,0.0,0.0,8041.7,2498.5,0.0,0.0,0.0,0.0,0.0,2.92,283.0,524.0,1.0,4.0,788,2.92,0.0,0.0,0.0,161.0,0.0,0.0,142,146,160,167,180,192,0.0,152.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +793,793,0.0,8051.7,0.0,1603189423.1999998,170.64846416382252,2.93,0.0,0.0,18.0,775,10.0,0.0,161.0,145.0,-58.0,7.0,49.0,15.0,57.775919356506655,483.3333333333333,119.14878310874913,-18.0,52.22976370000001,6.844060099999999,2.93,8051.7,0.0,0.0,8051.7,2502.199999809265,0.0,0.0,0.0,0.0,0.0,2.93,257.0,530.0,1.0,4.0,789,2.93,0.0,0.0,0.0,161.0,0.0,0.0,142,146,160,167,180,192,0.0,145.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +794,794,0.0,8060.9,0.0,1603189426.1999998,171.23287671232876,2.92,0.0,0.0,17.5,776,9.2,0.0,161.0,151.0,-58.0,9.0,47.0,13.0,58.89996448017409,517.7142857142857,131.96289751855798,-14.0,52.2297066,6.8441568,2.92,8060.9,0.0,0.0,8060.9,2505.199999809265,0.0,0.0,0.0,0.0,0.0,2.92,262.0,587.0,1.0,4.0,790,2.92,0.0,0.0,0.0,161.0,0.0,0.0,142,146,160,167,180,192,0.0,151.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +795,795,0.0,8071.2,0.0,1603189429.5,169.4915254237288,2.95,0.0,0.0,18.0,777,10.3,0.0,162.0,154.0,-57.0,7.0,49.0,15.0,59.574391554374564,513.3333333333334,126.79228994968771,-16.0,52.2296441,6.8442683,2.95,8071.2,0.0,0.0,8071.2,2508.5,0.0,0.0,0.0,0.0,0.0,2.95,265.0,564.0,1.0,4.0,791,2.95,0.0,0.0,0.0,162.0,0.0,0.0,142,146,160,167,180,192,0.0,154.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +796,796,0.0,8081.1,0.0,1603189432.9,167.78523489932888,2.98,0.0,0.0,17.5,778,9.9,0.0,159.0,146.0,-59.0,7.0,49.0,13.0,61.82248180170944,500.57142857142856,116.90069286141424,-17.0,52.2295833,6.844375,2.98,8081.1,0.0,0.0,8081.1,2511.9000000953674,0.0,0.0,0.0,0.0,0.0,2.98,275.0,520.0,1.0,4.0,792,2.9799999999999995,0.0,0.0,159.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,146.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +797,797,0.0,8091.1,0.0,1603189436.3,169.4915254237288,2.95,0.0,0.0,18.0,779,10.0,0.0,159.0,146.0,-57.0,7.0,47.0,14.0,58.675155455440596,486.6666666666667,127.01709897442123,-14.0,52.2295224,6.8444823,2.95,8091.1,0.0,0.0,8091.1,2515.2999999523163,0.0,0.0,0.0,0.0,0.0,2.95,261.0,565.0,1.0,4.0,793,2.95,0.0,0.0,159.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,146.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +798,798,0.0,8101.2,0.0,1603189439.6999998,169.4915254237288,2.95,0.0,0.0,17.5,780,10.2,0.0,161.0,152.0,-58.0,7.0,47.0,14.0,62.04729082644294,521.1428571428571,127.9163350733552,-10.0,52.2294592,6.8445884,2.95,8101.2,0.0,0.0,8101.2,2518.699999809265,0.0,0.0,0.0,0.0,0.0,2.95,276.0,569.0,1.0,4.0,794,2.95,0.0,0.0,0.0,161.0,0.0,0.0,142,146,160,167,180,192,0.0,152.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +799,799,0.0,8111.0,0.0,1603189442.9,168.3501683501683,2.97,0.0,0.0,18.0,781,9.8,0.0,163.0,137.0,-56.0,6.0,46.0,11.0,54.6285930102378,456.6666666666667,106.78428674840723,-5.0,52.229396,6.844688099999999,2.97,8111.0,0.0,0.0,8111.0,2521.9000000953674,0.0,0.0,0.0,0.0,0.0,2.97,243.0,475.0,1.0,4.0,795,2.9700000000000006,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,137.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +800,800,0.0,8120.3,0.0,1603189446.1999998,168.9189189189189,2.96,0.0,0.0,19.0,782,9.4,0.0,163.0,168.0,-59.0,7.0,47.0,11.0,62.272099851176435,530.5263157894736,125.6682448260203,-17.0,52.22933670000001,6.844786,2.96,8120.3,0.0,0.0,8120.3,2525.199999809265,0.0,0.0,0.0,0.0,0.0,2.96,277.0,559.0,1.0,4.0,796,2.9600000000000004,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,168.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +801,801,0.0,8130.0,0.0,1603189449.3,167.78523489932888,2.98,0.0,0.0,18.0,783,9.7,0.0,162.0,159.0,-59.0,6.0,47.0,11.0,62.272099851176435,530.0,122.07130043028448,-15.0,52.2292757,6.8448872000000005,2.98,8130.0,0.0,0.0,8130.0,2528.2999999523163,0.0,0.0,0.0,0.0,0.0,2.98,277.0,543.0,1.0,4.0,797,2.9799999999999995,0.0,0.0,0.0,162.0,0.0,0.0,142,146,160,167,180,192,0.0,159.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +802,802,0.0,8140.4,0.0,1603189452.6999998,167.22408026755855,2.99,0.0,0.0,17.5,784,10.4,0.0,161.0,149.0,-58.0,6.0,47.0,13.0,57.55111033177316,510.85714285714283,122.07130043028448,-24.0,52.2292095,6.8449942,2.99,8140.4,0.0,0.0,8140.4,2531.699999809265,0.0,0.0,0.0,0.0,0.0,2.99,256.0,543.0,1.0,4.0,798,2.99,0.0,0.0,0.0,161.0,0.0,0.0,142,146,160,167,180,192,0.0,149.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +803,803,0.0,8150.4,0.0,1603189456.1999998,166.66666666666666,3.0,0.0,0.0,18.0,785,10.0,0.0,161.0,159.0,-58.0,6.0,47.0,12.0,60.4736276533085,530.0,124.31939067761937,-14.0,52.2291455,6.8450967999999985,3.0,8150.4,0.0,0.0,8150.4,2535.199999809265,0.0,0.0,0.0,0.0,0.0,3.0,269.0,553.0,1.0,4.0,799,3.0,0.0,0.0,0.0,161.0,0.0,0.0,142,146,160,167,180,192,0.0,159.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +804,804,0.0,8160.3,0.0,1603189459.3,163.3986928104575,3.06,0.0,0.0,18.0,786,9.9,0.0,162.0,147.0,-59.0,6.0,48.0,14.0,57.775919356506655,490.0,118.24954700981516,-17.0,52.22908220000001,6.8451997,3.06,8160.3,0.0,0.0,8160.3,2538.2999999523163,0.0,0.0,0.0,0.0,0.0,3.06,257.0,526.0,1.0,4.0,800,3.06,0.0,0.0,0.0,162.0,0.0,0.0,142,146,160,167,180,192,0.0,147.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +805,805,0.0,8171.3,0.0,1603189462.6999998,160.25641025641025,3.12,0.0,0.0,18.0,787,11.0,0.0,160.0,147.0,-60.0,6.0,47.0,11.0,54.6285930102378,490.0,107.90833187207468,2.0,52.2290113,6.8453114,3.12,8171.3,0.0,0.0,8171.3,2541.699999809265,0.0,0.0,0.0,0.0,0.0,3.12,243.0,480.0,1.0,4.0,801,3.12,0.0,0.0,160.0,160.0,0.0,0.0,142,146,160,167,180,192,0.0,147.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +806,806,0.0,8180.9,0.0,1603189466.0,161.81229773462783,3.09,0.0,0.0,18.5,788,9.6,0.0,159.0,151.0,-58.0,7.0,46.0,12.0,58.45034643070712,489.72972972972974,110.83084919361002,-4.0,52.2289508,6.8454122,3.09,8180.9,0.0,0.0,8180.9,2545.0,0.0,0.0,0.0,0.0,0.0,3.09,260.0,493.0,1.0,4.0,802,3.09,0.0,0.0,159.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,151.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +807,807,0.0,8191.3,0.0,1603189469.3,163.3986928104575,3.06,0.0,0.0,18.5,789,10.4,0.0,158.0,161.0,-59.0,6.0,49.0,13.0,64.52019009851129,522.1621621621622,126.34267190022075,-18.0,52.2288845,6.8455189,3.06,8191.3,0.0,0.0,8191.3,2548.2999999523163,0.0,0.0,0.0,0.0,0.0,3.06,286.99999999999994,562.0,1.0,4.0,803,3.06,0.0,0.0,158.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,161.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +808,808,0.0,8201.1,0.0,1603189472.5,162.86644951140067,3.07,0.0,0.0,18.0,790,9.9,0.0,156.0,152.0,-59.0,7.0,49.0,14.0,61.82248180170944,506.6666666666667,121.17206433135051,-15.0,52.2288225,6.8456220000000005,3.07,8201.1,0.0,0.0,8201.1,2551.5,0.0,0.0,0.0,0.0,0.0,3.07,275.0,539.0,1.0,4.0,804,3.0699999999999994,0.0,0.0,156.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,152.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +809,809,0.0,8211.7,0.0,1603189475.9,163.93442622950818,3.05,0.0,0.0,17.5,791,10.5,0.0,156.0,126.0,-59.0,7.0,48.0,14.0,51.481266663968974,432.0,100.93925210533651,-12.0,52.2287557,6.8457319000000005,3.05,8211.7,0.0,0.0,8211.7,2554.9000000953674,0.0,0.0,0.0,0.0,0.0,3.05,229.0,449.0,1.0,4.0,805,3.0500000000000003,0.0,0.0,156.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,126.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +810,810,0.0,8221.8,0.0,1603189479.3,166.66666666666666,3.0,0.0,0.0,18.0,792,10.1,0.0,160.0,143.0,-58.0,5.0,48.0,16.0,57.101492282306175,476.6666666666667,114.20298456461235,-24.0,52.2286925,6.8458379,3.0,8221.8,0.0,0.0,8221.8,2558.2999999523163,0.0,0.0,0.0,0.0,0.0,3.0,254.0,508.0,1.0,4.0,806,3.0,0.0,0.0,160.0,160.0,0.0,0.0,142,146,160,167,180,192,0.0,143.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +811,811,0.0,8231.6,0.0,1603189482.5,166.66666666666666,3.0,0.0,0.0,18.0,793,9.8,0.0,160.0,149.0,-58.0,6.0,50.0,15.0,60.698436678042,496.6666666666667,113.30374846567841,-17.0,52.2286303,6.8459399,3.0,8231.6,0.0,0.0,8231.6,2561.5,0.0,0.0,0.0,0.0,0.0,3.0,270.0,504.0,1.0,4.0,807,3.0,0.0,0.0,160.0,160.0,0.0,0.0,142,146,160,167,180,192,0.0,149.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +812,812,0.0,8242.1,0.0,1603189486.1999998,166.11295681063126,3.01,0.0,0.0,17.5,794,10.5,0.0,159.0,131.0,-59.0,6.0,49.0,16.0,51.70607568870245,449.14285714285717,110.38123114414304,-15.0,52.2285632,6.846047500000001,3.01,8242.1,0.0,0.0,8242.1,2565.199999809265,0.0,0.0,0.0,0.0,0.0,3.01,230.0,491.0,1.0,4.0,808,3.01,0.0,0.0,159.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,131.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +813,813,0.0,8252.0,0.0,1603189489.3,164.4736842105263,3.04,0.0,0.0,17.5,795,10.0,0.0,159.0,134.0,-59.0,5.0,47.0,13.0,52.83012081236989,459.42857142857144,104.08657845160536,2.0,52.22850070000001,6.8461522,3.04,8252.0,0.0,0.0,8252.0,2568.2999999523163,0.0,0.0,0.0,0.0,0.0,3.04,235.0,463.0,1.0,4.0,809,3.0400000000000005,0.0,0.0,159.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,134.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +814,814,0.0,8262.2,0.0,1603189492.6,163.3986928104575,3.06,0.0,0.0,18.0,796,10.2,0.0,160.0,152.0,-57.0,7.0,48.0,14.0,61.59767277697596,506.6666666666667,117.5751199356147,-17.0,52.2284369,6.846260000000001,3.06,8262.2,0.0,0.0,8262.2,2571.5999999046326,0.0,0.0,0.0,0.0,0.0,3.06,274.0,523.0,1.0,4.0,810,3.06,0.0,0.0,160.0,160.0,0.0,0.0,142,146,160,167,180,192,0.0,152.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +815,815,0.0,8272.8,0.0,1603189495.9,160.77170418006432,3.11,0.0,0.0,18.5,797,10.6,0.0,162.0,158.0,-60.0,8.0,47.0,14.0,63.62095399957736,512.4324324324324,122.97053652921842,-16.0,52.2283693,6.8463695000000016,3.11,8272.8,0.0,0.0,8272.8,2574.9000000953674,0.0,0.0,0.0,0.0,0.0,3.11,283.0,547.0,1.0,4.0,811,3.11,0.0,0.0,0.0,162.0,0.0,0.0,142,146,160,167,180,192,0.0,158.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +816,816,0.0,8283.2,0.0,1603189499.1,157.7287066246057,3.17,0.0,0.0,18.0,798,10.4,0.0,159.0,142.0,-59.0,7.0,48.0,15.0,58.675155455440596,473.3333333333333,112.85413041621143,-15.0,52.22830310000001,6.846476299999999,3.17,8283.2,0.0,0.0,8283.2,2578.0999999046326,0.0,0.0,0.0,0.0,0.0,3.17,261.0,502.0,1.0,4.0,812,3.1699999999999995,0.0,0.0,159.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,142.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +817,817,0.0,8293.8,0.0,1603189502.5,157.7287066246057,3.17,0.0,0.0,18.0,799,10.6,0.0,158.0,158.0,-59.0,6.0,47.0,13.0,64.07057204904433,526.6666666666666,122.07130043028448,-17.0,52.228236,6.8465873,3.17,8293.8,0.0,0.0,8293.8,2581.5,0.0,0.0,0.0,0.0,0.0,3.17,285.0,543.0,1.0,4.0,813,3.1699999999999995,0.0,0.0,158.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,158.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +818,818,0.0,8304.6,0.0,1603189505.9,157.7287066246057,3.17,0.0,0.0,18.0,800,10.8,0.0,158.0,148.0,-59.0,6.0,48.0,13.0,58.89996448017409,493.3333333333333,121.396873356084,-16.0,52.2281674,6.8466996,3.17,8304.6,0.0,0.0,8304.6,2584.9000000953674,0.0,0.0,0.0,0.0,0.0,3.17,262.0,540.0,1.0,4.0,814,3.1699999999999995,0.0,0.0,158.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,148.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +819,819,0.0,8315.0,0.0,1603189509.1,155.76323987538942,3.21,0.0,0.0,18.0,801,10.4,0.0,160.0,140.0,-61.0,7.0,50.0,15.0,54.178974960770816,466.6666666666667,103.4121513774049,-4.0,52.2281001,6.8468054,3.21,8315.0,0.0,0.0,8315.0,2588.0999999046326,0.0,0.0,0.0,0.0,0.0,3.21,241.0,460.0,1.0,4.0,815,3.21,0.0,0.0,160.0,160.0,0.0,0.0,142,146,160,167,180,192,0.0,140.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +820,820,0.0,8326.1,0.0,1603189512.6999998,158.7301587301587,3.15,0.0,0.0,16.5,802,11.1,0.0,160.0,143.0,-58.0,7.0,49.0,15.0,65.19461717271179,520.0,124.09458165288588,-20.0,52.2280287,6.8469190000000015,3.15,8326.1,0.0,0.0,8326.1,2591.699999809265,0.0,0.0,0.0,0.0,0.0,3.15,290.00000000000006,552.0,1.0,4.0,816,3.1500000000000004,0.0,0.0,160.0,160.0,0.0,0.0,142,146,160,167,180,192,0.0,143.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +821,821,0.0,8336.4,0.0,1603189516.1999998,162.86644951140067,3.07,0.0,0.0,18.0,803,10.2,0.0,159.0,148.0,-60.0,8.0,48.0,13.0,58.675155455440596,493.3333333333333,121.62168238081749,-13.0,52.2279611,6.8470205,3.07,8336.4,0.0,0.0,8336.4,2595.199999809265,0.0,0.0,0.0,0.0,0.0,3.07,261.0,541.0,1.0,4.0,817,3.0699999999999994,0.0,0.0,159.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,148.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +822,822,0.0,8347.5,0.0,1603189519.5,159.7444089456869,3.13,0.0,0.0,17.5,804,11.1,0.0,157.0,148.0,-58.0,6.0,46.0,12.0,59.574391554374564,507.42857142857144,115.3270296882798,-29.0,52.22789,6.8471342,3.13,8347.5,0.0,0.0,8347.5,2598.5,0.0,0.0,0.0,0.0,0.0,3.13,265.0,513.0,1.0,4.0,818,3.13,0.0,0.0,157.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,148.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +823,823,0.0,8358.3,0.0,1603189522.9,155.76323987538942,3.21,0.0,0.0,17.5,805,10.9,0.0,158.0,148.0,-59.0,8.0,48.0,14.0,62.721717900643405,507.42857142857144,118.24954700981516,-16.0,52.227821,6.847247200000001,3.21,8358.3,0.0,0.0,8358.3,2601.9000000953674,0.0,0.0,0.0,0.0,0.0,3.21,279.0,526.0,1.0,4.0,819,3.21,0.0,0.0,158.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,148.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +824,824,0.0,8369.3,0.0,1603189526.3,155.2795031055901,3.22,0.0,0.0,17.5,806,10.9,0.0,160.0,142.0,-59.0,7.0,47.0,13.0,62.04729082644294,486.85714285714283,115.55183871301331,-30.0,52.2277503,6.8473583,3.22,8369.3,0.0,0.0,8369.3,2605.2999999523163,0.0,0.0,0.0,0.0,0.0,3.22,276.0,514.0,1.0,4.0,820,3.22,0.0,0.0,160.0,160.0,0.0,0.0,142,146,160,167,180,192,0.0,142.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +825,825,0.0,8380.2,0.0,1603189529.6999998,155.76323987538942,3.21,0.0,0.0,17.5,807,11.0,0.0,161.0,147.0,-59.0,7.0,48.0,13.0,64.52019009851129,504.0,117.5751199356147,-24.0,52.22768,6.8474705999999985,3.21,8380.2,0.0,0.0,8380.2,2608.699999809265,0.0,0.0,0.0,0.0,0.0,3.21,286.99999999999994,523.0,1.0,4.0,821,3.21,0.0,0.0,0.0,161.0,0.0,0.0,142,146,160,167,180,192,0.0,147.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +826,826,0.0,8391.0,0.0,1603189533.1,155.76323987538942,3.21,0.0,0.0,18.0,808,10.8,0.0,161.0,126.0,-57.0,6.0,46.0,15.0,52.15569373816943,420.0,106.55947772367372,-14.0,52.2276095,6.8475795,3.21,8391.0,0.0,0.0,8391.0,2612.0999999046326,0.0,0.0,0.0,0.0,0.0,3.21,232.0,474.0,1.0,4.0,822,3.21,0.0,0.0,0.0,161.0,0.0,0.0,142,146,160,167,180,192,0.0,126.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +827,827,0.0,8401.6,0.0,1603189536.5,157.23270440251568,3.18,0.0,0.0,17.5,809,10.6,0.0,161.0,144.0,-58.0,7.0,47.0,12.0,58.22553740597362,493.7142857142857,118.47435603454865,-16.0,52.22754000000001,6.8476864,3.18,8401.6,0.0,0.0,8401.6,2615.5,0.0,0.0,0.0,0.0,0.0,3.18,259.0,527.0,1.0,4.0,823,3.180000000000001,0.0,0.0,0.0,161.0,0.0,0.0,142,146,160,167,180,192,0.0,144.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +828,828,0.0,8412.4,0.0,1603189540.1999998,160.77170418006432,3.11,0.0,0.0,17.5,810,10.8,0.0,162.0,138.0,-57.0,6.0,46.0,13.0,55.52782910917176,473.14285714285717,117.5751199356147,-17.0,52.2274683,6.8477925000000015,3.11,8412.4,0.0,0.0,8412.4,2619.199999809265,0.0,0.0,0.0,0.0,0.0,3.11,247.0,523.0,1.0,4.0,824,3.11,0.0,0.0,0.0,162.0,0.0,0.0,142,146,160,167,180,192,0.0,138.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +829,829,0.0,8422.7,0.0,1603189543.3,161.81229773462783,3.09,0.0,0.0,17.5,811,10.3,0.0,164.0,139.0,-59.0,6.0,48.0,12.0,59.34958252964107,476.57142857142856,105.66024162473978,-7.0,52.2273993,6.8478919000000005,3.09,8422.7,0.0,0.0,8422.7,2622.2999999523163,0.0,0.0,0.0,0.0,0.0,3.09,264.0,470.0,1.0,4.0,825,3.09,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,139.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +830,830,0.0,8433.4,0.0,1603189546.6999998,161.29032258064515,3.1,0.0,0.0,17.5,812,10.8,0.0,165.0,142.0,-57.0,8.0,48.0,13.0,59.799200579108046,486.85714285714283,115.3270296882798,-14.0,52.227329,6.8480000999999975,3.1,8433.4,0.0,0.0,8433.4,2625.699999809265,0.0,0.0,0.0,0.0,0.0,3.1,266.0,513.0,1.0,4.0,826,3.1,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,142.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +831,831,0.0,8443.8,0.0,1603189550.1999998,161.29032258064515,3.1,0.0,0.0,17.5,813,10.4,0.0,166.0,149.0,-58.0,8.0,49.0,15.0,63.39614497484386,510.85714285714283,123.64496360341889,-19.0,52.22726110000001,6.8481048,3.1,8443.8,0.0,0.0,8443.8,2629.199999809265,0.0,0.0,0.0,0.0,0.0,3.1,282.0,550.0,1.0,4.0,827,3.1,0.0,0.0,0.0,166.0,0.0,0.0,142,146,160,167,180,192,0.0,149.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +832,832,0.0,8454.6,0.0,1603189553.5,160.77170418006432,3.11,0.0,0.0,17.5,814,10.8,0.0,163.0,147.0,-57.0,5.0,47.0,12.0,64.7449991232448,504.0,114.87741163881284,-17.0,52.22719,6.848212599999999,3.11,8454.6,0.0,0.0,8454.6,2632.5,0.0,0.0,0.0,0.0,0.0,3.11,287.99999999999994,511.0,1.0,4.0,828,3.11,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,147.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +833,833,0.0,8465.4,0.0,1603189557.0,158.7301587301587,3.15,0.0,0.0,17.5,815,10.8,0.0,164.0,148.0,-58.0,9.0,49.0,14.0,64.52019009851129,507.42857142857144,117.79992896034818,-17.0,52.2271196,6.848322099999999,3.15,8465.4,0.0,0.0,8465.4,2636.0,0.0,0.0,0.0,0.0,0.0,3.15,286.99999999999994,524.0,1.0,4.0,829,3.1500000000000004,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,148.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +834,834,0.0,8476.1,0.0,1603189560.3,159.2356687898089,3.14,0.0,0.0,17.5,816,10.6,0.0,164.0,136.0,-59.0,8.0,47.0,10.0,57.32630130703967,466.2857142857143,106.78428674840723,-4.0,52.22704810000001,6.8484255,3.14,8476.1,0.0,0.0,8476.1,2639.2999999523163,0.0,0.0,0.0,0.0,0.0,3.14,255.0,475.0,1.0,4.0,830,3.140000000000001,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,136.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +835,835,0.0,8485.7,0.0,1603189563.5,166.66666666666666,3.0,0.0,0.0,18.0,817,9.6,0.0,163.0,158.0,-58.0,10.0,50.0,15.0,66.31866229637922,526.6666666666666,129.26518922175615,-19.0,52.226983,6.8485188,3.0,8485.7,0.0,0.0,8485.7,2642.5,0.0,0.0,0.0,0.0,0.0,3.0,295.0,575.0,1.0,4.0,831,3.0,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,158.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +836,836,0.0,8496.2,0.0,1603189567.1999998,171.8213058419244,2.91,0.0,0.0,17.5,818,10.4,0.0,162.0,134.0,-59.0,5.0,48.0,12.0,57.55111033177316,459.42857142857144,102.28810625373742,-4.0,52.2269139,6.8486224,2.91,8496.2,0.0,0.0,8496.2,2646.199999809265,0.0,0.0,0.0,0.0,0.0,2.91,256.0,455.0,1.0,4.0,832,2.91,0.0,0.0,0.0,162.0,0.0,0.0,142,146,160,167,180,192,0.0,134.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +837,837,0.0,8507.2,0.0,1603189570.6999998,169.4915254237288,2.95,0.0,0.0,16.0,819,11.1,0.0,162.0,115.0,-56.0,8.0,47.0,16.0,54.40378398550431,431.25,115.77664773774679,-21.0,52.22684260000001,6.848735499999999,2.95,8507.2,0.0,0.0,8507.2,2649.699999809265,0.0,0.0,0.0,0.0,0.0,2.95,242.0,515.0,1.0,4.0,833,2.95,0.0,0.0,0.0,162.0,0.0,0.0,142,146,160,167,180,192,115.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +838,838,0.0,8517.4,0.0,1603189574.1,168.3501683501683,2.97,0.0,0.0,18.0,820,10.2,0.0,163.0,147.0,-59.0,9.0,48.0,14.0,58.22553740597362,490.0,132.63732459275843,-18.0,52.2267761,6.8488378,2.97,8517.4,0.0,0.0,8517.4,2653.0999999046326,0.0,0.0,0.0,0.0,0.0,2.97,259.0,590.0,1.0,4.0,834,2.9700000000000006,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,147.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +839,839,0.0,8527.9,0.0,1603189577.5,166.66666666666666,3.0,0.0,0.0,17.5,821,10.5,0.0,164.0,138.0,-58.0,8.0,48.0,15.0,59.574391554374564,473.14285714285717,110.38123114414304,-17.0,52.2267079,6.8489435,3.0,8527.9,0.0,0.0,8527.9,2656.5,0.0,0.0,0.0,0.0,0.0,3.0,265.0,491.0,1.0,4.0,835,3.0,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,138.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +840,840,0.0,8538.2,0.0,1603189580.9,164.4736842105263,3.04,0.0,0.0,18.0,822,10.3,0.0,162.0,144.0,-58.0,7.0,48.0,16.0,60.92324570277549,480.0,119.37359213348259,-22.0,52.2266415,6.849048599999999,3.04,8538.2,0.0,0.0,8538.2,2659.9000000953674,0.0,0.0,0.0,0.0,0.0,3.04,271.0,531.0,1.0,4.0,836,3.0400000000000005,0.0,0.0,0.0,162.0,0.0,0.0,142,146,160,167,180,192,0.0,144.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +841,841,0.0,8548.1,0.0,1603189584.1,163.93442622950818,3.05,0.0,0.0,18.0,823,10.0,0.0,162.0,148.0,-58.0,6.0,47.0,13.0,58.22553740597362,493.3333333333333,118.02473798508169,-19.0,52.226577,6.8491497999999975,3.05,8548.1,0.0,0.0,8548.1,2663.0999999046326,0.0,0.0,0.0,0.0,0.0,3.05,259.0,525.0,1.0,4.0,837,3.0500000000000003,0.0,0.0,0.0,162.0,0.0,0.0,142,146,160,167,180,192,0.0,148.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +842,842,0.0,8558.8,0.0,1603189587.5,162.86644951140067,3.07,0.0,0.0,18.0,824,10.7,0.0,161.0,146.0,-58.0,5.0,48.0,16.0,57.101492282306175,486.6666666666667,120.7224462818835,-18.0,52.2265078,6.8492584,3.07,8558.8,0.0,0.0,8558.8,2666.5,0.0,0.0,0.0,0.0,0.0,3.07,254.0,537.0,1.0,4.0,838,3.0699999999999994,0.0,0.0,0.0,161.0,0.0,0.0,142,146,160,167,180,192,0.0,146.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +843,843,0.0,8569.0,0.0,1603189590.6999998,161.29032258064515,3.1,0.0,0.0,18.5,825,10.2,0.0,160.0,146.0,-58.0,6.0,47.0,14.0,58.00072838124014,473.5135135135135,115.10222066354632,-22.0,52.2264411,6.8493613,3.1,8569.0,0.0,0.0,8569.0,2669.699999809265,0.0,0.0,0.0,0.0,0.0,3.1,258.0,512.0,1.0,4.0,839,3.1,0.0,0.0,160.0,160.0,0.0,0.0,142,146,160,167,180,192,0.0,146.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +844,844,0.0,8579.2,0.0,1603189594.1999998,160.77170418006432,3.11,0.0,0.0,18.5,826,10.2,0.0,164.0,136.0,-59.0,8.0,46.0,12.0,55.07821105970478,441.0810810810811,104.08657845160536,-1.0,52.2263743,6.8494633,3.11,8579.2,0.0,0.0,8579.2,2673.199999809265,0.0,0.0,0.0,0.0,0.0,3.11,245.0,463.0,1.0,4.0,840,3.11,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,136.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +845,845,0.0,8588.7,0.0,1603189597.1999998,160.25641025641025,3.12,0.0,0.0,18.5,827,9.5,0.0,163.0,143.0,-57.0,7.0,48.0,15.0,54.85340203497128,463.7837837837838,114.42779358934584,-15.0,52.2263121,6.8495586,3.12,8588.7,0.0,0.0,8588.7,2676.199999809265,0.0,0.0,0.0,0.0,0.0,3.12,244.0,509.0,1.0,4.0,841,3.12,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,143.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +846,846,0.0,8599.5,0.0,1603189600.5,159.2356687898089,3.14,0.0,0.0,18.5,828,10.8,0.0,163.0,145.0,-58.0,6.0,47.0,13.0,55.30302008443826,470.27027027027026,114.87741163881284,-16.0,52.2262403,6.8496651,3.14,8599.5,0.0,0.0,8599.5,2679.5,0.0,0.0,0.0,0.0,0.0,3.14,246.0,511.0,1.0,4.0,842,3.140000000000001,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,145.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +847,847,0.0,8609.5,0.0,1603189603.6999998,159.7444089456869,3.13,0.0,0.0,18.0,829,10.0,0.0,162.0,151.0,-58.0,7.0,46.0,12.0,57.32630130703967,503.3333333333333,123.64496360341889,-14.0,52.226174,6.8497634000000005,3.13,8609.5,0.0,0.0,8609.5,2682.699999809265,0.0,0.0,0.0,0.0,0.0,3.13,255.0,550.0,1.0,4.0,843,3.13,0.0,0.0,0.0,162.0,0.0,0.0,142,146,160,167,180,192,0.0,151.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +848,848,0.0,8620.2,0.0,1603189607.1,160.77170418006432,3.11,0.0,0.0,17.5,830,10.7,0.0,164.0,151.0,-59.0,7.0,47.0,12.0,60.92324570277549,517.7142857142857,117.5751199356147,-15.0,52.2261014,6.849867,3.11,8620.2,0.0,0.0,8620.2,2686.0999999046326,0.0,0.0,0.0,0.0,0.0,3.11,271.0,523.0,1.0,4.0,844,3.11,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,151.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +849,849,0.0,8630.9,0.0,1603189610.5,159.2356687898089,3.14,0.0,0.0,17.5,831,10.7,0.0,163.0,140.0,-58.0,8.0,48.0,15.0,56.65187423283921,480.0,122.74572750448492,-18.0,52.22603,6.8499718,3.14,8630.9,0.0,0.0,8630.9,2689.5,0.0,0.0,0.0,0.0,0.0,3.14,252.0,546.0,1.0,4.0,845,3.140000000000001,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,140.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +850,850,0.0,8641.4,0.0,1603189614.0,159.7444089456869,3.13,0.0,0.0,18.0,832,10.5,0.0,161.0,145.0,-59.0,8.0,49.0,15.0,61.14805472750896,483.3333333333333,113.30374846567841,-18.0,52.22596160000001,6.850077900000001,3.13,8641.4,0.0,0.0,8641.4,2693.0,0.0,0.0,0.0,0.0,0.0,3.13,272.0,504.0,1.0,4.0,846,3.13,0.0,0.0,0.0,161.0,0.0,0.0,142,146,160,167,180,192,0.0,145.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +851,851,0.0,8651.8,0.0,1603189617.1999998,159.2356687898089,3.14,0.0,0.0,18.0,833,10.4,0.0,161.0,142.0,-59.0,9.0,48.0,15.0,55.07821105970478,473.3333333333333,121.396873356084,-18.0,52.2258923,6.8501799,3.14,8651.8,0.0,0.0,8651.8,2696.199999809265,0.0,0.0,0.0,0.0,0.0,3.14,245.0,540.0,1.0,4.0,847,3.140000000000001,0.0,0.0,0.0,161.0,0.0,0.0,142,146,160,167,180,192,0.0,142.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +852,852,0.0,8662.4,0.0,1603189620.5,159.2356687898089,3.14,0.0,0.0,18.0,834,10.6,0.0,161.0,140.0,-59.0,6.0,49.0,14.0,56.65187423283921,466.6666666666667,104.98581455053932,-2.0,52.2258221,6.8502856,3.14,8662.4,0.0,0.0,8662.4,2699.5,0.0,0.0,0.0,0.0,0.0,3.14,252.0,467.0,1.0,4.0,848,3.140000000000001,0.0,0.0,0.0,161.0,0.0,0.0,142,146,160,167,180,192,0.0,140.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +853,853,0.0,8672.4,0.0,1603189623.8,162.86644951140067,3.07,0.0,0.0,18.0,835,10.0,0.0,162.0,147.0,-58.0,7.0,47.0,14.0,56.87668325757269,490.0,119.59840115821608,-16.0,52.22575689999999,6.8503856,3.07,8672.4,0.0,0.0,8672.4,2702.7999999523163,0.0,0.0,0.0,0.0,0.0,3.07,253.0,532.0,1.0,4.0,849,3.0699999999999994,0.0,0.0,0.0,162.0,0.0,0.0,142,146,160,167,180,192,0.0,147.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +854,854,0.0,8682.4,0.0,1603189627.1999998,163.3986928104575,3.06,0.0,0.0,18.0,836,10.1,0.0,164.0,154.0,-59.0,7.0,48.0,14.0,64.52019009851129,513.3333333333334,120.49763725715005,-18.0,52.2256923,6.850488900000001,3.06,8682.4,0.0,0.0,8682.4,2706.199999809265,0.0,0.0,0.0,0.0,0.0,3.06,286.99999999999994,536.0,1.0,4.0,850,3.06,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,154.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +855,855,0.0,8693.0,0.0,1603189630.4,159.7444089456869,3.13,0.0,0.0,18.0,837,10.6,0.0,164.0,151.0,-57.0,5.0,48.0,14.0,59.574391554374564,503.3333333333333,119.82321018294958,-16.0,52.2256237,6.8505965,3.13,8693.0,0.0,0.0,8693.0,2709.4000000953674,0.0,0.0,0.0,0.0,0.0,3.13,265.0,533.0,1.0,4.0,851,3.13,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,151.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +856,856,0.0,8703.9,0.0,1603189633.8,156.25,3.2,0.0,0.0,18.0,838,10.9,0.0,166.0,150.0,-61.0,6.0,49.0,12.0,58.00072838124014,500.0,114.87741163881284,3.0,52.2255527,6.8507069000000005,3.2,8703.9,0.0,0.0,8703.9,2712.7999999523163,0.0,0.0,0.0,0.0,0.0,3.2,258.0,511.0,1.0,4.0,852,3.2,0.0,0.0,0.0,166.0,0.0,0.0,142,146,160,167,180,192,0.0,150.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +857,857,0.0,8714.5,0.0,1603189637.1,157.23270440251568,3.18,0.0,0.0,18.0,839,10.6,0.0,166.0,154.0,-60.0,7.0,47.0,14.0,60.02400960384154,513.3333333333334,118.47435603454865,-20.0,52.2254855,6.8508164,3.18,8714.5,0.0,0.0,8714.5,2716.0999999046326,0.0,0.0,0.0,0.0,0.0,3.18,267.0,527.0,1.0,4.0,853,3.180000000000001,0.0,0.0,0.0,166.0,0.0,0.0,142,146,160,167,180,192,0.0,154.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +858,858,0.0,8725.3,0.0,1603189640.6,158.7301587301587,3.15,0.0,0.0,18.0,840,10.8,0.0,165.0,143.0,-59.0,6.0,47.0,13.0,55.977447158638725,476.6666666666667,119.37359213348259,-22.0,52.2254164,6.8509277000000015,3.15,8725.3,0.0,0.0,8725.3,2719.5999999046326,0.0,0.0,0.0,0.0,0.0,3.15,249.0,531.0,1.0,4.0,854,3.1500000000000004,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,143.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +859,859,0.0,8736.0,0.0,1603189643.9,158.7301587301587,3.15,0.0,0.0,17.5,841,10.7,0.0,165.0,139.0,-58.0,6.0,46.0,14.0,56.65187423283921,476.57142857142856,110.38123114414304,-16.0,52.2253489,6.8510385,3.15,8736.0,0.0,0.0,8736.0,2722.9000000953674,0.0,0.0,0.0,0.0,0.0,3.15,252.0,491.0,1.0,4.0,855,3.1500000000000004,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,139.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +860,860,0.0,8746.4,0.0,1603189647.4,161.81229773462783,3.09,0.0,0.0,17.5,842,10.5,0.0,166.0,140.0,-58.0,7.0,49.0,15.0,61.14805472750896,480.0,118.92397408401564,-18.0,52.2252828,6.8511477,3.09,8746.4,0.0,0.0,8746.4,2726.4000000953674,0.0,0.0,0.0,0.0,0.0,3.09,272.0,529.0,1.0,4.0,856,3.09,0.0,0.0,0.0,166.0,0.0,0.0,142,146,160,167,180,192,0.0,140.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +861,861,0.0,8756.9,0.0,1603189650.6999998,165.01650165016503,3.03,0.0,0.0,17.5,843,10.5,0.0,166.0,129.0,-58.0,9.0,47.0,14.0,53.72935691130385,442.2857142857143,112.85413041621143,-21.0,52.2252171,6.8512581999999975,3.03,8756.9,0.0,0.0,8756.9,2729.699999809265,0.0,0.0,0.0,0.0,0.0,3.03,239.0,502.0,1.0,4.0,857,3.03,0.0,0.0,0.0,166.0,0.0,0.0,142,146,160,167,180,192,0.0,129.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +862,862,0.0,8766.8,0.0,1603189654.1999998,167.22408026755855,2.99,0.0,0.0,17.5,844,9.8,0.0,165.0,137.0,-59.0,8.0,46.0,13.0,55.07821105970478,469.7142857142857,111.50527626781047,-17.0,52.2251558,6.8513619000000014,2.99,8766.8,0.0,0.0,8766.8,2733.199999809265,0.0,0.0,0.0,0.0,0.0,2.99,245.0,496.0,1.0,4.0,858,2.99,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,137.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +863,863,0.0,8777.0,0.0,1603189657.4,165.56291390728478,3.02,0.0,0.0,17.5,845,10.3,0.0,166.0,128.0,-59.0,7.0,46.0,11.0,54.178974960770816,438.85714285714283,100.71444308060305,-3.0,52.2250891,6.8514664000000005,3.02,8777.0,0.0,0.0,8777.0,2736.4000000953674,0.0,0.0,0.0,0.0,0.0,3.02,241.0,448.00000000000006,1.0,4.0,859,3.02,0.0,0.0,0.0,166.0,0.0,0.0,142,146,160,167,180,192,0.0,128.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +864,864,0.0,8787.2,0.0,1603189660.8,163.93442622950818,3.05,0.0,0.0,18.0,846,10.1,0.0,166.0,142.0,-58.0,8.0,47.0,14.0,56.42706520810572,473.3333333333333,118.92397408401564,-19.0,52.2250235,6.8515689,3.05,8787.2,0.0,0.0,8787.2,2739.7999999523163,0.0,0.0,0.0,0.0,0.0,3.05,251.0,529.0,1.0,4.0,860,3.0500000000000003,0.0,0.0,0.0,166.0,0.0,0.0,142,146,160,167,180,192,0.0,142.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +865,865,0.0,8797.7,0.0,1603189664.1999998,163.3986928104575,3.06,0.0,0.0,18.0,847,10.5,0.0,165.0,151.0,-59.0,7.0,48.0,14.0,61.59767277697596,503.3333333333333,116.00145676248027,-23.0,52.2249551,6.8516748,3.06,8797.7,0.0,0.0,8797.7,2743.199999809265,0.0,0.0,0.0,0.0,0.0,3.06,274.0,516.0,1.0,4.0,861,3.06,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,151.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +866,866,0.0,8808.4,0.0,1603189667.6,160.25641025641025,3.12,0.0,0.0,17.5,848,10.7,0.0,164.0,143.0,-59.0,7.0,49.0,13.0,58.675155455440596,490.2857142857143,120.49763725715005,-25.0,52.2248838,6.8517800000000015,3.12,8808.4,0.0,0.0,8808.4,2746.5999999046326,0.0,0.0,0.0,0.0,0.0,3.12,261.0,536.0,1.0,4.0,862,3.12,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,143.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +867,867,0.0,8819.1,0.0,1603189671.0,159.7444089456869,3.13,0.0,0.0,17.5,849,10.7,0.0,164.0,147.0,-60.0,8.0,47.0,14.0,55.752638133905236,504.0,124.31939067761937,-16.0,52.2248113,6.8518830999999984,3.13,8819.1,0.0,0.0,8819.1,2750.0,0.0,0.0,0.0,0.0,0.0,3.13,248.0,553.0,1.0,4.0,863,3.13,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,147.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +868,868,0.0,8829.5,0.0,1603189674.4,161.29032258064515,3.1,0.0,0.0,17.5,850,10.5,0.0,167.0,140.0,-58.0,6.0,48.0,14.0,54.40378398550431,480.0,115.3270296882798,-16.0,52.2247422,6.8519875,3.1,8829.5,0.0,0.0,8829.5,2753.4000000953674,0.0,0.0,0.0,0.0,0.0,3.1,242.0,513.0,1.0,4.0,864,3.1,0.0,0.0,0.0,167.0,167.0,0.0,142,146,160,167,180,192,0.0,140.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +869,869,0.0,8839.8,0.0,1603189677.8,166.11295681063126,3.01,0.0,0.0,17.5,851,10.3,0.0,168.0,151.0,-59.0,6.0,48.0,14.0,60.4736276533085,517.7142857142857,120.04801920768308,-18.0,52.2246742,6.8520899,3.01,8839.8,0.0,0.0,8839.8,2756.7999999523163,0.0,0.0,0.0,0.0,0.0,3.01,269.0,534.0,1.0,4.0,865,3.01,0.0,0.0,0.0,0.0,168.0,0.0,142,146,160,167,180,192,0.0,151.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +870,870,0.0,8850.1,0.0,1603189681.1999998,166.66666666666666,3.0,0.0,0.0,17.5,852,10.3,0.0,169.0,151.0,-59.0,8.0,48.0,14.0,67.89232546951365,517.7142857142857,118.47435603454865,-18.0,52.2246069,6.8521933000000015,3.0,8850.1,0.0,0.0,8850.1,2760.199999809265,0.0,0.0,0.0,0.0,0.0,3.0,302.0,527.0,1.0,4.0,866,3.0,0.0,0.0,0.0,0.0,169.0,0.0,142,146,160,167,180,192,0.0,151.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +871,871,0.0,8861.3,0.0,1603189684.6,159.7444089456869,3.13,0.0,0.0,17.5,853,11.2,0.0,167.0,139.0,-59.0,8.0,49.0,12.0,58.675155455440596,476.57142857142856,112.40451236674446,1.0,52.2245334,6.852305499999999,3.13,8861.3,0.0,0.0,8861.3,2763.5999999046326,0.0,0.0,0.0,0.0,0.0,3.13,261.0,500.00000000000006,1.0,4.0,867,3.13,0.0,0.0,0.0,167.0,167.0,0.0,142,146,160,167,180,192,0.0,139.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +872,872,0.0,8871.8,0.0,1603189688.0,158.2278481012658,3.16,0.0,0.0,18.0,854,10.5,0.0,164.0,155.0,-59.0,6.0,48.0,12.0,62.04729082644294,516.6666666666666,117.79992896034818,-16.0,52.2244669,6.852413799999999,3.16,8871.8,0.0,0.0,8871.8,2767.0,0.0,0.0,0.0,0.0,0.0,3.16,276.0,524.0,1.0,4.0,868,3.16,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,155.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +873,873,0.0,8882.0,0.0,1603189691.1999998,159.7444089456869,3.13,0.0,0.0,18.0,855,10.2,0.0,163.0,149.0,-58.0,6.0,48.0,13.0,60.24881862857502,496.6666666666667,114.42779358934584,-26.0,52.22440260000001,6.8525204,3.13,8882.0,0.0,0.0,8882.0,2770.199999809265,0.0,0.0,0.0,0.0,0.0,3.13,268.0,509.0,1.0,4.0,869,3.13,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,149.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +874,874,0.0,8892.7,0.0,1603189694.5,159.7444089456869,3.13,0.0,0.0,17.5,856,10.7,0.0,162.0,145.0,-57.0,7.0,48.0,14.0,60.02400960384154,497.14285714285717,119.14878310874913,-12.0,52.22433570000001,6.8526333,3.13,8892.7,0.0,0.0,8892.7,2773.5,0.0,0.0,0.0,0.0,0.0,3.13,267.0,530.0,1.0,4.0,870,3.13,0.0,0.0,0.0,162.0,0.0,0.0,142,146,160,167,180,192,0.0,145.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +875,875,0.0,8903.0,0.0,1603189698.0,161.81229773462783,3.09,0.0,0.0,18.0,857,10.3,0.0,160.0,148.0,-58.0,7.0,47.0,12.0,62.04729082644294,493.3333333333333,118.02473798508169,-13.0,52.2242721,6.8527433,3.09,8903.0,0.0,0.0,8903.0,2777.0,0.0,0.0,0.0,0.0,0.0,3.09,276.0,525.0,1.0,4.0,871,3.09,0.0,0.0,160.0,160.0,0.0,0.0,142,146,160,167,180,192,0.0,148.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +876,876,0.0,8913.6,0.0,1603189701.4,163.3986928104575,3.06,0.0,0.0,17.5,858,10.6,0.0,162.0,152.0,-59.0,9.0,48.0,13.0,63.62095399957736,521.1428571428571,118.69916505928214,-15.0,52.2242061,6.8528542,3.06,8913.6,0.0,0.0,8913.6,2780.4000000953674,0.0,0.0,0.0,0.0,0.0,3.06,283.0,528.0,1.0,4.0,872,3.06,0.0,0.0,0.0,162.0,0.0,0.0,142,146,160,167,180,192,0.0,152.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +877,877,0.0,8923.7,0.0,1603189704.6,162.86644951140067,3.07,0.0,0.0,18.0,859,10.1,0.0,164.0,143.0,-59.0,7.0,48.0,14.0,57.55111033177316,476.6666666666667,113.7533665151454,-20.0,52.2241419,6.8529599,3.07,8923.7,0.0,0.0,8923.7,2783.5999999046326,0.0,0.0,0.0,0.0,0.0,3.07,256.0,506.0,1.0,4.0,873,3.0699999999999994,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,143.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +878,878,0.0,8934.3,0.0,1603189708.1999998,165.01650165016503,3.03,0.0,0.0,17.5,860,10.6,0.0,165.0,145.0,-59.0,7.0,47.0,12.0,58.00072838124014,497.14285714285717,115.10222066354632,-15.0,52.22407570000001,6.8530710999999975,3.03,8934.3,0.0,0.0,8934.3,2787.199999809265,0.0,0.0,0.0,0.0,0.0,3.03,258.0,512.0,1.0,4.0,874,3.03,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,145.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +879,879,0.0,8944.3,0.0,1603189711.3,164.4736842105263,3.04,0.0,0.0,17.5,861,10.0,0.0,166.0,137.0,-59.0,6.0,48.0,13.0,56.42706520810572,469.7142857142857,106.78428674840723,0.0,52.2240125,6.8531762,3.04,8944.3,0.0,0.0,8944.3,2790.2999999523163,0.0,0.0,0.0,0.0,0.0,3.04,251.0,475.0,1.0,4.0,875,3.0400000000000005,0.0,0.0,0.0,166.0,0.0,0.0,142,146,160,167,180,192,0.0,137.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +880,880,0.0,8955.3,0.0,1603189714.8,160.77170418006432,3.11,0.0,0.0,18.5,862,10.9,0.0,165.0,139.0,-56.0,6.0,49.0,16.0,58.45034643070712,450.81081081081084,109.03237699574213,-18.0,52.2239434,6.8532902999999985,3.11,8955.3,0.0,0.0,8955.3,2793.7999999523163,0.0,0.0,0.0,0.0,0.0,3.11,260.0,485.0,1.0,4.0,876,3.11,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,139.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +881,881,0.0,8965.3,0.0,1603189718.0,160.25641025641025,3.12,0.0,0.0,18.0,863,10.0,0.0,165.0,149.0,-58.0,7.0,49.0,14.0,58.45034643070712,496.6666666666667,120.49763725715005,-11.0,52.2238804,6.853395299999999,3.12,8965.3,0.0,0.0,8965.3,2797.0,0.0,0.0,0.0,0.0,0.0,3.12,260.0,536.0,1.0,4.0,877,3.12,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,149.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +882,882,0.0,8975.6,0.0,1603189721.1999998,158.7301587301587,3.15,0.0,0.0,18.5,864,10.3,0.0,165.0,157.0,-58.0,6.0,48.0,13.0,60.02400960384154,509.18918918918916,119.82321018294958,-14.0,52.2238133,6.853499,3.15,8975.6,0.0,0.0,8975.6,2800.199999809265,0.0,0.0,0.0,0.0,0.0,3.15,267.0,533.0,1.0,4.0,878,3.1500000000000004,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,157.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +883,883,0.0,8985.8,0.0,1603189724.4,156.73981191222572,3.19,0.0,0.0,18.5,865,10.2,0.0,166.0,167.0,-59.0,6.0,48.0,12.0,62.272099851176435,541.6216216216217,123.19534555395192,-24.0,52.2237471,6.8536031,3.19,8985.8,0.0,0.0,8985.8,2803.4000000953674,0.0,0.0,0.0,0.0,0.0,3.19,277.0,548.0,1.0,4.0,879,3.19,0.0,0.0,0.0,166.0,0.0,0.0,142,146,160,167,180,192,0.0,167.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +884,884,0.0,8996.5,0.0,1603189727.6,154.32098765432102,3.24,0.0,0.0,18.5,866,10.7,0.0,164.0,157.0,-59.0,7.0,48.0,12.0,57.55111033177316,509.18918918918916,118.47435603454865,-16.0,52.2236783,6.8537127999999985,3.24,8996.5,0.0,0.0,8996.5,2806.5999999046326,0.0,0.0,0.0,0.0,0.0,3.24,256.0,527.0,1.0,4.0,880,3.24,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,157.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +885,885,0.0,9007.1,0.0,1603189730.6999998,151.9756838905775,3.29,0.0,0.0,19.0,867,10.6,0.0,165.0,162.0,-59.0,7.0,47.0,13.0,59.34958252964107,511.57894736842104,122.74572750448492,-20.0,52.2236117,6.853823200000001,3.29,9007.1,0.0,0.0,9007.1,2809.699999809265,0.0,0.0,0.0,0.0,0.0,3.29,264.0,546.0,1.0,4.0,881,3.29,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,162.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +886,886,0.0,9017.8,0.0,1603189734.0,150.60240963855424,3.32,0.0,0.0,19.0,868,10.7,0.0,165.0,148.0,-58.0,7.0,48.0,13.0,57.55111033177316,467.36842105263156,111.280467243077,-20.0,52.2235454,6.8539371,3.32,9017.8,0.0,0.0,9017.8,2813.0,0.0,0.0,0.0,0.0,0.0,3.32,256.0,495.0,1.0,4.0,882,3.3199999999999994,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,148.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +887,887,0.0,9027.6,0.0,1603189737.0,151.0574018126888,3.31,0.0,0.0,19.0,869,9.8,0.0,166.0,153.0,-59.0,7.0,48.0,14.0,57.55111033177316,483.1578947368421,109.48199504520909,-29.0,52.223484,6.8540410000000005,3.31,9027.6,0.0,0.0,9027.6,2816.0,0.0,0.0,0.0,0.0,0.0,3.31,256.0,487.0,1.0,4.0,883,3.3100000000000005,0.0,0.0,0.0,166.0,0.0,0.0,142,146,160,167,180,192,0.0,153.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +888,888,0.0,9038.2,0.0,1603189740.1999998,151.51515151515153,3.3,0.0,0.0,19.0,870,10.6,0.0,167.0,143.0,-59.0,7.0,46.0,11.0,54.178974960770816,451.57894736842104,104.76100552580584,-4.0,52.2234189,6.8541548,3.3,9038.2,0.0,0.0,9038.2,2819.199999809265,0.0,0.0,0.0,0.0,0.0,3.3,241.0,466.0,1.0,4.0,884,3.3,0.0,0.0,0.0,167.0,167.0,0.0,142,146,160,167,180,192,0.0,143.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +889,889,0.0,9048.6,0.0,1603189743.4,153.3742331288344,3.26,0.0,0.0,19.0,871,10.3,0.0,166.0,160.0,-59.0,7.0,48.0,13.0,62.272099851176435,505.2631578947368,114.20298456461235,-23.0,52.22335560000001,6.854265700000001,3.26,9048.6,0.0,0.0,9048.6,2822.4000000953674,0.0,0.0,0.0,0.0,0.0,3.26,277.0,508.0,1.0,4.0,885,3.26,0.0,0.0,0.0,166.0,0.0,0.0,142,146,160,167,180,192,0.0,160.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +890,890,0.0,9058.9,0.0,1603189746.6,155.76323987538942,3.21,0.0,0.0,19.0,872,10.4,0.0,166.0,142.0,-59.0,8.0,47.0,14.0,55.752638133905236,448.42105263157896,110.38123114414304,-16.0,52.2232919,6.8543765,3.21,9058.9,0.0,0.0,9058.9,2825.5999999046326,0.0,0.0,0.0,0.0,0.0,3.21,248.0,491.0,1.0,4.0,886,3.21,0.0,0.0,0.0,166.0,0.0,0.0,142,146,160,167,180,192,0.0,142.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +891,891,0.0,9069.3,0.0,1603189749.8,156.73981191222572,3.19,0.0,0.0,19.0,873,10.4,0.0,165.0,150.0,-60.0,6.0,47.0,13.0,56.65187423283921,473.6842105263158,103.86176942687187,0.0,52.2232285,6.8544880999999975,3.19,9069.3,0.0,0.0,9069.3,2828.7999999523163,0.0,0.0,0.0,0.0,0.0,3.19,252.0,462.0,1.0,4.0,887,3.19,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,150.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +892,892,0.0,9079.1,0.0,1603189752.8,156.25,3.2,0.0,0.0,19.5,874,9.8,0.0,164.0,137.0,-60.0,7.0,47.0,12.0,51.031648614501975,421.53846153846155,98.69116185800164,2.0,52.223166,6.8545887999999975,3.2,9079.1,0.0,0.0,9079.1,2831.7999999523163,0.0,0.0,0.0,0.0,0.0,3.2,227.0,439.0,1.0,4.0,888,3.2,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,137.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +893,893,0.0,9088.6,0.0,1603189755.8,156.73981191222572,3.19,0.0,0.0,19.5,875,9.5,0.0,164.0,177.0,-58.0,6.0,47.0,12.0,63.62095399957736,544.6153846153846,125.4434358012868,-18.0,52.22310529999999,6.8546859,3.19,9088.6,0.0,0.0,9088.6,2834.7999999523163,0.0,0.0,0.0,0.0,0.0,3.19,283.0,558.0,1.0,4.0,889,3.19,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,177.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +894,894,0.0,9098.9,0.0,1603189759.1999998,156.73981191222572,3.19,0.0,0.0,19.5,876,10.4,0.0,162.0,168.0,-59.0,6.0,47.0,12.0,60.02400960384154,516.9230769230769,122.97053652921842,-25.0,52.2230381,6.8547913000000005,3.19,9098.9,0.0,0.0,9098.9,2838.199999809265,0.0,0.0,0.0,0.0,0.0,3.19,267.0,547.0,1.0,4.0,890,3.19,0.0,0.0,0.0,162.0,0.0,0.0,142,146,160,167,180,192,0.0,168.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +895,895,0.0,9109.1,0.0,1603189762.1999998,154.32098765432102,3.24,0.0,0.0,19.0,877,10.2,0.0,163.0,180.0,-61.0,7.0,50.0,13.0,63.845763024310855,568.421052631579,133.3117516669589,-13.0,52.2229724,6.8548942,3.24,9109.1,0.0,0.0,9109.1,2841.199999809265,0.0,0.0,0.0,0.0,0.0,3.24,284.0,593.0,1.0,4.0,891,3.24,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,180.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +896,896,0.0,9119.7,0.0,1603189765.3,150.60240963855424,3.32,0.0,0.0,18.5,878,10.7,0.0,165.0,170.0,-60.0,6.0,48.0,13.0,61.14805472750896,551.3513513513514,128.59076214755564,-15.0,52.2229035,6.8550024999999986,3.32,9119.7,0.0,0.0,9119.7,2844.2999999523163,0.0,0.0,0.0,0.0,0.0,3.32,272.0,571.9999999999999,1.0,4.0,892,3.3199999999999994,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,170.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +897,897,0.0,9130.9,0.0,1603189768.6,148.80952380952382,3.36,0.0,0.0,18.5,879,11.2,0.0,166.0,166.0,-60.0,7.0,48.0,13.0,60.4736276533085,538.3783783783783,121.84649140555098,-13.0,52.2228312,6.855116099999999,3.36,9130.9,0.0,0.0,9130.9,2847.5999999046326,0.0,0.0,0.0,0.0,0.0,3.36,269.0,542.0,1.0,4.0,893,3.36,0.0,0.0,0.0,166.0,0.0,0.0,142,146,160,167,180,192,0.0,166.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +898,898,0.0,9141.5,0.0,1603189771.8,149.2537313432836,3.35,0.0,0.0,18.5,880,10.6,0.0,166.0,154.0,-60.0,7.0,48.0,14.0,57.101492282306175,499.4594594594595,118.02473798508169,-30.0,52.2227643,6.8552266,3.35,9141.5,0.0,0.0,9141.5,2850.7999999523163,0.0,0.0,0.0,0.0,0.0,3.35,254.0,525.0,1.0,4.0,894,3.35,0.0,0.0,0.0,166.0,0.0,0.0,142,146,160,167,180,192,0.0,154.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +899,899,0.0,9152.0,0.0,1603189775.0,150.60240963855424,3.32,0.0,0.0,19.0,881,10.6,0.0,166.0,163.0,-59.0,6.0,49.0,16.0,58.675155455440596,514.7368421052631,120.947255306617,-14.0,52.22270020000001,6.855340400000001,3.32,9152.0,0.0,0.0,9152.0,2854.0,0.0,0.0,0.0,0.0,0.0,3.32,261.0,538.0,1.0,4.0,895,3.3199999999999994,0.0,0.0,0.0,166.0,0.0,0.0,142,146,160,167,180,192,0.0,163.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +900,900,0.0,9162.6,0.0,1603189778.1999998,152.9051987767584,3.27,0.0,0.0,18.5,882,10.5,0.0,167.0,143.0,-60.0,6.0,48.0,14.0,55.752638133905236,463.7837837837838,103.86176942687187,-5.0,52.2226339,6.8554507,3.27,9162.6,0.0,0.0,9162.6,2857.199999809265,0.0,0.0,0.0,0.0,0.0,3.27,248.0,462.0,1.0,4.0,896,3.2700000000000005,0.0,0.0,0.0,167.0,167.0,0.0,142,146,160,167,180,192,0.0,143.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +901,901,0.0,9172.7,0.0,1603189781.4,155.76323987538942,3.21,0.0,0.0,18.5,883,10.1,0.0,166.0,145.0,-58.0,8.0,48.0,17.0,59.574391554374564,470.27027027027026,112.62932139147793,-15.0,52.2225714,6.855558099999999,3.21,9172.7,0.0,0.0,9172.7,2860.4000000953674,0.0,0.0,0.0,0.0,0.0,3.21,265.0,501.00000000000006,1.0,4.0,897,3.21,0.0,0.0,0.0,166.0,0.0,0.0,142,146,160,167,180,192,0.0,145.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +902,902,0.0,9182.9,0.0,1603189784.6,157.23270440251568,3.18,0.0,0.0,18.5,884,10.3,0.0,165.0,142.0,-59.0,6.0,48.0,16.0,59.574391554374564,460.5405405405405,109.93161309467608,-21.0,52.2225078,6.855667,3.18,9182.9,0.0,0.0,9182.9,2863.5999999046326,0.0,0.0,0.0,0.0,0.0,3.18,265.0,489.0,1.0,4.0,898,3.180000000000001,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,142.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +903,903,0.0,9193.1,0.0,1603189787.8,156.25,3.2,0.0,0.0,18.5,885,10.2,0.0,164.0,121.0,-60.0,8.0,48.0,17.0,48.109131292966616,392.43243243243245,93.97017233859836,-3.0,52.2224423,6.8557717999999985,3.2,9193.1,0.0,0.0,9193.1,2866.7999999523163,0.0,0.0,0.0,0.0,0.0,3.2,214.0,418.0,1.0,4.0,899,3.2,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,121.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +904,904,0.0,9203.1,0.0,1603189791.0,158.2278481012658,3.16,0.0,0.0,19.0,886,9.9,0.0,162.0,154.0,-58.0,8.0,50.0,17.0,56.65187423283921,486.3157894736842,110.15642211940956,-20.0,52.2223758,6.8558695000000025,3.16,9203.1,0.0,0.0,9203.1,2870.0,0.0,0.0,0.0,0.0,0.0,3.16,252.0,490.0,1.0,4.0,900,3.16,0.0,0.0,0.0,162.0,0.0,0.0,142,146,160,167,180,192,0.0,154.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +905,905,0.0,9213.0,0.0,1603189794.1999998,159.7444089456869,3.13,0.0,0.0,18.5,887,9.9,0.0,163.0,157.0,-58.0,6.0,49.0,13.0,64.52019009851129,509.18918918918916,122.74572750448492,-15.0,52.2223084,6.8559647,3.13,9213.0,0.0,0.0,9213.0,2873.199999809265,0.0,0.0,0.0,0.0,0.0,3.13,286.99999999999994,546.0,1.0,4.0,901,3.13,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,157.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +906,906,0.0,9223.2,0.0,1603189797.4,159.7444089456869,3.13,0.0,0.0,18.5,888,10.2,0.0,163.0,145.0,-60.0,6.0,48.0,12.0,53.95416593603733,470.27027027027026,111.50527626781047,-9.0,52.2222386,6.856061200000001,3.13,9223.2,0.0,0.0,9223.2,2876.4000000953674,0.0,0.0,0.0,0.0,0.0,3.13,240.0,496.0,1.0,4.0,902,3.13,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,145.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +907,907,0.0,9233.6,0.0,1603189800.8,162.33766233766232,3.08,0.0,0.0,18.0,889,10.4,0.0,164.0,143.0,-59.0,10.0,48.0,14.0,54.85340203497128,476.6666666666667,115.77664773774679,-19.0,52.2221685,6.856162400000001,3.08,9233.6,0.0,0.0,9233.6,2879.7999999523163,0.0,0.0,0.0,0.0,0.0,3.08,244.0,515.0,1.0,4.0,903,3.08,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,143.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +908,908,0.0,9243.4,0.0,1603189804.1999998,164.4736842105263,3.04,0.0,0.0,18.5,890,9.8,0.0,164.0,139.0,-58.0,9.0,48.0,15.0,54.85340203497128,450.81081081081084,112.17970334201095,-21.0,52.2221034,6.8562594,3.04,9243.4,0.0,0.0,9243.4,2883.199999809265,0.0,0.0,0.0,0.0,0.0,3.04,244.0,499.00000000000006,1.0,4.0,904,3.0400000000000005,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,139.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +909,909,0.0,9253.4,0.0,1603189807.1999998,161.81229773462783,3.09,0.0,0.0,18.0,891,10.0,0.0,163.0,146.0,-58.0,6.0,45.0,12.0,54.6285930102378,486.6666666666667,114.87741163881284,-14.0,52.2220377,6.8563588000000015,3.09,9253.4,0.0,0.0,9253.4,2886.199999809265,0.0,0.0,0.0,0.0,0.0,3.09,243.0,511.0,1.0,4.0,905,3.09,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,0.0,146.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +910,910,0.0,9265.5,0.0,1603189810.8,155.76323987538942,3.21,0.0,0.0,17.0,892,12.1,0.0,162.0,118.0,-56.0,7.0,46.0,15.0,51.25645763923547,416.47058823529414,104.98581455053932,-20.0,52.2219597,6.8564816,3.21,9265.5,0.0,0.0,9265.5,2889.7999999523163,0.0,0.0,0.0,0.0,0.0,3.21,228.0,467.0,1.0,4.0,906,3.21,0.0,0.0,0.0,162.0,0.0,0.0,142,146,160,167,180,192,118.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +911,911,0.0,9276.4,0.0,1603189814.1999998,155.2795031055901,3.22,0.0,0.0,17.5,893,10.9,0.0,163.0,124.0,-57.0,6.0,47.0,16.0,50.13241251556803,425.14285714285717,105.88505064947329,-19.0,52.22188970000001,6.8565936,3.22,9276.4,0.0,0.0,9276.4,2893.199999809265,0.0,0.0,0.0,0.0,0.0,3.22,223.00000000000003,471.0,1.0,4.0,907,3.22,0.0,0.0,0.0,163.0,0.0,0.0,142,146,160,167,180,192,124.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +912,912,0.0,9287.2,0.0,1603189817.6,158.2278481012658,3.16,0.0,0.0,17.5,894,10.8,0.0,165.0,118.0,-58.0,6.0,47.0,14.0,46.08585007036522,404.57142857142856,99.36558893220207,-9.0,52.2218199,6.8567031,3.16,9287.2,0.0,0.0,9287.2,2896.5999999046326,0.0,0.0,0.0,0.0,0.0,3.16,205.0,442.0,1.0,4.0,908,3.16,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,118.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +913,913,0.0,9298.1,0.0,1603189821.1999998,161.81229773462783,3.09,0.0,0.0,16.5,895,10.9,0.0,167.0,104.0,-55.0,8.0,49.0,17.0,45.41142299616476,378.1818181818182,93.74536331386489,-16.0,52.2217491,6.8568145000000005,3.09,9298.1,0.0,0.0,9298.1,2900.199999809265,0.0,0.0,0.0,0.0,0.0,3.09,202.0,417.0,1.0,4.0,909,3.09,0.0,0.0,0.0,167.0,167.0,0.0,142,146,160,167,180,192,104.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +914,914,0.0,9308.8,0.0,1603189824.8,168.3501683501683,2.97,0.0,0.0,17.5,896,10.7,0.0,167.0,31.0,-44.0,8.0,37.0,17.0,25.403419794884247,106.28571428571429,44.06256884776383,-9.0,52.2216779,6.8569201,2.97,9308.8,0.0,0.0,9308.8,2903.7999999523163,0.0,0.0,0.0,0.0,0.0,2.97,113.0,196.0,1.0,4.0,910,2.9700000000000006,0.0,0.0,0.0,167.0,167.0,0.0,142,146,160,167,180,192,31.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +915,915,0.0,9308.8,0.0,1603189824.8,168.3501683501683,2.97,0.0,0.0,17.5,896,10.7,0.0,167.0,31.0,18.0,8.0,24.0,17.0,0.0,106.28571428571429,2.472899272068378,18.0,52.2216779,6.8569201,2.97,9308.8,0.0,0.0,9308.8,2903.7999999523163,0.0,0.0,0.0,0.0,0.0,2.97,0.0,11.0,1.0,4.0,910,2.9700000000000006,0.0,0.0,0.0,167.0,167.0,0.0,142,146,160,167,180,192,31.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +916,916,0.0,9308.8,0.0,1603189824.8,168.3501683501683,2.97,0.0,0.0,17.5,896,10.7,0.0,167.0,124.0,-58.0,8.0,47.0,15.0,50.806839589768494,425.14285714285717,106.78428674840723,-19.0,52.2216779,6.8569201,2.97,9308.8,0.0,0.0,9308.8,2903.7999999523163,0.0,0.0,0.0,0.0,0.0,2.97,226.0,475.0,1.0,4.0,910,2.9700000000000006,0.0,0.0,0.0,167.0,167.0,0.0,142,146,160,167,180,192,124.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +917,917,0.0,9333.7,0.0,1603189845.6,316.4556962025316,1.58,0.0,0.0,9.5,897,24.9,0.0,161.0,31.0,-43.0,7.0,38.0,16.0,31.24845443795496,195.78947368421052,52.605311787636396,1.0,52.2215095,6.85716,1.58,9333.7,0.0,0.0,9333.7,2924.5999999046326,0.0,0.0,0.0,0.0,0.0,1.58,139.0,234.0,1.0,4.0,913,1.58,0.0,0.0,0.0,161.0,0.0,0.0,142,146,160,167,180,192,31.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +918,918,0.0,9333.7,0.0,1603189849.1999998,1851.8518518518522,0.27,0.0,0.0,23.0,898,0.0,0.0,162.0,31.0,-43.0,7.0,38.0,16.0,31.24845443795496,80.8695652173913,52.605311787636396,1.0,52.2215154,6.8571704,0.27,9333.7,0.0,0.0,9333.7,2928.199999809265,0.0,0.0,0.0,0.0,0.0,0.27,139.0,234.0,1.0,4.0,914,0.27,0.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +919,919,0.0,9333.9,0.0,1603189851.8,1724.1379310344828,0.29,0.0,0.0,16.0,899,0.2,0.0,161.0,42.0,-46.0,5.0,37.0,13.0,36.41906200682521,157.5,59.12477350490758,-7.0,52.2215159,6.857175099999999,0.29,9333.9,0.0,0.0,9333.9,2930.7999999523163,0.0,0.0,0.0,0.0,0.0,0.29,162.0,263.0,1.0,4.0,915,0.29,0.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +920,920,0.0,9333.9,0.0,1603189855.1999998,1428.571428571429,0.35,0.0,0.0,19.0,900,0.1,0.0,153.0,91.0,-16.0,1.0,35.0,11.0,43.83775982303033,287.36842105263156,87.45071062132719,0.0,52.2215276,6.8571747000000025,0.35,9333.9,0.0,0.0,9333.9,2934.199999809265,0.0,0.0,0.0,0.0,0.0,0.35,195.0,389.0,1.0,4.0,916,0.3499999999999999,0.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +921,921,0.0,9333.9,0.0,1603189856.6,757.5757575757574,0.66,0.0,0.0,35.5,901,0.0,0.0,151.0,104.0,-17.0,3.0,39.0,14.0,40.465624452027996,175.77464788732394,77.78392255778716,1.0,52.2215423,6.857170599999999,0.66,9333.9,0.0,0.0,9333.9,2935.5999999046326,0.0,0.0,0.0,0.0,0.0,0.66,180.0,346.0,1.0,4.0,917,0.6600000000000001,0.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +922,922,0.0,9333.9,0.0,1603189858.1999998,462.9629629629629,1.08,0.0,0.0,35.0,902,0.0,0.0,150.0,61.0,-8.0,4.0,30.0,11.0,26.97708296801867,104.57142857142857,51.031648614501975,9.0,52.2215583,6.8571615,1.08,9333.9,0.0,0.0,9333.9,2937.199999809265,0.0,0.0,0.0,0.0,0.0,1.08,120.0,227.0,1.0,4.0,918,1.0800000000000003,0.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +923,923,0.0,9333.9,0.0,1603189859.1999998,462.9629629629629,1.08,0.0,0.0,35.0,902,0.0,0.0,150.0,103.0,-18.0,2.0,37.0,12.0,40.91524250149497,176.57142857142858,79.58239475565506,1.0,52.2215583,6.8571615,1.08,9333.9,0.0,0.0,9333.9,2938.199999809265,0.0,0.0,0.0,0.0,0.0,1.08,182.0,354.0,1.0,4.0,918,1.0800000000000003,0.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +924,924,0.0,9333.9,0.0,1603189860.1999998,373.1343283582089,1.34,0.0,0.0,41.0,903,0.0,0.0,150.0,103.0,-18.0,2.0,37.0,12.0,40.91524250149497,150.73170731707316,79.58239475565506,1.0,52.2215844,6.8571393,1.34,9333.9,0.0,0.0,9333.9,2939.199999809265,0.0,0.0,0.0,0.0,0.0,1.34,182.0,354.0,1.0,4.0,919,1.34,0.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +925,925,0.0,9333.9,0.0,1603189861.1999998,331.1258278145696,1.51,0.0,0.0,47.5,904,0.0,0.0,149.0,82.0,-11.0,4.0,34.0,11.0,30.798836388487977,103.57894736842105,58.00072838124014,11.0,52.22159370000001,6.857129799999999,1.51,9333.9,0.0,0.0,9333.9,2940.199999809265,0.0,0.0,0.0,0.0,0.0,1.51,137.0,258.0,1.0,4.0,920,1.5099999999999996,0.0,0.0,149.0,0.0,0.0,0.0,142,146,160,167,180,192,82.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +926,926,0.0,9333.9,0.0,1603189862.6,314.46540880503136,1.59,0.0,0.0,44.0,905,0.0,0.0,149.0,82.0,-11.0,4.0,34.0,11.0,30.798836388487977,111.81818181818181,58.00072838124014,11.0,52.221613,6.857108,1.59,9333.9,0.0,0.0,9333.9,2941.5999999046326,0.0,0.0,0.0,0.0,0.0,1.59,137.0,258.0,1.0,4.0,921,1.5900000000000003,0.0,0.0,149.0,0.0,0.0,0.0,142,146,160,167,180,192,82.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +927,927,0.0,9333.9,0.0,1603189864.1999998,308.64197530864203,1.62,0.0,0.0,45.0,906,0.0,0.0,149.0,0.0,20.0,4.0,30.0,11.0,0.4496180494669778,0.0,2.472899272068378,21.0,52.2216284,6.8570878,1.62,9333.9,0.0,0.0,9333.9,2943.199999809265,0.0,0.0,0.0,0.0,0.0,1.62,2.0,11.0,1.0,4.0,922,1.6199999999999997,0.0,0.0,149.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +928,928,0.0,9340.1,0.0,1603189871.4,331.1258278145696,1.51,0.0,0.0,22.5,907,6.2,0.0,136.0,0.0,20.0,4.0,30.0,11.0,0.4496180494669778,0.0,2.472899272068378,21.0,52.2216888,6.8569996,1.51,9340.1,0.0,0.0,9340.1,2950.4000000953674,0.0,0.0,0.0,0.0,0.0,1.51,2.0,11.0,1.0,4.0,925,1.5099999999999996,136.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +929,929,0.0,9341.6,0.0,1603189872.8,387.59689922480624,1.29,0.0,0.0,10.0,908,1.5,0.0,135.0,100.0,-49.0,5.0,45.0,12.0,44.736995921964294,600.0,76.43506840938622,-11.0,52.2216985,6.8569843,1.29,9341.6,0.0,0.0,9341.6,2951.7999999523163,0.0,0.0,0.0,0.0,0.0,1.29,199.0,339.99999999999994,1.0,4.0,925,1.2899999999999998,0.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +930,930,0.0,9341.6,0.0,1603189872.8,387.59689922480624,1.29,0.0,0.0,10.0,908,1.5,0.0,135.0,0.0,22.0,5.0,34.0,12.0,0.4496180494669778,0.0,3.1473263462688448,23.0,52.2216985,6.8569843,1.29,9341.6,0.0,0.0,9341.6,2951.7999999523163,0.0,0.0,0.0,0.0,0.0,1.29,2.0,14.000000000000002,1.0,4.0,925,1.2899999999999998,0.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +931,931,0.0,9341.6,0.0,1603189872.8,387.59689922480624,1.29,0.0,0.0,10.0,908,1.5,0.0,135.0,0.0,24.0,5.0,31.0,12.0,0.8992360989339556,0.0,1.7984721978679112,29.0,52.2216985,6.8569843,1.29,9341.6,0.0,0.0,9341.6,2951.7999999523163,0.0,0.0,0.0,0.0,0.0,1.29,4.0,8.0,1.0,4.0,925,1.2899999999999998,0.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +932,932,0.0,9341.6,0.0,1603189872.8,387.59689922480624,1.29,0.0,0.0,10.0,908,1.5,0.0,135.0,1.0,20.0,5.0,26.0,12.0,1.7984721978679112,6.0,2.9225173215353566,25.0,52.2216985,6.8569843,1.29,9341.6,0.0,0.0,9341.6,2951.7999999523163,0.0,0.0,0.0,0.0,0.0,1.29,8.0,13.0,1.0,4.0,925,1.2899999999999998,0.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +933,933,0.0,9341.6,0.0,1603189872.8,387.59689922480624,1.29,0.0,0.0,10.0,908,1.5,0.0,135.0,0.0,26.0,5.0,30.0,12.0,0.4496180494669778,0.0,2.472899272068378,27.0,52.2216985,6.8569843,1.29,9341.6,0.0,0.0,9341.6,2951.7999999523163,0.0,0.0,0.0,0.0,0.0,1.29,2.0,11.0,1.0,4.0,925,1.2899999999999998,0.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +934,934,0.0,9341.6,0.0,1603189872.8,387.59689922480624,1.29,0.0,0.0,10.0,908,1.5,0.0,135.0,0.0,21.0,5.0,26.0,12.0,0.6744270742004667,0.0,2.472899272068378,22.0,52.2216985,6.8569843,1.29,9341.6,0.0,0.0,9341.6,2951.7999999523163,0.0,0.0,0.0,0.0,0.0,1.29,3.0,11.0,1.0,4.0,925,1.2899999999999998,0.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +935,935,0.0,9341.6,0.0,1603189872.8,387.59689922480624,1.29,0.0,0.0,10.0,908,1.5,0.0,135.0,0.0,22.0,5.0,29.0,12.0,0.4496180494669778,0.0,2.2480902473348894,22.0,52.2216985,6.8569843,1.29,9341.6,0.0,0.0,9341.6,2951.7999999523163,0.0,0.0,0.0,0.0,0.0,1.29,2.0,10.0,1.0,4.0,925,1.2899999999999998,0.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +936,936,0.0,9367.6,0.0,1603189898.4,568.1818181818181,0.88,0.0,0.0,16.0,909,26.0,0.0,115.0,162.0,-56.0,5.0,48.0,13.0,67.66751644478016,607.5,116.45107481194724,-19.0,52.2218896,6.856766499999999,0.88,9367.6,0.0,0.0,9367.6,2977.4000000953674,0.0,0.0,0.0,0.0,0.0,0.88,301.0,518.0,1.0,4.0,932,0.8800000000000001,0.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +937,937,0.0,9377.6,0.0,1603189902.0,223.2142857142857,2.24,0.0,0.0,17.5,910,10.0,0.0,116.0,152.0,-57.0,6.0,47.0,13.0,62.9465269253769,521.1428571428571,110.15642211940956,-8.0,52.2219658,6.8566892999999975,2.24,9377.6,0.0,0.0,9377.6,2981.0,0.0,0.0,0.0,0.0,0.0,2.24,280.0,490.0,1.0,4.0,933,2.24,116.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,152.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +938,938,0.0,9387.9,0.0,1603189905.1999998,170.06802721088437,2.94,0.0,0.0,18.5,911,10.3,0.0,117.0,135.0,-58.0,7.0,47.0,10.0,52.15569373816943,437.8378378378378,106.10985967420677,-2.0,52.22204489999999,6.8566108,2.94,9387.9,0.0,0.0,9387.9,2984.199999809265,0.0,0.0,0.0,0.0,0.0,2.94,232.0,472.0,1.0,4.0,934,2.94,117.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,135.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +939,939,0.0,9398.0,0.0,1603189908.4,158.7301587301587,3.15,0.0,0.0,18.5,912,10.1,0.0,119.0,141.0,-57.0,9.0,47.0,14.0,54.85340203497128,457.2972972972973,105.21062357527279,-17.0,52.2221206,6.8565282000000005,3.15,9398.0,0.0,0.0,9398.0,2987.4000000953674,0.0,0.0,0.0,0.0,0.0,3.15,244.0,468.0,1.0,4.0,935,3.1500000000000004,119.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,141.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +940,940,0.0,9408.5,0.0,1603189911.6,157.23270440251568,3.18,0.0,0.0,19.0,913,10.5,0.0,120.0,143.0,-57.0,5.0,48.0,14.0,53.72935691130385,451.57894736842104,104.76100552580584,-19.0,52.2221949,6.856434700000001,3.18,9408.5,0.0,0.0,9408.5,2990.5999999046326,0.0,0.0,0.0,0.0,0.0,3.18,239.0,466.0,1.0,4.0,936,3.180000000000001,120.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,143.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +941,941,0.0,9419.0,0.0,1603189914.8,154.79876160990713,3.23,0.0,0.0,19.0,914,10.5,0.0,124.0,152.0,-58.0,6.0,49.0,15.0,57.101492282306175,480.0,105.4354326000063,-27.0,52.222269,6.856338900000001,3.23,9419.0,0.0,0.0,9419.0,2993.7999999523163,0.0,0.0,0.0,0.0,0.0,3.23,254.0,469.0,1.0,4.0,937,3.23,124.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,152.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +942,942,0.0,9429.8,0.0,1603189918.1999998,153.3742331288344,3.26,0.0,0.0,19.0,915,10.8,0.0,127.0,142.0,-57.0,7.0,48.0,14.0,54.40378398550431,448.42105263157896,113.97817553987889,-19.0,52.2223435,6.8562378,3.26,9429.8,0.0,0.0,9429.8,2997.199999809265,0.0,0.0,0.0,0.0,0.0,3.26,242.0,507.0,1.0,4.0,938,3.26,127.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,142.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +943,943,0.0,9440.1,0.0,1603189921.1999998,151.9756838905775,3.29,0.0,0.0,18.0,916,10.4,0.0,129.0,134.0,-56.0,5.0,49.0,17.0,56.42706520810572,446.6666666666667,100.71444308060305,-10.0,52.2224154,6.8561414,3.29,9440.1,0.0,0.0,9440.1,3000.199999809265,0.0,0.0,0.0,0.0,0.0,3.29,251.0,448.00000000000006,1.0,4.0,939,3.29,129.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,134.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +944,944,0.0,9451.3,0.0,1603189924.4,149.70059880239518,3.34,0.0,0.0,18.5,917,11.2,0.0,131.0,139.0,-58.0,5.0,48.0,14.0,54.6285930102378,450.81081081081084,109.2571860204756,-21.0,52.2224928,6.8560367,3.34,9451.3,0.0,0.0,9451.3,3003.4000000953674,0.0,0.0,0.0,0.0,0.0,3.34,243.0,486.0,1.0,4.0,940,3.3400000000000007,131.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,139.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +945,945,0.0,9462.6,0.0,1603189927.8,148.3679525222552,3.37,0.0,0.0,18.0,918,11.3,0.0,131.0,133.0,-59.0,6.0,48.0,19.0,51.70607568870245,443.3333333333333,100.04001600640257,-23.0,52.2225711,6.855932000000001,3.37,9462.6,0.0,0.0,9462.6,3006.7999999523163,0.0,0.0,0.0,0.0,0.0,3.37,230.0,445.0,1.0,4.0,941,3.37,131.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,133.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +946,946,0.0,9473.8,0.0,1603189931.1999998,150.15015015015015,3.33,0.0,0.0,17.5,919,11.2,0.0,133.0,127.0,-59.0,10.0,47.0,14.0,49.682794466101036,435.42857142857144,101.61367917953699,-13.0,52.22264970000001,6.8558287,3.33,9473.8,0.0,0.0,9473.8,3010.199999809265,0.0,0.0,0.0,0.0,0.0,3.33,221.0,452.0,1.0,4.0,942,3.33,133.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,127.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +947,947,0.0,9485.0,0.0,1603189934.6,152.4390243902439,3.28,0.0,0.0,17.0,920,11.1,0.0,132.0,135.0,-59.0,8.0,47.0,14.0,55.30302008443826,476.47058823529414,107.90833187207468,-12.0,52.2227271,6.855724900000001,3.28,9485.0,0.0,0.0,9485.0,3013.5999999046326,0.0,0.0,0.0,0.0,0.0,3.28,246.0,480.0,1.0,4.0,943,3.28,132.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,135.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +948,948,0.0,9496.6,0.0,1603189938.1999998,153.3742331288344,3.26,0.0,0.0,17.5,921,11.7,0.0,134.0,136.0,-58.0,6.0,47.0,12.0,56.87668325757269,466.2857142857143,109.03237699574213,-18.0,52.2228069,6.8556139000000025,3.26,9496.6,0.0,0.0,9496.6,3017.199999809265,0.0,0.0,0.0,0.0,0.0,3.26,253.0,485.0,1.0,4.0,944,3.26,134.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,136.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +949,949,0.0,9508.1,0.0,1603189941.6,152.4390243902439,3.28,0.0,0.0,17.5,922,11.5,0.0,135.0,125.0,-59.0,5.0,50.0,16.0,50.806839589768494,428.57142857142856,100.26482503113606,-6.0,52.2228846,6.8555035,3.28,9508.1,0.0,0.0,9508.1,3020.5999999046326,0.0,0.0,0.0,0.0,0.0,3.28,226.0,446.00000000000006,1.0,4.0,945,3.28,135.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,125.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +950,950,0.0,9519.2,0.0,1603189945.1999998,152.9051987767584,3.27,0.0,0.0,17.5,923,11.1,0.0,138.0,157.0,-58.0,5.0,51.0,16.0,65.86904424691225,538.2857142857143,114.42779358934584,-14.0,52.22295870000001,6.8553937000000005,3.27,9519.2,0.0,0.0,9519.2,3024.199999809265,0.0,0.0,0.0,0.0,0.0,3.27,293.0,509.0,1.0,4.0,946,3.2700000000000005,138.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,157.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +951,951,0.0,9529.8,0.0,1603189948.1999998,152.4390243902439,3.28,0.0,0.0,17.5,924,10.6,0.0,138.0,150.0,-59.0,6.0,48.0,14.0,63.171335950110375,514.2857142857143,116.22626578721376,-12.0,52.2230295,6.855289999999999,3.28,9529.8,0.0,0.0,9529.8,3027.199999809265,0.0,0.0,0.0,0.0,0.0,3.28,281.0,517.0,1.0,4.0,947,3.28,138.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,150.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +952,952,0.0,9542.4,0.0,1603189951.8,147.49262536873155,3.39,0.0,0.0,17.5,925,12.7,0.0,141.0,133.0,-58.0,6.0,46.0,13.0,53.50454788657036,456.0,105.66024162473978,-29.0,52.2231141,6.8551668,3.39,9542.4,0.0,0.0,9542.4,3030.7999999523163,0.0,0.0,0.0,0.0,0.0,3.39,238.0,470.0,1.0,4.0,948,3.39,141.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,133.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +953,953,0.0,9553.8,0.0,1603189955.1999998,146.19883040935673,3.42,0.0,0.0,17.5,926,11.3,0.0,143.0,131.0,-58.0,8.0,47.0,15.0,50.58203056503501,449.14285714285717,109.03237699574213,-24.0,52.2231901,6.8550565,3.42,9553.8,0.0,0.0,9553.8,3034.199999809265,0.0,0.0,0.0,0.0,0.0,3.42,225.0,485.0,1.0,4.0,949,3.42,0.0,143.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,131.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +954,954,0.0,9565.1,0.0,1603189958.6,149.70059880239518,3.34,0.0,0.0,17.5,927,11.3,0.0,145.0,135.0,-58.0,7.0,47.0,14.0,52.15569373816943,462.85714285714283,106.78428674840723,-15.0,52.2232649,6.8549448,3.34,9565.1,0.0,0.0,9565.1,3037.5999999046326,0.0,0.0,0.0,0.0,0.0,3.34,232.0,475.0,1.0,4.0,950,3.3400000000000007,0.0,145.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,135.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +955,955,0.0,9575.9,0.0,1603189961.8,151.0574018126888,3.31,0.0,0.0,18.0,928,10.8,0.0,147.0,137.0,-59.0,5.0,47.0,12.0,52.38050276290291,456.6666666666667,100.93925210533651,-4.0,52.223336,6.8548364,3.31,9575.9,0.0,0.0,9575.9,3040.7999999523163,0.0,0.0,0.0,0.0,0.0,3.31,233.0,449.0,1.0,4.0,951,3.3100000000000005,0.0,0.0,147.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,137.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +956,956,0.0,9586.5,0.0,1603189965.0,151.51515151515153,3.3,0.0,0.0,18.5,929,10.6,0.0,149.0,144.0,-57.0,7.0,48.0,15.0,56.20225618337223,467.02702702702703,113.07893944094492,-17.0,52.22340560000001,6.8547302,3.3,9586.5,0.0,0.0,9586.5,3044.0,0.0,0.0,0.0,0.0,0.0,3.3,250.00000000000003,503.0,1.0,4.0,952,3.3,0.0,0.0,149.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,144.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +957,957,0.0,9597.8,0.0,1603189968.4,151.51515151515153,3.3,0.0,0.0,17.5,930,11.4,0.0,149.0,134.0,-58.0,6.0,46.0,13.0,51.93088471343594,459.42857142857144,106.55947772367372,-17.0,52.2234789,6.8546142,3.3,9597.8,0.0,0.0,9597.8,3047.4000000953674,0.0,0.0,0.0,0.0,0.0,3.3,231.0,474.0,1.0,4.0,953,3.3,0.0,0.0,149.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,134.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +958,958,0.0,9609.1,0.0,1603189971.8,152.9051987767584,3.27,0.0,0.0,17.5,931,11.3,0.0,149.0,130.0,-57.0,6.0,47.0,14.0,51.481266663968974,445.7142857142857,107.90833187207468,-23.0,52.2235507,6.854497200000001,3.27,9609.1,0.0,0.0,9609.1,3050.7999999523163,0.0,0.0,0.0,0.0,0.0,3.27,229.0,480.0,1.0,4.0,954,3.2700000000000005,0.0,0.0,149.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,130.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +959,959,0.0,9619.9,0.0,1603189975.1999998,154.32098765432102,3.24,0.0,0.0,18.0,932,10.7,0.0,148.0,131.0,-57.0,6.0,46.0,15.0,55.752638133905236,436.6666666666667,104.98581455053932,-22.0,52.2236195,6.8543867,3.24,9619.9,0.0,0.0,9619.9,3054.199999809265,0.0,0.0,0.0,0.0,0.0,3.24,248.0,467.0,1.0,4.0,955,3.24,0.0,0.0,148.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,131.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +960,960,0.0,9631.6,0.0,1603189978.6,152.4390243902439,3.28,0.0,0.0,17.5,933,11.8,0.0,149.0,127.0,-58.0,7.0,48.0,17.0,51.481266663968974,435.42857142857144,104.98581455053932,-11.0,52.2236945,6.8542655,3.28,9631.6,0.0,0.0,9631.6,3057.5999999046326,0.0,0.0,0.0,0.0,0.0,3.28,229.0,467.0,1.0,4.0,956,3.28,0.0,0.0,149.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,127.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +961,961,0.0,9643.0,0.0,1603189982.0,150.60240963855424,3.32,0.0,0.0,17.5,934,11.4,0.0,150.0,128.0,-57.0,6.0,48.0,17.0,52.38050276290291,438.85714285714283,103.18734235267141,-21.0,52.2237674,6.854149799999999,3.32,9643.0,0.0,0.0,9643.0,3061.0,0.0,0.0,0.0,0.0,0.0,3.32,233.0,459.0,1.0,4.0,957,3.3199999999999994,0.0,0.0,150.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,128.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +962,962,0.0,9654.1,0.0,1603189985.4,151.0574018126888,3.31,0.0,0.0,18.0,935,11.2,0.0,150.0,127.0,-58.0,8.0,47.0,17.0,53.05492983710339,423.3333333333333,100.26482503113606,-33.0,52.2238387,6.8540347000000015,3.31,9654.1,0.0,0.0,9654.1,3064.4000000953674,0.0,0.0,0.0,0.0,0.0,3.31,236.0,446.00000000000006,1.0,4.0,958,3.3100000000000005,0.0,0.0,150.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,127.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +963,963,0.0,9665.3,0.0,1603189988.8,151.9756838905775,3.29,0.0,0.0,17.5,936,11.1,0.0,150.0,127.0,-57.0,6.0,46.0,15.0,51.481266663968974,435.42857142857144,105.88505064947329,-20.0,52.2239099,6.853919900000001,3.29,9665.3,0.0,0.0,9665.3,3067.7999999523163,0.0,0.0,0.0,0.0,0.0,3.29,229.0,471.0,1.0,4.0,959,3.29,0.0,0.0,150.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,127.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +964,964,0.0,9676.5,0.0,1603189992.1999998,153.3742331288344,3.26,0.0,0.0,17.5,937,11.3,0.0,150.0,124.0,-58.0,6.0,47.0,15.0,51.70607568870245,425.14285714285717,98.01673478380116,-7.0,52.2239821,6.8538042,3.26,9676.5,0.0,0.0,9676.5,3071.199999809265,0.0,0.0,0.0,0.0,0.0,3.26,230.0,436.0,1.0,4.0,960,3.26,0.0,0.0,150.0,0.0,0.0,0.0,142,146,160,167,180,192,124.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +965,965,0.0,9687.0,0.0,1603189995.4,154.79876160990713,3.23,0.0,0.0,18.0,938,10.5,0.0,149.0,135.0,-57.0,7.0,46.0,15.0,51.93088471343594,450.0,105.66024162473978,-16.0,52.2240497,6.8536974000000015,3.23,9687.0,0.0,0.0,9687.0,3074.4000000953674,0.0,0.0,0.0,0.0,0.0,3.23,231.0,470.0,1.0,4.0,961,3.23,0.0,0.0,149.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,135.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +966,966,0.0,9698.3,0.0,1603189998.8,154.79876160990713,3.23,0.0,0.0,17.5,939,11.3,0.0,149.0,130.0,-57.0,7.0,48.0,16.0,51.70607568870245,445.7142857142857,107.6835228473412,-14.0,52.2241241,6.853584,3.23,9698.3,0.0,0.0,9698.3,3077.7999999523163,0.0,0.0,0.0,0.0,0.0,3.23,230.0,479.0,1.0,4.0,962,3.23,0.0,0.0,149.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,130.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +967,967,0.0,9709.2,0.0,1603190002.1999998,152.9051987767584,3.27,0.0,0.0,18.0,940,10.9,0.0,149.0,137.0,-59.0,8.0,46.0,14.0,52.605311787636396,456.6666666666667,107.90833187207468,-28.0,52.2241964,6.8534762,3.27,9709.2,0.0,0.0,9709.2,3081.199999809265,0.0,0.0,0.0,0.0,0.0,3.27,234.0,480.0,1.0,4.0,963,3.2700000000000005,0.0,0.0,149.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,137.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +968,968,0.0,9720.6,0.0,1603190005.5,149.2537313432836,3.35,0.0,0.0,18.0,941,11.4,0.0,150.0,139.0,-59.0,6.0,46.0,14.0,54.40378398550431,463.3333333333333,107.2339047978742,-22.0,52.2242716,6.8533638,3.35,9720.6,0.0,0.0,9720.6,3084.5,0.0,0.0,0.0,0.0,0.0,3.35,242.0,477.0,1.0,4.0,964,3.35,0.0,0.0,150.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,139.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +969,969,0.0,9732.1,0.0,1603190008.8,146.6275659824047,3.41,0.0,0.0,18.0,942,11.5,0.0,151.0,133.0,-58.0,6.0,46.0,15.0,51.25645763923547,443.3333333333333,106.10985967420677,-21.0,52.2243472,6.8532481,3.41,9732.1,0.0,0.0,9732.1,3087.7999999523163,0.0,0.0,0.0,0.0,0.0,3.41,228.0,472.0,1.0,4.0,965,3.41,0.0,0.0,151.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,133.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +970,970,0.0,9743.3,0.0,1603190012.1999998,148.80952380952382,3.36,0.0,0.0,18.0,943,11.2,0.0,155.0,135.0,-57.0,6.0,46.0,14.0,53.50454788657036,450.0,106.33466869894023,-18.0,52.2244217,6.8531372,3.36,9743.3,0.0,0.0,9743.3,3091.199999809265,0.0,0.0,0.0,0.0,0.0,3.36,238.0,473.0,1.0,4.0,966,3.36,0.0,0.0,155.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,135.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +971,971,0.0,9754.7,0.0,1603190015.6,150.60240963855424,3.32,0.0,0.0,18.0,944,11.4,0.0,157.0,133.0,-57.0,6.0,45.0,13.0,52.38050276290291,443.3333333333333,104.98581455053932,-27.0,52.2244974,6.8530257,3.32,9754.7,0.0,0.0,9754.7,3094.5999999046326,0.0,0.0,0.0,0.0,0.0,3.32,233.0,467.0,1.0,4.0,967,3.3199999999999994,0.0,0.0,157.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,133.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +972,972,0.0,9765.5,0.0,1603190018.8,150.60240963855424,3.32,0.0,0.0,18.5,945,10.8,0.0,156.0,137.0,-57.0,6.0,45.0,14.0,54.40378398550431,444.3243243243243,107.00909577314071,-18.0,52.2245689,6.8529187999999985,3.32,9765.5,0.0,0.0,9765.5,3097.7999999523163,0.0,0.0,0.0,0.0,0.0,3.32,242.0,476.0,1.0,4.0,968,3.3199999999999994,0.0,0.0,156.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,137.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +973,973,0.0,9776.6,0.0,1603190022.1999998,151.51515151515153,3.3,0.0,0.0,18.0,946,11.1,0.0,157.0,133.0,-57.0,8.0,47.0,14.0,55.52782910917176,443.3333333333333,110.38123114414304,-19.0,52.2246433,6.8528107999999985,3.3,9776.6,0.0,0.0,9776.6,3101.199999809265,0.0,0.0,0.0,0.0,0.0,3.3,247.0,491.0,1.0,4.0,969,3.3,0.0,0.0,157.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,133.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +974,974,0.0,9787.1,0.0,1603190025.4,153.84615384615384,3.25,0.0,0.0,17.5,947,10.5,0.0,154.0,142.0,-59.0,8.0,49.0,13.0,56.65187423283921,486.85714285714283,107.6835228473412,-3.0,52.2247141,6.8527084,3.25,9787.1,0.0,0.0,9787.1,3104.4000000953674,0.0,0.0,0.0,0.0,0.0,3.25,252.0,479.0,1.0,4.0,970,3.25,0.0,0.0,154.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,142.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +975,975,0.0,9797.8,0.0,1603190028.8,157.7287066246057,3.17,0.0,0.0,18.5,948,10.8,0.0,152.0,148.0,-57.0,5.0,46.0,12.0,56.42706520810572,480.0,113.97817553987889,-18.0,52.2247842,6.852599799999999,3.17,9797.8,0.0,0.0,9797.8,3107.7999999523163,0.0,0.0,0.0,0.0,0.0,3.17,251.0,507.0,1.0,4.0,971,3.1699999999999995,0.0,0.0,152.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,148.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +976,976,0.0,9808.5,0.0,1603190032.1999998,157.7287066246057,3.17,0.0,0.0,18.0,949,10.7,0.0,155.0,132.0,-57.0,6.0,46.0,14.0,51.25645763923547,440.0,104.53619650107237,-18.0,52.2248526,6.8524898,3.17,9808.5,0.0,0.0,9808.5,3111.199999809265,0.0,0.0,0.0,0.0,0.0,3.17,228.0,465.0,1.0,4.0,972,3.1699999999999995,0.0,0.0,155.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,132.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +977,977,0.0,9819.3,0.0,1603190035.3,153.3742331288344,3.26,0.0,0.0,17.5,950,10.8,0.0,155.0,129.0,-58.0,7.0,47.0,17.0,51.70607568870245,442.2857142857143,106.78428674840723,-14.0,52.2249201,6.8523761,3.26,9819.3,0.0,0.0,9819.3,3114.2999999523163,0.0,0.0,0.0,0.0,0.0,3.26,230.0,475.0,1.0,4.0,973,3.26,0.0,0.0,155.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,129.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +978,978,0.0,9831.2,0.0,1603190038.8,150.60240963855424,3.32,0.0,0.0,17.5,951,11.9,0.0,153.0,123.0,-57.0,8.0,46.0,14.0,53.05492983710339,421.7142857142857,106.10985967420677,-22.0,52.22499420000001,6.8522505,3.32,9831.2,0.0,0.0,9831.2,3117.7999999523163,0.0,0.0,0.0,0.0,0.0,3.32,236.0,472.0,1.0,4.0,974,3.3199999999999994,0.0,0.0,153.0,0.0,0.0,0.0,142,146,160,167,180,192,123.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +979,979,0.0,9842.4,0.0,1603190042.1999998,150.60240963855424,3.32,0.0,0.0,17.5,952,11.2,0.0,152.0,115.0,-57.0,8.0,46.0,17.0,49.682794466101036,394.2857142857143,98.01673478380116,-22.0,52.2250643,6.8521324,3.32,9842.4,0.0,0.0,9842.4,3121.199999809265,0.0,0.0,0.0,0.0,0.0,3.32,221.0,436.0,1.0,4.0,975,3.3199999999999994,0.0,0.0,152.0,0.0,0.0,0.0,142,146,160,167,180,192,115.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +980,980,0.0,9854.4,0.0,1603190046.0,153.3742331288344,3.26,0.0,0.0,16.0,953,12.0,0.0,149.0,115.0,-57.0,8.0,45.0,13.0,50.13241251556803,431.25,102.06329722900395,-15.0,52.2251401,6.852007,3.26,9854.4,0.0,0.0,9854.4,3125.0,0.0,0.0,0.0,0.0,0.0,3.26,223.00000000000003,454.0,1.0,4.0,976,3.26,0.0,0.0,149.0,0.0,0.0,0.0,142,146,160,167,180,192,115.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +981,981,0.0,9865.6,0.0,1603190049.4,155.2795031055901,3.22,0.0,0.0,17.0,954,11.1,0.0,152.0,126.0,-57.0,7.0,46.0,14.0,51.031648614501975,444.70588235294116,104.76100552580584,-18.0,52.2252111,6.8518924,3.22,9865.6,0.0,0.0,9865.6,3128.4000000953674,0.0,0.0,0.0,0.0,0.0,3.22,227.0,466.0,1.0,4.0,977,3.22,0.0,0.0,152.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,126.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +982,982,0.0,9877.2,0.0,1603190053.3,156.25,3.2,0.0,0.0,16.5,955,11.7,0.0,154.0,130.0,-57.0,7.0,47.0,16.0,57.775919356506655,472.72727272727275,110.60604016887652,-17.0,52.2252851,6.8517716,3.2,9877.2,0.0,0.0,9877.2,3132.2999999523163,0.0,0.0,0.0,0.0,0.0,3.2,257.0,492.0,1.0,4.0,978,3.2,0.0,0.0,154.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,130.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +983,983,0.0,9888.6,0.0,1603190056.5,154.79876160990713,3.23,0.0,0.0,17.0,956,11.4,0.0,154.0,133.0,-57.0,7.0,45.0,14.0,56.87668325757269,469.4117647058824,117.35031091088119,-20.0,52.2253566,6.851652400000001,3.23,9888.6,0.0,0.0,9888.6,3135.5,0.0,0.0,0.0,0.0,0.0,3.23,253.0,522.0,1.0,4.0,979,3.23,0.0,0.0,154.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,133.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +984,984,0.0,9900.0,0.0,1603190059.8,150.15015015015015,3.33,0.0,0.0,18.0,957,11.4,0.0,154.0,123.0,-59.0,6.0,46.0,15.0,48.55874934243361,410.0,93.52055428913135,-4.0,52.225428,6.8515330999999975,3.33,9900.0,0.0,0.0,9900.0,3138.7999999523163,0.0,0.0,0.0,0.0,0.0,3.33,216.0,416.0,1.0,4.0,980,3.33,0.0,0.0,154.0,0.0,0.0,0.0,142,146,160,167,180,192,123.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +985,985,0.0,9910.6,0.0,1603190063.0,148.80952380952382,3.36,0.0,0.0,18.0,958,10.6,0.0,154.0,136.0,-56.0,7.0,47.0,15.0,58.22553740597362,453.3333333333333,103.6369604021384,-17.0,52.2254948,6.8514222999999985,3.36,9910.6,0.0,0.0,9910.6,3142.0,0.0,0.0,0.0,0.0,0.0,3.36,259.0,461.0,1.0,4.0,981,3.36,0.0,0.0,154.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,136.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +986,986,0.0,9922.1,0.0,1603190066.4,149.70059880239518,3.34,0.0,0.0,17.5,959,11.5,0.0,155.0,123.0,-58.0,9.0,46.0,14.0,51.93088471343594,421.7142857142857,106.78428674840723,-23.0,52.2255683,6.8513039,3.34,9922.1,0.0,0.0,9922.1,3145.4000000953674,0.0,0.0,0.0,0.0,0.0,3.34,231.0,475.0,1.0,4.0,982,3.3400000000000007,0.0,0.0,155.0,0.0,0.0,0.0,142,146,160,167,180,192,123.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +987,987,0.0,9934.0,0.0,1603190070.0,149.70059880239518,3.34,0.0,0.0,17.5,960,12.0,0.0,152.0,129.0,-57.0,6.0,48.0,17.0,56.87668325757269,442.2857142857143,107.45871382260769,-17.0,52.2256446,6.8511808000000025,3.34,9934.0,0.0,0.0,9934.0,3149.0,0.0,0.0,0.0,0.0,0.0,3.34,253.0,478.0,1.0,4.0,983,3.3400000000000007,0.0,0.0,152.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,129.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +988,988,0.0,9945.3,0.0,1603190073.4,150.15015015015015,3.33,0.0,0.0,17.5,961,11.3,0.0,151.0,141.0,-59.0,6.0,46.0,13.0,60.698436678042,483.42857142857144,112.85413041621143,-21.0,52.2257176,6.8510665999999985,3.33,9945.3,0.0,0.0,9945.3,3152.4000000953674,0.0,0.0,0.0,0.0,0.0,3.33,270.0,502.0,1.0,4.0,984,3.33,0.0,0.0,151.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,141.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +989,989,0.0,9956.8,0.0,1603190076.8,151.9756838905775,3.29,0.0,0.0,17.5,962,11.5,0.0,153.0,144.0,-58.0,5.0,46.0,13.0,58.89996448017409,493.7142857142857,116.22626578721376,-20.0,52.2257931,6.8509512999999975,3.29,9956.8,0.0,0.0,9956.8,3155.7999999523163,0.0,0.0,0.0,0.0,0.0,3.29,262.0,517.0,1.0,4.0,985,3.29,0.0,0.0,153.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,144.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +990,990,0.0,9967.8,0.0,1603190080.1999998,153.3742331288344,3.26,0.0,0.0,17.5,963,11.1,0.0,154.0,132.0,-59.0,7.0,46.0,15.0,53.27973886183686,452.57142857142856,103.6369604021384,-29.0,52.2258652,6.8508395,3.26,9967.8,0.0,0.0,9967.8,3159.199999809265,0.0,0.0,0.0,0.0,0.0,3.26,237.0,461.0,1.0,4.0,986,3.26,0.0,0.0,154.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,132.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +991,991,0.0,9980.0,0.0,1603190083.6,151.51515151515153,3.3,0.0,0.0,16.5,964,12.2,0.0,154.0,130.0,-58.0,5.0,45.0,13.0,57.55111033177316,472.72727272727275,110.60604016887652,-22.0,52.2259435,6.850714999999999,3.3,9980.0,0.0,0.0,9980.0,3162.5999999046326,0.0,0.0,0.0,0.0,0.0,3.3,256.0,492.0,1.0,4.0,987,3.3,0.0,0.0,154.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,130.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +992,992,0.0,9991.8,0.0,1603190087.1999998,150.15015015015015,3.33,0.0,0.0,17.0,965,11.8,0.0,156.0,132.0,-57.0,7.0,45.0,13.0,53.72935691130385,465.88235294117646,109.93161309467608,-16.0,52.2260201,6.850594900000001,3.33,9991.8,0.0,0.0,9991.8,3166.199999809265,0.0,0.0,0.0,0.0,0.0,3.33,239.0,489.0,1.0,4.0,988,3.33,0.0,0.0,156.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,132.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +993,993,0.0,10003.6,0.0,1603190090.8,151.51515151515153,3.3,0.0,0.0,17.0,966,11.7,0.0,155.0,133.0,-57.0,6.0,47.0,14.0,60.4736276533085,469.4117647058824,109.2571860204756,-21.0,52.2260966,6.8504765,3.3,10003.6,0.0,0.0,10003.6,3169.7999999523163,0.0,0.0,0.0,0.0,0.0,3.3,269.0,486.0,1.0,4.0,989,3.3,0.0,0.0,155.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,133.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +994,994,0.0,10014.8,0.0,1603190094.1999998,152.4390243902439,3.28,0.0,0.0,17.0,967,11.2,0.0,156.0,130.0,-58.0,7.0,46.0,14.0,55.07821105970478,458.8235294117647,113.7533665151454,-29.0,52.22617,6.8503637,3.28,10014.8,0.0,0.0,10014.8,3173.199999809265,0.0,0.0,0.0,0.0,0.0,3.28,245.0,506.0,1.0,4.0,990,3.28,0.0,0.0,156.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,130.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +995,995,0.0,10026.7,0.0,1603190097.8,152.4390243902439,3.28,0.0,0.0,17.0,968,11.9,0.0,154.0,125.0,-59.0,6.0,46.0,12.0,53.05492983710339,441.1764705882353,102.28810625373742,-5.0,52.2262475,6.8502427,3.28,10026.7,0.0,0.0,10026.7,3176.7999999523163,0.0,0.0,0.0,0.0,0.0,3.28,236.0,455.0,1.0,4.0,991,3.28,0.0,0.0,154.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,125.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +996,996,0.0,10037.3,0.0,1603190101.3,153.3742331288344,3.26,0.0,0.0,17.5,969,10.6,0.0,154.0,137.0,-56.0,7.0,49.0,17.0,56.20225618337223,469.7142857142857,110.15642211940956,-18.0,52.2263157,6.850135000000001,3.26,10037.3,0.0,0.0,10037.3,3180.2999999523163,0.0,0.0,0.0,0.0,0.0,3.26,250.00000000000003,490.0,1.0,4.0,992,3.26,0.0,0.0,154.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,137.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +997,997,0.0,10048.7,0.0,1603190104.5,151.0574018126888,3.31,0.0,0.0,17.5,970,11.4,0.0,154.0,130.0,-58.0,7.0,49.0,17.0,52.605311787636396,445.7142857142857,104.08657845160536,-13.0,52.2263898,6.85002,3.31,10048.7,0.0,0.0,10048.7,3183.5,0.0,0.0,0.0,0.0,0.0,3.31,234.0,463.0,1.0,4.0,993,3.3100000000000005,0.0,0.0,154.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,130.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +998,998,0.0,10060.5,0.0,1603190108.0,149.2537313432836,3.35,0.0,0.0,17.5,971,11.8,0.0,151.0,131.0,-58.0,7.0,44.0,13.0,53.05492983710339,449.14285714285717,109.2571860204756,-13.0,52.226466,6.849899900000001,3.35,10060.5,0.0,0.0,10060.5,3187.0,0.0,0.0,0.0,0.0,0.0,3.35,236.0,486.0,1.0,4.0,994,3.35,0.0,0.0,151.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,131.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +999,999,0.0,10072.1,0.0,1603190111.6,151.0574018126888,3.31,0.0,0.0,17.0,972,11.6,0.0,153.0,128.0,-57.0,6.0,46.0,14.0,52.15569373816943,451.7647058823529,110.83084919361002,-18.0,52.2265419,6.8497823,3.31,10072.1,0.0,0.0,10072.1,3190.5999999046326,0.0,0.0,0.0,0.0,0.0,3.31,232.0,493.0,1.0,4.0,995,3.3100000000000005,0.0,0.0,153.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,128.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1000,1000,0.0,10083.3,0.0,1603190115.0,152.9051987767584,3.27,0.0,0.0,17.0,973,11.2,0.0,153.0,132.0,-57.0,6.0,48.0,16.0,57.32630130703967,465.88235294117646,108.80756797100862,-15.0,52.2266137,6.8496677,3.27,10083.3,0.0,0.0,10083.3,3194.0,0.0,0.0,0.0,0.0,0.0,3.27,255.0,484.0,1.0,4.0,996,3.2700000000000005,0.0,0.0,153.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,132.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1001,1001,0.0,10095.2,0.0,1603190118.6,153.84615384615384,3.25,0.0,0.0,17.0,974,12.0,0.0,152.0,131.0,-58.0,8.0,46.0,13.0,54.6285930102378,462.3529411764706,113.52855749041193,-15.0,52.2266918,6.8495473,3.25,10095.2,0.0,0.0,10095.2,3197.5999999046326,0.0,0.0,0.0,0.0,0.0,3.25,243.0,505.0,1.0,4.0,997,3.25,0.0,0.0,152.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,131.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1002,1002,0.0,10106.3,0.0,1603190122.3,154.32098765432102,3.24,0.0,0.0,17.0,975,11.1,0.0,152.0,129.0,-58.0,8.0,46.0,14.0,55.07821105970478,455.29411764705884,108.13314089680814,-18.0,52.2267634,6.8494343,3.24,10106.3,0.0,0.0,10106.3,3201.2999999523163,0.0,0.0,0.0,0.0,0.0,3.24,245.0,481.0,1.0,4.0,998,3.24,0.0,0.0,152.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,129.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1003,1003,0.0,10118.4,0.0,1603190125.8,152.9051987767584,3.27,0.0,0.0,17.0,976,12.1,0.0,151.0,134.0,-58.0,6.0,46.0,14.0,55.30302008443826,472.94117647058823,115.77664773774679,-24.0,52.2268416,6.8493107,3.27,10118.4,0.0,0.0,10118.4,3204.7999999523163,0.0,0.0,0.0,0.0,0.0,3.27,246.0,515.0,1.0,4.0,999,3.2700000000000005,0.0,0.0,151.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,134.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1004,1004,0.0,10130.2,0.0,1603190129.4,151.9756838905775,3.29,0.0,0.0,16.5,977,11.7,0.0,149.0,116.0,-58.0,9.0,46.0,18.0,49.682794466101036,421.8181818181818,107.90833187207468,-7.0,52.2269162,6.8491892000000005,3.29,10130.2,0.0,0.0,10130.2,3208.4000000953674,0.0,0.0,0.0,0.0,0.0,3.29,221.0,480.0,1.0,4.0,1000,3.29,0.0,0.0,149.0,0.0,0.0,0.0,142,146,160,167,180,192,116.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1005,1005,0.0,10141.3,0.0,1603190132.8,154.32098765432102,3.24,0.0,0.0,17.5,978,11.1,0.0,150.0,118.0,-57.0,6.0,46.0,12.0,47.884322268233134,404.57142857142856,97.11749868486721,-1.0,52.2269875,6.8490757,3.24,10141.3,0.0,0.0,10141.3,3211.7999999523163,0.0,0.0,0.0,0.0,0.0,3.24,213.0,432.0,1.0,4.0,1001,3.24,0.0,0.0,150.0,0.0,0.0,0.0,142,146,160,167,180,192,118.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1006,1006,0.0,10152.1,0.0,1603190136.1999998,155.2795031055901,3.22,0.0,0.0,17.5,979,10.9,0.0,151.0,146.0,-58.0,8.0,47.0,14.0,56.20225618337223,500.57142857142856,111.05565821834352,-28.0,52.2270576,6.8489649,3.22,10152.1,0.0,0.0,10152.1,3215.199999809265,0.0,0.0,0.0,0.0,0.0,3.22,250.00000000000003,494.0,1.0,4.0,1002,3.22,0.0,0.0,151.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,146.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1007,1007,0.0,10163.6,0.0,1603190139.6,153.3742331288344,3.26,0.0,0.0,17.0,980,11.5,0.0,151.0,131.0,-56.0,6.0,48.0,16.0,55.52782910917176,462.3529411764706,112.85413041621143,-22.0,52.2271315,6.848846400000001,3.26,10163.6,0.0,0.0,10163.6,3218.5999999046326,0.0,0.0,0.0,0.0,0.0,3.26,247.0,502.0,1.0,4.0,1003,3.26,0.0,0.0,151.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,131.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1008,1008,0.0,10174.9,0.0,1603190143.1999998,153.3742331288344,3.26,0.0,0.0,17.0,981,11.3,0.0,151.0,133.0,-57.0,6.0,47.0,16.0,59.34958252964107,469.4117647058824,108.13314089680814,-16.0,52.22720379999999,6.848730099999999,3.26,10174.9,0.0,0.0,10174.9,3222.199999809265,0.0,0.0,0.0,0.0,0.0,3.26,264.0,481.0,1.0,4.0,1004,3.26,0.0,0.0,151.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,133.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1009,1009,0.0,10187.4,0.0,1603190146.8,151.51515151515153,3.3,0.0,0.0,17.0,982,12.4,0.0,151.0,134.0,-58.0,6.0,46.0,15.0,57.775919356506655,472.94117647058823,114.42779358934584,-13.0,52.2272839,6.848603,3.3,10187.4,0.0,0.0,10187.4,3225.7999999523163,0.0,0.0,0.0,0.0,0.0,3.3,257.0,509.0,1.0,4.0,1005,3.3,0.0,0.0,151.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,134.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1010,1010,0.0,10198.9,0.0,1603190150.1999998,148.3679525222552,3.37,0.0,0.0,17.5,983,11.5,0.0,151.0,135.0,-59.0,6.0,46.0,15.0,54.6285930102378,462.85714285714283,113.97817553987889,-14.0,52.227358,6.848484700000001,3.37,10198.9,0.0,0.0,10198.9,3229.199999809265,0.0,0.0,0.0,0.0,0.0,3.37,243.0,507.0,1.0,4.0,1006,3.37,0.0,0.0,151.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,135.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1011,1011,0.0,10210.6,0.0,1603190153.6,148.3679525222552,3.37,0.0,0.0,17.0,984,11.6,0.0,148.0,140.0,-59.0,6.0,47.0,15.0,56.87668325757269,494.11764705882354,118.47435603454865,-17.0,52.2274321,6.8483638,3.37,10210.6,0.0,0.0,10210.6,3232.5999999046326,0.0,0.0,0.0,0.0,0.0,3.37,253.0,527.0,1.0,4.0,1007,3.37,0.0,0.0,148.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,140.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1012,1012,0.0,10222.6,0.0,1603190157.1999998,148.80952380952382,3.36,0.0,0.0,17.0,985,12.0,0.0,145.0,127.0,-58.0,8.0,48.0,17.0,52.38050276290291,448.2352941176471,109.93161309467608,-20.0,52.2275083,6.8482387000000005,3.36,10222.6,0.0,0.0,10222.6,3236.199999809265,0.0,0.0,0.0,0.0,0.0,3.36,233.0,489.0,1.0,4.0,1008,3.36,0.0,145.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,127.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1013,1013,0.0,10234.2,0.0,1603190160.6,149.70059880239518,3.34,0.0,0.0,17.5,986,11.5,0.0,145.0,127.0,-58.0,6.0,48.0,14.0,51.25645763923547,435.42857142857144,99.36558893220207,-4.0,52.227581,6.848117200000001,3.34,10234.2,0.0,0.0,10234.2,3239.5999999046326,0.0,0.0,0.0,0.0,0.0,3.34,228.0,442.0,1.0,4.0,1009,3.3400000000000007,0.0,145.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,127.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1014,1014,0.0,10245.6,0.0,1603190164.3,151.0574018126888,3.31,0.0,0.0,18.0,987,11.4,0.0,148.0,135.0,-56.0,7.0,46.0,13.0,51.93088471343594,450.0,111.50527626781047,-15.0,52.22765250000001,6.847997900000001,3.31,10245.6,0.0,0.0,10245.6,3243.2999999523163,0.0,0.0,0.0,0.0,0.0,3.31,231.0,496.0,1.0,4.0,1010,3.3100000000000005,0.0,0.0,148.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,135.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1015,1015,0.0,10256.4,0.0,1603190167.4,150.60240963855424,3.32,0.0,0.0,17.5,988,10.9,0.0,150.0,133.0,-57.0,9.0,45.0,12.0,53.95416593603733,456.0,110.83084919361002,-19.0,52.227720700000006,6.847884,3.32,10256.4,0.0,0.0,10256.4,3246.4000000953674,0.0,0.0,0.0,0.0,0.0,3.32,240.0,493.0,1.0,4.0,1011,3.3199999999999994,0.0,0.0,150.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,133.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1016,1016,0.0,10268.6,0.0,1603190170.8,147.49262536873155,3.39,0.0,0.0,17.5,989,12.2,0.0,152.0,135.0,-59.0,6.0,47.0,15.0,54.40378398550431,462.85714285714283,113.07893944094492,-16.0,52.2277977,6.847757400000001,3.39,10268.6,0.0,0.0,10268.6,3249.7999999523163,0.0,0.0,0.0,0.0,0.0,3.39,242.0,503.0,1.0,4.0,1012,3.39,0.0,0.0,152.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,135.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1017,1017,0.0,10280.2,0.0,1603190174.1999998,146.6275659824047,3.41,0.0,0.0,17.5,990,11.6,0.0,155.0,142.0,-58.0,9.0,47.0,16.0,58.89996448017409,486.85714285714283,115.77664773774679,-20.0,52.2278713,6.847637700000001,3.41,10280.2,0.0,0.0,10280.2,3253.199999809265,0.0,0.0,0.0,0.0,0.0,3.41,262.0,515.0,1.0,4.0,1013,3.41,0.0,0.0,155.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,142.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1018,1018,0.0,10291.6,0.0,1603190177.6,147.92899408284026,3.38,0.0,0.0,18.0,991,11.5,0.0,156.0,137.0,-57.0,5.0,47.0,16.0,54.85340203497128,456.6666666666667,111.50527626781047,-18.0,52.2279442,6.8475192,3.38,10291.6,0.0,0.0,10291.6,3256.5999999046326,0.0,0.0,0.0,0.0,0.0,3.38,244.0,496.0,1.0,4.0,1014,3.3799999999999994,0.0,0.0,156.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,137.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1019,1019,0.0,10302.3,0.0,1603190180.8,148.80952380952382,3.36,0.0,0.0,18.0,992,10.7,0.0,155.0,142.0,-59.0,5.0,47.0,12.0,56.20225618337223,473.3333333333333,104.53619650107237,-11.0,52.228012,6.8474076,3.36,10302.3,0.0,0.0,10302.3,3259.7999999523163,0.0,0.0,0.0,0.0,0.0,3.36,250.00000000000003,465.0,1.0,4.0,1015,3.36,0.0,0.0,155.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,142.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1020,1020,0.0,10312.9,0.0,1603190184.0,151.0574018126888,3.31,0.0,0.0,18.5,993,10.6,0.0,158.0,152.0,-59.0,7.0,49.0,14.0,58.45034643070712,492.97297297297297,116.22626578721376,-19.0,52.2280774,6.847295599999999,3.31,10312.9,0.0,0.0,10312.9,3263.0,0.0,0.0,0.0,0.0,0.0,3.31,260.0,517.0,1.0,4.0,1015,3.3100000000000005,0.0,0.0,158.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,152.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1021,1021,0.0,10324.1,0.0,1603190187.4,151.0574018126888,3.31,0.0,0.0,18.5,994,11.2,0.0,157.0,148.0,-60.0,6.0,48.0,13.0,55.977447158638725,480.0,105.88505064947329,1.0,52.228145700000006,6.8471746,3.31,10324.1,0.0,0.0,10324.1,3266.4000000953674,0.0,0.0,0.0,0.0,0.0,3.31,249.0,471.0,1.0,4.0,1017,3.3100000000000005,0.0,0.0,157.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,148.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1022,1022,0.0,10334.6,0.0,1603190190.6,152.9051987767584,3.27,0.0,0.0,18.0,995,10.5,0.0,156.0,142.0,-57.0,8.0,47.0,14.0,57.101492282306175,473.3333333333333,118.47435603454865,-18.0,52.2282076,6.847059,3.27,10334.6,0.0,0.0,10334.6,3269.5999999046326,0.0,0.0,0.0,0.0,0.0,3.27,254.0,527.0,1.0,4.0,1018,3.2700000000000005,0.0,0.0,156.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,142.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1023,1023,0.0,10344.9,0.0,1603190193.8,157.23270440251568,3.18,0.0,0.0,19.0,996,10.3,0.0,156.0,163.0,-59.0,6.0,49.0,15.0,57.101492282306175,514.7368421052631,132.8621336174919,-18.0,52.228265500000006,6.8469409,3.18,10344.9,0.0,0.0,10344.9,3272.7999999523163,0.0,0.0,0.0,0.0,0.0,3.18,254.0,591.0,1.0,4.0,1019,3.180000000000001,0.0,0.0,156.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,163.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1024,1024,0.0,10355.5,0.0,1603190197.3,156.73981191222572,3.19,0.0,0.0,17.5,997,10.6,0.0,154.0,143.0,-59.0,8.0,49.0,13.0,53.72935691130385,490.2857142857143,121.17206433135051,-16.0,52.2283218,6.8468155,3.19,10355.5,0.0,0.0,10355.5,3276.2999999523163,0.0,0.0,0.0,0.0,0.0,3.19,239.0,539.0,1.0,4.0,1020,3.19,0.0,0.0,154.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,143.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1025,1025,0.0,10366.8,0.0,1603190200.6,153.3742331288344,3.26,0.0,0.0,18.0,998,11.3,0.0,155.0,160.0,-59.0,6.0,48.0,12.0,60.4736276533085,533.3333333333334,122.52091847975143,-8.0,52.2283795,6.8466787,3.26,10366.8,0.0,0.0,10366.8,3279.5999999046326,0.0,0.0,0.0,0.0,0.0,3.26,269.0,545.0,1.0,4.0,1021,3.26,0.0,0.0,155.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,160.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1026,1026,0.0,10377.6,0.0,1603190204.0,153.84615384615384,3.25,0.0,0.0,18.0,999,10.8,0.0,154.0,152.0,-59.0,8.0,48.0,13.0,60.92324570277549,506.6666666666667,122.97053652921842,-17.0,52.2284276,6.846542,3.25,10377.6,0.0,0.0,10377.6,3283.0,0.0,0.0,0.0,0.0,0.0,3.25,271.0,547.0,1.0,4.0,1022,3.25,0.0,0.0,154.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,152.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1027,1027,0.0,10387.6,0.0,1603190207.1999998,156.25,3.2,0.0,0.0,18.5,1000,10.1,0.0,154.0,159.0,-59.0,5.0,48.0,13.0,59.799200579108046,515.6756756756756,121.17206433135051,-18.0,52.228465,6.8464073,3.2,10387.6,0.0,0.0,10387.6,3286.199999809265,0.0,0.0,0.0,0.0,0.0,3.2,266.0,539.0,1.0,4.0,1023,3.2,0.0,0.0,154.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,159.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1028,1028,0.0,10397.5,0.0,1603190210.4,157.7287066246057,3.17,0.0,0.0,19.0,1001,9.9,0.0,154.0,169.0,-58.0,5.0,49.0,14.0,59.12477350490758,533.6842105263158,129.7148072712231,-18.0,52.2284941,6.8462698,3.17,10397.5,0.0,0.0,10397.5,3289.4000000953674,0.0,0.0,0.0,0.0,0.0,3.17,263.0,577.0,1.0,4.0,1024,3.1699999999999995,0.0,0.0,154.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,169.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1029,1029,0.0,10407.1,0.0,1603190213.4,159.2356687898089,3.14,0.0,0.0,19.0,1002,9.5,0.0,154.0,173.0,-60.0,6.0,49.0,13.0,62.272099851176435,546.3157894736842,122.97053652921842,-19.0,52.2285149,6.8461345,3.14,10407.1,0.0,0.0,10407.1,3292.4000000953674,0.0,0.0,0.0,0.0,0.0,3.14,277.0,547.0,1.0,4.0,1024,3.140000000000001,0.0,0.0,154.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,173.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1030,1030,0.0,10416.9,0.0,1603190216.6,161.81229773462783,3.09,0.0,0.0,18.5,1003,9.8,0.0,156.0,166.0,-60.0,6.0,48.0,11.0,61.372863752242466,538.3783783783783,119.59840115821608,-17.0,52.228526,6.8459911999999985,3.09,10416.9,0.0,0.0,10416.9,3295.5999999046326,0.0,0.0,0.0,0.0,0.0,3.09,273.0,532.0,1.0,4.0,1025,3.09,0.0,0.0,156.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,166.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1031,1031,0.0,10427.2,0.0,1603190220.0,163.93442622950818,3.05,0.0,0.0,18.0,1004,10.3,0.0,154.0,155.0,-59.0,5.0,48.0,13.0,57.32630130703967,516.6666666666666,126.34267190022075,-12.0,52.2285297,6.8458397,3.05,10427.2,0.0,0.0,10427.2,3299.0,0.0,0.0,0.0,0.0,0.0,3.05,255.0,562.0,1.0,4.0,1027,3.0500000000000003,0.0,0.0,154.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,155.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1032,1032,0.0,10437.0,0.0,1603190223.1999998,165.01650165016503,3.03,0.0,0.0,18.0,1005,9.7,0.0,159.0,162.0,-59.0,5.0,49.0,15.0,58.89996448017409,540.0,124.76900872708632,-15.0,52.22852279999999,6.8456974000000015,3.03,10437.0,0.0,0.0,10437.0,3302.199999809265,0.0,0.0,0.0,0.0,0.0,3.03,262.0,555.0,1.0,4.0,1027,3.03,0.0,0.0,159.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,162.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1033,1033,0.0,10446.3,0.0,1603190226.4,167.22408026755855,2.99,0.0,0.0,18.5,1006,9.4,0.0,156.0,168.0,-60.0,6.0,48.0,13.0,60.698436678042,544.8648648648649,125.6682448260203,-10.0,52.22850800000001,6.845562400000001,2.99,10446.3,0.0,0.0,10446.3,3305.4000000953674,0.0,0.0,0.0,0.0,0.0,2.99,270.0,559.0,1.0,4.0,1028,2.99,0.0,0.0,156.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,168.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1034,1034,0.0,10456.4,0.0,1603190229.8,170.06802721088437,2.94,0.0,0.0,18.0,1007,10.0,0.0,155.0,157.0,-60.0,6.0,50.0,15.0,57.775919356506655,523.3333333333334,119.37359213348259,-10.0,52.2284835,6.8454204,2.94,10456.4,0.0,0.0,10456.4,3308.7999999523163,0.0,0.0,0.0,0.0,0.0,2.94,257.0,531.0,1.0,4.0,1029,2.94,0.0,0.0,155.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,157.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1035,1035,0.0,10465.7,0.0,1603190233.3,171.8213058419244,2.91,0.0,0.0,17.5,1008,9.3,0.0,152.0,159.0,-58.0,10.0,48.0,14.0,63.62095399957736,545.1428571428571,131.06366141962405,-9.0,52.228452,6.8452935,2.91,10465.7,0.0,0.0,10465.7,3312.2999999523163,0.0,0.0,0.0,0.0,0.0,2.91,283.0,583.0,1.0,4.0,1030,2.91,0.0,0.0,152.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,159.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1036,1036,0.0,10474.9,0.0,1603190236.4,171.23287671232876,2.92,0.0,0.0,18.5,1009,9.2,0.0,152.0,155.0,-58.0,6.0,51.0,15.0,62.721717900643405,502.7027027027027,118.69916505928214,-15.0,52.228413,6.8451739,2.92,10474.9,0.0,0.0,10474.9,3315.4000000953674,0.0,0.0,0.0,0.0,0.0,2.92,279.0,528.0,1.0,4.0,1031,2.92,0.0,0.0,152.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,155.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1037,1037,0.0,10484.9,0.0,1603190239.8,171.8213058419244,2.91,0.0,0.0,17.5,1010,10.0,0.0,153.0,148.0,-60.0,8.0,48.0,15.0,58.675155455440596,507.42857142857144,125.21862677655331,-14.0,52.2283628,6.8450522,2.91,10484.9,0.0,0.0,10484.9,3318.7999999523163,0.0,0.0,0.0,0.0,0.0,2.91,261.0,557.0,1.0,4.0,1032,2.91,0.0,0.0,153.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,148.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1038,1038,0.0,10494.5,0.0,1603190243.1999998,175.43859649122803,2.85,0.0,0.0,17.5,1011,9.6,0.0,157.0,153.0,-60.0,5.0,50.0,15.0,59.34958252964107,524.5714285714286,121.62168238081749,-7.0,52.2283065,6.8449462,2.85,10494.5,0.0,0.0,10494.5,3322.199999809265,0.0,0.0,0.0,0.0,0.0,2.85,264.0,541.0,1.0,4.0,1033,2.8500000000000005,0.0,0.0,157.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,153.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1039,1039,0.0,10503.9,0.0,1603190246.6,177.9359430604982,2.81,0.0,0.0,17.5,1012,9.4,0.0,157.0,154.0,-60.0,7.0,49.0,15.0,61.372863752242466,528.0,128.59076214755564,-16.0,52.2282441,6.8448534,2.81,10503.9,0.0,0.0,10503.9,3325.5999999046326,0.0,0.0,0.0,0.0,0.0,2.81,273.0,571.9999999999999,1.0,4.0,1034,2.81,0.0,0.0,157.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,154.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1040,1040,0.0,10513.7,0.0,1603190250.0,178.5714285714286,2.8,0.0,0.0,17.5,1013,9.7,0.0,156.0,155.0,-60.0,6.0,49.0,12.0,61.372863752242466,531.4285714285714,120.7224462818835,-12.0,52.2281733,6.8447689,2.8,10513.7,0.0,0.0,10513.7,3329.0,0.0,0.0,0.0,0.0,0.0,2.8,273.0,537.0,1.0,4.0,1035,2.7999999999999994,0.0,0.0,156.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,155.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1041,1041,0.0,10523.1,0.0,1603190253.4,178.5714285714286,2.8,0.0,0.0,17.5,1014,9.5,0.0,152.0,145.0,-58.0,6.0,50.0,14.0,56.87668325757269,497.14285714285717,118.47435603454865,-14.0,52.2280992,6.8447007,2.8,10523.1,0.0,0.0,10523.1,3332.4000000953674,0.0,0.0,0.0,0.0,0.0,2.8,253.0,527.0,1.0,4.0,1036,2.7999999999999994,0.0,0.0,152.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,145.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1042,1042,0.0,10532.3,0.0,1603190256.6,181.1594202898551,2.76,0.0,0.0,18.0,1015,9.2,0.0,151.0,164.0,-59.0,6.0,50.0,13.0,67.44270742004667,546.6666666666666,112.17970334201095,-1.0,52.2280233,6.8446485999999975,2.76,10532.3,0.0,0.0,10532.3,3335.5999999046326,0.0,0.0,0.0,0.0,0.0,2.76,300.0,499.00000000000006,1.0,4.0,1037,2.76,0.0,0.0,151.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,164.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1043,1043,0.0,10541.8,0.0,1603190260.3,184.50184501845015,2.71,0.0,0.0,17.5,1016,9.5,0.0,147.0,151.0,-59.0,8.0,47.0,14.0,66.31866229637922,517.7142857142857,121.396873356084,-11.0,52.2279409,6.8446095,2.71,10541.8,0.0,0.0,10541.8,3339.2999999523163,0.0,0.0,0.0,0.0,0.0,2.71,295.0,540.0,1.0,4.0,1038,2.7100000000000004,0.0,0.0,147.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,151.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1044,1044,0.0,10551.9,0.0,1603190263.6,177.3049645390071,2.82,0.0,0.0,17.0,1017,10.1,0.0,147.0,155.0,-60.0,7.0,48.0,13.0,67.66751644478016,547.0588235294117,126.56748092495424,-18.0,52.2278531,6.8445747,2.82,10551.9,0.0,0.0,10551.9,3342.5999999046326,0.0,0.0,0.0,0.0,0.0,2.82,301.0,563.0,1.0,4.0,1039,2.82,0.0,0.0,147.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,155.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1045,1045,0.0,10562.3,0.0,1603190267.1999998,171.8213058419244,2.91,0.0,0.0,17.0,1018,10.4,0.0,147.0,150.0,-60.0,9.0,46.0,12.0,64.52019009851129,529.4117647058823,130.16442532069007,-20.0,52.2277618,6.8445425,2.91,10562.3,0.0,0.0,10562.3,3346.199999809265,0.0,0.0,0.0,0.0,0.0,2.91,286.99999999999994,579.0,1.0,4.0,1040,2.91,0.0,0.0,147.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,150.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1046,1046,0.0,10572.5,0.0,1603190270.6,170.64846416382252,2.93,0.0,0.0,17.0,1019,10.2,0.0,149.0,147.0,-60.0,9.0,47.0,12.0,59.34958252964107,518.8235294117648,125.4434358012868,-19.0,52.2276712,6.844516099999999,2.93,10572.5,0.0,0.0,10572.5,3349.5999999046326,0.0,0.0,0.0,0.0,0.0,2.93,264.0,558.0,1.0,4.0,1041,2.93,0.0,0.0,149.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,147.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1047,1047,0.0,10583.0,0.0,1603190274.0,167.78523489932888,2.98,0.0,0.0,17.5,1020,10.4,0.0,150.0,154.0,-59.0,7.0,49.0,14.0,63.62095399957736,528.0,123.8697726281524,-17.0,52.2275785,6.8444928,2.98,10583.0,0.0,0.0,10583.0,3353.0,0.0,0.0,0.0,0.0,0.0,2.98,283.0,551.0,1.0,4.0,1042,2.9799999999999995,0.0,0.0,150.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,154.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1048,1048,0.0,10593.8,0.0,1603190277.6,167.22408026755855,2.99,0.0,0.0,17.5,1021,10.8,0.0,150.0,154.0,-59.0,6.0,49.0,12.0,62.721717900643405,528.0,129.26518922175615,-15.0,52.2274822,6.8444728,2.99,10593.8,0.0,0.0,10593.8,3356.5999999046326,0.0,0.0,0.0,0.0,0.0,2.99,279.0,575.0,1.0,4.0,1043,2.99,0.0,0.0,150.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,154.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1049,1049,0.0,10603.7,0.0,1603190281.3,170.64846416382252,2.93,0.0,0.0,17.5,1022,9.9,0.0,152.0,141.0,-59.0,7.0,47.0,12.0,58.675155455440596,483.42857142857144,110.15642211940956,-4.0,52.2273934,6.8444593,2.93,10603.7,0.0,0.0,10603.7,3360.2999999523163,0.0,0.0,0.0,0.0,0.0,2.93,261.0,490.0,1.0,4.0,1044,2.93,0.0,0.0,152.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,141.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1050,1050,0.0,10612.8,0.0,1603190284.3,175.43859649122803,2.85,0.0,0.0,17.5,1023,9.1,0.0,153.0,137.0,-58.0,7.0,48.0,15.0,55.977447158638725,469.7142857142857,113.30374846567841,-15.0,52.22731160000001,6.844452099999999,2.85,10612.8,0.0,0.0,10612.8,3363.2999999523163,0.0,0.0,0.0,0.0,0.0,2.85,249.0,504.0,1.0,4.0,1045,2.8500000000000005,0.0,0.0,153.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,137.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1051,1051,0.0,10623.8,0.0,1603190287.8,171.8213058419244,2.91,0.0,0.0,17.0,1024,11.0,0.0,154.0,135.0,-59.0,8.0,48.0,15.0,55.52782910917176,476.47058823529414,113.52855749041193,-18.0,52.2272131,6.8444455,2.91,10623.8,0.0,0.0,10623.8,3366.7999999523163,0.0,0.0,0.0,0.0,0.0,2.91,247.0,505.0,1.0,4.0,1046,2.91,0.0,0.0,154.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,135.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1052,1052,0.0,10634.2,0.0,1603190291.4,168.9189189189189,2.96,0.0,0.0,16.5,1025,10.4,0.0,153.0,142.0,-60.0,7.0,47.0,12.0,59.12477350490758,516.3636363636364,122.29610945501793,-19.0,52.2271197,6.8444391000000016,2.96,10634.2,0.0,0.0,10634.2,3370.4000000953674,0.0,0.0,0.0,0.0,0.0,2.96,263.0,544.0,1.0,4.0,1047,2.9600000000000004,0.0,0.0,153.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,142.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1053,1053,0.0,10644.8,0.0,1603190295.0,168.9189189189189,2.96,0.0,0.0,17.0,1026,10.5,0.0,154.0,144.0,-59.0,7.0,46.0,13.0,61.14805472750896,508.2352941176471,118.69916505928214,-15.0,52.22702520000001,6.8444304,2.96,10644.8,0.0,0.0,10644.8,3374.0,0.0,0.0,0.0,0.0,0.0,2.96,272.0,528.0,1.0,4.0,1048,2.9600000000000004,0.0,0.0,154.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,144.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1054,1054,0.0,10655.6,0.0,1603190298.6,167.78523489932888,2.98,0.0,0.0,16.5,1027,10.9,0.0,154.0,135.0,-60.0,7.0,47.0,12.0,58.22553740597362,490.90909090909093,120.27282823241656,-5.0,52.2269278,6.8444235,2.98,10655.6,0.0,0.0,10655.6,3377.5999999046326,0.0,0.0,0.0,0.0,0.0,2.98,259.0,535.0,1.0,4.0,1049,2.9799999999999995,0.0,0.0,154.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,135.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1055,1055,0.0,10665.7,0.0,1603190302.3,169.4915254237288,2.95,0.0,0.0,17.5,1028,10.1,0.0,155.0,146.0,-59.0,7.0,49.0,13.0,57.55111033177316,500.57142857142856,125.6682448260203,-16.0,52.226837,6.844417,2.95,10665.7,0.0,0.0,10665.7,3381.2999999523163,0.0,0.0,0.0,0.0,0.0,2.95,256.0,559.0,1.0,4.0,1050,2.95,0.0,0.0,155.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,146.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1056,1056,0.0,10676.1,0.0,1603190305.5,168.9189189189189,2.96,0.0,0.0,17.0,1029,10.4,0.0,154.0,146.0,-59.0,8.0,48.0,14.0,59.799200579108046,515.2941176470588,122.74572750448492,-14.0,52.2267436,6.844411599999999,2.96,10676.1,0.0,0.0,10676.1,3384.5,0.0,0.0,0.0,0.0,0.0,2.96,266.0,546.0,1.0,4.0,1051,2.9600000000000004,0.0,0.0,154.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,146.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1057,1057,0.0,10687.2,0.0,1603190309.1999998,167.22408026755855,2.99,0.0,0.0,16.5,1030,11.1,0.0,154.0,141.0,-59.0,8.0,50.0,14.0,58.22553740597362,512.7272727272727,119.59840115821608,-11.0,52.226644,6.8444121,2.99,10687.2,0.0,0.0,10687.2,3388.199999809265,0.0,0.0,0.0,0.0,0.0,2.99,259.0,532.0,1.0,4.0,1052,2.99,0.0,0.0,154.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,141.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1058,1058,0.0,10697.5,0.0,1603190312.6,166.66666666666666,3.0,0.0,0.0,17.0,1031,10.3,0.0,154.0,152.0,-60.0,5.0,51.0,13.0,59.12477350490758,536.4705882352941,114.65260261407934,-13.0,52.2265517,6.8444162,3.0,10697.5,0.0,0.0,10697.5,3391.5999999046326,0.0,0.0,0.0,0.0,0.0,3.0,263.0,510.0,1.0,4.0,1053,3.0,0.0,0.0,154.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,152.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1059,1059,0.0,10708.0,0.0,1603190316.1999998,167.78523489932888,2.98,0.0,0.0,17.5,1032,10.5,0.0,157.0,159.0,-59.0,5.0,50.0,14.0,65.19461717271179,545.1428571428571,131.2884704443575,-17.0,52.2264578,6.8444315000000016,2.98,10708.0,0.0,0.0,10708.0,3395.199999809265,0.0,0.0,0.0,0.0,0.0,2.98,290.00000000000006,584.0,1.0,4.0,1054,2.9799999999999995,0.0,0.0,157.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,159.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1060,1060,0.0,10718.1,0.0,1603190319.6,170.06802721088437,2.94,0.0,0.0,17.5,1033,10.1,0.0,159.0,157.0,-59.0,5.0,50.0,15.0,65.41942619744528,538.2857142857143,133.53656069169242,-19.0,52.2263687,6.8444606,2.94,10718.1,0.0,0.0,10718.1,3398.5999999046326,0.0,0.0,0.0,0.0,0.0,2.94,291.00000000000006,594.0,1.0,4.0,1055,2.94,0.0,0.0,159.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,157.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1061,1061,0.0,10728.3,0.0,1603190323.3,171.23287671232876,2.92,0.0,0.0,17.0,1034,10.2,0.0,157.0,147.0,-58.0,6.0,48.0,12.0,60.02400960384154,518.8235294117648,126.11786287548729,-15.0,52.2262804,6.8444998,2.92,10728.3,0.0,0.0,10728.3,3402.2999999523163,0.0,0.0,0.0,0.0,0.0,2.92,267.0,561.0,1.0,4.0,1056,2.92,0.0,0.0,157.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,147.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1062,1062,0.0,10738.4,0.0,1603190326.5,170.64846416382252,2.93,0.0,0.0,17.5,1035,10.1,0.0,157.0,146.0,-59.0,5.0,49.0,13.0,59.12477350490758,500.57142857142856,106.78428674840723,-13.0,52.2261937,6.8445447,2.93,10738.4,0.0,0.0,10738.4,3405.5,0.0,0.0,0.0,0.0,0.0,2.93,263.0,475.0,1.0,4.0,1057,2.93,0.0,0.0,157.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,146.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1063,1063,0.0,10748.7,0.0,1603190330.0,170.06802721088437,2.94,0.0,0.0,17.0,1036,10.3,0.0,158.0,145.0,-58.0,6.0,49.0,13.0,58.89996448017409,511.7647058823529,118.24954700981516,-15.0,52.2261085,6.8446043,2.94,10748.7,0.0,0.0,10748.7,3409.0,0.0,0.0,0.0,0.0,0.0,2.94,262.0,526.0,1.0,4.0,1058,2.94,0.0,0.0,158.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,145.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1064,1064,0.0,10759.0,0.0,1603190333.4,170.06802721088437,2.94,0.0,0.0,18.0,1037,10.3,0.0,155.0,140.0,-60.0,7.0,48.0,10.0,54.40378398550431,466.6666666666667,105.4354326000063,3.0,52.2260253,6.8446701,2.94,10759.0,0.0,0.0,10759.0,3412.4000000953674,0.0,0.0,0.0,0.0,0.0,2.94,242.0,469.0,1.0,4.0,1059,2.94,0.0,0.0,155.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,140.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1065,1065,0.0,10769.2,0.0,1603190336.8,167.78523489932888,2.98,0.0,0.0,17.5,1038,10.1,0.0,153.0,144.0,-58.0,6.0,49.0,15.0,58.00072838124014,493.7142857142857,114.65260261407934,-19.0,52.225946,6.8447434000000005,2.98,10769.2,0.0,0.0,10769.2,3415.7999999523163,0.0,0.0,0.0,0.0,0.0,2.98,258.0,510.0,1.0,4.0,1060,2.9799999999999995,0.0,0.0,153.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,144.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1066,1066,0.0,10780.0,0.0,1603190340.4,165.56291390728478,3.02,0.0,0.0,17.0,1039,10.9,0.0,156.0,136.0,-59.0,7.0,50.0,15.0,55.52782910917176,480.0,114.42779358934584,-18.0,52.2258622,6.8448253,3.02,10780.0,0.0,0.0,10780.0,3419.4000000953674,0.0,0.0,0.0,0.0,0.0,3.02,247.0,509.0,1.0,4.0,1061,3.02,0.0,0.0,156.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,136.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1067,1067,0.0,10789.9,0.0,1603190343.6,164.4736842105263,3.04,0.0,0.0,18.0,1040,9.9,0.0,156.0,147.0,-60.0,7.0,49.0,15.0,58.675155455440596,490.0,115.55183871301331,-18.0,52.225787,6.8449021,3.04,10789.9,0.0,0.0,10789.9,3422.5999999046326,0.0,0.0,0.0,0.0,0.0,3.04,261.0,514.0,1.0,4.0,1062,3.0400000000000005,0.0,0.0,156.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,147.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1068,1068,0.0,10800.5,0.0,1603190347.3,164.4736842105263,3.04,0.0,0.0,17.0,1041,10.6,0.0,156.0,140.0,-59.0,7.0,48.0,13.0,57.55111033177316,494.11764705882354,115.10222066354632,-23.0,52.2257071,6.8449866,3.04,10800.5,0.0,0.0,10800.5,3426.2999999523163,0.0,0.0,0.0,0.0,0.0,3.04,256.0,512.0,1.0,4.0,1063,3.0400000000000005,0.0,0.0,156.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,140.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1069,1069,0.0,10811.6,0.0,1603190350.6,159.7444089456869,3.13,0.0,0.0,17.5,1042,11.1,0.0,155.0,141.0,-58.0,6.0,48.0,14.0,55.30302008443826,483.42857142857144,116.00145676248027,-16.0,52.225624,6.845076,3.13,10811.6,0.0,0.0,10811.6,3429.5999999046326,0.0,0.0,0.0,0.0,0.0,3.13,246.0,516.0,1.0,4.0,1064,3.13,0.0,0.0,155.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,141.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1070,1070,0.0,10822.2,0.0,1603190354.0,157.7287066246057,3.17,0.0,0.0,18.0,1043,10.6,0.0,152.0,128.0,-59.0,5.0,47.0,12.0,49.682794466101036,426.6666666666667,98.69116185800164,-3.0,52.2255465,6.8451657999999975,3.17,10822.2,0.0,0.0,10822.2,3433.0,0.0,0.0,0.0,0.0,0.0,3.17,221.0,439.0,1.0,4.0,1065,3.1699999999999995,0.0,0.0,152.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,128.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1071,1071,0.0,10832.0,0.0,1603190357.1999998,161.81229773462783,3.09,0.0,0.0,18.0,1044,9.8,0.0,152.0,128.0,30.0,5.0,35.0,12.0,-1.5736631731344224,426.6666666666667,0.4496180494669778,31.0,52.22547479999999,6.8452502000000015,3.09,10832.0,0.0,0.0,10832.0,3436.199999809265,0.0,0.0,0.0,0.0,0.0,3.09,-7.000000000000001,2.0,1.0,4.0,1066,3.09,0.0,0.0,152.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,128.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1072,1072,0.0,10832.0,0.0,1603190359.1999998,161.81229773462783,3.09,0.0,0.0,18.0,1044,9.8,0.0,152.0,105.0,-57.0,7.0,44.0,19.0,44.96180494669777,350.0,92.84612721493092,-19.0,52.22547479999999,6.8452502000000015,3.09,10832.0,0.0,0.0,10832.0,3438.199999809265,0.0,0.0,0.0,0.0,0.0,3.09,200.0,413.0,1.0,4.0,1067,3.09,0.0,0.0,152.0,0.0,0.0,0.0,142,146,160,167,180,192,105.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1073,1073,0.0,10843.9,0.0,1603190361.1999998,165.01650165016503,3.03,0.0,0.0,15.0,1045,11.9,0.0,152.0,106.0,-57.0,6.0,44.0,15.0,40.69043347676149,424.0,83.62895720085788,-5.0,52.2253864,6.8453475999999975,3.03,10843.9,0.0,0.0,10843.9,3440.199999809265,0.0,0.0,0.0,0.0,0.0,3.03,181.0,372.0,1.0,4.0,1067,3.03,0.0,0.0,152.0,0.0,0.0,0.0,142,146,160,167,180,192,106.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1074,1074,0.0,10853.4,0.0,1603190364.6,173.61111111111111,2.88,0.0,0.0,17.0,1046,9.5,0.0,154.0,86.0,-57.0,7.0,46.0,18.0,39.11677030362707,303.52941176470586,74.18697816205132,-3.0,52.2253145,6.8454234,2.88,10853.4,0.0,0.0,10853.4,3443.5999999046326,0.0,0.0,0.0,0.0,0.0,2.88,174.0,330.0,1.0,4.0,1068,2.88,0.0,0.0,154.0,0.0,0.0,0.0,142,146,160,167,180,192,86.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1075,1075,0.0,10862.7,0.0,1603190368.3,181.1594202898551,2.76,0.0,0.0,17.5,1047,9.3,0.0,155.0,89.0,-56.0,7.0,47.0,21.0,31.24845443795496,305.14285714285717,90.14841891812904,-17.0,52.2252436,6.845494500000001,2.76,10862.7,0.0,0.0,10862.7,3447.2999999523163,0.0,0.0,0.0,0.0,0.0,2.76,139.0,401.0,1.0,4.0,1069,2.76,0.0,0.0,155.0,0.0,0.0,0.0,142,146,160,167,180,192,89.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1076,1076,0.0,10874.6,0.0,1603190372.6,183.15018315018315,2.73,0.0,0.0,13.5,1048,12.0,0.0,155.0,0.0,19.0,7.0,25.0,21.0,2.0232812226014,0.0,4.0465624452028,20.0,52.2251508,6.8455827000000005,2.73,10874.6,0.0,0.0,10874.6,3451.5999999046326,0.0,0.0,0.0,0.0,0.0,2.73,8.999999999999998,17.999999999999996,1.0,4.0,1070,2.73,0.0,0.0,155.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1077,1077,0.0,10874.6,0.0,1603190372.6,183.15018315018315,2.73,0.0,0.0,13.5,1048,12.0,0.0,155.0,1.0,23.0,7.0,29.0,21.0,1.5736631731344224,4.444444444444445,5.8450346430707105,23.0,52.2251508,6.8455827000000005,2.73,10874.6,0.0,0.0,10874.6,3451.5999999046326,0.0,0.0,0.0,0.0,0.0,2.73,7.000000000000001,26.0,1.0,4.0,1070,2.73,0.0,0.0,155.0,0.0,0.0,0.0,142,146,160,167,180,192,1.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1078,1078,0.0,10874.6,0.0,1603190372.6,183.15018315018315,2.73,0.0,0.0,13.5,1048,12.0,0.0,155.0,1.0,32.0,7.0,42.0,21.0,0.2248090247334889,4.444444444444445,2.0232812226014,33.0,52.2251508,6.8455827000000005,2.73,10874.6,0.0,0.0,10874.6,3451.5999999046326,0.0,0.0,0.0,0.0,0.0,2.73,1.0,8.999999999999998,1.0,4.0,1070,2.73,0.0,0.0,155.0,0.0,0.0,0.0,142,146,160,167,180,192,1.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 +1079,1079,0.0,10874.6,0.0,1603190372.6,183.15018315018315,2.73,0.0,0.0,13.5,1048,12.0,0.0,155.0,74.0,-54.0,7.0,41.0,17.0,38.21753420469311,328.8888888888889,78.68315865672112,-20.0,52.2251508,6.8455827000000005,2.73,10874.6,0.0,0.0,10874.6,3451.5999999046326,0.0,0.0,0.0,0.0,0.0,2.73,169.99999999999997,350.0,1.0,4.0,1070,2.73,0.0,0.0,155.0,0.0,0.0,0.0,142,146,160,167,180,192,74.0,0.0,0.0,0.0,0.0,0.0,124.30000000000001,169.5,203.4,237.3,271.2 diff --git a/rowers/tests/testdata/thyro.kml b/rowers/tests/testdata/thyro.kml new file mode 100644 index 00000000..ddb176b1 --- /dev/null +++ b/rowers/tests/testdata/thyro.kml @@ -0,0 +1,35 @@ + + + + Courses.kml + + Courses + + Thyro Oefenbaantje + 1 + + Start + + 1 + + + 6.848141106797385,52.22397960128134,0 6.847604734558461,52.22366336501974,0 6.84775082703156,52.22348501076475,0 6.848327567214691,52.22382735084554,0 6.848141106797385,52.22397960128134,0 6.848141106797385,52.22397960128134,0 + + + + + + Finish + + 1 + + + 6.845667068529353,52.22505473275959,0 6.846124505574835,52.2253406573624,0 6.845843953045947,52.22551933313507,0 6.845303793589403,52.22520820682232,0 6.845667068529353,52.22505473275959,0 6.845667068529353,52.22505473275959,0 + + + + + + + + diff --git a/rowers/urls.py b/rowers/urls.py index eb80de1d..59ec7855 100644 --- a/rowers/urls.py +++ b/rowers/urls.py @@ -873,7 +873,7 @@ urlpatterns = [ # name='plannedsessions_view'), re_path(r'^courses/(?P\d+)/edit/$',views.course_edit_view, name='course_edit_view'), - re_path(r'^courses/(?P\d+)/delete/$',views.course_delete_view), + re_path(r'^courses/(?P\d+)/delete/$',views.course_delete_view,name='course_delete_view'), re_path(r'^courses/(?P\d+)/downloadkml/$',views.course_kmldownload_view, name='course_kmldownload_view'), re_path(r'^courses/(?P\d+)/replace/$',views.course_replace_view, @@ -883,7 +883,7 @@ urlpatterns = [ re_path(r'^standards/(?P\d+)/download/$',views.standards_download_view, name='standards_download_view'), re_path(r'^standards/(?P\d+)/deactivate/$',views.standard_deactivate_view, - name='standard_decativate_view'), + name='standard_deactivate_view'), re_path(r'^courses/(?P\d+)/map/$',views.course_map_view,name='course_map_view'), # URLS to be created re_path(r'^help/$',TemplateView.as_view(template_name='help.html'), name='help'), diff --git a/rowers/views/racesviews.py b/rowers/views/racesviews.py index d246f32a..da7eefb4 100644 --- a/rowers/views/racesviews.py +++ b/rowers/views/racesviews.py @@ -703,23 +703,25 @@ def course_upload_view(request): if request.method == 'POST': form = CourseForm(request.POST,request.FILES) + if form.is_valid(): f = form.cleaned_data['file'] name = form.cleaned_data['name'] notes = form.cleaned_data['notes'] country = form.cleaned_data['country'] + if f is not None: filename,path_and_filename = handle_uploaded_file(f) cs = courses.kmltocourse(path_and_filename) - for course in cs: cname = name+' - '+course['name'] cnotes = notes+'\n\n'+course['description'] polygons = course['polygons'] course = courses.createcourse(r,cname,polygons,notes=cnotes) + if course.country == 'unknown': course.country = country course.save() From c44e66bbc2c3e742fd061bb737c8f45da868f38a Mon Sep 17 00:00:00 2001 From: Sander Roosendaal Date: Sun, 17 Jan 2021 12:08:59 +0100 Subject: [PATCH 22/30] kit --- rowers/tests/test_races.py | 96 +++++++++++++++++++++++++++++++ rowers/tests/testdata/charles.csv | 39 +++++++++++++ 2 files changed, 135 insertions(+) create mode 100644 rowers/tests/testdata/charles.csv diff --git a/rowers/tests/test_races.py b/rowers/tests/test_races.py index 172fef61..33b04e34 100644 --- a/rowers/tests/test_races.py +++ b/rowers/tests/test_races.py @@ -210,3 +210,99 @@ class ChallengesTest(TestCase): status_code=302,target_status_code=200) self.assertEqual(response.status_code, 200) + + def test_standard_view(self): + login = self.c.login(username=self.u.username, password=self.password) + self.assertTrue(login) + + # Download + url = reverse('standards_download_view',kwargs={'id':1}) + response = self.c.get(url) + self.assertEqual(response.status_code,200) + + # Deactivate + url = reverse('standard_deactivate_view',kwargs={'id':1}) + response = self.c.get(url,follow=True) + expected_url = reverse('standards_view') + self.assertRedirects(response, expected_url=expected_url, + status_code=302,target_status_code=200) + self.assertEqual(response.status_code,200) + + # Create Charles + url = reverse('standards_upload_view') + response = self.c.get(url) + self.assertEqual(response.status_code,200) + + + filename = 'rowers/tests/testdata/charles.csv' + f = open(filename,'r') + + file_data = {'file': f} + form_data = { + 'name':'Alphen', + 'notes': 'aa', + 'file':f, + } + + form = StandardsForm(form_data,file_data) + response = self.c.post(url,form_data,follow=True) + f.close() + + expected_url = reverse('standard_view',kwargs={'id':2}) + + self.assertRedirects(response, expected_url=expected_url, + status_code=302,target_status_code=200) + + self.assertEqual(response.status_code, 200) + + def test_virtualevents_view(self): + login = self.c.login(username=self.u.username, password=self.password) + self.assertTrue(login) + + url = reverse('virtualevents_view') + response = self.c.get(url) + self.assertEqual(response.status_code,200) + + form_data = { + 'country':'All', + 'regattatype':'upcoming', + } + + form = VirtualRaceSelectForm(form_data) + self.assertTrue(form.is_valid()) + + response = self.c.post(url) + self.assertEqual(response.status_code,200) + + form_data = { + 'country':'All', + 'regattatype':'previous', + } + + form = VirtualRaceSelectForm(form_data) + self.assertTrue(form.is_valid()) + + response = self.c.post(url) + self.assertEqual(response.status_code,200) + + form_data = { + 'country':'All', + 'regattatype':'ongoing', + } + + form = VirtualRaceSelectForm(form_data) + self.assertTrue(form.is_valid()) + + response = self.c.post(url) + self.assertEqual(response.status_code,200) + + form_data = { + 'country':'All', + 'regattatype':'my', + } + + form = VirtualRaceSelectForm(form_data) + self.assertTrue(form.is_valid()) + + response = self.c.post(url) + self.assertEqual(response.status_code,200) diff --git a/rowers/tests/testdata/charles.csv b/rowers/tests/testdata/charles.csv new file mode 100644 index 00000000..0311f215 --- /dev/null +++ b/rowers/tests/testdata/charles.csv @@ -0,0 +1,39 @@ +,id,name,coursedistance,coursetime,referencespeed,agemin,agemax,boatclass,boattype,sex,weightclass,adaptiveclass,skillclass,standardcollection_id +0,1,M1x,4700,17:15.0,4.541062801932367,0,120,water,1x,male,hwt,None,Open,1 +1,2,MLW1x,4700,17:15.0,4.541062801932367,0,120,water,1x,male,lwt,None,Open,1 +2,3,MYouth1x,4700,18:30.0,4.2342342342342345,15,18,water,1x,male,hwt,None,Open,1 +3,4,W1x,4700,18:35.0,4.2152466367713,0,120,water,1x,female,hwt,None,Open,1 +4,5,WLW1x,4700,19:30.0,4.017094017094017,0,120,water,1x,female,lwt,None,Open,1 +5,6,WYouth1x,4700,20:00.0,3.9166666666666665,15,18,water,1x,female,hwt,None,Open,1 +6,7,MClub1x,4700,18:10.0,4.3119266055045875,0,120,water,1x,male,hwt,None,Club,1 +7,8,Wclub1x,4700,20:20.0,3.8524590163934427,0,120,water,1x,female,hwt,None,Club,1 +8,9,MM1x,4700,18:00.0,4.351851851851852,30,39,water,1x,male,hwt,None,Master,1 +9,10,MSM1x,4700,18:10.0,4.3119266055045875,40,49,water,1x,male,hwt,None,Master,1 +10,11,MGM1x,4700,18:15.0,4.292237442922374,50,59,water,1x,male,hwt,None,Master,1 +11,12,MV1x,4700,19:20.0,4.051724137931035,60,64,water,1x,male,hwt,None,Master,1 +12,13,MV1x-2,4700,19:40.0,3.983050847457627,65,69,water,1x,male,hwt,None,Master,1 +13,14,MSV1x,4700,20:15.0,3.8683127572016462,70,74,water,1x,male,hwt,None,Master,1 +14,15,MSV1x-2,4700,21:15.0,3.6862745098039214,75,79,water,1x,male,hwt,None,Master,1 +15,16,MGV1x,4700,22:20.0,3.5074626865671643,80,84,water,1x,male,hwt,None,Master,1 +16,17,MGV1x-2,4700,22:20.0,3.5074626865671643,85,120,water,1x,male,hwt,None,Master,1 +17,18,WM1x,4700,20:00.0,3.9166666666666665,30,39,water,1x,female,hwt,None,Master,1 +18,19,WSM1x,4700,20:20.0,3.8524590163934427,40,49,water,1x,female,hwt,None,Master,1 +19,20,WGM1x,4700,20:30.0,3.821138211382114,50,59,water,1x,female,hwt,None,Master,1 +20,21,WV1x,4700,21:00.0,3.7301587301587302,60,64,water,1x,female,hwt,None,Master,1 +21,22,WV1x-2,4700,22:45.0,3.4432234432234434,65,69,water,1x,female,hwt,None,Master,1 +22,23,WSV1x,4700,23:15.0,3.369175627240143,70,74,water,1x,female,hwt,None,Master,1 +23,24,WSV1x-2,4700,25:30.0,3.0718954248366015,75,79,water,1x,female,hwt,None,Master,1 +24,25,WGV1x,4700,29:00.0,2.7011494252873565,80,120,water,1x,female,hwt,None,Master,1 +25,26,M2x,4700,15:40.0,5.0,0,120,water,2x,male,hwt,None,Open,1 +26,27,MYouth2x,4700,17:00.0,4.607843137254902,15,18,water,2x,male,hwt,None,Open,1 +27,28,MM2x,4700,17:05.0,4.585365853658536,40,49,water,2x,male,hwt,None,Master,1 +28,29,MSM2x,4700,17:15.0,4.541062801932367,50,59,water,2x,male,hwt,None,Master,1 +29,30,MGM2x,4700,18:25.0,4.253393665158371,60,69,water,2x,male,hwt,None,Master,1 +30,31,MV2x,4700,20:25.9,3.8339179378415853,70,120,water,2x,male,hwt,None,Master,1 +31,32,W2x,4700,17:30.0,4.476190476190476,0,120,water,2x,female,hwt,None,Open,1 +32,33,WYouth2x,4700,18:00.0,4.351851851851852,15,18,water,2x,female,hwt,None,Open,1 +33,34,WM2x,4700,18:50.0,4.15929203539823,40,49,water,2x,female,hwt,None,Master,1 +34,35,WSM2x,4700,19:10.0,4.086956521739131,50,59,water,2x,female,hwt,None,Master,1 +35,36,WGM2x,4700,20:30.0,3.821138211382114,60,69,water,2x,female,hwt,None,Master,1 +36,37,WV2x,4700,22:00.0,3.5606060606060606,70,120,water,2x,female,hwt,None,Master,1 +37,38,FamilyMix2x,4700,18:10.0,4.3119266055045875,0,120,water,2x,mixed,hwt,None,Family,1 From 88bea9086faa00a93be57d81397584ba72f825ba Mon Sep 17 00:00:00 2001 From: Sander Roosendaal Date: Sun, 17 Jan 2021 17:20:55 +0100 Subject: [PATCH 23/30] testing otw race register, submit --- rowers/plannedsessions.py | 3 +- rowers/tests/mocks.py | 10 ++- rowers/tests/test_races.py | 116 +++++++++++++++++++++++++++++++- rowers/tests/testdata/thyro.kml | 6 +- rowers/views/racesviews.py | 4 ++ 5 files changed, 131 insertions(+), 8 deletions(-) diff --git a/rowers/plannedsessions.py b/rowers/plannedsessions.py index bc3b2b9e..3ea7819a 100644 --- a/rowers/plannedsessions.py +++ b/rowers/plannedsessions.py @@ -1464,7 +1464,6 @@ def default_class(r,w,race): sex='male' if w is not None: - print('noot') boatclass = w.workouttype boattype = w.boattype @@ -1475,7 +1474,7 @@ def default_class(r,w,race): boatclass = 'water' else: boatclass = 'rower' - print(boatclass) + boattype = '1x' adaptiveclass = 'None' weightclass = 'hwt' diff --git a/rowers/tests/mocks.py b/rowers/tests/mocks.py index 871de033..800184fa 100644 --- a/rowers/tests/mocks.py +++ b/rowers/tests/mocks.py @@ -74,7 +74,7 @@ def mocked_grpc(*args, **kwargs): class Result: def __init__(*args,**kwargs): self.result = 1 - + class calculator_pb2_grpc: def PowerStub(*args,**kwargs): def __init__(*args,**kwargs): @@ -114,11 +114,17 @@ def mocked_sqlalchemy(*args, **kwargs): def raw_connection(self): return True + class QueryResult: + def fetchall(self): + return [] + class MockConnection: def begin(self): return True - def execute(self): + def execute(self,query): + if 'polygon' in query: + return QueryResult() return True def execute(self): diff --git a/rowers/tests/test_races.py b/rowers/tests/test_races.py index 33b04e34..09651dfa 100644 --- a/rowers/tests/test_races.py +++ b/rowers/tests/test_races.py @@ -11,7 +11,9 @@ from rowers.utils import allmonths,allsundays import rowers.plannedsessions as plannedsessions import rowers.courses as courses +import rowers.tasks as tasks from rowers.views.racesviews import * +from rowers.utils import calculate_age @override_settings(TESTING=True) class ChallengesTest(TestCase): @@ -19,7 +21,7 @@ class ChallengesTest(TestCase): self.u = UserFactory() self.r = Rower.objects.create(user=self.u, - birthdate=faker.profile()['birthdate'], + birthdate=datetime.datetime.now()-datetime.timedelta(days=25*365), gdproptin=True,surveydone=True, gdproptindate=timezone.now(), rowerplan='coach') @@ -52,6 +54,10 @@ class ChallengesTest(TestCase): workouttype = 'water', ) + self.wthyro.startdatetime = nu + self.wthyro.date = nu.date() + self.wthyro.save() + startdate = arrow.get(datetime.datetime.now()-datetime.timedelta(days=1)).datetime start_time = datetime.time() enddate = startdate+datetime.timedelta(days=5) @@ -259,6 +265,7 @@ class ChallengesTest(TestCase): login = self.c.login(username=self.u.username, password=self.password) self.assertTrue(login) + # check virtual events url = reverse('virtualevents_view') response = self.c.get(url) self.assertEqual(response.status_code,200) @@ -268,6 +275,7 @@ class ChallengesTest(TestCase): 'regattatype':'upcoming', } + # make various selections form = VirtualRaceSelectForm(form_data) self.assertTrue(form.is_valid()) @@ -306,3 +314,109 @@ class ChallengesTest(TestCase): response = self.c.post(url) self.assertEqual(response.status_code,200) + + @patch('rowers.views.racesviews.myqueue') + def test_virtualevent_view(self,mocked_myqueue): + login = self.c.login(username=self.u.username, password=self.password) + self.assertTrue(login) + + race = self.SpeedOrder + # look at event + url = reverse('virtualevent_view',kwargs={'id':race.id}) + response = self.c.get(url) + self.assertEqual(response.status_code,200) + + ( + hasinitial, + boattype, + boatclass, + adaptiveclass, + weightclass, + sex, + referencespeed, + initialcategory + ) = plannedsessions.default_class(self.r,None,race) + self.assertTrue(hasinitial) + + if self.r.birthdate: + age = calculate_age(self.r.birthdate) + else: + age = 25 + + # register + url = reverse('virtualevent_register_view',kwargs={'id':race.id}) + response = self.c.get(url) + self.assertEqual(response.status_code,200) + + categories = CourseStandard.objects.filter(standardcollection=race.coursestandards).order_by("name") + + form_data = { + 'teamname': 'ApeTeam', + 'boattype': boattype, + 'boatclass': boatclass, + 'weightcategory': weightclass, + 'adaptiveclass': adaptiveclass, + 'age': age, + 'mix': False, + 'acceptsocialmedia': True, + 'entrycategory':initialcategory.id, + } + form = VirtualRaceResultForm(form_data,categories=categories) + self.assertTrue(form.is_valid()) + + + response = self.c.post(url,form_data,follow=True) + expected_url = reverse('virtualevent_view',kwargs={'id':race.id}) + self.assertRedirects(response, expected_url=expected_url, + status_code=302,target_status_code=200) + + self.assertEqual(response.status_code, 200) + + # toggle email + url = reverse('virtualevent_toggle_email_view',kwargs={'id':race.id}) + response = self.c.get(url,follow=True) + expected_url = reverse('virtualevent_view',kwargs={'id':race.id}) + self.assertRedirects(response, expected_url=expected_url, + status_code=302,target_status_code=200) + self.assertEqual(response.status_code,200) + + records = VirtualRaceResult.objects.filter(userid=self.u.id) + self.assertEqual(len(records),1) + + record = records[0] + + # withdraw + url = reverse('virtualevent_withdrawresult_view',kwargs={'id':race.id,'recordid':record.id}) + response = self.c.get(url) + self.assertEqual(response.status_code,200) + + + # register again + url = reverse('virtualevent_register_view',kwargs={'id':race.id}) + response = self.c.post(url,form_data,follow=True) + expected_url = reverse('virtualevent_view',kwargs={'id':race.id}) + self.assertRedirects(response, expected_url=expected_url, + status_code=302,target_status_code=200) + + self.assertEqual(response.status_code, 200) + + records = VirtualRaceResult.objects.filter(userid=self.u.id) + self.assertEqual(len(records),1) + + record = records[0] + + # submit workout + url = reverse('virtualevent_submit_result_view',kwargs={'id':race.id,'workoutid':self.wthyro.id}) + response = self.c.get(url) + self.assertEqual(response.status_code, 200) + + form_data = { + 'workouts':[self.wthyro.id], + 'record':record.id, + } + + response = self.c.post(url,form_data,follow=True) + self.assertRedirects(response, expected_url=expected_url, + status_code=302,target_status_code=200) + + self.assertEqual(response.status_code, 200) diff --git a/rowers/tests/testdata/thyro.kml b/rowers/tests/testdata/thyro.kml index ddb176b1..dee2c531 100644 --- a/rowers/tests/testdata/thyro.kml +++ b/rowers/tests/testdata/thyro.kml @@ -5,7 +5,7 @@ Courses - Thyro Oefenbaantje + - Thyro Oefenbaantje 1 Start @@ -13,7 +13,7 @@ 1 - 6.848141106797385,52.22397960128134,0 6.847604734558461,52.22366336501974,0 6.84775082703156,52.22348501076475,0 6.848327567214691,52.22382735084554,0 6.848141106797385,52.22397960128134,0 6.848141106797385,52.22397960128134,0 + 6.848141106797385,52.22397960128134,0 6.847604734558461,52.22366336501974,0 6.84775082703156,52.22348501076475,0 6.848327567214691,52.22382735084554,0 6.848141106797385,52.22397960128134,0 6.848141106797385,52.22397960128134,0 6.848141106797385,52.22397960128134,0 @@ -24,7 +24,7 @@ 1 - 6.845667068529353,52.22505473275959,0 6.846124505574835,52.2253406573624,0 6.845843953045947,52.22551933313507,0 6.845303793589403,52.22520820682232,0 6.845667068529353,52.22505473275959,0 6.845667068529353,52.22505473275959,0 + 6.845667068529353,52.22505473275959,0 6.846124505574835,52.2253406573624,0 6.845843953045947,52.22551933313507,0 6.845303793589403,52.22520820682232,0 6.845667068529353,52.22505473275959,0 6.845667068529353,52.22505473275959,0 6.845667068529353,52.22505473275959,0 diff --git a/rowers/views/racesviews.py b/rowers/views/racesviews.py index da7eefb4..f5710e38 100644 --- a/rowers/views/racesviews.py +++ b/rowers/views/racesviews.py @@ -2080,6 +2080,7 @@ def virtualevent_register_view(request,id=0): if request.method == 'POST': # process form form = VirtualRaceResultForm(request.POST,categories=categories) + if form.is_valid(): cd = form.cleaned_data teamname = cd['teamname'] @@ -2159,6 +2160,7 @@ def virtualevent_register_view(request,id=0): record.save() + add_rower_race(r,race) # send email about opt out if not acceptsocialmedia: @@ -2217,6 +2219,8 @@ def virtualevent_register_view(request,id=0): "You have successfully registered for this race. Good luck!" ) + + url = reverse('virtualevent_view', kwargs = { 'id':race.id From 7ae41298871aba22d2e5dab063e3390578a91b8d Mon Sep 17 00:00:00 2001 From: Sander Roosendaal Date: Sun, 17 Jan 2021 18:54:45 +0100 Subject: [PATCH 24/30] test indoor --- rowers/tests/test_races.py | 230 ++++++++++++++++++++++++++++++++++++- 1 file changed, 229 insertions(+), 1 deletion(-) diff --git a/rowers/tests/test_races.py b/rowers/tests/test_races.py index 09651dfa..5ff07be1 100644 --- a/rowers/tests/test_races.py +++ b/rowers/tests/test_races.py @@ -101,7 +101,8 @@ class ChallengesTest(TestCase): def test_distance(self): lat_lon = (52.214229145558484, 6.890036546847821) distance = howfaris(lat_lon,self.ThyroBaantje) - self.assertEqual(distance,3.156402768718697) + distance = int(100*distance) + self.assertEqual(distance,315) def test_getnearestraces(self): lat_lon = (52.214229145558484, 6.890036546847821) @@ -420,3 +421,230 @@ class ChallengesTest(TestCase): status_code=302,target_status_code=200) self.assertEqual(response.status_code, 200) + + +@override_settings(TESTING=True) +class IndoorChallengesTest(TestCase): + def setUp(self): + self.u = UserFactory() + + self.r = Rower.objects.create(user=self.u, + birthdate=datetime.datetime.now()-datetime.timedelta(days=25*365), + gdproptin=True,surveydone=True, + gdproptindate=timezone.now(), + rowerplan='coach') + + self.c = Client() + self.user_workouts = WorkoutFactory.create_batch(5, user=self.r) + self.factory = RequestFactory() + self.password = faker.word() + self.u.set_password(self.password) + self.u.save() + + id = save_scoring('Standard Scoring',self.u,'rowers/tests/testdata/coursestandard.csv',id=0) + self.Scoring = StandardCollection.objects.get(id=id) + + + result = get_random_file(filename='rowers/tests/testdata/2019-01-13_session.csv', + name='sprintervals') + + self.werg = WorkoutFactory(user=self.r, + csvfilename=result['filename'], + starttime=result['starttime'], + startdatetime=result['startdatetime'], + duration=result['duration'], + distance=result['totaldist'], + workouttype = 'water', + ) + + self.werg.startdatetime = nu + self.werg.date = nu.date() + self.werg.save() + + startdate = arrow.get(datetime.datetime.now()-datetime.timedelta(days=1)).datetime + start_time = datetime.time() + enddate = startdate+datetime.timedelta(days=5) + end_time = start_time + evaluation_closure = startdate+datetime.timedelta(days=6) + registration_closure = evaluation_closure + contact_phone = '06342323' + contact_email = 'roosendaalsander@gmail.com' + + timezone_str = 'UTC' + + self.IndoorSpeedOrder = VirtualRace( + name='Thyro Speed Order', + startdate=startdate, + preferreddate = startdate, + start_time = start_time, + enddate=enddate, + end_time=end_time, + comment='', + sessiontype = 'indoorrace', + timezone=timezone_str, + evaluation_closure=evaluation_closure, + registration_closure=registration_closure, + contact_phone=contact_phone, + contact_email=contact_email, + country = 'Netherlands', + manager=self.u, + sessionvalue=result['totaldist'], + sessionunit='m', + sessionmode='distance', + ) + self.IndoorSpeedOrder.save() + + + def tearDown(self): + for workout in self.user_workouts: + try: + os.remove(workout.csvfilename) + except (IOError, FileNotFoundError,OSError): + pass + + + def test_virtualevents_view(self): + login = self.c.login(username=self.u.username, password=self.password) + self.assertTrue(login) + + # check virtual events + url = reverse('virtualevents_view') + response = self.c.get(url) + self.assertEqual(response.status_code,200) + + form_data = { + 'country':'All', + 'regattatype':'upcoming', + } + + # make various selections + form = VirtualRaceSelectForm(form_data) + self.assertTrue(form.is_valid()) + + response = self.c.post(url) + self.assertEqual(response.status_code,200) + + form_data = { + 'country':'All', + 'regattatype':'previous', + } + + form = VirtualRaceSelectForm(form_data) + self.assertTrue(form.is_valid()) + + response = self.c.post(url) + self.assertEqual(response.status_code,200) + + form_data = { + 'country':'All', + 'regattatype':'ongoing', + } + + form = VirtualRaceSelectForm(form_data) + self.assertTrue(form.is_valid()) + + response = self.c.post(url) + self.assertEqual(response.status_code,200) + + form_data = { + 'country':'All', + 'regattatype':'my', + } + + form = VirtualRaceSelectForm(form_data) + self.assertTrue(form.is_valid()) + + response = self.c.post(url) + self.assertEqual(response.status_code,200) + + @patch('rowers.views.racesviews.myqueue') + def test_virtualevent_view(self,mocked_myqueue): + login = self.c.login(username=self.u.username, password=self.password) + self.assertTrue(login) + + race = self.IndoorSpeedOrder + # look at event + url = reverse('virtualevent_view',kwargs={'id':race.id}) + response = self.c.get(url) + self.assertEqual(response.status_code,200) + + if self.r.birthdate: + age = calculate_age(self.r.birthdate) + else: + age = 25 + + # register + url = reverse('indoorvirtualevent_register_view',kwargs={'id':race.id}) + response = self.c.get(url) + self.assertEqual(response.status_code,200) + + + form_data = { + 'teamname': 'ApeTeam', + 'boatclass': 'rower', + 'weightcategory': 'hwt', + 'adaptiveclass': 'None', + 'age': age, + 'mix': False, + 'acceptsocialmedia': True, + } + form = IndoorVirtualRaceResultForm(form_data) + + self.assertTrue(form.is_valid()) + + + response = self.c.post(url,form_data,follow=True) + expected_url = reverse('virtualevent_view',kwargs={'id':race.id}) + self.assertRedirects(response, expected_url=expected_url, + status_code=302,target_status_code=200) + + self.assertEqual(response.status_code, 200) + + # toggle email + url = reverse('indoorvirtualevent_toggle_email_view',kwargs={'id':race.id}) + response = self.c.get(url,follow=True) + expected_url = reverse('virtualevent_view',kwargs={'id':race.id}) + self.assertRedirects(response, expected_url=expected_url, + status_code=302,target_status_code=200) + self.assertEqual(response.status_code,200) + + records = IndoorVirtualRaceResult.objects.filter(userid=self.u.id) + self.assertEqual(len(records),1) + + record = records[0] + + # withdraw + url = reverse('virtualevent_withdrawresult_view',kwargs={'id':race.id,'recordid':record.id}) + response = self.c.get(url) + self.assertEqual(response.status_code,200) + + + # register again + url = reverse('indoorvirtualevent_register_view',kwargs={'id':race.id}) + response = self.c.post(url,form_data,follow=True) + expected_url = reverse('virtualevent_view',kwargs={'id':race.id}) + self.assertRedirects(response, expected_url=expected_url, + status_code=302,target_status_code=200) + + self.assertEqual(response.status_code, 200) + + records = IndoorVirtualRaceResult.objects.filter(userid=self.u.id) + self.assertEqual(len(records),1) + + record = records[0] + + # submit workout + url = reverse('virtualevent_submit_result_view',kwargs={'id':race.id,'workoutid':self.werg.id}) + response = self.c.get(url) + self.assertEqual(response.status_code, 200) + + form_data = { + 'workouts':[self.werg.id], + 'record':record.id, + } + + response = self.c.post(url,form_data,follow=True) + self.assertRedirects(response, expected_url=expected_url, + status_code=302,target_status_code=200) + + self.assertEqual(response.status_code, 200) From 7cacd6307e9bd6525829120566705230f2d62b15 Mon Sep 17 00:00:00 2001 From: Sander Roosendaal Date: Sun, 17 Jan 2021 19:15:12 +0100 Subject: [PATCH 25/30] enough new tests for today --- rowers/tests/test_aavirtualevents.py | 40 +++++++++++++++++++++++++ rowers/tests/test_races.py | 45 ++++++++++++++++++++++++++++ rowers/views/racesviews.py | 5 +++- 3 files changed, 89 insertions(+), 1 deletion(-) diff --git a/rowers/tests/test_aavirtualevents.py b/rowers/tests/test_aavirtualevents.py index 13609595..7cc66429 100644 --- a/rowers/tests/test_aavirtualevents.py +++ b/rowers/tests/test_aavirtualevents.py @@ -423,6 +423,46 @@ class VirtualEventViewTest(TestCase): status_code=302,target_status_code=200) + # set up new OTE race + def test_new_fastestrace(self): + login = self.c.login(username=self.u.username, password=self.password) + self.assertTrue(login) + + url = reverse('fastestvirtualevent_create_view') + response = self.c.get(url) + self.assertEqual(response.status_code,200) + + form_data = { + 'startdate':self.tomorrow.strftime('%Y-%m-%d'), + 'start_time':'8:00:00', + 'enddate': self.nextweek.strftime('%Y-%m-%d'), + 'end_time':'8:00:00', + 'comment': faker.text(), + 'sessionunit': 'm', + 'sessionvalue': 500, + 'name': faker.word(), + 'registration_form':'deadline', + 'registration_closure_0': self.nextweek.strftime('%Y-%m-%d'), + 'registration_closure_1': self.nextweek.strftime('%H:%M:%S'), + 'evaluation_closure_0': self.intwoweeks.strftime('%Y-%m-%d'), + 'evaluation_closure_1': self.intwoweeks.strftime('%H:%M:%S'), + 'contact_phone': '', + 'contact_email': self.u.email, + 'timezone': 'UTC' + } + + + form = IndoorVirtualRaceForm(form_data) + if not form.is_valid(): + print(form.errors) + self.assertTrue(form.is_valid()) + + response = self.c.post(url,form_data,follow=True) + + self.assertRedirects(response, + expected_url = reverse('virtualevents_view'), + status_code=302,target_status_code=200) + # set up new OTE race diff --git a/rowers/tests/test_races.py b/rowers/tests/test_races.py index 5ff07be1..e8a50800 100644 --- a/rowers/tests/test_races.py +++ b/rowers/tests/test_races.py @@ -391,6 +391,20 @@ class ChallengesTest(TestCase): response = self.c.get(url) self.assertEqual(response.status_code,200) + form_data = { + 'message':'zo niet he', + 'reason':'suspicious' + } + form = DisqualificationForm(form_data) + self.assertTrue(form.is_valid()) + + response = self.c.post(url,form_data,follow=True) + expected_url = reverse('virtualevent_view',kwargs={'id':race.id}) + self.assertRedirects(response, expected_url=expected_url, + status_code=302,target_status_code=200) + + self.assertEqual(response.status_code, 200) + # register again url = reverse('virtualevent_register_view',kwargs={'id':race.id}) @@ -422,6 +436,37 @@ class ChallengesTest(TestCase): self.assertEqual(response.status_code, 200) + records = VirtualRaceResult.objects.filter(userid=self.u.id) + self.assertEqual(len(records),1) + + record = records[0] + record.workoutid = self.wthyro.id + record.save() + + url = reverse('virtualevent_disqualify_view',kwargs={'id':race.id,'recordid':record.id}) + response = self.c.get(url) + self.assertEqual(response.status_code,200) + + form_data = { + 'message':'zo niet he', + 'reason':'suspicious' + } + form = DisqualificationForm(form_data) + self.assertTrue(form.is_valid()) + + response = self.c.post(url,form_data,follow=True) + expected_url = reverse('virtualevent_view',kwargs={'id':race.id}) + self.assertRedirects(response, expected_url=expected_url, + status_code=302,target_status_code=200) + + self.assertEqual(response.status_code, 200) + + url = reverse('virtualevent_results_download_view',kwargs={'id':race.id}) + response = self.c.get(url) + self.assertEqual(response.status_code,200) + + # add boat + @override_settings(TESTING=True) class IndoorChallengesTest(TestCase): diff --git a/rowers/views/racesviews.py b/rowers/views/racesviews.py index f5710e38..001cb1b9 100644 --- a/rowers/views/racesviews.py +++ b/rowers/views/racesviews.py @@ -1060,7 +1060,10 @@ def virtualevent_disqualify_view(request,id=0,recordid=0): else: form = DisqualificationForm(request.POST) - workout = Workout.objects.get(id=record.workoutid) + try: + workout = Workout.objects.get(id=record.workoutid) + except Workout.DoesNotExist: + raise Http404("Workout not found") g = GraphImage.objects.filter(workout=workout).order_by("-creationdatetime") for i in g: From 09aadd9ba11dff77e3c4dea7b88d01018c8dfd22 Mon Sep 17 00:00:00 2001 From: Sander Roosendaal Date: Sun, 17 Jan 2021 19:50:46 +0100 Subject: [PATCH 26/30] one mor etest --- rowers/tests/test_races.py | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/rowers/tests/test_races.py b/rowers/tests/test_races.py index e8a50800..d93d8693 100644 --- a/rowers/tests/test_races.py +++ b/rowers/tests/test_races.py @@ -420,6 +420,22 @@ class ChallengesTest(TestCase): record = records[0] + # edit entry + url = reverse('virtualevent_entry_edit_view',kwargs={'id':race.id,'entryid':record.id}) + response = self.c.get(url) + self.assertEqual(response.status_code,200) + response = self.c.post(url,form_data,follow=True) + expected_url = reverse('virtualevent_view',kwargs={'id':race.id}) + self.assertRedirects(response, expected_url=expected_url, + status_code=302,target_status_code=200) + + self.assertEqual(response.status_code, 200) + + records = VirtualRaceResult.objects.filter(userid=self.u.id) + self.assertEqual(len(records),1) + + record = records[0] + # submit workout url = reverse('virtualevent_submit_result_view',kwargs={'id':race.id,'workoutid':self.wthyro.id}) response = self.c.get(url) @@ -465,6 +481,11 @@ class ChallengesTest(TestCase): response = self.c.get(url) self.assertEqual(response.status_code,200) + # add follower + url = reverse('addfollower_view',kwargs={'id':race.id}) + response = self.c.get(url) + self.assertEqual(response.status_code,200) + # add boat From f4f9b53be8cfc2466f9ee4e0233879f8ca2ce162 Mon Sep 17 00:00:00 2001 From: Sander Roosendaal Date: Mon, 18 Jan 2021 08:02:02 +0100 Subject: [PATCH 27/30] 2 more small tests --- rowers/tests/test_races.py | 30 ++++++++++++++++++++++++++++-- 1 file changed, 28 insertions(+), 2 deletions(-) diff --git a/rowers/tests/test_races.py b/rowers/tests/test_races.py index d93d8693..0a70402c 100644 --- a/rowers/tests/test_races.py +++ b/rowers/tests/test_races.py @@ -110,12 +110,22 @@ class ChallengesTest(TestCase): traces = getnearestraces(lat_lon,races) self.assertEqual(len(traces),1) + lat_lon = (0, 0) + races = VirtualRace.objects.all() + traces = getnearestraces(lat_lon,races) + self.assertEqual(len(traces),1) + def test_getnearestcourses(self): lat_lon = (52.214229145558484, 6.890036546847821) courses = [self.ThyroBaantje] tcourses = getnearestcourses(lat_lon,courses) self.assertEqual(len(tcourses),1) + lat_lon = (0, 0) + courses = [self.ThyroBaantje] + tcourses = getnearestcourses(lat_lon,courses) + self.assertEqual(len(tcourses),1) + def test_courses_view(self): login = self.c.login(username=self.u.username, password=self.password) self.assertTrue(login) @@ -405,6 +415,17 @@ class ChallengesTest(TestCase): self.assertEqual(response.status_code, 200) + form_data = { + 'teamname': 'ApeTeam', + 'boattype': boattype, + 'boatclass': boatclass, + 'weightcategory': weightclass, + 'adaptiveclass': adaptiveclass, + 'age': age, + 'mix': False, + 'acceptsocialmedia': True, + 'entrycategory':initialcategory.id, + } # register again url = reverse('virtualevent_register_view',kwargs={'id':race.id}) @@ -483,8 +504,13 @@ class ChallengesTest(TestCase): # add follower url = reverse('addfollower_view',kwargs={'id':race.id}) - response = self.c.get(url) - self.assertEqual(response.status_code,200) + response = self.c.get(url,follow=True) + expected_url = reverse('virtualevent_view',kwargs={'id':race.id}) + self.assertRedirects(response, expected_url=expected_url, + status_code=302,target_status_code=200) + + self.assertEqual(response.status_code, 200) + # add boat From 4e8dade3dcfe6ac867099020944f1fa2d45fdf25 Mon Sep 17 00:00:00 2001 From: Sander Roosendaal Date: Mon, 18 Jan 2021 08:38:43 +0100 Subject: [PATCH 28/30] some more tests --- rowers/tests/test_races.py | 97 ++++++++++++++++++++++++++++++-- rowers/tests/testdata/thyro2.kml | 35 ++++++++++++ rowers/urls.py | 4 +- rowers/views/racesviews.py | 58 +------------------ 4 files changed, 131 insertions(+), 63 deletions(-) create mode 100644 rowers/tests/testdata/thyro2.kml diff --git a/rowers/tests/test_races.py b/rowers/tests/test_races.py index 0a70402c..2f1a3114 100644 --- a/rowers/tests/test_races.py +++ b/rowers/tests/test_races.py @@ -188,6 +188,7 @@ class ChallengesTest(TestCase): Alphen = GeoCourse.objects.get(id=2) + # edit # edit url = reverse('course_edit_view',kwargs={'id':Alphen.id}) response = self.c.get(url) @@ -211,7 +212,48 @@ class ChallengesTest(TestCase): self.assertEqual(response.status_code,200) - # (ToDO Upload new kml) + # Upload new kml + url = reverse('course_upload_replace_view',kwargs={'id':self.ThyroBaantje.id}) + response = self.c.get(url) + self.assertEqual(response.status_code,200) + + filename = 'rowers/tests/testdata/thyro2.kml' + f = open(filename,'r') + + file_data = {'file': f} + form_data = { + 'name':'Thyro modified', + 'notes': 'aa', + 'country': 'Netherlands', + 'file':f, + } + + form = CourseForm(form_data,file_data) + response = self.c.post(url,form_data,follow=True) + f.close() + + expected_url = reverse('course_update_confirm',kwargs={'id':self.ThyroBaantje.id,'newid':3}) + + self.assertRedirects(response, expected_url=expected_url, + status_code=302,target_status_code=200) + + self.assertEqual(response.status_code, 200) + + url = expected_url + response = self.c.get(url) + self.assertEqual(response.status_code,200) + + form_data = { + 'doupdate': True, + } + + response = self.c.post(url,form_data,follow=True) + expected_url = reverse('course_view',kwargs={'id':3}) + self.assertRedirects(response, expected_url=expected_url, + status_code=302,target_status_code=200) + + self.assertEqual(response.status_code, 200) + # KML Download url = reverse('course_kmldownload_view',kwargs={'id':Alphen.id}) @@ -396,6 +438,53 @@ class ChallengesTest(TestCase): record = records[0] + # ranking + url = reverse('virtualevent_ranking_view',kwargs={'id':race.id}) + response = self.c.get(url) + self.assertEqual(response.status_code,200) + + # add boat + url = reverse('virtualevent_addboat_view',kwargs={'id':race.id}) + response = self.c.get(url) + self.assertEqual(response.status_code,200) + + categories = CourseStandard.objects.filter(standardcollection=race.coursestandards).order_by("name") + thecategory = categories.filter( + agemin=initialcategory.agemin, + agemax=initialcategory.agemax, + boatclass='water', + boattype='2x', + sex=initialcategory.sex, + weightclass=initialcategory.weightclass, + adaptiveclass=initialcategory.adaptiveclass, + skillclass=initialcategory.skillclass + ) + + self.assertTrue(len(thecategory),1) + thecategory = thecategory[0] + + form_data = { + 'teamname': 'ApeTeam', + 'boattype': boattype, + 'boatclass': boatclass, + 'weightcategory': weightclass, + 'adaptiveclass': adaptiveclass, + 'age': age, + 'mix': False, + 'acceptsocialmedia': True, + 'entrycategory':thecategory.id, + } + form = VirtualRaceResultForm(form_data,categories=categories) + self.assertTrue(form.is_valid()) + + + response = self.c.post(url,form_data,follow=True) + expected_url = reverse('virtualevent_view',kwargs={'id':race.id}) + self.assertRedirects(response, expected_url=expected_url, + status_code=302,target_status_code=200) + + self.assertEqual(response.status_code, 200) + # withdraw url = reverse('virtualevent_withdrawresult_view',kwargs={'id':race.id,'recordid':record.id}) response = self.c.get(url) @@ -437,7 +526,7 @@ class ChallengesTest(TestCase): self.assertEqual(response.status_code, 200) records = VirtualRaceResult.objects.filter(userid=self.u.id) - self.assertEqual(len(records),1) + self.assertEqual(len(records),2) record = records[0] @@ -453,7 +542,7 @@ class ChallengesTest(TestCase): self.assertEqual(response.status_code, 200) records = VirtualRaceResult.objects.filter(userid=self.u.id) - self.assertEqual(len(records),1) + self.assertEqual(len(records),2) record = records[0] @@ -474,7 +563,7 @@ class ChallengesTest(TestCase): self.assertEqual(response.status_code, 200) records = VirtualRaceResult.objects.filter(userid=self.u.id) - self.assertEqual(len(records),1) + self.assertEqual(len(records),2) record = records[0] record.workoutid = self.wthyro.id diff --git a/rowers/tests/testdata/thyro2.kml b/rowers/tests/testdata/thyro2.kml new file mode 100644 index 00000000..e5486083 --- /dev/null +++ b/rowers/tests/testdata/thyro2.kml @@ -0,0 +1,35 @@ + + + + Courses.kml + + Courses + + - Thyro Oefenbaantje + 1 + + Start + + 1 + + + 6.848,52.22397960128134,0 6.847604734558461,52.22366336501974,0 6.84775082703156,52.22348501076475,0 6.848327567214691,52.22382735084554,0 6.848141106797385,52.22397960128134,0 6.848141106797385,52.22397960128134,0 6.848141106797385,52.22397960128134,0 + + + + + + Finish + + 1 + + + 6.845667068529353,52.22505473275959,0 6.846124505574835,52.2253406573624,0 6.845843953045947,52.22551933313507,0 6.845303793589403,52.22520820682232,0 6.845667068529353,52.22505473275959,0 6.845667068529353,52.22505473275959,0 6.845667068529353,52.22505473275959,0 + + + + + + + + diff --git a/rowers/urls.py b/rowers/urls.py index 59ec7855..3314730a 100644 --- a/rowers/urls.py +++ b/rowers/urls.py @@ -876,8 +876,8 @@ urlpatterns = [ re_path(r'^courses/(?P\d+)/delete/$',views.course_delete_view,name='course_delete_view'), re_path(r'^courses/(?P\d+)/downloadkml/$',views.course_kmldownload_view, name='course_kmldownload_view'), - re_path(r'^courses/(?P\d+)/replace/$',views.course_replace_view, - name='course_replace_view'), +# re_path(r'^courses/(?P\d+)/replace/$',views.course_replace_view, +# name='course_replace_view'), re_path(r'^courses/(?P\d+)/$',views.course_view,name='course_view'), re_path(r'^standards/(?P\d+)/$',views.standard_view,name='standard_view'), re_path(r'^standards/(?P\d+)/download/$',views.standards_download_view, diff --git a/rowers/views/racesviews.py b/rowers/views/racesviews.py index 001cb1b9..5f3c089b 100644 --- a/rowers/views/racesviews.py +++ b/rowers/views/racesviews.py @@ -204,62 +204,6 @@ def course_map_view(request,id=0): }) -@login_required() -@permission_required('course.change_course',fn=get_course_by_pk,raise_exception=True) -def course_replace_view(request,id=0): - course = get_object_or_404(GeoCourse,pk=id) - - r = getrower(request.user) - - #thecourses = GeoCourse.objects.filter(manager=r).exclude(id=id) - - if request.method == 'POST': - form = CourseSelectForm(request.POST) - if form.is_valid(): - course2 = form.cleaned_data['course'] - res = courses.replacecourse(course,course2) - - url = reverse(course_view, - kwargs = { - 'id':course2.id - }) - - return HttpResponseRedirect(url) - else: - - form = CourseSelectForm(course=course,manager=r) - #form.fields["course"].queryset = thecourses - - script,div = course_map(course) - - breadcrumbs = [ - { - 'url': reverse('virtualevents_view'), - 'name': 'Challenges' - }, - { - 'url': reverse(courses_view), - 'name': 'Courses' - }, - { - 'url': reverse(course_view,kwargs={'id':course.id}), - 'name': course.name - }, - { - 'url': reverse(course_replace_view,kwargs={'id':course.id}), - 'name': 'Replace Markers' - } - ] - - return render(request, - 'course_replace.html', - {'course':course, - 'active':'nav-racing', - 'breadcrumbs':breadcrumbs, - 'rower':r, - 'mapdiv':div, - 'mapscript':script, - 'form':form}) @login_required() @permission_required('course.delete_course',fn=get_course_by_pk,raise_exception=True) @@ -674,7 +618,7 @@ def course_update_confirm(request,id=0,newid=0): 'name': course.name }, { - 'url': reverse(course_replace_view,kwargs={'id':course.id}), + 'url': reverse(course_upload_replace_view,kwargs={'id':course.id}), 'name': 'Replace Markers' } ] From 504d3c2d1b6a4c79a681938ea446b2c3a60331c2 Mon Sep 17 00:00:00 2001 From: Sander Roosendaal Date: Mon, 18 Jan 2021 17:01:59 +0100 Subject: [PATCH 29/30] more tests unit tests on dataprep --- rowers/dataprep.py | 15 ------- rowers/dataprepnodjango.py | 34 ---------------- rowers/tasks.py | 2 +- rowers/tests/test_unit_tests.py | 69 +++++++++++++++++++++++++++++++++ 4 files changed, 70 insertions(+), 50 deletions(-) diff --git a/rowers/dataprep.py b/rowers/dataprep.py index f1c806a7..5b23157b 100644 --- a/rowers/dataprep.py +++ b/rowers/dataprep.py @@ -949,21 +949,6 @@ def update_c2id_sql(id,c2id): return 1 -def fitnessmetric_to_sql(m,table='powertimefitnessmetric',debug=False): - engine = create_engine(database_url, echo=False) - columns = ', '.join(m.keys()) - placeholders = ", ".join(["?"] * len(m)) - - query = "INSERT into %s ( %s ) Values (%s)" % (table, columns, placeholders) - - values = tuple(m[key] for key in m.keys()) - with engine.connect() as conn, conn.begin(): - result = conn.execute(query,values) - - conn.close() - engine.dispose() - - return 1 def getcpdata_sql(rower_id,table='cpdata'): diff --git a/rowers/dataprepnodjango.py b/rowers/dataprepnodjango.py index 0dfcb5df..ae47a86d 100644 --- a/rowers/dataprepnodjango.py +++ b/rowers/dataprepnodjango.py @@ -543,40 +543,6 @@ def update_c2id_sql(id,c2id): return 1 -def fitnessmetric_to_sql(m,table='powertimefitnessmetric',debug=False, - doclean=False): - # test if nan among values - for key in m.keys(): - if str(m[key]) == 'nan': - m[key] = -1 - if 'inf' in str(m[key]): - m[key] = -1 - - if debug: - engine = create_engine(database_url_debug, echo=False) - else: - engine = create_engine(database_url, echo=False) - - columns = ', '.join(m.keys()) - if use_sqlite: - placeholders = ", ".join(["?"] * len(m)) - else: - placeholders = ", ".join(["%s"] * len(m)) - - query = "INSERT into %s ( %s ) Values (%s)" % (table, columns, placeholders) - query2 = "DELETE FROM %s WHERE PowerFourMin < 0 and PowerOneHour < 0 and PowerTwoK < 0 and user_id = %s " % (table,m['user_id']) - - values = tuple(m[key] for key in m.keys()) - with engine.connect() as conn, conn.begin(): - if doclean: - result2 = conn.execute(query2) - result = conn.execute(query,values) - - - conn.close() - engine.dispose() - - return 1 diff --git a/rowers/tasks.py b/rowers/tasks.py index 562021c8..61479080 100644 --- a/rowers/tasks.py +++ b/rowers/tasks.py @@ -72,7 +72,7 @@ from rowers.dataprepnodjango import ( update_strokedata, getsmallrowdata_db, updatecpdata_sql,update_c2id_sql, update_workout_field_sql, - update_agegroup_db,fitnessmetric_to_sql, + update_agegroup_db, add_c2_stroke_data_db,totaltime_sec_to_string, create_c2_stroke_data_db,update_empower, database_url_debug,database_url,dataprep, diff --git a/rowers/tests/test_unit_tests.py b/rowers/tests/test_unit_tests.py index c1e2c9f3..01d9ddb0 100644 --- a/rowers/tests/test_unit_tests.py +++ b/rowers/tests/test_unit_tests.py @@ -11,6 +11,72 @@ nu = datetime.datetime.now() # interactive plots from rowers import interactiveplots +from rowers import dataprep + +class DataPrepTests(TestCase): + def setUp(self): + self.u = UserFactory() + + self.r = Rower.objects.create(user=self.u, + birthdate=faker.profile()['birthdate'], + gdproptin=True,surveydone=True, + gdproptindate=timezone.now(), + rowerplan='coach') + + self.c = Client() + self.user_workouts = WorkoutFactory.create_batch(5, user=self.r) + self.factory = RequestFactory() + self.password = faker.word() + self.u.set_password(self.password) + self.u.save() + + result = get_random_file(filename='rowers/tests/testdata/uherskehradiste_otw.csv') + + self.wuh_otw = WorkoutFactory(user=self.r, + csvfilename=result['filename'], + starttime=result['starttime'], + startdatetime=result['startdatetime'], + duration=result['duration'], + distance=result['totaldist'], + workouttype = 'water', + ) + + + def tearDown(self): + pass + + @patch('rowers.dataprep.getsmallrowdata_db',side_effect=mocked_getsmallrowdata_uh) + def test_get_videodata(self,mocked_getsmallrowdata_uh): + data, metrics, maxtime = dataprep.get_video_data(self.wuh_otw) + + self.assertEqual(len(data),9) + self.assertEqual(len(metrics),6) + self.assertEqual(int(maxtime),1737) + + def test_polarization_index(self): + df = pd.read_csv('rowers/tests/testdata/uhfull.csv') + index = dataprep.polarization_index(df,self.r) + self.assertEqual(int(100*index),-67) + + def test_get_latlon(self): + data = dataprep.get_latlon(self.wuh_otw.id) + self.assertEqual(len(data),2) + + def test_workout_summary_to_df(self): + df = dataprep.workout_summary_to_df(self.r) + self.assertEqual(len(df),6) + + @patch('rowers.dataprep.create_engine') + def test_update_c2id(self,mocked_sqlalchemy): + res = dataprep.update_c2id_sql(1,1) + self.assertEqual(res,1) + + def test_checkmarker(self): + workouts = Workout.objects.all().order_by("-date") + wmax = dataprep.check_marker(workouts[0]) + self.assertTrue(wmax.rankingpiece) + + class InteractivePlotTests(TestCase): def setUp(self): @@ -29,6 +95,9 @@ class InteractivePlotTests(TestCase): self.u.set_password(self.password) self.u.save() + def tearDown(self): + pass + def test_interactive_hr_piechart(self): df = pd.read_csv('rowers/tests/testdata/getrowdata_mock.csv') From 31ff1d58883d9b3ea39cb4da201dd5f503facdd9 Mon Sep 17 00:00:00 2001 From: Sander Roosendaal Date: Mon, 18 Jan 2021 17:21:25 +0100 Subject: [PATCH 30/30] done with dataprep for now --- rowers/dataprep.py | 252 -------------------------------- rowers/tests/test_unit_tests.py | 9 ++ 2 files changed, 9 insertions(+), 252 deletions(-) diff --git a/rowers/dataprep.py b/rowers/dataprep.py index 5b23157b..ab951bba 100644 --- a/rowers/dataprep.py +++ b/rowers/dataprep.py @@ -2447,106 +2447,6 @@ def getsmallrowdata_db(columns, ids=[], doclean=True,workstrokesonly=True,comput return df -def getsmallrowdata_db_dask(columns, ids=[], doclean=True,workstrokesonly=True,compute=True): - # prepmultipledata(ids) - - csvfilenames = ['media/strokedata_{id}.parquet.gz'.format(id=id) for id in ids] - data = [] - columns = [c for c in columns if c != 'None'] - columns = list(set(columns)) - - if len(ids)>1: - for id,f in zip(ids,csvfilenames): - try: - #df = dd.read_parquet(f,columns=columns,engine='pyarrow') - df = dd.read_parquet(f,columns=columns) - data.append(df) - except OSError: - rowdata, row = getrowdata(id=id) - if rowdata and len(rowdata.df): - datadf = dataprep(rowdata.df,id=id,bands=True,otwpower=True,barchart=True) - # df = dd.read_parquet(f,columns=columns,engine='pyarrow') - df = dd.read_parquet(f,columns=columns) - data.append(df) - - df = dd.concat(data,axis=0) - # df = dd.concat(data,axis=0) - - else: - try: - df = dd.read_parquet(csvfilenames[0],columns=columns) - except OSError: - rowdata,row = getrowdata(id=ids[0]) - if rowdata and len(rowdata.df): - data = dataprep(rowdata.df,id=ids[0],bands=True,otwpower=True,barchart=True) - df = dd.read_parquet(csvfilenames[0],columns=columns) - # df = dd.read_parquet(csvfilenames[0], - # column=columns,engine='pyarrow', - # ) - - # df = df.loc[:,~df.columns.duplicated()] - - - - if compute: - data = df.compute() - if doclean: - data = clean_df_stats(data, ignorehr=True, - workstrokesonly=workstrokesonly) - data.dropna(axis=1,how='all',inplace=True) - data.dropna(axis=0,how='any',inplace=True) - return data - - return df - -def getsmallrowdata_db_old(columns, ids=[], doclean=True, workstrokesonly=True): - prepmultipledata(ids) - data,extracols = read_cols_df_sql(ids, columns) - if extracols and len(ids)==1: - w = Workout.objects.get(id=ids[0]) - row = rdata(w.csvfilename) - try: - row.set_instroke_metrics() - except (AttributeError,TypeError): - pass - - try: - f = row.df['TimeStamp (sec)'].diff().mean() - except (AttributeError,KeyError) as e: - f = 0 - - if f != 0 and not np.isnan(f): - windowsize = 2 * (int(10. / (f))) + 1 - else: - windowsize = 1 - for c in extracols: - try: - cdata = row.df[c] - cdata.fillna(inplace=True,method='bfill') - # This doesn't work because sometimes data are duplicated at save - try: - cdata2 = savgol_filter(cdata.values,windowsize,3) - data[c] = cdata2 - except ValueError: - data[c] = cdata - - - - except (KeyError, AttributeError): - data[c] = 0 - - - # convert newtons - - if doclean: - data = clean_df_stats(data, ignorehr=True, - workstrokesonly=workstrokesonly) - data.dropna(axis=1,how='all',inplace=True) - data.dropna(axis=0,how='any',inplace=True) - - - return data - # Fetch both the workout and the workout stroke data (from CSV file) @@ -2659,72 +2559,6 @@ def read_cols_df_sql(ids, columns, convertnewtons=True): return df,extracols -def read_cols_df_sql_old(ids, columns, convertnewtons=True): - # drop columns that are not in offical list - # axx = [ax[0] for ax in axes] - prepmultipledata(ids) - axx = [f.name for f in StrokeData._meta.get_fields()] - - extracols = [] - - columns2 = list(columns) - - for c in columns: - if not c in axx: - columns2.remove(c) - extracols.append(c) - - columns = list(columns2) + ['distance', 'spm', 'workoutid'] - columns = [x for x in columns if x != 'None'] - columns = list(set(columns)) - cls = '' - ids = [int(id) for id in ids] - engine = create_engine(database_url, echo=False) - - for column in columns: - cls += column + ', ' - cls = cls[:-2] - if len(ids) == 0: - return pd.DataFrame(),extracols - # query = sa.text('SELECT {columns} FROM strokedata WHERE workoutid=0'.format( - # columns=cls, - # )) - elif len(ids) == 1: - query = sa.text('SELECT {columns} FROM strokedata WHERE workoutid={id} ORDER BY time ASC'.format( - id=ids[0], - columns=cls, - )) - else: - query = sa.text('SELECT {columns} FROM strokedata WHERE workoutid IN {ids} ORDER BY time ASC'.format( - columns=cls, - ids=tuple(ids), - )) - - - connection = engine.raw_connection() - df = pd.read_sql_query(query, engine) - - - df = df.fillna(value=0) - - if 'peakforce' in columns: - funits = ((w.id, w.forceunit) - for w in Workout.objects.filter(id__in=ids)) - for id, u in funits: - if u == 'lbs': - mask = df['workoutid'] == id - df.loc[mask, 'peakforce'] = df.loc[mask, 'peakforce'] * lbstoN - if 'averageforce' in columns: - funits = ((w.id, w.forceunit) - for w in Workout.objects.filter(id__in=ids)) - for id, u in funits: - if u == 'lbs': - mask = df['workoutid'] == id - df.loc[mask, 'averageforce'] = df.loc[mask, - 'averageforce'] * lbstoN - - engine.dispose() - return df,extracols def initiate_cp(r): success = update_rolling_cp(r,otwtypes,'water') @@ -2750,93 +2584,7 @@ def read_df_sql(id): return df -def read_df_sql_old(id): - engine = create_engine(database_url, echo=False) - df = pd.read_sql_query(sa.text('SELECT * FROM strokedata WHERE workoutid={id} ORDER BY time ASC'.format( - id=id)), engine) - - engine.dispose() - df = df.fillna(value=0) - - funit = Workout.objects.get(id=id).forceunit - - if funit == 'lbs': - try: - df['peakforce'] = df['peakforce'] * lbstoN - except KeyError: - pass - - try: - df['averageforce'] = df['averageforce'] * lbstoN - except KeyError: - pass - - return df - -# Get the necessary data from the strokedata table in the DB. -# For the flex plot - - -def smalldataprep(therows, xparam, yparam1, yparam2): - df = pd.DataFrame() - if yparam2 == 'None': - yparam2 = 'power' - df[xparam] = [] - df[yparam1] = [] - df[yparam2] = [] - df['distance'] = [] - df['spm'] = [] - for workout in therows: - f1 = workout.csvfilename - - try: - rowdata = dataprep(rrdata(csvfile=f1).df) - - rowdata = pd.DataFrame({xparam: rowdata[xparam], - yparam1: rowdata[yparam1], - yparam2: rowdata[yparam2], - 'distance': rowdata['distance'], - 'spm': rowdata['spm'], - } - ) - if workout.forceunit == 'lbs': - try: - rowdata['peakforce'] *= lbstoN - except KeyError: - pass - - try: - rowdata['averageforce'] *= lbstoN - except KeyError: - pass - - df = pd.concat([df, rowdata], ignore_index=True) - except IOError: - try: - rowdata = dataprep(rrdata(csvfile=f1 + '.gz').df) - rowdata = pd.DataFrame({xparam: rowdata[xparam], - yparam1: rowdata[yparam1], - yparam2: rowdata[yparam2], - 'distance': rowdata['distance'], - 'spm': rowdata['spm'], - } - ) - if workout.forceunit == 'lbs': - try: - rowdata['peakforce'] *= lbstoN - except KeyError: - pass - - try: - rowdata['averageforce'] *= lbstoN - except KeyError: - pass - df = pd.concat([df, rowdata], ignore_index=True) - except IOError: - pass - - return df # data fusion diff --git a/rowers/tests/test_unit_tests.py b/rowers/tests/test_unit_tests.py index 01d9ddb0..bc1acac7 100644 --- a/rowers/tests/test_unit_tests.py +++ b/rowers/tests/test_unit_tests.py @@ -76,6 +76,15 @@ class DataPrepTests(TestCase): wmax = dataprep.check_marker(workouts[0]) self.assertTrue(wmax.rankingpiece) + def test_workouttype_fromfit(self): + filename = 'rowers/tests/testdata/3x250m.fit' + res = dataprep.get_workouttype_from_fit(filename) + self.assertEqual(res,'Workout') + + def test_workouttype_fromtcx(self): + filename = 'rowers/tests/testdata/crewnerddata.tcx' + res = dataprep.get_workouttype_from_tcx(filename) + self.assertEqual(res,'water') class InteractivePlotTests(TestCase):