diff --git a/rowers/braintreestuff.py b/rowers/braintreestuff.py index 79a34e7d..e601737a 100644 --- a/rowers/braintreestuff.py +++ b/rowers/braintreestuff.py @@ -322,7 +322,7 @@ def update_subscription(rower,data,method='up'): return False,0 - return False,0 + return False,0 # pragma: no cover def create_subscription(rower,data): diff --git a/rowers/courseutils.py b/rowers/courseutils.py index 32b38eb1..b39a6042 100644 --- a/rowers/courseutils.py +++ b/rowers/courseutils.py @@ -13,15 +13,15 @@ def coordinate_in_path(latitude,longitude, p): return p.contains_points([(latitude,longitude)])[0] class InvalidTrajectoryError(Exception): - def __init__(self,value): + def __init__(self,value): # pragma: no cover self.value=value - def __str__(self): + def __str__(self): # pragma: no cover return repr(self.value) def time_in_path(df,p,maxmin='max',getall=False,name='unknown',logfile=None): - if df.empty: + if df.empty: # pragma: no cover return 0 latitude = df.latitude @@ -33,12 +33,12 @@ def time_in_path(df,p,maxmin='max',getall=False,name='unknown',logfile=None): if maxmin=='max': b = (~df['inpolygon']).shift(-1)+df['inpolygon'] - else: + else: # pragma: no cover b = (~df['inpolygon']).shift(1)+df['inpolygon'] if len(df[b==2]): - if logfile is not None: + if logfile is not None: # pragma: no cover t = time.localtime() timestamp = bytes('{t}'.format(t=time.strftime('%b-%d-%Y_%H%M', t)),'utf-8') with open(logfile,'ab') as f: @@ -57,12 +57,12 @@ def time_in_path(df,p,maxmin='max',getall=False,name='unknown',logfile=None): f.write(b' passes found') else: f.write(b' pass found') - if getall: + if getall: # pragma: no cover return df[b==2]['time'],df[b==2]['cum_dist'] else: return df[b==2]['time'].min(),df[b==2]['cum_dist'].min() - if logfile is not None: + if logfile is not None: # pragma: no cover t = time.localtime() timestamp = bytes('{t}'.format(t=time.strftime('%b-%d-%Y_%H%M', t)),'utf-8') with open(logfile,'ab') as f: @@ -78,10 +78,10 @@ def time_in_path(df,p,maxmin='max',getall=False,name='unknown',logfile=None): f.write(bytes(str(len(df[b==2])),'utf-8')) f.write(b' ') f.write(b' pass not found') - raise InvalidTrajectoryError("Trajectory doesn't go through path") + raise InvalidTrajectoryError("Trajectory doesn't go through path") # pragma: no cover - return 0 + return 0 # pragma: no cover def coursetime_first(data,paths,polygons=[],logfile=None): @@ -97,7 +97,7 @@ def coursetime_first(data,paths,polygons=[],logfile=None): try: entrytime,entrydistance = time_in_path(data,paths[0],maxmin='max',name=polygons[0][1],logfile=logfile) coursecompleted = True - except InvalidTrajectoryError: + except InvalidTrajectoryError: # pragma: no cover entrytime = data['time'].max() entrydistance = data['cum_dist'].max() coursecompleted = False @@ -113,8 +113,8 @@ def coursetime_paths(data,paths,finalmaxmin='min',polygons=[],logfile=None): polygons = [(0,str(i)) for i in range(len(paths))] # corner case - empty list of paths - if len(paths) == 0: - return 0,True + if len(paths) == 0: # pragma: no cover + return 0,0,True # end - just the Finish polygon if len(paths) == 1: @@ -124,7 +124,7 @@ def coursetime_paths(data,paths,finalmaxmin='min',polygons=[],logfile=None): entrydistance ) = time_in_path(data,paths[0],maxmin=finalmaxmin,name = polygons[0][1],logfile=logfile) coursecompleted = True - except InvalidTrajectoryError: + except InvalidTrajectoryError: # pragma: no cover entrytime = data['time'].max() entrydistance = data['cum_dist'].max() coursecompleted = False @@ -142,9 +142,9 @@ def coursetime_paths(data,paths,finalmaxmin='min',polygons=[],logfile=None): coursecompleted ) = coursetime_paths(data,paths[1:],polygons=polygons[1:],logfile=logfile) return time+timenext, dist+distnext,coursecompleted - except InvalidTrajectoryError: + except InvalidTrajectoryError: # pragma: no cover entrytime = data['time'].max() entrydistance = data['cum_dist'].max() coursecompleted = False - return entrytime, entrydistance, coursecompleted + return entrytime, entrydistance, coursecompleted # pragma: no cover diff --git a/rowers/dataprep.py b/rowers/dataprep.py index 86f70554..220de7a6 100644 --- a/rowers/dataprep.py +++ b/rowers/dataprep.py @@ -1210,7 +1210,7 @@ def fetchcp_new(rower,workouts): try: df = df[df['cp'] == df.groupby(['delta'])['cp'].transform('max')] except KeyError: # pragma: no cover - pd.Series(),pd.Series(),0,pd.Series(),pd.Series() + return pd.Series(),pd.Series(),0,pd.Series(),pd.Series() df = df.sort_values(['delta']).reset_index() diff --git a/rowers/datautils.py b/rowers/datautils.py index d6d269e6..33970668 100644 --- a/rowers/datautils.py +++ b/rowers/datautils.py @@ -27,7 +27,7 @@ rpetotss = { 10:140, } -def updatecp(delta,cpvalues,r,workouttype='water'): +def updatecp(delta,cpvalues,r,workouttype='water'): # pragma: no cover if workouttype in otwtypes: p0 = r.p0 p1 = r.p1 @@ -88,7 +88,7 @@ def cpfit(powerdf,fraclimit=0.0001,nmax=1000): if len(thesecs)>=4: try: p1, success = optimize.leastsq(errfunc, p0[:], args = (thesecs,theavpower)) - except: + except: # pragma: no cover factor = fitfunc(p0,thesecs.mean())/theavpower.mean() p1 = [p0[0]/factor,p0[1]/factor,p0[2],p0[3]] @@ -132,7 +132,7 @@ def getlogarr(maxt): for la in logarr: try: v = 5+int(10.**(la)) - except ValueError: + except ValueError: # pragma: no cover v = 0 res.append(v) @@ -142,7 +142,7 @@ def getlogarr(maxt): logarr = logarr.values return logarr -def getsinglecp(df): +def getsinglecp(df): # pragma: no cover thesecs = df['TimeStamp (sec)'].max()-df['TimeStamp (sec)'].min() if thesecs != 0: maxt = 1.05*thesecs @@ -164,12 +164,12 @@ def getsinglecp(df): return delta,cpvalue,avgpower -def getcp_new(dfgrouped,logarr): +def getcp_new(dfgrouped,logarr): # pragma: no cover delta = [] cpvalue = [] avgpower = {} - print(dfgrouped) + #print(dfgrouped) for id, group in dfgrouped: @@ -307,7 +307,7 @@ def getcp(dfgrouped,logarr): try: avgpower[id] = int(ww.mean()) - except ValueError: + except ValueError: # pragma: no cover avgpower[id] = '---' if not np.isnan(ww.mean()): length = len(ww) @@ -375,7 +375,7 @@ def getmaxwattinterval(tt,ww,i): except KeyError: wmax = 0 deltat = 0 - else: + else: # pragma: no cover wmax = 0 deltat = 0 @@ -386,10 +386,10 @@ def getfastest(df,thevalue,mode='distance'): dd = df['cumdist'].copy() tmax = tt.max() - if mode == 'distance': + if mode == 'distance': # pragma: no cover if dd.max() < thevalue: return 0 - else: + else: # pragma: no cover if tt.max() < thevalue: return 0 @@ -463,7 +463,7 @@ def getfastest(df,thevalue,mode='distance'): endtime = starttime+duration #print(duration,starttime,endtime,'aa') return duration[0]/1000.,starttime[0]/1000.,endtime[0]/1000. - else: + else: # pragma: no cover distance = griddata(restime,distance,[thevalue*60*1000],method='linear',rescale=True) starttime = griddata(restime,starttimes,[thevalue*60*1000],method='linear',rescale=True) duration = griddata(restime,restime,[thevalue*60*1000],method='linear',rescale=True) @@ -471,4 +471,4 @@ def getfastest(df,thevalue,mode='distance'): print(distance,starttime,endtime ) return distance[0],starttime[0]/1000.,endtime[0]/1000. - return 0 + return 0 # pragma: no cover diff --git a/rowers/ownapistuff.py b/rowers/ownapistuff.py index e7195d20..535d2237 100644 --- a/rowers/ownapistuff.py +++ b/rowers/ownapistuff.py @@ -43,7 +43,7 @@ TEST_CLIENT_SECRET = "aapnootmies" TEST_REDIRECT_URI = "http://localhost:8000/rowers/test_callback" -def custom_exception_handler(exc,message): +def custom_exception_handler(exc,message): # pragma: no cover response = { "errors": [ @@ -60,7 +60,7 @@ def custom_exception_handler(exc,message): return res -def do_refresh_token(refreshtoken): +def do_refresh_token(refreshtoken): # pragma: no cover client_auth = requests.auth.HTTPBasicAuth(TEST_CLIENT_ID, TEST_CLIENT_SECRET) post_data = {"grant_type": "refresh_token", "client_secret": TEST_CLIENT_SECRET, @@ -88,7 +88,7 @@ def do_refresh_token(refreshtoken): return [thetoken,expires_in,refresh_token] -def get_token(code): +def get_token(code): # pragma: no cover client_auth = requests.auth.HTTPBasicAuth(TEST_CLIENT_ID, TEST_CLIENT_SECRET) post_data = {"grant_type": "authorization_code", "code": code, @@ -114,7 +114,7 @@ def get_token(code): return [thetoken,expires_in,refresh_token] -def make_authorization_url(request): +def make_authorization_url(request): # pragma: no cover # Generate a random string for the state parameter # Save it for use later to prevent xsrf attacks from uuid import uuid4 @@ -133,7 +133,7 @@ def make_authorization_url(request): return HttpResponseRedirect(url) -def rower_ownapi_token_refresh(user): +def rower_ownapi_token_refresh(user): # pragma: no cover r = Rower.objects.get(user=user) res = do_refresh_token(r.ownapirefreshtoken) access_token = res[0] @@ -149,7 +149,7 @@ def rower_ownapi_token_refresh(user): r.save() return r.ownapitoken -def get_ownapi_workout_list(user): +def get_ownapi_workout_list(user): # pragma: no cover r = Rower.objects.get(user=user) if (r.ownapitoken == '') or (r.ownapitoken is None): s = "Token doesn't exist. Need to authorize" @@ -169,7 +169,7 @@ def get_ownapi_workout_list(user): return s -def get_ownapi_workout(user,ownapiid): +def get_ownapi_workout(user,ownapiid): # pragma: no cover r = Rower.objects.get(user=user) if (r.ownapitoken == '') or (r.ownapitoken is None): return custom_exception_handler(401,s) @@ -188,7 +188,7 @@ def get_ownapi_workout(user,ownapiid): return s -def createownapiworkoutdata(w): +def createownapiworkoutdata(w): # pragma: no cover filename = w.csvfilename row = rowingdata(csvfile=filename) averagehr = int(row.df[' HRCur (bpm)'].mean()) @@ -277,7 +277,7 @@ def createownapiworkoutdata(w): return data -def getidfromresponse(response): +def getidfromresponse(response): # pragma: no cover t = json.loads(response.text) uri = t['uris'][0] id = uri[len(uri)-13:len(uri)-5] diff --git a/rowers/polarstuff.py b/rowers/polarstuff.py index 8b63d778..ee3b50ac 100644 --- a/rowers/polarstuff.py +++ b/rowers/polarstuff.py @@ -62,7 +62,7 @@ from rowers.utils import NoTokenError, custom_exception_handler import rowers.mytypes as mytypes # Exchange access code for long-lived access token -def get_token(code): +def get_token(code): # pragma: no cover post_data = {"grant_type": "authorization_code", "code": code, @@ -130,7 +130,7 @@ def get_polar_notifications(): try: response = requests.get(url, headers=headers) - except ConnectionError: + except ConnectionError: # pragma: no cover response = { 'status_code':400, } @@ -170,10 +170,10 @@ def get_polar_workouts(user): if (r.polartoken == '') or (r.polartoken is None): s = "Token doesn't exist. Need to authorize" return custom_exception_handler(401,s) - elif (timezone.now()>r.polartokenexpirydate): + elif (timezone.now()>r.polartokenexpirydate): # pragma: no cover s = "Token expired. Needs to refresh" return custom_exception_handler(401,s) - else: + else: # pragma: no cover authorizationstring = str('Bearer ' + r.polartoken) headers = {'Authorization':authorizationstring, 'Accept': 'application/json'} @@ -247,7 +247,7 @@ def get_polar_workouts(user): return exercise_list -def get_polar_user_info(user,physical=False): +def get_polar_user_info(user,physical=False): # pragma: no cover r = Rower.objects.get(user=user) if (r.polartoken == '') or (r.polartoken is None): s = "Token doesn't exist. Need to authorize" @@ -285,7 +285,7 @@ def get_polar_user_info(user,physical=False): return response -def get_polar_workout(user,id,transactionid): +def get_polar_workout(user,id,transactionid): # pragma: no cover r = Rower.objects.get(user=user) if (r.polartoken == '') or (r.polartoken is None): diff --git a/rowers/rows.py b/rowers/rows.py index c6ebf083..b5b8d854 100644 --- a/rowers/rows.py +++ b/rowers/rows.py @@ -14,21 +14,21 @@ import uuid from django.core.exceptions import ValidationError -def format_pace_tick(x,pos=None): +def format_pace_tick(x,pos=None): # pragma: no cover minu=int(x/60) sec=int(x-minu*60.) sec_str=str(sec).zfill(2) template='%d:%s' return template % (minu,sec_str) -def format_time_tick(x,pos=None): +def format_time_tick(x,pos=None): # pragma: no cover hour=int(x/3600) min=int((x-hour*3600.)/60) min_str=str(min).zfill(2) template='%d:%s' return template % (hour,min_str) -def format_pace(x,pos=None): +def format_pace(x,pos=None): # pragma: no cover if isinf(x) or isnan(x): x=0 @@ -42,7 +42,7 @@ def format_pace(x,pos=None): return str1 -def format_time(x,pos=None): +def format_time(x,pos=None): # pragma: no cover min = int(x/60.) @@ -60,7 +60,7 @@ def validate_image_extension(value): ext = os.path.splitext(value.name)[1].lower() valid_extension = ['.jpg','.jpeg','.png','.gif'] - if not ext in valid_extension: + if not ext in valid_extension: # pragma: no cover raise ValidationError(u'File not supported') def validate_file_extension(value): @@ -69,25 +69,25 @@ def validate_file_extension(value): valid_extensions = ['.tcx','.csv','.TCX','.gpx','.GPX', '.CSV','.fit','.FIT','.zip','.ZIP', '.gz','.GZ','.xls'] - if not ext in valid_extensions: + if not ext in valid_extensions: # pragma: no cover raise ValidationError(u'File not supported!') def must_be_csv(value): import os ext = os.path.splitext(value.name)[1] valid_extensions = ['.csv','.CSV'] - if not ext in valid_extensions: + if not ext in valid_extensions: # pragma: no cover raise ValidationError(u'File not supported!') def validate_kml(value): import os ext = os.path.splitext(value.name)[1] valid_extensions = ['.kml','.KML'] - if not ext in valid_extensions: + if not ext in valid_extensions: # pragma: no cover raise ValidationError(u'File not supported!') -def handle_uploaded_image(i): +def handle_uploaded_image(i): # pragma: no cover from io import StringIO, BytesIO from PIL import Image, ImageOps, ExifTags import os @@ -121,7 +121,7 @@ def handle_uploaded_image(i): try: if exif[orientation] == 3: - mage=image.rotate(180, expand=True) + image=image.rotate(180, expand=True) elif exif[orientation] == 6: image=image.rotate(270, expand=True) elif exif[orientation] == 8: diff --git a/rowers/rp3stuff.py b/rowers/rp3stuff.py index 2377b2e3..df9eb38b 100644 --- a/rowers/rp3stuff.py +++ b/rowers/rp3stuff.py @@ -61,11 +61,11 @@ def rp3_open(user): return imports_open(user, oauth_data) # Refresh ST token using refresh token -def do_refresh_token(refreshtoken): +def do_refresh_token(refreshtoken): # pragma: no cover return imports_do_refresh_token(refreshtoken, oauth_data) # Exchange access code for long-lived access token -def get_token(code): +def get_token(code): # pragma: no cover client_auth = requests.auth.HTTPBasicAuth(RP3_CLIENT_KEY, RP3_CLIENT_SECRET) post_data = { "client_id":RP3_CLIENT_KEY, @@ -124,7 +124,7 @@ def get_rp3_workout_list(user): return response -def get_rp3_workouts(rower,do_async=True): +def get_rp3_workouts(rower,do_async=True): # pragma: no cover try: auth_token = rp3_open(rower.user) except NoTokenError: @@ -160,7 +160,7 @@ def get_rp3_workouts(rower,do_async=True): return 1 -def download_rp3_file(url,auth_token,filename): +def download_rp3_file(url,auth_token,filename): # pragma: no cover headers = {'Authorization': 'Bearer ' + auth_token } res = requests.get(url,headers=headers) @@ -171,7 +171,7 @@ def download_rp3_file(url,auth_token,filename): return res.status_code -def get_rp3_workout_token(workout_id,auth_token,waittime=3,max_attempts=20): +def get_rp3_workout_token(workout_id,auth_token,waittime=3,max_attempts=20): # pragma: no cover headers = {'Authorization': 'Bearer ' + auth_token } get_download_link = """{ @@ -211,7 +211,7 @@ def get_rp3_workout_token(workout_id,auth_token,waittime=3,max_attempts=20): return download_url -def get_rp3_workout_link(user,workout_id,waittime=3,max_attempts=20): +def get_rp3_workout_link(user,workout_id,waittime=3,max_attempts=20): # pragma: no cover r = Rower.objects.get(user=user) auth_token = rp3_open(user) diff --git a/rowers/serializers.py b/rowers/serializers.py index 4c49f85d..6fcd128d 100644 --- a/rowers/serializers.py +++ b/rowers/serializers.py @@ -151,7 +151,7 @@ class PlannedSessionSerializer(serializers.ModelSerializer): 'fitfile' ) - def create(self, validated_data): + def create(self, validated_data): # pragma: no cover if self.context['request'].user.is_authenticated: r = Rower.objects.get(user=self.context['request'].user) else: @@ -206,7 +206,7 @@ class WorkoutSerializer(serializers.ModelSerializer): 'rankingpiece' ) - def create(self, validated_data): + def create(self, validated_data): # pragma: no cover if self.context['request'].user.is_authenticated: r = Rower.objects.get(user=self.context['request'].user) else: @@ -263,7 +263,7 @@ class StrokeDataSerializer(serializers.Serializer): workoutid = serializers.IntegerField strokedata = serializers.JSONField - def create(self, workoutid, strokedata): + def create(self, workoutid, strokedata): # pragma: no cover """ Create and enter a new set of stroke data into the DB """ @@ -307,7 +307,7 @@ class GeoCourseSerializer(serializers.ModelSerializer): 'polygons', ) - def update(self, instance, validated_data): + def update(self, instance, validated_data): # pragma: no cover instance.name = validated_data.get('name',instance.name) instance.country = validated_data.get('country',instance.country) instance.notes = validated_data.get('notes',instance.notes) diff --git a/rowers/sporttracksstuff.py b/rowers/sporttracksstuff.py index 8cb5d1e4..4e966f9b 100644 --- a/rowers/sporttracksstuff.py +++ b/rowers/sporttracksstuff.py @@ -55,11 +55,11 @@ def get_token(code): return imports_get_token(code,oauth_data) # Make authorization URL including random string -def make_authorization_url(request): +def make_authorization_url(request): # pragma: no cover return imports_make_authorization_url(oauth_data) # This is token refresh. Looks for tokens in our database, then refreshes -def rower_sporttracks_token_refresh(user): +def rower_sporttracks_token_refresh(user): # pragma: no cover r = Rower.objects.get(user=user) res = do_refresh_token(r.sporttracksrefreshtoken) access_token = res[0] @@ -82,7 +82,7 @@ def get_sporttracks_workout_list(user): if (r.sporttrackstoken == '') or (r.sporttrackstoken is None): s = "Token doesn't exist. Need to authorize" return custom_exception_handler(401,s) - elif (timezone.now()>r.sporttrackstokenexpirydate): + elif (timezone.now()>r.sporttrackstokenexpirydate): # pragma: no cover s = "Token expired. Needs to refresh." return custom_exception_handler(401,s) else: @@ -99,10 +99,10 @@ def get_sporttracks_workout_list(user): # Get workout summary data by SportTracks ID def get_workout(user,sporttracksid,do_async=False): r = Rower.objects.get(user=user) - if (r.sporttrackstoken == '') or (r.sporttrackstoken is None): + if (r.sporttrackstoken == '') or (r.sporttrackstoken is None): # pragma: no cover return custom_exception_handler(401,s) s = "Token doesn't exist. Need to authorize" - elif (timezone.now()>r.sporttrackstokenexpirydate): + elif (timezone.now()>r.sporttrackstokenexpirydate): # pragma: no cover s = "Token expired. Needs to refresh." return custom_exception_handler(401,s) else: @@ -129,13 +129,13 @@ def createsporttracksworkoutdata(w): filename = w.csvfilename try: row = rowingdata(csvfile=filename) - except: + except: # pragma: no cover return 0 try: averagehr = int(row.df[' HRCur (bpm)'].mean()) maxhr = int(row.df[' HRCur (bpm)'].max()) - except KeyError: + except KeyError: # pragma: no cover averagehr = 0 maxhr = 0 @@ -162,7 +162,7 @@ def createsporttracksworkoutdata(w): try: lat = row.df[' latitude'].values lon = row.df[' longitude'].values - if not lat.std() and not lon.std(): + if not lat.std() and not lon.std(): # pragma: no cover haslatlon = 0 except KeyError: haslatlon = 0 @@ -171,7 +171,7 @@ def createsporttracksworkoutdata(w): haspower = 1 try: power = row.df[' Power (watts)'].astype(int).values - except KeyError: + except KeyError: # pragma: no cover haspower = 0 locdata = [] @@ -259,13 +259,13 @@ def getidfromresponse(response): return int(id) -def default(o): +def default(o): # pragma: no cover if isinstance(o, numpy.int64): return int(o) raise TypeError -def workout_sporttracks_upload(user,w,asynchron=False): +def workout_sporttracks_upload(user,w,asynchron=False): # pragma: no cover message = "Uploading to SportTracks" stid = 0 # ready to upload. Hurray @@ -325,7 +325,7 @@ def add_workout_from_data(user,importid,data,strokedata,source='sporttracks', workoutsource='sporttracks'): try: workouttype = data['type'] - except KeyError: + except KeyError: # pragma: no cover workouttype = 'other' if workouttype not in [x[0] for x in Workout.workouttypes]: @@ -339,7 +339,7 @@ def add_workout_from_data(user,importid,data,strokedata,source='sporttracks', r = Rower.objects.get(user=user) try: rowdatetime = iso8601.parse_date(data['start_time']) - except iso8601.ParseError: + except iso8601.ParseError: # pragma: no cover try: rowdatetime = datetime.datetime.strptime(data['start_time'],"%Y-%m-%d %H:%M:%S") rowdatetime = thetimezone.localize(rowdatetime).astimezone(utc) @@ -354,14 +354,14 @@ def add_workout_from_data(user,importid,data,strokedata,source='sporttracks', try: title = data['name'] - except: + except: # pragma: no cover title = "Imported data" try: res = splitstdata(data['distance']) distance = res[1] times_distance = res[0] - except KeyError: + except KeyError: # pragma: no cover try: res = splitstdata(data['heartrate']) times_distance = res[0] @@ -388,14 +388,14 @@ def add_workout_from_data(user,importid,data,strokedata,source='sporttracks', times_location = times_distance latcoord = np.zeros(len(times_distance)) loncoord = np.zeros(len(times_distance)) - if workouttype in mytypes.otwtypes: + if workouttype in mytypes.otwtypes: # pragma: no cover workouttype = 'rower' try: res = splitstdata(data['cadence']) times_spm = res[0] spm = res[1] - except KeyError: + except KeyError: # pragma: no cover times_spm = times_distance spm = 0*times_distance diff --git a/rowers/templates/developers.html b/rowers/templates/developers.html index f7b214b8..b6529e1a 100644 --- a/rowers/templates/developers.html +++ b/rowers/templates/developers.html @@ -533,7 +533,7 @@ "time": [3200, 6700, 10099], "spm": [16.4, 21.2, 19.8], "pace": [155068, 144402, 138830], - "power": [84,6, 117.2, 141.3], + "power": [84.6, 117.2, 141.3], "hr": [85, 91, 95] } @@ -586,7 +586,7 @@
[ +{ "data": [ { "time": 3200.0000476837, @@ -613,7 +613,7 @@ "spm": 19.8095238095 } ] -] +}You can only post stroke data to an existing workout with workout number {id}. If the workout already has stroke data, you diff --git a/rowers/tests/test_api.py b/rowers/tests/test_api.py new file mode 100644 index 00000000..151f3c06 --- /dev/null +++ b/rowers/tests/test_api.py @@ -0,0 +1,185 @@ +from __future__ import absolute_import +from __future__ import division +from __future__ import print_function +from __future__ import unicode_literals + +from django.db import transaction + +#from __future__ import print_function +from .statements import * +nu = datetime.datetime.now() + + +import rowers +from rowers import dataprep +from rowers import tasks +from rowers import c2stuff +from rowers import stravastuff +import urllib +import json +import pandas as pd +from rowers.opaque import encoder + +from rest_framework.test import APIRequestFactory, force_authenticate + +import json + +from rowers.ownapistuff import * +from rowers.views.apiviews import * + +class OwnApi(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',subscription_id=1) + + workoutsbox = Mailbox.objects.create(name='workouts') + workoutsbox.save() + failbox = Mailbox.objects.create(name='Failed') + failbox.save() + + 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() + + self.factory = APIRequestFactory() + + + def test_strokedataform(self): + login = self.c.login(username=self.u.username, password=self.password) + self.assertTrue(login) + + w = self.user_workouts[0] + + url = reverse('strokedataform',kwargs={'id':encoder.encode_hex(w.id)}) + response = self.c.get(url) + self.assertEqual(response.status_code,200) + + url = reverse('strokedatajson',kwargs={'id':w.id}) + + request = self.factory.get(url) + request.user = self.u + force_authenticate(request, user=self.u) + response = strokedatajson(request,id=w.id) + self.assertEqual(response.status_code,200) + + # response must be json + strokedata = json.loads(response.content) + df = pd.DataFrame(strokedata) + self.assertFalse(df.empty) + + form_data = { + "distance": [23, 46, 48], + "time": [3200, 6700, 10099], + "spm": [16.4, 21.2, 19.8], + "pace": [155068, 144402, 138830], + "power": [84.6, 117.2, 141.3], + "hr": [85, 91, 95] + } + + result = get_random_file(filename='rowers/tests/testdata/thyro.csv') + w2 = Workout.objects.create( + user=self.r, + csvfilename=result['filename'], + duration=result['duration'], + startdatetime=result['startdatetime'], + workouttype='water', + starttime=result['starttime'], + ) + + url = reverse('strokedatajson',kwargs={'id':w2.id}) + + request = self.factory.post(url,{'strokedata':form_data},format='json') + request.user = self.u + request.data = json.dumps({'strokedata':form_data}) + strokedata = json.loads(request.data)['strokedata'] + + force_authenticate(request, user=self.u) + with patch('rowers.dataprep.getrowdata_db') as mock_getrowdata: + mock_getrowdata.return_value = (pd.DataFrame(),None) + response = strokedatajson(request,id=w.id) + self.assertEqual(response.status_code,201) + + def test_strokedataform_v2(self): + login = self.c.login(username=self.u.username, password=self.password) + self.assertTrue(login) + + w = self.user_workouts[0] + + url = reverse('strokedataform_v2',kwargs={'id':encoder.encode_hex(w.id)}) + response = self.c.get(url) + self.assertEqual(response.status_code,200) + + url = reverse('strokedatajson_v2',kwargs={'id':w.id}) + + request = self.factory.get(url) + request.user = self.u + force_authenticate(request, user=self.u) + response = strokedatajson_v2(request,id=w.id) + self.assertEqual(response.status_code,200) + + # response must be json + strokedata = json.loads(response.content) + df = pd.DataFrame(strokedata) + self.assertFalse(df.empty) + + + form_data = { + "data": [ + { + "time": 3200.0000476837, + "pace": 155068.4885951763, + "hr": 85.7857142857, + "power": 84.6531131591, + "distance": 23, + "spm": 16.380952381 + }, + { + "time": 6700.0000476837, + "pace" : 144402.6407586741, + "hr": 91.2142857143, + "power": 117.458827834, + "distance": 36, + "spm": 21.1666666667 + }, + { + "time": 10099.9999046326, + "pace": 138830.8712654931, + "hr": 95.7142857143, + "power": 141.31057207, + "distance": 48, + "spm": 19.8095238095 + } + ] + } + + + result = get_random_file(filename='rowers/tests/testdata/thyro.csv') + w2 = Workout.objects.create( + user=self.r, + csvfilename=result['filename'], + duration=result['duration'], + startdatetime=result['startdatetime'], + workouttype='water', + starttime=result['starttime'], + ) + + url = reverse('strokedatajson_v2',kwargs={'id':w2.id}) + + request = self.factory.post(url,form_data,format='json') + request.user = self.u + request.data = json.dumps(form_data) + + force_authenticate(request, user=self.u) + with patch('rowers.dataprep.getrowdata_db') as mock_getrowdata: + mock_getrowdata.return_value = (pd.DataFrame(),None) + response = strokedatajson_v2(request,id=w.id) + + self.assertEqual(response.status_code,200) diff --git a/rowers/tests/test_courses.py b/rowers/tests/test_courses.py index 723dbc74..b9d77bba 100644 --- a/rowers/tests/test_courses.py +++ b/rowers/tests/test_courses.py @@ -4,6 +4,122 @@ from __future__ import print_function from __future__ import unicode_literals from .statements import * +import rowers.courses as courses +import rowers.dataprep as dataprep +from rowers.courseutils import * +from rowingdata import rowingdata as rdata +from rowers.models import polygon_to_path + +class CourseUnitTest(TestCase): + def setUp(self): + self.c = Client() + self.u = User.objects.create_user('john', + 'sander@ds.ds', + 'koeinsloot') + self.r = Rower.objects.create(user=self.u,gdproptin=True,surveydone=True, + gdproptindate=timezone.now(), + rowerplan='coach', + ) + self.nu = datetime.datetime.now() + + cs = courses.kmltocourse('rowers/tests/testdata/thyro.kml') + course = cs[0] + cname = course['name'] + cnotes = course['description'] + self.polygons = course['polygons'] + pstart = self.polygons[0] + self.ThyroBaantje = courses.createcourse(self.r,cname,self.polygons,notes=cnotes) + self.start = GeoPolygon.objects.filter(course=self.ThyroBaantje,order_in_course=0)[0] + self.ThyroBaantje.save() + + 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', + ) + + self.wthyro.startdatetime = arrow.get(self.nu).datetime + self.wthyro.date = self.nu.date() + self.wthyro.save() + + def test_time_in_path(self): + row = rdata(csvfile='rowers/tests/testdata/thyro.csv') + + time = row.df['TimeStamp (sec)'] + lat = row.df[' latitude'] + lon = row.df[' longitude'] + cum_dist = row.df['cum_dist'] + + data = pd.DataFrame( + { + 'time':time, + 'latitude':lat, + 'longitude':lon, + 'cum_dist':cum_dist, + } + ) + + startpath = polygon_to_path(self.start) + + mintime,mindist = time_in_path(data,startpath) + self.assertEqual(mintime,78) + self.assertEqual(mindist,207.1) + + def test_coursetime_first(self): + row = rdata(csvfile='rowers/tests/testdata/thyro.csv') + + time = row.df['TimeStamp (sec)'] + lat = row.df[' latitude'] + lon = row.df[' longitude'] + cum_dist = row.df['cum_dist'] + + data = pd.DataFrame( + { + 'time':time, + 'latitude':lat, + 'longitude':lon, + 'cum_dist':cum_dist, + } + ) + paths = [] + polygons = GeoPolygon.objects.filter(course=self.ThyroBaantje).order_by("order_in_course") + for p in polygons: + paths.append(polygon_to_path(p)) + + entrytime,entrydistance,coursecompleted = coursetime_first(data,paths) + self.assertEqual(entrytime,78) + self.assertEqual(entrydistance,207.1) + self.assertTrue(coursecompleted) + + def test_coursetime_paths(self): + row = rdata(csvfile='rowers/tests/testdata/thyro.csv') + + time = row.df['TimeStamp (sec)'] + lat = row.df[' latitude'] + lon = row.df[' longitude'] + cum_dist = row.df['cum_dist'] + + data = pd.DataFrame( + { + 'time':time, + 'latitude':lat, + 'longitude':lon, + 'cum_dist':cum_dist, + } + ) + paths = [] + polygons = GeoPolygon.objects.filter(course=self.ThyroBaantje).order_by("order_in_course") + for p in polygons: + paths.append(polygon_to_path(p)) + + entrytime,entrydistance,coursecompleted = coursetime_paths(data,paths) + self.assertEqual(entrytime,435) + self.assertEqual(entrydistance,1348.8) + self.assertTrue(coursecompleted) class CoursesTest(TestCase): def setUp(self): diff --git a/rowers/tests/testdata/thyro2.csv b/rowers/tests/testdata/thyro2.csv new file mode 100644 index 00000000..440d2686 --- /dev/null +++ b/rowers/tests/testdata/thyro2.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/underarmourstuff.py b/rowers/underarmourstuff.py index f230e8de..d9e83b2c 100644 --- a/rowers/underarmourstuff.py +++ b/rowers/underarmourstuff.py @@ -47,7 +47,7 @@ def get_token(code): # Make authorization URL including random string def make_authorization_url(request): - return imports_make_authorization_url(oauth_data) + return imports_make_authorization_url(oauth_data) # pragma: no cover # Get list of workouts available on Underarmour def get_underarmour_workout_list(user): @@ -72,7 +72,7 @@ def get_underarmour_workout_list(user): # Get workout summary data by Underarmour ID def get_workout(user,underarmourid,do_async=False): r = Rower.objects.get(user=user) - if (r.underarmourtoken == '') or (r.underarmourtoken is None): + if (r.underarmourtoken == '') or (r.underarmourtoken is None): # pragma: no cover return custom_exception_handler(401,s) s = "Token doesn't exist. Need to authorize" else: @@ -99,7 +99,7 @@ def createunderarmourworkoutdata(w): filename = w.csvfilename try: row = rowingdata(csvfile=filename) - except: + except: # pragma: no cover return 0 st = w.startdatetime.astimezone(pytz.timezone(w.timezone)) @@ -151,7 +151,7 @@ def createunderarmourworkoutdata(w): haslatlon=1 - try: + try: # pragma: no cover lat = row.df[' latitude'] lon = row.df[' longitude'] if not lat.std() and not lon.std(): @@ -161,7 +161,7 @@ def createunderarmourworkoutdata(w): # path data - if haslatlon: + if haslatlon: # pragma: no cover locdata = [] for e in zip(t,lat.values,lon.values): point = { @@ -248,7 +248,7 @@ def getidfromresponse(response): return int(id) -def refresh_ua_actlist(user): +def refresh_ua_actlist(user): # pragma: no cover r = Rower.objects.get(user=user) authorizationstring = str('Bearer ' + r.underarmourtoken) headers = {'Authorization': authorizationstring, @@ -312,17 +312,17 @@ def get_userid(access_token): try: res = me_json['id'] - except KeyError: + except KeyError: # pragma: no cover res = 0 return res -def default(o): +def default(o): # pragma: no cover if isinstance(o, numpy.int64): return int(o) raise TypeError -def workout_ua_upload(user,w): +def workout_ua_upload(user,w): # pragma: no cover message = "Uploading to MapMyFitness" uaid = 0 @@ -383,7 +383,7 @@ def add_workout_from_data(user,importid,data,strokedata, try: comments = data['notes'] - except: + except: # pragma: no cover comments = '' try: @@ -394,7 +394,7 @@ def add_workout_from_data(user,importid,data,strokedata, r = Rower.objects.get(user=user) try: rowdatetime = iso8601.parse_date(data['start_datetime']) - except iso8601.ParseError: + except iso8601.ParseError: # pragma: no cover try: rowdatetime = datetime.strptime(data['start_datetime'],"%Y-%m-%d %H:%M:%S") rowdatetime = thetimezone.localize(rowdatetime).astimezone(utc) @@ -410,7 +410,7 @@ def add_workout_from_data(user,importid,data,strokedata, try: title = data['name'] - except: + except: # pragma: no cover title = "Imported data" timeseries = data['time_series'] @@ -421,7 +421,7 @@ def add_workout_from_data(user,importid,data,strokedata, res = splituadata(timeseries['distance']) distance = res[1] times_distance = res[0] - except KeyError: + except KeyError: # pragma: no cover message = "Error. No distance data" return (0,message) @@ -440,7 +440,7 @@ def add_workout_from_data(user,importid,data,strokedata, lon = coord['lng'] latcoord.append(lat) loncoord.append(lon) - except: + except: # pragma: no cover times_location = times_distance latcoord = np.zeros(len(times_distance)) loncoord = np.zeros(len(times_distance)) @@ -451,7 +451,7 @@ def add_workout_from_data(user,importid,data,strokedata, res = splituadata(timeseries['cadence']) times_spm = res[0] spm = res[1] - except KeyError: + except KeyError: # pragma: no cover times_spm = times_distance spm = 0*times_distance @@ -459,7 +459,7 @@ def add_workout_from_data(user,importid,data,strokedata, res = splituadata(timeseries['heartrate']) hr = res[1] times_hr = res[0] - except KeyError: + except KeyError: # pragma: no cover times_hr = times_distance hr = 0*times_distance diff --git a/rowers/urls.py b/rowers/urls.py index 26674436..37339351 100644 --- a/rowers/urls.py +++ b/rowers/urls.py @@ -234,8 +234,10 @@ urlpatterns = [ re_path(r'^', include(router.urls)), re_path(r'^api-docs/$', views.schema_view,name='schema_view'), re_path(r'^api-auth/', include('rest_framework.urls', namespace='rest_framework')), - re_path(r'^api/workouts/(?P\b[0-9A-Fa-f]+\b)/strokedata/$',views.strokedatajson,name='strokedatajson'), - re_path(r'^api/v2/workouts/(?P \b[0-9A-Fa-f]+\b)/strokedata/$',views.strokedatajson_v2,name='strokedatajson_v2'), + re_path(r'^api/workouts/(?P \b[0-9A-Fa-f]+\b)/strokedata/$',views.strokedatajson, + name='strokedatajson'), + re_path(r'^api/v2/workouts/(?P \b[0-9A-Fa-f]+\b)/strokedata/$',views.strokedatajson_v2, + name='strokedatajson_v2'), re_path(r'^500v/$',views.error500_view,name='error500_view'), path('502/', TemplateView.as_view(template_name='502.html'),name='502'), path('500/', TemplateView.as_view(template_name='500.html'),name='500'), @@ -714,8 +716,10 @@ urlpatterns = [ re_path(r'^edittarget/(?P \d+)/$',login_required( views.TrainingTargetUpdate.as_view()), name='trainingtarget_update_view'), - re_path(r'^workout/(?P \b[0-9A-Fa-f]+\b)/test\_strokedata/$',views.strokedataform), - re_path(r'^workout/(?P \b[0-9A-Fa-f]+\b)/v2/test\_strokedata/$',views.strokedataform_v2), + re_path(r'^workout/(?P \b[0-9A-Fa-f]+\b)/test\_strokedata/$',views.strokedataform, + name='strokedataform'), + re_path(r'^workout/(?P \b[0-9A-Fa-f]+\b)/v2/test\_strokedata/$',views.strokedataform_v2, + name='strokedataform_v2'), re_path(r'^sessions/library/$',views.template_library_view,name="template_library_view"), re_path(r'^sessions/teamcreate/user/(?P \d+)/$',views.plannedsession_teamcreate_view, name='plannedsession_teamcreate_view'), diff --git a/rowers/views/apiviews.py b/rowers/views/apiviews.py index caf3457d..201ffb4f 100644 --- a/rowers/views/apiviews.py +++ b/rowers/views/apiviews.py @@ -6,6 +6,7 @@ from __future__ import unicode_literals from rowers.views.statements import * from rowers.tasks import handle_calctrimp from rowers.mailprocessing import send_confirm +from rowers.opaque import encoder import sys import arrow @@ -14,14 +15,11 @@ import arrow @login_required() def strokedataform(request,id=0): - try: - id=int(id) - except ValueError: - id = 0 + id = encoder.decode_hex(id) try: w = Workout.objects.get(id=id) - except Workout.DoesNotExist: + except Workout.DoesNotExist: # pragma: no cover raise Http404("Workout doesn't exist") if request.method == 'GET': @@ -33,7 +31,7 @@ def strokedataform(request,id=0): 'id':id, 'workout':w, }) - elif request.method == 'POST': + elif request.method == 'POST': # pragma: no cover form = StrokeDataForm() return render(request, 'strokedata_form.html', @@ -42,19 +40,17 @@ def strokedataform(request,id=0): 'teams':get_my_teams(request.user), 'id':id, 'workout':w, - }) + }) # pragma: no cover @login_required() def strokedataform_v2(request,id=0): - try: - id=int(id) - except ValueError: - id = 0 + id = encoder.decode_hex(id) + try: w = Workout.objects.get(id=id) - except Workout.DoesNotExist: + except Workout.DoesNotExist: # pragma: no cover raise Http404("Workout doesn't exist") if request.method == 'GET': @@ -66,7 +62,7 @@ def strokedataform_v2(request,id=0): 'id':id, 'workout':w, }) - elif request.method == 'POST': + elif request.method == 'POST': # pragma: no cover form = StrokeDataForm() return render(request, 'strokedata_form_v2.html', @@ -95,7 +91,7 @@ def strokedatajson_v2(request,id): """ row = get_object_or_404(Workout,pk=id) - if row.user != request.user.rower: + if row.user != request.user.rower: # pragma: no cover return HttpResponse("You do not have permission to perform this action",status=403) try: @@ -124,7 +120,7 @@ def strokedatajson_v2(request,id): for d in request.data['data']: logfile.write(json.dumps(d)) logfile.write("\n") - except KeyError: + except KeyError: # pragma: no cover try: for d in request.data['strokedata']: logfile.write(json.dumps(d)) @@ -134,14 +130,14 @@ def strokedatajson_v2(request,id): except (AttributeError,TypeError): logfile.write("No data in request\n") checkdata, r = dataprep.getrowdata_db(id=row.id) - if not checkdata.empty: + if not checkdata.empty: # pragma: no cover return HttpResponse("Duplicate Error",status=409) df = pd.DataFrame() try: df = pd.DataFrame(request.data['data']) - except KeyError: + except KeyError: # pragma: no cover try: df = pd.DataFrame(request.data['strokedata']) except: @@ -154,7 +150,7 @@ def strokedatajson_v2(request,id): #time, pace, distance,spm try: time = df['time']/1.e3 - except KeyError: + except KeyError: # pragma: no cover try: time = df['t']/10. except KeyError: @@ -162,12 +158,12 @@ def strokedatajson_v2(request,id): try: spm = df['spm'] - except KeyError: + except KeyError: # pragma: no cover return HttpResponse("Missing spm",status=400) try: distance = df['distance'] - except KeyError: + except KeyError: # pragma: no cover try: distance = df['d']/10. except KeyError: @@ -175,7 +171,7 @@ def strokedatajson_v2(request,id): try: pace = df['pace']/1.e3 - except KeyError: + except KeyError: # pragma: no cover try: pace = df['p']/10. except KeyError: @@ -185,7 +181,7 @@ def strokedatajson_v2(request,id): try: power = df['power'] - except KeyError: + except KeyError: # pragma: no cover power = 0*time try: drivelength = df['drivelength'] @@ -245,7 +241,7 @@ def strokedatajson_v2(request,id): lapidx = 0*time try: hr = df['hr'] - except KeyError: + except KeyError: # pragma: no cover hr = 0*df['time'] try: @@ -331,7 +327,7 @@ def strokedatajson_v2(request,id): isbreakthrough, ishard = dataprep.checkbreakthrough(row, r) - if r.getemailnotifications and not r.emailbounced: + if r.getemailnotifications and not r.emailbounced: # pragma: no cover link = settings.SITE_URL+reverse( r.defaultlandingpage, kwargs = { @@ -354,7 +350,7 @@ def strokedatajson_v2(request,id): })) #return(HttpResponse(encoder.encode_hex(row.id),status=201)) - return HttpResponseNotAllowed("Method not supported") + return HttpResponseNotAllowed("Method not supported") # pragma: no cover @@ -362,18 +358,19 @@ def strokedatajson_v2(request,id): @login_required() @api_view(['GET','POST']) @permission_classes([IsAuthenticated]) -def strokedatajson(request,id): +def strokedatajson(request,id=0): """ POST: Add Stroke data to workout GET: Get stroke data of workout """ + row = get_object_or_404(Workout,pk=id) - if row.user != request.user.rower: + if row.user != request.user.rower: # pragma: no cover raise PermissionDenied("You have no access to this workout") try: id = int(id) - except ValueError: + except ValueError: # pragma: no cover return HttpResponse("Not a valid workout number",status=403) @@ -389,39 +386,46 @@ def strokedatajson(request,id): if request.method == 'POST': with open('apilog.log','a') as logfile: logfile.write(str(timezone.now())+": ") - logfile.write(request.user.username+"(strokedatjson POST) \n") + logfile.write(request.user.username+"(strokedatajson POST) \n") checkdata,r = dataprep.getrowdata_db(id=row.id) - if not checkdata.empty: + if not checkdata.empty: # pragma: no cover return HttpResponse("Duplicate Error",status=409) # strokedata = request.POST['strokedata'] # checking/validating and cleaning try: - strokedata = json.loads(request.data['strokedata']) - except: - return HttpResponse("No JSON object could be decoded",status=400) + strokedata = json.loads(request.data)['strokedata'] + except: # pragma: no cover + try: + s = json.dumps(request.data) + strokedata = json.loads(s)['strokedata'] + except: # pragma: no cover + return HttpResponse("No JSON object could be decoded",status=400) - df = pd.DataFrame(strokedata) + try: + df = pd.DataFrame(strokedata) + except ValueError: # pragma: no cover + return HttpResponse("Arrays must all be same length",status=400) df.index = df.index.astype(int) df.sort_index(inplace=True) # time, hr, pace, spm, power, drivelength, distance, drivespeed, dragfactor, strokerecoverytime, averagedriveforce, peakdriveforce, lapidx try: time = df['time']/1.e3 - except KeyError: + except KeyError: # pragma: no cover return HttpResponse("There must be time values",status=400) aantal = len(time) pace = df['pace']/1.e3 - if len(pace) != aantal: + if len(pace) != aantal: # pragma: no cover return HttpResponse("Pace array has incorrect length",status=400) distance = df['distance'] - if len(distance) != aantal: + if len(distance) != aantal: # pragma: no cover return HttpResponse("Distance array has incorrect length",status=400) spm = df['spm'] - if len(spm) != aantal: + if len(spm) != aantal: # pragma: no cover return HttpResponse("SPM array has incorrect length",status=400) res = dataprep.testdata(time,distance,pace,spm) - if not res: + if not res: # pragma: no cover return HttpResponse("Data are not numerical",status=400) power = trydf(df,aantal,'power') @@ -503,4 +507,4 @@ def strokedatajson(request,id): return HttpResponse(encoder.encode_hex(row.id),status=201) #Method not supported - return HttpResponseNotAllowed("Method not supported") + return HttpResponseNotAllowed("Method not supported") # pragma: no cover