Private
Public Access
1
0

Merge branch 'develop' into feature/thinkpad

This commit is contained in:
Sander Roosendaal
2019-02-08 19:34:19 +01:00
56 changed files with 21638 additions and 436 deletions

View File

@@ -1,3 +1,5 @@
from __future__ import absolute_import
from .tasks import app as celery_app

View File

@@ -118,11 +118,11 @@ def get_latlon(id):
rowdata = rdata(w.csvfilename)
try:
try:
latitude = rowdata.df.ix[:, ' latitude']
longitude = rowdata.df.ix[:, ' longitude']
latitude = rowdata.df.loc[:, ' latitude']
longitude = rowdata.df.loc[:, ' longitude']
except KeyError:
latitude = 0 * rowdata.df.ix[:, 'TimeStamp (sec)']
longitude = 0 * rowdata.df.ix[:, 'TimeStamp (sec)']
latitude = 0 * rowdata.df.loc[:, 'TimeStamp (sec)']
longitude = 0 * rowdata.df.loc[:, 'TimeStamp (sec)']
return [latitude, longitude]
except AttributeError:
return [pd.Series([]), pd.Series([])]
@@ -964,7 +964,7 @@ def save_workout_database(f2, r, dosmooth=True, workouttype='rower',
totaltime = row.df['TimeStamp (sec)'].max(
) - row.df['TimeStamp (sec)'].min()
try:
totaltime = totaltime + row.df.ix[0, ' ElapsedTime (sec)']
totaltime = totaltime + row.df.loc[:, ' ElapsedTime (sec)'].iloc[0]
except KeyError:
pass
@@ -2077,37 +2077,37 @@ def dataprep(rowdatadf, id=0, bands=True, barchart=True, otwpower=True,
return 0
rowdatadf.set_index([range(len(rowdatadf))], inplace=True)
t = rowdatadf.ix[:, 'TimeStamp (sec)']
t = pd.Series(t - rowdatadf.ix[0, 'TimeStamp (sec)'])
t = rowdatadf.loc[:, 'TimeStamp (sec)']
t = pd.Series(t - rowdatadf.loc[:, 'TimeStamp (sec)'].iloc[0])
row_index = rowdatadf.ix[:, ' Stroke500mPace (sec/500m)'] > 3000
row_index = rowdatadf.loc[:, ' Stroke500mPace (sec/500m)'] > 3000
rowdatadf.loc[row_index, ' Stroke500mPace (sec/500m)'] = 3000.
p = rowdatadf.ix[:, ' Stroke500mPace (sec/500m)']
p = rowdatadf.loc[:, ' Stroke500mPace (sec/500m)']
try:
velo = rowdatadf.ix[:,' AverageBoatSpeed (m/s)']
velo = rowdatadf.loc[:,' AverageBoatSpeed (m/s)']
except KeyError:
velo = 500./p
hr = rowdatadf.ix[:, ' HRCur (bpm)']
spm = rowdatadf.ix[:, ' Cadence (stokes/min)']
cumdist = rowdatadf.ix[:, 'cum_dist']
power = rowdatadf.ix[:, ' Power (watts)']
averageforce = rowdatadf.ix[:, ' AverageDriveForce (lbs)']
drivelength = rowdatadf.ix[:, ' DriveLength (meters)']
hr = rowdatadf.loc[:, ' HRCur (bpm)']
spm = rowdatadf.loc[:, ' Cadence (stokes/min)']
cumdist = rowdatadf.loc[:, 'cum_dist']
power = rowdatadf.loc[:, ' Power (watts)']
averageforce = rowdatadf.loc[:, ' AverageDriveForce (lbs)']
drivelength = rowdatadf.loc[:, ' DriveLength (meters)']
try:
workoutstate = rowdatadf.ix[:, ' WorkoutState']
workoutstate = rowdatadf.loc[:, ' WorkoutState']
except KeyError:
workoutstate = 0 * hr
peakforce = rowdatadf.ix[:, ' PeakDriveForce (lbs)']
peakforce = rowdatadf.loc[:, ' PeakDriveForce (lbs)']
forceratio = averageforce / peakforce
forceratio = forceratio.fillna(value=0)
try:
drivetime = rowdatadf.ix[:, ' DriveTime (ms)']
recoverytime = rowdatadf.ix[:, ' StrokeRecoveryTime (ms)']
drivetime = rowdatadf.loc[:, ' DriveTime (ms)']
recoverytime = rowdatadf.loc[:, ' StrokeRecoveryTime (ms)']
rhythm = 100. * drivetime / (recoverytime + drivetime)
rhythm = rhythm.fillna(value=0)
except:
@@ -2152,7 +2152,7 @@ def dataprep(rowdatadf, id=0, bands=True, barchart=True, otwpower=True,
else:
drivenergy = drivelength * averageforce
distance = rowdatadf.ix[:, 'cum_dist']
distance = rowdatadf.loc[:, 'cum_dist']
velo = 500. / p
distanceperstroke = 60. * velo / spm
@@ -2184,26 +2184,26 @@ def dataprep(rowdatadf, id=0, bands=True, barchart=True, otwpower=True,
if bands:
# HR bands
data['hr_ut2'] = rowdatadf.ix[:, 'hr_ut2']
data['hr_ut1'] = rowdatadf.ix[:, 'hr_ut1']
data['hr_at'] = rowdatadf.ix[:, 'hr_at']
data['hr_tr'] = rowdatadf.ix[:, 'hr_tr']
data['hr_an'] = rowdatadf.ix[:, 'hr_an']
data['hr_max'] = rowdatadf.ix[:, 'hr_max']
data['hr_ut2'] = rowdatadf.loc[:, 'hr_ut2']
data['hr_ut1'] = rowdatadf.loc[:, 'hr_ut1']
data['hr_at'] = rowdatadf.loc[:, 'hr_at']
data['hr_tr'] = rowdatadf.loc[:, 'hr_tr']
data['hr_an'] = rowdatadf.loc[:, 'hr_an']
data['hr_max'] = rowdatadf.loc[:, 'hr_max']
data['hr_bottom'] = 0.0 * data['hr']
try:
tel = rowdatadf.ix[:, ' ElapsedTime (sec)']
tel = rowdatadf.loc[:, ' ElapsedTime (sec)']
except KeyError:
rowdatadf[' ElapsedTime (sec)'] = rowdatadf['TimeStamp (sec)']
if barchart:
# time increments for bar chart
time_increments = rowdatadf.ix[:, ' ElapsedTime (sec)'].diff()
time_increments = rowdatadf.loc[:, ' ElapsedTime (sec)'].diff()
try:
time_increments.ix[0] = time_increments.ix[1]
time_increments.iloc[0] = time_increments.iloc[1]
except KeyError:
time_increments.ix[0] = 1.
time_increments.iloc[0] = 1.
time_increments = 0.5 * time_increments + 0.5 * np.abs(time_increments)
x_right = (t2 + time_increments.apply(lambda x: timedeltaconv(x)))
@@ -2212,28 +2212,28 @@ def dataprep(rowdatadf, id=0, bands=True, barchart=True, otwpower=True,
if empower:
try:
wash = rowdatadf.ix[:, 'wash']
wash = rowdatadf.loc[:, 'wash']
except KeyError:
wash = 0 * power
try:
catch = rowdatadf.ix[:, 'catch']
catch = rowdatadf.loc[:, 'catch']
except KeyError:
catch = 0 * power
try:
finish = rowdatadf.ix[:, 'finish']
finish = rowdatadf.loc[:, 'finish']
except KeyError:
finish = 0 * power
try:
peakforceangle = rowdatadf.ix[:, 'peakforceangle']
peakforceangle = rowdatadf.loc[:, 'peakforceangle']
except KeyError:
peakforceangle = 0 * power
if data['driveenergy'].mean() == 0:
try:
driveenergy = rowdatadf.ix[:, 'driveenergy']
driveenergy = rowdatadf.loc[:, 'driveenergy']
except KeyError:
driveenergy = power * 60 / spm
else:
@@ -2246,7 +2246,7 @@ def dataprep(rowdatadf, id=0, bands=True, barchart=True, otwpower=True,
drivelength = driveenergy / (averageforce * 4.44822)
try:
slip = rowdatadf.ix[:, 'slip']
slip = rowdatadf.loc[:, 'slip']
except KeyError:
slip = 0 * power
@@ -2319,11 +2319,11 @@ def dataprep(rowdatadf, id=0, bands=True, barchart=True, otwpower=True,
if otwpower:
try:
nowindpace = rowdatadf.ix[:, 'nowindpace']
nowindpace = rowdatadf.loc[:, 'nowindpace']
except KeyError:
nowindpace = p
try:
equivergpower = rowdatadf.ix[:, 'equivergpower']
equivergpower = rowdatadf.loc[:, 'equivergpower']
except KeyError:
equivergpower = 0 * p + 50.

View File

@@ -103,7 +103,7 @@ def getsinglecp(df):
dfnew = pd.DataFrame({
'time':1000*(df['TimeStamp (sec)']-df.ix[0,'TimeStamp (sec)']),
'time':1000*(df['TimeStamp (sec)']-df.loc[:,'TimeStamp (sec)'].iloc[0]),
'power':df[' Power (watts)']
})
@@ -304,14 +304,16 @@ def getmaxwattinterval(tt,ww,i):
if len(w_roll):
# now goes with # data points - should be fixed seconds
indexmax = w_roll.idxmax(axis=1)
# indexmaxpos = indexmax.get_loc(indexmax)
indexmaxpos = indexmax
try:
t_0 = tt.ix[indexmax]
t_1 = tt.ix[indexmax-i]
deltas = tt.ix[indexmax-i:indexmax].diff().dropna()
t_0 = tt.ix[indexmaxpos]
t_1 = tt.ix[indexmaxpos-i]
deltas = tt.ix[indexmaxpos-i:indexmaxpos].diff().dropna()
testres = 1.0e-3*deltas.max() < 30.
if testres:
deltat = 1.0e-3*(t_0-t_1)
wmax = w_roll.ix[indexmax]
wmax = w_roll.ix[indexmaxpos]
#if wmax > 800 or wmax*5.0e-4*deltat > 800.0:
# wmax = 0
else:

View File

@@ -44,6 +44,7 @@ class BillingForm(forms.Form):
max_digits=8)
plan = forms.IntegerField(widget=forms.HiddenInput())
payment_method_nonce = forms.CharField(max_length=255,required=True)
tac= forms.BooleanField(required=True,initial=False)
# login form

View File

@@ -246,7 +246,7 @@ class PowerTimeFitnessMetric(models.Model):
('water','On the water')
)
date = models.DateField(default=timezone.now)
date = models.DateField(default=datetime.date.today)
last_workout = models.IntegerField(default=0)
user = models.ForeignKey(User)
PowerFourMin = models.FloatField(default=0)
@@ -334,7 +334,7 @@ class TeamForm(ModelForm):
class TeamInvite(models.Model):
team = models.ForeignKey(Team)
user = models.ForeignKey(User,null=True)
issuedate = models.DateField(default=timezone.now)
issuedate = models.DateField(default=datetime.date.today)
code = models.CharField(max_length=150,unique=True)
email = models.CharField(max_length=150,null=True,blank=True)
@@ -352,7 +352,7 @@ class TeamInviteForm(ModelForm):
class TeamRequest(models.Model):
team = models.ForeignKey(Team)
user = models.ForeignKey(User,null=True)
issuedate = models.DateField(default=timezone.now)
issuedate = models.DateField(default=datetime.date.today)
code = models.CharField(max_length=150,unique=True)
from utils import (
@@ -655,8 +655,8 @@ class Rower(models.Model):
paidplan = models.ForeignKey(PaidPlan,null=True,default=None)
planexpires = models.DateField(default=timezone.now)
teamplanexpires = models.DateField(default=timezone.now)
planexpires = models.DateField(default=datetime.date.today)
teamplanexpires = models.DateField(default=datetime.date.today)
clubsize = models.IntegerField(default=0)
protrialexpires = models.DateField(blank=True,null=True)
plantrialexpires = models.DateField(blank=True,null=True)
@@ -1022,10 +1022,10 @@ class GeoPoint(models.Model):
def half_year_from_now():
return timezone.now()+timezone.timedelta(days=182)
return (timezone.now()+timezone.timedelta(days=182)).date()
def a_week_from_now():
return timezone.now()+timezone.timedelta(days=7)
return (timezone.now()+timezone.timedelta(days=7)).date()
# models related to training planning - draft
# Do we need a separate class TestTarget?
@@ -1089,20 +1089,6 @@ class TrainingTargetForm(ModelForm):
# SportTracks has a TrainingGoal like this
#class TrainingGoal(models.Model):
# rower = models.ForeignKey(Rower)
# name = models.CharField(max_length=150,blank=True)
# startdate = models.DateField(default=timezone.now)
# enddate = models.DateField(
# default=timezone.now()+datetime.timedelta(days=28))
# goalmetric = models.CharField(max_length=150,default='rower',
# choices = modechoices)
# value = models.IntegerValue(default=1)
# I think we can use PlannedSession for that (in challenge mode)
# although such a TrainingGoal could have automatically calculated
# values without needing the user to assign
class TrainingPlan(models.Model):
@@ -1118,7 +1104,7 @@ class TrainingPlan(models.Model):
name = models.CharField(max_length=150,blank=True)
status = models.BooleanField(default=True,verbose_name='Active')
target = models.ForeignKey(TrainingTarget,blank=True,null=True)
startdate = models.DateField(default=timezone.now)
startdate = models.DateField(default=datetime.date.today)
enddate = models.DateField(
default=half_year_from_now)
@@ -1482,7 +1468,7 @@ def macrocyclecheckdates(plan):
class TrainingMacroCycle(models.Model):
plan = models.ForeignKey(TrainingPlan)
name = models.CharField(max_length=150,blank=True)
startdate = models.DateField(default=timezone.now)
startdate = models.DateField(default=datetime.date.today)
enddate = models.DateField(
default=half_year_from_now)
notes = models.TextField(max_length=300,blank=True)
@@ -1568,7 +1554,7 @@ class TrainingMacroCycleForm(ModelForm):
class TrainingMesoCycle(models.Model):
plan = models.ForeignKey(TrainingMacroCycle)
name = models.CharField(max_length=150,blank=True)
startdate = models.DateField(default=timezone.now)
startdate = models.DateField(default=datetime.date.today)
enddate = models.DateField(
default=half_year_from_now)
notes = models.TextField(max_length=300,blank=True)
@@ -1643,7 +1629,7 @@ class TrainingMesoCycle(models.Model):
class TrainingMicroCycle(models.Model):
plan = models.ForeignKey(TrainingMesoCycle)
name = models.CharField(max_length=150,blank=True)
startdate = models.DateField(default=timezone.now)
startdate = models.DateField(default=datetime.date.today)
enddate = models.DateField(
default=half_year_from_now)
notes = models.TextField(max_length=300,blank=True)
@@ -1790,7 +1776,7 @@ class PlannedSession(models.Model):
comment = models.TextField(max_length=500,blank=True,
)
startdate = models.DateField(default=timezone.now,
startdate = models.DateField(default=datetime.date.today,
verbose_name='On or After')
enddate = models.DateField(default=a_week_from_now,
@@ -3302,10 +3288,10 @@ class RowerForm(ModelForm):
# An announcement that goes to the right of the workouts list
# optionally sends a tweet to our twitter account
class SiteAnnouncement(models.Model):
created = models.DateField(default=timezone.now)
created = models.DateField(default=datetime.date.today)
announcement = models.TextField(max_length=280)
expires = models.DateField(default=timezone.now)
modified = models.DateField(default=timezone.now)
expires = models.DateField(default=datetime.date.today)
modified = models.DateField(default=datetime.date.today)
dotweet = models.BooleanField(default=False)
def save(self, *args, **kwargs):

View File

@@ -9,6 +9,8 @@ from rowsandall_app.settings import (
SPORTTRACKS_REDIRECT_URI
)
import mytypes
oauth_data = {
'client_id': SPORTTRACKS_CLIENT_ID,
'client_secret': SPORTTRACKS_CLIENT_SECRET,
@@ -346,7 +348,7 @@ 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 types.otwtypes:
if workouttype in mytypes.otwtypes:
workouttype = 'rower'
try:

View File

@@ -20,7 +20,14 @@
<p>Unless specified otherwise, the payments on the
recurring payment plans are annual. The prices are specified
as a price per year. You can downgrade or cancel your
plan at any time in your <a href="/rowers/me/edit/">settings</a>.
plan at any time, through the <a href="/rowers/me/edit/">settings page</a>.
Please refer to our <a href="/rowers/legal/">terms and conditions</a> for our
payments and <a href="/rowers/legal/#refunds">refunds policy</a>.
Accepted payment methods are the payment methods offered
by
<a href="https://www.braintreegateway.com/merchants/jytq7yxsm66qqdzb/verified">Braintree</a>
through us. If you have any questions about our payments and refunds policy, please contact
us by email at support@rowsandall.com.
</p>
<table width="100%">

View File

@@ -72,6 +72,11 @@
<input type="hidden" id="nonce" name="payment_method_nonce" />
<input type="hidden" id="plan" name="plan" value="{{ plan.id }}">
<p>
<input id="tac" type="checkbox" name="tac" value="tac">I have taken note of the
<a href="/rowers/legal/#refunds" target="_blank">Refund and Cancellation</a>
Policy and agree with the <a href="/rowers/legal/" target="_blank">Terms of Service</a>.
</p>
{% csrf_token %}
<button type="submit" id="submit-button"><span>Downgrade to the &euro; {{ plan.price|currency }} plan</span></button>
</form>

View File

@@ -53,7 +53,7 @@
<textarea name="message" class="inputtextarea" rows="11" cols="45"></textarea>
</td></tr>
<tr><td>
<input class="button green" type="submit" name="submitform" value="Send Message" />
<input type="submit" name="submitform" value="Send Message" />
</td></tr>
</table>
</form>

View File

@@ -3,6 +3,52 @@
{% block title %}Legal{% endblock title %}
{% block main %}
<h1>Welcome to Rowsandall</h1>
<p>Welcome to Rowsandall. We want you to know and understand your rights and our rights relating
to the provision o fthe Services (as defined below). Please review them carefully.
Here are a few highlights:
</p>
<p>
<ul>
<li>
Your privacy is critically important to us. See how we collect and use your personal
information in our <a href="#privacy">Privacy Policy</a>
</li>
<li>
<a href="#deactivation">You can cancel your membership or delete your account at any time.</a>
</li>
<li>
<a href="#content">You own your content, but give us a right to use it</a>
</li>
<li>
<a href="#conduct">We expect our members to act with respect and we can cancel
your account if you act inappropriately</a>
</li>
<li>
<a href="#liability">Rowsandall is not liable for your activities and no warranties
are made by Rowsandall</a>
</li>
<li>
<a href="#termination">
We can cancel your account if you act inappropriately.
</a>
</li>
<li>
<a href="#refunds">
We offer paid plans with extended functionality. These are governed by
our refund policy.
</a>
</li>
<li>
<a href="#contact">
There are easy ways to reach us if you have questions or need help.
</a>
</li>
</ul>
</p>
<h1>Terms and Conditions</h1>
<h2>Credit</h2>
@@ -32,7 +78,12 @@
</p>
<h2>Acceptable use</h2>
<h2 id="conduct">Acceptable use</h2>
<p>You must not use this website to copy, store, host, transmit, sned, use, publish or
distribute any material which is illegal, obscene, defamatory, threatening, harassing, abusive,
or hateful or that advocates violence.
</p>
<p>You must not use this website in any way that causes, or may cause, damage to the website or impairment of the availability or accessibility of the website; or in any way which is unlawful, illegal, fraudulent or harmful, or in connection with any unlawful, illegal, fraudulent or harmful purpose or activity.</p>
@@ -51,7 +102,7 @@
<p>rowsandall.com may disable your user ID and password in rowsandall.com&rsquo;s sole discretion without notice or explanation.</p>
<h2>User content</h2>
<h2 id="content">User content</h2>
<p>In these terms and conditions, <q>your user content</q> means material (including without limitation text, images, audio material, video material and audio-visual material) that you submit to this website, for whatever purpose.</p>
@@ -78,7 +129,7 @@
<p>Nothing on this website constitutes, or is meant to constitute, advice of any kind. If you require advice in relation to any legal, financial or medica] matter you should consult an appropriate professional.</p>
<h2>Limitations of liability</h2>
<h2 id="liability">Limitations of liability</h2>
<p>rowsandall.com will not be liable to you (whether under the law of contact, the law of torts or otherwise) in relation to the contents of, or use of, or otherwise in connection with, this website:
@@ -136,6 +187,27 @@
<p>If a provision of these terms and conditions is determined by any court or other competent authority to be unlawful and/or unenforceable, the other provisions will continue in effect. If any unlawful and/or unenforceable provision would be lawful or enforceable if part of it were deleted, that part will be deemed to be deleted, and the rest of the provision will continue in effect. </p>
<h2 id="termination">Termination</h2>
<p>
You agree that Rowsandall may, under certain circumstances and without prior notice,
immediately terminate your accountand/or access to the site. Cause for such termination
shall include, but not be limited to, (a) breaches or violations of the Terms or
other incorporated agreements, policies, or guidelines, (b) requests by law enforcement
or other government agencies, (c) a request by you (self-initiated account deletions),
(d) discontinuance or material modification to the services (or any portion thereof), (e)
unexpected technical or security issues or problems, f) extended periods of inactivity,
and/or (g) nonpayment of any fees owed by you in connection with the Services.
Termination of your account may include (x) removal of access to all offerings within the
Services, (y) deletion of your information, files and Content associated with your account,
and (z) barring of further use of the Services. Further, you agree that all terminations
for cause shall be made in Rowsandalls sole discretion and that Strava shall not be liable
to you or any third party for any termination of your account or access to the Services.
The following Sections shall survive termination of your account
and/or the Terms: Member Content Submitted to the Services, Proprietary Rights,
Your Feedback, Disclaimer of Warranties and Liability, Indemnity, Applicable Laws and General.
</p>
<h2>Entire agreement</h2>
<p>These terms and conditions constitute the entire agreement between you and rowsandall.com in relation to your use of this website, and supersede all previous agreements in respect of your use of this website.</p>
@@ -145,14 +217,18 @@
<p>These terms and conditions will be governed by and construed in accordance with Czech Law and any disputes relating to these terms and conditions will be subject to the exclusive jurisdiction of the courts of The Czech Republic.</p>
<h2>rowsandall.com&rsquo;s details</h2>
<h2 id="contact">rowsandall.com&rsquo;s details</h2>
<p>The rowsandall.com site is owned by Rowsandall s.r.o., Nov&eacute; sady 988/2, Star&eacute; Brno, 602 00 Brno, Czech Republic (company identification number 070 48 572)</p>
<p>You can contact rowsandall.com by using the <a href="/rowers/email/">email contact form.</a></p>
<h2>Fees and Payments for Purchased Services</h2>
<h2>Privacy Policy</h2>
{% include "refunds.html" %}
<h2 id="privacy">Privacy Policy</h2>
{% include "privacypolicy.html" %}

View File

@@ -172,7 +172,7 @@
{% endif %}
<tr>
<td>
Available trials
Available trials (no strings attached)
</td>
<td>
&nbsp;
@@ -300,6 +300,30 @@
<p>If you would like to find a coach who helps you plan your training
through rowsandall.com, contact me throught the contact form.</p>
<h2>Terms and Conditions, Contact Information</h2>
<p>
Before purchasing any of our paid plans, you must
review and acknowledge our <a href="/rowers/legal/">Terms and Conditions</a>,
and <a href="/rowers/legal#refunds">Refunds and Returns Policy</a>
</p>
<p>Payments are made to "Rowsandall s.r.o.", with the following contact information:</p>
<p><strong>Rowsandall s.r.o.</strong><br />
Nov&eacute; sady 988/2<br />
602 00 Brno<br />
Czech Republic<br />
IČ: 070 48 572<br />
DIČ: CZ 070 48 572 (Nejsme plátce DPH)<br />
Datová schránka: 7897syr<br />
Email: <a href="mailto:info@rowsandall.com">info@rowsandall.com</a><br />
The company is registered in the business register at the
Regional Court in Brno (Společnost je zapsána v obchodním rejstříku vedeném u Krajského soudu v Brně, oddíl C, vložka 105845)<br/>
</p>
<p>Do not hesitate to contact us at <a href="mailto:info@rowsandall.com">info@rowsandall.com</a>
with any payment related question you have.</p>
</li>
</ul>

View File

@@ -8,7 +8,7 @@
<p>
Thank you for registering to {{ user.rower.paidplan.name }}. You have paid for 12 months
membership. You were charged {{ amount }} &euro; You will receive an email
confirming the payment
confirming the payment.
</p>
<p>
@@ -19,6 +19,20 @@
{% endif %}
</p>
<p>Unless specified otherwise, the payments on the
recurring payment plans are annual. The prices are specified
as a price per year. You can downgrade or cancel your
plan at any time, through the <a href="/rowers/me/edit/">settings page</a>.
Please refer to our <a href="/rowers/legal/">terms and conditions</a> for our
<a href="/rowers/legel/#refunds">payments and refunds policy</a>.
Accepted payment methods are the payment methods offered
by
<a href="https://www.braintreegateway.com/merchants/jytq7yxsm66qqdzb/verified">Braintree</a>
through us. If you have any questions about our payments and refunds policy, please contact
us by email at support@rowsandall.com.
</p>
{% endblock %}
{% block sidebar %}

View File

@@ -7,8 +7,20 @@
<h2>Order Overview</h2>
<p>Unless specified otherwise, the payments on the
recurring payment plans are annual. The prices are specified
as a price per year. You can downgrade or cancel your
plan at any time, through the <a href="/rowers/me/edit/">settings page</a>.
Please refer to our <a href="/rowers/legal/">terms and conditions</a> for our
payments and refunds policy. Accepted payment methods are the payment methods offered
by
<a href="https://www.braintreegateway.com/merchants/jytq7yxsm66qqdzb/verified">Braintree</a>
through us. If you have any questions about our payments and refunds policy, please contact
us by email at support@rowsandall.com.
</p>
<p>
Payments will be procesed by Braintree (A PayPal service):
Payments will be processed by Braintree (A PayPal service):
</p>
<p>
<a href="https://www.braintreegateway.com/merchants/{{ BRAINTREE_MERCHANT_ID }}/verified" target="_blank">
@@ -81,6 +93,11 @@
<input type="hidden" id="nonce" name="payment_method_nonce" />
<input type="hidden" id="plan" name="plan" value="{{ plan.id }}">
<p>
<input id="tac" type="checkbox" name="tac" value="tac">I have taken note of the
<a href="/rowers/legal/#refunds" target="_blank">Refund and Cancellation</a>
Policy and agree with the <a href="/rowers/legal/" target="_blank">Terms of Service</a>.
</p>
{% csrf_token %}
<button type="submit" id="submit-button"><span>Pay &euro; {{ plan.price|currency }}</span></button>
</form>
@@ -89,7 +106,6 @@
{% include 'braintreedropin.html' %}
{% endblock %}
{% block sidebar %}

View File

@@ -73,7 +73,7 @@
<a href="/rowers/sessions/multiclone/user/{{ rower.user.id }}/?when={{ timeperiod }}">
Clone multiple sessions
</a>
<button class="button green small" type="submit">Submit</button>
<button type="submit">Submit</button>
</form>
</li>
</ul>

View File

@@ -114,7 +114,7 @@
{{ dateshiftform.as_table }}
</table>
<p>
<input name='workoutselectform' class="button green" type="submit" value="Submit">
<input name='workoutselectform' type="submit" value="Submit">
</p>
<p>You can use the date and search forms above to search through all
sessions.</p>

View File

@@ -67,7 +67,7 @@
<a href="/rowers/sessions/{{ plannedsession.id }}/clone">Clone</a>
</p>
<p>
<input class="button green" type="submit" value="Save">
<input type="submit" value="Save">
</p>
<div id="id_guidance" class="padded">

View File

@@ -116,7 +116,7 @@
posts.
</p>
<h2>Data Deletion</h2>
<h2 id="deactivation">Membership Cancellation and Data Deletion</h2>
<p>If you have previously consented to allow rowsandall.com to store and process your personal
data in accordance with this privacy policy, and you wish to withdraw your conent,
@@ -205,12 +205,13 @@
<h3>Payment Information</h3>
<p>
We user PayPal and Braintree (a PayPal service) to process payments.
We use PayPal and Braintree (a PayPal service) to process payments.
Your payment information, such as credit card information, is not
stored on our servers, but is stored in a secure vault at our payment
processors PayPal and Braintree.
processors PayPal and Braintree, and processed and controlled by them.
</p>
<h3>Team Functionality</h3>
<p>
@@ -236,7 +237,7 @@
edit your heart rate and power settings, as well as functional threshold information and the account information accessible on your
settings page under the header "Account Information". The team manager is not able to access or change your passwords, team memberships,
favorite charts, export settings, workflow layout, or secret tokens. Also, the team manager is not able to download all your data,
not can he deactivate or delete your account.
nor can he deactivate or delete your account.
</p>
<p>
@@ -273,6 +274,7 @@
has suitable GDPR compliant measures in place.
</p>
<h2>Inactive Users - accounts are deleted after 18 months</h2>
<p>

View File

@@ -0,0 +1,53 @@
<p id="refunds">Thank you for shopping at Rowsandall.</p>
<h3>Digital products</h3>
<p>Recurring payments are always paid in full for the entire duration of the plan
and are automatically renewed at the end of the plan. At any time during the duration
of the plan, you can cancel the recurring payment. We do not issue refunds for payments
regarding the current plan period.</p>
<p>If you are not 100% satisfied with your purchase, you can get a refund or
exhchange the product for another one.
</p>
<p>You can return a product for up to 30 days from the date you purchased it.
To be eligible for a refund, you need to contact us using the contact information
below. To improve our service, we ask you to explain how the product did not meet
your expectations. If your refund is approved, we will initiate a refund to your
credit card (or original method of payment). You will receive the credit within
a certain amount of days, depending on your card issuer's policies.
</p>
<p>We recommend contacting us for assistance if you experience any issues receiving
our products.</p>
<h3>Upgrades and Downgrades, Cancellations</h3>
<p>
Upgrades and downgrades between paid plans are effective immediately, but the billing cycle
is not changed. Upgrades are charged a pro-rated amount for the current billing cycle. Downgrades
will result in a credit on our accounts, leading to a lower charge at the beginning of the
subsequent billing cycle.
</p>
<p>
With the exception of an approved refund within 30 days of purchase (see above), we do not
issue refunds upon cancellation of the plan. If you are eligible for a refund, contact
us within 30 days of your purchase.
</p>
<h3>Contact us</h3>
<p>If you have any questions about our Returns and Refunds Policy, please contact us:</p>
<ul>
<li>
<p>By email: support@rowsandall.com</p>
</li>
</ul>

View File

@@ -21,7 +21,13 @@
<p>Unless specified otherwise, the payments on the
recurring payment plans are annual. The prices are specified
as a price per year. You can downgrade or cancel your
plan at any time in your <a href="/rowers/me/edit/">settings</a>.
plan at any time, through the <a href="/rowers/me/edit/">settings page</a>.
Please refer to our <a href="/rowers/legal/">terms and conditions</a> for our
payments and refunds policy. Accepted payment methods are the payment methods offered
by
<a href="https://www.braintreegateway.com/merchants/jytq7yxsm66qqdzb/verified">Braintree</a>
through us. If you have any questions about our payments and refunds policy, please contact
us by email at support@rowsandall.com.
</p>
<table width="100%">

View File

@@ -7,8 +7,20 @@
<h2>Order Overview</h2>
<p>Unless specified otherwise, the payments on the
recurring payment plans are annual. The prices are specified
as a price per year. You can downgrade or cancel your
plan at any time, through the <a href="/rowers/me/edit/">settings page</a>.
Please refer to our <a href="/rowers/legal/">terms and conditions</a> for our
payments and refunds policy. Accepted payment methods are the payment methods offered
by
<a href="https://www.braintreegateway.com/merchants/jytq7yxsm66qqdzb/verified">Braintree</a>
through us. If you have any questions about our payments and refunds policy, please contact
us by email at support@rowsandall.com.
</p>
<p>
Payments will be procesed by Braintree (A PayPal service):
Payments will be processed by Braintree (A PayPal service):
</p>
<p>
<a href="https://www.braintreegateway.com/merchants/{{ BRAINTREE_MERCHANT_ID }}/verified" target="_blank">
@@ -81,6 +93,11 @@
<input type="hidden" id="nonce" name="payment_method_nonce" />
<input type="hidden" id="plan" name="plan" value="{{ plan.id }}">
<p>
<input id="tac" type="checkbox" name="tac" value="tac">I have taken note of the
<a href="/rowers/legal/#refunds" target="_blank">Refund and Cancellation</a>
Policy and agree with the <a href="/rowers/legal/" target="_blank">Terms of Service</a>.
</p>
{% csrf_token %}
<button type="submit" id="submit-button"><span>Upgrade to the &euro; {{ plan.price|currency }} plan</span></button>
</form>

View File

@@ -61,7 +61,7 @@
{{ form.as_table }}
</table>
{% csrf_token %}
<input class="button green" type="submit" value="Save">
<input type="submit" value="Save">
</form>
</li>
{% for graph in graphs %}

View File

@@ -127,6 +127,11 @@ def mocked_getsmallrowdata_db(*args, **kwargs):
return df
def mocked_getsmallrowdata_db_water(*args, **kwargs):
df = pd.read_csv('rowers/tests/testdata/colsfromdb.csv')
return df
def mocked_getpowerdata_db(*args, **kwargs):
df = pd.read_csv('rowers/tests/testdata/fake_powerdata.csv')
@@ -532,6 +537,7 @@ def mocked_requests(*args, **kwargs):
}
ststrokesjson = json.load(open('rowers/tests/testdata/sporttracksstrokedata.txt','r'))
ststrokesjson_nogps = json.load(open('rowers/tests/testdata/sporttracksstrokedatanolocation.txt','r'))
rkstrokesjson = json.load(open('rowers/tests/testdata/rkstrokes.txt','r'))
@@ -606,7 +612,7 @@ def mocked_requests(*args, **kwargs):
stworkoutlistregex = '.*?sporttracks\.mobi\/api\/v2\/fitnessActivities$'
stworkoutlisttester = re.compile(stworkoutlistregex)
ststrokesregex = '.*?sporttracks\.mobi\/api\/v2\/fitnessActivities/\d+$'
ststrokesregex = '.*?sporttracks\.mobi\/api\/v2\/fitnessActivities/(\d+)$'
ststrokestester = re.compile(ststrokesregex)
rkuploadregex = '.*?api\.runkeeper\.com\/fitnessActivities$'
@@ -725,7 +731,10 @@ def mocked_requests(*args, **kwargs):
}
return MockResponse(json_data,200)
if ststrokestester.match(args[0]):
return MockResponse(ststrokesjson,200)
if ststrokestester.match(args[0]).group(1) == '13':
return MockResponse(ststrokesjson_nogps,200)
else:
return MockResponse(strokesjson,200)
if stuploadtester.match(args[0]):
json_data = {
"uris": [

View File

@@ -9,7 +9,7 @@ pytestmark = pytest.mark.django_db
from bs4 import BeautifulSoup
import re
from nose_parameterized import parameterized
from parameterized import parameterized
from django.test import TestCase, Client,override_settings, RequestFactory, TransactionTestCase
from django.core.management import call_command
@@ -35,13 +35,15 @@ from rowers.tasks import handle_makeplot
from rowers.utils import serialize_list,deserialize_list
from rowers.utils import NoTokenError
from rowers.plannedsessions import get_dates_timeperiod
from shutil import copyfile
from shutil import copyfile, copy
from nose.tools import assert_true
from mock import Mock, patch
from minimocktest import MockTestCase
import pandas as pd
import rowers.c2stuff as c2stuff
from django.core.urlresolvers import reverse, reverse_lazy
import json
import numpy as np
@@ -112,7 +114,8 @@ def get_random_file(filename='rowers/tests/testdata/testdata.csv',name=''):
else:
newfilename = 'rowers/tests/testdata/temp/'+fromstring+uuid4().hex[:16]+'.'+extension
copyfile(filename,newfilename)
# copyfile(filename,newfilename)
copy(filename,newfilename)
thedict = {
'row':row,

View File

@@ -153,10 +153,12 @@ class BoxPlotTest(TestCase):
options['plotfield'] = 'spm'
options['rankingonly'] = False
self.c.session['options'] = options
self.c.session.save()
session = self.c.session
session['options'] = options
session.save()
response = self.c.get('/')
sessionoptions = self.c.session['options']
sessionoptions = session['options']
self.assertEqual(sessionoptions['ids'],[1,2,3])
response = self.c.get('/rowers/user-boxplot-data/')
@@ -432,8 +434,10 @@ class CumFlexTest(TestCase):
'yparam1': u'driveenergy',
'yparam2': u'power'}
self.c.session['options'] = options
self.c.session.save()
session = self.c.session
session['options'] = options
session.save()
response = self.c.get('/')
url = '/rowers/flexalldata/'
response = self.c.get(url)
@@ -533,8 +537,10 @@ class MultiFlexTest(TestCase):
'ploterrorbars':False,
}
self.c.session['options'] = options
self.c.session.save()
session = self.c.session
session['options'] = options
session.save()
response = self.c.get('/')
url = '/rowers/user-multiflex-data/'
response = self.c.get(url)
@@ -614,11 +620,12 @@ class HistoTest(TestCase):
'startdatestring':startdate.strftime("%Y-%m-%d"),
}
self.c.session['options'] = options
self.c.session.save()
session = self.c.session
session['options'] = options
session.save()
response = self.c.get('/')
sessionoptions = self.c.session['options']
sessionoptions = session['options']
response = self.c.get('/rowers/histodata/')
self.assertEqual(response.status_code,200)

View File

@@ -0,0 +1,209 @@
from statements import *
nu = datetime.datetime.now()
class WorkoutViewTest(TestCase):
def setUp(self):
self.u = UserFactory()
self.r = Rower.objects.create(user=self.u,
birthdate=faker.profile()['birthdate'],
gdproptin=True,
gdproptindate=timezone.now(),
rowerplan='coach')
self.c = Client()
self.user_workouts = WorkoutFactory.create_batch(5, user=self.r)
self.factory = RequestFactory()
self.password = faker.word()
self.u.set_password(self.password)
self.u.save()
result = get_random_file(filename='rowers/tests/testdata/onwater.csv')
self.wwater = WorkoutFactory(user=self.r,
csvfilename=result['filename'],
starttime=result['starttime'],
startdatetime=result['startdatetime'],
duration=result['duration'],
distance=result['totaldist'],
workouttype = 'water',
)
result = get_random_file(filename='rowers/tests/testdata/erg1.csv')
self.werg1 = WorkoutFactory(user=self.r,
csvfilename=result['filename'],
starttime=result['starttime'],
startdatetime=result['startdatetime'],
duration=result['duration'],
distance=result['totaldist'],
workouttype = 'rower',
)
result = get_random_file(filename='rowers/tests/testdata/erg2.csv')
self.werg2 = WorkoutFactory(user=self.r,
csvfilename=result['filename'],
starttime=result['starttime'],
startdatetime=result['startdatetime'],
duration=result['duration'],
distance=result['totaldist'],
workouttype = 'rower',
)
result = get_random_file(filename='rowers/tests/testdata/erg3.csv')
self.werg3 = WorkoutFactory(user=self.r,
csvfilename=result['filename'],
starttime=result['starttime'],
startdatetime=result['startdatetime'],
duration=result['duration'],
distance=result['totaldist'],
workouttype = 'rower',
)
def tearDown(self):
pass
@patch('rowers.dataprep.create_engine')
@patch('rowers.dataprep.getsmallrowdata_db')
def test_forcecurve(self, mocked_sqlalchemy, mocked_getsmallrowdata_db):
login = self.c.login(username=self.u.username, password=self.password)
self.assertTrue(login)
url = reverse('workout_forcecurve_view',kwargs={'id':self.wwater.id})
response = self.c.get(url)
self.assertEqual(response.status_code,200)
form_data = {
'workstrokesonly': True
}
response = self.c.post(url,form_data)
self.assertEqual(response.status_code,200)
@patch('rowers.dataprep.create_engine')
@patch('rowers.dataprep.getsmallrowdata_db')
def test_joins(self, mocked_sqlalchemy, mocked_getsmallrowdata_db):
login = self.c.login(username=self.u.username, password=self.password)
self.assertTrue(login)
url = reverse('workouts_join_select')
response = self.c.get(url)
self.assertEqual(response.status_code,200)
d1 = self.werg1.date-datetime.timedelta(days=2)
d2 = self.werg2.date+datetime.timedelta(days=2)
date_form_data = {
'startdate': d1.strftime('%Y-%m%d'),
'enddate': d2.strftime('%Y-%m%d')
}
response = self.c.post(url,date_form_data)
self.assertEqual(response.status_code,200)
url = reverse('workouts_join_view')
response = self.c.get(url,follow=True)
self.assertEqual(response.status_code,200)
expected_url = reverse('workouts_join_select')
self.assertRedirects(response,
expected_url=expected_url,
status_code=302,
target_status_code=200)
form_data = {
'workout_name': 'joined',
'set_private': False,
'workouts': [str(self.werg1.id),str(self.werg2.id),str(self.werg3.id)],
}
form = WorkoutMultipleCompareForm(form_data)
self.assertTrue(form.is_valid())
form = WorkoutJoinParamForm(form_data)
self.assertTrue(form.is_valid())
response = self.c.post(url,form_data,follow=True)
self.assertEqual(response.status_code,200)
expected_url = reverse(self.r.defaultlandingpage,
kwargs = {
'id':10
})
self.assertRedirects(response,
expected_url=expected_url,
status_code=302,target_status_code=200)
@patch('rowers.dataprep.create_engine')
@patch('rowers.dataprep.getsmallrowdata_db')
def test_compares(self, mocked_sqlalchemy, mocked_getsmallrowdata_db):
login = self.c.login(username=self.u.username, password=self.password)
self.assertTrue(login)
session = self.c.session
session['ids'] = [self.werg1.id,self.werg2.id]
session.save()
response = self.c.get('/')
url = reverse('multi_compare_view',kwargs={
'userid':self.u.id,
'id':self.werg1.id,
})
print url
form_data = {
'xparam':'time',
'yparam':'power',
'plottype':'line',
'teamid': '',
}
response = self.c.post(url,form_data,follow=True)
self.assertEqual(response.status_code,200)
session['plottype'] = 'scatter'
session['xparam'] = 'time'
session['yparam'] = 'hr'
session.save()
response = self.c.get('/')
response = self.c.get(url,follow=True)
self.assertEqual(response.status_code,200)
@patch('rowers.dataprep.create_engine')
@patch('rowers.dataprep.getsmallrowdata_db')
def test_waterworkout_view(self, mocked_sqlalchemy, mocked_getsmallrowdata_db):
login = self.c.login(username=self.u.username, password=self.password)
self.assertTrue(login)
url = reverse('workout_view',kwargs={'id':self.wwater.id})
response = self.c.get(url)
self.assertEqual(response.status_code,200)
url = reverse('workout_downloadmetar_view',kwargs={
'id': self.wwater.id,
'airportcode': 'LKHO'
}
)
response = self.c.get(url,follow=True)
self.assertEqual(response.status_code,200)
url = reverse('workout_downloadwind_view',kwargs={
'id': self.wwater.id,
}
)
response = self.c.get(url,follow=True)
self.assertEqual(response.status_code,200)

View File

@@ -421,6 +421,17 @@ class STObjects(DjangoTestCase):
self.assertEqual(response.status_code, 200)
@patch('rowers.imports.requests.get', side_effect=mocked_requests)
def test_sporttracks_import(self, mock_get):
response = self.c.get('/rowers/workout/sporttracksimport/13/',follow=True)
self.assertRedirects(response,
expected_url='/rowers/workout/2/edit/',
status_code=302,target_status_code=200)
self.assertEqual(response.status_code, 200)
@patch('rowers.dataprep.create_engine')
def test_strokedata(self, mocked_sqlalchemy):
with open('rowers/tests/testdata/sporttrackstestdata.txt','r') as infile:

View File

@@ -366,6 +366,7 @@ class PaymentTest(TestCase):
'amount':'15.00',
'plan': plans[1].id,
'payment_method_nonce': 'aap',
'tac':'tac',
}
form = BillingForm(form_data)
@@ -410,6 +411,7 @@ class PaymentTest(TestCase):
'amount':'15.00',
'plan': plans[1].id,
'payment_method_nonce': 'aap',
'tac':'tac',
}
form = BillingForm(form_data)
@@ -453,6 +455,7 @@ class PaymentTest(TestCase):
'amount':'15.00',
'plan': plans[1].id,
'payment_method_nonce': 'aap',
'tac':'tac',
}
form = BillingForm(form_data)
@@ -470,3 +473,138 @@ class PaymentTest(TestCase):
expected_url = '/rowers/downgradecompleted/',
status_code=302,target_status_code=200)
@patch('rowers.views.braintreestuff.create_subscription', side_effect=mock_create_subscription)
def test_checkouts_view(self,mock_subscription):
u = UserFactory()
r = Rower.objects.create(user=u,
birthdate=faker.profile()['birthdate'],
gdproptin=True,
gdproptindate=timezone.now(),
rowerplan='coach',
paymentprocessor='braintree',
street_address = faker.street_address(),
city = faker.city(),
postal_code = faker.postalcode(),
country = faker.country(),
)
r.save()
u.set_password(self.password)
u.save()
plans = PaidPlan.objects.all().order_by('price')
plan = plans[1]
form_data = {
'amount':'15.00',
'plan': plans[1].id,
'payment_method_nonce': 'aap',
}
form = BillingForm(form_data)
self.assertTrue(not form.is_valid())
login = self.c.login(username=u.username, password=self.password)
self.assertTrue(login)
url = '/rowers/checkouts/'
response = self.c.post(url, form_data,follow=True)
self.assertEqual(response.status_code,200)
self.assertRedirects(response,
expected_url = '/rowers/checkout/{planid}/'.format(
planid=plans[1].id),
status_code=302,target_status_code=200)
@patch('rowers.views.braintreestuff.update_subscription', side_effect=mock_update_subscription)
def test_upgrade_checkouts_view(self,mock_subscription):
u = UserFactory()
r = Rower.objects.create(user=u,
birthdate=faker.profile()['birthdate'],
gdproptin=True,
gdproptindate=timezone.now(),
rowerplan='coach',
paymentprocessor='braintree',
street_address = faker.street_address(),
city = faker.city(),
postal_code = faker.postalcode(),
country = faker.country(),
)
r.save()
u.set_password(self.password)
u.save()
plans = PaidPlan.objects.all().order_by('price')
plan = plans[1]
form_data = {
'amount':'15.00',
'plan': plans[1].id,
'payment_method_nonce': 'aap',
# 'tac':'tac',
}
form = BillingForm(form_data)
self.assertTrue(not form.is_valid())
login = self.c.login(username=u.username, password=self.password)
self.assertTrue(login)
url = '/rowers/upgradecheckouts/'
response = self.c.post(url, form_data,follow=True)
self.assertEqual(response.status_code,200)
self.assertRedirects(response,
expected_url = '/rowers/upgradecheckout/{planid}/'.format(
planid=plans[1].id),
status_code=302,target_status_code=200)
@patch('rowers.views.braintreestuff.update_subscription', side_effect=mock_update_subscription)
def test_downgrade_checkouts_view(self,mock_subscription):
u = UserFactory()
r = Rower.objects.create(user=u,
birthdate=faker.profile()['birthdate'],
gdproptin=True,
gdproptindate=timezone.now(),
rowerplan='coach',
paymentprocessor='braintree',
street_address = faker.street_address(),
city = faker.city(),
postal_code = faker.postalcode(),
country = faker.country(),
)
r.save()
u.set_password(self.password)
u.save()
plans = PaidPlan.objects.all().order_by('price')
plan = plans[1]
form_data = {
'amount':'15.00',
'plan': plans[1].id,
'payment_method_nonce': 'aap',
# 'tac':'tac',
}
form = BillingForm(form_data)
self.assertTrue(not form.is_valid())
login = self.c.login(username=u.username, password=self.password)
self.assertTrue(login)
url = '/rowers/downgradecheckouts/'
response = self.c.post(url, form_data,follow=True)
self.assertEqual(response.status_code,200)
self.assertRedirects(response,
expected_url = '/rowers/downgradecheckout/{planid}/'.format(
planid=plans[1].id),
status_code=302,target_status_code=200)

View File

@@ -1,6 +1,7 @@
#from __future__ import print_function
from statements import *
nu = datetime.datetime.now()
from rowers.utils import allmonths,allsundays
import rowers.plannedsessions as plannedsessions
@@ -124,7 +125,8 @@ class TrainingPlanTest(TestCase):
tested = True
# add test for creating new sessions
def sessions_create(self):
def test_sessions_create(self):
login = self.c.login(username=self.u.username, password=self.password)
self.assertTrue(login)
@@ -150,8 +152,10 @@ class TrainingPlanTest(TestCase):
'name': faker.word(),
}
print 'posting to sessions/create'
form = PlannedSessionForm(post_data)
self.assertEqual(form.is_valid())
self.assertTrue(form.is_valid())
response = self.c.post(url,post_data)
self.assertEqual(response.status_code,200)
@@ -987,4 +991,547 @@ class MandatoryTestCompleteTest(TestCase):
url = '/rowers/sessions/'
response = self.c.get(url)
self.assertEqual(response.status_code,200)
url = reverse('plannedsession_compare_view',kwargs={'id':self.ps_dist.id})
response = self.c.get(url,follow=True)
self.assertEqual(response.status_code,200)
class PlannedSessionsView(TestCase):
def setUp(self):
# user
self.u = UserFactory()
self.r = Rower.objects.create(user=self.u,
birthdate=faker.profile()['birthdate'],
gdproptin=True,
gdproptindate=timezone.now(),
rowerplan='coach')
self.r.save()
self.c = Client()
self.u2 = UserFactory(username='testbasicuser')
self.r2 = Rower.objects.create(user=self.u2,
birthdate=faker.profile()['birthdate'],
gdproptin=True,
gdproptindate=timezone.now(),
rowerplan='basic')
self.password2 = faker.word()
self.u2.set_password(self.password2)
self.u2.save()
self.team = Team.objects.create(
name = faker.word(),
notes = faker.text(),
manager = self.u,
)
self.r.team.add(self.team)
self.r2.team.add(self.team)
self.r.save()
self.r2.save()
# workouts
# workout 1 - 2019-01-13, rScore 69
result = get_random_file(filename='rowers/tests/testdata/2019-01-13_session.csv',name='sprintervals')
self.factory = RequestFactory()
self.password = faker.word()
self.u.set_password(self.password)
self.u.save()
self.w1 = Workout.objects.create(
name='sprintervals',
notes=faker.text(),
startdatetime = result['startdatetime'],
starttime = result['starttime'],
workouttype='rower',
date=result['date'],
duration=result['duration'],
distance=result['totaldist'],
csvfilename=result['filename'],
trimp = 77,
rscore = 69,
hrtss = 43,
normp = 236,
user=self.u.rower,
)
# plan
self.target = TrainingTarget.objects.create(
name = faker.word(),
manager = self.u.rower,
notes = faker.text()
)
self.target.rowers.add(self.u.rower)
self.target.save()
self.plan = TrainingPlan.objects.create(
manager = self.u.rower,
name = faker.word(),
status=True,
target = self.target,
startdate=timezone.now().date(),
enddate = self.target.date,
)
self.plan.rowers.add(self.u.rower)
self.plan.save()
# cycles
self.macro = TrainingMacroCycle.objects.create(
plan=self.plan,
name=faker.word(),
type='userdefined',
notes = faker.text(),
startdate = self.plan.startdate,
enddate = self.plan.enddate,
)
mesos = TrainingMesoCycle.objects.filter(plan=self.macro)
for m in mesos:
m.delete()
monthstarts = [d for d in allmonths(self.macro.startdate,self.macro.enddate)]
monthstarts.append(self.macro.enddate)
for i in range(len(monthstarts)-1):
firstday = monthstarts[i]
lastday = monthstarts[i+1]-datetime.timedelta(days=1)
if lastday < self.macro.enddate and i == len(monthstarts)-2:
lastday = self.macro.enddate
meso = TrainingMesoCycle(startdate=firstday,
enddate=lastday,
plan=self.macro,
name = '%s' % firstday.strftime("%B"),
type = 'userdefined')
meso.save()
mesos = TrainingMesoCycle.objects.filter(plan=self.macro)
for cycle in mesos:
micros = TrainingMicroCycle.objects.filter(plan=cycle)
for m in micros:
m.delete()
sundays = [s for s in allsundays(cycle.startdate,cycle.enddate)]
if sundays and sundays[-1] < cycle.enddate:
sundays = sundays+[cycle.enddate]
elif not sundays:
sundays = [cycle.enddate]
for i in range(len(sundays)):
if i==0:
monday = cycle.startdate
else:
monday = sundays[i]-datetime.timedelta(days=6)
if monday < cycle.startdate:
monday = cycle.startdate
nextsunday = sundays[i]
micro = TrainingMicroCycle(startdate=monday,
enddate=nextsunday,
plan=cycle,
name = 'Week %s' % monday.isocalendar()[1],
type='userdefined')
micro.save()
# sessions
startdatetime = self.w1.startdatetime
startdate = (startdatetime-datetime.timedelta(days=1)).date()
enddate = (startdatetime+datetime.timedelta(days=1)).date()
preferreddate = startdatetime.date()
self.startdate = startdate
self.enddate = enddate
self.ps_rscore = SessionFactory(
startdate=startdate,enddate=enddate,
sessiontype='test',
sessionmode = 'rScore',
criterium = 'none',
sessionvalue = 69,
sessionunit='None',
preferreddate=preferreddate,
manager=self.u,
)
self.ps_rscore.save()
added = plannedsessions.add_rower_session(self.u.rower,self.ps_rscore)
self.ps_dist = SessionFactory(
startdate=startdate,enddate=enddate,
sessiontype='test',
sessionmode = 'distance',
criterium = 'none',
sessionvalue = result['totaldist'],
sessionunit='m',
preferreddate=preferreddate,
manager=self.u,
)
self.ps_dist.save()
added = plannedsessions.add_rower_session(self.u.rower,self.ps_dist)
self.ps_time = SessionFactory(
startdate=startdate,enddate=enddate,
sessiontype='test',
sessionmode = 'time',
criterium = 'none',
sessionvalue = 38,
sessionunit='min',
preferreddate=preferreddate,
manager=self.u,
)
self.ps_time.save()
added = plannedsessions.add_rower_session(self.u.rower,self.ps_time)
self.ps_trimp = SessionFactory(
startdate=startdate,enddate=enddate,
sessiontype='test',
sessionmode = 'TRIMP',
criterium = 'none',
sessionvalue = 77,
sessionunit='none',
preferreddate=preferreddate,
manager=self.u,
)
self.ps_trimp.save()
added = plannedsessions.add_rower_session(self.u.rower,self.ps_trimp)
added = plannedsessions.add_team_session(self.team,self.ps_trimp)
def tearDown(self):
try:
os.remove(self.w1.csvfilename)
except (IOError, WindowsError):
pass
def test_clone_view(self):
login = self.c.login(username=self.u.username, password=self.password)
self.assertTrue(login)
url = '/rowers/sessions/{id}/clone/'.format(id=self.ps_trimp.id)
today = datetime.date.today()
b = datetime.date.today()-timezone.timedelta(today.weekday())
e = b+timezone.timedelta(days=6)
expected_url = '/rowers/sessions/teamedit/5/'
response = self.c.get(url,follow=True)
self.assertEqual(response.status_code,200)
self.assertRedirects(response,
expected_url=expected_url,
status_code=302,target_status_code=200)
def test_multiclone_view(self):
login = self.c.login(username=self.u.username, password=self.password)
self.assertTrue(login)
url = '/rowers/sessions/multiclone/'
response = self.c.get(url)
self.assertEqual(response.status_code,200)
formdata = {
'startdate':self.startdate,
'enddate':self.enddate,
}
form = DateRangeForm(formdata)
self.assertTrue(form.is_valid())
response = self.c.post(url,formdata)
self.assertEqual(response.status_code,200)
url = '/rowers/sessions/multiclone/?startdate={startdate}&enddate={enddate}'.format(
startdate = self.startdate,
enddate = self.enddate
)
formdata = {
'plannedsessions':[self.ps_time.id,self.ps_trimp.id],
'shiftstartdate':datetime.date.today()+timezone.timedelta(days=6)
}
form = PlannedSessionMultipleCloneForm(formdata)
self.assertTrue(form.is_valid())
form = SessionDateShiftForm(formdata)
self.assertTrue(form.is_valid())
response = self.c.post(url,formdata,follow=True)
self.assertEqual(response.status_code,200)
def test_multicreate_view(self):
login = self.c.login(username=self.u.username, password=self.password)
self.assertTrue(login)
# get something
url = '/rowers/sessions/multicreate/user/1/extra/1/'
response = self.c.get(url)
self.assertEqual(response.status_code,200)
data = {}
data['csrf_token'] = response.context['csrf_token']
management_form = response.context['ps_formset'].management_form
for i in 'TOTAL_FORMS', 'INITIAL_FORMS', 'MIN_NUM_FORMS', 'MAX_NUM_FORMS':
data['%s-%s' % (management_form.prefix,i)] = management_form[i].value()
for i in range(response.context['ps_formset'].total_form_count()):
current_form = response.context['ps_formset'].forms[i]
for field_name in current_form.fields:
value = current_form[field_name].value()
data['%s-%s' % (current_form.prefix, field_name)] = value if value is not None else ''
# post data
response = self.c.post(url,data,follow=True)
self.assertEqual(response.status_code,200)
def test_teamcreate_view(self):
login = self.c.login(username=self.u.username, password=self.password)
self.assertTrue(login)
url = '/rowers/sessions/teamcreate/'
response = self.c.get(url)
self.assertEqual(response.status_code,200)
form_data = {
'team':[self.team.id],
'startdate': self.w1.startdatetime.date(),
'enddate': (self.w1.startdatetime+datetime.timedelta(days=5)).date(),
'preferreddate': self.w1.startdatetime.date(),
'name': faker.word(),
'sessiontype': 'session',
'sessionmode': 'distance',
'criterium': 'none',
'sessionvalue': 13000,
'sessionunit': 'm',
'course': '',
'comment':faker.text()
}
plannedsessionform = PlannedSessionForm(form_data)
self.assertTrue(plannedsessionform.is_valid())
teamform = PlannedSessionTeamForm(self.u,form_data)
self.assertTrue(teamform.is_valid())
response = self.c.post(url,form_data,follow=True)
self.assertEqual(response.status_code,200)
def test_teamedit_view(self):
login = self.c.login(username=self.u.username, password=self.password)
self.assertTrue(login)
url = '/rowers/sessions/teamedit/{id}/'.format(id=self.ps_trimp.id)
response = self.c.get(url)
self.assertEqual(response.status_code,200)
s = self.w1.startdatetime.date().strftime("%Y-%m-%d")
e = (self.w1.startdatetime+datetime.timedelta(days=5)).date().strftime("%Y-%m-%d")
p = self.w1.startdatetime.date().strftime("%Y-%m-%d")
form_data = {
'team':['1'],
'startdate': s,
'enddate': e,
'preferreddate': p,
'name': faker.word(),
'sessiontype': 'session',
'sessionmode': 'distance',
'criterium': 'none',
'sessionvalue': 13000,
'sessionunit': 'm',
'course': '',
'comment':faker.text(),
'members': ['{id1}'.format(id1=self.r.id)],
'initial-startdate':s,
'initial-enddate':e,
'initial-preferreddate':p
}
form = PlannedSessionForm(form_data,instance=self.ps_trimp)
if not form.is_valid():
print form.errors
self.assertTrue(form.is_valid())
form = PlannedSessionTeamForm(self.u,form_data)
if not form.is_valid():
print form.errors
self.assertTrue(form.is_valid())
form = PlannedSessionTeamMemberForm(self.ps_trimp,form_data)
if not form.is_valid():
print form.errors
self.assertTrue(form.is_valid())
response = self.c.post(url,follow=True)
self.assertEqual(response.status_code,200)
def test_coach_view(self):
login = self.c.login(username=self.u.username, password=self.password)
self.assertTrue(login)
d1 = (self.ps_trimp.startdate-datetime.timedelta(days=1)).strftime(
"%Y-%m-%d")
d2 = (self.ps_trimp.enddate+datetime.timedelta(days=1)).strftime(
"%Y-%m-%d")
sps = plannedsessions.get_sessions_manager(self.u,teamid=0,
enddate=d2,startdate=d1)
self.assertTrue(len(sps)>0)
url = '/rowers/sessions/coach/?when={d1}/{d2}'.format(
d1=d1,
d2=d2,
)
response = self.c.get(url)
self.assertEqual(response.status_code,200)
def test_plannedsessions_view(self):
login = self.c.login(username=self.u.username, password=self.password)
self.assertTrue(login)
url = '/rowers/sessions/?when={d1}/{d2}'.format(
d1=self.ps_trimp.startdate.strftime("%Y-%m%d"),
d2=self.ps_trimp.enddate.strftime("%Y-%m%d")
)
response = self.c.get(url)
self.assertEqual(response.status_code,200)
def test_plannedsessions_print_view(self):
login = self.c.login(username=self.u.username, password=self.password)
self.assertTrue(login)
url = '/rowers/sessions/print/?when={d1}/{d2}'.format(
d1=self.ps_trimp.startdate.strftime("%Y-%m%d"),
d2=self.ps_trimp.enddate.strftime("%Y-%m%d")
)
response = self.c.get(url)
self.assertEqual(response.status_code,200)
def test_plannedsession_manage_view(self):
login = self.c.login(username=self.u.username, password=self.password)
self.assertTrue(login)
url = '/rowers/sessions/manage/session/{id}/?when={d1}/{d2}'.format(
d1=self.ps_trimp.startdate.strftime("%Y-%m%d"),
d2=self.ps_trimp.enddate.strftime("%Y-%m%d"),
id=self.ps_trimp.id,
)
response = self.c.get(url)
self.assertEqual(response.status_code,200)
def test_plannedsession_edit_view(self):
login = self.c.login(username=self.u.username, password=self.password)
self.assertTrue(login)
url = '/rowers/sessions/{id}/edit/'.format(
id=self.ps_time.id,
)
response = self.c.get(url)
self.assertEqual(response.status_code,200)
form_data = {
'startdate': self.w1.startdatetime.date().strftime("%Y-%m-%d"),
'enddate': (self.w1.startdatetime+datetime.timedelta(days=5)).date().strftime("%Y-%m-%d"),
'preferreddate': self.w1.startdatetime.date().strftime("%Y-%m-%d"),
'name': faker.word(),
'sessiontype': 'session',
'sessionmode': 'distance',
'criterium': 'none',
'sessionvalue': 13000,
'sessionunit': 'm',
'course': '',
'comment':faker.text(),
}
form = PlannedSessionForm(form_data,instance=self.ps_time)
if not form.is_valid():
print form.errors
self.assertTrue(form.is_valid())
response = self.c.post(url,follow=True)
self.assertEqual(response.status_code,200)
def test_plannedsession_detach_view(self):
self.ps_time.startdate = self.w1.date-datetime.timedelta(days=3)
self.ps_time.enddate = self.w1.date-datetime.timedelta(days=3)
self.ps_time.save()
self.w1.plannedsession = self.ps_time
self.w1.save()
login = self.c.login(username=self.u.username, password=self.password)
self.assertTrue(login)
url = '/rowers/sessions/{psid}/detach/{id}/'.format(
psid=self.ps_time.id,
id = self.w1.id,
)
response = self.c.get(url,follow=True)
self.assertEqual(response.status_code,200)
def test_plannedsession_view(self):
login = self.c.login(username=self.u.username, password=self.password)
self.assertTrue(login)
url = '/rowers/sessions/{psid}/'.format(
psid = self.ps_time.id
)
response = self.c.get(url)
self.assertEqual(response.status_code,200)
def test_plannedsession_delete_view(self):
login = self.c.login(username=self.u.username, password=self.password)
self.assertTrue(login)
url = '/rowers/sessions/{psid}/delete/'.format(
psid = self.ps_time.id
)
response = self.c.get(url)
self.assertEqual(response.status_code,200)
response = self.c.post(url,follow=True)
self.assertEqual(response.status_code,200)

View File

@@ -1,4 +1,4 @@
#from __future__ import print_function
from __future__ import print_function
from statements import *
nu = datetime.datetime.now()
@@ -262,10 +262,11 @@ class URLTests(TestCase):
self.assertTrue(login)
response = self.c.get(url,follow=True)
if response.status_code != expected:
print url
print response.status_code
print(url )
print(response.status_code)
self.assertEqual(response.status_code,
expected)
expected)
html = BeautifulSoup(response.content,'html.parser')
urls = [a['href'] for a in html.find_all('a')]
@@ -274,10 +275,10 @@ class URLTests(TestCase):
if u not in tested and 'rowers' in u and 'http' not in u and 'authorize' not in u and 'import' not in u and 'logout' not in u:
response = self.c.get(u)
if response.status_code not in [200,302]:
print len(tested)
print url
print u
print response.status_code
print(len(tested))
print(url)
print(u)
print(response.status_code)
tested.append(u)
self.assertIn(response.status_code,
[200,302])

179
rowers/tests/testdata/erg1.csv vendored Normal file
View File

@@ -0,0 +1,179 @@
index,TimeStamp (sec), activityIdx, lapIdx, pointIdx, ElapsedTime (sec), Horizontal (meters), Stroke500mPace (sec/500m), Cadence (strokes/min), HRCur (bpm), Power (watts), Calories (kCal), Speed (m/sec), StrokeCount, StrokeDistance (meters), DriveLength (meters), DriveTime (ms), StrokeRecoveryTime (ms), WorkPerStroke (joules), AverageDriveForce (lbs), PeakDriveForce (lbs), DragFactor, ElapsedTimeAtDrive (sec), HorizontalAtDrive (meters), WorkoutType, IntervalType, WorkoutState, RowingState, WorkoutDurationType, WorkoutIntervalCount, Cadence (stokes/min), AverageBoatSpeed (m/s), AverageDriveForce (N), PeakDriveForce (N), Stroke Number,cum_dist,originalvelo
0,1549478028.0,0,0,0,1.08,3.5,0.0,0,65,0.0,0,0.0,1,2.42,1.06,0,0,0.0,0.0,0.0,0,0.0,0.0,1,1,1,1,128,0,0.0,inf,0.0,0.0,0,3.5,inf
1,1549478031.02971,0,0,1,4.11,13.9,0.0,0,65,84.7130617088,0,3.116,2,9.18,1.36,890,1680,0.0,89.5,143.4,112,1.08,3.5,1,1,1,1,128,0,0.0,3.1071339796172013,398.11569,637.8747480000002,0,13.9,3.1071339796172013
2,1549478035.0498602,0,0,2,8.13,27.6,0.0,22,65,104.9844961844,0,3.347,3,12.44,1.21,750,2720,0.0,78.3,134.9,112,4.11,13.9,1,1,1,1,128,0,22.0,3.3368926855312333,348.295626,600.064878,1,27.6,3.3368926855312333
3,1549478037.05924,0,0,3,10.15,34.9,144.79538230107534,16,65,112.00472639999998,1,3.42,4,9.42,1.3,740,1710,0.0,87.8,146.8,112,8.13,27.6,1,1,1,1,128,0,16.0,3.4087810199072814,390.553716,652.9986960000001,2,34.9,3.408781019907281
4,1549478040.0891302,0,0,4,13.18,46.4,142.66162918637755,23,66,126.97027138880003,1,3.5660000000000003,5,10.35,1.3,720,1840,0.0,84.0,146.5,112,10.15,34.9,1,1,1,1,128,0,23.0,3.5539128580567203,373.65047999999996,651.66423,3,46.4,3.5539128580567203
5,1549478050.1683495,0,0,5,23.25,83.0,142.16449804691325,14,72,119.74156452439998,4,3.497,8,14.71,1.18,740,3290,0.0,74.7,122.2,111,13.18,46.4,1,1,1,1,128,0,14.0,3.485778025655326,332.282034,543.572484,5,83.0,3.485778025655326
6,1549478058.2380302,0,0,6,30.69,105.7,141.5756655056598,24,78,120.25591762239996,5,3.502,9,8.89,1.21,720,1630,0.0,76.9,131.3,111,23.25,83.0,1,1,1,0,128,0,24.0,3.4908887802834605,342.068118,584.051286,8,105.7,3.4908887802834605
7,1549478060.2478898,0,0,7,32.24,110.5,152.57128024101024,24,79,120.25591762239996,5,3.502,10,2.36,2.37,800,1630,0.0,80.4,132.6,111,30.69,105.7,1,1,1,1,128,0,24.0,3.4908887802834605,357.63688800000006,589.833972,9,110.5,3.4908887802834605
8,1549478062.2578096,0,0,8,34.25,117.1,152.14426920861436,-1,81,71.15411519999999,6,2.94,11,7.96,1.3,810,1500,0.0,83.1,139.8,112,32.24,110.5,1,1,1,1,128,0,-1.0,2.931519699812383,369.647082,621.8611559999999,9,117.1,2.931519699812383
9,1549478068.3169599,0,0,9,40.29,139.7,143.5263564398363,22,88,149.43522195,7,3.765,13,10.21,1.33,730,1780,0.0,84.1,144.7,112,34.25,117.1,1,1,1,1,128,0,22.0,3.7520636349992498,374.095302,643.657434,11,139.7,3.7520636349992498
10,1549478070.32714,0,0,10,42.32,147.5,129.9154311026179,22,89,149.43522195,7,3.765,14,10.27,1.33,720,1760,0.0,83.9,149.0,111,40.29,139.7,1,1,1,1,128,0,22.0,3.7520636349992498,373.205658,662.78478,12,147.5,3.7520636349992498
11,1549478078.19063,0,0,11,50.18,177.8,130.18466555839885,23,91,163.04569505279997,9,3.876,17,10.62,1.27,680,1860,0.0,89.7,151.0,111,42.32,147.5,1,1,1,1,128,0,23.0,3.8621968175498216,399.005334,671.68122,15,177.8,3.862196817549822
12,1549478081.3969893,0,0,12,53.41,190.6,128.62719568333915,22,93,166.22099676279996,10,3.901,18,10.63,1.27,680,1870,0.0,90.5,164.0,112,50.18,177.8,1,1,1,1,128,0,22.0,3.88621172081455,402.56391,729.5080800000002,16,190.6,3.88621172081455
13,1549478086.4372494,0,0,13,58.42,209.9,128.99768668866056,22,95,165.20045627959996,11,3.893,20,10.84,1.3,690,1900,0.0,92.8,163.3,112,53.41,190.6,1,1,1,1,128,0,22.0,3.8786750446047633,412.794816,726.3943260000002,18,209.9,3.8786750446047633
14,1549478089.4967494,0,0,14,61.47,222.1,127.99922912629943,22,96,165.71020276439995,12,3.897,21,10.69,1.33,700,1830,0.0,95.0,160.5,112,58.42,209.9,1,1,1,1,128,0,22.0,3.8825904643578193,422.5809,713.93931,19,222.1,3.8825904643578193
15,1549478097.2996895,0,0,15,69.29,253.1,126.8341993571162,22,97,177.4584722484,14,3.987,24,10.97,1.3,680,1910,0.0,93.6,154.6,111,61.47,222.1,1,1,1,1,128,0,22.0,3.9717213440305033,416.353392,687.694812,22,253.1,3.971721344030503
16,1549478100.5663495,0,0,16,72.55,266.1,126.35305991239993,22,97,173.61426295360002,14,3.958,25,11.04,1.3,680,1930,0.0,96.1,159.4,111,69.29,253.1,1,1,1,1,128,0,22.0,3.9435286694534266,427.473942,709.0462679999999,23,266.1,3.9435286694534266
17,1549478108.4261491,0,0,17,80.37,296.8,126.81815727738824,22,96,173.21978485,16,3.955,28,10.75,1.21,640,1910,0.0,87.9,150.1,111,72.55,266.1,1,1,1,1,128,0,22.0,3.940420836945386,390.99853800000005,667.677822,26,296.8,3.940420836945386
18,1549478116.5290895,0,0,18,88.52,328.9,126.9336962132363,22,96,174.0093395068,18,3.961,31,11.18,1.3,690,1970,0.0,89.4,154.1,111,80.37,296.8,1,1,1,1,128,0,22.0,3.9457070707070714,397.670868,685.470702,29,328.9,3.945707070707071
19,1549478119.7053196,0,0,19,91.7,341.5,127.62902398322542,21,96,170.2152859904,19,3.932,32,10.83,1.33,710,1880,0.0,88.9,155.1,111,88.52,328.9,1,1,1,1,128,0,21.0,3.9166536111546297,395.4467580000001,689.918922,30,341.5,3.9166536111546297
20,1549478122.7353196,0,0,20,94.72,353.2,128.647618637294,22,96,166.4767869156,20,3.903,33,11.05,1.33,710,1940,0.0,89.6,162.2,111,91.7,341.5,1,1,1,1,128,0,22.0,3.888024883359254,398.560512,721.5012839999998,31,353.2,3.888024883359254
21,1549478127.71844,0,0,21,99.72,372.7,128.27475830306537,21,94,165.8378030176,21,3.898,35,10.9,1.33,700,1870,0.0,93.7,172.6,111,94.72,353.2,1,1,1,1,128,0,21.0,3.8834951456310685,416.798214,767.7627719999999,33,372.7,3.883495145631068
22,1549478130.7756698,0,0,22,102.78,384.9,127.2504893339402,22,93,173.61426295360002,22,3.958,36,11.11,1.3,680,1940,0.0,92.8,163.5,111,99.72,372.7,1,1,1,1,128,0,22.0,3.9435286694534266,412.794816,727.2839700000001,34,384.9,3.9435286694534266
23,1549478133.8050294,0,0,23,105.8,396.8,126.97468551489503,21,92,173.35121108479998,22,3.956,37,11.12,1.33,710,1940,0.0,92.3,167.2,111,102.78,384.9,1,1,1,1,128,0,21.0,3.9407313997477935,410.57070600000003,743.742384,35,396.8,3.9407313997477935
24,1549478141.6380398,0,0,24,113.63,427.5,127.25213036069904,21,90,169.82597544919997,24,3.929,40,10.82,1.27,660,1890,0.0,96.6,168.0,111,105.8,396.8,1,1,1,1,128,0,21.0,3.914200720212933,429.698052,747.3009599999999,38,427.5,3.9142007202129325
25,1549478144.9045901,0,0,25,116.89,440.5,127.49276942774812,22,90,172.82590474239998,25,3.952,41,11.19,1.3,690,1970,0.0,92.3,164.3,111,113.63,427.5,1,1,1,1,128,0,22.0,3.937317899047169,410.57070600000003,730.8425460000002,39,440.5,3.9373178990471693
26,1549478149.8846705,0,0,26,121.86,459.9,127.57079445675404,22,89,169.0491361076,27,3.923,43,10.4,1.33,710,1760,0.0,88.2,164.0,111,116.89,440.5,1,1,1,1,128,0,22.0,3.908387399359024,392.333004,729.5080800000002,41,459.9,3.9083873993590244
27,1549478152.9743712,0,0,27,124.95,472.0,128.28160418455084,23,88,168.91989365440003,27,3.922,44,11.18,1.33,710,1970,0.0,91.4,166.0,111,121.86,459.9,1,1,1,1,128,0,23.0,3.9068604469448354,406.567308,738.40452,42,472.0,3.906860446944835
28,1549478155.9740705,0,0,28,127.97,483.9,128.43236605250075,21,88,165.8378030176,28,3.898,45,10.83,1.33,710,1870,0.0,86.7,162.0,111,124.95,472.0,1,1,1,1,128,0,21.0,3.8837967997514373,385.660674,720.6116400000001,43,483.9,3.883796799751437
29,1549478162.0340614,0,0,29,134.03,507.5,128.53551491618208,22,88,167.63109027839997,30,3.912,47,10.9,1.36,730,1870,0.0,88.7,164.1,111,127.97,483.9,1,1,1,1,128,0,22.0,3.89741990802089,394.557114,729.952902,45,507.5,3.8974199080208902
30,1549478164.044291,0,0,30,136.04,515.4,128.04677136009428,22,88,167.63109027839997,30,3.912,48,10.69,1.33,700,1830,0.0,91.3,159.2,111,134.03,507.5,1,1,1,1,128,0,22.0,3.89741990802089,406.122486,708.1566240000001,46,515.4,3.8974199080208902
31,1549478167.073731,0,0,31,139.06,527.3,127.72533688988068,22,88,170.60519105,31,3.935,49,11.11,1.3,690,1960,0.0,94.7,165.4,111,136.04,515.4,1,1,1,1,128,0,22.0,3.9203387172651714,421.24643399999997,735.735588,47,527.3,3.9203387172651714
32,1549478175.0567513,0,0,32,147.06,558.6,127.75629911806377,22,88,170.0854497748,33,3.931,52,11.25,1.33,700,1980,0.0,95.4,169.1,111,139.06,527.3,1,1,1,1,128,0,22.0,3.916346831675413,424.36018800000005,752.194002,50,558.6,3.9163468316754133
33,1549478178.1434114,0,0,33,150.15,570.8,127.82804356706097,21,89,168.27466939639996,33,3.917,53,11.04,1.3,690,1930,0.0,91.2,156.6,111,147.06,558.6,1,1,1,1,128,0,21.0,3.901982206961137,405.677664,696.5912519999998,51,570.8,3.9019822069611365
34,1549478181.173391,0,0,34,153.16,582.6,127.66566932832446,21,89,171.1259900532,34,3.939,54,11.18,1.3,690,1990,0.0,91.6,158.4,111,150.15,570.8,1,1,1,1,128,0,21.0,3.9246467817896384,407.456952,704.5980480000002,52,582.6,3.924646781789639
35,1549478189.095042,0,0,35,161.09,613.6,127.47561835164528,22,88,170.73529159679998,36,3.936,57,10.9,1.3,690,1900,0.0,95.5,159.2,111,153.16,582.6,1,1,1,1,128,0,22.0,3.920646122480985,424.80501,708.1566240000001,55,613.6,3.920646122480985
36,1549478192.2727618,0,0,36,164.25,626.2,127.2438542970471,22,88,170.73529159679998,37,3.936,58,11.18,1.33,700,1940,0.0,92.9,164.0,111,161.09,613.6,1,1,1,1,128,0,22.0,3.92156862745098,413.239638,729.5080800000002,56,626.2,3.9215686274509802
37,1549478195.273542,0,0,37,167.28,638.0,127.54410655985707,21,88,173.0884250592,37,3.954,59,11.47,1.3,690,2060,0.0,94.2,174.6,111,164.25,626.2,1,1,1,1,128,0,21.0,3.939489442168295,419.022324,776.659212,57,638.0,3.939489442168295
38,1549478198.302442,0,0,38,170.31,649.9,127.61708918399174,20,89,167.24573160119996,38,3.909,60,11.19,1.33,700,1970,0.0,94.2,163.5,111,167.28,638.0,1,1,1,1,128,0,20.0,3.894384297842512,419.022324,727.2839700000001,58,649.9,3.8943842978425116
39,1549478206.1358426,0,0,39,178.14,680.6,127.71524875937028,22,89,172.0399367008,40,3.946,63,11.1,1.3,690,1950,0.0,93.3,163.3,111,170.31,649.9,1,1,1,1,128,0,22.0,3.9311266609010143,415.018926,726.3943260000002,61,680.6,3.9311266609010143
40,1549478209.402153,0,0,40,181.38,693.5,127.29212396812999,21,89,170.4751566112,41,3.934,64,10.96,1.33,700,1900,0.0,91.6,166.8,111,178.14,680.6,1,1,1,1,128,0,21.0,3.919416790781532,407.456952,741.9630960000002,62,693.5,3.919416790781532
41,1549478212.431933,0,0,41,184.4,705.4,127.91234200315526,22,89,170.2152859904,42,3.932,65,11.04,1.3,690,1940,0.0,93.5,165.8,111,181.38,693.5,1,1,1,1,128,0,22.0,3.9175742380318113,415.90857,737.5148760000002,64,705.4,3.917574238031811
42,1549478220.3550632,0,0,42,192.33,736.2,128.53331658578117,21,89,165.8378030176,44,3.898,68,11.18,1.36,730,1960,0.0,91.8,163.1,111,184.4,705.4,1,1,1,1,128,0,21.0,3.884098500737978,408.346596,725.504682,66,736.2,3.884098500737979
43,1549478223.5014234,0,0,43,195.5,748.7,128.84866932057497,21,89,165.20045627959996,44,3.893,69,11.25,1.3,690,2000,0.0,92.3,164.1,111,192.33,736.2,1,1,1,1,128,0,21.0,3.878374185541421,410.57070600000003,729.952902,67,748.7,3.8783741855414213
44,1549478226.5317233,0,0,44,198.52,760.5,128.64078644149905,21,89,166.73283934999995,45,3.905,70,11.11,1.33,710,1950,0.0,93.4,166.3,111,195.5,748.7,1,1,1,1,128,0,21.0,3.8904450669156545,415.463748,739.7389860000002,69,760.5,3.890445066915655
45,1549478229.561943,0,0,45,201.54,772.3,128.71371774755255,21,89,166.09319999999997,46,3.9,71,11.32,1.33,710,2000,0.0,90.9,161.7,111,198.52,760.5,1,1,1,1,128,0,21.0,3.88530577356438,404.343198,719.2771740000001,70,772.3,3.8853057735643795
46,1549478240.5447035,0,0,46,212.54,815.0,129.25479545016708,20,88,164.18410154999995,49,3.885,75,11.19,1.33,710,1990,0.0,94.9,167.9,111,201.54,772.3,1,1,1,1,128,0,20.0,3.8705681994116734,422.13607800000005,746.856138,73,815.0,3.8705681994116734
47,1549478243.6614432,0,0,47,215.64,827.2,129.06921904800325,21,87,163.17192397239995,49,3.877,76,11.12,1.3,690,1960,0.0,93.9,166.0,111,212.54,815.0,1,1,1,1,128,0,21.0,3.8621968175498216,417.687858,738.40452,74,827.2,3.862196817549822
48,1549478246.6912632,0,0,48,218.67,839.1,128.4214672693606,21,87,168.27466939639996,50,3.917,77,11.04,1.27,680,1960,0.0,90.5,155.9,111,215.64,827.2,1,1,1,1,128,0,21.0,3.9022867400296577,402.56391,693.4774980000002,75,839.1,3.9022867400296577
49,1549478249.7217634,0,0,49,221.7,850.8,128.51936234851192,21,87,167.5025716868,51,3.911,78,10.96,1.33,720,1930,0.0,88.6,162.6,111,218.67,839.1,1,1,1,1,128,0,21.0,3.896508728179551,394.112292,723.280572,76,850.8,3.896508728179551
50,1549478254.7635937,0,0,50,226.73,870.1,129.55303666846928,21,88,162.03820648959996,53,3.868,80,10.97,1.33,710,1940,0.0,93.9,166.0,111,221.7,850.8,1,1,1,1,128,0,21.0,3.853861569292431,417.687858,738.40452,78,870.1,3.8538615692924307
51,1549478257.7609036,0,0,51,229.75,882.1,129.43721865090458,21,88,162.03820648959996,53,3.868,81,10.97,1.33,700,1910,0.0,94.8,163.5,111,226.73,870.1,1,1,1,1,128,0,21.0,3.853861569292431,421.69125599999995,727.2839700000001,79,882.1,3.8538615692924307
52,1549478260.7909932,0,0,52,232.77,894.1,128.0047676233118,21,89,169.4372589728,53,3.926,82,10.82,1.27,670,1890,0.0,94.5,164.5,111,229.75,882.1,1,1,1,1,128,0,21.0,3.911138923654568,420.35679000000005,731.7321900000002,80,894.1,3.911138923654568
53,1549478263.820743,0,0,53,235.8,906.0,127.48705718953444,22,90,172.56365,54,3.95,83,11.12,1.3,690,1960,0.0,91.5,159.8,111,232.77,894.1,1,1,1,1,128,0,22.0,3.9351487486226984,407.01212999999996,710.825556,81,906.0,3.935148748622698
54,1549478274.773603,0,0,54,246.73,948.4,127.84346665368436,21,100,167.24573160119996,57,3.909,87,11.4,1.36,730,1990,0.0,90.4,170.8,111,235.8,906.0,1,1,1,1,128,0,21.0,3.8940809968847345,402.119088,759.755976,85,948.4,3.894080996884735
55,1549478277.920203,0,0,55,249.91,961.1,128.1126452142365,21,105,169.30781874999997,58,3.925,88,11.04,1.33,710,1920,0.0,91.6,162.9,111,246.73,948.4,1,1,1,1,128,0,21.0,3.9099155458242105,407.456952,724.615038,86,961.1,3.9099155458242105
56,1549478280.9502628,0,0,56,252.92,972.8,128.0090255882258,21,111,168.79071709079997,58,3.921,89,11.4,1.36,730,2000,0.0,88.1,160.3,111,249.91,961.1,1,1,1,1,128,0,21.0,3.9068604469448354,391.888182,713.0496660000001,87,972.8,3.906860446944835
57,1549478283.9797428,0,0,57,255.96,984.7,128.40194517242222,21,117,166.9891542004,59,3.907,90,11.04,1.36,730,1920,0.0,89.2,159.8,111,252.92,972.8,1,1,1,1,128,0,21.0,3.891959212267456,396.781224,710.825556,89,984.7,3.8919592122674556
58,1549478291.9031825,0,0,58,263.87,1015.3,128.81094999524396,21,126,165.71020276439995,61,3.897,93,10.98,1.33,710,1920,0.0,89.2,163.7,111,255.96,984.7,1,1,1,1,128,0,21.0,3.8825904643578193,396.781224,728.1736139999998,91,1015.3,3.8825904643578193
59,1549478295.0497425,0,0,59,267.04,1027.7,129.2805879382571,21,129,164.3109172768,62,3.886,94,11.26,1.36,730,1990,0.0,94.1,168.8,111,263.87,1015.3,1,1,1,1,128,0,21.0,3.872066909316193,418.577502,750.859536,92,1027.7,3.8720669093161932
60,1549478298.080043,0,0,60,270.07,1039.7,128.98397192506152,21,131,163.4245772292,62,3.879,95,11.04,1.3,680,1940,0.0,95.5,164.1,111,267.04,1027.7,1,1,1,1,128,0,21.0,3.8645849435770603,424.80501,729.952902,93,1039.7,3.86458494357706
61,1549478301.109483,0,0,61,273.08,1051.5,127.76354373303583,21,132,170.2152859904,63,3.932,96,11.33,1.33,700,1990,0.0,93.7,171.0,111,270.07,1039.7,1,1,1,1,128,0,21.0,3.916960438699569,416.798214,760.64562,94,1051.5,3.916960438699569
62,1549478309.0338135,0,0,62,281.01,1082.7,127.09550224070826,21,134,174.2730565716,65,3.963,99,11.4,1.33,700,2010,0.0,94.7,166.0,111,273.08,1051.5,1,1,1,1,128,0,21.0,3.9475761882204328,421.24643399999997,738.40452,97,1082.7,3.9475761882204328
63,1549478312.178883,0,0,63,284.17,1095.3,126.94567593255387,21,135,169.9556796,66,3.93,100,10.91,1.3,690,1890,0.0,92.6,166.2,111,281.01,1082.7,1,1,1,1,128,0,21.0,3.9154267815191854,411.905172,739.2941639999998,98,1095.3,3.9154267815191854
64,1549478315.208683,0,0,64,287.19,1107.1,127.91988231704413,22,136,172.82590474239998,67,3.952,101,11.19,1.33,710,1950,0.0,88.9,156.2,111,284.17,1095.3,1,1,1,1,128,0,22.0,3.937317899047169,395.4467580000001,694.811964,99,1107.1,3.9373178990471693
65,1549478328.1104937,0,1,65,300.07,1157.1,128.938306927715,20,139,162.6673989276,70,3.873,105,11.34,1.33,710,2030,0.0,95.3,163.7,111,287.19,1107.1,1,1,1,1,128,0,20.0,3.8586201574317016,423.915366,728.1736139999998,104,1157.1,3.858620157431702
66,1549478329.3086236,0,1,66,301.3,1162.1,129.45624157908273,20,139,162.6673989276,70,3.873,106,11.26,1.33,710,1980,0.0,89.3,161.1,111,300.07,1157.1,1,1,1,1,128,1,20.0,3.8586201574317016,397.226046,716.608242,104,1162.1,3.858620157431702
67,1549478332.3377733,0,1,67,304.33,1173.9,128.924776021283,21,139,166.9891542004,71,3.907,107,11.05,1.33,710,1940,0.0,92.9,170.3,112,301.3,1162.1,1,1,1,1,128,1,21.0,3.892565200467108,413.239638,757.531866,105,1173.9,3.892565200467108
68,1549478335.3680336,0,1,68,307.34,1185.6,128.72458929442664,21,139,164.4377982884,71,3.887,108,11.56,1.36,730,2050,0.0,88.6,159.2,112,304.33,1173.9,1,1,1,1,128,1,21.0,3.8726667183022223,394.112292,708.1566240000001,106,1185.6,3.8726667183022223
69,1549478338.3980238,0,1,69,310.36,1197.4,129.27333610378793,20,139,165.20045627959996,72,3.893,109,10.98,1.3,700,1950,0.0,89.3,157.3,112,307.34,1185.6,1,1,1,1,128,1,20.0,3.878374185541421,397.226046,699.7050059999999,107,1197.4,3.8783741855414213
70,1549478341.4274845,0,1,70,313.39,1209.1,129.39441426913172,21,138,162.03820648959996,73,3.868,110,11.28,1.33,720,2020,0.0,92.0,161.8,111,310.36,1197.4,1,1,1,1,128,1,21.0,3.853861569292431,409.23624,719.7219960000001,108,1209.1,3.8538615692924307
71,1549478349.4113536,0,1,71,321.4,1239.9,129.52459070845993,20,137,163.67749115479995,75,3.881,113,11.12,1.33,710,1960,0.0,91.9,163.2,111,313.39,1209.1,1,1,1,1,128,1,20.0,3.8669760247486464,408.791418,725.9495039999998,111,1239.9,3.8669760247486464
72,1549478352.4972134,0,1,72,324.48,1252.0,129.1141395408295,21,137,163.55100159999998,76,3.88,114,11.12,1.3,700,1980,0.0,90.5,157.1,111,321.4,1239.9,1,1,1,1,128,1,21.0,3.8654812524159263,402.56391,698.8153619999998,112,1252.0,3.865481252415926
73,1549478355.5309136,0,1,73,327.5,1263.7,129.53418273363394,21,137,164.8188332,76,3.89,115,11.41,1.33,710,2060,0.0,95.9,165.4,111,324.48,1252.0,1,1,1,1,128,1,21.0,3.8753681599751975,426.5842980000001,735.735588,113,1263.7,3.8753681599751975
74,1549478358.5565732,0,1,74,330.53,1275.5,129.4788998969017,20,137,160.40990384999998,77,3.855,116,11.41,1.33,710,2030,0.0,92.3,165.9,111,327.5,1263.7,1,1,1,1,128,1,20.0,3.8402457757296466,410.57070600000003,737.959698,114,1275.5,3.840245775729647
75,1549478361.5578935,0,1,75,333.55,1287.3,129.33146304809972,20,137,165.8378030176,78,3.898,117,11.41,1.33,710,2040,0.0,94.5,165.8,111,330.53,1275.5,1,1,1,1,128,1,20.0,3.8831935383659526,420.35679000000005,737.5148760000002,115,1287.3,3.8831935383659526
76,1549478364.5868235,0,1,76,336.57,1299.1,128.61189572692876,20,137,165.0731832064,78,3.892,118,11.12,1.27,670,1990,0.0,97.2,171.6,111,333.55,1287.3,1,1,1,1,128,1,20.0,3.877772607414301,432.366984,763.3145519999998,116,1299.1,3.8777726074143013
77,1549478367.6170435,0,1,77,339.6,1311.0,128.4222570784462,21,137,167.63109027839997,79,3.912,119,11.4,1.33,710,2020,0.0,92.1,163.0,111,336.57,1299.1,1,1,1,1,128,1,21.0,3.897723729342064,409.681062,725.05986,117,1311.0,3.897723729342064
78,1549478375.5994134,0,1,78,347.54,1341.8,128.16206181731158,21,137,168.14582202879998,81,3.916,122,11.33,1.36,730,1980,0.0,91.3,159.5,111,339.6,1311.0,1,1,1,1,128,1,21.0,3.9013732833957553,406.122486,709.49109,120,1341.8,3.9013732833957553
79,1549478378.7174132,0,1,79,350.67,1354.2,128.24885378797885,21,137,167.63109027839997,82,3.912,123,11.33,1.36,730,1990,0.0,93.4,165.4,111,347.54,1341.8,1,1,1,1,128,1,21.0,3.89741990802089,415.463748,735.735588,121,1354.2,3.8974199080208902
80,1549478381.7173533,0,1,80,353.71,1366.0,128.30617593554092,21,137,167.37411880000002,83,3.91,124,11.54,1.3,690,2080,0.0,91.3,156.5,111,350.67,1354.2,1,1,1,1,128,1,21.0,3.89529448426301,406.122486,696.14643,122,1366.0,3.89529448426301
81,1549478384.747373,0,1,81,356.74,1377.8,128.78734707547645,20,137,166.60478033919998,83,3.904,125,11.26,1.33,710,2010,0.0,92.6,163.9,111,353.71,1366.0,1,1,1,1,128,1,20.0,3.88983973860277,411.905172,729.063258,123,1377.8,3.88983973860277
82,1549478387.7781036,0,1,82,359.75,1389.5,129.24564897568166,21,137,162.4155268708,84,3.871,126,11.4,1.33,720,2040,0.0,90.8,157.1,111,356.74,1377.8,1,1,1,1,128,1,21.0,3.8568343103980256,403.898376,698.8153619999998,124,1389.5,3.8568343103980256
83,1549478390.8072836,0,1,83,362.78,1401.1,129.91384512355305,20,137,162.7934325472,85,3.874,127,11.18,1.33,720,1990,0.0,88.7,157.7,111,359.75,1389.5,1,1,1,1,128,1,20.0,3.8592158073479466,394.557114,701.4842940000001,125,1401.1,3.859215807347947
84,1549478402.4470134,0,1,84,373.74,1443.1,130.98403526708867,21,137,158.17339230840003,88,3.837,131,11.18,1.36,740,2000,0.0,90.5,158.4,111,362.78,1401.1,1,1,1,1,128,1,21.0,3.8226299694189603,402.56391,704.5980480000002,129,1443.1,3.82262996941896
85,1549478405.2076836,0,1,85,376.89,1455.6,130.76044764968856,20,137,154.7358515612,88,3.809,132,10.61,1.33,710,1820,0.0,93.9,162.4,111,373.74,1443.1,1,1,1,1,128,1,20.0,3.7953544861090025,417.687858,722.390928,130,1455.6,3.7953544861090025
86,1549478408.1473238,0,1,86,379.9,1467.4,129.53411594300803,22,137,166.4767869156,89,3.903,133,11.33,1.33,710,1990,0.0,87.3,158.4,111,376.89,1455.6,1,1,1,1,128,1,22.0,3.888327241620655,388.329606,704.5980480000002,131,1467.4,3.888327241620655
87,1549478416.1263535,0,1,87,387.83,1498.1,128.45401236318355,21,137,165.45519865,91,3.895,136,11.06,1.3,690,1960,0.0,92.9,167.4,112,379.9,1467.4,1,1,1,1,128,1,21.0,3.8807823657249303,413.239638,744.632028,134,1498.1,3.88078236572493
88,1549478419.2773035,0,1,88,390.99,1510.4,128.85389242011723,21,137,165.71020276439995,92,3.897,137,11.27,1.33,720,1990,0.0,86.4,152.1,111,387.83,1498.1,1,1,1,1,128,1,21.0,3.8825904643578193,384.326208,676.574262,135,1510.4,3.8825904643578193
89,1549478422.2772331,0,1,89,394.01,1522.1,129.3608503943793,21,137,163.80404591040002,92,3.882,138,11.05,1.36,740,1940,0.0,85.9,151.0,111,390.99,1510.4,1,1,1,1,128,1,21.0,3.8675742574257423,382.102098,671.68122,136,1522.1,3.8675742574257423
90,1549478425.277033,0,1,90,397.03,1533.7,130.36150332886942,21,137,159.78655,93,3.85,139,11.04,1.33,720,1960,0.0,85.4,149.1,111,394.01,1522.1,1,1,1,1,128,1,21.0,3.835532371893218,379.877988,663.229602,137,1533.7,3.835532371893218
91,1549478435.9856026,0,1,91,407.94,1575.4,130.85358493759082,21,136,157.06297474559997,96,3.828,143,10.97,1.3,700,1960,0.0,90.1,163.2,111,397.03,1533.7,1,1,1,1,128,1,21.0,3.814464449191333,400.784622,725.9495039999998,141,1575.4,3.814464449191333
92,1549478439.3169227,0,1,92,411.14,1587.9,130.75165340146492,21,135,159.4133139844,96,3.847,144,10.9,1.27,680,1960,0.0,94.0,163.8,111,407.94,1575.4,1,1,1,1,128,1,21.0,3.832886163280951,418.13268,728.6184360000002,142,1587.9,3.8328861632809508
93,1549478442.1965628,0,1,93,414.17,1599.7,129.66537016174024,21,134,160.6596986204,97,3.857,145,11.12,1.33,720,1970,0.0,89.1,160.3,111,411.14,1587.9,1,1,1,1,128,1,21.0,3.842311534619227,396.336402,713.0496660000001,143,1599.7,3.842311534619227
94,1549478450.2353725,0,1,94,422.11,1630.6,128.82642018422064,21,133,167.63109027839997,99,3.912,148,11.11,1.33,700,1950,0.0,94.4,162.8,111,414.17,1599.7,1,1,1,1,128,1,21.0,3.89741990802089,419.91196800000006,724.1702160000001,146,1630.6,3.8974199080208902
95,1549478453.2967925,0,1,95,425.25,1643.0,127.98145017638159,21,133,166.9891542004,100,3.907,149,11.12,1.33,710,1940,0.0,89.2,154.6,111,422.11,1630.6,1,1,1,1,128,1,21.0,3.8922621827806316,396.781224,687.694812,147,1643.0,3.892262182780632
96,1549478456.295623,0,1,96,428.28,1654.7,128.39126964086668,21,133,169.30781874999997,100,3.925,150,11.19,1.3,700,2000,0.0,91.3,155.8,111,425.25,1643.0,1,1,1,1,128,1,21.0,3.910221318526629,406.122486,693.0326759999999,148,1654.7,3.9102213185266286
97,1549478459.3257532,0,1,97,431.3,1666.4,128.9539989507364,21,134,163.4245772292,101,3.879,151,11.04,1.33,720,1950,0.0,89.9,158.4,111,428.28,1654.7,1,1,1,1,128,1,21.0,3.864883667001623,399.894978,704.5980480000002,149,1666.4,3.864883667001623
98,1549478470.2446125,0,1,98,442.2,1708.5,129.92934873986172,21,135,162.16391494520002,104,3.869,155,11.04,1.3,700,1980,0.0,89.8,164.2,111,431.3,1666.4,1,1,1,1,128,1,21.0,3.855050115651504,399.450156,730.3977239999998,153,1708.5,3.855050115651504
99,1549478473.4254029,0,1,99,445.41,1720.9,130.24844053458057,21,135,159.53766133759999,105,3.848,156,11.04,1.3,700,1980,0.0,90.8,152.8,111,442.2,1708.5,1,1,1,1,128,1,21.0,3.8340618050762982,403.898376,679.6880160000002,154,1720.9,3.834061805076298
100,1549478476.4548528,0,1,100,448.44,1732.6,130.5847625858758,21,135,159.6620733372,105,3.849,157,11.11,1.33,720,1980,0.0,88.9,156.4,111,445.41,1720.9,1,1,1,1,128,1,21.0,3.8346498964644535,395.4467580000001,695.7016080000002,155,1732.6,3.834649896464453
101,1549478479.4847324,0,1,101,451.46,1744.3,130.08231399495438,21,136,159.53766133759999,106,3.848,158,11.04,1.33,720,1960,0.0,90.8,162.6,111,448.44,1732.6,1,1,1,1,128,1,21.0,3.8340618050762982,403.898376,723.280572,156,1744.3,3.834061805076298
102,1549478490.3735626,0,1,102,462.33,1786.4,129.1405910157988,21,136,164.9459755188,109,3.891,162,11.26,1.33,710,1980,0.0,88.9,152.1,111,451.46,1744.3,1,1,1,1,128,1,21.0,3.876269478254128,395.4467580000001,676.574262,160,1786.4,3.876269478254128
103,1549478493.5836124,0,1,103,465.57,1799.1,128.73680375517546,21,136,166.9891542004,109,3.907,163,11.26,1.36,730,1980,0.0,92.8,165.7,111,462.33,1786.4,1,1,1,1,128,1,21.0,3.892565200467108,412.794816,737.0700539999998,161,1799.1,3.892565200467108
104,1549478496.6138122,0,1,104,468.59,1810.9,128.84710722718577,21,137,163.67749115479995,110,3.881,164,11.33,1.33,710,2000,0.0,89.4,161.6,111,465.57,1799.1,1,1,1,1,128,1,21.0,3.8669760247486464,397.670868,718.8323519999999,162,1810.9,3.8669760247486464
105,1549478499.643872,0,1,105,471.61,1822.7,129.12335154927644,21,137,165.96546875719997,111,3.899,165,11.26,1.33,710,2010,0.0,95.1,171.2,111,468.59,1810.9,1,1,1,1,128,1,21.0,3.884702043353274,423.025722,761.535264,163,1822.7,3.8847020433532746
106,1549478507.536582,0,1,106,479.51,1853.4,128.7049010180487,21,137,164.4377982884,113,3.887,168,10.9,1.3,690,1910,0.0,93.7,161.0,111,471.61,1822.7,1,1,1,1,128,1,21.0,3.8723667905824035,416.798214,716.16342,166,1853.4,3.872366790582404
107,1549478510.7124221,0,1,107,482.69,1865.9,128.40568046683154,22,137,168.14582202879998,114,3.916,169,11.05,1.3,690,1950,0.0,91.2,163.0,111,479.51,1853.4,1,1,1,1,128,1,22.0,3.9016777214202105,405.677664,725.05986,167,1865.9,3.9016777214202105
108,1549478513.7416728,0,1,108,485.71,1877.7,128.3241443339965,21,137,167.75967459159995,114,3.913,170,10.97,1.3,700,1940,0.0,91.1,159.1,111,482.69,1865.9,1,1,1,1,128,1,21.0,3.8986354775828462,405.232842,707.7118019999999,168,1877.7,3.898635477582846
109,1549478524.7264528,0,1,109,496.69,1920.3,128.70276395895857,21,139,165.32779475520002,117,3.894,174,11.34,1.36,730,1990,0.0,92.4,166.9,112,485.71,1877.7,1,1,1,1,128,1,21.0,3.8798789477768283,411.01552799999996,742.407918,172,1920.3,3.879878947776829
110,1549478527.843283,0,1,110,499.83,1932.7,128.4859659415856,21,139,166.4767869156,118,3.903,175,11.12,1.33,710,1940,0.0,91.8,166.8,111,496.69,1920.3,1,1,1,1,128,1,21.0,3.888327241620655,408.346596,741.9630960000002,173,1932.7,3.888327241620655
111,1549478530.8725731,0,1,111,502.85,1944.6,128.24117851037644,21,139,169.0491361076,118,3.923,176,11.33,1.33,710,2010,0.0,93.2,168.9,111,499.83,1932.7,1,1,1,1,128,1,21.0,3.908081913396905,414.574104,751.304358,174,1944.6,3.908081913396905
112,1549478533.9021337,0,1,112,505.87,1956.3,128.47137444385697,21,140,166.22099676279996,119,3.901,177,11.55,1.33,710,2070,0.0,95.4,164.3,111,502.85,1944.6,1,1,1,1,128,1,21.0,3.88651379712398,424.36018800000005,730.8425460000002,175,1956.3,3.8865137971239796
113,1549478536.9320836,0,1,113,508.89,1968.3,129.36495740585565,20,140,165.20045627959996,120,3.893,178,11.04,1.33,700,1920,0.0,96.4,179.2,111,505.87,1956.3,1,1,1,1,128,1,20.0,3.87807337314822,428.808408,797.1210239999998,176,1968.3,3.8780733731482195
114,1549478544.883634,0,1,114,516.83,1999.2,128.6193642970509,21,140,164.69175623319995,122,3.889,181,11.19,1.36,720,1950,0.0,94.8,166.5,111,508.89,1968.3,1,1,1,1,128,1,21.0,3.8741670540833724,421.69125599999995,740.6286299999999,179,1999.2,3.874167054083372
115,1549478549.8953836,0,1,115,521.86,2020.2,123.56335836196445,22,141,183.80855165119996,123,4.034,183,10.11,1.33,620,1520,0.0,112.8,192.0,111,516.83,1999.2,1,1,1,1,128,1,22.0,4.018323555412682,501.75921600000004,854.0582400000002,181,2020.2,4.018323555412682
116,1549478553.0417435,0,1,116,525.02,2034.2,117.55166167884647,26,141,225.27042443640002,124,4.317,184,10.26,1.36,630,1500,0.0,108.3,185.2,112,521.86,2020.2,1,1,1,1,128,1,26.0,4.299226139294927,481.74222599999996,823.810344,182,2034.2,4.299226139294927
117,1549478555.0823734,0,1,117,527.04,2043.2,113.63149950965975,26,142,237.70300364999989,125,4.395,185,9.98,1.33,610,1440,0.0,112.4,191.6,112,525.02,2034.2,1,1,1,1,128,1,26.0,4.3767507002801125,499.979928,852.278952,183,2043.2,4.3767507002801125
118,1549478559.046774,0,1,118,531.02,2060.8,112.72847999385866,26,142,249.07525816320006,126,4.464,187,10.25,1.39,640,1470,0.0,107.6,190.5,111,527.04,2043.2,1,1,1,1,128,1,26.0,4.444839541292558,478.628472,847.38591,185,2060.8,4.444839541292559
119,1549478562.1612241,0,1,119,534.09,2074.6,112.13453837683059,26,143,245.57659365960006,127,4.4430000000000005,188,10.25,1.36,620,1480,0.0,107.0,193.6,111,531.02,2060.8,1,1,1,1,128,1,26.0,4.423995752964077,475.95954000000006,861.175392,186,2074.6,4.423995752964077
120,1549478570.952964,0,1,120,542.92,2112.6,118.16679776041019,26,146,232.54856841160006,130,4.363,192,11.19,1.21,630,1840,0.0,64.8,111.6,111,534.09,2074.6,1,1,1,1,128,1,26.0,4.344426101312017,288.244656,496.421352,190,2112.6,4.344426101312017
121,1549478579.0535545,0,1,121,551.0,2143.6,126.41294464875021,22,148,158.9165706996,132,3.843,195,10.53,1.3,710,1850,0.0,83.1,144.6,111,542.92,2112.6,1,1,1,1,128,1,22.0,3.8287770885979016,369.647082,643.212612,193,2143.6,3.8287770885979016
122,1549478582.2910044,0,1,122,554.23,2156.1,132.60489082020513,22,149,157.67922950360003,132,3.833,196,10.25,1.27,690,1800,0.0,83.5,144.0,111,551.0,2143.6,1,1,1,1,128,1,22.0,3.819417920708884,371.42637,640.54368,194,2156.1,3.819417920708884
123,1549478587.1524944,0,1,123,559.13,2174.4,132.25739905291684,22,150,153.15692654079996,133,3.796,198,10.18,1.27,700,1810,0.0,82.7,143.1,111,554.23,2156.1,1,1,1,1,128,1,22.0,3.7827205326070503,367.867794,636.5402819999998,196,2174.4,3.7827205326070508
124,1549478590.3308244,0,1,124,562.3,2186.6,132.68687449270024,22,150,149.79272232959997,134,3.768,199,10.54,1.33,730,1870,0.0,83.2,142.0,112,559.13,2174.4,1,1,1,1,128,1,22.0,3.754599384245701,370.091904,631.64724,197,2186.6,3.7545993842457013
125,1549478598.3152745,0,1,125,570.28,2216.9,131.937282725692,21,149,154.9797220468,136,3.811,202,10.63,1.3,710,1870,0.0,82.0,140.6,112,562.3,2186.6,1,1,1,1,128,1,21.0,3.7967955045941215,364.75404,625.4197320000001,200,2216.9,3.7967955045941224
126,1549478601.4309351,0,1,126,573.39,2228.8,131.4317039647795,22,148,156.69399375000003,137,3.825,203,10.55,1.3,710,1870,0.0,84.3,147.2,111,570.28,2216.9,1,1,1,1,128,1,22.0,3.811556639731666,374.984946,654.777984,201,2228.8,3.8115566397316663
127,1549478604.4607651,0,1,127,576.4,2240.3,131.7279332341992,22,148,153.3991356576,137,3.798,204,10.48,1.27,690,1870,0.0,85.0,148.7,112,573.39,2228.8,1,1,1,1,128,1,22.0,3.7841519715431775,378.0987,661.4503139999998,202,2240.3,3.7841519715431775
128,1549478609.4109757,0,1,128,581.35,2258.8,132.949859643352,22,147,153.5203359172,139,3.799,206,10.41,1.3,720,1850,0.0,79.9,142.4,112,576.4,2240.3,1,1,1,1,128,1,22.0,3.7850113550340647,355.412778,633.4265280000002,204,2258.8,3.785011355034065
129,1549478612.501305,0,1,129,584.48,2271.5,133.48429978105816,22,146,149.19720465159998,139,3.763,207,9.69,1.42,710,1580,0.0,119.8,201.9,112,581.35,2258.8,1,1,1,1,128,1,22.0,3.7498125093745314,532.896756,898.0956180000002,205,2271.5,3.7498125093745314
130,1549478614.5403755,0,1,130,586.49,2280.9,125.25881685647484,24,146,167.5025716868,140,3.911,208,8.54,1.39,620,1080,0.0,121.0,208.9,112,584.48,2271.5,1,1,1,1,128,1,24.0,3.896508728179551,538.2346200000002,929.233158,206,2280.9,3.896508728179551
131,1549478616.5503953,0,1,131,588.5,2290.4,113.63996010996392,32,145,256.85478279999995,140,4.51,209,9.55,1.36,610,1230,0.0,112.7,202.9,111,586.49,2280.9,1,1,1,1,128,1,32.0,4.4903457566232605,501.31439400000005,902.543838,207,2290.4,4.4903457566232605
132,1549478618.5603852,0,1,132,590.52,2299.9,106.75202388752449,30,144,292.0052274804,141,4.707,210,9.68,1.39,590,1260,0.0,117.0,197.3,111,588.5,2290.4,1,1,1,1,128,1,30.0,4.68559647643145,520.44174,877.633806,208,2299.9,4.68559647643145
133,1549478620.5702953,0,1,133,592.54,2309.5,105.88213343894544,29,144,293.30992976320005,142,4.714,211,9.18,1.36,570,1140,0.0,114.4,198.5,111,590.52,2299.9,1,1,1,1,128,1,29.0,4.692192192192191,508.87636799999996,882.9716699999999,209,2309.5,4.692192192192192
134,1549478622.5802155,0,1,134,594.55,2319.0,105.77122690644683,31,143,302.55182425159995,142,4.763,212,9.47,1.3,560,1220,0.0,113.3,196.8,111,592.54,2309.5,1,1,1,1,128,1,31.0,4.741583688952111,503.983326,875.409696,210,2319.0,4.74158368895211
135,1549478624.620155,0,1,135,596.57,2328.5,106.17653217690683,30,143,297.4357127168003,143,4.7360000000000015,213,9.75,1.33,580,1320,0.0,117.8,204.9,111,594.55,2319.0,1,1,1,1,128,1,30.0,4.714757190004715,524.000316,911.4402779999999,211,2328.5,4.714757190004715
136,1549478626.6300151,0,1,136,598.59,2338.0,106.85624441651704,29,143,287.37716719040003,144,4.682,214,9.61,1.39,590,1240,0.0,116.5,204.0,111,596.57,2328.5,1,1,1,1,128,1,29.0,4.660700969425801,518.21763,907.4368800000001,212,2338.0,4.660700969425801
137,1549478628.1366448,0,2,137,600.06,2345.0,106.7224120325617,29,143,293.49663244999994,145,4.715,215,9.54,1.36,570,1220,0.0,116.8,207.0,111,598.59,2338.0,1,1,1,1,128,1,29.0,4.693954187007135,519.552096,920.78154,213,2345.0,4.693954187007135
138,1549478630.649815,0,2,138,602.62,2357.1,103.52836690228821,30,144,297.24734305000004,145,4.735,216,9.39,1.33,590,1190,0.0,110.0,193.2,111,600.06,2345.0,1,1,1,1,128,2,30.0,4.71342383107089,489.3042,859.3961039999998,214,2357.1,4.71342383107089
139,1549478632.659605,0,2,139,604.62,2365.4,114.34007960451657,30,144,298.94553579519993,146,4.744,217,10.62,1.09,550,1650,0.0,41.9,59.7,111,602.62,2357.1,1,1,1,1,128,2,30.0,4.721881197469072,186.380418,265.55873399999996,215,2365.4,4.721881197469072
140,1549478638.7194552,0,2,140,610.66,2386.4,134.6493332860642,22,148,107.92870522560001,148,3.378,219,9.37,1.24,790,1790,0.0,57.9,97.0,111,604.62,2365.4,1,1,1,1,128,2,22.0,3.366776648037169,257.551938,431.47734,217,2386.4,3.3667766480371695
141,1549478640.7293448,0,2,141,612.68,2393.1,153.81847666215876,22,150,107.92870522560001,148,3.378,220,9.09,1.24,800,1720,0.0,52.4,83.7,111,610.66,2386.4,1,1,1,1,128,2,22.0,3.366776648037169,233.086728,372.316014,218,2393.1,3.3667766480371695
142,1549478648.6836352,0,2,142,620.64,2420.3,147.16726204884336,22,155,110.82986127359999,149,3.408,223,9.7,1.27,770,1810,0.0,73.0,126.8,112,612.68,2393.1,1,1,1,1,128,2,22.0,3.3972007066177468,324.72006,564.034296,221,2420.3,3.3972007066177468
143,1549478651.828885,0,2,143,623.77,2431.7,142.40220791122874,22,156,120.15292940280003,150,3.5010000000000003,224,9.83,1.33,770,1780,0.0,77.1,134.0,112,620.64,2420.3,1,1,1,1,128,2,22.0,3.4889400600097686,342.957762,596.06148,222,2431.7,3.488940060009769
144,1549478656.8091755,0,2,144,628.74,2450.0,137.5572353899295,22,156,139.76852559039997,151,3.682,226,9.92,1.3,730,1740,0.0,79.7,143.9,112,623.77,2431.7,1,1,1,1,128,2,22.0,3.669455452810803,354.52313399999997,640.0988580000002,224,2450.0,3.669455452810803
145,1549478659.8686154,0,2,145,631.84,2461.8,134.1443742735063,22,156,144.1407744,151,3.72,227,9.99,1.27,700,1760,0.0,81.9,142.2,112,628.74,2450.0,1,1,1,1,128,2,22.0,3.7067239973311583,364.309218,632.536884,225,2461.8,3.706723997331159
146,1549478664.7594755,0,2,146,636.72,2480.3,132.93747613871182,22,154,151.9497046368,153,3.786,229,9.98,1.3,700,1720,0.0,86.9,155.5,111,631.84,2461.8,1,1,1,1,128,2,22.0,3.772446054021428,386.550318,691.69821,227,2480.3,3.7724460540214277
147,1549478667.9383154,0,2,147,639.89,2492.6,131.9199939676165,23,153,155.10175331839997,153,3.812,230,10.19,1.24,670,1790,0.0,85.9,143.7,112,636.72,2480.3,1,1,1,1,128,2,23.0,3.7979491074819602,382.102098,639.209214,228,2492.6,3.79794910748196
148,1549478670.9680257,0,2,148,642.91,2504.3,130.41610590824908,23,152,161.03487679999998,154,3.86,231,10.48,1.33,720,1820,0.0,88.8,160.5,112,639.89,2492.6,1,1,1,1,128,2,23.0,3.8461538461538463,395.001936,713.93931,229,2504.3,3.8461538461538463
149,1549478673.9710355,0,2,149,645.93,2517.9,119.7755435645679,26,151,191.14896220839995,155,4.087,233,7.53,1.33,550,830,0.0,137.9,236.6,111,642.91,2504.3,1,1,1,1,128,2,26.0,4.070666775217781,613.409538,1052.448852,231,2517.9,4.070666775217781
150,1549478676.0081758,0,2,150,647.96,2528.4,106.9995439846411,38,151,307.7262692,156,4.79,234,8.19,1.36,530,870,0.0,126.5,221.0,112,645.93,2517.9,1,1,1,1,128,2,38.0,4.768262445164981,562.69983,983.05662,232,2528.4,4.768262445164982
151,1549478682.701656,0,2,151,654.67,2562.4,97.23542441409025,33,151,360.3911714172001,158,5.049,238,9.18,1.39,550,1060,0.0,124.5,220.1,111,647.96,2528.4,1,1,1,1,128,2,33.0,5.024620641141594,553.80339,979.0532220000001,236,2562.4,5.024620641141594
152,1549478685.0677452,0,2,152,657.03,2574.4,106.4842210813161,33,151,363.18211531840007,159,5.062,239,8.97,1.33,540,1040,0.0,123.8,223.3,111,654.67,2562.4,1,1,1,1,128,2,33.0,5.037783375314862,550.6896360000001,993.287526,237,2574.4,5.037783375314861
153,1549478694.1566565,0,2,153,666.08,2613.2,123.70314550542994,22,154,135.82049886439995,162,3.647,244,9.78,1.12,700,1790,0.0,33.2,45.3,111,657.03,2574.4,1,1,1,1,128,2,22.0,3.634513338663953,147.68090400000003,201.504366,240,2613.2,3.634513338663953
154,1549478696.1668365,0,2,154,668.11,2619.7,148.02196110020347,22,155,135.82049886439995,162,3.647,245,8.74,1.15,790,1740,0.0,44.8,69.3,111,666.08,2613.2,1,1,1,1,128,2,22.0,3.634513338663953,199.280256,308.261646,241,2619.7,3.634513338663953
155,1549478702.1968873,0,2,155,674.15,2638.6,154.69447391608742,22,159,84.4686189116,164,3.113,247,8.45,1.27,860,1680,0.0,52.1,86.9,111,668.11,2619.7,1,1,1,1,128,2,22.0,3.1042403923759867,231.752262,386.550318,243,2638.6,3.104240392375986
156,1549478704.2080169,0,2,156,676.17,2645.1,163.94308167606135,22,160,84.4686189116,164,3.113,248,8.67,1.3,860,1650,0.0,54.6,88.6,111,674.15,2638.6,1,1,1,1,128,2,22.0,3.1042403923759867,242.872812,394.112292,244,2645.1,3.104240392375986
157,1549478707.2369375,0,2,157,679.2,2655.6,152.91734962110397,22,161,92.7864675584,164,3.212,249,8.89,1.3,800,1670,0.0,79.0,137.5,112,676.17,2645.1,1,1,1,1,128,2,22.0,3.2024594888874662,351.40938,611.63025,245,2655.6,3.202459488887466
158,1549478712.1593573,0,2,158,684.1,2673.5,141.5345366854324,22,162,132.16683072319998,165,3.614,251,10.13,1.33,740,1770,0.0,78.4,139.0,112,679.2,2655.6,1,1,1,1,128,2,22.0,3.6015270474681262,348.740448,618.30258,247,2673.5,3.6015270474681262
159,1549478715.3069973,0,2,159,687.27,2685.5,134.30054371830266,22,161,145.54018967040003,166,3.732,252,10.27,1.33,740,1800,0.0,79.2,141.4,112,684.1,2673.5,1,1,1,1,128,2,22.0,3.719131210949122,352.2990240000001,628.9783080000002,248,2685.5,3.719131210949122
160,1549478720.2291374,0,2,160,692.18,2704.3,131.04680497568677,22,160,152.3112025932,167,3.789,254,10.34,1.33,710,1780,0.0,90.3,159.2,111,687.27,2685.5,1,1,1,1,128,2,22.0,3.77586467301012,401.674266,708.1566240000001,250,2704.3,3.7758646730101195
161,1549478726.4069276,0,2,161,698.34,2728.8,127.73279367882418,23,157,174.1411647584,169,3.962,256,10.26,1.27,670,1740,0.0,90.5,162.4,112,692.18,2704.3,1,1,1,1,128,2,23.0,3.9472645456698503,402.56391,722.390928,252,2728.8,3.9472645456698507
162,1549478728.4174376,0,2,162,700.35,2736.6,126.75097610570974,23,156,174.1411647584,169,3.962,257,10.63,1.27,670,1840,0.0,85.9,149.4,111,698.34,2728.8,1,1,1,1,128,2,23.0,3.9472645456698503,382.102098,664.564068,253,2736.6,3.9472645456698507
163,1549478733.4283273,0,2,163,705.38,2756.0,128.61200114927874,23,154,164.56474460159998,170,3.888,259,10.34,1.3,700,1790,0.0,85.6,153.6,112,700.35,2736.6,1,1,1,1,128,2,23.0,3.8729666924864445,380.767632,683.246592,255,2756.0,3.872966692486445
164,1549478736.4580073,0,2,164,708.42,2767.8,130.13335762309868,22,153,161.66147095000002,171,3.865,260,10.33,1.33,720,1760,0.0,78.6,145.0,111,705.38,2756.0,1,1,1,1,128,2,22.0,3.850893407270487,349.630092,644.9919,256,2767.8,3.850893407270487
165,1549478741.3513772,0,2,165,713.3,2786.6,129.84997896324592,23,151,159.78655,172,3.85,262,10.26,1.3,700,1760,0.0,85.3,148.0,111,708.42,2767.8,1,1,1,1,128,2,23.0,3.836120914531226,379.433166,658.33656,258,2786.6,3.836120914531226
166,1549478747.5569274,0,2,166,719.51,2810.9,129.34455214281172,22,150,165.96546875719997,174,3.899,264,10.47,1.3,690,1800,0.0,87.5,155.8,111,713.3,2786.6,1,1,1,1,128,2,22.0,3.8850038850038855,389.21925,693.0326759999999,260,2810.9,3.8850038850038855
167,1549478749.5665874,0,2,167,721.52,2818.8,128.01940264215534,22,150,165.96546875719997,174,3.899,265,10.33,1.33,700,1740,0.0,91.2,163.4,111,719.51,2810.9,1,1,1,1,128,2,22.0,3.8850038850038855,405.677664,726.839148,261,2818.8,3.8850038850038855
168,1549478754.5812078,0,2,168,726.52,2838.5,126.86601966299965,23,149,174.53703994999998,175,3.965,267,10.48,1.33,700,1760,0.0,87.9,157.0,112,721.52,2818.8,1,1,1,1,128,2,23.0,3.9494470774091632,390.99853800000005,698.37054,263,2838.5,3.949447077409163
169,1549478757.636218,0,2,169,729.59,2850.7,127.18931392243158,23,149,174.6691315488,176,3.966,268,10.33,1.24,660,1790,0.0,84.6,141.2,111,726.52,2838.5,1,1,1,1,128,2,23.0,3.950695322376738,376.319412,628.088664,264,2850.7,3.9506953223767383
170,1549478762.5262382,0,2,170,734.46,2869.4,128.72424013848416,23,148,162.54143037439997,177,3.872,270,10.33,1.33,720,1770,0.0,84.6,153.7,111,729.59,2850.7,1,1,1,1,128,2,23.0,3.8577270272355526,376.319412,683.691414,266,2869.4,3.8577270272355526
171,1549478768.7065382,0,2,171,740.67,2893.6,129.52029477609773,23,146,163.80404591040002,179,3.882,272,10.25,1.3,700,1750,0.0,82.8,141.3,111,734.46,2869.4,1,1,1,1,128,2,23.0,3.8675742574257423,368.312616,628.533486,268,2893.6,3.8675742574257423
172,1549478770.745848,0,2,172,742.68,2901.3,129.514748780303,23,146,163.80404591040002,179,3.882,273,10.12,1.3,700,1720,0.0,81.3,148.3,111,740.67,2893.6,1,1,1,1,128,2,23.0,3.8675742574257423,361.640286,659.6710260000001,269,2901.3,3.8675742574257423
173,1549478775.7003484,0,2,173,747.66,2920.3,130.09745105184112,23,145,158.9165706996,180,3.843,275,10.04,1.3,710,1730,0.0,77.3,135.3,111,742.68,2901.3,1,1,1,1,128,2,23.0,3.8287770885979016,343.847406,601.8441660000002,271,2920.3,3.8287770885979016
174,1549478778.7869587,0,2,174,750.75,2932.1,132.64092509467883,23,144,155.8352864096,181,3.818,276,10.12,1.3,720,1760,0.0,76.2,136.1,112,747.66,2920.3,1,1,1,1,128,2,23.0,3.8040170419963477,338.954364,605.402742,272,2932.1,3.804017041996348
175,1549478786.679849,0,2,175,758.62,2961.2,134.05522096689128,21,143,140.6815452,183,3.69,279,10.19,1.24,720,1810,0.0,66.5,112.7,111,750.75,2932.1,1,1,1,1,128,2,21.0,3.6770113251948815,295.80663,501.31439400000005,275,2961.2,3.677011325194882
176,1549478789.8850694,0,2,176,761.83,2973.1,135.20467784355625,22,142,147.30215842439998,183,3.747,280,9.69,1.33,760,1710,0.0,75.0,137.1,111,758.62,2961.2,1,1,1,1,128,2,22.0,3.733293511535877,333.6165000000001,609.850962,276,2973.1,3.733293511535877
177,1549478798.9446392,0,2,177,769.94,2998.2,136.93919332965305,22,139,136.71626184999997,185,3.655,281,10.19,1.27,760,1830,381.4,62.3,110.0,111,761.83,2973.1,1,1,11,0,128,2,22.0,3.642456472645152,277.124106,489.3042,279,2998.2,3.6424564726451516
1 index TimeStamp (sec) activityIdx lapIdx pointIdx ElapsedTime (sec) Horizontal (meters) Stroke500mPace (sec/500m) Cadence (strokes/min) HRCur (bpm) Power (watts) Calories (kCal) Speed (m/sec) StrokeCount StrokeDistance (meters) DriveLength (meters) DriveTime (ms) StrokeRecoveryTime (ms) WorkPerStroke (joules) AverageDriveForce (lbs) PeakDriveForce (lbs) DragFactor ElapsedTimeAtDrive (sec) HorizontalAtDrive (meters) WorkoutType IntervalType WorkoutState RowingState WorkoutDurationType WorkoutIntervalCount Cadence (stokes/min) AverageBoatSpeed (m/s) AverageDriveForce (N) PeakDriveForce (N) Stroke Number cum_dist originalvelo
2 0 1549478028.0 0 0 0 1.08 3.5 0.0 0 65 0.0 0 0.0 1 2.42 1.06 0 0 0.0 0.0 0.0 0 0.0 0.0 1 1 1 1 128 0 0.0 inf 0.0 0.0 0 3.5 inf
3 1 1549478031.02971 0 0 1 4.11 13.9 0.0 0 65 84.7130617088 0 3.116 2 9.18 1.36 890 1680 0.0 89.5 143.4 112 1.08 3.5 1 1 1 1 128 0 0.0 3.1071339796172013 398.11569 637.8747480000002 0 13.9 3.1071339796172013
4 2 1549478035.0498602 0 0 2 8.13 27.6 0.0 22 65 104.9844961844 0 3.347 3 12.44 1.21 750 2720 0.0 78.3 134.9 112 4.11 13.9 1 1 1 1 128 0 22.0 3.3368926855312333 348.295626 600.064878 1 27.6 3.3368926855312333
5 3 1549478037.05924 0 0 3 10.15 34.9 144.79538230107534 16 65 112.00472639999998 1 3.42 4 9.42 1.3 740 1710 0.0 87.8 146.8 112 8.13 27.6 1 1 1 1 128 0 16.0 3.4087810199072814 390.553716 652.9986960000001 2 34.9 3.408781019907281
6 4 1549478040.0891302 0 0 4 13.18 46.4 142.66162918637755 23 66 126.97027138880003 1 3.5660000000000003 5 10.35 1.3 720 1840 0.0 84.0 146.5 112 10.15 34.9 1 1 1 1 128 0 23.0 3.5539128580567203 373.65047999999996 651.66423 3 46.4 3.5539128580567203
7 5 1549478050.1683495 0 0 5 23.25 83.0 142.16449804691325 14 72 119.74156452439998 4 3.497 8 14.71 1.18 740 3290 0.0 74.7 122.2 111 13.18 46.4 1 1 1 1 128 0 14.0 3.485778025655326 332.282034 543.572484 5 83.0 3.485778025655326
8 6 1549478058.2380302 0 0 6 30.69 105.7 141.5756655056598 24 78 120.25591762239996 5 3.502 9 8.89 1.21 720 1630 0.0 76.9 131.3 111 23.25 83.0 1 1 1 0 128 0 24.0 3.4908887802834605 342.068118 584.051286 8 105.7 3.4908887802834605
9 7 1549478060.2478898 0 0 7 32.24 110.5 152.57128024101024 24 79 120.25591762239996 5 3.502 10 2.36 2.37 800 1630 0.0 80.4 132.6 111 30.69 105.7 1 1 1 1 128 0 24.0 3.4908887802834605 357.63688800000006 589.833972 9 110.5 3.4908887802834605
10 8 1549478062.2578096 0 0 8 34.25 117.1 152.14426920861436 -1 81 71.15411519999999 6 2.94 11 7.96 1.3 810 1500 0.0 83.1 139.8 112 32.24 110.5 1 1 1 1 128 0 -1.0 2.931519699812383 369.647082 621.8611559999999 9 117.1 2.931519699812383
11 9 1549478068.3169599 0 0 9 40.29 139.7 143.5263564398363 22 88 149.43522195 7 3.765 13 10.21 1.33 730 1780 0.0 84.1 144.7 112 34.25 117.1 1 1 1 1 128 0 22.0 3.7520636349992498 374.095302 643.657434 11 139.7 3.7520636349992498
12 10 1549478070.32714 0 0 10 42.32 147.5 129.9154311026179 22 89 149.43522195 7 3.765 14 10.27 1.33 720 1760 0.0 83.9 149.0 111 40.29 139.7 1 1 1 1 128 0 22.0 3.7520636349992498 373.205658 662.78478 12 147.5 3.7520636349992498
13 11 1549478078.19063 0 0 11 50.18 177.8 130.18466555839885 23 91 163.04569505279997 9 3.876 17 10.62 1.27 680 1860 0.0 89.7 151.0 111 42.32 147.5 1 1 1 1 128 0 23.0 3.8621968175498216 399.005334 671.68122 15 177.8 3.862196817549822
14 12 1549478081.3969893 0 0 12 53.41 190.6 128.62719568333915 22 93 166.22099676279996 10 3.901 18 10.63 1.27 680 1870 0.0 90.5 164.0 112 50.18 177.8 1 1 1 1 128 0 22.0 3.88621172081455 402.56391 729.5080800000002 16 190.6 3.88621172081455
15 13 1549478086.4372494 0 0 13 58.42 209.9 128.99768668866056 22 95 165.20045627959996 11 3.893 20 10.84 1.3 690 1900 0.0 92.8 163.3 112 53.41 190.6 1 1 1 1 128 0 22.0 3.8786750446047633 412.794816 726.3943260000002 18 209.9 3.8786750446047633
16 14 1549478089.4967494 0 0 14 61.47 222.1 127.99922912629943 22 96 165.71020276439995 12 3.897 21 10.69 1.33 700 1830 0.0 95.0 160.5 112 58.42 209.9 1 1 1 1 128 0 22.0 3.8825904643578193 422.5809 713.93931 19 222.1 3.8825904643578193
17 15 1549478097.2996895 0 0 15 69.29 253.1 126.8341993571162 22 97 177.4584722484 14 3.987 24 10.97 1.3 680 1910 0.0 93.6 154.6 111 61.47 222.1 1 1 1 1 128 0 22.0 3.9717213440305033 416.353392 687.694812 22 253.1 3.971721344030503
18 16 1549478100.5663495 0 0 16 72.55 266.1 126.35305991239993 22 97 173.61426295360002 14 3.958 25 11.04 1.3 680 1930 0.0 96.1 159.4 111 69.29 253.1 1 1 1 1 128 0 22.0 3.9435286694534266 427.473942 709.0462679999999 23 266.1 3.9435286694534266
19 17 1549478108.4261491 0 0 17 80.37 296.8 126.81815727738824 22 96 173.21978485 16 3.955 28 10.75 1.21 640 1910 0.0 87.9 150.1 111 72.55 266.1 1 1 1 1 128 0 22.0 3.940420836945386 390.99853800000005 667.677822 26 296.8 3.940420836945386
20 18 1549478116.5290895 0 0 18 88.52 328.9 126.9336962132363 22 96 174.0093395068 18 3.961 31 11.18 1.3 690 1970 0.0 89.4 154.1 111 80.37 296.8 1 1 1 1 128 0 22.0 3.9457070707070714 397.670868 685.470702 29 328.9 3.945707070707071
21 19 1549478119.7053196 0 0 19 91.7 341.5 127.62902398322542 21 96 170.2152859904 19 3.932 32 10.83 1.33 710 1880 0.0 88.9 155.1 111 88.52 328.9 1 1 1 1 128 0 21.0 3.9166536111546297 395.4467580000001 689.918922 30 341.5 3.9166536111546297
22 20 1549478122.7353196 0 0 20 94.72 353.2 128.647618637294 22 96 166.4767869156 20 3.903 33 11.05 1.33 710 1940 0.0 89.6 162.2 111 91.7 341.5 1 1 1 1 128 0 22.0 3.888024883359254 398.560512 721.5012839999998 31 353.2 3.888024883359254
23 21 1549478127.71844 0 0 21 99.72 372.7 128.27475830306537 21 94 165.8378030176 21 3.898 35 10.9 1.33 700 1870 0.0 93.7 172.6 111 94.72 353.2 1 1 1 1 128 0 21.0 3.8834951456310685 416.798214 767.7627719999999 33 372.7 3.883495145631068
24 22 1549478130.7756698 0 0 22 102.78 384.9 127.2504893339402 22 93 173.61426295360002 22 3.958 36 11.11 1.3 680 1940 0.0 92.8 163.5 111 99.72 372.7 1 1 1 1 128 0 22.0 3.9435286694534266 412.794816 727.2839700000001 34 384.9 3.9435286694534266
25 23 1549478133.8050294 0 0 23 105.8 396.8 126.97468551489503 21 92 173.35121108479998 22 3.956 37 11.12 1.33 710 1940 0.0 92.3 167.2 111 102.78 384.9 1 1 1 1 128 0 21.0 3.9407313997477935 410.57070600000003 743.742384 35 396.8 3.9407313997477935
26 24 1549478141.6380398 0 0 24 113.63 427.5 127.25213036069904 21 90 169.82597544919997 24 3.929 40 10.82 1.27 660 1890 0.0 96.6 168.0 111 105.8 396.8 1 1 1 1 128 0 21.0 3.914200720212933 429.698052 747.3009599999999 38 427.5 3.9142007202129325
27 25 1549478144.9045901 0 0 25 116.89 440.5 127.49276942774812 22 90 172.82590474239998 25 3.952 41 11.19 1.3 690 1970 0.0 92.3 164.3 111 113.63 427.5 1 1 1 1 128 0 22.0 3.937317899047169 410.57070600000003 730.8425460000002 39 440.5 3.9373178990471693
28 26 1549478149.8846705 0 0 26 121.86 459.9 127.57079445675404 22 89 169.0491361076 27 3.923 43 10.4 1.33 710 1760 0.0 88.2 164.0 111 116.89 440.5 1 1 1 1 128 0 22.0 3.908387399359024 392.333004 729.5080800000002 41 459.9 3.9083873993590244
29 27 1549478152.9743712 0 0 27 124.95 472.0 128.28160418455084 23 88 168.91989365440003 27 3.922 44 11.18 1.33 710 1970 0.0 91.4 166.0 111 121.86 459.9 1 1 1 1 128 0 23.0 3.9068604469448354 406.567308 738.40452 42 472.0 3.906860446944835
30 28 1549478155.9740705 0 0 28 127.97 483.9 128.43236605250075 21 88 165.8378030176 28 3.898 45 10.83 1.33 710 1870 0.0 86.7 162.0 111 124.95 472.0 1 1 1 1 128 0 21.0 3.8837967997514373 385.660674 720.6116400000001 43 483.9 3.883796799751437
31 29 1549478162.0340614 0 0 29 134.03 507.5 128.53551491618208 22 88 167.63109027839997 30 3.912 47 10.9 1.36 730 1870 0.0 88.7 164.1 111 127.97 483.9 1 1 1 1 128 0 22.0 3.89741990802089 394.557114 729.952902 45 507.5 3.8974199080208902
32 30 1549478164.044291 0 0 30 136.04 515.4 128.04677136009428 22 88 167.63109027839997 30 3.912 48 10.69 1.33 700 1830 0.0 91.3 159.2 111 134.03 507.5 1 1 1 1 128 0 22.0 3.89741990802089 406.122486 708.1566240000001 46 515.4 3.8974199080208902
33 31 1549478167.073731 0 0 31 139.06 527.3 127.72533688988068 22 88 170.60519105 31 3.935 49 11.11 1.3 690 1960 0.0 94.7 165.4 111 136.04 515.4 1 1 1 1 128 0 22.0 3.9203387172651714 421.24643399999997 735.735588 47 527.3 3.9203387172651714
34 32 1549478175.0567513 0 0 32 147.06 558.6 127.75629911806377 22 88 170.0854497748 33 3.931 52 11.25 1.33 700 1980 0.0 95.4 169.1 111 139.06 527.3 1 1 1 1 128 0 22.0 3.916346831675413 424.36018800000005 752.194002 50 558.6 3.9163468316754133
35 33 1549478178.1434114 0 0 33 150.15 570.8 127.82804356706097 21 89 168.27466939639996 33 3.917 53 11.04 1.3 690 1930 0.0 91.2 156.6 111 147.06 558.6 1 1 1 1 128 0 21.0 3.901982206961137 405.677664 696.5912519999998 51 570.8 3.9019822069611365
36 34 1549478181.173391 0 0 34 153.16 582.6 127.66566932832446 21 89 171.1259900532 34 3.939 54 11.18 1.3 690 1990 0.0 91.6 158.4 111 150.15 570.8 1 1 1 1 128 0 21.0 3.9246467817896384 407.456952 704.5980480000002 52 582.6 3.924646781789639
37 35 1549478189.095042 0 0 35 161.09 613.6 127.47561835164528 22 88 170.73529159679998 36 3.936 57 10.9 1.3 690 1900 0.0 95.5 159.2 111 153.16 582.6 1 1 1 1 128 0 22.0 3.920646122480985 424.80501 708.1566240000001 55 613.6 3.920646122480985
38 36 1549478192.2727618 0 0 36 164.25 626.2 127.2438542970471 22 88 170.73529159679998 37 3.936 58 11.18 1.33 700 1940 0.0 92.9 164.0 111 161.09 613.6 1 1 1 1 128 0 22.0 3.92156862745098 413.239638 729.5080800000002 56 626.2 3.9215686274509802
39 37 1549478195.273542 0 0 37 167.28 638.0 127.54410655985707 21 88 173.0884250592 37 3.954 59 11.47 1.3 690 2060 0.0 94.2 174.6 111 164.25 626.2 1 1 1 1 128 0 21.0 3.939489442168295 419.022324 776.659212 57 638.0 3.939489442168295
40 38 1549478198.302442 0 0 38 170.31 649.9 127.61708918399174 20 89 167.24573160119996 38 3.909 60 11.19 1.33 700 1970 0.0 94.2 163.5 111 167.28 638.0 1 1 1 1 128 0 20.0 3.894384297842512 419.022324 727.2839700000001 58 649.9 3.8943842978425116
41 39 1549478206.1358426 0 0 39 178.14 680.6 127.71524875937028 22 89 172.0399367008 40 3.946 63 11.1 1.3 690 1950 0.0 93.3 163.3 111 170.31 649.9 1 1 1 1 128 0 22.0 3.9311266609010143 415.018926 726.3943260000002 61 680.6 3.9311266609010143
42 40 1549478209.402153 0 0 40 181.38 693.5 127.29212396812999 21 89 170.4751566112 41 3.934 64 10.96 1.33 700 1900 0.0 91.6 166.8 111 178.14 680.6 1 1 1 1 128 0 21.0 3.919416790781532 407.456952 741.9630960000002 62 693.5 3.919416790781532
43 41 1549478212.431933 0 0 41 184.4 705.4 127.91234200315526 22 89 170.2152859904 42 3.932 65 11.04 1.3 690 1940 0.0 93.5 165.8 111 181.38 693.5 1 1 1 1 128 0 22.0 3.9175742380318113 415.90857 737.5148760000002 64 705.4 3.917574238031811
44 42 1549478220.3550632 0 0 42 192.33 736.2 128.53331658578117 21 89 165.8378030176 44 3.898 68 11.18 1.36 730 1960 0.0 91.8 163.1 111 184.4 705.4 1 1 1 1 128 0 21.0 3.884098500737978 408.346596 725.504682 66 736.2 3.884098500737979
45 43 1549478223.5014234 0 0 43 195.5 748.7 128.84866932057497 21 89 165.20045627959996 44 3.893 69 11.25 1.3 690 2000 0.0 92.3 164.1 111 192.33 736.2 1 1 1 1 128 0 21.0 3.878374185541421 410.57070600000003 729.952902 67 748.7 3.8783741855414213
46 44 1549478226.5317233 0 0 44 198.52 760.5 128.64078644149905 21 89 166.73283934999995 45 3.905 70 11.11 1.33 710 1950 0.0 93.4 166.3 111 195.5 748.7 1 1 1 1 128 0 21.0 3.8904450669156545 415.463748 739.7389860000002 69 760.5 3.890445066915655
47 45 1549478229.561943 0 0 45 201.54 772.3 128.71371774755255 21 89 166.09319999999997 46 3.9 71 11.32 1.33 710 2000 0.0 90.9 161.7 111 198.52 760.5 1 1 1 1 128 0 21.0 3.88530577356438 404.343198 719.2771740000001 70 772.3 3.8853057735643795
48 46 1549478240.5447035 0 0 46 212.54 815.0 129.25479545016708 20 88 164.18410154999995 49 3.885 75 11.19 1.33 710 1990 0.0 94.9 167.9 111 201.54 772.3 1 1 1 1 128 0 20.0 3.8705681994116734 422.13607800000005 746.856138 73 815.0 3.8705681994116734
49 47 1549478243.6614432 0 0 47 215.64 827.2 129.06921904800325 21 87 163.17192397239995 49 3.877 76 11.12 1.3 690 1960 0.0 93.9 166.0 111 212.54 815.0 1 1 1 1 128 0 21.0 3.8621968175498216 417.687858 738.40452 74 827.2 3.862196817549822
50 48 1549478246.6912632 0 0 48 218.67 839.1 128.4214672693606 21 87 168.27466939639996 50 3.917 77 11.04 1.27 680 1960 0.0 90.5 155.9 111 215.64 827.2 1 1 1 1 128 0 21.0 3.9022867400296577 402.56391 693.4774980000002 75 839.1 3.9022867400296577
51 49 1549478249.7217634 0 0 49 221.7 850.8 128.51936234851192 21 87 167.5025716868 51 3.911 78 10.96 1.33 720 1930 0.0 88.6 162.6 111 218.67 839.1 1 1 1 1 128 0 21.0 3.896508728179551 394.112292 723.280572 76 850.8 3.896508728179551
52 50 1549478254.7635937 0 0 50 226.73 870.1 129.55303666846928 21 88 162.03820648959996 53 3.868 80 10.97 1.33 710 1940 0.0 93.9 166.0 111 221.7 850.8 1 1 1 1 128 0 21.0 3.853861569292431 417.687858 738.40452 78 870.1 3.8538615692924307
53 51 1549478257.7609036 0 0 51 229.75 882.1 129.43721865090458 21 88 162.03820648959996 53 3.868 81 10.97 1.33 700 1910 0.0 94.8 163.5 111 226.73 870.1 1 1 1 1 128 0 21.0 3.853861569292431 421.69125599999995 727.2839700000001 79 882.1 3.8538615692924307
54 52 1549478260.7909932 0 0 52 232.77 894.1 128.0047676233118 21 89 169.4372589728 53 3.926 82 10.82 1.27 670 1890 0.0 94.5 164.5 111 229.75 882.1 1 1 1 1 128 0 21.0 3.911138923654568 420.35679000000005 731.7321900000002 80 894.1 3.911138923654568
55 53 1549478263.820743 0 0 53 235.8 906.0 127.48705718953444 22 90 172.56365 54 3.95 83 11.12 1.3 690 1960 0.0 91.5 159.8 111 232.77 894.1 1 1 1 1 128 0 22.0 3.9351487486226984 407.01212999999996 710.825556 81 906.0 3.935148748622698
56 54 1549478274.773603 0 0 54 246.73 948.4 127.84346665368436 21 100 167.24573160119996 57 3.909 87 11.4 1.36 730 1990 0.0 90.4 170.8 111 235.8 906.0 1 1 1 1 128 0 21.0 3.8940809968847345 402.119088 759.755976 85 948.4 3.894080996884735
57 55 1549478277.920203 0 0 55 249.91 961.1 128.1126452142365 21 105 169.30781874999997 58 3.925 88 11.04 1.33 710 1920 0.0 91.6 162.9 111 246.73 948.4 1 1 1 1 128 0 21.0 3.9099155458242105 407.456952 724.615038 86 961.1 3.9099155458242105
58 56 1549478280.9502628 0 0 56 252.92 972.8 128.0090255882258 21 111 168.79071709079997 58 3.921 89 11.4 1.36 730 2000 0.0 88.1 160.3 111 249.91 961.1 1 1 1 1 128 0 21.0 3.9068604469448354 391.888182 713.0496660000001 87 972.8 3.906860446944835
59 57 1549478283.9797428 0 0 57 255.96 984.7 128.40194517242222 21 117 166.9891542004 59 3.907 90 11.04 1.36 730 1920 0.0 89.2 159.8 111 252.92 972.8 1 1 1 1 128 0 21.0 3.891959212267456 396.781224 710.825556 89 984.7 3.8919592122674556
60 58 1549478291.9031825 0 0 58 263.87 1015.3 128.81094999524396 21 126 165.71020276439995 61 3.897 93 10.98 1.33 710 1920 0.0 89.2 163.7 111 255.96 984.7 1 1 1 1 128 0 21.0 3.8825904643578193 396.781224 728.1736139999998 91 1015.3 3.8825904643578193
61 59 1549478295.0497425 0 0 59 267.04 1027.7 129.2805879382571 21 129 164.3109172768 62 3.886 94 11.26 1.36 730 1990 0.0 94.1 168.8 111 263.87 1015.3 1 1 1 1 128 0 21.0 3.872066909316193 418.577502 750.859536 92 1027.7 3.8720669093161932
62 60 1549478298.080043 0 0 60 270.07 1039.7 128.98397192506152 21 131 163.4245772292 62 3.879 95 11.04 1.3 680 1940 0.0 95.5 164.1 111 267.04 1027.7 1 1 1 1 128 0 21.0 3.8645849435770603 424.80501 729.952902 93 1039.7 3.86458494357706
63 61 1549478301.109483 0 0 61 273.08 1051.5 127.76354373303583 21 132 170.2152859904 63 3.932 96 11.33 1.33 700 1990 0.0 93.7 171.0 111 270.07 1039.7 1 1 1 1 128 0 21.0 3.916960438699569 416.798214 760.64562 94 1051.5 3.916960438699569
64 62 1549478309.0338135 0 0 62 281.01 1082.7 127.09550224070826 21 134 174.2730565716 65 3.963 99 11.4 1.33 700 2010 0.0 94.7 166.0 111 273.08 1051.5 1 1 1 1 128 0 21.0 3.9475761882204328 421.24643399999997 738.40452 97 1082.7 3.9475761882204328
65 63 1549478312.178883 0 0 63 284.17 1095.3 126.94567593255387 21 135 169.9556796 66 3.93 100 10.91 1.3 690 1890 0.0 92.6 166.2 111 281.01 1082.7 1 1 1 1 128 0 21.0 3.9154267815191854 411.905172 739.2941639999998 98 1095.3 3.9154267815191854
66 64 1549478315.208683 0 0 64 287.19 1107.1 127.91988231704413 22 136 172.82590474239998 67 3.952 101 11.19 1.33 710 1950 0.0 88.9 156.2 111 284.17 1095.3 1 1 1 1 128 0 22.0 3.937317899047169 395.4467580000001 694.811964 99 1107.1 3.9373178990471693
67 65 1549478328.1104937 0 1 65 300.07 1157.1 128.938306927715 20 139 162.6673989276 70 3.873 105 11.34 1.33 710 2030 0.0 95.3 163.7 111 287.19 1107.1 1 1 1 1 128 0 20.0 3.8586201574317016 423.915366 728.1736139999998 104 1157.1 3.858620157431702
68 66 1549478329.3086236 0 1 66 301.3 1162.1 129.45624157908273 20 139 162.6673989276 70 3.873 106 11.26 1.33 710 1980 0.0 89.3 161.1 111 300.07 1157.1 1 1 1 1 128 1 20.0 3.8586201574317016 397.226046 716.608242 104 1162.1 3.858620157431702
69 67 1549478332.3377733 0 1 67 304.33 1173.9 128.924776021283 21 139 166.9891542004 71 3.907 107 11.05 1.33 710 1940 0.0 92.9 170.3 112 301.3 1162.1 1 1 1 1 128 1 21.0 3.892565200467108 413.239638 757.531866 105 1173.9 3.892565200467108
70 68 1549478335.3680336 0 1 68 307.34 1185.6 128.72458929442664 21 139 164.4377982884 71 3.887 108 11.56 1.36 730 2050 0.0 88.6 159.2 112 304.33 1173.9 1 1 1 1 128 1 21.0 3.8726667183022223 394.112292 708.1566240000001 106 1185.6 3.8726667183022223
71 69 1549478338.3980238 0 1 69 310.36 1197.4 129.27333610378793 20 139 165.20045627959996 72 3.893 109 10.98 1.3 700 1950 0.0 89.3 157.3 112 307.34 1185.6 1 1 1 1 128 1 20.0 3.878374185541421 397.226046 699.7050059999999 107 1197.4 3.8783741855414213
72 70 1549478341.4274845 0 1 70 313.39 1209.1 129.39441426913172 21 138 162.03820648959996 73 3.868 110 11.28 1.33 720 2020 0.0 92.0 161.8 111 310.36 1197.4 1 1 1 1 128 1 21.0 3.853861569292431 409.23624 719.7219960000001 108 1209.1 3.8538615692924307
73 71 1549478349.4113536 0 1 71 321.4 1239.9 129.52459070845993 20 137 163.67749115479995 75 3.881 113 11.12 1.33 710 1960 0.0 91.9 163.2 111 313.39 1209.1 1 1 1 1 128 1 20.0 3.8669760247486464 408.791418 725.9495039999998 111 1239.9 3.8669760247486464
74 72 1549478352.4972134 0 1 72 324.48 1252.0 129.1141395408295 21 137 163.55100159999998 76 3.88 114 11.12 1.3 700 1980 0.0 90.5 157.1 111 321.4 1239.9 1 1 1 1 128 1 21.0 3.8654812524159263 402.56391 698.8153619999998 112 1252.0 3.865481252415926
75 73 1549478355.5309136 0 1 73 327.5 1263.7 129.53418273363394 21 137 164.8188332 76 3.89 115 11.41 1.33 710 2060 0.0 95.9 165.4 111 324.48 1252.0 1 1 1 1 128 1 21.0 3.8753681599751975 426.5842980000001 735.735588 113 1263.7 3.8753681599751975
76 74 1549478358.5565732 0 1 74 330.53 1275.5 129.4788998969017 20 137 160.40990384999998 77 3.855 116 11.41 1.33 710 2030 0.0 92.3 165.9 111 327.5 1263.7 1 1 1 1 128 1 20.0 3.8402457757296466 410.57070600000003 737.959698 114 1275.5 3.840245775729647
77 75 1549478361.5578935 0 1 75 333.55 1287.3 129.33146304809972 20 137 165.8378030176 78 3.898 117 11.41 1.33 710 2040 0.0 94.5 165.8 111 330.53 1275.5 1 1 1 1 128 1 20.0 3.8831935383659526 420.35679000000005 737.5148760000002 115 1287.3 3.8831935383659526
78 76 1549478364.5868235 0 1 76 336.57 1299.1 128.61189572692876 20 137 165.0731832064 78 3.892 118 11.12 1.27 670 1990 0.0 97.2 171.6 111 333.55 1287.3 1 1 1 1 128 1 20.0 3.877772607414301 432.366984 763.3145519999998 116 1299.1 3.8777726074143013
79 77 1549478367.6170435 0 1 77 339.6 1311.0 128.4222570784462 21 137 167.63109027839997 79 3.912 119 11.4 1.33 710 2020 0.0 92.1 163.0 111 336.57 1299.1 1 1 1 1 128 1 21.0 3.897723729342064 409.681062 725.05986 117 1311.0 3.897723729342064
80 78 1549478375.5994134 0 1 78 347.54 1341.8 128.16206181731158 21 137 168.14582202879998 81 3.916 122 11.33 1.36 730 1980 0.0 91.3 159.5 111 339.6 1311.0 1 1 1 1 128 1 21.0 3.9013732833957553 406.122486 709.49109 120 1341.8 3.9013732833957553
81 79 1549478378.7174132 0 1 79 350.67 1354.2 128.24885378797885 21 137 167.63109027839997 82 3.912 123 11.33 1.36 730 1990 0.0 93.4 165.4 111 347.54 1341.8 1 1 1 1 128 1 21.0 3.89741990802089 415.463748 735.735588 121 1354.2 3.8974199080208902
82 80 1549478381.7173533 0 1 80 353.71 1366.0 128.30617593554092 21 137 167.37411880000002 83 3.91 124 11.54 1.3 690 2080 0.0 91.3 156.5 111 350.67 1354.2 1 1 1 1 128 1 21.0 3.89529448426301 406.122486 696.14643 122 1366.0 3.89529448426301
83 81 1549478384.747373 0 1 81 356.74 1377.8 128.78734707547645 20 137 166.60478033919998 83 3.904 125 11.26 1.33 710 2010 0.0 92.6 163.9 111 353.71 1366.0 1 1 1 1 128 1 20.0 3.88983973860277 411.905172 729.063258 123 1377.8 3.88983973860277
84 82 1549478387.7781036 0 1 82 359.75 1389.5 129.24564897568166 21 137 162.4155268708 84 3.871 126 11.4 1.33 720 2040 0.0 90.8 157.1 111 356.74 1377.8 1 1 1 1 128 1 21.0 3.8568343103980256 403.898376 698.8153619999998 124 1389.5 3.8568343103980256
85 83 1549478390.8072836 0 1 83 362.78 1401.1 129.91384512355305 20 137 162.7934325472 85 3.874 127 11.18 1.33 720 1990 0.0 88.7 157.7 111 359.75 1389.5 1 1 1 1 128 1 20.0 3.8592158073479466 394.557114 701.4842940000001 125 1401.1 3.859215807347947
86 84 1549478402.4470134 0 1 84 373.74 1443.1 130.98403526708867 21 137 158.17339230840003 88 3.837 131 11.18 1.36 740 2000 0.0 90.5 158.4 111 362.78 1401.1 1 1 1 1 128 1 21.0 3.8226299694189603 402.56391 704.5980480000002 129 1443.1 3.82262996941896
87 85 1549478405.2076836 0 1 85 376.89 1455.6 130.76044764968856 20 137 154.7358515612 88 3.809 132 10.61 1.33 710 1820 0.0 93.9 162.4 111 373.74 1443.1 1 1 1 1 128 1 20.0 3.7953544861090025 417.687858 722.390928 130 1455.6 3.7953544861090025
88 86 1549478408.1473238 0 1 86 379.9 1467.4 129.53411594300803 22 137 166.4767869156 89 3.903 133 11.33 1.33 710 1990 0.0 87.3 158.4 111 376.89 1455.6 1 1 1 1 128 1 22.0 3.888327241620655 388.329606 704.5980480000002 131 1467.4 3.888327241620655
89 87 1549478416.1263535 0 1 87 387.83 1498.1 128.45401236318355 21 137 165.45519865 91 3.895 136 11.06 1.3 690 1960 0.0 92.9 167.4 112 379.9 1467.4 1 1 1 1 128 1 21.0 3.8807823657249303 413.239638 744.632028 134 1498.1 3.88078236572493
90 88 1549478419.2773035 0 1 88 390.99 1510.4 128.85389242011723 21 137 165.71020276439995 92 3.897 137 11.27 1.33 720 1990 0.0 86.4 152.1 111 387.83 1498.1 1 1 1 1 128 1 21.0 3.8825904643578193 384.326208 676.574262 135 1510.4 3.8825904643578193
91 89 1549478422.2772331 0 1 89 394.01 1522.1 129.3608503943793 21 137 163.80404591040002 92 3.882 138 11.05 1.36 740 1940 0.0 85.9 151.0 111 390.99 1510.4 1 1 1 1 128 1 21.0 3.8675742574257423 382.102098 671.68122 136 1522.1 3.8675742574257423
92 90 1549478425.277033 0 1 90 397.03 1533.7 130.36150332886942 21 137 159.78655 93 3.85 139 11.04 1.33 720 1960 0.0 85.4 149.1 111 394.01 1522.1 1 1 1 1 128 1 21.0 3.835532371893218 379.877988 663.229602 137 1533.7 3.835532371893218
93 91 1549478435.9856026 0 1 91 407.94 1575.4 130.85358493759082 21 136 157.06297474559997 96 3.828 143 10.97 1.3 700 1960 0.0 90.1 163.2 111 397.03 1533.7 1 1 1 1 128 1 21.0 3.814464449191333 400.784622 725.9495039999998 141 1575.4 3.814464449191333
94 92 1549478439.3169227 0 1 92 411.14 1587.9 130.75165340146492 21 135 159.4133139844 96 3.847 144 10.9 1.27 680 1960 0.0 94.0 163.8 111 407.94 1575.4 1 1 1 1 128 1 21.0 3.832886163280951 418.13268 728.6184360000002 142 1587.9 3.8328861632809508
95 93 1549478442.1965628 0 1 93 414.17 1599.7 129.66537016174024 21 134 160.6596986204 97 3.857 145 11.12 1.33 720 1970 0.0 89.1 160.3 111 411.14 1587.9 1 1 1 1 128 1 21.0 3.842311534619227 396.336402 713.0496660000001 143 1599.7 3.842311534619227
96 94 1549478450.2353725 0 1 94 422.11 1630.6 128.82642018422064 21 133 167.63109027839997 99 3.912 148 11.11 1.33 700 1950 0.0 94.4 162.8 111 414.17 1599.7 1 1 1 1 128 1 21.0 3.89741990802089 419.91196800000006 724.1702160000001 146 1630.6 3.8974199080208902
97 95 1549478453.2967925 0 1 95 425.25 1643.0 127.98145017638159 21 133 166.9891542004 100 3.907 149 11.12 1.33 710 1940 0.0 89.2 154.6 111 422.11 1630.6 1 1 1 1 128 1 21.0 3.8922621827806316 396.781224 687.694812 147 1643.0 3.892262182780632
98 96 1549478456.295623 0 1 96 428.28 1654.7 128.39126964086668 21 133 169.30781874999997 100 3.925 150 11.19 1.3 700 2000 0.0 91.3 155.8 111 425.25 1643.0 1 1 1 1 128 1 21.0 3.910221318526629 406.122486 693.0326759999999 148 1654.7 3.9102213185266286
99 97 1549478459.3257532 0 1 97 431.3 1666.4 128.9539989507364 21 134 163.4245772292 101 3.879 151 11.04 1.33 720 1950 0.0 89.9 158.4 111 428.28 1654.7 1 1 1 1 128 1 21.0 3.864883667001623 399.894978 704.5980480000002 149 1666.4 3.864883667001623
100 98 1549478470.2446125 0 1 98 442.2 1708.5 129.92934873986172 21 135 162.16391494520002 104 3.869 155 11.04 1.3 700 1980 0.0 89.8 164.2 111 431.3 1666.4 1 1 1 1 128 1 21.0 3.855050115651504 399.450156 730.3977239999998 153 1708.5 3.855050115651504
101 99 1549478473.4254029 0 1 99 445.41 1720.9 130.24844053458057 21 135 159.53766133759999 105 3.848 156 11.04 1.3 700 1980 0.0 90.8 152.8 111 442.2 1708.5 1 1 1 1 128 1 21.0 3.8340618050762982 403.898376 679.6880160000002 154 1720.9 3.834061805076298
102 100 1549478476.4548528 0 1 100 448.44 1732.6 130.5847625858758 21 135 159.6620733372 105 3.849 157 11.11 1.33 720 1980 0.0 88.9 156.4 111 445.41 1720.9 1 1 1 1 128 1 21.0 3.8346498964644535 395.4467580000001 695.7016080000002 155 1732.6 3.834649896464453
103 101 1549478479.4847324 0 1 101 451.46 1744.3 130.08231399495438 21 136 159.53766133759999 106 3.848 158 11.04 1.33 720 1960 0.0 90.8 162.6 111 448.44 1732.6 1 1 1 1 128 1 21.0 3.8340618050762982 403.898376 723.280572 156 1744.3 3.834061805076298
104 102 1549478490.3735626 0 1 102 462.33 1786.4 129.1405910157988 21 136 164.9459755188 109 3.891 162 11.26 1.33 710 1980 0.0 88.9 152.1 111 451.46 1744.3 1 1 1 1 128 1 21.0 3.876269478254128 395.4467580000001 676.574262 160 1786.4 3.876269478254128
105 103 1549478493.5836124 0 1 103 465.57 1799.1 128.73680375517546 21 136 166.9891542004 109 3.907 163 11.26 1.36 730 1980 0.0 92.8 165.7 111 462.33 1786.4 1 1 1 1 128 1 21.0 3.892565200467108 412.794816 737.0700539999998 161 1799.1 3.892565200467108
106 104 1549478496.6138122 0 1 104 468.59 1810.9 128.84710722718577 21 137 163.67749115479995 110 3.881 164 11.33 1.33 710 2000 0.0 89.4 161.6 111 465.57 1799.1 1 1 1 1 128 1 21.0 3.8669760247486464 397.670868 718.8323519999999 162 1810.9 3.8669760247486464
107 105 1549478499.643872 0 1 105 471.61 1822.7 129.12335154927644 21 137 165.96546875719997 111 3.899 165 11.26 1.33 710 2010 0.0 95.1 171.2 111 468.59 1810.9 1 1 1 1 128 1 21.0 3.884702043353274 423.025722 761.535264 163 1822.7 3.8847020433532746
108 106 1549478507.536582 0 1 106 479.51 1853.4 128.7049010180487 21 137 164.4377982884 113 3.887 168 10.9 1.3 690 1910 0.0 93.7 161.0 111 471.61 1822.7 1 1 1 1 128 1 21.0 3.8723667905824035 416.798214 716.16342 166 1853.4 3.872366790582404
109 107 1549478510.7124221 0 1 107 482.69 1865.9 128.40568046683154 22 137 168.14582202879998 114 3.916 169 11.05 1.3 690 1950 0.0 91.2 163.0 111 479.51 1853.4 1 1 1 1 128 1 22.0 3.9016777214202105 405.677664 725.05986 167 1865.9 3.9016777214202105
110 108 1549478513.7416728 0 1 108 485.71 1877.7 128.3241443339965 21 137 167.75967459159995 114 3.913 170 10.97 1.3 700 1940 0.0 91.1 159.1 111 482.69 1865.9 1 1 1 1 128 1 21.0 3.8986354775828462 405.232842 707.7118019999999 168 1877.7 3.898635477582846
111 109 1549478524.7264528 0 1 109 496.69 1920.3 128.70276395895857 21 139 165.32779475520002 117 3.894 174 11.34 1.36 730 1990 0.0 92.4 166.9 112 485.71 1877.7 1 1 1 1 128 1 21.0 3.8798789477768283 411.01552799999996 742.407918 172 1920.3 3.879878947776829
112 110 1549478527.843283 0 1 110 499.83 1932.7 128.4859659415856 21 139 166.4767869156 118 3.903 175 11.12 1.33 710 1940 0.0 91.8 166.8 111 496.69 1920.3 1 1 1 1 128 1 21.0 3.888327241620655 408.346596 741.9630960000002 173 1932.7 3.888327241620655
113 111 1549478530.8725731 0 1 111 502.85 1944.6 128.24117851037644 21 139 169.0491361076 118 3.923 176 11.33 1.33 710 2010 0.0 93.2 168.9 111 499.83 1932.7 1 1 1 1 128 1 21.0 3.908081913396905 414.574104 751.304358 174 1944.6 3.908081913396905
114 112 1549478533.9021337 0 1 112 505.87 1956.3 128.47137444385697 21 140 166.22099676279996 119 3.901 177 11.55 1.33 710 2070 0.0 95.4 164.3 111 502.85 1944.6 1 1 1 1 128 1 21.0 3.88651379712398 424.36018800000005 730.8425460000002 175 1956.3 3.8865137971239796
115 113 1549478536.9320836 0 1 113 508.89 1968.3 129.36495740585565 20 140 165.20045627959996 120 3.893 178 11.04 1.33 700 1920 0.0 96.4 179.2 111 505.87 1956.3 1 1 1 1 128 1 20.0 3.87807337314822 428.808408 797.1210239999998 176 1968.3 3.8780733731482195
116 114 1549478544.883634 0 1 114 516.83 1999.2 128.6193642970509 21 140 164.69175623319995 122 3.889 181 11.19 1.36 720 1950 0.0 94.8 166.5 111 508.89 1968.3 1 1 1 1 128 1 21.0 3.8741670540833724 421.69125599999995 740.6286299999999 179 1999.2 3.874167054083372
117 115 1549478549.8953836 0 1 115 521.86 2020.2 123.56335836196445 22 141 183.80855165119996 123 4.034 183 10.11 1.33 620 1520 0.0 112.8 192.0 111 516.83 1999.2 1 1 1 1 128 1 22.0 4.018323555412682 501.75921600000004 854.0582400000002 181 2020.2 4.018323555412682
118 116 1549478553.0417435 0 1 116 525.02 2034.2 117.55166167884647 26 141 225.27042443640002 124 4.317 184 10.26 1.36 630 1500 0.0 108.3 185.2 112 521.86 2020.2 1 1 1 1 128 1 26.0 4.299226139294927 481.74222599999996 823.810344 182 2034.2 4.299226139294927
119 117 1549478555.0823734 0 1 117 527.04 2043.2 113.63149950965975 26 142 237.70300364999989 125 4.395 185 9.98 1.33 610 1440 0.0 112.4 191.6 112 525.02 2034.2 1 1 1 1 128 1 26.0 4.3767507002801125 499.979928 852.278952 183 2043.2 4.3767507002801125
120 118 1549478559.046774 0 1 118 531.02 2060.8 112.72847999385866 26 142 249.07525816320006 126 4.464 187 10.25 1.39 640 1470 0.0 107.6 190.5 111 527.04 2043.2 1 1 1 1 128 1 26.0 4.444839541292558 478.628472 847.38591 185 2060.8 4.444839541292559
121 119 1549478562.1612241 0 1 119 534.09 2074.6 112.13453837683059 26 143 245.57659365960006 127 4.4430000000000005 188 10.25 1.36 620 1480 0.0 107.0 193.6 111 531.02 2060.8 1 1 1 1 128 1 26.0 4.423995752964077 475.95954000000006 861.175392 186 2074.6 4.423995752964077
122 120 1549478570.952964 0 1 120 542.92 2112.6 118.16679776041019 26 146 232.54856841160006 130 4.363 192 11.19 1.21 630 1840 0.0 64.8 111.6 111 534.09 2074.6 1 1 1 1 128 1 26.0 4.344426101312017 288.244656 496.421352 190 2112.6 4.344426101312017
123 121 1549478579.0535545 0 1 121 551.0 2143.6 126.41294464875021 22 148 158.9165706996 132 3.843 195 10.53 1.3 710 1850 0.0 83.1 144.6 111 542.92 2112.6 1 1 1 1 128 1 22.0 3.8287770885979016 369.647082 643.212612 193 2143.6 3.8287770885979016
124 122 1549478582.2910044 0 1 122 554.23 2156.1 132.60489082020513 22 149 157.67922950360003 132 3.833 196 10.25 1.27 690 1800 0.0 83.5 144.0 111 551.0 2143.6 1 1 1 1 128 1 22.0 3.819417920708884 371.42637 640.54368 194 2156.1 3.819417920708884
125 123 1549478587.1524944 0 1 123 559.13 2174.4 132.25739905291684 22 150 153.15692654079996 133 3.796 198 10.18 1.27 700 1810 0.0 82.7 143.1 111 554.23 2156.1 1 1 1 1 128 1 22.0 3.7827205326070503 367.867794 636.5402819999998 196 2174.4 3.7827205326070508
126 124 1549478590.3308244 0 1 124 562.3 2186.6 132.68687449270024 22 150 149.79272232959997 134 3.768 199 10.54 1.33 730 1870 0.0 83.2 142.0 112 559.13 2174.4 1 1 1 1 128 1 22.0 3.754599384245701 370.091904 631.64724 197 2186.6 3.7545993842457013
127 125 1549478598.3152745 0 1 125 570.28 2216.9 131.937282725692 21 149 154.9797220468 136 3.811 202 10.63 1.3 710 1870 0.0 82.0 140.6 112 562.3 2186.6 1 1 1 1 128 1 21.0 3.7967955045941215 364.75404 625.4197320000001 200 2216.9 3.7967955045941224
128 126 1549478601.4309351 0 1 126 573.39 2228.8 131.4317039647795 22 148 156.69399375000003 137 3.825 203 10.55 1.3 710 1870 0.0 84.3 147.2 111 570.28 2216.9 1 1 1 1 128 1 22.0 3.811556639731666 374.984946 654.777984 201 2228.8 3.8115566397316663
129 127 1549478604.4607651 0 1 127 576.4 2240.3 131.7279332341992 22 148 153.3991356576 137 3.798 204 10.48 1.27 690 1870 0.0 85.0 148.7 112 573.39 2228.8 1 1 1 1 128 1 22.0 3.7841519715431775 378.0987 661.4503139999998 202 2240.3 3.7841519715431775
130 128 1549478609.4109757 0 1 128 581.35 2258.8 132.949859643352 22 147 153.5203359172 139 3.799 206 10.41 1.3 720 1850 0.0 79.9 142.4 112 576.4 2240.3 1 1 1 1 128 1 22.0 3.7850113550340647 355.412778 633.4265280000002 204 2258.8 3.785011355034065
131 129 1549478612.501305 0 1 129 584.48 2271.5 133.48429978105816 22 146 149.19720465159998 139 3.763 207 9.69 1.42 710 1580 0.0 119.8 201.9 112 581.35 2258.8 1 1 1 1 128 1 22.0 3.7498125093745314 532.896756 898.0956180000002 205 2271.5 3.7498125093745314
132 130 1549478614.5403755 0 1 130 586.49 2280.9 125.25881685647484 24 146 167.5025716868 140 3.911 208 8.54 1.39 620 1080 0.0 121.0 208.9 112 584.48 2271.5 1 1 1 1 128 1 24.0 3.896508728179551 538.2346200000002 929.233158 206 2280.9 3.896508728179551
133 131 1549478616.5503953 0 1 131 588.5 2290.4 113.63996010996392 32 145 256.85478279999995 140 4.51 209 9.55 1.36 610 1230 0.0 112.7 202.9 111 586.49 2280.9 1 1 1 1 128 1 32.0 4.4903457566232605 501.31439400000005 902.543838 207 2290.4 4.4903457566232605
134 132 1549478618.5603852 0 1 132 590.52 2299.9 106.75202388752449 30 144 292.0052274804 141 4.707 210 9.68 1.39 590 1260 0.0 117.0 197.3 111 588.5 2290.4 1 1 1 1 128 1 30.0 4.68559647643145 520.44174 877.633806 208 2299.9 4.68559647643145
135 133 1549478620.5702953 0 1 133 592.54 2309.5 105.88213343894544 29 144 293.30992976320005 142 4.714 211 9.18 1.36 570 1140 0.0 114.4 198.5 111 590.52 2299.9 1 1 1 1 128 1 29.0 4.692192192192191 508.87636799999996 882.9716699999999 209 2309.5 4.692192192192192
136 134 1549478622.5802155 0 1 134 594.55 2319.0 105.77122690644683 31 143 302.55182425159995 142 4.763 212 9.47 1.3 560 1220 0.0 113.3 196.8 111 592.54 2309.5 1 1 1 1 128 1 31.0 4.741583688952111 503.983326 875.409696 210 2319.0 4.74158368895211
137 135 1549478624.620155 0 1 135 596.57 2328.5 106.17653217690683 30 143 297.4357127168003 143 4.7360000000000015 213 9.75 1.33 580 1320 0.0 117.8 204.9 111 594.55 2319.0 1 1 1 1 128 1 30.0 4.714757190004715 524.000316 911.4402779999999 211 2328.5 4.714757190004715
138 136 1549478626.6300151 0 1 136 598.59 2338.0 106.85624441651704 29 143 287.37716719040003 144 4.682 214 9.61 1.39 590 1240 0.0 116.5 204.0 111 596.57 2328.5 1 1 1 1 128 1 29.0 4.660700969425801 518.21763 907.4368800000001 212 2338.0 4.660700969425801
139 137 1549478628.1366448 0 2 137 600.06 2345.0 106.7224120325617 29 143 293.49663244999994 145 4.715 215 9.54 1.36 570 1220 0.0 116.8 207.0 111 598.59 2338.0 1 1 1 1 128 1 29.0 4.693954187007135 519.552096 920.78154 213 2345.0 4.693954187007135
140 138 1549478630.649815 0 2 138 602.62 2357.1 103.52836690228821 30 144 297.24734305000004 145 4.735 216 9.39 1.33 590 1190 0.0 110.0 193.2 111 600.06 2345.0 1 1 1 1 128 2 30.0 4.71342383107089 489.3042 859.3961039999998 214 2357.1 4.71342383107089
141 139 1549478632.659605 0 2 139 604.62 2365.4 114.34007960451657 30 144 298.94553579519993 146 4.744 217 10.62 1.09 550 1650 0.0 41.9 59.7 111 602.62 2357.1 1 1 1 1 128 2 30.0 4.721881197469072 186.380418 265.55873399999996 215 2365.4 4.721881197469072
142 140 1549478638.7194552 0 2 140 610.66 2386.4 134.6493332860642 22 148 107.92870522560001 148 3.378 219 9.37 1.24 790 1790 0.0 57.9 97.0 111 604.62 2365.4 1 1 1 1 128 2 22.0 3.366776648037169 257.551938 431.47734 217 2386.4 3.3667766480371695
143 141 1549478640.7293448 0 2 141 612.68 2393.1 153.81847666215876 22 150 107.92870522560001 148 3.378 220 9.09 1.24 800 1720 0.0 52.4 83.7 111 610.66 2386.4 1 1 1 1 128 2 22.0 3.366776648037169 233.086728 372.316014 218 2393.1 3.3667766480371695
144 142 1549478648.6836352 0 2 142 620.64 2420.3 147.16726204884336 22 155 110.82986127359999 149 3.408 223 9.7 1.27 770 1810 0.0 73.0 126.8 112 612.68 2393.1 1 1 1 1 128 2 22.0 3.3972007066177468 324.72006 564.034296 221 2420.3 3.3972007066177468
145 143 1549478651.828885 0 2 143 623.77 2431.7 142.40220791122874 22 156 120.15292940280003 150 3.5010000000000003 224 9.83 1.33 770 1780 0.0 77.1 134.0 112 620.64 2420.3 1 1 1 1 128 2 22.0 3.4889400600097686 342.957762 596.06148 222 2431.7 3.488940060009769
146 144 1549478656.8091755 0 2 144 628.74 2450.0 137.5572353899295 22 156 139.76852559039997 151 3.682 226 9.92 1.3 730 1740 0.0 79.7 143.9 112 623.77 2431.7 1 1 1 1 128 2 22.0 3.669455452810803 354.52313399999997 640.0988580000002 224 2450.0 3.669455452810803
147 145 1549478659.8686154 0 2 145 631.84 2461.8 134.1443742735063 22 156 144.1407744 151 3.72 227 9.99 1.27 700 1760 0.0 81.9 142.2 112 628.74 2450.0 1 1 1 1 128 2 22.0 3.7067239973311583 364.309218 632.536884 225 2461.8 3.706723997331159
148 146 1549478664.7594755 0 2 146 636.72 2480.3 132.93747613871182 22 154 151.9497046368 153 3.786 229 9.98 1.3 700 1720 0.0 86.9 155.5 111 631.84 2461.8 1 1 1 1 128 2 22.0 3.772446054021428 386.550318 691.69821 227 2480.3 3.7724460540214277
149 147 1549478667.9383154 0 2 147 639.89 2492.6 131.9199939676165 23 153 155.10175331839997 153 3.812 230 10.19 1.24 670 1790 0.0 85.9 143.7 112 636.72 2480.3 1 1 1 1 128 2 23.0 3.7979491074819602 382.102098 639.209214 228 2492.6 3.79794910748196
150 148 1549478670.9680257 0 2 148 642.91 2504.3 130.41610590824908 23 152 161.03487679999998 154 3.86 231 10.48 1.33 720 1820 0.0 88.8 160.5 112 639.89 2492.6 1 1 1 1 128 2 23.0 3.8461538461538463 395.001936 713.93931 229 2504.3 3.8461538461538463
151 149 1549478673.9710355 0 2 149 645.93 2517.9 119.7755435645679 26 151 191.14896220839995 155 4.087 233 7.53 1.33 550 830 0.0 137.9 236.6 111 642.91 2504.3 1 1 1 1 128 2 26.0 4.070666775217781 613.409538 1052.448852 231 2517.9 4.070666775217781
152 150 1549478676.0081758 0 2 150 647.96 2528.4 106.9995439846411 38 151 307.7262692 156 4.79 234 8.19 1.36 530 870 0.0 126.5 221.0 112 645.93 2517.9 1 1 1 1 128 2 38.0 4.768262445164981 562.69983 983.05662 232 2528.4 4.768262445164982
153 151 1549478682.701656 0 2 151 654.67 2562.4 97.23542441409025 33 151 360.3911714172001 158 5.049 238 9.18 1.39 550 1060 0.0 124.5 220.1 111 647.96 2528.4 1 1 1 1 128 2 33.0 5.024620641141594 553.80339 979.0532220000001 236 2562.4 5.024620641141594
154 152 1549478685.0677452 0 2 152 657.03 2574.4 106.4842210813161 33 151 363.18211531840007 159 5.062 239 8.97 1.33 540 1040 0.0 123.8 223.3 111 654.67 2562.4 1 1 1 1 128 2 33.0 5.037783375314862 550.6896360000001 993.287526 237 2574.4 5.037783375314861
155 153 1549478694.1566565 0 2 153 666.08 2613.2 123.70314550542994 22 154 135.82049886439995 162 3.647 244 9.78 1.12 700 1790 0.0 33.2 45.3 111 657.03 2574.4 1 1 1 1 128 2 22.0 3.634513338663953 147.68090400000003 201.504366 240 2613.2 3.634513338663953
156 154 1549478696.1668365 0 2 154 668.11 2619.7 148.02196110020347 22 155 135.82049886439995 162 3.647 245 8.74 1.15 790 1740 0.0 44.8 69.3 111 666.08 2613.2 1 1 1 1 128 2 22.0 3.634513338663953 199.280256 308.261646 241 2619.7 3.634513338663953
157 155 1549478702.1968873 0 2 155 674.15 2638.6 154.69447391608742 22 159 84.4686189116 164 3.113 247 8.45 1.27 860 1680 0.0 52.1 86.9 111 668.11 2619.7 1 1 1 1 128 2 22.0 3.1042403923759867 231.752262 386.550318 243 2638.6 3.104240392375986
158 156 1549478704.2080169 0 2 156 676.17 2645.1 163.94308167606135 22 160 84.4686189116 164 3.113 248 8.67 1.3 860 1650 0.0 54.6 88.6 111 674.15 2638.6 1 1 1 1 128 2 22.0 3.1042403923759867 242.872812 394.112292 244 2645.1 3.104240392375986
159 157 1549478707.2369375 0 2 157 679.2 2655.6 152.91734962110397 22 161 92.7864675584 164 3.212 249 8.89 1.3 800 1670 0.0 79.0 137.5 112 676.17 2645.1 1 1 1 1 128 2 22.0 3.2024594888874662 351.40938 611.63025 245 2655.6 3.202459488887466
160 158 1549478712.1593573 0 2 158 684.1 2673.5 141.5345366854324 22 162 132.16683072319998 165 3.614 251 10.13 1.33 740 1770 0.0 78.4 139.0 112 679.2 2655.6 1 1 1 1 128 2 22.0 3.6015270474681262 348.740448 618.30258 247 2673.5 3.6015270474681262
161 159 1549478715.3069973 0 2 159 687.27 2685.5 134.30054371830266 22 161 145.54018967040003 166 3.732 252 10.27 1.33 740 1800 0.0 79.2 141.4 112 684.1 2673.5 1 1 1 1 128 2 22.0 3.719131210949122 352.2990240000001 628.9783080000002 248 2685.5 3.719131210949122
162 160 1549478720.2291374 0 2 160 692.18 2704.3 131.04680497568677 22 160 152.3112025932 167 3.789 254 10.34 1.33 710 1780 0.0 90.3 159.2 111 687.27 2685.5 1 1 1 1 128 2 22.0 3.77586467301012 401.674266 708.1566240000001 250 2704.3 3.7758646730101195
163 161 1549478726.4069276 0 2 161 698.34 2728.8 127.73279367882418 23 157 174.1411647584 169 3.962 256 10.26 1.27 670 1740 0.0 90.5 162.4 112 692.18 2704.3 1 1 1 1 128 2 23.0 3.9472645456698503 402.56391 722.390928 252 2728.8 3.9472645456698507
164 162 1549478728.4174376 0 2 162 700.35 2736.6 126.75097610570974 23 156 174.1411647584 169 3.962 257 10.63 1.27 670 1840 0.0 85.9 149.4 111 698.34 2728.8 1 1 1 1 128 2 23.0 3.9472645456698503 382.102098 664.564068 253 2736.6 3.9472645456698507
165 163 1549478733.4283273 0 2 163 705.38 2756.0 128.61200114927874 23 154 164.56474460159998 170 3.888 259 10.34 1.3 700 1790 0.0 85.6 153.6 112 700.35 2736.6 1 1 1 1 128 2 23.0 3.8729666924864445 380.767632 683.246592 255 2756.0 3.872966692486445
166 164 1549478736.4580073 0 2 164 708.42 2767.8 130.13335762309868 22 153 161.66147095000002 171 3.865 260 10.33 1.33 720 1760 0.0 78.6 145.0 111 705.38 2756.0 1 1 1 1 128 2 22.0 3.850893407270487 349.630092 644.9919 256 2767.8 3.850893407270487
167 165 1549478741.3513772 0 2 165 713.3 2786.6 129.84997896324592 23 151 159.78655 172 3.85 262 10.26 1.3 700 1760 0.0 85.3 148.0 111 708.42 2767.8 1 1 1 1 128 2 23.0 3.836120914531226 379.433166 658.33656 258 2786.6 3.836120914531226
168 166 1549478747.5569274 0 2 166 719.51 2810.9 129.34455214281172 22 150 165.96546875719997 174 3.899 264 10.47 1.3 690 1800 0.0 87.5 155.8 111 713.3 2786.6 1 1 1 1 128 2 22.0 3.8850038850038855 389.21925 693.0326759999999 260 2810.9 3.8850038850038855
169 167 1549478749.5665874 0 2 167 721.52 2818.8 128.01940264215534 22 150 165.96546875719997 174 3.899 265 10.33 1.33 700 1740 0.0 91.2 163.4 111 719.51 2810.9 1 1 1 1 128 2 22.0 3.8850038850038855 405.677664 726.839148 261 2818.8 3.8850038850038855
170 168 1549478754.5812078 0 2 168 726.52 2838.5 126.86601966299965 23 149 174.53703994999998 175 3.965 267 10.48 1.33 700 1760 0.0 87.9 157.0 112 721.52 2818.8 1 1 1 1 128 2 23.0 3.9494470774091632 390.99853800000005 698.37054 263 2838.5 3.949447077409163
171 169 1549478757.636218 0 2 169 729.59 2850.7 127.18931392243158 23 149 174.6691315488 176 3.966 268 10.33 1.24 660 1790 0.0 84.6 141.2 111 726.52 2838.5 1 1 1 1 128 2 23.0 3.950695322376738 376.319412 628.088664 264 2850.7 3.9506953223767383
172 170 1549478762.5262382 0 2 170 734.46 2869.4 128.72424013848416 23 148 162.54143037439997 177 3.872 270 10.33 1.33 720 1770 0.0 84.6 153.7 111 729.59 2850.7 1 1 1 1 128 2 23.0 3.8577270272355526 376.319412 683.691414 266 2869.4 3.8577270272355526
173 171 1549478768.7065382 0 2 171 740.67 2893.6 129.52029477609773 23 146 163.80404591040002 179 3.882 272 10.25 1.3 700 1750 0.0 82.8 141.3 111 734.46 2869.4 1 1 1 1 128 2 23.0 3.8675742574257423 368.312616 628.533486 268 2893.6 3.8675742574257423
174 172 1549478770.745848 0 2 172 742.68 2901.3 129.514748780303 23 146 163.80404591040002 179 3.882 273 10.12 1.3 700 1720 0.0 81.3 148.3 111 740.67 2893.6 1 1 1 1 128 2 23.0 3.8675742574257423 361.640286 659.6710260000001 269 2901.3 3.8675742574257423
175 173 1549478775.7003484 0 2 173 747.66 2920.3 130.09745105184112 23 145 158.9165706996 180 3.843 275 10.04 1.3 710 1730 0.0 77.3 135.3 111 742.68 2901.3 1 1 1 1 128 2 23.0 3.8287770885979016 343.847406 601.8441660000002 271 2920.3 3.8287770885979016
176 174 1549478778.7869587 0 2 174 750.75 2932.1 132.64092509467883 23 144 155.8352864096 181 3.818 276 10.12 1.3 720 1760 0.0 76.2 136.1 112 747.66 2920.3 1 1 1 1 128 2 23.0 3.8040170419963477 338.954364 605.402742 272 2932.1 3.804017041996348
177 175 1549478786.679849 0 2 175 758.62 2961.2 134.05522096689128 21 143 140.6815452 183 3.69 279 10.19 1.24 720 1810 0.0 66.5 112.7 111 750.75 2932.1 1 1 1 1 128 2 21.0 3.6770113251948815 295.80663 501.31439400000005 275 2961.2 3.677011325194882
178 176 1549478789.8850694 0 2 176 761.83 2973.1 135.20467784355625 22 142 147.30215842439998 183 3.747 280 9.69 1.33 760 1710 0.0 75.0 137.1 111 758.62 2961.2 1 1 1 1 128 2 22.0 3.733293511535877 333.6165000000001 609.850962 276 2973.1 3.733293511535877
179 177 1549478798.9446392 0 2 177 769.94 2998.2 136.93919332965305 22 139 136.71626184999997 185 3.655 281 10.19 1.27 760 1830 381.4 62.3 110.0 111 761.83 2973.1 1 1 11 0 128 2 22.0 3.642456472645152 277.124106 489.3042 279 2998.2 3.6424564726451516

317
rowers/tests/testdata/erg2.csv vendored Normal file
View File

@@ -0,0 +1,317 @@
index,TimeStamp (sec), activityIdx, lapIdx, pointIdx, ElapsedTime (sec), Horizontal (meters), Stroke500mPace (sec/500m), Cadence (strokes/min), HRCur (bpm), Power (watts), Calories (kCal), Speed (m/sec), StrokeCount, StrokeDistance (meters), DriveLength (meters), DriveTime (ms), StrokeRecoveryTime (ms), WorkPerStroke (joules), AverageDriveForce (lbs), PeakDriveForce (lbs), DragFactor, ElapsedTimeAtDrive (sec), HorizontalAtDrive (meters), WorkoutType, IntervalType, WorkoutState, RowingState, WorkoutDurationType, WorkoutIntervalCount, Cadence (stokes/min), AverageBoatSpeed (m/s), AverageDriveForce (N), PeakDriveForce (N), Stroke Number,cum_dist,originalvelo
0,1549478848.0,0,0,0,1.96,8.3,132.65593285262034,0,107,149.31618168319997,0,3.764,2,5.23,1.18,550,420,0.0,134.3,220.0,0,0.0,0.0,6,0,4,1,0,0,0.0,3.750656364863851,597.3959460000002,978.6084,0,8.3,3.750656364863851
1,1549478852.95111,0,0,1,6.92,33.0,101.3265010923075,35,106,356.97583862360005,1,5.033,5,9.8,1.42,580,1180,0.0,120.9,211.7,113,1.96,8.3,6,0,4,1,0,0,35.0,5.008514474606832,537.789798,941.688174,2,33.0,5.008514474606832
2,1549478855.5000894,0,0,2,9.14,44.2,98.48930630467049,31,105,347.9041972,2,4.99,6,9.28,1.39,560,1100,0.0,125.4,213.0,112,6.92,33.0,6,0,4,1,0,0,31.0,4.965736418710895,557.806788,947.47086,4,44.2,4.965736418710895
3,1549478857.2996998,0,0,3,11.16,54.2,100.68427622062342,32,105,344.5683427872001,3,4.974,7,8.77,1.33,530,1010,0.0,121.4,210.8,112,9.14,44.2,6,0,4,1,0,0,32.0,4.95000495000495,540.013908,937.684776,5,54.2,4.95000495000495
4,1549478859.3995,0,0,4,13.17,64.1,100.72166988141764,34,106,354.00518120519996,4,5.019,8,9.41,1.39,570,1120,0.0,118.7,212.3,111,11.16,54.2,6,0,4,1,0,0,34.0,4.994506043352311,528.0037140000002,944.357106,6,64.1,4.994506043352311
5,1549478864.4384801,0,0,5,17.99,88.1,100.44814877712507,32,109,343.73772439999993,6,4.97,11,8.97,1.33,530,1050,0.0,123.1,203.9,111,13.17,64.1,6,0,4,1,0,0,32.0,4.9455984174085055,547.575882,906.992058,9,88.1,4.9455984174085055
6,1549478866.5395298,0,0,6,20.23,99.3,100.2756739255448,34,111,355.91298946560005,7,5.0280000000000005,12,9.05,1.33,530,1070,0.0,123.4,207.7,111,17.99,88.1,6,0,4,1,0,0,34.0,5.0035024517162014,548.910348,923.8952939999999,10,99.3,5.0035024517162014
7,1549478873.4679606,0,0,7,27.04,133.4,99.95338637059272,33,122,353.79362432959994,10,5.018,16,9.11,1.3,520,1100,0.0,122.3,218.5,111,20.23,99.3,6,0,4,1,0,0,33.0,4.994007191370357,544.017306,971.93607,14,133.4,4.994007191370356
8,1549478875.5683405,0,0,8,29.29,144.5,100.666258608367,33,126,343.3229162496,10,4.968,17,9.26,1.36,550,1120,0.0,119.8,211.3,111,27.04,133.4,6,0,4,1,0,0,33.0,4.9441313161277565,532.896756,939.908886,15,144.5,4.9441313161277565
9,1549478879.5576403,0,0,9,34.5,161.9,105.3784386241116,26,134,310.8202681248,11,4.806,19,10.46,1.09,600,1690,0.0,35.1,55.4,111,29.29,144.5,6,2,3,1,0,1,26.0,4.783773440489858,156.132522,246.431388,16,161.9,4.783773440489858
10,1549478882.37849,0,0,10,37.54,172.5,122.3257923660869,25,140,206.5586134752,12,4.194,20,9.17,1.18,750,1680,0.0,42.0,64.4,111,34.5,161.9,6,2,3,1,0,1,25.0,4.177109440267335,186.82524,286.465368,18,172.5,4.177109440267335
11,1549478887.5370796,0,0,11,42.5,188.3,147.32668892240014,24,147,96.38517077559999,13,3.253,22,8.46,1.24,840,1670,0.0,48.5,77.7,111,37.54,172.5,6,2,3,1,0,1,24.0,3.242962770787391,215.73867,345.62669400000016,20,188.3,3.242962770787391
12,1549478890.50771,0,0,12,45.6,198.3,161.29529233846918,24,150,88.01749716479999,13,3.156,23,8.68,1.27,850,1690,629.8,54.3,88.3,112,42.5,188.3,6,2,3,1,0,1,24.0,3.1462371004278884,241.538346,392.777826,21,198.3,3.1462371004278884
13,1549478895.5824404,0,0,13,50.51,215.0,151.634845084426,25,153,100.80666290239999,14,3.302,25,9.13,1.27,770,1660,0.0,69.6,119.0,112,45.6,198.3,6,2,3,1,0,1,25.0,3.2918559483836987,309.596112,529.33818,23,215.0,3.2918559483836987
14,1549478901.5181599,0,0,14,56.67,237.4,139.40183285081355,25,153,134.81745220159996,15,3.638,27,9.42,1.3,750,1660,0.0,72.5,128.3,112,50.51,215.0,6,2,3,1,0,1,25.0,3.625290023201857,322.49595,570.706626,25,237.4,3.625290023201857
15,1549478906.55703,0,1,15,60.72,253.4,120.58859661628277,28,152,185.04154901959998,16,4.043,29,9.48,1.36,670,1470,0.0,100.5,172.8,112,56.67,237.4,6,0,4,0,0,1,28.0,4.0273862263391065,447.04611,768.652416,28,253.4,4.0273862263391065
16,1549478911.596949,0,1,16,4.88,24.2,106.50291831012812,33,151,319.6331797428,0,4.851,3,9.12,1.33,530,1090,0.0,135.6,229.3,112,0.86,4.2,6,0,4,1,0,1,33.0,4.8285852245292125,603.178632,1019.976846,31,277.6,4.8285852245292125
17,1549478913.6067493,0,1,17,6.9,34.2,100.00608092628627,33,151,349.1606718208001,1,4.996,4,9.48,1.33,540,1150,0.0,123.2,228.5,112,4.88,24.2,6,0,4,1,0,1,33.0,4.971661529283087,548.020704,1016.41827,32,287.6,4.971661529283087
18,1549478920.3564498,0,1,18,13.62,67.7,100.38718790600149,32,151,346.8594405500001,4,4.985,8,9.25,1.36,540,1100,0.0,125.9,222.5,111,6.9,34.2,6,0,4,1,0,1,32.0,4.961301845604288,560.0308980000002,989.72895,35,321.1,4.961301845604288
19,1549478922.6673098,0,1,19,15.96,79.5,100.64126624126705,32,152,349.79004199719986,5,4.999,9,9.25,1.33,540,1120,0.0,128.1,230.7,111,13.62,67.7,6,0,4,1,0,1,32.0,4.975124378109452,569.8169819999998,1026.204354,37,332.9000000000001,4.975124378109452
20,1549478924.7074196,0,1,20,17.98,89.6,100.64126624126705,32,153,347.48604316160004,6,4.988,10,9.25,1.33,530,1110,0.0,132.5,234.5,111,15.96,79.5,6,0,4,1,0,1,32.0,4.964257347100874,589.38915,1043.10759,38,343.00000000000006,4.964257347100874
21,1549478931.5470805,0,1,21,24.8,123.5,100.64126624126705,32,158,346.8594405500001,9,4.985,14,9.18,1.3,530,1120,0.0,111.3,195.3,111,17.98,89.6,6,0,4,1,0,1,32.0,4.961301845604288,495.08688600000005,868.7373660000003,41,376.9,4.961301845604288
22,1549478939.82775,0,1,22,33.26,162.2,100.64126624126705,0,163,0.0,12,0.0,19,1.72,0.94,270,0,0.0,31.1,40.2,251,24.8,123.5,6,2,3,1,0,2,0.0,inf,138.339642,178.81844400000003,41,415.6,inf
23,1549478941.83714,0,1,23,35.27,169.2,100.64126624126705,25,165,193.96891652040006,12,4.107,20,9.53,1.09,680,1760,0.0,36.1,51.3,111,33.26,162.2,6,2,3,1,0,2,25.0,4.091318222731363,160.580742,228.19368599999999,42,422.6,4.091318222731363
24,1549478946.8464098,0,1,24,40.27,184.7,100.64126624126705,24,166,93.39442688519999,13,3.219,22,8.09,1.15,830,1650,0.0,43.4,66.6,111,35.27,169.2,6,2,3,1,0,2,24.0,3.2092426187419765,193.052748,296.2514520000001,44,438.1,3.2092426187419765
25,1549478952.90586,0,1,25,46.36,203.9,162.49207090486172,24,166,88.01749716479999,14,3.156,24,8.26,1.18,790,1660,0.0,53.4,88.0,112,40.27,184.7,6,2,3,1,0,2,24.0,3.1462371004278884,237.53494799999999,391.44336,47,457.3,3.1462371004278884
26,1549478954.91695,0,1,26,48.36,210.2,159.29374124798295,24,166,88.01749716479999,14,3.156,25,8.47,1.15,800,1650,0.0,46.8,74.7,111,46.36,203.9,6,2,3,1,0,2,24.0,3.1462371004278884,208.176696,332.282034,47,463.6,3.1462371004278884
27,1549478960.9761305,0,1,27,54.4,230.0,159.29374124798295,24,164,97.90419240000001,15,3.27,27,8.77,1.27,810,1670,0.0,69.2,121.9,112,48.36,210.2,6,2,3,1,0,2,24.0,3.260089978483406,307.816824,542.238018,50,483.4,3.260089978483406
28,1549478967.0358806,0,2,28,0.23,0.9,159.29374124798295,26,160,134.7063083884,16,3.637,29,9.06,1.3,720,1580,0.0,93.6,155.1,112,54.4,230.0,6,0,4,0,0,2,26.0,3.62476439031463,416.353392,689.918922,52,484.3,3.62476439031463
29,1549478968.025881,0,2,29,1.24,5.6,159.29374124798295,0,160,0.0,16,0.0,1,2.58,0.07,570,0,0.0,134.3,216.1,112,0.23,0.9,6,0,4,1,0,2,0.0,inf,597.3959460000002,961.260342,52,489.0,inf
30,1549478972.7961304,0,2,30,5.99,28.8,159.29374124798295,35,157,327.40447319999987,1,4.89,4,8.9,1.3,520,1060,0.0,130.6,231.0,112,1.24,5.6,6,0,4,1,0,2,35.0,4.866653688923496,580.937532,1027.53882,55,512.1999999999998,4.866653688923496
31,1549478975.0753305,0,2,31,8.29,40.4,159.29374124798295,34,157,345.81677760000014,2,4.98,5,8.83,1.33,520,1020,0.0,125.2,215.8,111,5.99,28.8,6,0,4,1,0,2,34.0,4.956383822363204,556.917144,959.925876,56,523.7999999999998,4.956383822363204
32,1549478979.8484,0,2,32,13.05,64.3,100.05449481377292,33,156,354.85225206759986,4,5.023,8,8.89,1.36,550,1020,0.0,120.3,210.5,111,8.29,40.4,6,0,4,1,0,2,33.0,4.999000199960007,535.120866,936.35031,59,547.6999999999998,4.999000199960007
33,1549478982.12576,0,2,33,15.34,75.8,99.78757082515793,34,156,356.33787560000013,5,5.03,9,9.04,1.36,560,1050,0.0,121.7,209.7,111,13.05,64.3,6,0,4,1,0,2,34.0,5.006007208650381,541.348374,932.791734,60,559.1999999999998,5.006007208650381
34,1549478987.01805,0,2,34,20.22,100.3,99.94815332426852,34,158,356.97583862360005,7,5.033,12,8.96,1.36,540,1040,0.0,124.3,208.5,111,15.34,75.8,6,0,4,1,0,2,34.0,5.009016229212583,552.913746,927.45387,63,583.6999999999998,5.009016229212583
35,1549478989.2053,0,2,35,22.39,111.2,99.94815332426852,34,158,352.10420279999994,8,5.01,13,8.97,1.33,530,1050,0.0,124.0,213.7,111,20.22,100.3,6,0,4,1,0,2,34.0,4.985541928407619,551.5792799999998,950.584614,64,594.5999999999998,4.985541928407619
36,1549478991.21522,0,2,36,24.41,121.3,99.94815332426852,34,159,352.5260528383999,8,5.012,14,8.68,1.33,530,990,0.0,120.9,209.7,111,22.39,111.2,6,0,4,1,0,2,34.0,4.988028731045491,537.789798,932.791734,65,604.6999999999998,4.988028731045491
37,1549479000.0967307,0,2,37,34.24,162.2,99.94815332426852,0,166,0.0,12,0.0,19,8.68,0.2,80,0,0.0,16.5,20.6,111,24.41,121.3,6,2,3,1,0,3,0.0,inf,73.39563000000003,91.633332,65,645.5999999999998,inf
38,1549479004.3240206,0,2,38,38.44,175.0,99.94815332426852,23,168,81.65144554560003,12,3.0780000000000003,21,8.45,1.0,750,1840,0.0,25.0,35.1,110,34.24,162.2,6,2,3,1,0,3,23.0,3.069179301454791,111.2055,156.132522,67,658.3999999999999,3.069179301454791
39,1549479006.334091,0,2,39,40.45,180.5,99.94815332426852,24,169,81.65144554560003,12,3.0780000000000003,22,7.57,1.06,850,1700,0.0,30.7,43.2,110,38.44,175.0,6,2,3,1,0,3,24.0,3.069179301454791,136.560354,192.163104,68,663.8999999999999,3.069179301454791
40,1549479009.3343112,0,2,40,43.47,188.7,176.66984041081193,23,170,59.7691943072,12,2.7739999999999996,23,7.51,1.15,930,1650,0.0,33.3,48.3,111,40.45,180.5,6,2,3,1,0,3,23.0,2.7671702916597494,148.125726,214.84902599999998,69,672.0999999999998,2.7671702916597494
41,1549479014.3466713,0,2,41,48.47,202.7,184.2684306970367,24,170,58.167748097200004,13,2.7489999999999997,25,7.76,1.15,880,1660,0.0,41.2,63.2,112,43.47,188.7,6,2,3,1,0,3,24.0,2.7424308907415536,183.266664,281.12750400000004,71,686.0999999999998,2.7424308907415536
42,1549479017.4033616,0,2,42,51.55,211.8,179.1105692684151,23,169,64.6130783844,13,2.847,26,8.19,1.18,880,1760,0.0,46.4,78.2,112,48.47,202.7,6,2,3,1,0,3,23.0,2.8396183552930485,206.397408,347.85080400000015,72,695.1999999999997,2.8396183552930485
43,1549479023.4626818,0,2,43,57.58,231.1,141.8712484238664,25,168,96.29630922239998,14,3.252,28,8.48,1.21,780,1620,0.0,63.2,109.9,112,51.55,211.8,6,2,3,1,0,3,25.0,3.2417012448132785,281.12750400000004,488.85937800000005,75,714.4999999999999,3.2417012448132785
44,1549479029.2558513,0,3,44,2.36,11.1,116.02691746025506,0,166,293.30992976320005,0,4.7139999999999995,2,8.26,1.36,570,1010,0.0,130.9,222.0,112,57.58,231.1,6,0,4,1,0,3,0.0,4.692192192192191,582.271998,987.5048400000001,75,725.5999999999997,4.692192192192191
45,1549479031.5324614,0,3,45,4.63,22.5,102.72408173528656,34,165,282.98048327360004,0,4.658,3,8.56,1.36,540,970,0.0,132.5,232.9,112,2.36,11.1,6,0,4,1,0,3,34.0,4.637358560563904,589.38915,1035.990438,76,736.9999999999999,4.637358560563904
46,1549479038.315342,0,3,46,11.43,56.5,102.19628556484686,33,162,353.15945944999993,3,5.015,7,9.33,1.39,560,1100,0.0,125.0,220.0,112,4.63,22.5,6,0,4,1,0,3,33.0,4.99001996007984,556.0275,978.6084,80,770.9999999999999,4.99001996007984
47,1549479040.5921216,0,3,47,13.7,67.9,99.83502731226395,32,162,350.6303780756,4,5.003,8,9.18,1.33,530,1100,0.0,125.8,217.4,111,11.43,56.5,6,0,4,1,0,3,32.0,4.979087831109339,559.5860759999998,967.043028,81,782.3999999999999,4.979087831109339
48,1549479042.602132,0,3,48,15.71,77.9,100.5114976405767,33,161,348.95104965,5,4.995,9,9.18,1.36,540,1090,641.5,126.3,221.0,111,13.7,67.9,6,0,4,1,0,3,33.0,4.970673029128144,561.810186,983.05662,82,792.3999999999999,4.970673029128144
49,1549479047.405393,0,3,49,20.52,102.0,100.18124808308373,33,160,353.15945944999993,7,5.015,12,9.03,1.36,540,1050,0.0,126.9,223.2,111,15.71,77.9,6,0,4,1,0,3,33.0,4.9905180157700375,564.4791180000002,992.8427039999999,85,816.4999999999999,4.9905180157700375
50,1549479049.651593,0,3,50,22.78,113.5,99.66065863380624,33,161,359.1078806196,8,5.043,13,9.04,1.33,540,1060,0.0,125.1,227.2,111,20.52,102.0,6,0,4,1,0,3,33.0,5.019072475406545,556.472322,1010.635584,86,827.9999999999999,5.019072475406545
51,1549479054.544043,0,3,51,27.66,138.1,97.45550698477057,34,163,361.8922037248,10,5.056,16,9.04,1.36,550,1040,0.0,120.1,209.9,111,22.78,113.5,6,0,4,1,0,3,34.0,5.031699708161416,534.231222,933.681378,89,852.5999999999997,5.031699708161416
52,1549479056.7020133,0,3,52,29.82,149.0,105.75935195343763,34,165,361.03396170239984,11,5.052,17,8.82,1.33,530,1020,0.0,122.4,214.1,111,27.66,138.1,6,0,4,1,0,3,34.0,5.027652086475616,544.462128,952.3639019999999,90,863.4999999999999,5.027652086475616
53,1549479061.7418034,0,3,53,35.57,168.8,117.73925694734153,24,168,161.9125630164,13,3.867,19,10.09,0.71,480,2010,0.0,26.0,36.6,105,29.82,149.0,6,2,3,1,0,4,24.0,3.8529706403637203,115.65372,162.804852,92,883.3,3.85297064036372
54,1549479063.7810733,0,3,54,37.59,174.9,143.83018527316338,24,169,161.9125630164,13,3.867,20,8.62,1.06,770,1780,0.0,26.0,38.4,111,35.57,168.8,6,2,3,1,0,4,24.0,3.8529706403637203,115.65372,170.811648,93,889.4,3.85297064036372
55,1549479069.8114536,0,3,55,43.62,191.9,163.65382281934743,24,172,60.61344072839999,13,2.787,22,7.46,1.12,880,1610,626.1,35.2,51.0,111,37.59,174.9,6,2,3,1,0,4,24.0,2.7797854005670763,156.57734399999995,226.85922,95,906.4,2.7797854005670763
56,1549479071.8212936,0,3,56,45.65,197.6,186.14054465270485,24,172,60.61344072839999,13,2.787,23,7.53,1.12,880,1630,626.1,37.4,53.7,111,43.62,191.9,6,2,3,1,0,4,24.0,2.7797854005670763,166.363428,238.869414,96,912.1,2.7797854005670763
57,1549479074.8515835,0,3,57,48.67,206.2,179.26892650689143,24,173,61.00575951960001,13,2.793,24,7.76,1.18,910,1640,626.1,39.0,60.1,112,45.65,197.6,6,2,3,1,0,4,24.0,2.785825718743036,173.48058,267.338022,97,920.7,2.785825718743036
58,1549479077.8816233,0,3,58,51.69,215.0,179.23415784234032,23,173,63.52982213480002,13,2.8310000000000004,25,7.98,1.21,920,1670,0.0,41.4,65.4,112,48.67,206.2,6,2,3,1,0,4,23.0,2.8232636928289105,184.156308,290.913588,98,929.5,2.8232636928289105
59,1549479079.8917835,0,3,59,53.7,220.9,175.59027461584682,24,172,67.37493868840001,14,2.887,26,7.9,1.15,860,1650,0.0,41.9,63.4,112,51.69,215.0,6,2,3,1,0,4,24.0,2.8791892203155602,186.380418,282.017148,99,935.4,2.87918922031556
60,1549479086.9423435,0,4,60,0.03,242.9,137.73075816772982,27,171,104.60854489959999,15,3.343,28,8.48,1.3,770,1450,626.1,86.9,151.0,112,53.7,220.9,6,0,4,0,0,4,27.0,3.332888948140248,386.550318,671.68122,102,957.4,3.332888948140248
61,1549479094.6538627,0,4,61,7.68,36.9,109.55454665482051,33,168,341.04743538040003,2,4.957,5,9.05,1.33,550,1080,0.0,123.2,217.8,111,0.99,4.5,6,0,4,1,0,4,33.0,4.932912391475926,548.020704,968.822316,107,994.3,4.932912391475926
62,1549479097.020943,0,4,62,10.06,48.9,98.05076546530029,33,167,346.2335916704,2,4.982,6,9.12,1.36,560,1080,0.0,125.8,226.6,111,7.68,36.9,6,0,4,1,0,4,33.0,4.958349861166203,559.5860759999998,1007.966652,108,1006.3,4.958349861166203
63,1549479103.7711036,0,4,63,16.79,82.6,100.4690802771618,33,164,353.5821517564001,5,5.0169999999999995,10,9.24,1.39,560,1090,0.0,126.8,219.0,111,10.06,48.9,6,0,4,1,0,4,33.0,4.993009786299182,564.034296,974.16018,112,1040.0,4.993009786299182
64,1549479106.1109633,0,4,64,19.14,94.5,100.4690802771618,32,164,349.79004199719986,6,4.999,11,8.82,1.33,520,1020,0.0,127.1,215.3,111,16.79,82.6,6,0,4,1,0,4,32.0,4.975124378109452,565.3687620000002,957.701766,113,1051.9,4.975124378109452
65,1549479110.763254,0,4,65,23.8,118.2,100.4690802771618,34,165,362.3218343136,8,5.058,14,8.98,1.33,520,1040,0.0,129.9,226.9,112,19.14,94.5,6,0,4,1,0,4,34.0,5.0337259639585215,577.8237780000002,1009.301118,116,1075.6,5.0337259639585215
66,1549479120.062835,0,4,66,34.19,162.4,100.4690802771618,0,169,0.0,12,0.0,19,9.18,0.23,110,0,0.0,22.3,26.6,111,23.8,118.2,6,2,3,1,0,5,0.0,inf,99.195306,118.322652,116,1119.8000000000004,inf
67,1549479123.091665,0,4,67,37.2,172.1,100.4690802771618,24,170,0.0,12,0.0,21,8.71,1.0,720,1810,0.0,23.8,32.4,251,34.19,162.4,6,2,3,1,0,5,24.0,inf,105.867636,144.12232799999995,117,1129.5000000000002,inf
68,1549479126.240775,0,4,68,40.35,181.1,100.4690802771618,23,172,92.0086899956,12,3.2030000000000003,22,7.79,1.09,860,1700,0.0,27.2,37.7,110,37.2,172.1,6,2,3,1,0,5,23.0,3.1930519190242035,120.991584,167.69789400000005,118,1138.5000000000002,3.1930519190242035
69,1549479132.3000453,0,4,69,46.41,197.3,100.4690802771618,23,173,52.63965610119998,13,2.659,24,7.24,1.18,980,1580,622.8,31.6,46.2,112,40.35,181.1,6,2,3,1,0,5,23.0,2.652660618600456,140.56375200000002,205.507764,120,1154.7000000000005,2.652660618600456
70,1549479134.3098354,0,4,70,48.41,202.8,193.01881949614582,24,173,52.63965610119998,13,2.659,25,7.18,1.12,900,1560,0.0,39.4,57.2,112,46.41,197.3,6,2,3,1,0,5,24.0,2.652660618600456,175.25986799999995,254.438184,121,1160.2000000000005,2.652660618600456
71,1549479137.3397849,0,4,71,51.44,211.3,187.42866564472337,23,172,55.9123070716,13,2.713,26,7.9,1.18,920,1710,0.0,38.6,58.3,111,48.41,202.8,6,2,3,1,0,5,23.0,2.7066529529583723,171.701292,259.331226,122,1168.7000000000005,2.7066529529583723
72,1549479143.398866,0,4,72,57.49,229.8,150.352801535995,23,170,80.46351893159999,14,3.063,28,8.48,1.3,880,1720,0.0,63.1,110.2,112,51.44,211.3,6,2,3,1,0,5,23.0,3.0543677458766036,280.682682,490.193844,125,1187.2000000000005,3.054367745876604
73,1549479149.402456,0,5,73,2.31,10.0,125.9927614501435,0,168,239.98181180119994,0,4.409,2,8.13,1.42,650,1060,0.0,133.5,228.7,112,57.49,229.8,6,0,4,1,0,5,0.0,4.390201071209061,593.83737,1017.307914,125,1197.2000000000005,4.390201071209061
74,1549479151.4390259,0,5,74,4.37,20.1,108.4383635495973,31,167,216.92221445159998,0,4.263,3,8.13,1.36,550,920,0.0,129.5,222.3,113,2.31,10.0,6,0,4,1,0,5,31.0,4.24520292069961,576.04449,988.8393060000001,126,1207.3000000000004,4.24520292069961
75,1549479156.3329265,0,5,75,9.25,44.8,103.24350694455349,35,165,370.5495492608,2,5.096,6,8.92,1.33,520,1030,0.0,126.2,212.1,112,4.37,20.1,6,0,4,1,0,5,35.0,5.070479667376534,561.365364,943.467462,128,1232.0000000000002,5.070479667376534
76,1549479158.4898968,0,5,76,11.42,55.9,97.68056245249096,34,164,365.98743125,3,5.075,7,9.05,1.33,520,1060,0.0,130.1,221.5,112,9.25,44.8,6,0,4,1,0,5,34.0,5.05050505050505,578.7134219999998,985.2807300000001,130,1243.1,5.05050505050505
77,1549479160.5292766,0,5,77,13.45,66.1,99.42670610329952,33,164,360.3911714172001,4,5.0489999999999995,8,9.27,1.33,520,1110,0.0,131.2,227.4,112,11.42,55.9,6,0,4,1,0,5,33.0,5.024620641141594,583.606464,1011.525228,131,1253.3000000000004,5.024620641141594
78,1549479165.2724867,0,5,78,18.2,90.1,99.15199769918665,34,162,362.9669175468,6,5.061,11,9.04,1.36,530,1030,0.0,126.9,219.2,111,13.45,66.1,6,0,4,1,0,5,34.0,5.036261079774375,564.4791180000002,975.049824,133,1277.3000000000004,5.036261079774375
79,1549479167.5792165,0,5,79,20.5,101.9,98.61600009329395,34,162,372.51629135000013,7,5.105,12,9.11,1.33,520,1070,0.0,131.8,223.2,111,18.2,90.1,6,0,4,1,0,5,34.0,5.079752108097124,586.2753960000001,992.8427039999999,135,1289.1,5.079752108097124
80,1549479172.3527064,0,5,80,25.29,126.2,98.54165660549828,34,163,371.2043588372,9,5.099,15,8.97,1.33,520,1040,0.0,126.9,227.2,111,20.5,101.9,6,0,4,1,0,5,34.0,5.0735667174023344,564.4791180000002,1010.635584,138,1313.4,5.0735667174023344
81,1549479174.6291163,0,5,81,27.55,137.7,98.54165660549828,34,164,365.5549072476001,10,5.073,16,8.96,1.33,540,1040,0.0,119.0,210.8,111,25.29,126.2,6,0,4,1,0,5,34.0,5.047955577990914,529.33818,937.684776,139,1324.9,5.047955577990914
82,1549479176.6390266,0,5,82,29.57,147.8,98.54165660549828,34,165,361.2483948556,11,5.053,17,8.83,1.36,540,1010,0.0,123.0,217.7,112,27.55,137.7,6,0,4,1,0,5,34.0,5.028157683024942,547.1310599999998,968.377494,140,1335.0000000000002,5.028157683024941
83,1549479180.5998766,0,5,83,34.83,162.9,98.54165660549828,23,168,0.0,11,0.0,19,10.17,0.82,560,2100,0.0,25.2,34.8,103,29.57,147.8,6,2,3,1,0,6,23.0,inf,112.095144,154.798056,141,1350.1,inf
84,1549479183.6885474,0,5,84,37.91,172.2,98.54165660549828,23,169,133.26699294719998,12,3.6239999999999997,20,8.45,1.12,840,1770,0.0,25.9,37.7,110,34.83,162.9,6,2,3,1,0,6,23.0,3.6114120621162877,115.208898,167.69789400000005,143,1359.4,3.611412062116288
85,1549479186.7187572,0,5,85,40.94,180.9,98.54165660549828,24,171,79.13119574080002,12,3.0460000000000003,21,7.58,1.15,890,1600,0.0,37.4,55.2,111,37.91,172.2,6,2,3,1,0,6,24.0,3.037667071688944,166.363428,245.541744,144,1368.1,3.0376670716889436
86,1549479189.7486572,0,5,86,43.95,189.4,176.1480063713816,22,172,64.47700315,12,2.845,22,8.17,1.24,970,1720,622.8,34.3,51.1,112,40.94,180.9,6,2,3,1,0,6,22.0,2.837684449489217,152.57394599999995,227.304042,145,1376.6,2.837684449489217
87,1549479191.7585769,0,5,87,45.97,195.2,177.51657845965568,24,173,64.34111909960001,12,2.843,23,7.68,1.18,910,1600,622.8,37.7,57.2,111,43.95,189.4,6,2,3,1,0,6,24.0,2.8351100022680877,167.69789400000005,254.438184,146,1382.4,2.835110002268088
88,1549479194.7885673,0,5,88,49.0,204.1,176.06353913713593,23,173,64.88580294280004,13,2.8510000000000004,24,7.97,1.24,920,1640,0.0,46.7,73.2,112,45.97,195.2,6,2,3,1,0,6,23.0,2.8438175406665915,207.731874,325.609704,147,1391.3000000000006,2.8438175406665915
89,1549479197.8184676,0,5,89,52.01,213.5,171.63882883684357,24,174,68.35986836279999,13,2.9010000000000002,25,8.05,1.21,820,1630,0.0,56.4,93.3,112,49.0,204.1,6,2,3,1,0,6,24.0,2.8931836592986926,250.879608,415.01892599999996,148,1400.7000000000005,2.8931836592986926
90,1549479199.8286676,0,5,90,54.03,219.9,163.84071777653813,24,173,80.77916493640001,13,3.0669999999999997,26,8.62,1.24,840,1680,0.0,49.9,81.5,112,52.01,213.5,6,2,3,1,0,6,24.0,3.058478101296795,221.96617799999999,362.52993,149,1407.1000000000006,3.058478101296795
91,1549479202.8584974,0,5,91,57.06,229.6,163.84071777653813,24,173,91.0639908864,14,3.1919999999999997,27,8.63,1.18,790,1730,622.8,51.5,79.4,112,54.03,219.9,6,2,3,1,0,6,24.0,3.1826861871419485,229.08333,353.188668,150,1416.8000000000006,3.1826861871419485
92,1549479205.8582573,0,5,92,60.08,239.6,163.84071777653813,24,172,91.4925938444,14,3.197,28,8.62,1.27,820,1630,0.0,64.1,110.9,112,57.06,229.6,6,2,3,1,0,6,24.0,3.1873525849429463,285.130902,493.30759800000004,151,1426.8000000000006,3.1873525849429463
93,1549479207.8981276,0,6,93,0.72,3.3,163.84071777653813,0,171,0.0,15,0.0,1,1.08,1.3,230,0,0.0,72.8,142.3,112,60.08,239.6,6,0,4,1,0,6,0.0,inf,323.830416,632.9817059999998,151,1430.1000000000006,inf
94,1549479212.549908,0,6,94,5.4,26.3,163.84071777653813,36,169,338.78203110080034,1,4.9460000000000015,4,8.7,1.36,520,960,0.0,133.7,226.9,112,0.72,3.3,6,0,4,1,0,6,36.0,4.922228785193936,594.7270139999998,1009.301118,154,1453.1000000000006,4.922228785193936
95,1549479219.6307778,0,6,95,12.48,62.5,163.84071777653813,33,166,370.33145065,4,5.095,8,9.18,1.36,540,1080,0.0,128.8,226.7,111,5.4,26.3,6,0,4,1,0,6,33.0,5.0699655242344335,572.930736,1008.411474,158,1489.3000000000006,5.069965524234434
96,1549479221.997058,0,6,96,14.84,74.5,99.06436627516057,33,165,356.97583862360005,5,5.033,9,8.96,1.33,520,1040,0.0,126.2,211.6,111,12.48,62.5,6,0,4,1,0,6,33.0,5.00801282051282,561.365364,941.243352,159,1501.3000000000006,5.00801282051282
97,1549479226.7673078,0,6,97,19.59,98.6,99.15881580288901,33,165,366.8535025091999,7,5.079,12,9.03,1.33,520,1050,0.0,128.6,225.5,111,14.84,74.5,6,0,4,1,0,6,33.0,5.053567818880129,572.0410919999998,1003.07361,162,1525.4000000000005,5.053567818880129
98,1549479229.0469475,0,6,98,21.89,110.3,98.79608507425536,34,166,369.67766832639984,8,5.092,13,9.04,1.36,530,1040,0.0,128.1,229.2,111,19.59,98.6,6,0,4,1,0,6,34.0,5.06636943965954,569.8169819999998,1019.532024,163,1537.1000000000006,5.06636943965954
99,1549479233.8491776,0,6,99,26.7,134.6,98.79608507425536,34,167,362.9669175468,10,5.061,16,8.9,1.33,530,1030,0.0,122.2,218.4,111,21.89,110.3,6,0,4,1,0,6,34.0,5.036261079774375,543.572484,971.491248,166,1561.4000000000005,5.036261079774375
100,1549479236.0963378,0,6,100,28.94,145.9,98.79608507425536,34,168,358.68079497880007,11,5.041,17,8.97,1.36,560,1040,0.0,115.2,204.2,111,26.7,134.6,6,0,4,1,0,6,34.0,5.0165546302799235,512.4349440000002,908.326524,167,1572.7000000000005,5.016554630279924
101,1549479243.146148,0,6,101,37.63,174.1,98.79608507425536,0,172,0.0,13,0.0,21,1.84,0.94,430,0,0.0,24.5,33.3,251,28.94,145.9,6,2,3,1,0,7,0.0,inf,108.98139,148.125726,167,1600.9000000000005,inf
102,1549479245.186348,0,6,102,39.65,179.9,98.79608507425536,23,173,0.0,13,0.0,22,8.23,1.06,810,1800,0.0,26.5,36.0,110,37.63,174.1,6,2,3,1,0,7,23.0,inf,117.87783,160.13592,168,1606.7000000000005,inf
103,1549479248.185868,0,6,103,42.68,188.3,98.79608507425536,24,174,73.65138598720002,13,2.9739999999999998,23,7.5,1.12,900,1630,0.0,29.9,41.7,110,39.65,179.9,6,2,3,1,0,7,24.0,2.965423165885772,133.001778,185.490774,169,1615.1000000000006,2.965423165885772
104,1549479251.2157679,0,6,104,45.7,196.5,98.79608507425536,23,175,59.44658330520001,13,2.7689999999999997,24,7.51,1.21,980,1590,630.4,31.6,45.4,111,42.68,188.3,6,2,3,1,0,7,23.0,2.7622783271642453,140.56375200000002,201.949188,170,1623.3000000000006,2.7622783271642453
105,1549479256.2554884,0,6,105,50.72,210.3,180.186693945168,24,176,57.157987143599996,13,2.733,26,7.46,1.15,930,1600,630.4,33.1,46.5,112,45.7,196.5,6,2,3,1,0,7,24.0,2.7262813522355507,147.236082,206.84223,172,1637.1000000000006,2.7262813522355507
106,1549479262.315248,0,6,106,56.77,228.0,174.10425860796758,24,176,72.24877484999998,14,2.955,28,7.83,1.21,880,1590,0.0,50.8,79.7,112,50.72,210.3,6,2,3,1,0,7,24.0,2.947070611811859,225.969576,354.523134,175,1654.8000000000006,2.947070611811859
107,1549479264.325078,0,6,107,58.79,234.4,173.64557501808972,25,176,72.24877484999998,14,2.955,29,8.12,1.18,780,1640,0.0,61.4,105.1,112,56.77,228.0,6,2,3,1,0,7,25.0,2.947070611811859,273.120708,467.507922,176,1661.2000000000005,2.947070611811859
108,1549479268.1058881,0,7,108,60.95,241.7,144.6978044900461,26,175,86.3547424768,14,3.136,30,8.55,1.24,760,1590,0.0,78.6,136.6,112,58.79,234.4,6,0,4,0,0,7,26.0,3.126367785906334,349.630092,607.626852,177,1668.5000000000007,3.126367785906334
109,1549479272.7540984,0,7,109,4.14,19.8,115.03403268701702,37,173,289.77760665,0,4.695,3,8.64,1.36,540,990,0.0,132.1,222.0,113,0.0,0.0,6,0,4,1,0,7,37.0,4.6742077217911575,587.609862,987.5048400000001,180,1688.3000000000006,4.6742077217911575
110,1549479274.8552186,0,7,110,6.38,31.2,99.16816928540692,34,172,342.49430136320007,1,4.9639999999999995,4,8.93,1.36,540,1020,0.0,127.3,217.4,112,4.14,19.8,6,0,4,1,0,7,34.0,4.940223298093074,566.2584059999998,967.043028,181,1699.7000000000005,4.940223298093074
111,1549479277.6445086,0,7,111,9.27,46.0,98.24921611803823,36,171,376.2502123744001,2,5.122000000000001,6,8.7,1.36,540,960,0.0,127.9,223.1,112,6.38,31.2,6,0,4,1,0,7,36.0,5.0968399592252815,568.9273380000002,992.397882,183,1714.5000000000007,5.0968399592252815
112,1549479279.7751086,0,7,112,11.43,57.2,97.26799680220759,36,171,383.7927419648003,3,5.1560000000000015,7,8.97,1.33,520,1030,0.0,124.0,216.1,111,9.27,46.0,6,0,4,1,0,7,36.0,5.129783523135324,551.5792799999998,961.260342,184,1725.7000000000005,5.129783523135324
113,1549479281.6652482,0,7,113,13.43,67.3,98.32785644914551,34,171,380.45285101879995,4,5.141,8,9.18,1.36,540,1070,0.0,124.4,214.4,111,11.43,57.2,6,0,4,1,0,7,34.0,5.115089514066496,553.358568,953.698368,185,1735.8000000000006,5.115089514066496
114,1549479286.7937374,0,7,114,18.22,91.3,98.86188174627543,33,170,356.12539028919997,6,5.029,11,8.89,1.33,530,1030,0.0,124.4,214.5,111,13.43,67.3,6,0,4,1,0,7,33.0,5.004504053648284,553.358568,954.14319,188,1759.8000000000006,5.004504053648284
115,1549479291.9233873,0,7,115,23.33,117.4,98.86188174627543,37,169,377.1323930528,9,5.126,14,9.06,1.36,530,1040,0.0,130.1,224.8,112,18.22,91.3,6,0,4,1,0,7,37.0,5.100479445067836,578.7134219999998,999.9598560000001,191,1785.9000000000005,5.100479445067836
116,1549479294.1443176,0,7,116,25.53,128.7,98.86188174627543,34,169,374.05078179839995,9,5.112,15,8.83,1.36,550,990,0.0,121.3,225.6,112,23.33,117.4,6,0,4,1,0,7,34.0,5.0864699898270604,539.5690860000002,1003.518432,193,1797.2000000000005,5.0864699898270604
117,1549479301.7035573,0,7,117,35.1,164.1,98.86188174627543,0,171,0.0,12,0.0,20,1.5,0.82,280,0,0.0,25.2,36.1,251,25.53,128.7,6,2,3,1,0,8,0.0,inf,112.095144,160.580742,193,1832.6000000000006,inf
118,1549479307.6439269,0,7,118,41.13,181.3,98.86188174627543,23,173,60.157865599999994,12,2.78,22,7.88,1.09,910,1740,0.0,26.0,36.6,110,35.1,164.1,6,2,3,1,0,8,23.0,2.772694504519492,115.65372,162.804852,195,1849.8000000000006,2.772694504519492
119,1549479309.7440276,0,7,119,43.13,186.6,98.86188174627543,23,174,60.157865599999994,12,2.78,23,7.52,1.15,950,1710,0.0,32.2,47.6,111,41.13,181.3,6,2,3,1,0,8,23.0,2.772694504519492,143.232684,211.735272,196,1855.1000000000006,2.772694504519492
120,1549479312.6838775,0,7,120,46.17,194.7,186.43004113504463,23,174,52.63965610119998,12,2.659,24,7.53,1.12,960,1680,634.2,29.3,42.6,111,43.13,186.6,6,2,3,1,0,8,23.0,2.652379184128163,130.33284600000002,189.494172,197,1863.2000000000005,2.652379184128163
121,1549479315.7127974,0,7,121,49.18,202.8,188.33386705612926,22,175,52.99680295,13,2.665,25,7.61,1.15,940,1760,634.2,35.7,54.2,112,46.17,194.7,6,2,3,1,0,8,22.0,2.658160552897395,158.801454,241.09352400000003,198,1871.3000000000006,2.658160552897395
122,1549479321.772868,0,7,122,55.23,219.2,193.3974438021767,23,175,54.99001869759999,13,2.698,27,7.62,1.18,950,1680,634.2,37.4,55.1,112,49.18,202.8,6,2,3,1,0,8,23.0,2.6912105064858176,166.363428,245.096922,200,1887.7000000000005,2.6912105064858176
123,1549479323.782708,0,7,123,57.25,224.9,168.53445943801069,23,174,54.99001869759999,13,2.698,28,7.77,1.15,890,1700,0.0,44.8,72.9,113,55.23,219.2,6,2,3,1,0,8,23.0,2.6912105064858176,199.280256,324.275238,201,1893.4000000000005,2.6912105064858176
124,1549479330.7713375,0,8,124,2.64,10.8,142.04130433505438,0,172,159.4133139844,0,3.847,2,7.7,1.42,670,1000,0.0,133.3,229.5,113,57.25,224.9,6,0,4,1,0,8,0.0,3.832886163280951,592.9477260000001,1020.86649,201,1904.2000000000005,3.832886163280951
125,1549479332.8413575,0,8,125,4.74,21.0,114.67553878590687,32,172,191.85137072639992,0,4.092,3,7.98,1.36,560,910,0.0,131.2,230.9,113,2.64,10.8,6,0,4,1,0,8,32.0,4.076308495026904,583.606464,1027.093998,202,1914.4000000000005,4.076308495026904
126,1549479339.5611475,0,8,126,11.43,54.6,104.22423631748958,34,169,361.67751584999985,3,5.055,7,8.98,1.33,530,1050,0.0,124.0,220.0,112,4.74,21.0,6,0,4,1,0,8,34.0,5.0306871918704115,551.5792799999998,978.6084,206,1948.0000000000007,5.030687191870411
127,1549479341.9317575,0,8,127,13.81,66.6,98.36500120275343,34,168,353.79362432959994,4,5.018,8,9.27,1.36,560,1110,0.0,127.3,217.9,111,11.43,54.6,6,0,4,1,0,8,34.0,4.994007191370357,566.2584059999998,969.267138,207,1960.0000000000007,4.994007191370356
128,1549479348.7105875,0,8,128,20.57,100.3,100.30928651788004,32,167,352.3150857268,7,5.011,12,9.03,1.3,510,1080,0.0,126.3,225.6,111,13.81,66.6,6,0,4,1,0,8,32.0,4.986536351850005,561.810186,1003.518432,211,1993.7000000000005,4.986536351850005
129,1549479350.9908376,0,8,129,22.88,112.0,99.92014109454536,33,168,352.7371041516,8,5.013,13,9.05,1.36,540,1060,0.0,124.0,214.7,111,20.57,100.3,6,0,4,1,0,8,33.0,4.989024146876871,551.5792799999998,955.032834,212,2005.4000000000005,4.989024146876871
130,1549479355.7895775,0,8,130,27.66,135.9,100.03256520932176,34,169,356.33787560000013,10,5.03,16,8.83,1.36,560,1020,0.0,111.3,196.9,112,22.88,112.0,6,0,4,1,0,8,34.0,5.005005005005005,495.08688600000005,875.854518,215,2029.3000000000006,5.005005005005005
131,1549479359.809498,0,8,131,32.31,154.4,102.2877264339605,30,170,326.80225788839994,11,4.887,18,9.69,0.56,300,1710,0.0,25.7,34.0,111,27.66,135.9,6,2,3,1,0,9,30.0,4.863340142009532,114.319254,151.23948000000001,217,2047.8000000000006,4.863340142009532
132,1549479363.079078,0,8,132,35.6,165.4,114.7084657787948,23,172,253.45277720000004,12,4.49,19,9.38,0.68,530,2080,0.0,23.1,34.7,104,32.31,154.4,6,2,3,1,0,9,23.0,4.470272686633885,102.753882,154.35323400000001,218,2058.800000000001,4.470272686633885
133,1549479366.1086378,0,8,133,38.61,173.9,143.63756837345758,23,173,115.3785378592,12,3.4539999999999997,20,8.1,1.03,800,1830,0.0,24.7,37.2,110,35.6,165.4,6,2,3,1,0,9,23.0,3.442340791738382,109.871034,165.47378400000005,219,2067.300000000001,3.442340791738382
134,1549479368.1495378,0,8,134,40.64,179.3,178.0755253512805,23,173,55.234962742399986,12,2.702,21,7.59,1.12,950,1670,0.0,27.2,37.3,111,38.61,173.9,6,2,3,1,0,9,23.0,2.695708432175976,120.991584,165.91860599999995,220,2072.7000000000007,2.695708432175976
135,1549479371.1490073,0,8,135,43.64,187.1,191.2587561185448,22,174,55.234962742399986,12,2.702,22,7.46,1.09,970,1730,0.0,23.0,34.1,111,40.64,179.3,6,2,3,1,0,9,22.0,2.695708432175976,102.30906,151.684302,221,2080.5000000000014,2.695708432175976
136,1549479374.1787474,0,8,136,46.67,194.8,194.44852130900864,22,174,49.55429084480002,12,2.6060000000000003,23,7.32,1.12,1000,1730,0.0,30.5,42.7,112,43.64,187.1,6,2,3,1,0,9,22.0,2.599968800374396,135.67071,189.938994,222,2088.2000000000007,2.5999688003743957
137,1549479377.1785874,0,8,137,49.69,202.7,190.49156986745305,23,175,44.915193814399984,12,2.522,24,7.33,1.12,960,1690,0.0,35.2,51.4,112,46.67,194.8,6,2,3,1,0,9,23.0,2.5163563160543534,156.57734399999995,228.638508,223,2096.1000000000013,2.5163563160543534
138,1549479382.250168,0,8,138,54.74,216.9,180.51189740705837,23,174,67.8662123552,13,2.8939999999999997,26,7.98,1.18,880,1700,0.0,49.7,80.4,112,49.69,202.7,6,2,3,1,0,9,23.0,2.8863360849737347,221.076534,357.63688800000006,225,2110.300000000001,2.8863360849737347
139,1549479385.2482386,0,8,139,57.76,226.3,177.43296889312614,23,174,67.8662123552,13,2.8939999999999997,27,8.42,1.24,850,1730,0.0,55.2,96.0,112,54.74,216.9,6,2,3,1,0,9,23.0,2.8863360849737347,245.541744,427.02912000000003,227,2119.7000000000007,2.8863360849737347
140,1549479388.2853491,0,9,140,59.99,233.9,146.2984238901729,26,173,80.2273248,14,3.06,28,8.35,1.36,790,1490,0.0,95.8,173.4,113,57.76,226.3,6,0,4,0,0,9,26.0,3.051199121254653,426.139476,771.3213480000003,228,2127.300000000001,3.0511991212546534
141,1549479393.108549,0,9,141,4.27,20.6,114.94516002736016,34,171,297.2473430500001,0,4.735,3,8.71,1.3,520,1030,0.0,135.1,233.5,113,0.0,0.0,6,0,4,1,0,9,34.0,4.71342383107089,600.954522,1038.65937,231,2147.900000000001,4.71342383107089
142,1549479395.327609,0,9,142,6.49,31.8,99.3918967390884,34,170,340.42859945919986,1,4.954,4,9.2,1.33,530,1100,0.0,131.8,220.1,112,4.27,20.6,6,0,4,1,0,9,34.0,4.929994084007099,586.2753960000001,979.053222,232,2159.100000000001,4.929994084007099
143,1549479397.3381395,0,9,143,8.5,41.9,99.74645145438942,33,169,354.85225206759986,2,5.023,5,9.13,1.33,530,1080,0.0,129.7,222.9,112,6.49,31.8,6,0,4,1,0,9,33.0,4.999000199960007,576.934134,991.508238,233,2169.2000000000007,4.999000199960007
144,1549479402.1105294,0,9,144,13.27,66.0,99.26197739120644,34,168,364.9067604,4,5.07,8,8.98,1.3,510,1060,0.0,133.2,225.9,112,8.5,41.9,6,0,4,1,0,9,34.0,5.044899606497832,592.5029040000002,1004.8528980000001,236,2193.3000000000006,5.0448996064978315
145,1549479404.3878589,0,9,145,15.55,77.7,99.28550805213553,34,168,362.1069765404,5,5.0569999999999995,9,8.9,1.33,520,1030,0.0,132.0,218.8,111,13.27,66.0,6,0,4,1,0,9,34.0,5.032206119162642,587.1650400000002,973.270536,237,2205.0000000000005,5.032206119162642
146,1549479409.2813294,0,9,146,20.44,102.2,99.28550805213553,33,168,358.4673792,7,5.04,12,9.04,1.33,520,1070,0.0,129.9,223.2,111,15.55,77.7,6,0,4,1,0,9,33.0,5.0155481994181965,577.8237780000002,992.8427039999999,240,2229.5000000000005,5.0155481994181965
147,1549479411.4680793,0,9,147,22.61,113.2,99.28550805213553,33,169,356.33787560000013,8,5.03,13,9.04,1.33,530,1060,0.0,124.6,210.6,112,20.44,102.2,6,0,4,1,0,9,33.0,5.005506056662329,554.248212,936.795132,241,2240.5000000000005,5.005506056662329
148,1549479429.5885592,0,9,148,41.06,178.5,99.28550805213553,0,175,0.0,12,0.0,19,1.67,0.88,420,0,0.0,18.3,24.8,251,22.61,113.2,6,2,3,0,0,10,0.0,inf,81.402426,110.31585600000001,241,2305.800000000001,inf
149,1549479435.6489189,0,9,149,37.26,182.6,99.28550805213553,0,177,0.0,12,0.0,20,2.15,1.92,1210,0,0.0,23.1,32.4,251,41.06,178.5,6,2,3,1,0,10,0.0,inf,102.753882,144.12232799999995,241,2309.9000000000005,inf
150,1549479438.6789293,0,9,150,40.3,188.8,99.28550805213553,22,177,19.9422076672,14,1.9240000000000002,21,5.66,0.97,1100,1680,0.0,25.9,37.9,111,37.26,182.6,6,2,3,1,0,10,22.0,1.9208605455243948,115.208898,168.587538,242,2316.100000000001,1.9208605455243948
151,1549479440.6944597,0,9,151,42.32,193.2,99.28550805213553,21,177,29.2488303968,14,2.186,22,6.46,1.09,1100,1720,0.0,27.7,39.9,112,40.3,188.8,6,2,3,1,0,10,21.0,2.182167328590757,123.215694,177.483978,243,2320.5000000000005,2.182167328590757
152,1549479443.7187793,0,9,152,45.33,200.4,223.5028147881381,22,176,29.2488303968,14,2.186,23,6.68,1.09,1020,1650,0.0,31.2,44.3,111,42.32,193.2,6,2,3,1,0,10,22.0,2.182167328590757,138.78446399999999,197.05614599999998,244,2327.7000000000007,2.182167328590757
153,1549479446.7192695,0,9,153,48.36,208.1,228.6297746139719,22,175,36.8039168,14,2.36,24,7.1,1.09,960,1730,0.0,35.6,52.3,111,45.33,200.4,6,2,3,1,0,10,22.0,2.355046865432622,158.35663200000005,232.641906,245,2335.4,2.355046865432622
154,1549479449.7485096,0,10,154,50.39,213.8,173.01194002778254,24,174,43.75,14,2.5,24,7.1,1.09,960,1560,572.9,35.6,52.3,113,48.36,208.1,6,0,4,0,0,10,24.0,2.4940143655227454,158.35663200000005,232.641906,246,2341.1,2.4940143655227454
155,1549479452.541599,0,10,155,2.38,11.0,122.7680425369972,0,172,233.9906431744,0,4.372,2,7.56,1.33,550,850,0.0,130.8,219.7,113,0.0,0.0,6,0,4,1,0,10,0.0,4.3535045711798,581.827176,977.2739339999999,246,2352.1,4.3535045711798
156,1549479459.469269,0,10,156,9.29,45.9,99.17696949989825,35,169,370.11343763519966,2,5.093999999999999,6,9.28,1.33,520,1100,0.0,128.9,217.7,112,2.38,11.0,6,0,4,1,0,10,35.0,5.068423720223009,573.3755580000002,968.377494,250,2387.0,5.068423720223009
157,1549479461.8380795,0,10,157,11.67,58.0,97.924331978181,33,168,365.77112662719986,3,5.074,7,9.06,1.33,530,1060,0.0,127.3,215.4,111,9.29,45.9,6,0,4,1,0,10,33.0,5.049484952534842,566.2584059999998,958.1465880000001,251,2399.1,5.049484952534842
158,1549479464.7805495,0,10,158,14.6,72.8,99.34439812509069,34,167,359.74914454080005,5,5.046,9,8.9,1.3,520,1040,0.0,127.5,217.7,111,11.67,58.0,6,0,4,1,0,10,34.0,5.0215928492517845,567.14805,968.377494,253,2413.9,5.021592849251784
159,1549479466.8779593,0,10,159,16.72,83.6,99.05591070399515,34,166,365.98743125,5,5.075,10,8.68,1.33,520,980,0.0,127.5,218.6,112,14.6,72.8,6,0,4,1,0,10,34.0,5.05050505050505,567.14805,972.380892,254,2424.7000000000007,5.05050505050505
160,1549479468.8884096,0,10,160,18.72,93.8,98.75564569213785,35,166,370.11343763519966,6,5.093999999999999,11,8.76,1.33,520,990,0.0,128.6,232.9,111,16.72,83.6,6,0,4,1,0,10,35.0,5.068937550689376,572.0410919999998,1035.990438,255,2434.9,5.068937550689376
161,1549479476.7807393,0,10,161,26.61,133.8,99.08967465747456,35,168,364.4750884096001,10,5.0680000000000005,16,8.76,1.33,530,1010,0.0,118.2,205.4,112,18.72,93.8,6,0,4,1,0,10,35.0,5.042864346949067,525.7796040000002,913.664388,260,2474.9,5.042864346949067
162,1549479478.9972293,0,10,162,28.8,144.8,99.70890101453544,34,168,356.7630997504,11,5.032,17,8.76,1.33,550,1020,0.0,117.2,216.1,111,26.61,133.8,6,0,4,1,0,10,34.0,5.007511266900352,521.3313840000002,961.260342,261,2485.9,5.007511266900352
163,1549479481.007209,0,10,163,30.8,154.1,99.22797918372477,39,168,347.0682243168003,11,4.9860000000000015,18,8.46,1.12,490,1050,0.0,65.9,112.1,111,28.8,144.8,6,2,3,1,0,10,39.0,4.962286621675268,293.13769800000006,498.645462,263,2495.2000000000007,4.962286621675268
164,1549479486.04713,0,10,164,35.87,171.0,108.03303477412338,12,169,318.64584566080003,12,4.846,19,18.62,0.65,510,4490,556.9,21.2,30.0,101,30.8,154.1,6,2,3,1,0,11,12.0,4.823926676314518,94.302264,133.4466,264,2512.100000000001,4.823926676314519
165,1549479489.0463502,0,10,165,38.88,178.9,135.96075898344483,23,169,133.7087616256,13,3.628,20,7.25,0.91,790,1770,0.0,20.9,32.5,110,35.87,171.0,6,2,3,1,0,11,23.0,3.6153289949385385,92.967798,144.56715,265,2520.0000000000005,3.6153289949385385
166,1549479491.0862205,0,10,166,40.88,183.7,181.13273733898015,23,170,52.0479832572,13,2.6489999999999996,21,6.87,0.91,840,1740,0.0,20.2,29.7,111,38.88,178.9,6,2,3,1,0,11,23.0,2.6427061310782243,89.85404399999999,132.112134,266,2524.800000000001,2.6427061310782243
167,1549479494.0862107,0,10,167,43.91,190.9,207.17255584406087,22,171,43.331342566400004,13,2.492,22,6.86,1.03,990,1760,0.0,22.0,30.3,109,40.88,183.7,6,2,3,1,0,11,22.0,2.4865725084543464,97.86084,134.78106599999998,267,2532.0000000000005,2.4865725084543464
168,1549479497.1161606,0,10,168,46.92,197.8,211.28186604804264,23,172,36.757151981199996,13,2.359,23,6.42,0.97,960,1660,556.9,19.7,31.0,110,43.91,190.9,6,2,3,1,0,11,23.0,2.354270646953574,87.62993399999998,137.89481999999998,268,2538.9000000000005,2.354270646953574
169,1549479500.1463208,0,10,169,49.94,204.7,220.59773478501373,21,173,34.558737446799995,13,2.311,24,6.72,1.06,1060,1750,0.0,22.3,31.8,111,46.92,197.8,6,2,3,1,0,11,21.0,2.306273062730628,99.195306,141.453396,269,2545.800000000001,2.306273062730628
170,1549479503.1763608,0,10,170,52.99,211.7,220.59773478501373,21,173,32.535886950000005,13,2.265,25,6.82,1.09,1070,1740,0.0,24.5,33.5,112,49.94,204.7,6,2,3,1,0,11,21.0,2.2602956466705844,108.98139,149.01537,270,2552.800000000001,2.2602956466705844
171,1549479509.2058716,0,10,171,59.03,227.4,220.59773478501373,23,172,49.3833486356,13,2.603,27,7.16,1.18,930,1640,0.0,57.0,91.3,112,52.99,211.7,6,2,3,1,0,11,23.0,2.5972676744065244,253.54854,406.122486,272,2568.5000000000005,2.5972676744065244
172,1549479511.2169313,0,11,172,0.93,3.8,220.59773478501373,0,171,0.0,13,0.0,1,1.36,1.24,320,0,0.0,73.0,142.2,113,59.03,227.4,6,0,4,1,0,11,0.0,inf,324.72006,632.536884,272,2572.300000000001,inf
173,1549479515.927212,0,11,173,5.63,26.1,220.59773478501373,35,169,306.95599103680007,1,4.7860000000000005,4,8.43,1.3,530,960,0.0,126.3,221.5,113,0.93,3.8,6,0,4,1,0,11,35.0,4.763719512195122,561.810186,985.2807300000001,275,2594.600000000001,4.763719512195122
174,1549479518.2955518,0,11,174,7.99,38.1,220.59773478501373,36,168,348.74151139519995,1,4.994,5,8.85,1.33,530,1030,0.0,128.0,231.0,112,5.63,26.1,6,0,4,1,0,11,36.0,4.970178926441352,569.37216,1027.53882,276,2606.600000000001,4.970178926441352
175,1549479523.1281614,0,11,175,12.85,62.2,100.43089030126343,33,166,348.5320570396001,4,4.993,8,9.05,1.33,530,1080,0.0,126.7,225.8,112,7.99,38.1,6,0,4,1,0,11,33.0,4.969191015702643,563.589474,1004.408076,279,2630.7000000000007,4.969191015702643
176,1549479525.3456714,0,11,176,15.06,73.4,100.97523946925537,33,166,343.5302785851997,4,4.968999999999999,9,9.11,1.36,540,1080,0.0,130.2,233.5,111,12.85,62.2,6,0,4,1,0,11,33.0,4.9446202531645564,579.1582440000002,1038.65937,280,2641.9000000000005,4.9446202531645564
177,1549479527.3556015,0,11,177,17.07,83.5,100.40388965819665,33,165,348.95104965,5,4.995,10,8.68,1.27,500,1020,0.0,131.0,221.3,112,15.06,73.4,6,0,4,1,0,11,33.0,4.971167230065619,582.71682,984.391086,281,2652.0000000000005,4.971167230065619
178,1549479532.098442,0,11,178,21.8,107.4,99.47021232155458,34,166,364.0437569888,7,5.066,13,9.11,1.36,540,1060,0.0,125.4,217.6,111,17.07,83.5,6,0,4,1,0,11,34.0,5.040830728904123,557.806788,967.932672,284,2675.9000000000005,5.040830728904123
179,1549479534.405252,0,11,179,24.12,119.2,98.58907516095115,33,166,364.4750884096001,8,5.0680000000000005,14,8.97,1.33,530,1050,0.0,125.2,220.8,112,21.8,107.4,6,0,4,1,0,11,33.0,5.043881771411279,556.917144,982.166976,285,2687.7000000000007,5.043881771411279
180,1549479541.455622,0,11,180,32.39,153.7,98.79510417698248,36,169,362.9669175468,11,5.061,18,8.67,0.44,230,1450,0.0,30.5,39.8,105,24.12,119.2,6,2,3,1,0,12,36.0,5.036261079774375,135.67071,177.03915600000005,290,2722.2000000000007,5.036261079774375
181,1549479544.4857519,0,11,181,35.41,164.0,107.7319044548018,23,171,304.46146616759995,11,4.773,19,10.19,0.56,380,2270,0.0,19.8,25.5,106,32.39,153.7,6,2,3,1,0,12,23.0,4.751045229950591,88.07475600000002,113.42961,291,2732.500000000001,4.7510452299505905
182,1549479547.5156324,0,11,182,38.42,172.4,139.5147976819096,22,172,135.7088043808,12,3.6460000000000004,20,8.31,0.8,680,2050,0.0,19.7,29.7,104,35.41,164.0,6,2,3,1,0,12,22.0,3.6329288672527795,87.62993399999998,132.112134,292,2740.900000000001,3.63292886725278
183,1549479553.5452929,0,11,183,44.44,187.1,190.86026473837242,21,174,39.38853504320001,12,2.414,22,7.22,1.06,1000,1840,0.0,24.1,35.0,110,38.42,172.4,6,2,3,1,0,12,21.0,2.408709894980249,107.202102,155.6877,294,2755.6000000000013,2.408709894980249
184,1549479556.575223,0,11,184,47.48,194.3,219.247271616384,22,175,37.8904844836,12,2.383,23,7.0,1.06,1010,1770,653.6,23.5,33.1,111,44.44,187.1,6,2,3,1,0,12,22.0,2.3777820049457867,104.53317,147.236082,295,2762.800000000001,2.3777820049457867
185,1549479558.5849528,0,11,185,49.5,199.1,211.0973308643895,22,175,37.8904844836,12,2.383,24,6.8,1.06,1000,1700,653.6,27.0,37.4,112,47.48,194.3,6,2,3,1,0,12,22.0,2.3777820049457867,120.10193999999998,166.363428,296,2767.6000000000013,2.3777820049457867
186,1549479561.6150026,0,11,186,52.51,206.7,209.3049258124481,22,175,38.0337676768,12,2.386,25,7.11,1.15,1030,1690,0.0,34.3,52.4,112,49.5,199.1,6,2,3,1,0,12,22.0,2.380952380952381,152.57394599999995,233.086728,297,2775.200000000001,2.380952380952381
187,1549479564.6449337,0,11,187,55.54,214.8,203.74847495465647,23,175,42.2964025344,12,2.472,26,7.34,1.15,950,1670,0.0,36.2,53.7,113,52.51,206.7,6,2,3,1,0,12,23.0,2.4669429642786658,161.025564,238.869414,298,2783.300000000001,2.4669429642786658
188,1549479567.6748536,0,11,188,58.57,223.1,196.81044621580287,23,175,50.87797172919999,13,2.6289999999999996,27,7.56,1.15,920,1660,0.0,39.5,63.4,112,55.54,214.8,6,2,3,1,0,12,23.0,2.6231572320444885,175.70469,282.017148,299,2791.6000000000013,2.6231572320444885
189,1549479570.6751134,0,12,189,60.6,229.6,151.14733418163482,25,174,75.29800302080002,13,2.9960000000000004,28,7.77,1.33,860,1540,0.0,91.6,153.0,112,58.57,223.1,6,0,4,0,0,12,25.0,2.9879287677781763,407.456952,680.5776599999998,301,2798.1000000000013,2.9879287677781763
190,1549479575.7152133,0,12,190,4.84,23.3,114.8407859663754,35,173,287.92993354999993,0,4.685,3,9.07,1.36,550,1070,0.0,130.2,227.2,112,0.82,3.7,6,0,4,1,0,12,35.0,4.663744053726332,579.1582440000002,1010.635584,303,2821.400000000001,4.663744053726332
191,1549479582.4055624,0,12,191,11.53,57.0,98.48102199591636,33,170,359.1078806196,3,5.043,7,9.05,1.33,520,1060,0.0,126.1,213.7,112,4.84,23.3,6,0,4,1,0,12,33.0,5.018568704205562,560.920542,950.584614,307,2855.1000000000013,5.018568704205562
192,1549479584.8038733,0,12,192,13.91,69.1,98.90104191562214,34,169,362.75180479999983,4,5.06,8,8.89,1.33,540,1040,0.0,126.1,223.9,111,11.53,57.0,6,0,4,1,0,12,34.0,5.0357538523516965,560.920542,995.956458,308,2867.200000000001,5.0357538523516965
193,1549479589.5147936,0,12,193,18.63,92.8,99.7108567119746,34,169,358.4673792,6,5.04,11,9.04,1.33,520,1060,0.0,134.1,226.5,111,13.91,69.1,6,0,4,1,0,12,34.0,5.0155481994181965,596.506302,1007.52183,311,2890.9000000000005,5.0155481994181965
194,1549479591.8534832,0,12,194,20.98,104.8,98.85837657403154,34,169,361.03396170239984,7,5.052,12,8.97,1.3,500,1050,0.0,134.3,225.0,112,18.63,92.8,6,0,4,1,0,12,34.0,5.0271465915946125,597.3959460000002,1000.8495,312,2902.9000000000005,5.0271465915946125
195,1549479596.5336833,0,12,195,25.63,128.8,95.19310034306835,35,171,388.7265193056,9,5.178,15,9.19,1.36,530,1060,0.0,124.0,227.3,112,20.98,104.8,6,0,4,1,0,12,35.0,5.151983513652755,551.5792799999998,1011.080406,315,2926.9000000000005,5.151983513652755
196,1549479598.9035034,0,12,196,28.03,140.8,104.920124998337,34,171,380.2308831999998,10,5.14,16,9.12,1.33,530,1070,0.0,116.2,214.8,111,25.63,128.8,6,0,4,1,0,12,34.0,5.11456628477905,516.883164,955.477656,317,2938.9000000000005,5.11456628477905
197,1549479607.816414,0,12,197,37.79,173.2,133.2694570549411,22,175,117.80039978559999,12,3.478,20,8.28,0.91,760,1980,0.0,18.4,29.7,106,28.03,140.8,6,2,3,1,0,13,22.0,3.4669255304396063,81.847248,132.112134,320,2971.300000000001,3.4669255304396063
198,1549479610.9930046,0,12,198,40.99,181.2,179.38727966340358,22,176,64.20542609880002,12,2.841,21,7.43,0.97,900,1880,0.0,19.0,29.9,110,37.79,173.2,6,2,3,1,0,13,22.0,2.833182230281052,84.51618,133.001778,321,2979.300000000001,2.833182230281052
199,1549479614.0228846,0,12,199,43.98,188.2,199.818399324767,21,177,44.8084224,12,2.52,22,7.08,1.03,1000,1860,0.0,21.1,30.6,111,40.99,181.2,6,2,3,1,0,13,21.0,2.5139524360199106,93.857442,136.115532,322,2986.300000000001,2.5139524360199106
200,1549479617.0525749,0,12,200,47.02,195.2,215.6671642020126,22,177,36.33805,12,2.35,23,6.8,1.06,1040,1750,595.1,22.8,31.0,111,43.98,188.2,6,2,3,1,0,13,22.0,2.34554580850964,101.419416,137.89481999999998,323,2993.300000000001,2.34554580850964
201,1549479620.0827749,0,12,201,50.06,202.4,209.00690284259557,22,177,34.290263350000004,12,2.305,24,6.73,1.09,1040,1680,595.1,27.5,41.0,111,47.02,195.2,6,2,3,1,0,13,22.0,2.3005429281310388,122.32605,182.37702,324,3000.5000000000005,2.3005429281310388
202,1549479626.1126251,0,12,202,56.09,218.3,195.58682852583237,22,177,53.59563124999998,13,2.675,26,7.62,1.18,960,1720,0.0,38.5,61.5,112,50.06,202.4,6,2,3,1,0,13,22.0,2.6683744262994984,171.25647,273.56553,326,3016.4000000000005,2.6683744262994984
203,1549479628.1225252,0,12,203,58.12,224.1,195.58682852583237,23,177,53.59563124999998,13,2.675,27,7.85,1.24,930,1650,0.0,51.0,84.4,113,56.09,218.3,6,2,3,1,0,13,23.0,2.6683744262994984,226.85922,375.429768,327,3022.200000000001,2.6683744262994984
204,1549479631.1529155,0,13,204,60.45,231.7,195.58682852583237,26,176,63.7320031712,13,2.8339999999999996,28,7.92,1.3,810,1490,0.0,86.5,149.2,112,58.12,224.1,6,0,4,0,0,13,26.0,2.8261361067149,384.77103,663.6744239999998,329,3029.800000000001,2.8261361067149
205,1549479633.1622055,0,13,205,1.26,5.8,195.58682852583237,0,176,0.0,14,0.0,1,2.73,0.13,610,0,0.0,152.0,251.1,112,0.0,0.0,6,0,4,1,0,13,0.0,inf,676.12944,1116.948042,329,3035.6000000000013,inf
206,1549479637.8452358,0,13,206,5.93,29.2,195.58682852583237,34,175,355.2762937500001,1,5.025,4,8.92,1.3,500,1030,0.0,139.0,234.1,112,1.26,5.8,6,0,4,1,0,13,34.0,5.001000200040008,618.30258,1041.328302,331,3059.0000000000014,5.001000200040008
207,1549479640.213286,0,13,207,8.32,41.6,195.58682852583237,34,175,377.1323930528,2,5.126,5,9.2,1.33,510,1070,0.0,139.5,245.9,112,5.93,29.2,6,0,4,1,0,13,34.0,5.100479445067836,620.52669,1093.817298,333,3071.400000000001,5.100479445067836
208,1549479645.045886,0,13,208,13.13,66.1,98.21335866515673,33,173,375.5894804451999,4,5.119,8,9.26,1.36,540,1090,0.0,129.4,222.9,112,8.32,41.6,6,0,4,1,0,13,33.0,5.0932056636446985,575.5996680000002,991.508238,335,3095.900000000001,5.0932056636446985
209,1549479647.292386,0,13,209,15.37,77.5,98.74122679443201,33,172,365.77112662719986,5,5.074,9,8.97,1.33,520,1040,0.0,127.6,224.5,111,13.13,66.1,6,0,4,1,0,13,33.0,5.049484952534842,567.5928719999997,998.62539,336,3107.300000000001,5.049484952534842
210,1549479652.125626,0,13,210,20.21,102.0,98.8728733926699,34,171,369.45991199880007,7,5.091,12,8.9,1.3,510,1040,0.0,133.1,228.8,112,15.37,77.5,6,0,4,1,0,13,34.0,5.065856129685916,592.058082,1017.752736,339,3131.800000000001,5.065856129685916
211,1549479654.342256,0,13,211,22.43,113.5,98.45148225895676,34,171,370.7677334844001,8,5.0969999999999995,13,9.18,1.33,520,1080,0.0,136.1,239.5,111,20.21,102.0,6,0,4,1,0,13,34.0,5.072537283149032,605.402742,1065.34869,340,3143.300000000001,5.072537283149032
212,1549479659.0559955,0,13,212,27.14,137.6,95.70617297431956,35,172,377.79493272919984,10,5.129,16,8.61,1.3,520,970,0.0,123.4,222.7,111,22.43,113.5,6,0,4,1,0,13,35.0,5.103082261686058,548.910348,990.6185939999999,343,3167.400000000001,5.103082261686058
213,1549479661.3919153,0,13,213,29.48,149.5,103.93410329711624,36,173,381.5639859808,11,5.146,17,8.76,1.3,510,1010,0.0,125.4,230.5,111,27.14,137.6,6,0,4,1,0,13,36.0,5.119803399549458,557.806788,1025.31471,345,3179.300000000001,5.119803399549458
214,1549479668.324926,0,13,214,37.68,173.5,128.7992592836767,21,175,139.8824363636,12,3.6830000000000003,20,8.77,0.82,720,2180,0.0,18.6,26.2,107,29.48,149.5,6,2,3,1,0,14,21.0,3.670532961385993,82.73689200000003,116.543364,347,3203.300000000001,3.670532961385993
215,1549479671.4713855,0,13,215,40.81,181.4,172.70870826169312,21,177,69.49720179639999,12,2.917,21,7.65,0.97,890,1970,0.0,19.4,29.5,110,37.68,173.5,6,2,3,1,0,14,21.0,2.908837046948629,86.295468,131.22249,348,3211.200000000001,2.9088370469486295
216,1549479674.5012856,0,13,216,43.82,188.5,198.493000873946,21,177,45.1828641124,12,2.5269999999999997,22,7.07,1.0,970,1870,0.0,19.8,30.1,111,40.81,181.4,6,2,3,1,0,14,21.0,2.521050773962588,88.07475600000002,133.891422,349,3218.300000000001,2.521050773962588
217,1549479677.9819353,0,13,217,46.86,195.4,213.25669612533585,21,178,36.757151981199996,12,2.359,23,6.81,1.06,1060,1760,0.0,21.2,30.2,112,43.82,188.5,6,2,3,1,0,14,21.0,2.354381503978905,94.302264,134.336244,350,3225.200000000001,2.354381503978905
218,1549479680.771615,0,13,218,49.87,202.3,219.13704897854302,21,178,33.40539755,12,2.285,24,6.82,1.09,1070,1750,637.2,24.3,33.0,112,46.86,195.4,6,2,3,1,0,14,21.0,2.2801897117840206,108.091746,146.79126000000005,351,3232.1000000000013,2.2801897117840206
219,1549479683.7113454,0,13,219,52.9,209.4,224.86834373990598,22,178,33.5811379932,13,2.289,25,6.83,1.09,1050,1710,0.0,24.7,33.9,112,49.87,202.3,6,2,3,1,0,14,22.0,2.284043670914988,109.871034,150.794658,352,3239.200000000001,2.284043670914988
220,1549479686.651225,0,13,220,55.91,216.8,209.96428507308948,22,178,35.830155813199994,13,2.339,26,7.04,1.12,1030,1740,0.0,31.7,45.6,111,52.9,209.4,6,2,3,1,0,14,22.0,2.334158069184445,141.008574,202.838832,354,3246.6000000000013,2.334158069184445
221,1549479693.0104654,0,14,221,60.97,231.6,151.50702380019055,25,175,84.55004752319999,13,3.114,28,8.14,1.39,850,1580,0.0,95.2,168.6,113,55.91,216.8,6,0,4,0,0,14,25.0,3.1048186785891705,423.470544,749.969892,356,3261.400000000001,3.1048186785891705
222,1549479697.8705955,0,14,222,4.65,22.7,112.38005332514747,36,174,298.37875485880005,0,4.7410000000000005,3,8.93,1.33,530,1050,0.0,134.3,234.3,113,1.63,7.4,6,0,4,1,0,14,36.0,4.719652633566169,597.3959460000002,1042.217946,359,3284.1000000000013,4.719652633566169
223,1549479704.949106,0,14,223,11.45,57.0,98.403602301031,33,171,360.1770776576,3,5.048,7,9.34,1.36,540,1110,0.0,129.7,211.7,112,4.65,22.7,6,0,4,1,0,14,33.0,5.023106288929075,576.934134,941.688174,363,3318.400000000001,5.023106288929075
224,1549479707.0503955,0,14,224,13.73,68.5,99.21625704124821,32,171,358.4673792,4,5.04,8,9.34,1.36,540,1110,0.0,127.5,220.3,111,11.45,57.0,6,0,4,1,0,14,32.0,5.0150451354062175,567.14805,979.942866,364,3329.900000000001,5.0150451354062175
225,1549479708.9102654,0,14,225,15.74,78.7,99.37724281445452,32,171,359.1078806196,5,5.043,9,9.03,1.33,540,1060,0.0,132.6,235.9,111,13.73,68.5,6,0,4,1,0,14,32.0,5.018568704205562,589.833972,1049.335098,365,3340.1000000000013,5.018568704205562
226,1549479713.918935,0,14,226,20.58,103.3,98.97847955485615,33,170,370.5495492608,7,5.096,12,9.33,1.36,530,1100,0.0,132.0,223.9,112,15.74,78.7,6,0,4,1,0,14,33.0,5.0715082665584745,587.1650400000002,995.956458,368,3364.700000000001,5.0715082665584745
227,1549479715.8395352,0,14,227,22.79,114.6,97.96915919633352,33,171,368.80715612160003,8,5.088,13,9.05,1.3,510,1070,0.0,131.2,237.1,112,20.58,103.3,6,0,4,1,0,14,33.0,5.0627784528149045,583.606464,1054.672962,369,3376.0000000000014,5.0627784528149045
228,1549479720.6985755,0,14,228,27.55,138.9,98.27204587704964,35,172,380.0090017331996,10,5.138999999999999,16,9.04,1.3,520,1060,0.0,119.9,217.8,111,22.79,114.6,6,0,4,1,0,14,35.0,5.11352014726938,533.341578,968.822316,372,3400.300000000001,5.11352014726938
229,1549479724.7183855,0,14,229,32.27,157.1,102.80369572355733,31,173,327.6053759188,12,4.891,18,9.1,0.53,290,1670,0.0,22.8,32.3,111,27.55,138.9,6,2,3,1,0,15,31.0,4.868075163080519,101.419416,143.677506,374,3418.5000000000014,4.868075163080519
230,1549479727.8988454,0,14,230,35.57,167.8,117.78031952591793,23,174,220.6065901284,12,4.287,19,9.09,0.62,430,2140,0.0,19.1,25.6,107,32.27,157.1,6,2,3,1,0,15,23.0,4.26949022286739,84.96100200000002,113.87443200000001,375,3429.200000000001,4.26949022286739
231,1549479730.9288757,0,14,231,38.56,175.6,154.1579642102371,21,175,102.7422459476,12,3.323,20,7.99,0.65,600,2210,0.0,16.6,27.1,104,35.57,167.8,6,2,3,1,0,15,21.0,3.312574532926991,73.84045200000001,120.54676200000002,376,3437.0000000000014,3.312574532926991
232,1549479736.988675,0,14,232,44.62,189.5,204.03731947330002,22,177,33.186585599999994,12,2.28,22,6.56,0.94,940,1780,0.0,19.4,27.6,110,38.56,175.6,6,2,3,1,0,15,22.0,2.275623520844712,86.295468,122.770872,378,3450.900000000001,2.2756235208447118
233,1549479743.0183053,0,14,233,50.66,203.1,231.23986750819446,21,178,31.808775577600013,12,2.248,24,6.88,1.06,1070,1820,619.6,20.7,28.9,112,44.62,189.5,6,2,3,1,0,15,21.0,2.2436616558223017,92.078154,128.553558,380,3464.5000000000014,2.2436616558223017
234,1549479746.134845,0,14,234,53.67,210.0,222.29629425607843,21,178,32.578999868800004,13,2.266,25,6.75,1.09,1080,1740,619.6,25.1,36.3,112,49.81,201.1,6,2,3,1,0,15,21.0,2.2611133722244827,111.650322,161.47038600000005,382,3471.400000000001,2.2611133722244827
235,1549479749.0775151,0,14,235,56.7,217.1,222.29629425607843,21,177,35.28151139239999,13,2.327,26,6.9,1.06,1030,1780,0.0,25.5,35.1,111,53.67,210.0,6,2,3,1,0,15,21.0,2.322125208991269,113.42961,156.132522,383,3478.5000000000014,2.322125208991269
236,1549479753.0976553,0,14,236,0.01,227.5,222.29629425607843,24,176,47.25199395,13,2.565,27,7.17,1.3,950,1540,619.6,80.4,144.9,112,56.7,217.1,6,0,4,0,0,15,24.0,2.55924655781338,357.63688800000006,644.547078,384,3488.900000000001,2.55924655781338
237,1549479754.1182456,0,15,237,1.02,4.3,222.29629425607843,0,176,0.0,13,0.0,1,0.64,1.24,140,0,0.0,33.9,55.3,112,0.01,227.5,6,0,4,1,0,15,0.0,inf,150.794658,245.986566,384,3493.200000000001,inf
238,1549479758.8569546,0,15,238,5.77,27.2,222.29629425607843,35,175,327.40447319999987,1,4.89,4,8.92,1.36,540,1030,0.0,134.1,231.1,112,1.02,4.3,6,0,4,1,0,15,35.0,4.867127421395892,596.506302,1027.983642,387,3516.1000000000013,4.8671274213958915
239,1549479761.1674151,0,15,239,8.08,39.1,222.29629425607843,34,175,358.25404809319986,2,5.039,5,8.91,1.33,520,1020,0.0,129.4,227.2,112,5.77,27.2,6,0,4,1,0,15,34.0,5.0150451354062175,575.5996680000002,1010.635584,388,3528.000000000002,5.0150451354062175
240,1549479764.106965,0,15,240,10.99,53.9,98.5227894285015,35,173,371.6413268427999,3,5.101,7,8.9,1.33,520,1020,0.0,130.3,232.7,112,8.08,39.1,6,0,4,1,0,15,35.0,5.076142131979696,579.603066,1035.100794,390,3542.800000000002,5.076142131979696
241,1549479770.9765544,0,15,241,17.88,89.1,98.2344096073841,36,172,373.39262808120003,6,5.109,11,8.89,1.33,520,1020,0.0,129.0,226.6,111,10.99,53.9,6,0,4,1,0,15,36.0,5.083884087442806,573.82038,1007.966652,394,3578.000000000002,5.083884087442806
242,1549479773.2566445,0,15,242,20.17,100.8,98.4285674068888,34,171,373.8313113668002,7,5.1110000000000015,12,8.82,1.33,520,1010,0.0,124.7,229.8,111,17.88,89.1,6,0,4,1,0,15,34.0,5.085435313262817,554.693034,1022.200956,395,3589.700000000001,5.085435313262817
243,1549479776.1098151,0,15,243,23.04,115.3,98.4285674068888,35,170,367.7209390036001,8,5.083,14,8.68,1.3,510,1000,0.0,133.7,230.7,111,20.17,100.8,6,0,4,1,0,15,35.0,5.058168942842691,594.7270139999998,1026.204354,397,3604.200000000001,5.058168942842691
244,1549479778.2968152,0,15,244,25.22,126.5,98.4285674068888,35,170,364.9067604,9,5.07,15,8.83,1.3,510,1020,0.0,129.8,227.4,111,23.04,115.3,6,0,4,1,0,15,35.0,5.044899606497832,577.3789559999999,1011.525228,398,3615.400000000001,5.0448996064978315
245,1549479785.9474545,0,15,245,33.17,161.0,98.4285674068888,24,172,0.0,12,0.0,20,10.1,0.65,410,2080,0.0,20.3,29.2,251,25.22,126.5,6,2,3,1,0,16,24.0,inf,90.298866,129.888024,401,3649.900000000001,inf
246,1549479789.3666244,0,15,246,36.58,171.0,98.4285674068888,22,173,154.00577535559998,12,3.803,21,8.63,0.68,580,2200,0.0,18.3,25.5,105,33.17,161.0,6,2,3,1,0,16,22.0,3.789026977872082,81.402426,113.42961,403,3659.900000000001,3.789026977872082
247,1549479792.3958044,0,15,247,39.6,178.6,98.4285674068888,21,174,74.54653151680002,13,2.986,22,7.63,1.0,900,1920,0.0,20.7,31.9,111,36.58,171.0,6,2,3,1,0,16,21.0,2.9781404491035803,92.078154,141.89821799999999,404,3667.5000000000014,2.9781404491035803
248,1549479795.425844,0,15,248,42.62,185.8,195.10879070280774,22,174,46.81124754039999,13,2.557,23,6.94,1.0,950,1770,0.0,20.8,28.6,110,39.6,178.6,6,2,3,1,0,16,22.0,2.5507601265177016,92.522976,127.219092,405,3674.700000000001,2.5507601265177016
249,1549479798.456194,0,15,249,45.64,192.9,209.66212204656009,21,175,39.6337929652,13,2.419,24,7.07,1.12,1080,1780,0.0,23.5,34.2,111,42.62,185.8,6,2,3,1,0,16,21.0,2.414059482425647,104.53317,152.12912400000005,406,3681.800000000001,2.414059482425647
250,1549479801.4854345,0,15,250,48.65,200.1,211.16167460968842,22,175,35.922145898800004,13,2.3409999999999997,25,6.8,1.09,1030,1680,0.0,27.1,38.3,110,45.64,192.9,6,2,3,1,0,16,22.0,2.3362302588543127,120.54676200000002,170.366826,407,3689.0000000000014,2.3362302588543127
251,1549479804.485344,0,15,251,51.67,207.5,209.04041970416787,22,175,40.2762235904,13,2.432,26,7.01,1.09,1010,1720,0.0,27.5,37.5,112,48.65,200.1,6,2,3,1,0,16,22.0,2.4269488399184542,122.32605,166.80825000000004,408,3696.400000000001,2.4269488399184542
252,1549479806.525204,0,15,252,53.71,212.6,206.58819329029217,22,175,40.2762235904,13,2.432,27,7.11,1.09,980,1730,0.0,32.6,48.8,112,51.67,207.5,6,2,3,1,0,16,22.0,2.4269488399184542,145.011972,217.07313599999998,409,3701.5000000000014,2.4269488399184542
253,1549479809.5249548,0,15,253,56.74,220.6,206.58819329029217,23,175,43.331342566400004,13,2.492,28,7.26,1.15,960,1660,0.0,36.9,54.6,113,53.71,212.6,6,2,3,1,0,16,23.0,2.486077963404932,164.139318,242.872812,410,3709.5000000000014,2.4860779634049317
254,1549479813.5749347,0,16,254,59.75,229.7,206.58819329029217,24,174,64.13765119999998,13,2.84,29,7.78,1.27,880,1660,0.0,75.8,135.6,113,56.74,220.6,6,0,4,0,0,16,24.0,2.832058906825261,337.175076,603.178632,412,3718.6000000000013,2.8320589068252615
255,1549479814.5648847,0,16,255,1.01,4.3,206.58819329029217,0,174,0.0,13,0.0,1,2.88,0.16,690,0,0.0,143.5,241.2,113,59.75,229.7,6,0,4,1,0,16,0.0,inf,638.31957,1072.910664,412,3722.900000000001,inf
256,1549479816.5753145,0,16,256,3.04,13.9,206.58819329029217,0,174,201.43029670119998,0,4.159,2,7.78,1.33,560,940,0.0,135.0,242.8,113,1.01,4.3,6,0,4,1,0,16,0.0,4.142845306156268,600.5097,1080.027816,412,3732.5000000000014,4.142845306156268
257,1549479823.326844,0,16,257,9.76,47.7,206.58819329029217,32,173,363.82821895000006,3,5.065,6,9.26,1.36,540,1100,0.0,129.5,228.6,112,3.04,13.9,6,0,4,1,0,16,32.0,5.039814534825119,576.04449,1016.8630919999999,415,3766.300000000001,5.039814534825119
258,1549479825.6640036,0,16,258,12.11,59.6,97.68615003282395,33,173,356.12539028919997,3,5.029,7,9.34,1.36,540,1110,0.0,133.9,228.8,111,9.76,47.7,6,0,4,1,0,16,33.0,5.00400320256205,595.616658,1017.752736,416,3778.200000000001,5.00400320256205
259,1549479832.3564847,0,16,259,18.81,93.8,98.79551143764364,33,171,376.91171875,6,5.125,11,9.19,1.3,500,1090,0.0,131.6,227.2,112,12.11,59.6,6,0,4,1,0,16,33.0,5.098919029165816,585.3857519999998,1010.635584,420,3812.400000000001,5.098919029165816
260,1549479839.436424,0,16,260,25.89,129.8,98.79551143764364,33,171,366.63685674559997,10,5.078,15,8.98,1.33,530,1040,0.0,123.0,223.7,112,18.81,93.8,6,0,4,1,0,16,33.0,5.053057099545224,547.1310599999998,995.066814,424,3848.400000000001,5.0530570995452235
261,1549479841.773484,0,16,261,28.23,141.6,98.79551143764364,34,172,363.39739813159986,10,5.063,16,8.98,1.33,530,1050,0.0,122.9,222.4,112,25.89,129.8,6,0,4,1,0,16,34.0,5.037783375314862,546.686238,989.284128,425,3860.200000000001,5.037783375314862
262,1549479845.1067445,0,16,262,32.2,156.5,98.79551143764364,0,173,0.0,12,0.0,18,8.97,0.23,70,1790,0.0,24.6,29.9,112,28.23,141.6,6,2,3,1,0,17,0.0,inf,109.426212,133.001778,425,3875.1000000000013,inf
263,1549479848.8237045,0,16,263,35.92,168.4,98.79551143764364,21,174,0.0,12,0.0,19,9.93,0.65,490,2360,0.0,17.1,23.7,104,32.2,156.5,6,2,3,1,0,17,21.0,inf,76.06456200000002,105.422814,427,3887.0000000000014,inf
264,1549479851.8528445,0,16,264,38.92,176.1,98.79551143764364,21,175,102.64951829440001,12,3.322,20,7.94,0.74,680,2150,0.0,17.9,27.8,105,35.92,168.4,6,2,3,1,0,17,21.0,3.3114775812967743,79.623138,123.660516,428,3894.700000000001,3.3114775812967743
265,1549479854.8827643,0,16,265,41.94,183.2,98.79551143764364,21,176,54.13841861120001,12,2.6839999999999997,21,7.26,0.97,930,1970,0.0,19.6,29.8,109,38.92,176.1,6,2,3,1,0,17,21.0,2.6772328121653457,87.185112,132.556956,429,3901.800000000001,2.6772328121653457
266,1549479857.9127743,0,16,266,44.97,190.0,210.0502829078531,21,176,37.98596654999999,12,2.385,22,6.99,1.03,1030,1870,0.0,19.5,28.9,110,41.94,183.2,6,2,3,1,0,17,21.0,2.3793661368611403,86.74029,128.553558,430,3908.6000000000013,2.3793661368611403
267,1549479860.942465,0,16,267,48.0,196.8,220.23806521974794,21,176,33.449275036799996,12,2.286,23,6.79,1.03,1030,1830,0.0,22.3,31.1,110,44.97,190.0,6,2,3,1,0,17,21.0,2.2813341241958303,99.195306,138.339642,431,3915.400000000001,2.2813341241958303
268,1549479863.9425352,0,16,268,51.01,203.5,226.93830888977212,21,176,31.428258173199996,12,2.239,24,6.79,0.97,990,1900,594.8,19.9,28.3,111,48.0,196.8,6,2,3,1,0,17,21.0,2.234736748011084,88.51957800000002,125.884626,432,3922.1000000000013,2.234736748011084
269,1549479866.9718955,0,16,269,54.04,210.2,226.93830888977212,21,176,30.84239375,12,2.225,25,6.73,1.06,1080,1810,0.0,23.7,33.5,112,51.01,203.5,6,2,3,1,0,17,21.0,2.2202486678508,105.422814,149.01537,433,3928.800000000001,2.2202486678507998
270,1549479874.0223956,0,17,270,0.32,1.1,226.93830888977212,23,175,48.759924326400004,13,2.592,27,7.31,1.27,920,1740,0.0,80.3,146.0,111,54.04,210.2,6,0,4,0,0,17,23.0,2.5859839668994047,357.192066,649.44012,436,3929.900000000001,2.5859839668994047
271,1549479875.0430956,0,17,271,1.33,5.6,226.93830888977212,0,175,0.0,13,0.0,1,2.79,0.13,680,0,0.0,134.5,216.4,111,0.32,1.1,6,0,4,1,0,17,0.0,inf,598.2855900000002,962.5948080000001,436,3934.400000000001,inf
272,1549479879.785746,0,17,272,6.07,28.7,226.93830888977212,35,174,326.6016836768,1,4.886,4,9.01,1.33,520,1050,0.0,134.5,227.9,113,1.33,5.6,6,0,4,1,0,17,35.0,4.862867146469559,598.2855900000002,1013.7493380000001,439,3957.5000000000014,4.862867146469559
273,1549479882.0929358,0,17,273,8.39,40.5,226.93830888977212,34,173,360.3911714172001,2,5.0489999999999995,5,9.14,1.33,520,1070,0.0,135.6,231.6,112,6.07,28.7,6,0,4,1,0,17,34.0,5.024620641141594,603.178632,1030.207752,440,3969.300000000001,5.024620641141594
274,1549479886.8953755,0,17,274,13.2,65.0,98.71293413384493,34,171,368.80715612160003,4,5.088,8,8.97,1.33,520,1040,0.0,130.2,218.9,111,8.39,40.5,6,0,4,1,0,17,34.0,5.063291139240507,579.1582440000002,973.715358,443,3993.800000000001,5.063291139240507
275,1549479889.1422558,0,17,275,15.44,76.4,98.73872924583023,34,171,367.7209390036001,5,5.083,9,8.9,1.33,530,1020,0.0,126.9,217.0,112,13.2,65.0,6,0,4,1,0,17,34.0,5.0576572931418164,564.4791180000002,965.26374,444,4005.200000000001,5.057657293141816
276,1549479893.915375,0,17,276,20.21,100.6,98.84594620606516,34,171,369.0246559132,7,5.0889999999999995,12,8.9,1.33,520,1020,0.0,130.4,228.9,111,15.44,76.4,6,0,4,1,0,17,34.0,5.064316823660488,580.0478880000003,1018.197558,447,4029.400000000001,5.064316823660488
277,1549479896.1923356,0,17,277,22.5,112.4,98.38739753958995,34,171,369.67766832639984,8,5.092,13,8.76,1.33,520,990,0.0,132.2,228.2,112,20.21,100.6,6,0,4,1,0,17,34.0,5.067396371744199,588.054684,1015.083804,448,4041.200000000001,5.0673963717441985
278,1549479899.1016755,0,17,278,25.38,127.2,98.38739753958995,35,172,381.5639859808,9,5.146,15,8.83,1.33,520,1000,0.0,129.4,219.2,112,22.5,112.4,6,0,4,1,0,17,35.0,5.120327700972863,575.5996680000002,975.049824,449,4056.0000000000014,5.1203277009728625
279,1549479901.2314155,0,17,279,27.53,138.2,98.38739753958995,35,173,378.45824791040025,10,5.1320000000000014,16,8.84,1.3,500,1020,0.0,125.8,220.7,112,25.38,127.2,6,0,4,1,0,17,35.0,5.10673067102441,559.5860759999998,981.7221539999999,451,4067.0000000000014,5.10673067102441
280,1549479910.1439562,0,17,280,37.74,172.1,98.38739753958995,0,176,0.0,12,0.0,21,1.71,0.85,490,0,0.0,19.6,26.6,106,27.53,138.2,6,2,3,1,0,18,0.0,inf,87.185112,118.322652,451,4100.9000000000015,inf
281,1549479913.3222258,0,17,281,40.91,180.1,98.38739753958995,22,177,57.97751942080003,12,2.7460000000000004,22,7.43,0.94,860,1890,0.0,21.0,30.1,110,37.74,172.1,6,2,3,1,0,18,22.0,2.7392757354955357,93.41262,133.891422,452,4108.9000000000015,2.7392757354955353
282,1549479916.3510554,0,17,282,43.94,187.2,98.38739753958995,21,177,45.9379939788,12,2.541,23,7.29,1.03,1000,1920,0.0,19.2,28.1,110,40.91,180.1,6,2,3,1,0,18,21.0,2.5347257426746426,85.405824,124.99498200000001,453,4116.000000000002,2.5347257426746426
283,1549479919.3808653,0,17,283,46.97,194.2,211.2905221566356,21,178,37.3209502708,12,2.371,24,6.86,1.06,1050,1800,0.0,23.0,31.3,110,43.94,187.2,6,2,3,1,0,18,21.0,2.365855966688748,102.30906,139.229286,454,4123.000000000002,2.365855966688748
284,1549479922.4102454,0,17,284,50.0,201.2,219.39609097718986,22,178,33.40539755,12,2.285,25,6.72,1.06,1010,1720,0.0,27.9,39.5,111,46.97,194.2,6,2,3,1,0,18,22.0,2.2801897117840206,124.10533799999999,175.70469,455,4130.000000000002,2.2801897117840206
285,1549479925.4402554,0,17,285,52.99,208.6,216.49894027727063,22,178,35.14523102719999,12,2.324,26,7.02,1.09,1010,1750,0.0,30.3,44.1,111,50.0,201.2,6,2,3,1,0,18,22.0,2.3187868107406207,134.78106599999998,196.166502,456,4137.4000000000015,2.3187868107406207
286,1549479930.4542155,0,17,286,58.02,222.0,216.49894027727063,24,177,46.04655161960001,13,2.543,28,7.49,1.18,910,1610,0.0,48.7,84.0,112,52.99,208.6,6,2,3,1,0,18,24.0,2.5367833587011672,216.62831400000002,373.65048,458,4150.800000000001,2.5367833587011672
287,1549479934.5005956,0,18,287,0.06,0.2,216.49894027727063,24,176,83.98114492040001,13,3.1069999999999998,29,8.28,1.36,840,1650,0.0,96.4,169.3,112,58.02,222.0,6,0,4,0,0,18,24.0,3.0978934324659235,428.808408,753.083646,460,4151.000000000001,3.0978934324659235
288,1549479935.5204554,0,18,288,1.07,4.9,216.49894027727063,0,176,0.0,13,0.0,1,2.8,0.22,620,0,0.0,145.9,239.5,112,0.06,0.2,6,0,4,1,0,18,0.0,inf,648.995298,1065.34869,460,4155.700000000002,inf
289,1549479940.4127154,0,18,289,5.97,29.3,216.49894027727063,34,175,345.81677760000014,1,4.98,4,8.86,1.33,520,1010,0.0,134.7,228.9,113,1.07,4.9,6,0,4,1,0,18,34.0,4.956383822363204,599.1752339999998,1018.197558,463,4180.1,4.956383822363204
290,1549479942.5840359,0,18,290,8.12,40.4,216.49894027727063,35,174,372.95428812040007,2,5.107,5,8.92,1.3,500,1030,0.0,132.6,233.1,112,5.97,29.3,6,0,4,1,0,18,35.0,5.082333807684488,589.833972,1036.880082,464,4191.200000000002,5.082333807684488
291,1549479949.3226461,0,18,291,14.87,74.6,98.56210517506054,33,173,366.63685674559997,5,5.078,9,9.11,1.33,520,1070,0.0,134.4,232.0,111,8.12,40.4,6,0,4,1,0,18,33.0,5.053567818880129,597.840768,1031.98704,468,4225.4000000000015,5.053567818880129
292,1549479951.630166,0,18,292,17.19,86.5,98.84076089644267,33,173,367.5039518304,6,5.082,10,8.97,1.33,520,1030,0.0,124.6,221.8,112,14.87,74.6,6,0,4,1,0,18,33.0,5.0576572931418164,554.248212,986.6151960000001,469,4237.3,5.057657293141816
293,1549479956.3124664,0,18,293,21.85,110.1,99.18459082225357,34,173,367.28705003480013,8,5.081,13,8.83,1.3,520,1030,0.0,125.7,212.9,112,17.19,86.5,6,0,4,1,0,18,34.0,5.056122964910506,559.141254,947.0260380000001,472,4260.9000000000015,5.056122964910506
294,1549479961.442346,0,18,294,26.99,135.9,99.66555332919266,36,174,354.85225206759986,10,5.023,16,8.75,1.33,530,1000,0.0,121.8,218.8,111,21.85,110.1,6,0,4,1,0,18,36.0,4.999000199960007,541.793196,973.270536,475,4286.700000000002,4.999000199960007
295,1549479964.740396,0,18,295,30.29,152.2,98.29277096446779,39,175,357.61456263680014,12,5.0360000000000005,17,8.76,1.36,540,990,0.0,121.9,211.9,111,26.99,135.9,6,2,3,1,0,18,39.0,5.011526510975243,542.238018,942.577818,477,4303.000000000001,5.011526510975243
296,1549479968.7595458,0,18,296,35.7,166.3,102.6279533212022,13,176,357.61456263680014,12,5.0360000000000005,18,19.79,0.65,510,4270,0.0,19.9,33.9,101,30.29,152.2,6,2,3,1,0,19,13.0,5.011526510975243,88.51957800000002,150.794658,478,4317.100000000001,5.011526510975243
297,1549479971.789575,0,18,297,38.72,174.2,125.24486658779628,21,177,186.55601849919975,12,4.053999999999999,19,8.41,0.59,510,2390,0.0,16.0,24.8,104,35.7,166.3,6,2,3,1,0,19,21.0,4.03811985139719,71.17152,110.31585600000001,479,4325.000000000001,4.03811985139719
298,1549479974.8192458,0,18,298,41.75,181.3,171.06109028087238,21,178,59.253575068800004,12,2.766,20,7.24,0.88,850,2050,0.0,16.8,25.0,108,38.72,174.2,6,2,3,1,0,19,21.0,2.7586206896551726,74.730096,111.2055,480,4332.100000000001,2.7586206896551726
299,1549479977.8492262,0,18,299,44.75,187.7,214.71394348703015,20,178,37.795162554799994,12,2.381,21,7.03,0.85,940,2130,0.0,12.4,19.0,108,41.75,181.3,6,2,3,1,0,19,20.0,2.3763129128843685,55.15792800000001,84.51618,481,4338.500000000001,2.3763129128843685
300,1549479980.8491766,0,18,300,47.78,193.7,233.1763931555144,19,178,29.088563190399995,12,2.182,22,6.61,0.91,1060,2080,0.0,16.1,23.5,111,44.75,187.7,6,2,3,1,0,19,19.0,2.177510669802282,71.616342,104.53317,482,4344.500000000001,2.177510669802282
301,1549479983.8790064,0,18,301,50.79,199.8,245.1339563612316,20,178,22.6698766336,12,2.008,23,6.31,0.97,1120,1880,622.4,19.9,28.7,111,47.78,193.7,6,2,3,1,0,19,20.0,2.004249007896741,88.51957800000002,127.663914,483,4350.600000000001,2.004249007896741
302,1549479987.8998563,0,18,302,54.83,208.4,265.35580324262367,21,178,25.562121199999996,12,2.09,24,6.38,1.06,1120,1780,0.0,24.0,31.9,112,50.79,199.8,6,2,3,1,0,19,21.0,2.086027785890108,106.75728000000001,141.89821799999999,484,4359.200000000002,2.086027785890108
303,1549479989.9456866,0,18,303,56.86,213.0,178.15257261496356,21,177,31.59700013960001,12,2.2430000000000003,25,6.75,1.09,1060,1780,0.0,32.7,52.8,111,54.83,208.4,6,2,3,1,0,19,21.0,2.238739142115161,145.456794,234.866016,485,4363.800000000002,2.2387391421151612
304,1549480000.741647,0,19,304,6.23,28.1,122.86398022576246,32,174,282.07018861560005,1,4.6530000000000005,4,9.0,1.33,540,1100,0.0,129.5,218.7,113,56.86,213.0,6,0,4,1,0,19,32.0,4.632203075782843,576.04449,972.825714,491,4391.9000000000015,4.632203075782843
305,1549480003.0180173,0,19,305,8.52,39.5,100.35213983567759,32,173,316.28454397119987,1,4.834,5,9.28,1.33,550,1140,0.0,125.7,220.6,112,6.23,28.1,6,0,4,1,0,19,32.0,4.81139337952271,559.141254,981.277332,492,4403.300000000002,4.81139337952271
306,1549480005.0580273,0,19,306,10.54,49.5,102.03459973128788,32,172,331.23569200119994,2,4.909,6,8.84,1.33,530,1040,0.0,130.5,224.8,112,8.52,39.5,6,0,4,1,0,19,32.0,4.885675200312684,580.49271,999.9598560000001,493,4413.300000000002,4.885675200312684
307,1549480009.860118,0,19,307,15.34,73.5,100.75143366256596,33,170,348.5320570396001,4,4.993,9,9.12,1.3,510,1100,0.0,132.5,224.5,111,10.54,49.5,6,0,4,1,0,19,33.0,4.96869720759217,589.38915,998.62539,496,4437.300000000002,4.96869720759217
308,1549480012.107908,0,19,308,17.58,84.9,100.0105928891014,33,170,355.91298946560005,5,5.0280000000000005,10,9.27,1.36,540,1090,656.1,125.9,231.6,111,15.34,73.5,6,0,4,1,0,19,33.0,5.0035024517162014,560.0308980000002,1030.207752,497,4448.700000000002,5.0035024517162014
309,1549480014.117728,0,19,309,19.61,95.1,99.42845247819356,33,170,355.70067311239995,6,5.027,11,8.97,1.3,510,1070,0.0,135.0,239.2,112,17.58,84.9,6,0,4,1,0,19,33.0,5.003001801080648,600.5097,1064.014224,498,4458.9000000000015,5.003001801080648
310,1549480018.8000574,0,19,310,24.3,118.7,99.42845247819356,33,170,361.03396170239984,8,5.052,14,8.84,1.3,510,1040,0.0,131.9,231.6,112,19.61,95.1,6,0,4,1,0,19,33.0,5.0271465915946125,586.7202179999998,1030.207752,500,4482.500000000002,5.0271465915946125
311,1549480025.188908,0,19,311,30.68,149.8,99.42845247819356,38,172,321.01887079360006,11,4.8580000000000005,17,8.69,1.15,500,1080,0.0,71.0,115.4,111,24.3,118.7,6,2,3,1,0,19,38.0,4.835589941972921,315.82362,513.3245880000002,505,4513.600000000002,4.835589941972921
312,1549480036.287048,0,19,312,41.32,176.9,99.42845247819356,0,175,0.0,12,0.0,18,19.07,0.38,300,4850,0.0,12.5,15.7,104,30.68,149.8,6,2,3,0,0,20,0.0,inf,55.60275,69.83705400000001,505,4540.700000000004,inf
313,1549480039.3175678,0,19,313,36.63,179.2,99.42845247819356,10,175,0.0,12,0.0,19,1.89,1.3,1090,4850,0.0,15.5,21.6,104,41.32,176.9,6,2,3,1,0,20,10.0,inf,68.94740999999999,96.081552,505,4543.000000000003,inf
314,1549480043.337118,0,19,314,40.66,186.3,99.42845247819356,18,176,14.297413334399998,14,1.722,20,5.92,0.88,1140,2120,574.4,15.9,25.4,109,36.63,179.2,6,2,3,1,0,20,18.0,1.71939477303989,70.726698,112.984788,506,4550.100000000003,1.71939477303989
315,1549480049.3970375,0,19,315,46.68,196.8,99.42845247819356,0,175,0.0,13,0.0,21,6.26,0.85,1090,2280,574.4,15.3,21.2,107,40.66,186.3,6,2,11,0,0,20,0.0,inf,68.057766,94.302264,506,4560.600000000003,inf
1 index TimeStamp (sec) activityIdx lapIdx pointIdx ElapsedTime (sec) Horizontal (meters) Stroke500mPace (sec/500m) Cadence (strokes/min) HRCur (bpm) Power (watts) Calories (kCal) Speed (m/sec) StrokeCount StrokeDistance (meters) DriveLength (meters) DriveTime (ms) StrokeRecoveryTime (ms) WorkPerStroke (joules) AverageDriveForce (lbs) PeakDriveForce (lbs) DragFactor ElapsedTimeAtDrive (sec) HorizontalAtDrive (meters) WorkoutType IntervalType WorkoutState RowingState WorkoutDurationType WorkoutIntervalCount Cadence (stokes/min) AverageBoatSpeed (m/s) AverageDriveForce (N) PeakDriveForce (N) Stroke Number cum_dist originalvelo
2 0 1549478848.0 0 0 0 1.96 8.3 132.65593285262034 0 107 149.31618168319997 0 3.764 2 5.23 1.18 550 420 0.0 134.3 220.0 0 0.0 0.0 6 0 4 1 0 0 0.0 3.750656364863851 597.3959460000002 978.6084 0 8.3 3.750656364863851
3 1 1549478852.95111 0 0 1 6.92 33.0 101.3265010923075 35 106 356.97583862360005 1 5.033 5 9.8 1.42 580 1180 0.0 120.9 211.7 113 1.96 8.3 6 0 4 1 0 0 35.0 5.008514474606832 537.789798 941.688174 2 33.0 5.008514474606832
4 2 1549478855.5000894 0 0 2 9.14 44.2 98.48930630467049 31 105 347.9041972 2 4.99 6 9.28 1.39 560 1100 0.0 125.4 213.0 112 6.92 33.0 6 0 4 1 0 0 31.0 4.965736418710895 557.806788 947.47086 4 44.2 4.965736418710895
5 3 1549478857.2996998 0 0 3 11.16 54.2 100.68427622062342 32 105 344.5683427872001 3 4.974 7 8.77 1.33 530 1010 0.0 121.4 210.8 112 9.14 44.2 6 0 4 1 0 0 32.0 4.95000495000495 540.013908 937.684776 5 54.2 4.95000495000495
6 4 1549478859.3995 0 0 4 13.17 64.1 100.72166988141764 34 106 354.00518120519996 4 5.019 8 9.41 1.39 570 1120 0.0 118.7 212.3 111 11.16 54.2 6 0 4 1 0 0 34.0 4.994506043352311 528.0037140000002 944.357106 6 64.1 4.994506043352311
7 5 1549478864.4384801 0 0 5 17.99 88.1 100.44814877712507 32 109 343.73772439999993 6 4.97 11 8.97 1.33 530 1050 0.0 123.1 203.9 111 13.17 64.1 6 0 4 1 0 0 32.0 4.9455984174085055 547.575882 906.992058 9 88.1 4.9455984174085055
8 6 1549478866.5395298 0 0 6 20.23 99.3 100.2756739255448 34 111 355.91298946560005 7 5.0280000000000005 12 9.05 1.33 530 1070 0.0 123.4 207.7 111 17.99 88.1 6 0 4 1 0 0 34.0 5.0035024517162014 548.910348 923.8952939999999 10 99.3 5.0035024517162014
9 7 1549478873.4679606 0 0 7 27.04 133.4 99.95338637059272 33 122 353.79362432959994 10 5.018 16 9.11 1.3 520 1100 0.0 122.3 218.5 111 20.23 99.3 6 0 4 1 0 0 33.0 4.994007191370357 544.017306 971.93607 14 133.4 4.994007191370356
10 8 1549478875.5683405 0 0 8 29.29 144.5 100.666258608367 33 126 343.3229162496 10 4.968 17 9.26 1.36 550 1120 0.0 119.8 211.3 111 27.04 133.4 6 0 4 1 0 0 33.0 4.9441313161277565 532.896756 939.908886 15 144.5 4.9441313161277565
11 9 1549478879.5576403 0 0 9 34.5 161.9 105.3784386241116 26 134 310.8202681248 11 4.806 19 10.46 1.09 600 1690 0.0 35.1 55.4 111 29.29 144.5 6 2 3 1 0 1 26.0 4.783773440489858 156.132522 246.431388 16 161.9 4.783773440489858
12 10 1549478882.37849 0 0 10 37.54 172.5 122.3257923660869 25 140 206.5586134752 12 4.194 20 9.17 1.18 750 1680 0.0 42.0 64.4 111 34.5 161.9 6 2 3 1 0 1 25.0 4.177109440267335 186.82524 286.465368 18 172.5 4.177109440267335
13 11 1549478887.5370796 0 0 11 42.5 188.3 147.32668892240014 24 147 96.38517077559999 13 3.253 22 8.46 1.24 840 1670 0.0 48.5 77.7 111 37.54 172.5 6 2 3 1 0 1 24.0 3.242962770787391 215.73867 345.62669400000016 20 188.3 3.242962770787391
14 12 1549478890.50771 0 0 12 45.6 198.3 161.29529233846918 24 150 88.01749716479999 13 3.156 23 8.68 1.27 850 1690 629.8 54.3 88.3 112 42.5 188.3 6 2 3 1 0 1 24.0 3.1462371004278884 241.538346 392.777826 21 198.3 3.1462371004278884
15 13 1549478895.5824404 0 0 13 50.51 215.0 151.634845084426 25 153 100.80666290239999 14 3.302 25 9.13 1.27 770 1660 0.0 69.6 119.0 112 45.6 198.3 6 2 3 1 0 1 25.0 3.2918559483836987 309.596112 529.33818 23 215.0 3.2918559483836987
16 14 1549478901.5181599 0 0 14 56.67 237.4 139.40183285081355 25 153 134.81745220159996 15 3.638 27 9.42 1.3 750 1660 0.0 72.5 128.3 112 50.51 215.0 6 2 3 1 0 1 25.0 3.625290023201857 322.49595 570.706626 25 237.4 3.625290023201857
17 15 1549478906.55703 0 1 15 60.72 253.4 120.58859661628277 28 152 185.04154901959998 16 4.043 29 9.48 1.36 670 1470 0.0 100.5 172.8 112 56.67 237.4 6 0 4 0 0 1 28.0 4.0273862263391065 447.04611 768.652416 28 253.4 4.0273862263391065
18 16 1549478911.596949 0 1 16 4.88 24.2 106.50291831012812 33 151 319.6331797428 0 4.851 3 9.12 1.33 530 1090 0.0 135.6 229.3 112 0.86 4.2 6 0 4 1 0 1 33.0 4.8285852245292125 603.178632 1019.976846 31 277.6 4.8285852245292125
19 17 1549478913.6067493 0 1 17 6.9 34.2 100.00608092628627 33 151 349.1606718208001 1 4.996 4 9.48 1.33 540 1150 0.0 123.2 228.5 112 4.88 24.2 6 0 4 1 0 1 33.0 4.971661529283087 548.020704 1016.41827 32 287.6 4.971661529283087
20 18 1549478920.3564498 0 1 18 13.62 67.7 100.38718790600149 32 151 346.8594405500001 4 4.985 8 9.25 1.36 540 1100 0.0 125.9 222.5 111 6.9 34.2 6 0 4 1 0 1 32.0 4.961301845604288 560.0308980000002 989.72895 35 321.1 4.961301845604288
21 19 1549478922.6673098 0 1 19 15.96 79.5 100.64126624126705 32 152 349.79004199719986 5 4.999 9 9.25 1.33 540 1120 0.0 128.1 230.7 111 13.62 67.7 6 0 4 1 0 1 32.0 4.975124378109452 569.8169819999998 1026.204354 37 332.9000000000001 4.975124378109452
22 20 1549478924.7074196 0 1 20 17.98 89.6 100.64126624126705 32 153 347.48604316160004 6 4.988 10 9.25 1.33 530 1110 0.0 132.5 234.5 111 15.96 79.5 6 0 4 1 0 1 32.0 4.964257347100874 589.38915 1043.10759 38 343.00000000000006 4.964257347100874
23 21 1549478931.5470805 0 1 21 24.8 123.5 100.64126624126705 32 158 346.8594405500001 9 4.985 14 9.18 1.3 530 1120 0.0 111.3 195.3 111 17.98 89.6 6 0 4 1 0 1 32.0 4.961301845604288 495.08688600000005 868.7373660000003 41 376.9 4.961301845604288
24 22 1549478939.82775 0 1 22 33.26 162.2 100.64126624126705 0 163 0.0 12 0.0 19 1.72 0.94 270 0 0.0 31.1 40.2 251 24.8 123.5 6 2 3 1 0 2 0.0 inf 138.339642 178.81844400000003 41 415.6 inf
25 23 1549478941.83714 0 1 23 35.27 169.2 100.64126624126705 25 165 193.96891652040006 12 4.107 20 9.53 1.09 680 1760 0.0 36.1 51.3 111 33.26 162.2 6 2 3 1 0 2 25.0 4.091318222731363 160.580742 228.19368599999999 42 422.6 4.091318222731363
26 24 1549478946.8464098 0 1 24 40.27 184.7 100.64126624126705 24 166 93.39442688519999 13 3.219 22 8.09 1.15 830 1650 0.0 43.4 66.6 111 35.27 169.2 6 2 3 1 0 2 24.0 3.2092426187419765 193.052748 296.2514520000001 44 438.1 3.2092426187419765
27 25 1549478952.90586 0 1 25 46.36 203.9 162.49207090486172 24 166 88.01749716479999 14 3.156 24 8.26 1.18 790 1660 0.0 53.4 88.0 112 40.27 184.7 6 2 3 1 0 2 24.0 3.1462371004278884 237.53494799999999 391.44336 47 457.3 3.1462371004278884
28 26 1549478954.91695 0 1 26 48.36 210.2 159.29374124798295 24 166 88.01749716479999 14 3.156 25 8.47 1.15 800 1650 0.0 46.8 74.7 111 46.36 203.9 6 2 3 1 0 2 24.0 3.1462371004278884 208.176696 332.282034 47 463.6 3.1462371004278884
29 27 1549478960.9761305 0 1 27 54.4 230.0 159.29374124798295 24 164 97.90419240000001 15 3.27 27 8.77 1.27 810 1670 0.0 69.2 121.9 112 48.36 210.2 6 2 3 1 0 2 24.0 3.260089978483406 307.816824 542.238018 50 483.4 3.260089978483406
30 28 1549478967.0358806 0 2 28 0.23 0.9 159.29374124798295 26 160 134.7063083884 16 3.637 29 9.06 1.3 720 1580 0.0 93.6 155.1 112 54.4 230.0 6 0 4 0 0 2 26.0 3.62476439031463 416.353392 689.918922 52 484.3 3.62476439031463
31 29 1549478968.025881 0 2 29 1.24 5.6 159.29374124798295 0 160 0.0 16 0.0 1 2.58 0.07 570 0 0.0 134.3 216.1 112 0.23 0.9 6 0 4 1 0 2 0.0 inf 597.3959460000002 961.260342 52 489.0 inf
32 30 1549478972.7961304 0 2 30 5.99 28.8 159.29374124798295 35 157 327.40447319999987 1 4.89 4 8.9 1.3 520 1060 0.0 130.6 231.0 112 1.24 5.6 6 0 4 1 0 2 35.0 4.866653688923496 580.937532 1027.53882 55 512.1999999999998 4.866653688923496
33 31 1549478975.0753305 0 2 31 8.29 40.4 159.29374124798295 34 157 345.81677760000014 2 4.98 5 8.83 1.33 520 1020 0.0 125.2 215.8 111 5.99 28.8 6 0 4 1 0 2 34.0 4.956383822363204 556.917144 959.925876 56 523.7999999999998 4.956383822363204
34 32 1549478979.8484 0 2 32 13.05 64.3 100.05449481377292 33 156 354.85225206759986 4 5.023 8 8.89 1.36 550 1020 0.0 120.3 210.5 111 8.29 40.4 6 0 4 1 0 2 33.0 4.999000199960007 535.120866 936.35031 59 547.6999999999998 4.999000199960007
35 33 1549478982.12576 0 2 33 15.34 75.8 99.78757082515793 34 156 356.33787560000013 5 5.03 9 9.04 1.36 560 1050 0.0 121.7 209.7 111 13.05 64.3 6 0 4 1 0 2 34.0 5.006007208650381 541.348374 932.791734 60 559.1999999999998 5.006007208650381
36 34 1549478987.01805 0 2 34 20.22 100.3 99.94815332426852 34 158 356.97583862360005 7 5.033 12 8.96 1.36 540 1040 0.0 124.3 208.5 111 15.34 75.8 6 0 4 1 0 2 34.0 5.009016229212583 552.913746 927.45387 63 583.6999999999998 5.009016229212583
37 35 1549478989.2053 0 2 35 22.39 111.2 99.94815332426852 34 158 352.10420279999994 8 5.01 13 8.97 1.33 530 1050 0.0 124.0 213.7 111 20.22 100.3 6 0 4 1 0 2 34.0 4.985541928407619 551.5792799999998 950.584614 64 594.5999999999998 4.985541928407619
38 36 1549478991.21522 0 2 36 24.41 121.3 99.94815332426852 34 159 352.5260528383999 8 5.012 14 8.68 1.33 530 990 0.0 120.9 209.7 111 22.39 111.2 6 0 4 1 0 2 34.0 4.988028731045491 537.789798 932.791734 65 604.6999999999998 4.988028731045491
39 37 1549479000.0967307 0 2 37 34.24 162.2 99.94815332426852 0 166 0.0 12 0.0 19 8.68 0.2 80 0 0.0 16.5 20.6 111 24.41 121.3 6 2 3 1 0 3 0.0 inf 73.39563000000003 91.633332 65 645.5999999999998 inf
40 38 1549479004.3240206 0 2 38 38.44 175.0 99.94815332426852 23 168 81.65144554560003 12 3.0780000000000003 21 8.45 1.0 750 1840 0.0 25.0 35.1 110 34.24 162.2 6 2 3 1 0 3 23.0 3.069179301454791 111.2055 156.132522 67 658.3999999999999 3.069179301454791
41 39 1549479006.334091 0 2 39 40.45 180.5 99.94815332426852 24 169 81.65144554560003 12 3.0780000000000003 22 7.57 1.06 850 1700 0.0 30.7 43.2 110 38.44 175.0 6 2 3 1 0 3 24.0 3.069179301454791 136.560354 192.163104 68 663.8999999999999 3.069179301454791
42 40 1549479009.3343112 0 2 40 43.47 188.7 176.66984041081193 23 170 59.7691943072 12 2.7739999999999996 23 7.51 1.15 930 1650 0.0 33.3 48.3 111 40.45 180.5 6 2 3 1 0 3 23.0 2.7671702916597494 148.125726 214.84902599999998 69 672.0999999999998 2.7671702916597494
43 41 1549479014.3466713 0 2 41 48.47 202.7 184.2684306970367 24 170 58.167748097200004 13 2.7489999999999997 25 7.76 1.15 880 1660 0.0 41.2 63.2 112 43.47 188.7 6 2 3 1 0 3 24.0 2.7424308907415536 183.266664 281.12750400000004 71 686.0999999999998 2.7424308907415536
44 42 1549479017.4033616 0 2 42 51.55 211.8 179.1105692684151 23 169 64.6130783844 13 2.847 26 8.19 1.18 880 1760 0.0 46.4 78.2 112 48.47 202.7 6 2 3 1 0 3 23.0 2.8396183552930485 206.397408 347.85080400000015 72 695.1999999999997 2.8396183552930485
45 43 1549479023.4626818 0 2 43 57.58 231.1 141.8712484238664 25 168 96.29630922239998 14 3.252 28 8.48 1.21 780 1620 0.0 63.2 109.9 112 51.55 211.8 6 2 3 1 0 3 25.0 3.2417012448132785 281.12750400000004 488.85937800000005 75 714.4999999999999 3.2417012448132785
46 44 1549479029.2558513 0 3 44 2.36 11.1 116.02691746025506 0 166 293.30992976320005 0 4.7139999999999995 2 8.26 1.36 570 1010 0.0 130.9 222.0 112 57.58 231.1 6 0 4 1 0 3 0.0 4.692192192192191 582.271998 987.5048400000001 75 725.5999999999997 4.692192192192191
47 45 1549479031.5324614 0 3 45 4.63 22.5 102.72408173528656 34 165 282.98048327360004 0 4.658 3 8.56 1.36 540 970 0.0 132.5 232.9 112 2.36 11.1 6 0 4 1 0 3 34.0 4.637358560563904 589.38915 1035.990438 76 736.9999999999999 4.637358560563904
48 46 1549479038.315342 0 3 46 11.43 56.5 102.19628556484686 33 162 353.15945944999993 3 5.015 7 9.33 1.39 560 1100 0.0 125.0 220.0 112 4.63 22.5 6 0 4 1 0 3 33.0 4.99001996007984 556.0275 978.6084 80 770.9999999999999 4.99001996007984
49 47 1549479040.5921216 0 3 47 13.7 67.9 99.83502731226395 32 162 350.6303780756 4 5.003 8 9.18 1.33 530 1100 0.0 125.8 217.4 111 11.43 56.5 6 0 4 1 0 3 32.0 4.979087831109339 559.5860759999998 967.043028 81 782.3999999999999 4.979087831109339
50 48 1549479042.602132 0 3 48 15.71 77.9 100.5114976405767 33 161 348.95104965 5 4.995 9 9.18 1.36 540 1090 641.5 126.3 221.0 111 13.7 67.9 6 0 4 1 0 3 33.0 4.970673029128144 561.810186 983.05662 82 792.3999999999999 4.970673029128144
51 49 1549479047.405393 0 3 49 20.52 102.0 100.18124808308373 33 160 353.15945944999993 7 5.015 12 9.03 1.36 540 1050 0.0 126.9 223.2 111 15.71 77.9 6 0 4 1 0 3 33.0 4.9905180157700375 564.4791180000002 992.8427039999999 85 816.4999999999999 4.9905180157700375
52 50 1549479049.651593 0 3 50 22.78 113.5 99.66065863380624 33 161 359.1078806196 8 5.043 13 9.04 1.33 540 1060 0.0 125.1 227.2 111 20.52 102.0 6 0 4 1 0 3 33.0 5.019072475406545 556.472322 1010.635584 86 827.9999999999999 5.019072475406545
53 51 1549479054.544043 0 3 51 27.66 138.1 97.45550698477057 34 163 361.8922037248 10 5.056 16 9.04 1.36 550 1040 0.0 120.1 209.9 111 22.78 113.5 6 0 4 1 0 3 34.0 5.031699708161416 534.231222 933.681378 89 852.5999999999997 5.031699708161416
54 52 1549479056.7020133 0 3 52 29.82 149.0 105.75935195343763 34 165 361.03396170239984 11 5.052 17 8.82 1.33 530 1020 0.0 122.4 214.1 111 27.66 138.1 6 0 4 1 0 3 34.0 5.027652086475616 544.462128 952.3639019999999 90 863.4999999999999 5.027652086475616
55 53 1549479061.7418034 0 3 53 35.57 168.8 117.73925694734153 24 168 161.9125630164 13 3.867 19 10.09 0.71 480 2010 0.0 26.0 36.6 105 29.82 149.0 6 2 3 1 0 4 24.0 3.8529706403637203 115.65372 162.804852 92 883.3 3.85297064036372
56 54 1549479063.7810733 0 3 54 37.59 174.9 143.83018527316338 24 169 161.9125630164 13 3.867 20 8.62 1.06 770 1780 0.0 26.0 38.4 111 35.57 168.8 6 2 3 1 0 4 24.0 3.8529706403637203 115.65372 170.811648 93 889.4 3.85297064036372
57 55 1549479069.8114536 0 3 55 43.62 191.9 163.65382281934743 24 172 60.61344072839999 13 2.787 22 7.46 1.12 880 1610 626.1 35.2 51.0 111 37.59 174.9 6 2 3 1 0 4 24.0 2.7797854005670763 156.57734399999995 226.85922 95 906.4 2.7797854005670763
58 56 1549479071.8212936 0 3 56 45.65 197.6 186.14054465270485 24 172 60.61344072839999 13 2.787 23 7.53 1.12 880 1630 626.1 37.4 53.7 111 43.62 191.9 6 2 3 1 0 4 24.0 2.7797854005670763 166.363428 238.869414 96 912.1 2.7797854005670763
59 57 1549479074.8515835 0 3 57 48.67 206.2 179.26892650689143 24 173 61.00575951960001 13 2.793 24 7.76 1.18 910 1640 626.1 39.0 60.1 112 45.65 197.6 6 2 3 1 0 4 24.0 2.785825718743036 173.48058 267.338022 97 920.7 2.785825718743036
60 58 1549479077.8816233 0 3 58 51.69 215.0 179.23415784234032 23 173 63.52982213480002 13 2.8310000000000004 25 7.98 1.21 920 1670 0.0 41.4 65.4 112 48.67 206.2 6 2 3 1 0 4 23.0 2.8232636928289105 184.156308 290.913588 98 929.5 2.8232636928289105
61 59 1549479079.8917835 0 3 59 53.7 220.9 175.59027461584682 24 172 67.37493868840001 14 2.887 26 7.9 1.15 860 1650 0.0 41.9 63.4 112 51.69 215.0 6 2 3 1 0 4 24.0 2.8791892203155602 186.380418 282.017148 99 935.4 2.87918922031556
62 60 1549479086.9423435 0 4 60 0.03 242.9 137.73075816772982 27 171 104.60854489959999 15 3.343 28 8.48 1.3 770 1450 626.1 86.9 151.0 112 53.7 220.9 6 0 4 0 0 4 27.0 3.332888948140248 386.550318 671.68122 102 957.4 3.332888948140248
63 61 1549479094.6538627 0 4 61 7.68 36.9 109.55454665482051 33 168 341.04743538040003 2 4.957 5 9.05 1.33 550 1080 0.0 123.2 217.8 111 0.99 4.5 6 0 4 1 0 4 33.0 4.932912391475926 548.020704 968.822316 107 994.3 4.932912391475926
64 62 1549479097.020943 0 4 62 10.06 48.9 98.05076546530029 33 167 346.2335916704 2 4.982 6 9.12 1.36 560 1080 0.0 125.8 226.6 111 7.68 36.9 6 0 4 1 0 4 33.0 4.958349861166203 559.5860759999998 1007.966652 108 1006.3 4.958349861166203
65 63 1549479103.7711036 0 4 63 16.79 82.6 100.4690802771618 33 164 353.5821517564001 5 5.0169999999999995 10 9.24 1.39 560 1090 0.0 126.8 219.0 111 10.06 48.9 6 0 4 1 0 4 33.0 4.993009786299182 564.034296 974.16018 112 1040.0 4.993009786299182
66 64 1549479106.1109633 0 4 64 19.14 94.5 100.4690802771618 32 164 349.79004199719986 6 4.999 11 8.82 1.33 520 1020 0.0 127.1 215.3 111 16.79 82.6 6 0 4 1 0 4 32.0 4.975124378109452 565.3687620000002 957.701766 113 1051.9 4.975124378109452
67 65 1549479110.763254 0 4 65 23.8 118.2 100.4690802771618 34 165 362.3218343136 8 5.058 14 8.98 1.33 520 1040 0.0 129.9 226.9 112 19.14 94.5 6 0 4 1 0 4 34.0 5.0337259639585215 577.8237780000002 1009.301118 116 1075.6 5.0337259639585215
68 66 1549479120.062835 0 4 66 34.19 162.4 100.4690802771618 0 169 0.0 12 0.0 19 9.18 0.23 110 0 0.0 22.3 26.6 111 23.8 118.2 6 2 3 1 0 5 0.0 inf 99.195306 118.322652 116 1119.8000000000004 inf
69 67 1549479123.091665 0 4 67 37.2 172.1 100.4690802771618 24 170 0.0 12 0.0 21 8.71 1.0 720 1810 0.0 23.8 32.4 251 34.19 162.4 6 2 3 1 0 5 24.0 inf 105.867636 144.12232799999995 117 1129.5000000000002 inf
70 68 1549479126.240775 0 4 68 40.35 181.1 100.4690802771618 23 172 92.0086899956 12 3.2030000000000003 22 7.79 1.09 860 1700 0.0 27.2 37.7 110 37.2 172.1 6 2 3 1 0 5 23.0 3.1930519190242035 120.991584 167.69789400000005 118 1138.5000000000002 3.1930519190242035
71 69 1549479132.3000453 0 4 69 46.41 197.3 100.4690802771618 23 173 52.63965610119998 13 2.659 24 7.24 1.18 980 1580 622.8 31.6 46.2 112 40.35 181.1 6 2 3 1 0 5 23.0 2.652660618600456 140.56375200000002 205.507764 120 1154.7000000000005 2.652660618600456
72 70 1549479134.3098354 0 4 70 48.41 202.8 193.01881949614582 24 173 52.63965610119998 13 2.659 25 7.18 1.12 900 1560 0.0 39.4 57.2 112 46.41 197.3 6 2 3 1 0 5 24.0 2.652660618600456 175.25986799999995 254.438184 121 1160.2000000000005 2.652660618600456
73 71 1549479137.3397849 0 4 71 51.44 211.3 187.42866564472337 23 172 55.9123070716 13 2.713 26 7.9 1.18 920 1710 0.0 38.6 58.3 111 48.41 202.8 6 2 3 1 0 5 23.0 2.7066529529583723 171.701292 259.331226 122 1168.7000000000005 2.7066529529583723
74 72 1549479143.398866 0 4 72 57.49 229.8 150.352801535995 23 170 80.46351893159999 14 3.063 28 8.48 1.3 880 1720 0.0 63.1 110.2 112 51.44 211.3 6 2 3 1 0 5 23.0 3.0543677458766036 280.682682 490.193844 125 1187.2000000000005 3.054367745876604
75 73 1549479149.402456 0 5 73 2.31 10.0 125.9927614501435 0 168 239.98181180119994 0 4.409 2 8.13 1.42 650 1060 0.0 133.5 228.7 112 57.49 229.8 6 0 4 1 0 5 0.0 4.390201071209061 593.83737 1017.307914 125 1197.2000000000005 4.390201071209061
76 74 1549479151.4390259 0 5 74 4.37 20.1 108.4383635495973 31 167 216.92221445159998 0 4.263 3 8.13 1.36 550 920 0.0 129.5 222.3 113 2.31 10.0 6 0 4 1 0 5 31.0 4.24520292069961 576.04449 988.8393060000001 126 1207.3000000000004 4.24520292069961
77 75 1549479156.3329265 0 5 75 9.25 44.8 103.24350694455349 35 165 370.5495492608 2 5.096 6 8.92 1.33 520 1030 0.0 126.2 212.1 112 4.37 20.1 6 0 4 1 0 5 35.0 5.070479667376534 561.365364 943.467462 128 1232.0000000000002 5.070479667376534
78 76 1549479158.4898968 0 5 76 11.42 55.9 97.68056245249096 34 164 365.98743125 3 5.075 7 9.05 1.33 520 1060 0.0 130.1 221.5 112 9.25 44.8 6 0 4 1 0 5 34.0 5.05050505050505 578.7134219999998 985.2807300000001 130 1243.1 5.05050505050505
79 77 1549479160.5292766 0 5 77 13.45 66.1 99.42670610329952 33 164 360.3911714172001 4 5.0489999999999995 8 9.27 1.33 520 1110 0.0 131.2 227.4 112 11.42 55.9 6 0 4 1 0 5 33.0 5.024620641141594 583.606464 1011.525228 131 1253.3000000000004 5.024620641141594
80 78 1549479165.2724867 0 5 78 18.2 90.1 99.15199769918665 34 162 362.9669175468 6 5.061 11 9.04 1.36 530 1030 0.0 126.9 219.2 111 13.45 66.1 6 0 4 1 0 5 34.0 5.036261079774375 564.4791180000002 975.049824 133 1277.3000000000004 5.036261079774375
81 79 1549479167.5792165 0 5 79 20.5 101.9 98.61600009329395 34 162 372.51629135000013 7 5.105 12 9.11 1.33 520 1070 0.0 131.8 223.2 111 18.2 90.1 6 0 4 1 0 5 34.0 5.079752108097124 586.2753960000001 992.8427039999999 135 1289.1 5.079752108097124
82 80 1549479172.3527064 0 5 80 25.29 126.2 98.54165660549828 34 163 371.2043588372 9 5.099 15 8.97 1.33 520 1040 0.0 126.9 227.2 111 20.5 101.9 6 0 4 1 0 5 34.0 5.0735667174023344 564.4791180000002 1010.635584 138 1313.4 5.0735667174023344
83 81 1549479174.6291163 0 5 81 27.55 137.7 98.54165660549828 34 164 365.5549072476001 10 5.073 16 8.96 1.33 540 1040 0.0 119.0 210.8 111 25.29 126.2 6 0 4 1 0 5 34.0 5.047955577990914 529.33818 937.684776 139 1324.9 5.047955577990914
84 82 1549479176.6390266 0 5 82 29.57 147.8 98.54165660549828 34 165 361.2483948556 11 5.053 17 8.83 1.36 540 1010 0.0 123.0 217.7 112 27.55 137.7 6 0 4 1 0 5 34.0 5.028157683024942 547.1310599999998 968.377494 140 1335.0000000000002 5.028157683024941
85 83 1549479180.5998766 0 5 83 34.83 162.9 98.54165660549828 23 168 0.0 11 0.0 19 10.17 0.82 560 2100 0.0 25.2 34.8 103 29.57 147.8 6 2 3 1 0 6 23.0 inf 112.095144 154.798056 141 1350.1 inf
86 84 1549479183.6885474 0 5 84 37.91 172.2 98.54165660549828 23 169 133.26699294719998 12 3.6239999999999997 20 8.45 1.12 840 1770 0.0 25.9 37.7 110 34.83 162.9 6 2 3 1 0 6 23.0 3.6114120621162877 115.208898 167.69789400000005 143 1359.4 3.611412062116288
87 85 1549479186.7187572 0 5 85 40.94 180.9 98.54165660549828 24 171 79.13119574080002 12 3.0460000000000003 21 7.58 1.15 890 1600 0.0 37.4 55.2 111 37.91 172.2 6 2 3 1 0 6 24.0 3.037667071688944 166.363428 245.541744 144 1368.1 3.0376670716889436
88 86 1549479189.7486572 0 5 86 43.95 189.4 176.1480063713816 22 172 64.47700315 12 2.845 22 8.17 1.24 970 1720 622.8 34.3 51.1 112 40.94 180.9 6 2 3 1 0 6 22.0 2.837684449489217 152.57394599999995 227.304042 145 1376.6 2.837684449489217
89 87 1549479191.7585769 0 5 87 45.97 195.2 177.51657845965568 24 173 64.34111909960001 12 2.843 23 7.68 1.18 910 1600 622.8 37.7 57.2 111 43.95 189.4 6 2 3 1 0 6 24.0 2.8351100022680877 167.69789400000005 254.438184 146 1382.4 2.835110002268088
90 88 1549479194.7885673 0 5 88 49.0 204.1 176.06353913713593 23 173 64.88580294280004 13 2.8510000000000004 24 7.97 1.24 920 1640 0.0 46.7 73.2 112 45.97 195.2 6 2 3 1 0 6 23.0 2.8438175406665915 207.731874 325.609704 147 1391.3000000000006 2.8438175406665915
91 89 1549479197.8184676 0 5 89 52.01 213.5 171.63882883684357 24 174 68.35986836279999 13 2.9010000000000002 25 8.05 1.21 820 1630 0.0 56.4 93.3 112 49.0 204.1 6 2 3 1 0 6 24.0 2.8931836592986926 250.879608 415.01892599999996 148 1400.7000000000005 2.8931836592986926
92 90 1549479199.8286676 0 5 90 54.03 219.9 163.84071777653813 24 173 80.77916493640001 13 3.0669999999999997 26 8.62 1.24 840 1680 0.0 49.9 81.5 112 52.01 213.5 6 2 3 1 0 6 24.0 3.058478101296795 221.96617799999999 362.52993 149 1407.1000000000006 3.058478101296795
93 91 1549479202.8584974 0 5 91 57.06 229.6 163.84071777653813 24 173 91.0639908864 14 3.1919999999999997 27 8.63 1.18 790 1730 622.8 51.5 79.4 112 54.03 219.9 6 2 3 1 0 6 24.0 3.1826861871419485 229.08333 353.188668 150 1416.8000000000006 3.1826861871419485
94 92 1549479205.8582573 0 5 92 60.08 239.6 163.84071777653813 24 172 91.4925938444 14 3.197 28 8.62 1.27 820 1630 0.0 64.1 110.9 112 57.06 229.6 6 2 3 1 0 6 24.0 3.1873525849429463 285.130902 493.30759800000004 151 1426.8000000000006 3.1873525849429463
95 93 1549479207.8981276 0 6 93 0.72 3.3 163.84071777653813 0 171 0.0 15 0.0 1 1.08 1.3 230 0 0.0 72.8 142.3 112 60.08 239.6 6 0 4 1 0 6 0.0 inf 323.830416 632.9817059999998 151 1430.1000000000006 inf
96 94 1549479212.549908 0 6 94 5.4 26.3 163.84071777653813 36 169 338.78203110080034 1 4.9460000000000015 4 8.7 1.36 520 960 0.0 133.7 226.9 112 0.72 3.3 6 0 4 1 0 6 36.0 4.922228785193936 594.7270139999998 1009.301118 154 1453.1000000000006 4.922228785193936
97 95 1549479219.6307778 0 6 95 12.48 62.5 163.84071777653813 33 166 370.33145065 4 5.095 8 9.18 1.36 540 1080 0.0 128.8 226.7 111 5.4 26.3 6 0 4 1 0 6 33.0 5.0699655242344335 572.930736 1008.411474 158 1489.3000000000006 5.069965524234434
98 96 1549479221.997058 0 6 96 14.84 74.5 99.06436627516057 33 165 356.97583862360005 5 5.033 9 8.96 1.33 520 1040 0.0 126.2 211.6 111 12.48 62.5 6 0 4 1 0 6 33.0 5.00801282051282 561.365364 941.243352 159 1501.3000000000006 5.00801282051282
99 97 1549479226.7673078 0 6 97 19.59 98.6 99.15881580288901 33 165 366.8535025091999 7 5.079 12 9.03 1.33 520 1050 0.0 128.6 225.5 111 14.84 74.5 6 0 4 1 0 6 33.0 5.053567818880129 572.0410919999998 1003.07361 162 1525.4000000000005 5.053567818880129
100 98 1549479229.0469475 0 6 98 21.89 110.3 98.79608507425536 34 166 369.67766832639984 8 5.092 13 9.04 1.36 530 1040 0.0 128.1 229.2 111 19.59 98.6 6 0 4 1 0 6 34.0 5.06636943965954 569.8169819999998 1019.532024 163 1537.1000000000006 5.06636943965954
101 99 1549479233.8491776 0 6 99 26.7 134.6 98.79608507425536 34 167 362.9669175468 10 5.061 16 8.9 1.33 530 1030 0.0 122.2 218.4 111 21.89 110.3 6 0 4 1 0 6 34.0 5.036261079774375 543.572484 971.491248 166 1561.4000000000005 5.036261079774375
102 100 1549479236.0963378 0 6 100 28.94 145.9 98.79608507425536 34 168 358.68079497880007 11 5.041 17 8.97 1.36 560 1040 0.0 115.2 204.2 111 26.7 134.6 6 0 4 1 0 6 34.0 5.0165546302799235 512.4349440000002 908.326524 167 1572.7000000000005 5.016554630279924
103 101 1549479243.146148 0 6 101 37.63 174.1 98.79608507425536 0 172 0.0 13 0.0 21 1.84 0.94 430 0 0.0 24.5 33.3 251 28.94 145.9 6 2 3 1 0 7 0.0 inf 108.98139 148.125726 167 1600.9000000000005 inf
104 102 1549479245.186348 0 6 102 39.65 179.9 98.79608507425536 23 173 0.0 13 0.0 22 8.23 1.06 810 1800 0.0 26.5 36.0 110 37.63 174.1 6 2 3 1 0 7 23.0 inf 117.87783 160.13592 168 1606.7000000000005 inf
105 103 1549479248.185868 0 6 103 42.68 188.3 98.79608507425536 24 174 73.65138598720002 13 2.9739999999999998 23 7.5 1.12 900 1630 0.0 29.9 41.7 110 39.65 179.9 6 2 3 1 0 7 24.0 2.965423165885772 133.001778 185.490774 169 1615.1000000000006 2.965423165885772
106 104 1549479251.2157679 0 6 104 45.7 196.5 98.79608507425536 23 175 59.44658330520001 13 2.7689999999999997 24 7.51 1.21 980 1590 630.4 31.6 45.4 111 42.68 188.3 6 2 3 1 0 7 23.0 2.7622783271642453 140.56375200000002 201.949188 170 1623.3000000000006 2.7622783271642453
107 105 1549479256.2554884 0 6 105 50.72 210.3 180.186693945168 24 176 57.157987143599996 13 2.733 26 7.46 1.15 930 1600 630.4 33.1 46.5 112 45.7 196.5 6 2 3 1 0 7 24.0 2.7262813522355507 147.236082 206.84223 172 1637.1000000000006 2.7262813522355507
108 106 1549479262.315248 0 6 106 56.77 228.0 174.10425860796758 24 176 72.24877484999998 14 2.955 28 7.83 1.21 880 1590 0.0 50.8 79.7 112 50.72 210.3 6 2 3 1 0 7 24.0 2.947070611811859 225.969576 354.523134 175 1654.8000000000006 2.947070611811859
109 107 1549479264.325078 0 6 107 58.79 234.4 173.64557501808972 25 176 72.24877484999998 14 2.955 29 8.12 1.18 780 1640 0.0 61.4 105.1 112 56.77 228.0 6 2 3 1 0 7 25.0 2.947070611811859 273.120708 467.507922 176 1661.2000000000005 2.947070611811859
110 108 1549479268.1058881 0 7 108 60.95 241.7 144.6978044900461 26 175 86.3547424768 14 3.136 30 8.55 1.24 760 1590 0.0 78.6 136.6 112 58.79 234.4 6 0 4 0 0 7 26.0 3.126367785906334 349.630092 607.626852 177 1668.5000000000007 3.126367785906334
111 109 1549479272.7540984 0 7 109 4.14 19.8 115.03403268701702 37 173 289.77760665 0 4.695 3 8.64 1.36 540 990 0.0 132.1 222.0 113 0.0 0.0 6 0 4 1 0 7 37.0 4.6742077217911575 587.609862 987.5048400000001 180 1688.3000000000006 4.6742077217911575
112 110 1549479274.8552186 0 7 110 6.38 31.2 99.16816928540692 34 172 342.49430136320007 1 4.9639999999999995 4 8.93 1.36 540 1020 0.0 127.3 217.4 112 4.14 19.8 6 0 4 1 0 7 34.0 4.940223298093074 566.2584059999998 967.043028 181 1699.7000000000005 4.940223298093074
113 111 1549479277.6445086 0 7 111 9.27 46.0 98.24921611803823 36 171 376.2502123744001 2 5.122000000000001 6 8.7 1.36 540 960 0.0 127.9 223.1 112 6.38 31.2 6 0 4 1 0 7 36.0 5.0968399592252815 568.9273380000002 992.397882 183 1714.5000000000007 5.0968399592252815
114 112 1549479279.7751086 0 7 112 11.43 57.2 97.26799680220759 36 171 383.7927419648003 3 5.1560000000000015 7 8.97 1.33 520 1030 0.0 124.0 216.1 111 9.27 46.0 6 0 4 1 0 7 36.0 5.129783523135324 551.5792799999998 961.260342 184 1725.7000000000005 5.129783523135324
115 113 1549479281.6652482 0 7 113 13.43 67.3 98.32785644914551 34 171 380.45285101879995 4 5.141 8 9.18 1.36 540 1070 0.0 124.4 214.4 111 11.43 57.2 6 0 4 1 0 7 34.0 5.115089514066496 553.358568 953.698368 185 1735.8000000000006 5.115089514066496
116 114 1549479286.7937374 0 7 114 18.22 91.3 98.86188174627543 33 170 356.12539028919997 6 5.029 11 8.89 1.33 530 1030 0.0 124.4 214.5 111 13.43 67.3 6 0 4 1 0 7 33.0 5.004504053648284 553.358568 954.14319 188 1759.8000000000006 5.004504053648284
117 115 1549479291.9233873 0 7 115 23.33 117.4 98.86188174627543 37 169 377.1323930528 9 5.126 14 9.06 1.36 530 1040 0.0 130.1 224.8 112 18.22 91.3 6 0 4 1 0 7 37.0 5.100479445067836 578.7134219999998 999.9598560000001 191 1785.9000000000005 5.100479445067836
118 116 1549479294.1443176 0 7 116 25.53 128.7 98.86188174627543 34 169 374.05078179839995 9 5.112 15 8.83 1.36 550 990 0.0 121.3 225.6 112 23.33 117.4 6 0 4 1 0 7 34.0 5.0864699898270604 539.5690860000002 1003.518432 193 1797.2000000000005 5.0864699898270604
119 117 1549479301.7035573 0 7 117 35.1 164.1 98.86188174627543 0 171 0.0 12 0.0 20 1.5 0.82 280 0 0.0 25.2 36.1 251 25.53 128.7 6 2 3 1 0 8 0.0 inf 112.095144 160.580742 193 1832.6000000000006 inf
120 118 1549479307.6439269 0 7 118 41.13 181.3 98.86188174627543 23 173 60.157865599999994 12 2.78 22 7.88 1.09 910 1740 0.0 26.0 36.6 110 35.1 164.1 6 2 3 1 0 8 23.0 2.772694504519492 115.65372 162.804852 195 1849.8000000000006 2.772694504519492
121 119 1549479309.7440276 0 7 119 43.13 186.6 98.86188174627543 23 174 60.157865599999994 12 2.78 23 7.52 1.15 950 1710 0.0 32.2 47.6 111 41.13 181.3 6 2 3 1 0 8 23.0 2.772694504519492 143.232684 211.735272 196 1855.1000000000006 2.772694504519492
122 120 1549479312.6838775 0 7 120 46.17 194.7 186.43004113504463 23 174 52.63965610119998 12 2.659 24 7.53 1.12 960 1680 634.2 29.3 42.6 111 43.13 186.6 6 2 3 1 0 8 23.0 2.652379184128163 130.33284600000002 189.494172 197 1863.2000000000005 2.652379184128163
123 121 1549479315.7127974 0 7 121 49.18 202.8 188.33386705612926 22 175 52.99680295 13 2.665 25 7.61 1.15 940 1760 634.2 35.7 54.2 112 46.17 194.7 6 2 3 1 0 8 22.0 2.658160552897395 158.801454 241.09352400000003 198 1871.3000000000006 2.658160552897395
124 122 1549479321.772868 0 7 122 55.23 219.2 193.3974438021767 23 175 54.99001869759999 13 2.698 27 7.62 1.18 950 1680 634.2 37.4 55.1 112 49.18 202.8 6 2 3 1 0 8 23.0 2.6912105064858176 166.363428 245.096922 200 1887.7000000000005 2.6912105064858176
125 123 1549479323.782708 0 7 123 57.25 224.9 168.53445943801069 23 174 54.99001869759999 13 2.698 28 7.77 1.15 890 1700 0.0 44.8 72.9 113 55.23 219.2 6 2 3 1 0 8 23.0 2.6912105064858176 199.280256 324.275238 201 1893.4000000000005 2.6912105064858176
126 124 1549479330.7713375 0 8 124 2.64 10.8 142.04130433505438 0 172 159.4133139844 0 3.847 2 7.7 1.42 670 1000 0.0 133.3 229.5 113 57.25 224.9 6 0 4 1 0 8 0.0 3.832886163280951 592.9477260000001 1020.86649 201 1904.2000000000005 3.832886163280951
127 125 1549479332.8413575 0 8 125 4.74 21.0 114.67553878590687 32 172 191.85137072639992 0 4.092 3 7.98 1.36 560 910 0.0 131.2 230.9 113 2.64 10.8 6 0 4 1 0 8 32.0 4.076308495026904 583.606464 1027.093998 202 1914.4000000000005 4.076308495026904
128 126 1549479339.5611475 0 8 126 11.43 54.6 104.22423631748958 34 169 361.67751584999985 3 5.055 7 8.98 1.33 530 1050 0.0 124.0 220.0 112 4.74 21.0 6 0 4 1 0 8 34.0 5.0306871918704115 551.5792799999998 978.6084 206 1948.0000000000007 5.030687191870411
129 127 1549479341.9317575 0 8 127 13.81 66.6 98.36500120275343 34 168 353.79362432959994 4 5.018 8 9.27 1.36 560 1110 0.0 127.3 217.9 111 11.43 54.6 6 0 4 1 0 8 34.0 4.994007191370357 566.2584059999998 969.267138 207 1960.0000000000007 4.994007191370356
130 128 1549479348.7105875 0 8 128 20.57 100.3 100.30928651788004 32 167 352.3150857268 7 5.011 12 9.03 1.3 510 1080 0.0 126.3 225.6 111 13.81 66.6 6 0 4 1 0 8 32.0 4.986536351850005 561.810186 1003.518432 211 1993.7000000000005 4.986536351850005
131 129 1549479350.9908376 0 8 129 22.88 112.0 99.92014109454536 33 168 352.7371041516 8 5.013 13 9.05 1.36 540 1060 0.0 124.0 214.7 111 20.57 100.3 6 0 4 1 0 8 33.0 4.989024146876871 551.5792799999998 955.032834 212 2005.4000000000005 4.989024146876871
132 130 1549479355.7895775 0 8 130 27.66 135.9 100.03256520932176 34 169 356.33787560000013 10 5.03 16 8.83 1.36 560 1020 0.0 111.3 196.9 112 22.88 112.0 6 0 4 1 0 8 34.0 5.005005005005005 495.08688600000005 875.854518 215 2029.3000000000006 5.005005005005005
133 131 1549479359.809498 0 8 131 32.31 154.4 102.2877264339605 30 170 326.80225788839994 11 4.887 18 9.69 0.56 300 1710 0.0 25.7 34.0 111 27.66 135.9 6 2 3 1 0 9 30.0 4.863340142009532 114.319254 151.23948000000001 217 2047.8000000000006 4.863340142009532
134 132 1549479363.079078 0 8 132 35.6 165.4 114.7084657787948 23 172 253.45277720000004 12 4.49 19 9.38 0.68 530 2080 0.0 23.1 34.7 104 32.31 154.4 6 2 3 1 0 9 23.0 4.470272686633885 102.753882 154.35323400000001 218 2058.800000000001 4.470272686633885
135 133 1549479366.1086378 0 8 133 38.61 173.9 143.63756837345758 23 173 115.3785378592 12 3.4539999999999997 20 8.1 1.03 800 1830 0.0 24.7 37.2 110 35.6 165.4 6 2 3 1 0 9 23.0 3.442340791738382 109.871034 165.47378400000005 219 2067.300000000001 3.442340791738382
136 134 1549479368.1495378 0 8 134 40.64 179.3 178.0755253512805 23 173 55.234962742399986 12 2.702 21 7.59 1.12 950 1670 0.0 27.2 37.3 111 38.61 173.9 6 2 3 1 0 9 23.0 2.695708432175976 120.991584 165.91860599999995 220 2072.7000000000007 2.695708432175976
137 135 1549479371.1490073 0 8 135 43.64 187.1 191.2587561185448 22 174 55.234962742399986 12 2.702 22 7.46 1.09 970 1730 0.0 23.0 34.1 111 40.64 179.3 6 2 3 1 0 9 22.0 2.695708432175976 102.30906 151.684302 221 2080.5000000000014 2.695708432175976
138 136 1549479374.1787474 0 8 136 46.67 194.8 194.44852130900864 22 174 49.55429084480002 12 2.6060000000000003 23 7.32 1.12 1000 1730 0.0 30.5 42.7 112 43.64 187.1 6 2 3 1 0 9 22.0 2.599968800374396 135.67071 189.938994 222 2088.2000000000007 2.5999688003743957
139 137 1549479377.1785874 0 8 137 49.69 202.7 190.49156986745305 23 175 44.915193814399984 12 2.522 24 7.33 1.12 960 1690 0.0 35.2 51.4 112 46.67 194.8 6 2 3 1 0 9 23.0 2.5163563160543534 156.57734399999995 228.638508 223 2096.1000000000013 2.5163563160543534
140 138 1549479382.250168 0 8 138 54.74 216.9 180.51189740705837 23 174 67.8662123552 13 2.8939999999999997 26 7.98 1.18 880 1700 0.0 49.7 80.4 112 49.69 202.7 6 2 3 1 0 9 23.0 2.8863360849737347 221.076534 357.63688800000006 225 2110.300000000001 2.8863360849737347
141 139 1549479385.2482386 0 8 139 57.76 226.3 177.43296889312614 23 174 67.8662123552 13 2.8939999999999997 27 8.42 1.24 850 1730 0.0 55.2 96.0 112 54.74 216.9 6 2 3 1 0 9 23.0 2.8863360849737347 245.541744 427.02912000000003 227 2119.7000000000007 2.8863360849737347
142 140 1549479388.2853491 0 9 140 59.99 233.9 146.2984238901729 26 173 80.2273248 14 3.06 28 8.35 1.36 790 1490 0.0 95.8 173.4 113 57.76 226.3 6 0 4 0 0 9 26.0 3.051199121254653 426.139476 771.3213480000003 228 2127.300000000001 3.0511991212546534
143 141 1549479393.108549 0 9 141 4.27 20.6 114.94516002736016 34 171 297.2473430500001 0 4.735 3 8.71 1.3 520 1030 0.0 135.1 233.5 113 0.0 0.0 6 0 4 1 0 9 34.0 4.71342383107089 600.954522 1038.65937 231 2147.900000000001 4.71342383107089
144 142 1549479395.327609 0 9 142 6.49 31.8 99.3918967390884 34 170 340.42859945919986 1 4.954 4 9.2 1.33 530 1100 0.0 131.8 220.1 112 4.27 20.6 6 0 4 1 0 9 34.0 4.929994084007099 586.2753960000001 979.053222 232 2159.100000000001 4.929994084007099
145 143 1549479397.3381395 0 9 143 8.5 41.9 99.74645145438942 33 169 354.85225206759986 2 5.023 5 9.13 1.33 530 1080 0.0 129.7 222.9 112 6.49 31.8 6 0 4 1 0 9 33.0 4.999000199960007 576.934134 991.508238 233 2169.2000000000007 4.999000199960007
146 144 1549479402.1105294 0 9 144 13.27 66.0 99.26197739120644 34 168 364.9067604 4 5.07 8 8.98 1.3 510 1060 0.0 133.2 225.9 112 8.5 41.9 6 0 4 1 0 9 34.0 5.044899606497832 592.5029040000002 1004.8528980000001 236 2193.3000000000006 5.0448996064978315
147 145 1549479404.3878589 0 9 145 15.55 77.7 99.28550805213553 34 168 362.1069765404 5 5.0569999999999995 9 8.9 1.33 520 1030 0.0 132.0 218.8 111 13.27 66.0 6 0 4 1 0 9 34.0 5.032206119162642 587.1650400000002 973.270536 237 2205.0000000000005 5.032206119162642
148 146 1549479409.2813294 0 9 146 20.44 102.2 99.28550805213553 33 168 358.4673792 7 5.04 12 9.04 1.33 520 1070 0.0 129.9 223.2 111 15.55 77.7 6 0 4 1 0 9 33.0 5.0155481994181965 577.8237780000002 992.8427039999999 240 2229.5000000000005 5.0155481994181965
149 147 1549479411.4680793 0 9 147 22.61 113.2 99.28550805213553 33 169 356.33787560000013 8 5.03 13 9.04 1.33 530 1060 0.0 124.6 210.6 112 20.44 102.2 6 0 4 1 0 9 33.0 5.005506056662329 554.248212 936.795132 241 2240.5000000000005 5.005506056662329
150 148 1549479429.5885592 0 9 148 41.06 178.5 99.28550805213553 0 175 0.0 12 0.0 19 1.67 0.88 420 0 0.0 18.3 24.8 251 22.61 113.2 6 2 3 0 0 10 0.0 inf 81.402426 110.31585600000001 241 2305.800000000001 inf
151 149 1549479435.6489189 0 9 149 37.26 182.6 99.28550805213553 0 177 0.0 12 0.0 20 2.15 1.92 1210 0 0.0 23.1 32.4 251 41.06 178.5 6 2 3 1 0 10 0.0 inf 102.753882 144.12232799999995 241 2309.9000000000005 inf
152 150 1549479438.6789293 0 9 150 40.3 188.8 99.28550805213553 22 177 19.9422076672 14 1.9240000000000002 21 5.66 0.97 1100 1680 0.0 25.9 37.9 111 37.26 182.6 6 2 3 1 0 10 22.0 1.9208605455243948 115.208898 168.587538 242 2316.100000000001 1.9208605455243948
153 151 1549479440.6944597 0 9 151 42.32 193.2 99.28550805213553 21 177 29.2488303968 14 2.186 22 6.46 1.09 1100 1720 0.0 27.7 39.9 112 40.3 188.8 6 2 3 1 0 10 21.0 2.182167328590757 123.215694 177.483978 243 2320.5000000000005 2.182167328590757
154 152 1549479443.7187793 0 9 152 45.33 200.4 223.5028147881381 22 176 29.2488303968 14 2.186 23 6.68 1.09 1020 1650 0.0 31.2 44.3 111 42.32 193.2 6 2 3 1 0 10 22.0 2.182167328590757 138.78446399999999 197.05614599999998 244 2327.7000000000007 2.182167328590757
155 153 1549479446.7192695 0 9 153 48.36 208.1 228.6297746139719 22 175 36.8039168 14 2.36 24 7.1 1.09 960 1730 0.0 35.6 52.3 111 45.33 200.4 6 2 3 1 0 10 22.0 2.355046865432622 158.35663200000005 232.641906 245 2335.4 2.355046865432622
156 154 1549479449.7485096 0 10 154 50.39 213.8 173.01194002778254 24 174 43.75 14 2.5 24 7.1 1.09 960 1560 572.9 35.6 52.3 113 48.36 208.1 6 0 4 0 0 10 24.0 2.4940143655227454 158.35663200000005 232.641906 246 2341.1 2.4940143655227454
157 155 1549479452.541599 0 10 155 2.38 11.0 122.7680425369972 0 172 233.9906431744 0 4.372 2 7.56 1.33 550 850 0.0 130.8 219.7 113 0.0 0.0 6 0 4 1 0 10 0.0 4.3535045711798 581.827176 977.2739339999999 246 2352.1 4.3535045711798
158 156 1549479459.469269 0 10 156 9.29 45.9 99.17696949989825 35 169 370.11343763519966 2 5.093999999999999 6 9.28 1.33 520 1100 0.0 128.9 217.7 112 2.38 11.0 6 0 4 1 0 10 35.0 5.068423720223009 573.3755580000002 968.377494 250 2387.0 5.068423720223009
159 157 1549479461.8380795 0 10 157 11.67 58.0 97.924331978181 33 168 365.77112662719986 3 5.074 7 9.06 1.33 530 1060 0.0 127.3 215.4 111 9.29 45.9 6 0 4 1 0 10 33.0 5.049484952534842 566.2584059999998 958.1465880000001 251 2399.1 5.049484952534842
160 158 1549479464.7805495 0 10 158 14.6 72.8 99.34439812509069 34 167 359.74914454080005 5 5.046 9 8.9 1.3 520 1040 0.0 127.5 217.7 111 11.67 58.0 6 0 4 1 0 10 34.0 5.0215928492517845 567.14805 968.377494 253 2413.9 5.021592849251784
161 159 1549479466.8779593 0 10 159 16.72 83.6 99.05591070399515 34 166 365.98743125 5 5.075 10 8.68 1.33 520 980 0.0 127.5 218.6 112 14.6 72.8 6 0 4 1 0 10 34.0 5.05050505050505 567.14805 972.380892 254 2424.7000000000007 5.05050505050505
162 160 1549479468.8884096 0 10 160 18.72 93.8 98.75564569213785 35 166 370.11343763519966 6 5.093999999999999 11 8.76 1.33 520 990 0.0 128.6 232.9 111 16.72 83.6 6 0 4 1 0 10 35.0 5.068937550689376 572.0410919999998 1035.990438 255 2434.9 5.068937550689376
163 161 1549479476.7807393 0 10 161 26.61 133.8 99.08967465747456 35 168 364.4750884096001 10 5.0680000000000005 16 8.76 1.33 530 1010 0.0 118.2 205.4 112 18.72 93.8 6 0 4 1 0 10 35.0 5.042864346949067 525.7796040000002 913.664388 260 2474.9 5.042864346949067
164 162 1549479478.9972293 0 10 162 28.8 144.8 99.70890101453544 34 168 356.7630997504 11 5.032 17 8.76 1.33 550 1020 0.0 117.2 216.1 111 26.61 133.8 6 0 4 1 0 10 34.0 5.007511266900352 521.3313840000002 961.260342 261 2485.9 5.007511266900352
165 163 1549479481.007209 0 10 163 30.8 154.1 99.22797918372477 39 168 347.0682243168003 11 4.9860000000000015 18 8.46 1.12 490 1050 0.0 65.9 112.1 111 28.8 144.8 6 2 3 1 0 10 39.0 4.962286621675268 293.13769800000006 498.645462 263 2495.2000000000007 4.962286621675268
166 164 1549479486.04713 0 10 164 35.87 171.0 108.03303477412338 12 169 318.64584566080003 12 4.846 19 18.62 0.65 510 4490 556.9 21.2 30.0 101 30.8 154.1 6 2 3 1 0 11 12.0 4.823926676314518 94.302264 133.4466 264 2512.100000000001 4.823926676314519
167 165 1549479489.0463502 0 10 165 38.88 178.9 135.96075898344483 23 169 133.7087616256 13 3.628 20 7.25 0.91 790 1770 0.0 20.9 32.5 110 35.87 171.0 6 2 3 1 0 11 23.0 3.6153289949385385 92.967798 144.56715 265 2520.0000000000005 3.6153289949385385
168 166 1549479491.0862205 0 10 166 40.88 183.7 181.13273733898015 23 170 52.0479832572 13 2.6489999999999996 21 6.87 0.91 840 1740 0.0 20.2 29.7 111 38.88 178.9 6 2 3 1 0 11 23.0 2.6427061310782243 89.85404399999999 132.112134 266 2524.800000000001 2.6427061310782243
169 167 1549479494.0862107 0 10 167 43.91 190.9 207.17255584406087 22 171 43.331342566400004 13 2.492 22 6.86 1.03 990 1760 0.0 22.0 30.3 109 40.88 183.7 6 2 3 1 0 11 22.0 2.4865725084543464 97.86084 134.78106599999998 267 2532.0000000000005 2.4865725084543464
170 168 1549479497.1161606 0 10 168 46.92 197.8 211.28186604804264 23 172 36.757151981199996 13 2.359 23 6.42 0.97 960 1660 556.9 19.7 31.0 110 43.91 190.9 6 2 3 1 0 11 23.0 2.354270646953574 87.62993399999998 137.89481999999998 268 2538.9000000000005 2.354270646953574
171 169 1549479500.1463208 0 10 169 49.94 204.7 220.59773478501373 21 173 34.558737446799995 13 2.311 24 6.72 1.06 1060 1750 0.0 22.3 31.8 111 46.92 197.8 6 2 3 1 0 11 21.0 2.306273062730628 99.195306 141.453396 269 2545.800000000001 2.306273062730628
172 170 1549479503.1763608 0 10 170 52.99 211.7 220.59773478501373 21 173 32.535886950000005 13 2.265 25 6.82 1.09 1070 1740 0.0 24.5 33.5 112 49.94 204.7 6 2 3 1 0 11 21.0 2.2602956466705844 108.98139 149.01537 270 2552.800000000001 2.2602956466705844
173 171 1549479509.2058716 0 10 171 59.03 227.4 220.59773478501373 23 172 49.3833486356 13 2.603 27 7.16 1.18 930 1640 0.0 57.0 91.3 112 52.99 211.7 6 2 3 1 0 11 23.0 2.5972676744065244 253.54854 406.122486 272 2568.5000000000005 2.5972676744065244
174 172 1549479511.2169313 0 11 172 0.93 3.8 220.59773478501373 0 171 0.0 13 0.0 1 1.36 1.24 320 0 0.0 73.0 142.2 113 59.03 227.4 6 0 4 1 0 11 0.0 inf 324.72006 632.536884 272 2572.300000000001 inf
175 173 1549479515.927212 0 11 173 5.63 26.1 220.59773478501373 35 169 306.95599103680007 1 4.7860000000000005 4 8.43 1.3 530 960 0.0 126.3 221.5 113 0.93 3.8 6 0 4 1 0 11 35.0 4.763719512195122 561.810186 985.2807300000001 275 2594.600000000001 4.763719512195122
176 174 1549479518.2955518 0 11 174 7.99 38.1 220.59773478501373 36 168 348.74151139519995 1 4.994 5 8.85 1.33 530 1030 0.0 128.0 231.0 112 5.63 26.1 6 0 4 1 0 11 36.0 4.970178926441352 569.37216 1027.53882 276 2606.600000000001 4.970178926441352
177 175 1549479523.1281614 0 11 175 12.85 62.2 100.43089030126343 33 166 348.5320570396001 4 4.993 8 9.05 1.33 530 1080 0.0 126.7 225.8 112 7.99 38.1 6 0 4 1 0 11 33.0 4.969191015702643 563.589474 1004.408076 279 2630.7000000000007 4.969191015702643
178 176 1549479525.3456714 0 11 176 15.06 73.4 100.97523946925537 33 166 343.5302785851997 4 4.968999999999999 9 9.11 1.36 540 1080 0.0 130.2 233.5 111 12.85 62.2 6 0 4 1 0 11 33.0 4.9446202531645564 579.1582440000002 1038.65937 280 2641.9000000000005 4.9446202531645564
179 177 1549479527.3556015 0 11 177 17.07 83.5 100.40388965819665 33 165 348.95104965 5 4.995 10 8.68 1.27 500 1020 0.0 131.0 221.3 112 15.06 73.4 6 0 4 1 0 11 33.0 4.971167230065619 582.71682 984.391086 281 2652.0000000000005 4.971167230065619
180 178 1549479532.098442 0 11 178 21.8 107.4 99.47021232155458 34 166 364.0437569888 7 5.066 13 9.11 1.36 540 1060 0.0 125.4 217.6 111 17.07 83.5 6 0 4 1 0 11 34.0 5.040830728904123 557.806788 967.932672 284 2675.9000000000005 5.040830728904123
181 179 1549479534.405252 0 11 179 24.12 119.2 98.58907516095115 33 166 364.4750884096001 8 5.0680000000000005 14 8.97 1.33 530 1050 0.0 125.2 220.8 112 21.8 107.4 6 0 4 1 0 11 33.0 5.043881771411279 556.917144 982.166976 285 2687.7000000000007 5.043881771411279
182 180 1549479541.455622 0 11 180 32.39 153.7 98.79510417698248 36 169 362.9669175468 11 5.061 18 8.67 0.44 230 1450 0.0 30.5 39.8 105 24.12 119.2 6 2 3 1 0 12 36.0 5.036261079774375 135.67071 177.03915600000005 290 2722.2000000000007 5.036261079774375
183 181 1549479544.4857519 0 11 181 35.41 164.0 107.7319044548018 23 171 304.46146616759995 11 4.773 19 10.19 0.56 380 2270 0.0 19.8 25.5 106 32.39 153.7 6 2 3 1 0 12 23.0 4.751045229950591 88.07475600000002 113.42961 291 2732.500000000001 4.7510452299505905
184 182 1549479547.5156324 0 11 182 38.42 172.4 139.5147976819096 22 172 135.7088043808 12 3.6460000000000004 20 8.31 0.8 680 2050 0.0 19.7 29.7 104 35.41 164.0 6 2 3 1 0 12 22.0 3.6329288672527795 87.62993399999998 132.112134 292 2740.900000000001 3.63292886725278
185 183 1549479553.5452929 0 11 183 44.44 187.1 190.86026473837242 21 174 39.38853504320001 12 2.414 22 7.22 1.06 1000 1840 0.0 24.1 35.0 110 38.42 172.4 6 2 3 1 0 12 21.0 2.408709894980249 107.202102 155.6877 294 2755.6000000000013 2.408709894980249
186 184 1549479556.575223 0 11 184 47.48 194.3 219.247271616384 22 175 37.8904844836 12 2.383 23 7.0 1.06 1010 1770 653.6 23.5 33.1 111 44.44 187.1 6 2 3 1 0 12 22.0 2.3777820049457867 104.53317 147.236082 295 2762.800000000001 2.3777820049457867
187 185 1549479558.5849528 0 11 185 49.5 199.1 211.0973308643895 22 175 37.8904844836 12 2.383 24 6.8 1.06 1000 1700 653.6 27.0 37.4 112 47.48 194.3 6 2 3 1 0 12 22.0 2.3777820049457867 120.10193999999998 166.363428 296 2767.6000000000013 2.3777820049457867
188 186 1549479561.6150026 0 11 186 52.51 206.7 209.3049258124481 22 175 38.0337676768 12 2.386 25 7.11 1.15 1030 1690 0.0 34.3 52.4 112 49.5 199.1 6 2 3 1 0 12 22.0 2.380952380952381 152.57394599999995 233.086728 297 2775.200000000001 2.380952380952381
189 187 1549479564.6449337 0 11 187 55.54 214.8 203.74847495465647 23 175 42.2964025344 12 2.472 26 7.34 1.15 950 1670 0.0 36.2 53.7 113 52.51 206.7 6 2 3 1 0 12 23.0 2.4669429642786658 161.025564 238.869414 298 2783.300000000001 2.4669429642786658
190 188 1549479567.6748536 0 11 188 58.57 223.1 196.81044621580287 23 175 50.87797172919999 13 2.6289999999999996 27 7.56 1.15 920 1660 0.0 39.5 63.4 112 55.54 214.8 6 2 3 1 0 12 23.0 2.6231572320444885 175.70469 282.017148 299 2791.6000000000013 2.6231572320444885
191 189 1549479570.6751134 0 12 189 60.6 229.6 151.14733418163482 25 174 75.29800302080002 13 2.9960000000000004 28 7.77 1.33 860 1540 0.0 91.6 153.0 112 58.57 223.1 6 0 4 0 0 12 25.0 2.9879287677781763 407.456952 680.5776599999998 301 2798.1000000000013 2.9879287677781763
192 190 1549479575.7152133 0 12 190 4.84 23.3 114.8407859663754 35 173 287.92993354999993 0 4.685 3 9.07 1.36 550 1070 0.0 130.2 227.2 112 0.82 3.7 6 0 4 1 0 12 35.0 4.663744053726332 579.1582440000002 1010.635584 303 2821.400000000001 4.663744053726332
193 191 1549479582.4055624 0 12 191 11.53 57.0 98.48102199591636 33 170 359.1078806196 3 5.043 7 9.05 1.33 520 1060 0.0 126.1 213.7 112 4.84 23.3 6 0 4 1 0 12 33.0 5.018568704205562 560.920542 950.584614 307 2855.1000000000013 5.018568704205562
194 192 1549479584.8038733 0 12 192 13.91 69.1 98.90104191562214 34 169 362.75180479999983 4 5.06 8 8.89 1.33 540 1040 0.0 126.1 223.9 111 11.53 57.0 6 0 4 1 0 12 34.0 5.0357538523516965 560.920542 995.956458 308 2867.200000000001 5.0357538523516965
195 193 1549479589.5147936 0 12 193 18.63 92.8 99.7108567119746 34 169 358.4673792 6 5.04 11 9.04 1.33 520 1060 0.0 134.1 226.5 111 13.91 69.1 6 0 4 1 0 12 34.0 5.0155481994181965 596.506302 1007.52183 311 2890.9000000000005 5.0155481994181965
196 194 1549479591.8534832 0 12 194 20.98 104.8 98.85837657403154 34 169 361.03396170239984 7 5.052 12 8.97 1.3 500 1050 0.0 134.3 225.0 112 18.63 92.8 6 0 4 1 0 12 34.0 5.0271465915946125 597.3959460000002 1000.8495 312 2902.9000000000005 5.0271465915946125
197 195 1549479596.5336833 0 12 195 25.63 128.8 95.19310034306835 35 171 388.7265193056 9 5.178 15 9.19 1.36 530 1060 0.0 124.0 227.3 112 20.98 104.8 6 0 4 1 0 12 35.0 5.151983513652755 551.5792799999998 1011.080406 315 2926.9000000000005 5.151983513652755
198 196 1549479598.9035034 0 12 196 28.03 140.8 104.920124998337 34 171 380.2308831999998 10 5.14 16 9.12 1.33 530 1070 0.0 116.2 214.8 111 25.63 128.8 6 0 4 1 0 12 34.0 5.11456628477905 516.883164 955.477656 317 2938.9000000000005 5.11456628477905
199 197 1549479607.816414 0 12 197 37.79 173.2 133.2694570549411 22 175 117.80039978559999 12 3.478 20 8.28 0.91 760 1980 0.0 18.4 29.7 106 28.03 140.8 6 2 3 1 0 13 22.0 3.4669255304396063 81.847248 132.112134 320 2971.300000000001 3.4669255304396063
200 198 1549479610.9930046 0 12 198 40.99 181.2 179.38727966340358 22 176 64.20542609880002 12 2.841 21 7.43 0.97 900 1880 0.0 19.0 29.9 110 37.79 173.2 6 2 3 1 0 13 22.0 2.833182230281052 84.51618 133.001778 321 2979.300000000001 2.833182230281052
201 199 1549479614.0228846 0 12 199 43.98 188.2 199.818399324767 21 177 44.8084224 12 2.52 22 7.08 1.03 1000 1860 0.0 21.1 30.6 111 40.99 181.2 6 2 3 1 0 13 21.0 2.5139524360199106 93.857442 136.115532 322 2986.300000000001 2.5139524360199106
202 200 1549479617.0525749 0 12 200 47.02 195.2 215.6671642020126 22 177 36.33805 12 2.35 23 6.8 1.06 1040 1750 595.1 22.8 31.0 111 43.98 188.2 6 2 3 1 0 13 22.0 2.34554580850964 101.419416 137.89481999999998 323 2993.300000000001 2.34554580850964
203 201 1549479620.0827749 0 12 201 50.06 202.4 209.00690284259557 22 177 34.290263350000004 12 2.305 24 6.73 1.09 1040 1680 595.1 27.5 41.0 111 47.02 195.2 6 2 3 1 0 13 22.0 2.3005429281310388 122.32605 182.37702 324 3000.5000000000005 2.3005429281310388
204 202 1549479626.1126251 0 12 202 56.09 218.3 195.58682852583237 22 177 53.59563124999998 13 2.675 26 7.62 1.18 960 1720 0.0 38.5 61.5 112 50.06 202.4 6 2 3 1 0 13 22.0 2.6683744262994984 171.25647 273.56553 326 3016.4000000000005 2.6683744262994984
205 203 1549479628.1225252 0 12 203 58.12 224.1 195.58682852583237 23 177 53.59563124999998 13 2.675 27 7.85 1.24 930 1650 0.0 51.0 84.4 113 56.09 218.3 6 2 3 1 0 13 23.0 2.6683744262994984 226.85922 375.429768 327 3022.200000000001 2.6683744262994984
206 204 1549479631.1529155 0 13 204 60.45 231.7 195.58682852583237 26 176 63.7320031712 13 2.8339999999999996 28 7.92 1.3 810 1490 0.0 86.5 149.2 112 58.12 224.1 6 0 4 0 0 13 26.0 2.8261361067149 384.77103 663.6744239999998 329 3029.800000000001 2.8261361067149
207 205 1549479633.1622055 0 13 205 1.26 5.8 195.58682852583237 0 176 0.0 14 0.0 1 2.73 0.13 610 0 0.0 152.0 251.1 112 0.0 0.0 6 0 4 1 0 13 0.0 inf 676.12944 1116.948042 329 3035.6000000000013 inf
208 206 1549479637.8452358 0 13 206 5.93 29.2 195.58682852583237 34 175 355.2762937500001 1 5.025 4 8.92 1.3 500 1030 0.0 139.0 234.1 112 1.26 5.8 6 0 4 1 0 13 34.0 5.001000200040008 618.30258 1041.328302 331 3059.0000000000014 5.001000200040008
209 207 1549479640.213286 0 13 207 8.32 41.6 195.58682852583237 34 175 377.1323930528 2 5.126 5 9.2 1.33 510 1070 0.0 139.5 245.9 112 5.93 29.2 6 0 4 1 0 13 34.0 5.100479445067836 620.52669 1093.817298 333 3071.400000000001 5.100479445067836
210 208 1549479645.045886 0 13 208 13.13 66.1 98.21335866515673 33 173 375.5894804451999 4 5.119 8 9.26 1.36 540 1090 0.0 129.4 222.9 112 8.32 41.6 6 0 4 1 0 13 33.0 5.0932056636446985 575.5996680000002 991.508238 335 3095.900000000001 5.0932056636446985
211 209 1549479647.292386 0 13 209 15.37 77.5 98.74122679443201 33 172 365.77112662719986 5 5.074 9 8.97 1.33 520 1040 0.0 127.6 224.5 111 13.13 66.1 6 0 4 1 0 13 33.0 5.049484952534842 567.5928719999997 998.62539 336 3107.300000000001 5.049484952534842
212 210 1549479652.125626 0 13 210 20.21 102.0 98.8728733926699 34 171 369.45991199880007 7 5.091 12 8.9 1.3 510 1040 0.0 133.1 228.8 112 15.37 77.5 6 0 4 1 0 13 34.0 5.065856129685916 592.058082 1017.752736 339 3131.800000000001 5.065856129685916
213 211 1549479654.342256 0 13 211 22.43 113.5 98.45148225895676 34 171 370.7677334844001 8 5.0969999999999995 13 9.18 1.33 520 1080 0.0 136.1 239.5 111 20.21 102.0 6 0 4 1 0 13 34.0 5.072537283149032 605.402742 1065.34869 340 3143.300000000001 5.072537283149032
214 212 1549479659.0559955 0 13 212 27.14 137.6 95.70617297431956 35 172 377.79493272919984 10 5.129 16 8.61 1.3 520 970 0.0 123.4 222.7 111 22.43 113.5 6 0 4 1 0 13 35.0 5.103082261686058 548.910348 990.6185939999999 343 3167.400000000001 5.103082261686058
215 213 1549479661.3919153 0 13 213 29.48 149.5 103.93410329711624 36 173 381.5639859808 11 5.146 17 8.76 1.3 510 1010 0.0 125.4 230.5 111 27.14 137.6 6 0 4 1 0 13 36.0 5.119803399549458 557.806788 1025.31471 345 3179.300000000001 5.119803399549458
216 214 1549479668.324926 0 13 214 37.68 173.5 128.7992592836767 21 175 139.8824363636 12 3.6830000000000003 20 8.77 0.82 720 2180 0.0 18.6 26.2 107 29.48 149.5 6 2 3 1 0 14 21.0 3.670532961385993 82.73689200000003 116.543364 347 3203.300000000001 3.670532961385993
217 215 1549479671.4713855 0 13 215 40.81 181.4 172.70870826169312 21 177 69.49720179639999 12 2.917 21 7.65 0.97 890 1970 0.0 19.4 29.5 110 37.68 173.5 6 2 3 1 0 14 21.0 2.908837046948629 86.295468 131.22249 348 3211.200000000001 2.9088370469486295
218 216 1549479674.5012856 0 13 216 43.82 188.5 198.493000873946 21 177 45.1828641124 12 2.5269999999999997 22 7.07 1.0 970 1870 0.0 19.8 30.1 111 40.81 181.4 6 2 3 1 0 14 21.0 2.521050773962588 88.07475600000002 133.891422 349 3218.300000000001 2.521050773962588
219 217 1549479677.9819353 0 13 217 46.86 195.4 213.25669612533585 21 178 36.757151981199996 12 2.359 23 6.81 1.06 1060 1760 0.0 21.2 30.2 112 43.82 188.5 6 2 3 1 0 14 21.0 2.354381503978905 94.302264 134.336244 350 3225.200000000001 2.354381503978905
220 218 1549479680.771615 0 13 218 49.87 202.3 219.13704897854302 21 178 33.40539755 12 2.285 24 6.82 1.09 1070 1750 637.2 24.3 33.0 112 46.86 195.4 6 2 3 1 0 14 21.0 2.2801897117840206 108.091746 146.79126000000005 351 3232.1000000000013 2.2801897117840206
221 219 1549479683.7113454 0 13 219 52.9 209.4 224.86834373990598 22 178 33.5811379932 13 2.289 25 6.83 1.09 1050 1710 0.0 24.7 33.9 112 49.87 202.3 6 2 3 1 0 14 22.0 2.284043670914988 109.871034 150.794658 352 3239.200000000001 2.284043670914988
222 220 1549479686.651225 0 13 220 55.91 216.8 209.96428507308948 22 178 35.830155813199994 13 2.339 26 7.04 1.12 1030 1740 0.0 31.7 45.6 111 52.9 209.4 6 2 3 1 0 14 22.0 2.334158069184445 141.008574 202.838832 354 3246.6000000000013 2.334158069184445
223 221 1549479693.0104654 0 14 221 60.97 231.6 151.50702380019055 25 175 84.55004752319999 13 3.114 28 8.14 1.39 850 1580 0.0 95.2 168.6 113 55.91 216.8 6 0 4 0 0 14 25.0 3.1048186785891705 423.470544 749.969892 356 3261.400000000001 3.1048186785891705
224 222 1549479697.8705955 0 14 222 4.65 22.7 112.38005332514747 36 174 298.37875485880005 0 4.7410000000000005 3 8.93 1.33 530 1050 0.0 134.3 234.3 113 1.63 7.4 6 0 4 1 0 14 36.0 4.719652633566169 597.3959460000002 1042.217946 359 3284.1000000000013 4.719652633566169
225 223 1549479704.949106 0 14 223 11.45 57.0 98.403602301031 33 171 360.1770776576 3 5.048 7 9.34 1.36 540 1110 0.0 129.7 211.7 112 4.65 22.7 6 0 4 1 0 14 33.0 5.023106288929075 576.934134 941.688174 363 3318.400000000001 5.023106288929075
226 224 1549479707.0503955 0 14 224 13.73 68.5 99.21625704124821 32 171 358.4673792 4 5.04 8 9.34 1.36 540 1110 0.0 127.5 220.3 111 11.45 57.0 6 0 4 1 0 14 32.0 5.0150451354062175 567.14805 979.942866 364 3329.900000000001 5.0150451354062175
227 225 1549479708.9102654 0 14 225 15.74 78.7 99.37724281445452 32 171 359.1078806196 5 5.043 9 9.03 1.33 540 1060 0.0 132.6 235.9 111 13.73 68.5 6 0 4 1 0 14 32.0 5.018568704205562 589.833972 1049.335098 365 3340.1000000000013 5.018568704205562
228 226 1549479713.918935 0 14 226 20.58 103.3 98.97847955485615 33 170 370.5495492608 7 5.096 12 9.33 1.36 530 1100 0.0 132.0 223.9 112 15.74 78.7 6 0 4 1 0 14 33.0 5.0715082665584745 587.1650400000002 995.956458 368 3364.700000000001 5.0715082665584745
229 227 1549479715.8395352 0 14 227 22.79 114.6 97.96915919633352 33 171 368.80715612160003 8 5.088 13 9.05 1.3 510 1070 0.0 131.2 237.1 112 20.58 103.3 6 0 4 1 0 14 33.0 5.0627784528149045 583.606464 1054.672962 369 3376.0000000000014 5.0627784528149045
230 228 1549479720.6985755 0 14 228 27.55 138.9 98.27204587704964 35 172 380.0090017331996 10 5.138999999999999 16 9.04 1.3 520 1060 0.0 119.9 217.8 111 22.79 114.6 6 0 4 1 0 14 35.0 5.11352014726938 533.341578 968.822316 372 3400.300000000001 5.11352014726938
231 229 1549479724.7183855 0 14 229 32.27 157.1 102.80369572355733 31 173 327.6053759188 12 4.891 18 9.1 0.53 290 1670 0.0 22.8 32.3 111 27.55 138.9 6 2 3 1 0 15 31.0 4.868075163080519 101.419416 143.677506 374 3418.5000000000014 4.868075163080519
232 230 1549479727.8988454 0 14 230 35.57 167.8 117.78031952591793 23 174 220.6065901284 12 4.287 19 9.09 0.62 430 2140 0.0 19.1 25.6 107 32.27 157.1 6 2 3 1 0 15 23.0 4.26949022286739 84.96100200000002 113.87443200000001 375 3429.200000000001 4.26949022286739
233 231 1549479730.9288757 0 14 231 38.56 175.6 154.1579642102371 21 175 102.7422459476 12 3.323 20 7.99 0.65 600 2210 0.0 16.6 27.1 104 35.57 167.8 6 2 3 1 0 15 21.0 3.312574532926991 73.84045200000001 120.54676200000002 376 3437.0000000000014 3.312574532926991
234 232 1549479736.988675 0 14 232 44.62 189.5 204.03731947330002 22 177 33.186585599999994 12 2.28 22 6.56 0.94 940 1780 0.0 19.4 27.6 110 38.56 175.6 6 2 3 1 0 15 22.0 2.275623520844712 86.295468 122.770872 378 3450.900000000001 2.2756235208447118
235 233 1549479743.0183053 0 14 233 50.66 203.1 231.23986750819446 21 178 31.808775577600013 12 2.248 24 6.88 1.06 1070 1820 619.6 20.7 28.9 112 44.62 189.5 6 2 3 1 0 15 21.0 2.2436616558223017 92.078154 128.553558 380 3464.5000000000014 2.2436616558223017
236 234 1549479746.134845 0 14 234 53.67 210.0 222.29629425607843 21 178 32.578999868800004 13 2.266 25 6.75 1.09 1080 1740 619.6 25.1 36.3 112 49.81 201.1 6 2 3 1 0 15 21.0 2.2611133722244827 111.650322 161.47038600000005 382 3471.400000000001 2.2611133722244827
237 235 1549479749.0775151 0 14 235 56.7 217.1 222.29629425607843 21 177 35.28151139239999 13 2.327 26 6.9 1.06 1030 1780 0.0 25.5 35.1 111 53.67 210.0 6 2 3 1 0 15 21.0 2.322125208991269 113.42961 156.132522 383 3478.5000000000014 2.322125208991269
238 236 1549479753.0976553 0 14 236 0.01 227.5 222.29629425607843 24 176 47.25199395 13 2.565 27 7.17 1.3 950 1540 619.6 80.4 144.9 112 56.7 217.1 6 0 4 0 0 15 24.0 2.55924655781338 357.63688800000006 644.547078 384 3488.900000000001 2.55924655781338
239 237 1549479754.1182456 0 15 237 1.02 4.3 222.29629425607843 0 176 0.0 13 0.0 1 0.64 1.24 140 0 0.0 33.9 55.3 112 0.01 227.5 6 0 4 1 0 15 0.0 inf 150.794658 245.986566 384 3493.200000000001 inf
240 238 1549479758.8569546 0 15 238 5.77 27.2 222.29629425607843 35 175 327.40447319999987 1 4.89 4 8.92 1.36 540 1030 0.0 134.1 231.1 112 1.02 4.3 6 0 4 1 0 15 35.0 4.867127421395892 596.506302 1027.983642 387 3516.1000000000013 4.8671274213958915
241 239 1549479761.1674151 0 15 239 8.08 39.1 222.29629425607843 34 175 358.25404809319986 2 5.039 5 8.91 1.33 520 1020 0.0 129.4 227.2 112 5.77 27.2 6 0 4 1 0 15 34.0 5.0150451354062175 575.5996680000002 1010.635584 388 3528.000000000002 5.0150451354062175
242 240 1549479764.106965 0 15 240 10.99 53.9 98.5227894285015 35 173 371.6413268427999 3 5.101 7 8.9 1.33 520 1020 0.0 130.3 232.7 112 8.08 39.1 6 0 4 1 0 15 35.0 5.076142131979696 579.603066 1035.100794 390 3542.800000000002 5.076142131979696
243 241 1549479770.9765544 0 15 241 17.88 89.1 98.2344096073841 36 172 373.39262808120003 6 5.109 11 8.89 1.33 520 1020 0.0 129.0 226.6 111 10.99 53.9 6 0 4 1 0 15 36.0 5.083884087442806 573.82038 1007.966652 394 3578.000000000002 5.083884087442806
244 242 1549479773.2566445 0 15 242 20.17 100.8 98.4285674068888 34 171 373.8313113668002 7 5.1110000000000015 12 8.82 1.33 520 1010 0.0 124.7 229.8 111 17.88 89.1 6 0 4 1 0 15 34.0 5.085435313262817 554.693034 1022.200956 395 3589.700000000001 5.085435313262817
245 243 1549479776.1098151 0 15 243 23.04 115.3 98.4285674068888 35 170 367.7209390036001 8 5.083 14 8.68 1.3 510 1000 0.0 133.7 230.7 111 20.17 100.8 6 0 4 1 0 15 35.0 5.058168942842691 594.7270139999998 1026.204354 397 3604.200000000001 5.058168942842691
246 244 1549479778.2968152 0 15 244 25.22 126.5 98.4285674068888 35 170 364.9067604 9 5.07 15 8.83 1.3 510 1020 0.0 129.8 227.4 111 23.04 115.3 6 0 4 1 0 15 35.0 5.044899606497832 577.3789559999999 1011.525228 398 3615.400000000001 5.0448996064978315
247 245 1549479785.9474545 0 15 245 33.17 161.0 98.4285674068888 24 172 0.0 12 0.0 20 10.1 0.65 410 2080 0.0 20.3 29.2 251 25.22 126.5 6 2 3 1 0 16 24.0 inf 90.298866 129.888024 401 3649.900000000001 inf
248 246 1549479789.3666244 0 15 246 36.58 171.0 98.4285674068888 22 173 154.00577535559998 12 3.803 21 8.63 0.68 580 2200 0.0 18.3 25.5 105 33.17 161.0 6 2 3 1 0 16 22.0 3.789026977872082 81.402426 113.42961 403 3659.900000000001 3.789026977872082
249 247 1549479792.3958044 0 15 247 39.6 178.6 98.4285674068888 21 174 74.54653151680002 13 2.986 22 7.63 1.0 900 1920 0.0 20.7 31.9 111 36.58 171.0 6 2 3 1 0 16 21.0 2.9781404491035803 92.078154 141.89821799999999 404 3667.5000000000014 2.9781404491035803
250 248 1549479795.425844 0 15 248 42.62 185.8 195.10879070280774 22 174 46.81124754039999 13 2.557 23 6.94 1.0 950 1770 0.0 20.8 28.6 110 39.6 178.6 6 2 3 1 0 16 22.0 2.5507601265177016 92.522976 127.219092 405 3674.700000000001 2.5507601265177016
251 249 1549479798.456194 0 15 249 45.64 192.9 209.66212204656009 21 175 39.6337929652 13 2.419 24 7.07 1.12 1080 1780 0.0 23.5 34.2 111 42.62 185.8 6 2 3 1 0 16 21.0 2.414059482425647 104.53317 152.12912400000005 406 3681.800000000001 2.414059482425647
252 250 1549479801.4854345 0 15 250 48.65 200.1 211.16167460968842 22 175 35.922145898800004 13 2.3409999999999997 25 6.8 1.09 1030 1680 0.0 27.1 38.3 110 45.64 192.9 6 2 3 1 0 16 22.0 2.3362302588543127 120.54676200000002 170.366826 407 3689.0000000000014 2.3362302588543127
253 251 1549479804.485344 0 15 251 51.67 207.5 209.04041970416787 22 175 40.2762235904 13 2.432 26 7.01 1.09 1010 1720 0.0 27.5 37.5 112 48.65 200.1 6 2 3 1 0 16 22.0 2.4269488399184542 122.32605 166.80825000000004 408 3696.400000000001 2.4269488399184542
254 252 1549479806.525204 0 15 252 53.71 212.6 206.58819329029217 22 175 40.2762235904 13 2.432 27 7.11 1.09 980 1730 0.0 32.6 48.8 112 51.67 207.5 6 2 3 1 0 16 22.0 2.4269488399184542 145.011972 217.07313599999998 409 3701.5000000000014 2.4269488399184542
255 253 1549479809.5249548 0 15 253 56.74 220.6 206.58819329029217 23 175 43.331342566400004 13 2.492 28 7.26 1.15 960 1660 0.0 36.9 54.6 113 53.71 212.6 6 2 3 1 0 16 23.0 2.486077963404932 164.139318 242.872812 410 3709.5000000000014 2.4860779634049317
256 254 1549479813.5749347 0 16 254 59.75 229.7 206.58819329029217 24 174 64.13765119999998 13 2.84 29 7.78 1.27 880 1660 0.0 75.8 135.6 113 56.74 220.6 6 0 4 0 0 16 24.0 2.832058906825261 337.175076 603.178632 412 3718.6000000000013 2.8320589068252615
257 255 1549479814.5648847 0 16 255 1.01 4.3 206.58819329029217 0 174 0.0 13 0.0 1 2.88 0.16 690 0 0.0 143.5 241.2 113 59.75 229.7 6 0 4 1 0 16 0.0 inf 638.31957 1072.910664 412 3722.900000000001 inf
258 256 1549479816.5753145 0 16 256 3.04 13.9 206.58819329029217 0 174 201.43029670119998 0 4.159 2 7.78 1.33 560 940 0.0 135.0 242.8 113 1.01 4.3 6 0 4 1 0 16 0.0 4.142845306156268 600.5097 1080.027816 412 3732.5000000000014 4.142845306156268
259 257 1549479823.326844 0 16 257 9.76 47.7 206.58819329029217 32 173 363.82821895000006 3 5.065 6 9.26 1.36 540 1100 0.0 129.5 228.6 112 3.04 13.9 6 0 4 1 0 16 32.0 5.039814534825119 576.04449 1016.8630919999999 415 3766.300000000001 5.039814534825119
260 258 1549479825.6640036 0 16 258 12.11 59.6 97.68615003282395 33 173 356.12539028919997 3 5.029 7 9.34 1.36 540 1110 0.0 133.9 228.8 111 9.76 47.7 6 0 4 1 0 16 33.0 5.00400320256205 595.616658 1017.752736 416 3778.200000000001 5.00400320256205
261 259 1549479832.3564847 0 16 259 18.81 93.8 98.79551143764364 33 171 376.91171875 6 5.125 11 9.19 1.3 500 1090 0.0 131.6 227.2 112 12.11 59.6 6 0 4 1 0 16 33.0 5.098919029165816 585.3857519999998 1010.635584 420 3812.400000000001 5.098919029165816
262 260 1549479839.436424 0 16 260 25.89 129.8 98.79551143764364 33 171 366.63685674559997 10 5.078 15 8.98 1.33 530 1040 0.0 123.0 223.7 112 18.81 93.8 6 0 4 1 0 16 33.0 5.053057099545224 547.1310599999998 995.066814 424 3848.400000000001 5.0530570995452235
263 261 1549479841.773484 0 16 261 28.23 141.6 98.79551143764364 34 172 363.39739813159986 10 5.063 16 8.98 1.33 530 1050 0.0 122.9 222.4 112 25.89 129.8 6 0 4 1 0 16 34.0 5.037783375314862 546.686238 989.284128 425 3860.200000000001 5.037783375314862
264 262 1549479845.1067445 0 16 262 32.2 156.5 98.79551143764364 0 173 0.0 12 0.0 18 8.97 0.23 70 1790 0.0 24.6 29.9 112 28.23 141.6 6 2 3 1 0 17 0.0 inf 109.426212 133.001778 425 3875.1000000000013 inf
265 263 1549479848.8237045 0 16 263 35.92 168.4 98.79551143764364 21 174 0.0 12 0.0 19 9.93 0.65 490 2360 0.0 17.1 23.7 104 32.2 156.5 6 2 3 1 0 17 21.0 inf 76.06456200000002 105.422814 427 3887.0000000000014 inf
266 264 1549479851.8528445 0 16 264 38.92 176.1 98.79551143764364 21 175 102.64951829440001 12 3.322 20 7.94 0.74 680 2150 0.0 17.9 27.8 105 35.92 168.4 6 2 3 1 0 17 21.0 3.3114775812967743 79.623138 123.660516 428 3894.700000000001 3.3114775812967743
267 265 1549479854.8827643 0 16 265 41.94 183.2 98.79551143764364 21 176 54.13841861120001 12 2.6839999999999997 21 7.26 0.97 930 1970 0.0 19.6 29.8 109 38.92 176.1 6 2 3 1 0 17 21.0 2.6772328121653457 87.185112 132.556956 429 3901.800000000001 2.6772328121653457
268 266 1549479857.9127743 0 16 266 44.97 190.0 210.0502829078531 21 176 37.98596654999999 12 2.385 22 6.99 1.03 1030 1870 0.0 19.5 28.9 110 41.94 183.2 6 2 3 1 0 17 21.0 2.3793661368611403 86.74029 128.553558 430 3908.6000000000013 2.3793661368611403
269 267 1549479860.942465 0 16 267 48.0 196.8 220.23806521974794 21 176 33.449275036799996 12 2.286 23 6.79 1.03 1030 1830 0.0 22.3 31.1 110 44.97 190.0 6 2 3 1 0 17 21.0 2.2813341241958303 99.195306 138.339642 431 3915.400000000001 2.2813341241958303
270 268 1549479863.9425352 0 16 268 51.01 203.5 226.93830888977212 21 176 31.428258173199996 12 2.239 24 6.79 0.97 990 1900 594.8 19.9 28.3 111 48.0 196.8 6 2 3 1 0 17 21.0 2.234736748011084 88.51957800000002 125.884626 432 3922.1000000000013 2.234736748011084
271 269 1549479866.9718955 0 16 269 54.04 210.2 226.93830888977212 21 176 30.84239375 12 2.225 25 6.73 1.06 1080 1810 0.0 23.7 33.5 112 51.01 203.5 6 2 3 1 0 17 21.0 2.2202486678508 105.422814 149.01537 433 3928.800000000001 2.2202486678507998
272 270 1549479874.0223956 0 17 270 0.32 1.1 226.93830888977212 23 175 48.759924326400004 13 2.592 27 7.31 1.27 920 1740 0.0 80.3 146.0 111 54.04 210.2 6 0 4 0 0 17 23.0 2.5859839668994047 357.192066 649.44012 436 3929.900000000001 2.5859839668994047
273 271 1549479875.0430956 0 17 271 1.33 5.6 226.93830888977212 0 175 0.0 13 0.0 1 2.79 0.13 680 0 0.0 134.5 216.4 111 0.32 1.1 6 0 4 1 0 17 0.0 inf 598.2855900000002 962.5948080000001 436 3934.400000000001 inf
274 272 1549479879.785746 0 17 272 6.07 28.7 226.93830888977212 35 174 326.6016836768 1 4.886 4 9.01 1.33 520 1050 0.0 134.5 227.9 113 1.33 5.6 6 0 4 1 0 17 35.0 4.862867146469559 598.2855900000002 1013.7493380000001 439 3957.5000000000014 4.862867146469559
275 273 1549479882.0929358 0 17 273 8.39 40.5 226.93830888977212 34 173 360.3911714172001 2 5.0489999999999995 5 9.14 1.33 520 1070 0.0 135.6 231.6 112 6.07 28.7 6 0 4 1 0 17 34.0 5.024620641141594 603.178632 1030.207752 440 3969.300000000001 5.024620641141594
276 274 1549479886.8953755 0 17 274 13.2 65.0 98.71293413384493 34 171 368.80715612160003 4 5.088 8 8.97 1.33 520 1040 0.0 130.2 218.9 111 8.39 40.5 6 0 4 1 0 17 34.0 5.063291139240507 579.1582440000002 973.715358 443 3993.800000000001 5.063291139240507
277 275 1549479889.1422558 0 17 275 15.44 76.4 98.73872924583023 34 171 367.7209390036001 5 5.083 9 8.9 1.33 530 1020 0.0 126.9 217.0 112 13.2 65.0 6 0 4 1 0 17 34.0 5.0576572931418164 564.4791180000002 965.26374 444 4005.200000000001 5.057657293141816
278 276 1549479893.915375 0 17 276 20.21 100.6 98.84594620606516 34 171 369.0246559132 7 5.0889999999999995 12 8.9 1.33 520 1020 0.0 130.4 228.9 111 15.44 76.4 6 0 4 1 0 17 34.0 5.064316823660488 580.0478880000003 1018.197558 447 4029.400000000001 5.064316823660488
279 277 1549479896.1923356 0 17 277 22.5 112.4 98.38739753958995 34 171 369.67766832639984 8 5.092 13 8.76 1.33 520 990 0.0 132.2 228.2 112 20.21 100.6 6 0 4 1 0 17 34.0 5.067396371744199 588.054684 1015.083804 448 4041.200000000001 5.0673963717441985
280 278 1549479899.1016755 0 17 278 25.38 127.2 98.38739753958995 35 172 381.5639859808 9 5.146 15 8.83 1.33 520 1000 0.0 129.4 219.2 112 22.5 112.4 6 0 4 1 0 17 35.0 5.120327700972863 575.5996680000002 975.049824 449 4056.0000000000014 5.1203277009728625
281 279 1549479901.2314155 0 17 279 27.53 138.2 98.38739753958995 35 173 378.45824791040025 10 5.1320000000000014 16 8.84 1.3 500 1020 0.0 125.8 220.7 112 25.38 127.2 6 0 4 1 0 17 35.0 5.10673067102441 559.5860759999998 981.7221539999999 451 4067.0000000000014 5.10673067102441
282 280 1549479910.1439562 0 17 280 37.74 172.1 98.38739753958995 0 176 0.0 12 0.0 21 1.71 0.85 490 0 0.0 19.6 26.6 106 27.53 138.2 6 2 3 1 0 18 0.0 inf 87.185112 118.322652 451 4100.9000000000015 inf
283 281 1549479913.3222258 0 17 281 40.91 180.1 98.38739753958995 22 177 57.97751942080003 12 2.7460000000000004 22 7.43 0.94 860 1890 0.0 21.0 30.1 110 37.74 172.1 6 2 3 1 0 18 22.0 2.7392757354955357 93.41262 133.891422 452 4108.9000000000015 2.7392757354955353
284 282 1549479916.3510554 0 17 282 43.94 187.2 98.38739753958995 21 177 45.9379939788 12 2.541 23 7.29 1.03 1000 1920 0.0 19.2 28.1 110 40.91 180.1 6 2 3 1 0 18 21.0 2.5347257426746426 85.405824 124.99498200000001 453 4116.000000000002 2.5347257426746426
285 283 1549479919.3808653 0 17 283 46.97 194.2 211.2905221566356 21 178 37.3209502708 12 2.371 24 6.86 1.06 1050 1800 0.0 23.0 31.3 110 43.94 187.2 6 2 3 1 0 18 21.0 2.365855966688748 102.30906 139.229286 454 4123.000000000002 2.365855966688748
286 284 1549479922.4102454 0 17 284 50.0 201.2 219.39609097718986 22 178 33.40539755 12 2.285 25 6.72 1.06 1010 1720 0.0 27.9 39.5 111 46.97 194.2 6 2 3 1 0 18 22.0 2.2801897117840206 124.10533799999999 175.70469 455 4130.000000000002 2.2801897117840206
287 285 1549479925.4402554 0 17 285 52.99 208.6 216.49894027727063 22 178 35.14523102719999 12 2.324 26 7.02 1.09 1010 1750 0.0 30.3 44.1 111 50.0 201.2 6 2 3 1 0 18 22.0 2.3187868107406207 134.78106599999998 196.166502 456 4137.4000000000015 2.3187868107406207
288 286 1549479930.4542155 0 17 286 58.02 222.0 216.49894027727063 24 177 46.04655161960001 13 2.543 28 7.49 1.18 910 1610 0.0 48.7 84.0 112 52.99 208.6 6 2 3 1 0 18 24.0 2.5367833587011672 216.62831400000002 373.65048 458 4150.800000000001 2.5367833587011672
289 287 1549479934.5005956 0 18 287 0.06 0.2 216.49894027727063 24 176 83.98114492040001 13 3.1069999999999998 29 8.28 1.36 840 1650 0.0 96.4 169.3 112 58.02 222.0 6 0 4 0 0 18 24.0 3.0978934324659235 428.808408 753.083646 460 4151.000000000001 3.0978934324659235
290 288 1549479935.5204554 0 18 288 1.07 4.9 216.49894027727063 0 176 0.0 13 0.0 1 2.8 0.22 620 0 0.0 145.9 239.5 112 0.06 0.2 6 0 4 1 0 18 0.0 inf 648.995298 1065.34869 460 4155.700000000002 inf
291 289 1549479940.4127154 0 18 289 5.97 29.3 216.49894027727063 34 175 345.81677760000014 1 4.98 4 8.86 1.33 520 1010 0.0 134.7 228.9 113 1.07 4.9 6 0 4 1 0 18 34.0 4.956383822363204 599.1752339999998 1018.197558 463 4180.1 4.956383822363204
292 290 1549479942.5840359 0 18 290 8.12 40.4 216.49894027727063 35 174 372.95428812040007 2 5.107 5 8.92 1.3 500 1030 0.0 132.6 233.1 112 5.97 29.3 6 0 4 1 0 18 35.0 5.082333807684488 589.833972 1036.880082 464 4191.200000000002 5.082333807684488
293 291 1549479949.3226461 0 18 291 14.87 74.6 98.56210517506054 33 173 366.63685674559997 5 5.078 9 9.11 1.33 520 1070 0.0 134.4 232.0 111 8.12 40.4 6 0 4 1 0 18 33.0 5.053567818880129 597.840768 1031.98704 468 4225.4000000000015 5.053567818880129
294 292 1549479951.630166 0 18 292 17.19 86.5 98.84076089644267 33 173 367.5039518304 6 5.082 10 8.97 1.33 520 1030 0.0 124.6 221.8 112 14.87 74.6 6 0 4 1 0 18 33.0 5.0576572931418164 554.248212 986.6151960000001 469 4237.3 5.057657293141816
295 293 1549479956.3124664 0 18 293 21.85 110.1 99.18459082225357 34 173 367.28705003480013 8 5.081 13 8.83 1.3 520 1030 0.0 125.7 212.9 112 17.19 86.5 6 0 4 1 0 18 34.0 5.056122964910506 559.141254 947.0260380000001 472 4260.9000000000015 5.056122964910506
296 294 1549479961.442346 0 18 294 26.99 135.9 99.66555332919266 36 174 354.85225206759986 10 5.023 16 8.75 1.33 530 1000 0.0 121.8 218.8 111 21.85 110.1 6 0 4 1 0 18 36.0 4.999000199960007 541.793196 973.270536 475 4286.700000000002 4.999000199960007
297 295 1549479964.740396 0 18 295 30.29 152.2 98.29277096446779 39 175 357.61456263680014 12 5.0360000000000005 17 8.76 1.36 540 990 0.0 121.9 211.9 111 26.99 135.9 6 2 3 1 0 18 39.0 5.011526510975243 542.238018 942.577818 477 4303.000000000001 5.011526510975243
298 296 1549479968.7595458 0 18 296 35.7 166.3 102.6279533212022 13 176 357.61456263680014 12 5.0360000000000005 18 19.79 0.65 510 4270 0.0 19.9 33.9 101 30.29 152.2 6 2 3 1 0 19 13.0 5.011526510975243 88.51957800000002 150.794658 478 4317.100000000001 5.011526510975243
299 297 1549479971.789575 0 18 297 38.72 174.2 125.24486658779628 21 177 186.55601849919975 12 4.053999999999999 19 8.41 0.59 510 2390 0.0 16.0 24.8 104 35.7 166.3 6 2 3 1 0 19 21.0 4.03811985139719 71.17152 110.31585600000001 479 4325.000000000001 4.03811985139719
300 298 1549479974.8192458 0 18 298 41.75 181.3 171.06109028087238 21 178 59.253575068800004 12 2.766 20 7.24 0.88 850 2050 0.0 16.8 25.0 108 38.72 174.2 6 2 3 1 0 19 21.0 2.7586206896551726 74.730096 111.2055 480 4332.100000000001 2.7586206896551726
301 299 1549479977.8492262 0 18 299 44.75 187.7 214.71394348703015 20 178 37.795162554799994 12 2.381 21 7.03 0.85 940 2130 0.0 12.4 19.0 108 41.75 181.3 6 2 3 1 0 19 20.0 2.3763129128843685 55.15792800000001 84.51618 481 4338.500000000001 2.3763129128843685
302 300 1549479980.8491766 0 18 300 47.78 193.7 233.1763931555144 19 178 29.088563190399995 12 2.182 22 6.61 0.91 1060 2080 0.0 16.1 23.5 111 44.75 187.7 6 2 3 1 0 19 19.0 2.177510669802282 71.616342 104.53317 482 4344.500000000001 2.177510669802282
303 301 1549479983.8790064 0 18 301 50.79 199.8 245.1339563612316 20 178 22.6698766336 12 2.008 23 6.31 0.97 1120 1880 622.4 19.9 28.7 111 47.78 193.7 6 2 3 1 0 19 20.0 2.004249007896741 88.51957800000002 127.663914 483 4350.600000000001 2.004249007896741
304 302 1549479987.8998563 0 18 302 54.83 208.4 265.35580324262367 21 178 25.562121199999996 12 2.09 24 6.38 1.06 1120 1780 0.0 24.0 31.9 112 50.79 199.8 6 2 3 1 0 19 21.0 2.086027785890108 106.75728000000001 141.89821799999999 484 4359.200000000002 2.086027785890108
305 303 1549479989.9456866 0 18 303 56.86 213.0 178.15257261496356 21 177 31.59700013960001 12 2.2430000000000003 25 6.75 1.09 1060 1780 0.0 32.7 52.8 111 54.83 208.4 6 2 3 1 0 19 21.0 2.238739142115161 145.456794 234.866016 485 4363.800000000002 2.2387391421151612
306 304 1549480000.741647 0 19 304 6.23 28.1 122.86398022576246 32 174 282.07018861560005 1 4.6530000000000005 4 9.0 1.33 540 1100 0.0 129.5 218.7 113 56.86 213.0 6 0 4 1 0 19 32.0 4.632203075782843 576.04449 972.825714 491 4391.9000000000015 4.632203075782843
307 305 1549480003.0180173 0 19 305 8.52 39.5 100.35213983567759 32 173 316.28454397119987 1 4.834 5 9.28 1.33 550 1140 0.0 125.7 220.6 112 6.23 28.1 6 0 4 1 0 19 32.0 4.81139337952271 559.141254 981.277332 492 4403.300000000002 4.81139337952271
308 306 1549480005.0580273 0 19 306 10.54 49.5 102.03459973128788 32 172 331.23569200119994 2 4.909 6 8.84 1.33 530 1040 0.0 130.5 224.8 112 8.52 39.5 6 0 4 1 0 19 32.0 4.885675200312684 580.49271 999.9598560000001 493 4413.300000000002 4.885675200312684
309 307 1549480009.860118 0 19 307 15.34 73.5 100.75143366256596 33 170 348.5320570396001 4 4.993 9 9.12 1.3 510 1100 0.0 132.5 224.5 111 10.54 49.5 6 0 4 1 0 19 33.0 4.96869720759217 589.38915 998.62539 496 4437.300000000002 4.96869720759217
310 308 1549480012.107908 0 19 308 17.58 84.9 100.0105928891014 33 170 355.91298946560005 5 5.0280000000000005 10 9.27 1.36 540 1090 656.1 125.9 231.6 111 15.34 73.5 6 0 4 1 0 19 33.0 5.0035024517162014 560.0308980000002 1030.207752 497 4448.700000000002 5.0035024517162014
311 309 1549480014.117728 0 19 309 19.61 95.1 99.42845247819356 33 170 355.70067311239995 6 5.027 11 8.97 1.3 510 1070 0.0 135.0 239.2 112 17.58 84.9 6 0 4 1 0 19 33.0 5.003001801080648 600.5097 1064.014224 498 4458.9000000000015 5.003001801080648
312 310 1549480018.8000574 0 19 310 24.3 118.7 99.42845247819356 33 170 361.03396170239984 8 5.052 14 8.84 1.3 510 1040 0.0 131.9 231.6 112 19.61 95.1 6 0 4 1 0 19 33.0 5.0271465915946125 586.7202179999998 1030.207752 500 4482.500000000002 5.0271465915946125
313 311 1549480025.188908 0 19 311 30.68 149.8 99.42845247819356 38 172 321.01887079360006 11 4.8580000000000005 17 8.69 1.15 500 1080 0.0 71.0 115.4 111 24.3 118.7 6 2 3 1 0 19 38.0 4.835589941972921 315.82362 513.3245880000002 505 4513.600000000002 4.835589941972921
314 312 1549480036.287048 0 19 312 41.32 176.9 99.42845247819356 0 175 0.0 12 0.0 18 19.07 0.38 300 4850 0.0 12.5 15.7 104 30.68 149.8 6 2 3 0 0 20 0.0 inf 55.60275 69.83705400000001 505 4540.700000000004 inf
315 313 1549480039.3175678 0 19 313 36.63 179.2 99.42845247819356 10 175 0.0 12 0.0 19 1.89 1.3 1090 4850 0.0 15.5 21.6 104 41.32 176.9 6 2 3 1 0 20 10.0 inf 68.94740999999999 96.081552 505 4543.000000000003 inf
316 314 1549480043.337118 0 19 314 40.66 186.3 99.42845247819356 18 176 14.297413334399998 14 1.722 20 5.92 0.88 1140 2120 574.4 15.9 25.4 109 36.63 179.2 6 2 3 1 0 20 18.0 1.71939477303989 70.726698 112.984788 506 4550.100000000003 1.71939477303989
317 315 1549480049.3970375 0 19 315 46.68 196.8 99.42845247819356 0 175 0.0 13 0.0 21 6.26 0.85 1090 2280 574.4 15.3 21.2 107 40.66 186.3 6 2 11 0 0 20 0.0 inf 68.057766 94.302264 506 4560.600000000003 inf

277
rowers/tests/testdata/erg3.csv vendored Normal file
View File

@@ -0,0 +1,277 @@
index,TimeStamp (sec), activityIdx, lapIdx, pointIdx, ElapsedTime (sec), Horizontal (meters), Stroke500mPace (sec/500m), Cadence (strokes/min), HRCur (bpm), Power (watts), Calories (kCal), Speed (m/sec), StrokeCount, StrokeDistance (meters), DriveLength (meters), DriveTime (ms), StrokeRecoveryTime (ms), WorkPerStroke (joules), AverageDriveForce (lbs), PeakDriveForce (lbs), DragFactor, ElapsedTimeAtDrive (sec), HorizontalAtDrive (meters), WorkoutType, IntervalType, WorkoutState, RowingState, WorkoutDurationType, WorkoutIntervalCount, Cadence (stokes/min), AverageBoatSpeed (m/s), AverageDriveForce (N), PeakDriveForce (N), Stroke Number,cum_dist,originalvelo
0,1549480074.0,0,0,0,2.16,3.3,322.21017252631356,0,163,10.008764889199998,0,1.529,1,1.83,0.74,0,0,0,0.0,0.0,0,0.0,0.0,1,1,1,1,128,20,0.0,1.5274637991079612,0.0,0.0,0,3.3,1.5274637991079612
1,1549480077.0290694,0,0,1,5.21,8.5,349.6038194685721,0,160,10.008764889199998,0,1.529,2,5.82,1.09,1530,1850,0,24.0,36.3,112,2.16,3.3,1,1,1,1,128,0,0.0,1.5274637991079612,106.75728,161.47038600000002,0,8.5,1.5274637991079612
2,1549480081.04905,0,0,2,9.27,16.5,244.89195926599695,17,158,19.1748919572,0,1.899,3,6.58,1.09,1260,2080,0,26.8,38.4,107,5.21,8.5,1,1,1,1,128,0,17.0,1.8958064760749225,119.212296,170.811648,1,16.5,1.8958064760749223
3,1549480090.138511,0,0,3,18.34,40.9,191.64775276357562,20,152,64.0699240132,1,2.839,6,8.43,1.27,970,1810,0,46.0,72.7,113,9.27,16.5,1,1,1,1,128,0,20.0,2.8315777551251555,204.61812,323.38559399999997,4,40.9,2.8315777551251555
4,1549480092.659471,0,0,4,20.36,47.0,170.23120773429352,20,150,64.0699240132,1,2.839,7,8.57,1.24,900,1790,0,53.8,84.3,112,18.34,40.9,1,1,1,1,128,0,20.0,2.8315777551251555,239.314236,374.984946,5,47.0,2.8315777551251555
5,1549480095.3897312,0,0,5,23.39,56.7,168.48717586235105,21,148,75.44890077760002,2,2.998,8,8.92,1.3,860,1780,0,61.7,102.7,112,20.36,47.0,1,1,1,1,128,0,21.0,2.989894157746816,274.455174,456.832194,5,56.7,2.989894157746816
6,1549480098.359191,0,0,6,26.42,67.0,154.94223257896957,21,145,89.87102810559999,2,3.178,9,9.5,1.33,840,1820,0,68.8,119.3,112,23.39,56.7,1,1,1,1,128,0,21.0,3.1685678073510766,306.037536,530.672646,7,67.0,3.168567807351077
7,1549480112.4274712,0,0,7,40.37,115.7,146.39751472623868,20,140,120.15292940280003,5,3.5010000000000003,14,9.92,1.18,770,1950,0,47.0,75.3,112,26.42,67.0,1,1,1,1,128,0,20.0,3.489914148111956,209.06634,334.950966,11,115.7,3.489914148111956
8,1549480115.5184207,0,0,8,43.54,125.9,145.93465198341596,21,140,110.53743434999997,5,3.405,15,8.99,1.21,850,1780,0,41.1,65.5,112,40.37,115.7,1,1,1,1,128,0,21.0,3.394433129667345,182.821842,291.35841,12,125.9,3.394433129667345
9,1549480118.5786006,0,0,9,46.55,135.2,159.16525599045562,21,140,91.92253954239999,6,3.202,16,8.41,1.15,820,1740,0,49.1,80.2,112,43.54,125.9,1,1,1,1,128,0,21.0,3.1924403013663643,218.407602,356.74724399999997,13,135.2,3.1924403013663643
10,1549480130.1267705,0,0,10,57.65,167.8,171.65571397230448,21,139,63.52982213480002,8,2.8310000000000004,20,8.27,1.12,890,1850,0,29.8,43.4,112,46.55,135.2,1,1,1,1,128,0,21.0,2.8237420229287853,132.556956,193.052748,17,167.8,2.8237420229287853
11,1549480132.557391,0,0,11,60.67,175.9,181.23696322233977,21,139,63.52982213480002,8,2.8310000000000004,21,8.06,1.09,930,1870,0,31.3,45.7,112,57.65,167.8,1,1,1,1,128,0,21.0,2.8237420229287853,139.229286,203.283654,18,175.9,2.8237420229287853
12,1549480135.7676506,0,0,12,63.69,184.1,184.62753148327025,20,138,54.80678664999999,8,2.695,22,7.98,1.24,1010,1800,0,38.1,56.0,112,60.67,175.9,1,1,1,1,128,0,20.0,2.688750268875027,169.477182,249.10032,19,184.1,2.688750268875027
13,1549480138.4981205,0,0,13,66.71,192.6,186.1563855186528,20,137,53.836419949199986,9,2.679,23,8.34,1.24,950,1830,0,47.2,76.3,112,63.69,184.1,1,1,1,1,128,0,20.0,2.672510556416698,209.95598400000003,339.399186,20,192.6,2.672510556416698
14,1549480141.5278008,0,0,14,69.74,201.6,178.61103294714712,20,136,62.1265148,9,2.81,24,8.56,1.18,870,1850,0,49.8,82.2,112,66.71,192.6,1,1,1,1,128,0,20.0,2.8023764152000896,221.521356,365.643684,21,201.6,2.80237641520009
15,1549480144.556841,0,0,15,72.75,210.8,170.04002037467947,21,136,72.39557218039998,10,2.957,25,8.93,1.18,860,1920,0,47.2,76.7,112,69.74,201.6,1,1,1,1,128,0,21.0,2.949330501976052,209.95598400000003,341.178474,22,210.8,2.9493305019760516
16,1549480147.5570009,0,0,16,75.79,220.0,165.66904878825562,20,135,77.7366182656,10,3.028,26,8.92,1.21,890,1890,0,45.0,71.7,112,72.75,210.8,1,1,1,1,128,0,20.0,3.0193236714975846,200.1699,318.9373740000001,23,220.0,3.0193236714975846
17,1549480150.5869613,0,0,17,78.8,228.9,165.58476172807488,20,134,77.89075559999998,11,3.03,27,9.07,1.15,860,2010,0,41.3,64.7,112,75.79,220.0,1,1,1,1,128,0,20.0,3.0215131737974383,183.711486,287.7998340000001,24,228.9,3.021513173797438
18,1549480153.6174812,0,0,18,81.83,237.9,168.23156301411422,20,133,74.6964239616,11,2.988,28,8.92,1.24,910,1940,0,49.0,78.4,112,78.8,228.9,1,1,1,1,128,0,20.0,2.9797377830750893,217.96277999999998,348.740448,25,237.9,2.9797377830750893
19,1549480156.6476512,0,0,19,84.86,247.2,168.55327212518216,20,132,71.7365470976,12,2.948,29,9.14,1.27,910,1920,0,51.7,89.4,112,81.83,237.9,1,1,1,1,128,0,20.0,2.940138774550159,229.972974,397.670868,26,247.2,2.940138774550159
20,1549480159.6473813,0,0,20,87.87,256.6,165.16136258644548,20,131,79.20915750440001,12,3.047,30,9.0,1.18,840,1890,0,48.3,77.7,113,84.86,247.2,1,1,1,1,128,0,20.0,3.0380362133916634,214.849026,345.6266940000001,27,256.6,3.0380362133916634
21,1549480162.677582,0,0,21,90.9,265.9,155.08711083218813,21,130,84.3059185668,13,3.111,31,9.29,1.21,860,1980,0,51.1,76.1,112,87.87,256.6,1,1,1,1,128,0,21.0,3.102121851346321,227.30404199999998,338.5095419999999,28,265.9,3.102121851346321
22,1549480171.767792,0,0,22,99.19,288.4,185.66032846073944,20,128,83.01183065000002,14,3.095,32,9.13,1.15,820,1970,0,48.6,75.9,112,90.9,265.9,1,1,1,0,128,0,20.0,3.0858482996975867,216.183492,337.6198980000001,31,288.4,3.0858482996975867
23,1549480202.9954321,0,0,23,106.13,298.3,269.0121118543087,-1,114,9.891399467599998,14,1.523,33,1.36,1.8,890,1970,0,25.3,43.8,112,99.19,288.4,1,1,1,0,128,0,-1.0,1.5208200261581046,112.53996599999999,194.83203600000002,31,298.3,1.5208200261581046
24,1549480211.0651026,0,0,24,108.24,302.0,317.1983813830841,-1,113,9.891399467599998,15,1.523,34,2.16,0.25,1320,1970,0,38.0,57.2,112,106.13,298.3,1,1,1,1,128,0,-1.0,1.5208200261581046,169.03236,254.43818399999998,31,302.0,1.5208200261581046
25,1549480218.1149125,0,0,25,115.32,317.3,250.6365922062007,23,112,32.449775251599995,15,2.263,36,5.93,1.3,1090,1380,0,73.1,127.9,112,108.24,302.0,1,1,1,1,128,0,23.0,2.2582539180705483,325.164882,568.9273380000002,33,317.3,2.258253918070548
26,1549480220.124742,0,0,26,117.34,323.8,199.77329516269438,23,111,32.449775251599995,15,2.263,37,8.62,1.3,850,1730,0,71.0,119.7,113,115.32,317.3,1,1,1,1,128,0,23.0,2.2582539180705483,315.82362,532.4519339999999,34,323.8,2.258253918070548
27,1549480223.1545124,0,0,27,120.37,334.4,166.05402545938176,22,110,85.61338627239998,16,3.127,38,9.16,1.27,780,1680,0,72.8,124.1,113,117.34,323.8,1,1,1,1,128,0,22.0,3.1181789834736517,323.830416,552.024102,35,334.4,3.1181789834736513
28,1549480228.0477624,0,0,28,125.26,352.0,140.10661688984806,22,111,129.9847040352,17,3.594,40,9.87,1.24,740,1760,0,65.0,108.9,113,120.37,334.4,1,1,1,1,128,0,22.0,3.5819184755354967,289.1343,484.41115800000006,37,352.0,3.5819184755354967
29,1549480231.2244227,0,0,29,128.43,363.3,138.54184206886646,22,112,136.8285083648,17,3.656,41,9.72,1.27,790,1770,0,54.4,91.0,112,125.26,352.0,1,1,1,1,128,0,22.0,3.6429872495446265,241.983168,404.78802,38,363.3,3.6429872495446265
30,1549480236.1770928,0,0,30,133.4,380.7,141.97882290387201,23,114,115.98086079999997,18,3.46,43,9.71,1.3,780,1760,0,71.0,128.2,112,128.43,363.3,1,1,1,1,128,0,23.0,3.448989446092295,315.82362,570.261804,40,380.7,3.448989446092295
31,1549480239.264373,0,0,31,136.5,392.1,141.91003254461944,22,115,125.90509012480001,19,3.556,44,9.57,1.27,730,1730,0,76.4,130.6,112,133.4,380.7,1,1,1,1,128,0,22.0,3.5438372669926994,339.8440080000001,580.937532,41,392.1,3.5438372669926994
32,1549480244.3356926,0,0,32,141.53,410.3,138.25668376561978,22,118,134.5952256768,20,3.636,46,9.85,1.27,750,1770,0,68.8,120.3,112,136.5,392.1,1,1,1,1,128,0,22.0,3.623713581678504,306.037536,535.120866,43,410.3,3.6237135816785044
33,1549480247.3333328,0,0,33,144.56,421.3,138.30928189871386,22,119,134.5952256768,20,3.636,47,9.7,1.27,750,1750,0,71.3,123.5,112,141.53,410.3,1,1,1,1,128,0,22.0,3.623713581678504,317.158086,549.35517,44,421.3,3.6237135816785044
34,1549480252.404413,0,0,34,149.59,439.3,139.94479513259344,22,121,128.0414435328,22,3.576,49,9.57,1.24,740,1740,0,67.7,118.1,112,144.56,421.3,1,1,1,1,128,0,22.0,3.5635378804076687,301.144494,525.334782,46,439.3,3.5635378804076687
35,1549480255.4028525,0,0,35,152.63,450.2,139.7857458294814,22,122,128.0414435328,22,3.576,50,9.56,1.27,760,1730,0,68.3,118.0,112,149.59,439.3,1,1,1,1,128,0,22.0,3.5635378804076687,303.813426,524.88996,47,450.2,3.5635378804076687
36,1549480261.4625926,0,0,36,158.67,472.3,138.5286030208388,22,123,135.93225461760002,24,3.648,52,9.99,1.27,720,1810,0,76.9,128.1,112,152.63,450.2,1,1,1,1,128,0,22.0,3.635570420999055,342.068118,569.8169819999998,49,472.3,3.6355704209990547
37,1549480263.4721828,0,0,37,160.67,479.6,136.4775833464411,22,124,135.93225461760002,24,3.648,53,9.92,1.33,760,1740,0,70.7,128.0,112,158.67,472.3,1,1,1,1,128,0,22.0,3.635570420999055,314.4891540000001,569.37216,50,479.6,3.6355704209990547
38,1549480271.3356824,0,0,38,168.55,508.9,134.9929107751404,22,126,146.24328116159998,25,3.738,56,10.07,1.3,730,1760,0,79.1,152.4,112,160.67,479.6,1,1,1,1,128,0,22.0,3.7252272388615695,351.854202,677.908728,53,508.9,3.7252272388615704
39,1549480274.5419126,0,0,39,171.76,521.1,133.41049791038697,22,127,148.0109085756,26,3.753,57,10.21,1.33,740,1780,0,78.0,142.3,112,168.55,508.9,1,1,1,1,128,0,22.0,3.7391564463057136,346.96116,632.9817059999999,54,521.1,3.7391564463057136
40,1549480279.495213,0,0,40,176.72,539.8,132.93287479952812,22,128,150.50943270719998,27,3.774,59,10.42,1.3,720,1840,0,80.4,142.2,112,171.76,521.1,1,1,1,1,128,0,22.0,3.7608123354644607,357.63688800000006,632.536884,56,539.8,3.7608123354644607
41,1549480282.612123,0,0,41,179.83,551.6,132.75510635360996,22,130,151.9497046368,28,3.786,60,10.13,1.3,720,1770,0,78.7,142.7,112,176.72,539.8,1,1,1,1,128,0,22.0,3.772446054021428,350.0749140000001,634.7609940000001,57,551.6,3.7724460540214277
42,1549480287.564983,0,0,42,184.77,570.1,133.00616841600598,22,133,149.31618168319997,29,3.764,62,9.99,1.3,720,1740,0,79.1,137.8,112,179.83,551.6,1,1,1,1,128,0,22.0,3.750656364863851,351.854202,612.9647160000002,59,570.1,3.750656364863851
43,1549480290.681243,0,0,43,187.89,581.9,133.82249645530413,23,134,148.4846694604,29,3.757,63,10.07,1.24,690,1800,0,76.4,128.5,112,184.77,570.1,1,1,1,1,128,0,23.0,3.7433555439095607,339.8440080000001,571.59627,60,581.9,3.7433555439095607
44,1549480295.603473,0,0,44,192.81,599.9,135.2035879464936,22,136,143.09712040679997,31,3.711,65,9.77,1.21,710,1760,0,69.9,122.2,112,187.89,581.9,1,1,1,1,128,0,22.0,3.698498409645684,310.93057799999997,543.572484,62,599.9,3.698498409645684
45,1549480298.7510426,0,0,45,195.96,611.4,136.99885087184128,22,137,137.16561650119996,31,3.659,66,9.84,1.24,730,1810,0,74.5,126.5,112,192.81,599.9,1,1,1,1,128,0,22.0,3.646441073512252,331.39239,562.69983,63,611.4,3.646441073512252
46,1549480304.780513,0,0,46,201.99,633.3,138.23345786430957,22,139,134.3732434912,33,3.634,68,9.77,1.3,750,1760,0,72.6,131.6,112,195.96,611.4,1,1,1,1,128,0,22.0,3.621876131836291,322.94077200000004,585.3857519999999,65,633.3,3.621876131836291
47,1549480306.7904928,0,0,47,204.02,640.7,137.45936098029367,22,139,134.3732434912,33,3.634,69,9.98,1.33,760,1770,0,74.0,135.1,112,201.99,633.3,1,1,1,1,128,0,22.0,3.621876131836291,329.16828,600.954522,66,640.7,3.621876131836291
48,1549480314.682763,0,0,48,211.89,669.9,135.61826637357387,22,141,143.3286066716,34,3.713,72,10.13,1.27,710,1800,0,74.9,137.4,112,204.02,640.7,1,1,1,1,128,0,22.0,3.699593044765076,333.1716780000001,611.185428,69,669.9,3.6995930447650758
49,1549480317.8899336,0,0,49,215.1,681.9,134.1872503785136,22,141,146.47814720000002,35,3.74,73,10.05,1.33,740,1760,0,77.9,142.8,111,211.89,669.9,1,1,1,1,128,0,22.0,3.726615487813968,346.51633799999996,635.205816,70,681.9,3.7266154878139677
50,1549480322.8131335,0,0,50,220.03,700.2,134.42170873653785,22,142,146.1259423484,36,3.737,75,10.21,1.33,740,1800,0,80.2,142.7,112,215.1,681.9,1,1,1,1,128,0,22.0,3.723562704795949,356.74724399999997,634.7609940000001,72,700.2,3.7235627047959485
51,1549480325.9596837,0,0,51,223.16,712.1,133.90814899304564,22,143,145.30632759999997,37,3.73,76,10.27,1.33,740,1790,0,80.1,147.1,112,220.03,700.2,1,1,1,1,128,0,22.0,3.7166431279268566,356.30242200000004,654.333162,73,712.1,3.7166431279268566
52,1549480331.003654,0,0,52,228.2,731.1,132.91870234892065,22,143,152.55251947879998,39,3.791,78,10.13,1.3,720,1760,0,74.7,135.3,111,223.16,712.1,1,1,1,1,128,0,22.0,3.777861730260673,332.282034,601.8441660000002,75,731.1,3.7778617302606725
53,1549480333.9989738,0,0,53,231.22,742.4,132.18436882158576,22,143,152.55251947879998,39,3.791,79,10.19,1.3,720,1810,0,80.0,146.0,112,228.2,731.1,1,1,1,1,128,0,22.0,3.777861730260673,355.8576,649.44012,76,742.4,3.7778617302606725
54,1549480340.0588837,0,0,54,237.26,765.4,132.35762279109358,22,144,152.4318292,40,3.79,81,10.28,1.27,700,1820,0,82.6,145.5,112,231.22,742.4,1,1,1,1,128,0,22.0,3.77586467301012,367.422972,647.21601,78,765.4,3.7758646730101195
55,1549480342.0682535,0,0,55,239.28,773.0,132.55934089986368,22,144,152.4318292,40,3.79,82,10.06,1.27,700,1760,0,79.8,139.9,112,237.26,765.4,1,1,1,1,128,0,22.0,3.77586467301012,354.967956,622.305978,79,773.0,3.7758646730101195
56,1549480348.128433,0,0,56,245.33,795.8,132.8419471022511,22,145,150.62910624999998,42,3.775,84,10.2,1.3,710,1800,0,83.8,148.6,111,239.28,773.0,1,1,1,1,128,0,22.0,3.761095230931247,372.760836,661.005492,81,795.8,3.761095230931247
57,1549480350.1383328,0,0,57,247.34,803.4,132.87557288724682,22,145,150.62910624999998,42,3.775,85,10.34,1.3,720,1820,0,81.6,148.8,112,245.33,795.8,1,1,1,1,128,0,22.0,3.761095230931247,362.974752,661.8951360000002,82,803.4,3.761095230931247
58,1549480353.1974928,0,0,58,250.37,814.9,132.66304442527036,22,145,152.07014032839996,43,3.787,86,10.35,1.33,730,1800,0,79.8,146.1,112,247.34,803.4,1,1,1,1,128,0,22.0,3.773015393902807,354.967956,649.884942,83,814.9,3.773015393902807
59,1549480358.0319328,0,0,59,255.25,833.3,132.41177946379648,22,144,151.9497046368,44,3.786,88,10.19,1.27,690,1800,0,86.7,154.6,111,250.37,814.9,1,1,1,1,128,0,22.0,3.7727307024824572,385.660674,687.694812,85,833.3,3.772730702482457
60,1549480361.2074125,0,0,60,258.43,845.6,132.11734422868764,22,144,153.2779992044,45,3.797,89,10.27,1.27,690,1800,0,83.1,145.5,112,255.25,833.3,1,1,1,1,128,0,22.0,3.7835792659856224,369.647082,647.21601,86,845.6,3.7835792659856224
61,1549480366.1932025,0,0,61,263.4,864.3,132.23963108598585,22,144,154.00577535559998,46,3.803,91,10.34,1.3,720,1820,0,79.7,134.4,112,258.43,845.6,1,1,1,1,128,0,22.0,3.7896013339396695,354.52313399999997,597.840768,88,864.3,3.7896013339396695
62,1549480369.2787328,0,0,62,266.49,876.0,132.43246830675903,22,144,150.9885074656,46,3.778,92,10.49,1.3,720,1880,0,81.8,143.8,112,263.4,864.3,1,1,1,1,128,0,22.0,3.7639265281541694,363.864396,639.654036,89,876.0,3.7639265281541703
63,1549480377.2027328,0,0,63,274.42,906.0,132.49243533198995,22,145,152.7940911196,48,3.793,95,10.49,1.27,700,1880,0,83.2,142.3,112,266.49,876.0,1,1,1,1,128,0,22.0,3.779860901118839,370.091904,632.9817059999999,92,906.0,3.779860901118839
64,1549480380.379173,0,0,64,277.59,918.0,132.54079925750744,22,145,152.3112025932,49,3.789,96,10.35,1.3,720,1820,0,80.4,139.7,112,274.42,906.0,1,1,1,1,128,0,22.0,3.7755795514611488,357.63688800000006,621.416334,93,918.0,3.775579551461149
65,1549480385.3907232,0,0,65,282.6,936.9,132.69401891658038,22,146,150.50943270719998,50,3.774,98,10.21,1.27,700,1800,0,81.9,146.2,112,277.59,918.0,1,1,1,1,128,0,22.0,3.7599639043465194,364.309218,650.329764,95,936.9,3.7599639043465185
66,1549480388.4191332,0,0,66,285.63,948.5,132.4416709148496,22,146,152.67327344639995,51,3.792,99,10.14,1.3,710,1770,0,85.1,153.0,112,282.6,936.9,1,1,1,1,128,0,22.0,3.7787182587666255,378.543522,680.5776599999999,96,948.5,3.7787182587666264
67,1549480396.342954,0,0,67,293.53,978.5,132.22695071890425,22,147,153.2779992044,52,3.797,102,10.49,1.3,720,1870,0,82.8,152.8,112,285.63,948.5,1,1,1,1,128,0,22.0,3.7830067337519866,368.312616,679.6880160000002,99,978.5,3.7830067337519866
68,1549480399.5196738,0,0,68,296.72,990.6,132.91714119459002,22,148,150.9885074656,53,3.778,103,10.13,1.27,700,1780,0,76.7,130.3,112,293.53,978.5,1,1,1,1,128,0,22.0,3.764493299201928,341.178474,579.603066,100,990.6,3.7644932992019275
69,1549480402.910564,0,1,69,300.08,1003.2,133.7052470125031,22,148,147.30215842439998,54,3.747,104,10.06,1.3,720,1770,0,78.8,135.7,112,296.72,990.6,1,1,1,1,128,0,22.0,3.7338510940183705,350.519736,603.6234539999998,101,1003.2,3.7338510940183705
70,1549480404.559314,0,1,70,301.77,1009.5,133.94237803704698,22,148,147.30215842439998,54,3.747,105,9.84,1.24,690,1740,0,77.2,137.0,112,300.08,1003.2,1,1,1,1,128,1,22.0,3.7338510940183705,343.402584,609.40614,102,1009.5,3.7338510940183705
71,1549480410.5894938,0,1,71,307.81,1032.2,133.80332389066382,22,148,148.1292541792,56,3.754,107,10.06,1.27,700,1780,0,82.9,142.3,112,301.77,1009.5,1,1,1,1,128,1,22.0,3.7405550983766,368.757438,632.9817059999999,104,1032.2,3.7405550983765994
72,1549480412.6286938,0,1,72,309.83,1039.8,133.43511680245388,22,148,148.1292541792,56,3.754,108,10.13,1.3,710,1770,0,82.2,142.9,111,307.81,1032.2,1,1,1,1,128,1,22.0,3.7405550983766,365.643684,635.6506380000002,105,1039.8,3.7405550983765994
73,1549480418.6586733,0,1,73,315.86,1062.7,133.02328741183936,22,149,150.8686436124,58,3.777,110,10.21,1.33,730,1770,0,80.9,141.9,112,309.83,1039.8,1,1,1,1,128,1,22.0,3.7639265281541694,359.86099800000005,631.2024180000002,107,1062.7,3.7639265281541703
74,1549480420.6686034,0,1,74,317.89,1070.3,132.79039387977997,22,149,150.8686436124,58,3.777,111,10.21,1.3,720,1780,0,78.7,133.8,112,315.86,1062.7,1,1,1,1,128,1,22.0,3.7639265281541694,350.0749140000001,595.1718360000001,108,1070.3,3.7639265281541703
75,1549480428.5328429,0,1,75,325.74,1099.8,133.4024724319576,22,149,149.79272232959997,60,3.768,114,10.2,1.27,710,1820,0,83.2,144.0,112,317.89,1070.3,1,1,1,1,128,1,22.0,3.754317465084848,370.091904,640.54368,111,1099.8,3.7543174650848474
76,1549480431.768223,0,1,76,328.98,1112.1,133.45478745301213,22,149,147.1842538208,60,3.746,115,10.49,1.33,740,1850,0,78.5,142.2,112,325.74,1099.8,1,1,1,1,128,1,22.0,3.73245744998507,349.18527,632.536884,112,1112.1,3.73245744998507
77,1549480437.7995832,0,1,77,335.01,1134.9,133.0450024365526,22,149,151.4685977504,62,3.782,117,10.49,1.3,720,1860,0,81.6,141.4,112,328.98,1112.1,1,1,1,1,128,1,22.0,3.768749528906308,362.974752,628.9783080000002,114,1134.9,3.768749528906309
78,1549480439.8383632,0,1,78,337.04,1142.5,132.74559670727098,22,149,151.4685977504,62,3.782,118,10.57,1.33,730,1870,0,83.9,144.0,112,335.01,1134.9,1,1,1,1,128,1,22.0,3.768749528906308,373.205658,640.54368,115,1142.5,3.768749528906309
79,1549480442.8391232,0,1,79,340.06,1154.0,132.57269814075858,21,148,150.74884321279998,63,3.776,119,10.64,1.3,710,1900,0,84.4,149.5,112,337.04,1142.5,1,1,1,1,128,1,21.0,3.7619441727484766,375.429768,665.0088900000002,116,1154.0,3.7619441727484766
80,1549480450.7011936,0,1,80,347.91,1184.0,131.46662541796974,22,148,155.71287063640003,65,3.817,122,10.57,1.3,700,1850,0,87.1,152.2,112,340.06,1154.0,1,1,1,1,128,1,22.0,3.8028597505324,387.43996200000004,677.0190839999998,119,1184.0,3.8028597505324004
81,1549480453.9378335,0,1,81,351.13,1196.5,130.90421093160626,22,149,159.53766133759999,65,3.848,123,10.56,1.3,710,1850,0,82.6,148.1,112,347.91,1184.0,1,1,1,1,128,1,22.0,3.8343558282208585,367.422972,658.781382,120,1196.5,3.8343558282208585
82,1549480458.9820035,0,1,82,356.19,1215.6,131.41586033989825,22,148,154.7358515612,67,3.809,125,10.57,1.3,710,1870,0,83.6,149.4,112,351.13,1196.5,1,1,1,1,128,1,22.0,3.79477838494232,371.871192,664.564068,122,1215.6,3.79477838494232
83,1549480462.0075836,0,1,83,359.21,1227.2,131.44296239278682,22,148,154.7358515612,67,3.809,126,10.35,1.27,690,1830,0,83.8,147.7,112,356.19,1215.6,1,1,1,1,128,1,22.0,3.79477838494232,372.760836,657.0020939999998,123,1227.2,3.79477838494232
84,1549480469.9875338,0,1,84,367.18,1257.5,131.27749227384868,22,148,158.9165706996,69,3.843,129,10.64,1.3,710,1890,0,84.4,146.3,112,359.21,1227.2,1,1,1,1,128,1,22.0,3.8290703017307393,375.429768,650.7745860000001,126,1257.5,3.8290703017307393
85,1549480473.076864,0,1,85,370.29,1269.5,131.45964159923068,21,148,153.5203359172,70,3.799,130,10.63,1.3,710,1890,0,85.9,151.9,112,367.18,1257.5,1,1,1,1,128,1,21.0,3.785584494245912,382.102098,675.684618,127,1269.5,3.7855844942459114
86,1549480476.106764,0,1,86,373.31,1281.0,132.31198212453012,21,148,154.00577535559998,70,3.803,131,10.56,1.27,700,1890,0,82.7,145.8,112,370.29,1269.5,1,1,1,1,128,1,21.0,3.7896013339396695,367.867794,648.550476,128,1281.0,3.7896013339396695
87,1549480481.0605335,0,1,87,378.26,1299.5,133.0674836706866,22,148,150.27027581439995,71,3.772,133,10.35,1.33,740,1830,0,82.5,146.7,112,373.31,1281.0,1,1,1,1,128,1,22.0,3.757985719654265,366.97815,652.5538740000001,130,1299.5,3.757985719654265
88,1549480484.1765134,0,1,88,381.37,1311.3,133.36749419884825,22,149,147.06641215000002,72,3.745,134,10.51,1.27,710,1890,0,80.8,140.3,112,378.26,1299.5,1,1,1,1,128,1,22.0,3.7319002836244217,359.41617599999995,624.085266,131,1311.3,3.7319002836244217
89,1549480487.2061238,0,1,89,384.39,1322.6,134.00553661357927,22,149,150.27027581439995,73,3.772,135,10.29,1.27,710,1840,0,78.3,134.6,112,381.37,1311.3,1,1,1,1,128,1,22.0,3.75826819001804,348.295626,598.730412,132,1322.6,3.75826819001804
90,1549480492.1299846,0,1,90,389.33,1340.6,135.089596346954,21,149,141.48369164439998,74,3.697,137,10.07,1.27,720,1820,0,77.9,134.1,112,384.39,1322.6,1,1,1,1,128,1,21.0,3.684055408193339,346.51633799999996,596.506302,134,1340.6,3.6840554081933394
91,1549480495.2758446,0,1,91,392.46,1352.3,136.1896361065424,22,149,140.11044354999999,74,3.685,138,9.99,1.24,700,1810,0,77.9,139.4,112,389.33,1340.6,1,1,1,1,128,1,22.0,3.672150411280846,346.51633799999996,620.081868,135,1352.3,3.672150411280846
92,1549480503.405515,0,1,92,400.33,1381.3,135.83154355273666,22,148,141.59853229759997,76,3.698,141,10.36,1.27,710,1890,0,83.1,141.9,112,392.46,1352.3,1,1,1,1,128,1,22.0,3.68486992409168,369.647082,631.2024180000002,138,1381.3,3.6848699240916796
93,1549480506.5858748,0,1,93,403.53,1393.4,135.1703552792469,21,148,142.6348958804,77,3.707,142,10.22,1.27,710,1830,0,80.0,145.0,112,400.33,1381.3,1,1,1,1,128,1,21.0,3.6938534278959807,355.8576,644.9919,139,1393.4,3.6938534278959807
94,1549480511.6248052,0,1,94,408.49,1411.7,134.988945577869,22,147,145.1894905692,78,3.729,144,10.07,1.27,710,1800,0,79.7,142.8,112,403.53,1393.4,1,1,1,1,128,1,22.0,3.7155383815114815,354.52313399999997,635.205816,141,1411.7,3.715538381511481
95,1549480514.5956855,0,1,95,411.61,1423.5,134.27414581618805,22,147,144.0245630852,79,3.719,145,10.22,1.24,690,1860,0,84.7,148.0,112,408.49,1411.7,1,1,1,1,128,1,22.0,3.705899792469612,376.764234,658.33656,142,1423.5,3.7058997924696118
96,1549480522.5443654,0,1,96,419.48,1453.0,133.724417646103,22,147,149.9120157052,80,3.769,148,10.36,1.3,720,1840,0,81.0,142.6,112,411.61,1423.5,1,1,1,1,128,1,22.0,3.7554453958239447,360.30582000000004,634.3161719999998,145,1453.0,3.755445395823945
97,1549480525.8747456,0,1,97,422.69,1465.2,133.15765675699885,22,147,148.84065279999996,81,3.76,149,10.44,1.3,720,1860,0,82.6,148.2,113,419.48,1453.0,1,1,1,1,128,1,22.0,3.74672161858374,367.422972,659.2262039999998,146,1465.2,3.7467216185837398
98,1549480533.5535154,0,1,98,430.55,1494.7,133.31576273973818,21,147,149.67349225639998,83,3.767,152,10.37,1.27,700,1860,0,86.1,157.7,113,422.69,1465.2,1,1,1,1,128,1,21.0,3.7537537537537538,382.991742,701.4842940000001,149,1494.7,3.753753753753754
99,1549480536.644306,0,1,99,433.77,1507.0,133.06618459949783,22,147,149.79272232959997,84,3.768,153,10.37,1.27,700,1840,0,81.1,148.0,113,430.55,1494.7,1,1,1,1,128,1,22.0,3.754599384245701,360.750642,658.33656,150,1507.0,3.7545993842457013
100,1549480541.623356,0,1,100,438.75,1525.8,132.9720280471956,22,147,151.10843478919998,85,3.779,155,10.37,1.3,720,1830,0,82.5,142.7,112,433.77,1507.0,1,1,1,1,128,1,22.0,3.7653437758867385,366.97815,634.7609940000001,152,1525.8,3.7653437758867385
101,1549480544.7736356,0,1,101,441.84,1537.6,132.3618296172319,22,147,151.4685977504,85,3.782,156,10.37,1.3,720,1830,0,84.1,148.2,113,438.75,1525.8,1,1,1,1,128,1,22.0,3.7678975131876418,374.095302,659.2262039999998,153,1537.6,3.7678975131876418
102,1549480550.6834354,0,1,102,447.87,1560.6,131.8011892501163,22,148,155.8352864096,87,3.818,158,10.37,1.27,690,1830,0,87.8,148.4,113,441.84,1537.6,1,1,1,1,128,1,22.0,3.80430647492962,390.553716,660.115848,155,1560.6,3.80430647492962
103,1549480552.6934354,0,1,103,449.9,1568.3,131.05333355623756,22,148,155.8352864096,87,3.818,159,10.44,1.3,710,1820,0,83.7,152.7,112,447.87,1560.6,1,1,1,1,128,1,22.0,3.80430647492962,372.316014,679.2431939999999,156,1568.3,3.80430647492962
104,1549480555.7233655,0,1,104,452.92,1579.9,130.91530937069135,22,148,158.17339230840003,88,3.837,160,10.51,1.3,710,1850,0,83.3,145.7,112,449.9,1568.3,1,1,1,1,128,1,22.0,3.8226299694189603,370.536726,648.105654,157,1579.9,3.82262996941896
105,1549480560.6723056,0,1,105,457.85,1598.3,132.78903865025367,22,148,153.64159999999998,89,3.8,162,10.07,1.24,730,1780,0,63.6,110.7,112,452.92,1579.9,1,1,1,1,128,1,22.0,3.7864445285876562,282.906792,492.417954,159,1598.3,3.786444528587656
106,1549480566.8226056,0,1,106,464.0,1620.9,135.5266167902113,22,149,138.97288124999997,91,3.675,164,9.86,1.27,720,1760,0,75.8,131.1,112,457.85,1598.3,1,1,1,1,128,1,22.0,3.662198784150004,337.175076,583.161642,161,1620.9,3.6621987841500037
107,1549480568.832716,0,1,107,466.01,1628.3,136.92626205120862,22,149,138.97288124999997,91,3.675,165,9.93,1.3,730,1760,0,78.9,142.9,112,464.0,1620.9,1,1,1,1,128,1,22.0,3.662198784150004,350.964558,635.6506380000002,162,1628.3,3.6621987841500037
108,1549480571.862656,0,1,108,469.04,1639.7,135.4615506513375,22,149,141.36891310080003,91,3.696,166,10.14,1.3,730,1790,0,79.8,140.0,112,466.01,1628.3,1,1,1,1,128,1,22.0,3.682427456179113,354.967956,622.7508,163,1639.7,3.6824274561791133
109,1549480576.8114953,0,1,109,474.0,1658.2,133.89644874909146,22,149,148.36613460479998,93,3.756,168,10.36,1.3,720,1830,0,80.5,141.8,112,469.04,1639.7,1,1,1,1,128,1,22.0,3.74251497005988,358.08171,630.757596,165,1658.2,3.7425149700598803
110,1549480579.9017956,0,1,110,477.1,1670.0,132.99614241019543,22,149,150.62910624999998,93,3.775,169,10.43,1.33,740,1840,0,80.4,141.9,112,474.0,1658.2,1,1,1,1,128,1,22.0,3.761095230931247,357.63688800000006,631.2024180000002,166,1670.0,3.761095230931247
111,1549480585.961556,0,1,111,483.15,1692.9,133.26770251916716,22,149,149.67349225639998,95,3.767,171,10.21,1.3,720,1790,0,80.2,147.2,112,477.1,1670.0,1,1,1,1,128,1,22.0,3.7534719615644465,356.74724399999997,654.777984,168,1692.9,3.753471961564447
112,1549480587.971566,0,1,112,485.18,1700.5,132.6839714220122,22,149,149.67349225639998,95,3.767,172,10.07,1.3,720,1750,0,78.5,138.4,112,483.15,1692.9,1,1,1,1,128,1,22.0,3.7534719615644465,349.18527,615.633648,169,1700.5,3.753471961564447
113,1549480594.0314858,0,1,113,491.22,1723.6,131.64827350052832,22,148,157.06297474559997,97,3.828,174,10.36,1.27,690,1830,0,86.9,148.0,112,485.18,1700.5,1,1,1,1,128,1,22.0,3.8138825324180017,386.550318,658.33656,171,1723.6,3.8138825324180017
114,1549480596.040206,0,1,114,493.23,1731.2,130.73280955025766,22,148,157.06297474559997,97,3.828,175,10.51,1.3,710,1840,0,83.0,146.4,112,491.22,1723.6,1,1,1,1,128,1,22.0,3.8138825324180017,369.20226,651.219408,172,1731.2,3.8138825324180017
115,1549480599.0701356,0,1,115,496.25,1742.8,131.45944423645574,22,149,157.55584983039998,98,3.832,176,10.43,1.3,710,1830,0,83.5,147.7,112,493.23,1731.2,1,1,1,1,128,1,22.0,3.817959682345754,371.42637,657.0020939999998,173,1742.8,3.8179596823457542
116,1549480605.0997756,0,1,116,502.3,1765.7,132.27372282078724,21,149,151.10843478919998,99,3.779,178,10.58,1.3,720,1890,0,81.8,145.1,112,496.25,1742.8,1,1,1,1,128,1,21.0,3.765627353517096,363.864396,645.4367219999999,175,1765.7,3.765627353517096
117,1549480607.1095455,0,1,117,504.32,1773.3,132.98730618424062,21,149,151.10843478919998,99,3.779,179,10.36,1.3,720,1830,0,80.1,141.3,112,502.3,1765.7,1,1,1,1,128,1,21.0,3.765627353517096,356.30242200000004,628.533486,176,1773.3,3.765627353517096
118,1549480610.1401553,0,1,118,507.33,1784.6,132.99134867609376,22,148,150.27027581439995,100,3.772,180,10.36,1.3,720,1840,0,81.8,141.2,112,504.32,1773.3,1,1,1,1,128,1,22.0,3.758550702848981,363.864396,628.088664,177,1784.6,3.7585507028489813
119,1549480615.153185,0,1,119,512.34,1803.3,133.26391070887527,22,148,149.67349225639998,101,3.767,182,10.35,1.27,700,1860,0,83.1,149.7,112,507.33,1784.6,1,1,1,1,128,1,22.0,3.7534719615644465,369.647082,665.8985339999998,179,1803.3,3.753471961564447
120,1549480618.2092052,0,1,120,515.4,1815.0,133.35224558961045,22,148,148.84065279999996,102,3.76,183,10.28,1.3,720,1810,0,80.0,141.1,112,512.34,1803.3,1,1,1,1,128,1,22.0,3.74672161858374,355.8576,627.643842,180,1815.0,3.7467216185837398
121,1549480624.2393448,0,1,121,521.44,1837.8,133.26390993276257,22,148,149.5543254688,104,3.766,185,10.27,1.27,700,1840,0,83.5,151.2,112,515.4,1815.0,1,1,1,1,128,1,22.0,3.75234521575985,371.42637,672.5708639999998,182,1837.8,3.75234521575985
122,1549480626.2785847,0,1,122,523.46,1845.3,133.4070370315267,22,148,149.5543254688,104,3.766,186,10.21,1.27,700,1810,0,81.3,142.7,112,521.44,1837.8,1,1,1,1,128,1,22.0,3.75234521575985,361.640286,634.7609940000001,183,1845.3,3.75234521575985
123,1549480632.3094745,0,1,123,529.51,1868.1,133.7596127348976,22,148,147.30215842439998,106,3.747,188,10.14,1.27,710,1800,0,80.1,142.9,112,523.46,1845.3,1,1,1,1,128,1,22.0,3.733293511535877,356.30242200000004,635.6506380000002,185,1868.1,3.733293511535877
124,1549480634.3188744,0,1,124,531.52,1875.6,133.97316157606315,22,148,147.30215842439998,106,3.747,189,9.92,1.24,690,1760,0,79.3,136.0,112,529.51,1868.1,1,1,1,1,128,1,22.0,3.733293511535877,352.743846,604.9579200000002,186,1875.6,3.733293511535877
125,1549480640.3778744,0,1,125,537.58,1898.3,133.84272954737165,22,148,147.42012597760004,107,3.748,191,10.21,1.27,710,1820,0,73.1,133.1,112,531.52,1875.6,1,1,1,1,128,1,22.0,3.734966758795847,325.164882,592.058082,188,1898.3,3.7349667587958466
126,1549480642.3878243,0,1,126,539.59,1905.7,133.99306548136502,22,148,147.42012597760004,107,3.748,192,9.71,1.24,700,1730,0,78.9,137.7,112,537.58,1898.3,1,1,1,1,128,1,22.0,3.734966758795847,350.964558,612.5198939999998,189,1905.7,3.7349667587958466
127,1549480648.4475145,0,1,127,545.63,1928.2,134.41498212851633,22,148,145.7743025312,109,3.734,194,10.08,1.27,710,1800,0,80.0,138.9,112,539.59,1905.7,1,1,1,1,128,1,22.0,3.7210686909280346,355.8576,617.857758,191,1928.2,3.7210686909280346
128,1549480650.4573545,0,1,128,547.65,1935.8,133.89266281368728,22,148,145.7743025312,109,3.734,195,10.0,1.3,720,1750,0,78.9,138.5,112,545.63,1928.2,1,1,1,1,128,1,22.0,3.7210686909280346,350.964558,616.07847,192,1935.8,3.7210686909280346
129,1549480656.4877748,0,1,129,553.69,1958.6,132.90976429156115,22,148,152.55251947879998,111,3.791,197,10.29,1.27,690,1830,0,83.5,143.4,112,547.65,1935.8,1,1,1,1,128,1,22.0,3.7772909269471935,371.42637,637.8747480000002,194,1958.6,3.7772909269471935
130,1549480658.5269349,0,1,130,555.7,1966.2,132.10881551387368,22,148,152.55251947879998,111,3.791,198,10.29,1.27,700,1830,0,84.7,152.5,112,553.69,1958.6,1,1,1,1,128,1,22.0,3.7772909269471935,376.764234,678.35355,195,1966.2,3.7772909269471935
131,1549480664.5566852,0,1,131,561.75,1989.3,132.13164977636524,22,148,153.76292792280003,113,3.801,200,10.21,1.27,690,1800,0,85.7,155.4,112,555.7,1966.2,1,1,1,1,128,1,22.0,3.7875918491023417,381.212454,691.2533880000002,197,1989.3,3.787591849102341
132,1549480666.5673854,0,1,132,563.77,1996.9,131.8916785944947,22,148,153.76292792280003,113,3.801,201,10.07,1.24,680,1760,0,82.4,142.7,112,561.75,1989.3,1,1,1,1,128,1,22.0,3.7875918491023417,366.533328,634.7609940000001,198,1996.9,3.787591849102341
133,1549480672.6262755,0,1,133,569.81,2019.9,131.5437306800994,22,148,154.9797220468,115,3.811,203,10.22,1.3,720,1770,0,74.3,132.6,112,563.77,1996.9,1,1,1,1,128,1,22.0,3.7973722184248495,330.502746,589.833972,200,2019.9,3.7973722184248504
134,1549480674.6367257,0,1,134,571.84,2027.5,132.2845691342075,22,148,154.9797220468,115,3.811,204,9.85,1.3,720,1700,0,78.6,134.7,112,569.81,2019.9,1,1,1,1,128,1,22.0,3.7973722184248495,349.630092,599.1752339999998,200,2027.5,3.7973722184248504
135,1549480680.6961858,0,1,135,577.87,2050.1,133.3953202389299,22,148,146.36068277319998,116,3.739,206,10.07,1.27,710,1780,0,74.3,134.5,112,571.84,2027.5,1,1,1,1,128,1,22.0,3.7255048059012,330.502746,598.2855900000001,203,2050.1,3.7255048059011995
136,1549480682.706616,0,1,136,579.9,2057.6,134.8971528653361,22,148,146.36068277319998,116,3.739,207,9.92,1.3,730,1750,0,76.4,136.3,112,577.87,2050.1,1,1,1,1,128,1,22.0,3.7255048059012,339.8440080000001,606.2923860000002,203,2057.6,3.7255048059011995
137,1549480688.7383962,0,1,137,585.93,2079.9,135.7109977243735,22,148,140.5672009532,118,3.689,209,10.0,1.27,720,1790,0,75.1,129.9,112,579.9,2057.6,1,1,1,1,128,1,22.0,3.6756597809306766,334.061322,577.8237780000002,206,2079.9,3.675659780930677
138,1549480690.7778757,0,1,138,587.96,2087.3,135.7250177553377,22,148,140.5672009532,118,3.689,210,9.85,1.27,720,1760,0,73.1,126.6,112,585.93,2079.9,1,1,1,1,128,1,22.0,3.6756597809306766,325.164882,563.144652,206,2087.3,3.675659780930677
139,1549480696.8080962,0,1,139,594.0,2109.8,134.8316288705538,22,147,146.24328116159998,120,3.738,212,10.28,1.3,720,1830,0,80.5,141.1,112,587.96,2087.3,1,1,1,1,128,1,22.0,3.7243947858473,358.08171,627.643842,209,2109.8,3.7243947858473
140,1549480698.8192658,0,1,140,596.01,2117.4,133.79375515073147,22,147,146.24328116159998,120,3.738,213,10.21,1.3,710,1800,0,83.4,157.4,112,594.0,2109.8,1,1,1,1,128,1,22.0,3.7243947858473,370.981548,700.1498280000002,209,2117.4,3.7243947858473
141,1549480702.844046,0,2,141,600.01,2132.4,132.93405990576792,22,147,151.10843478919998,121,3.779,214,10.5,1.33,740,1850,0,79.0,144.2,112,596.01,2117.4,1,1,1,1,128,1,22.0,3.765627353517096,351.40938,641.433324,211,2132.4,3.765627353517096
142,1549480706.9193661,0,2,142,604.09,2147.9,132.0803034996086,22,146,154.12729489919997,122,3.804,216,10.43,1.33,730,1820,0,84.7,150.4,112,600.01,2132.4,1,1,1,1,128,2,22.0,3.789888577275828,376.764234,669.012288,212,2147.9,3.789888577275828
143,1549480709.9185164,0,2,143,607.1,2159.5,131.63516626324042,22,146,154.12729489919997,122,3.804,217,10.64,1.3,710,1880,0,82.9,143.8,112,604.09,2147.9,1,1,1,1,128,2,22.0,3.789888577275828,368.757438,639.654036,213,2159.5,3.789888577275828
144,1549480712.9483266,0,2,144,610.13,2171.1,131.6015485163609,22,146,156.3255910944,123,3.822,218,10.51,1.3,710,1860,0,85.1,153.9,112,607.1,2159.5,1,1,1,1,128,2,22.0,3.8086532602071914,378.543522,684.581058,215,2171.1,3.8086532602071905
145,1549480717.9629865,0,2,145,615.14,2190.0,131.68554917395522,22,146,154.12729489919997,124,3.804,220,10.42,1.3,720,1830,0,81.3,141.5,112,610.13,2171.1,1,1,1,1,128,2,22.0,3.790175864160097,361.640286,629.42313,216,2190.0,3.7901758641600973
146,1549480720.9888568,0,2,146,618.19,2201.6,131.74240268462907,22,146,153.76292792280003,125,3.801,221,10.21,1.27,700,1800,0,77.5,132.1,112,615.14,2190.0,1,1,1,1,128,2,22.0,3.787018101946528,344.73705,587.609862,217,2201.6,3.7870181019465274
147,1549480724.0178366,0,2,147,621.21,2212.9,133.79552239917936,22,146,152.07014032839996,126,3.787,222,10.28,1.33,750,1810,0,76.2,132.9,112,618.19,2201.6,1,1,1,1,128,2,22.0,3.773015393902807,338.954364,591.168438,219,2212.9,3.773015393902807
148,1549480728.912697,0,2,148,626.08,2230.3,136.17388145695134,20,147,134.81745220159996,127,3.638,224,9.13,1.3,750,1610,0,76.1,137.4,112,621.21,2212.9,1,1,1,1,128,2,20.0,3.6255528968167647,338.5095419999999,611.185428,220,2230.3,3.6255528968167647
149,1549480736.9823565,0,2,149,634.15,2259.7,138.95726674677647,23,146,136.60407673919997,129,3.654,227,9.93,1.27,760,1820,0,71.0,128.7,112,626.08,2230.3,1,1,1,1,128,2,23.0,3.6416605972323377,315.82362,572.485914,223,2259.7,3.6416605972323377
150,1549480740.1576867,0,2,150,637.34,2271.4,137.79569957749598,22,146,129.6594713988,129,3.591,228,9.86,1.3,740,1790,0,80.0,140.2,113,634.15,2259.7,1,1,1,1,128,2,22.0,3.579098067287044,355.8576,623.640444,224,2271.4,3.579098067287044
151,1549480745.0821168,0,2,151,642.25,2289.6,136.2486848779255,22,145,143.56034244999998,130,3.715,230,10.0,1.3,730,1760,0,76.7,134.8,112,637.34,2271.4,1,1,1,1,128,2,22.0,3.7023324694557567,341.178474,599.6200560000002,226,2289.6,3.7023324694557567
152,1549480748.2271068,0,2,152,645.4,2301.3,135.28453724852207,22,145,143.21283235840002,131,3.712,231,10.22,1.3,740,1820,0,72.1,129.4,112,642.25,2289.6,1,1,1,1,128,2,22.0,3.698772007693445,320.716662,575.5996680000002,227,2301.3,3.6987720076934454
153,1549480756.1515667,0,2,153,653.35,2330.2,137.77470758136582,22,144,136.0440716572,133,3.649,234,10.14,1.33,770,1840,0,72.6,129.7,112,645.4,2301.3,1,1,1,1,128,2,22.0,3.635834787667248,322.94077200000004,576.934134,230,2330.2,3.6358347876672483
154,1549480759.296537,0,2,154,656.49,2341.9,136.40307215687224,21,144,133.5982280724,133,3.627,235,10.14,1.36,760,1800,0,88.5,158.2,112,653.35,2330.2,1,1,1,1,128,2,21.0,3.614283648980772,393.66747000000004,703.708404,231,2341.9,3.6142836489807717
155,1549480764.3665168,0,2,155,661.53,2361.1,133.01493796889523,22,144,156.9399167924,135,3.827,237,10.43,1.3,710,1830,0,87.0,153.6,112,656.49,2341.9,1,1,1,1,128,2,22.0,3.813300793166565,386.99514,683.246592,233,2361.1,3.813300793166565
156,1549480767.3659177,0,2,156,664.54,2372.8,130.44518002599548,22,144,156.9399167924,135,3.827,238,10.64,1.3,700,1870,0,85.8,153.7,112,661.53,2361.1,1,1,1,1,128,2,22.0,3.813300793166565,381.657276,683.691414,234,2372.8,3.813300793166565
157,1549480770.3961074,0,2,157,667.57,2384.5,130.6067098203641,22,144,158.7925463264,136,3.842,239,10.63,1.3,700,1880,0,90.1,155.7,112,664.54,2372.8,1,1,1,1,128,2,22.0,3.8284839203675354,400.784622,692.587854,235,2384.5,3.8284839203675345
158,1549480775.439548,0,2,158,672.6,2403.8,130.24066831879938,22,144,160.6596986204,138,3.857,241,10.5,1.3,700,1830,0,88.4,162.3,112,667.57,2384.5,1,1,1,1,128,2,22.0,3.842902159711013,393.22264800000005,721.9461060000001,237,2403.8,3.8429021597110133
159,1549480778.435838,0,2,159,675.63,2415.6,129.86803583561448,22,144,160.6596986204,138,3.857,242,10.57,1.3,700,1840,0,85.2,142.7,112,672.6,2403.8,1,1,1,1,128,2,22.0,3.842902159711013,378.988344,634.7609940000001,238,2415.6,3.8429021597110133
160,1549480781.466008,0,2,160,678.65,2427.3,129.78848272987855,22,144,162.7934325472,138,3.874,243,10.63,1.3,700,1870,0,88.1,153.2,112,675.63,2415.6,1,1,1,1,128,2,22.0,3.85981164119191,391.888182,681.467304,240,2427.3,3.85981164119191
161,1549480786.4808686,0,2,161,683.64,2446.3,130.21710366600337,22,145,160.53476884479997,140,3.856,245,10.7,1.33,720,1880,0,84.9,155.5,112,678.65,2427.3,1,1,1,1,128,2,22.0,3.8414259373079287,377.65387799999996,691.69821,241,2446.3,3.8414259373079287
162,1549480789.5361178,0,2,162,686.71,2458.3,130.424167640322,21,145,158.04975495679997,140,3.836,246,10.56,1.33,720,1830,0,87.6,156.5,112,683.64,2446.3,1,1,1,1,128,2,21.0,3.8217534204693107,389.66407200000003,696.14643,242,2458.3,3.821753420469311
163,1549480794.581518,0,2,163,691.76,2477.7,129.43811498277435,22,146,162.16391494520002,142,3.869,248,10.41,1.3,700,1800,0,84.8,152.3,112,686.71,2458.3,1,1,1,1,128,2,22.0,3.854455750847981,377.20905600000003,677.4639060000002,244,2477.7,3.8544557508479804
164,1549480797.6060874,0,2,164,694.77,2489.4,131.51698135424215,22,146,162.16391494520002,142,3.869,249,10.56,1.3,710,1850,0,81.9,141.7,112,691.76,2477.7,1,1,1,1,128,2,22.0,3.854455750847981,364.309218,630.312774,245,2489.4,3.8544557508479804
165,1549480803.6353376,0,2,165,700.81,2511.6,135.0525492482918,22,147,136.26788966279997,144,3.651,251,9.84,1.24,740,1760,0,64.7,104.9,112,694.77,2489.4,1,1,1,1,128,2,22.0,3.638745360599666,287.7998340000001,466.618278,248,2511.6,3.6387453605996654
166,1549480805.647028,0,2,166,702.84,2518.9,139.15617278707796,22,148,136.26788966279997,144,3.651,252,9.34,1.24,740,1680,0,65.8,113.3,112,700.81,2511.6,1,1,1,1,128,2,22.0,3.638745360599666,292.69287599999996,503.983326,248,2518.9,3.6387453605996654
167,1549480810.6589177,0,2,167,707.82,2536.7,140.1804104160722,22,148,126.01133914039998,145,3.557,254,9.48,1.3,750,1710,0,77.5,133.0,112,702.84,2518.9,1,1,1,1,128,2,22.0,3.5448422545196734,344.73705,591.61326,250,2536.7,3.5448422545196734
168,1549480813.716397,0,2,168,710.9,2548.2,139.1199035527561,23,148,129.76782192640002,146,3.592,255,9.91,1.33,750,1730,0,75.9,135.7,112,707.82,2536.7,1,1,1,1,128,2,23.0,3.5801231562365747,337.6198980000001,603.6234539999998,251,2548.2,3.5801231562365747
169,1549480818.6686268,0,2,169,715.85,2566.6,135.65754602753807,23,148,144.6062447872,147,3.724,257,10.07,1.3,720,1760,0,78.6,139.2,112,710.9,2548.2,1,1,1,1,128,2,23.0,3.7111259556149334,349.630092,619.192224,253,2566.6,3.711125955614934
170,1549480821.7854176,0,2,170,718.95,2578.4,133.22545985967756,22,148,148.36613460479998,147,3.756,258,10.07,1.3,720,1760,0,82.1,148.9,112,715.85,2566.6,1,1,1,1,128,2,22.0,3.74223486265998,365.198862,662.339958,254,2578.4,3.74223486265998
171,1549480826.7983773,0,2,171,723.98,2597.4,132.69226472120872,22,148,152.07014032839996,149,3.787,260,10.35,1.33,730,1800,0,83.2,152.7,112,718.95,2578.4,1,1,1,1,128,2,22.0,3.7738697260170575,370.091904,679.2431939999999,256,2597.4,3.7738697260170575
172,1549480829.8549168,0,2,172,727.03,2609.1,132.06279817863,22,148,152.9149725152,149,3.794,261,10.56,1.3,710,1870,0,89.1,159.5,112,723.98,2597.4,1,1,1,1,128,2,22.0,3.780432481475881,396.336402,709.49109,257,2609.1,3.780432481475881
173,1549480832.855417,0,2,173,730.05,2620.7,131.31149790543736,22,148,155.71287063640003,150,3.817,262,10.7,1.3,710,1890,0,83.5,145.6,112,727.03,2609.1,1,1,1,1,128,2,22.0,3.80343830823064,371.42637,647.660832,258,2620.7,3.8034383082306404
174,1549480837.8048873,0,2,174,734.96,2639.2,131.24291797281884,22,148,157.67922950360003,151,3.833,264,10.35,1.21,710,1850,0,62.6,105.9,112,730.05,2620.7,1,1,1,1,128,2,22.0,3.81854284405071,278.458572,471.066498,260,2639.2,3.81854284405071
175,1549480840.9243472,0,2,175,738.11,2650.7,134.5282763632405,22,148,149.43522195,152,3.765,265,9.48,1.24,730,1720,0,74.5,134.9,111,734.96,2639.2,1,1,1,1,128,2,22.0,3.7512191462225215,331.39239,600.064878,261,2650.7,3.7512191462225224
176,1549480845.8447168,0,2,176,743.01,2668.7,134.3366262591648,22,148,135.26263880639996,153,3.642,267,9.91,1.36,760,1720,0,83.6,148.0,111,738.11,2650.7,1,1,1,1,128,2,22.0,3.629764065335753,371.871192,658.33656,263,2668.7,3.629764065335753
177,1549480853.8581874,0,2,177,751.03,2699.7,131.32604231835836,23,147,166.09319999999997,155,3.9,270,10.57,1.33,720,1810,0,83.0,150.3,112,743.01,2668.7,1,1,1,1,128,2,23.0,3.88530577356438,369.20226,668.5674660000002,266,2699.7,3.8853057735643795
178,1549480857.0635574,0,2,178,754.23,2712.2,128.49024660496568,22,147,164.56474460159998,155,3.888,271,10.28,1.27,680,1790,0,88.0,160.2,112,751.03,2699.7,1,1,1,1,128,2,22.0,3.8729666924864445,391.44336,712.6048440000001,267,2712.2,3.872966692486445
179,1549480861.9237976,0,2,179,759.08,2730.9,129.30646841701946,22,147,162.54143037439997,157,3.872,273,10.35,1.33,710,1760,0,87.2,159.3,112,754.23,2712.2,1,1,1,1,128,2,22.0,3.8577270272355526,387.88478399999997,708.601446,269,2730.9,3.8577270272355526
180,1549480869.9377873,0,2,180,767.12,2762.4,128.60522498172443,23,147,166.73283934999995,159,3.905,276,10.56,1.33,710,1790,0,87.1,157.6,112,759.08,2730.9,1,1,1,1,128,2,23.0,3.890142379211079,387.43996200000004,701.0394719999998,272,2762.4,3.890142379211079
181,1549480873.1726873,0,2,181,770.35,2775.2,127.86287778004346,22,147,169.9556796,159,3.93,277,10.56,1.3,690,1820,0,90.4,163.3,112,767.12,2762.4,1,1,1,1,128,2,22.0,3.9151201941899623,402.119088,726.3943260000002,274,2775.2,3.915120194189962
182,1549480878.0937376,0,2,182,775.26,2794.2,128.1758578312693,22,148,168.5325615652,161,3.919,279,10.55,1.3,690,1830,0,90.4,157.4,112,770.35,2775.2,1,1,1,1,128,2,22.0,3.9041149371437496,402.119088,700.1498280000002,275,2794.2,3.9041149371437496
183,1549480881.2423074,0,2,183,778.41,2806.7,128.33424306107744,22,148,165.8378030176,161,3.898,280,10.7,1.33,710,1840,0,90.3,160.6,112,775.26,2794.2,1,1,1,1,128,2,22.0,3.8831935383659526,401.674266,714.384132,276,2806.7,3.8831935383659526
184,1549480886.2885776,0,2,184,783.45,2826.4,127.98551694255715,22,149,170.0854497748,163,3.931,282,10.77,1.3,690,1860,0,87.5,154.9,112,778.41,2806.7,1,1,1,1,128,2,22.0,3.916040100250626,389.21925,689.0292780000002,278,2826.4,3.916040100250626
185,1549480889.3120973,0,2,185,786.48,2838.4,127.7096190111219,22,149,170.0854497748,163,3.931,283,10.49,1.33,710,1790,0,88.1,157.0,112,783.45,2826.4,1,1,1,1,128,2,22.0,3.916040100250626,391.888182,698.37054,279,2838.4,3.916040100250626
186,1549480894.3263874,0,2,186,791.5,2858.0,127.71550772657464,22,149,168.66160639999998,165,3.92,285,10.57,1.33,710,1790,0,85.6,152.7,112,786.48,2838.4,1,1,1,1,128,2,22.0,3.905639743790033,380.767632,679.2431939999999,281,2858.0,3.9056397437900325
187,1549480897.352278,0,2,187,794.53,2869.9,128.17788646804337,22,149,170.34518826359997,165,3.933,286,10.34,1.27,680,1780,0,84.9,151.5,112,791.5,2858.0,1,1,1,1,128,2,22.0,3.917881209841717,377.65387799999996,673.9053299999999,282,2869.9,3.9178812098417173
188,1549480902.246558,0,2,188,799.42,2889.0,128.32611201482194,23,150,165.0731832064,166,3.892,288,10.35,1.3,690,1750,0,86.3,154.6,112,794.53,2869.9,1,1,1,1,128,2,23.0,3.877171215880893,383.88138599999996,687.694812,284,2889.0,3.877171215880893
189,1549480908.8112679,0,2,189,805.63,2913.4,128.26758633113474,23,151,168.91989365440003,168,3.922,290,10.2,1.24,660,1750,0,87.9,158.7,111,799.42,2889.0,1,1,1,1,128,2,23.0,3.9068604469448354,390.99853800000005,705.932514,287,2913.4,3.906860446944835
190,1549480910.701628,0,2,190,807.64,2921.2,128.02936046337376,23,151,168.91989365440003,168,3.922,291,10.34,1.3,700,1770,0,84.0,151.6,112,805.63,2913.4,1,1,1,1,128,2,23.0,3.9068604469448354,373.65047999999996,674.350152,288,2921.2,3.906860446944835
191,1549480915.560958,0,2,191,812.54,2940.3,128.95757219903962,23,152,165.32779475520002,170,3.894,293,10.13,1.27,680,1720,0,82.5,143.5,112,807.64,2921.2,1,1,1,1,128,2,23.0,3.8792769027853216,366.97815,638.31957,289,2940.3,3.879276902785321
192,1549480921.5916178,0,2,192,818.72,2964.2,129.92817531734354,23,152,160.7846931936,171,3.858,295,10.19,1.3,700,1750,0,84.1,155.6,111,812.54,2940.3,1,1,1,1,128,2,23.0,3.8437884378843785,374.095302,692.1430320000001,292,2964.2,3.8437884378843785
193,1549480923.9305182,0,2,193,820.74,2972.1,129.93618053441557,23,153,160.7846931936,171,3.858,296,10.19,1.3,690,1750,0,87.7,154.4,111,818.72,2964.2,1,1,1,1,128,2,23.0,3.8437884378843785,390.108894,686.805168,293,2972.1,3.8437884378843785
194,1549480928.8196988,0,2,194,825.65,2991.0,129.46666794373772,23,153,164.18410154999995,173,3.885,298,9.98,1.24,660,1730,0,89.1,152.8,111,820.74,2972.1,1,1,1,1,128,2,23.0,3.870268596640607,396.336402,679.6880160000002,294,2991.0,3.870268596640607
195,1549480934.910449,0,2,195,831.82,3015.0,129.25862781402685,23,153,163.4245772292,175,3.879,300,10.13,1.3,700,1720,0,83.9,147.5,112,825.65,2991.0,1,1,1,1,128,2,23.0,3.8645849435770603,373.205658,656.11245,297,3015.0,3.86458494357706
196,1549480936.9205186,0,2,196,833.83,3022.9,129.42476629379104,23,153,163.4245772292,175,3.879,301,10.05,1.3,700,1700,0,85.4,157.6,111,831.82,3015.0,1,1,1,1,128,2,23.0,3.8645849435770603,379.877988,701.0394719999998,298,3022.9,3.86458494357706
197,1549480939.8604188,0,2,197,836.86,3034.6,129.2058926156105,23,154,163.55100159999998,175,3.88,302,10.05,1.27,680,1710,0,83.7,148.6,111,833.83,3022.9,1,1,1,1,128,2,23.0,3.8657801144270914,372.316014,661.005492,299,3034.6,3.8657801144270914
198,1549480941.7202687,0,2,198,838.88,3042.5,129.12548666155683,23,154,165.32779475520002,176,3.894,303,10.05,1.3,690,1700,0,86.7,159.2,112,836.86,3034.6,1,1,1,1,128,2,23.0,3.8792769027853216,385.660674,708.1566240000001,299,3042.5,3.879276902785321
199,1549480944.809809,0,2,199,841.91,3054.3,128.92842847077557,23,154,164.0573510912,176,3.884,304,10.13,1.27,680,1730,0,85.2,153.2,112,838.88,3042.5,1,1,1,1,128,2,23.0,3.869370066553165,378.988344,681.467304,301,3054.3,3.869370066553165
200,1549480949.7894988,0,2,200,846.95,3073.9,129.1433180799442,23,154,165.71020276439995,178,3.897,306,10.49,1.3,700,1800,0,83.2,149.8,112,841.91,3054.3,1,1,1,1,128,2,23.0,3.8828919779451736,370.091904,666.3433560000002,302,3073.9,3.882891977945173
201,1549480954.6186085,0,2,201,851.77,3092.7,128.96491675523194,22,154,163.4245772292,179,3.879,308,10.27,1.27,670,1750,0,86.9,160.2,112,846.95,3073.9,1,1,1,1,128,2,22.0,3.8645849435770603,386.550318,712.6048440000001,304,3092.7,3.86458494357706
202,1549480960.8590186,0,2,202,858.03,3117.3,128.81938055086385,23,154,166.73283934999995,181,3.905,310,10.35,1.3,690,1770,0,88.2,154.7,112,851.77,3092.7,1,1,1,1,128,2,23.0,3.890142379211079,392.333004,688.139634,307,3117.3,3.890142379211079
203,1549480962.8688989,0,2,203,860.04,3125.1,128.4208764625921,23,154,166.73283934999995,181,3.905,311,10.49,1.33,710,1780,0,86.8,162.4,112,858.03,3117.3,1,1,1,1,128,2,23.0,3.890142379211079,386.105496,722.390928,307,3125.1,3.890142379211079
204,1549480970.757779,0,2,204,867.9,3155.8,128.20248742999257,22,154,167.63109027839997,183,3.912,314,10.63,1.3,690,1840,0,90.0,162.7,112,860.04,3125.1,1,1,1,1,128,2,22.0,3.8971161340607945,400.3398,723.7253939999998,310,3155.8,3.8971161340607945
205,1549480973.968549,0,2,205,871.14,3168.6,128.29254445457372,22,154,168.66160639999998,183,3.92,315,10.56,1.3,690,1820,0,87.0,156.5,112,867.9,3155.8,1,1,1,1,128,2,22.0,3.9050296782255542,386.99514,696.14643,312,3168.6,3.9050296782255547
206,1549480978.917489,0,2,206,876.05,3187.5,129.01329597240576,22,154,164.56474460159998,185,3.888,317,10.56,1.33,720,1830,0,86.8,156.4,112,871.14,3168.6,1,1,1,1,128,2,22.0,3.873266713145867,386.105496,695.7016080000002,313,3187.5,3.873266713145867
207,1549480982.007969,0,2,207,879.2,3199.8,129.7090911965934,22,155,161.66147095000002,185,3.865,318,10.34,1.27,680,1790,0,88.3,160.3,112,876.05,3187.5,1,1,1,1,128,2,22.0,3.850893407270487,392.777826,713.0496660000001,314,3199.8,3.850893407270487
208,1549480986.927029,0,2,208,884.07,3218.5,129.52146685185204,22,156,162.91953124999998,187,3.875,320,10.28,1.3,710,1770,0,81.0,150.5,112,879.2,3199.8,1,1,1,1,128,2,22.0,3.86010962711341,360.30582000000004,669.4571100000002,316,3218.5,3.86010962711341
209,1549480992.2061994,0,2,209,889.27,3238.7,129.0537247666397,24,154,165.0731832064,189,3.892,322,9.92,1.24,660,1700,0,88.6,155.1,112,884.07,3218.5,1,1,1,1,128,2,24.0,3.877772607414301,394.112292,689.918922,318,3238.7,3.8777726074143013
210,1549480995.1172194,0,2,210,892.29,3250.5,128.8500376929084,24,154,165.0731832064,189,3.892,323,10.13,1.27,680,1730,0,86.8,156.8,112,889.27,3238.7,1,1,1,1,128,2,24.0,3.877772607414301,386.105496,697.480896,320,3250.5,3.8777726074143013
211,1549481000.03634,0,2,211,897.17,3269.4,129.25648590324747,23,154,164.56474460159998,190,3.888,325,10.21,1.3,700,1740,0,82.7,143.8,112,892.29,3250.5,1,1,1,1,128,2,23.0,3.873866893933525,367.867794,639.654036,321,3269.4,3.8738668939335246
212,1549481006.2159994,0,3,212,903.36,3293.4,129.78437641933454,23,154,161.2853197984,192,3.862,327,10.06,1.27,680,1730,0,84.4,143.4,112,897.17,3269.4,1,1,1,1,128,3,23.0,3.848225967828831,375.429768,637.8747480000002,324,3293.4,3.8482259678288306
213,1549481008.2255394,0,3,213,905.39,3301.2,129.80774217653638,23,154,161.2853197984,192,3.862,328,10.35,1.3,700,1800,0,84.4,151.1,112,903.36,3293.4,1,1,1,1,128,3,23.0,3.848225967828831,375.429768,672.126042,325,3301.2,3.8482259678288306
214,1549481013.2956998,0,3,214,910.42,3320.6,129.32347705722123,22,154,164.18410154999995,194,3.885,330,10.5,1.3,690,1820,0,92.2,171.3,112,905.39,3301.2,1,1,1,1,128,3,22.0,3.8708678485716494,410.125884,761.980086,326,3320.6,3.8708678485716503
215,1549481016.2950704,0,3,215,913.45,3332.5,129.28216973611998,22,153,164.18410154999995,194,3.885,331,10.58,1.3,700,1820,0,84.8,156.3,112,910.42,3320.6,1,1,1,1,128,3,22.0,3.8708678485716494,377.20905600000003,695.256786,328,3332.5,3.8708678485716503
216,1549481024.16019,0,3,216,921.33,3363.0,129.4194029301186,22,152,162.4155268708,196,3.871,334,10.63,1.3,690,1850,0,91.1,161.0,112,913.45,3332.5,1,1,1,1,128,3,22.0,3.8565368299267258,405.232842,716.16342,330,3363.0,3.8565368299267258
217,1549481027.3646007,0,3,217,924.53,3375.7,129.0359800454542,22,151,164.8188332,196,3.89,335,10.63,1.3,690,1840,0,89.0,162.8,112,921.33,3363.0,1,1,1,1,128,3,22.0,3.8753681599751975,395.89158,724.1702160000001,332,3375.7,3.8753681599751975
218,1549481032.2276304,0,3,218,929.39,3394.5,128.52760918021062,22,150,167.24573160119996,197,3.909,337,10.42,1.3,700,1790,0,88.4,162.2,112,924.53,3375.7,1,1,1,1,128,3,22.0,3.894687646050787,393.22264800000005,721.5012839999998,333,3394.5,3.894687646050787
219,1549481035.4340804,0,3,219,932.6,3407.2,128.62061537189027,22,150,166.3488590624,198,3.902,338,10.64,1.3,700,1840,0,87.0,154.9,112,929.39,3394.5,1,1,1,1,128,3,22.0,3.887420307883688,386.99514,689.0292780000002,335,3407.2,3.8874203078836884
220,1549481040.4183402,0,3,220,937.59,3426.5,128.71338754215014,22,150,165.20045627959996,199,3.893,340,10.64,1.3,700,1840,0,86.2,156.3,112,932.6,3407.2,1,1,1,1,128,3,22.0,3.8786750446047633,383.436564,695.256786,336,3426.5,3.8786750446047633
221,1549481043.5035105,0,3,221,940.66,3438.5,128.22125632405053,22,150,167.11741007359998,200,3.908,341,10.56,1.3,700,1840,0,87.8,156.3,112,937.59,3426.5,1,1,1,1,128,3,22.0,3.89377774316642,390.553716,695.256786,337,3438.5,3.89377774316642
222,1549481048.36807,0,3,222,945.53,3457.3,130.04767949196003,23,150,166.60478033919998,201,3.904,343,10.06,1.27,690,1720,0,80.6,145.5,112,940.66,3438.5,1,1,1,1,128,3,23.0,3.8889320992455474,358.526532,647.21601,339,3457.3,3.8889320992455474
223,1549481054.5740602,0,3,223,951.74,3481.0,130.76756417530004,23,151,149.67349225639998,203,3.767,345,9.63,1.3,710,1650,0,82.7,148.1,112,945.53,3457.3,1,1,1,1,128,3,23.0,3.7534719615644465,367.867794,658.781382,342,3481.0,3.753471961564447
224,1549481059.61258,0,3,224,956.78,3500.6,129.99480862994758,23,152,166.9891542004,204,3.907,347,9.99,1.3,700,1670,0,84.7,152.2,112,951.74,3481.0,1,1,1,1,128,3,23.0,3.8922621827806316,376.764234,677.0190839999998,344,3500.6,3.892262182780632
225,1549481061.62301,0,3,225,958.79,3508.5,128.12209659787166,23,152,166.9891542004,204,3.907,348,10.13,1.3,700,1710,0,84.4,151.0,112,956.78,3500.6,1,1,1,1,128,3,23.0,3.8922621827806316,375.429768,671.68122,344,3508.5,3.892262182780632
226,1549481066.57704,0,3,226,963.75,3527.6,129.08579658359088,23,152,164.9459755188,206,3.891,350,10.13,1.27,690,1750,0,82.5,148.9,112,958.79,3508.5,1,1,1,1,128,3,23.0,3.876570010854396,366.97815,662.339958,346,3527.6,3.876570010854396
227,1549481072.72524,0,3,227,969.87,3551.3,129.59063994581268,23,152,161.41063861159998,208,3.863,352,9.91,1.24,670,1710,0,83.7,143.4,112,963.75,3527.6,1,1,1,1,128,3,23.0,3.848522167487685,372.316014,637.8747480000002,349,3551.3,3.848522167487685
228,1549481074.73514,0,3,228,971.9,3559.0,130.5273553285036,23,152,161.41063861159998,208,3.863,353,10.28,1.3,710,1780,0,79.8,141.1,112,969.87,3551.3,1,1,1,1,128,3,23.0,3.848522167487685,354.967956,627.643842,349,3559.0,3.848522167487685
229,1549481079.6565702,0,3,229,976.83,3577.7,130.68866655071486,23,152,155.71287063640003,209,3.817,355,9.91,1.33,720,1680,0,83.4,157.4,112,971.9,3559.0,1,1,1,1,128,3,23.0,3.8028597505324,370.981548,700.1498280000002,351,3577.7,3.8028597505324004
230,1549481085.8354502,0,3,230,982.99,3601.7,130.67490428144757,22,153,161.1600658668,211,3.861,357,10.35,1.33,720,1770,0,84.4,154.1,112,976.83,3577.7,1,1,1,1,128,3,22.0,3.846745653177412,375.429768,685.470702,354,3601.7,3.846745653177412
231,1549481087.84558,0,3,231,985.0,3609.4,129.32329444259872,22,153,161.1600658668,211,3.861,358,10.2,1.3,700,1740,0,86.1,160.5,112,982.99,3601.7,1,1,1,1,128,3,22.0,3.846745653177412,382.991742,713.93931,354,3609.4,3.846745653177412
232,1549481093.8756404,0,3,232,991.05,3633.2,128.3464781030196,23,153,169.0491361076,213,3.923,360,10.42,1.3,690,1780,0,89.6,151.6,112,985.0,3609.4,1,1,1,1,128,3,23.0,3.908081913396905,398.560512,674.350152,357,3633.2,3.908081913396905
233,1549481095.9155304,0,3,233,993.06,3641.0,128.10153384499833,23,153,169.0491361076,213,3.923,361,10.78,1.33,710,1860,0,88.2,159.2,112,991.05,3633.2,1,1,1,1,128,3,23.0,3.908081913396905,392.333004,708.1566240000001,357,3641.0,3.908081913396905
234,1549481101.9453206,0,3,234,999.1,3664.5,128.8630626474042,23,152,163.9306658836,214,3.883,363,10.27,1.27,690,1770,0,79.3,136.9,112,993.06,3641.0,1,1,1,1,128,3,23.0,3.8684719535783367,352.743846,608.961318,360,3664.5,3.8684719535783367
235,1549481103.9553704,0,3,235,1001.13,3672.3,129.5959634504511,23,152,163.9306658836,214,3.883,364,10.06,1.27,690,1750,0,87.7,152.5,112,999.1,3664.5,1,1,1,1,128,3,23.0,3.8684719535783367,390.108894,678.35355,361,3672.3,3.8684719535783367
236,1549481108.9699204,0,3,236,1006.11,3691.5,129.41877601039016,22,152,161.7869845088,216,3.866,366,10.42,1.3,690,1790,0,88.3,158.0,112,1001.13,3672.3,1,1,1,1,128,3,22.0,3.8517833757029503,392.777826,702.81876,362,3691.5,3.8517833757029503
237,1549481112.02515,0,3,237,1009.19,3703.7,129.03403344964568,22,152,165.71020276439995,216,3.897,367,10.63,1.33,710,1830,0,88.8,152.2,112,1006.11,3691.5,1,1,1,1,128,3,22.0,3.8825904643578193,395.001936,677.0190839999998,363,3703.7,3.8825904643578193
238,1549481117.0951505,0,3,238,1014.23,3723.2,128.58519092835343,22,152,166.60478033919998,218,3.904,369,10.49,1.3,690,1810,0,89.7,158.0,112,1009.19,3703.7,1,1,1,1,128,3,22.0,3.889234598630989,399.005334,702.81876,365,3723.2,3.8892345986309893
239,1549481120.0949008,0,3,239,1017.25,3735.2,128.37345392458022,22,151,166.60478033919998,218,3.904,370,10.56,1.33,710,1800,0,89.0,156.7,112,1014.23,3723.2,1,1,1,1,128,3,22.0,3.889234598630989,395.89158,697.036074,366,3735.2,3.8892345986309893
240,1549481126.124721,0,3,240,1023.3,3759.0,127.98623279765863,22,151,169.17844446719997,220,3.924,372,10.71,1.33,710,1830,0,84.8,153.9,112,1017.25,3735.2,1,1,1,1,128,3,22.0,3.908998514580565,377.20905600000003,684.581058,369,3759.0,3.9089985145805644
241,1549481128.164641,0,3,241,1025.3,3766.7,128.16176822290126,22,151,169.17844446719997,220,3.924,373,10.64,1.33,710,1830,0,87.7,154.5,112,1023.3,3759.0,1,1,1,1,128,3,22.0,3.908998514580565,390.108894,687.24999,369,3766.7,3.9089985145805644
242,1549481131.1643608,0,3,242,1028.32,3778.5,128.59396363321468,22,152,164.9459755188,221,3.891,374,10.85,1.3,700,1910,0,91.5,164.8,112,1025.3,3766.7,1,1,1,1,128,3,22.0,3.8768705900597036,407.01212999999996,733.0666560000002,371,3778.5,3.876870590059704
243,1549481136.1489105,0,3,243,1033.3,3797.8,128.8086578541281,22,152,166.60478033919998,222,3.904,376,10.7,1.3,690,1860,0,91.5,164.9,112,1028.32,3778.5,1,1,1,1,128,3,22.0,3.88983973860277,407.01212999999996,733.511478,372,3797.8,3.88983973860277
244,1549481139.2342305,0,3,244,1036.4,3810.1,128.12883503258112,22,153,166.9891542004,223,3.907,377,10.49,1.27,670,1810,0,92.4,169.5,112,1033.3,3797.8,1,1,1,1,128,3,22.0,3.892868265337901,411.01552799999996,753.97329,373,3810.1,3.892868265337901
245,1549481144.1267507,0,3,245,1041.28,3829.2,127.70458638571242,23,154,171.25635519999997,224,3.94,379,10.42,1.27,670,1800,0,92.5,164.8,112,1036.4,3810.1,1,1,1,1,128,3,23.0,3.9255711706053233,411.46035,733.0666560000002,375,3829.2,3.925571170605323
246,1549481150.3334107,0,3,246,1047.47,3853.7,127.5273989544621,23,154,170.2152859904,226,3.932,381,10.2,1.27,670,1740,0,90.8,169.4,112,1041.28,3829.2,1,1,1,1,128,3,23.0,3.9172673143215286,403.898376,753.5284680000002,378,3853.7,3.917267314321529
247,1549481152.3434608,0,3,247,1049.49,3861.7,127.37321336796244,23,154,170.2152859904,226,3.932,382,10.13,1.27,670,1710,0,89.3,159.9,112,1047.47,3853.7,1,1,1,1,128,3,23.0,3.9172673143215286,397.226046,711.270378,378,3861.7,3.917267314321529
248,1549481157.2080812,0,3,248,1054.35,3880.8,127.65987825483285,23,153,172.4326221772,227,3.949,384,10.27,1.3,680,1720,0,92.5,163.2,112,1049.49,3861.7,1,1,1,1,128,3,23.0,3.9345294302801386,411.46035,725.9495039999998,380,3880.8,3.9345294302801386
249,1549481163.4129214,0,3,249,1060.57,3905.4,128.50642111969682,23,153,165.71020276439995,229,3.897,386,10.34,1.33,710,1760,0,88.8,163.6,112,1054.35,3880.8,1,1,1,1,128,3,23.0,3.8822889975929815,395.001936,727.728792,383,3905.4,3.882288997592981
250,1549481165.4535215,0,3,250,1062.59,3913.3,128.30881633122797,23,153,165.71020276439995,229,3.897,387,10.42,1.33,710,1750,0,88.2,158.6,112,1060.57,3905.4,1,1,1,1,128,3,23.0,3.8822889975929815,392.333004,705.487692,384,3913.3,3.882288997592981
251,1549481170.4998214,0,3,251,1067.64,3933.2,126.95913789259652,23,153,175.33058931079998,231,3.971,389,10.42,1.27,670,1770,0,90.9,165.9,112,1062.59,3913.3,1,1,1,1,128,3,23.0,3.9563222028802025,404.343198,737.959698,385,3933.2,3.9563222028802025
252,1549481173.493992,0,3,252,1070.65,3945.2,126.16537536431962,23,153,175.33058931079998,231,3.971,390,10.27,1.27,670,1740,0,85.6,148.9,112,1067.64,3933.2,1,1,1,1,128,3,23.0,3.9563222028802025,380.767632,662.339958,387,3945.2,3.9563222028802025
253,1549481176.5235114,0,3,253,1073.68,3957.1,127.05051729432739,23,153,173.8775808,232,3.96,391,10.2,1.3,690,1730,0,88.2,160.7,112,1070.65,3945.2,1,1,1,1,128,3,23.0,3.9447731755424074,392.333004,714.828954,388,3957.1,3.9447731755424065
254,1549481178.534272,0,3,254,1075.7,3965.1,127.38376485816288,23,153,168.66160639999998,233,3.92,392,10.2,1.3,680,1720,0,89.6,154.6,112,1073.68,3957.1,1,1,1,1,128,3,23.0,3.905639743790033,398.560512,687.694812,389,3965.1,3.9056397437900325
255,1549481183.457712,0,3,255,1080.6,3984.2,127.99441707666843,23,154,172.1707655444,234,3.947,394,10.05,1.27,680,1700,0,85.5,148.0,112,1075.7,3965.1,1,1,1,1,128,3,23.0,3.931744908390344,380.32281,658.33656,390,3984.2,3.9317449083903435
256,1549481188.702922,0,3,256,1085.72,4004.3,127.77497106090735,23,155,166.4767869156,235,3.903,396,9.92,1.27,670,1670,0,88.7,154.8,112,1080.6,3984.2,1,1,1,1,128,3,23.0,3.888327241620655,394.557114,688.5844559999999,392,4004.3,3.888327241620655
257,1549481193.6522524,0,3,257,1090.79,4024.4,127.46277291991824,24,155,172.6947441828,236,3.951,398,9.99,1.24,640,1680,0,91.9,156.2,112,1085.72,4004.3,1,1,1,1,128,3,24.0,3.9360780917893416,408.791418,694.811964,394,4024.4,3.936078091789341
258,1549481199.7129226,0,3,258,1096.85,4048.6,126.6293223595496,23,155,174.0093395068,238,3.961,400,10.27,1.3,690,1720,0,87.1,158.8,112,1090.79,4024.4,1,1,1,1,128,3,23.0,3.9463299131807417,387.43996200000004,706.377336,397,4048.6,3.9463299131807417
259,1549481201.7227526,0,3,259,1098.88,4056.6,126.68084862742255,23,155,174.0093395068,238,3.961,401,10.13,1.27,670,1710,0,86.6,153.7,112,1096.85,4048.6,1,1,1,1,128,3,23.0,3.9463299131807417,385.215852,683.691414,397,4056.6,3.9463299131807417
260,1549481204.7528427,0,3,260,1101.89,4068.4,127.04226291382075,23,155,172.82590474239998,239,3.952,402,10.06,1.3,690,1680,0,85.8,151.9,111,1098.88,4056.6,1,1,1,1,128,3,23.0,3.93762797290912,381.657276,675.684618,399,4068.4,3.9376279729091195
261,1549481206.7627225,0,3,261,1103.9,4076.2,127.73027840190568,23,155,169.9556796,240,3.93,403,10.19,1.3,690,1720,0,84.5,153.9,112,1101.89,4068.4,1,1,1,1,128,3,23.0,3.9148136548700285,375.87459,684.581058,399,4076.2,3.914813654870028
262,1549481211.6860025,0,3,262,1108.84,4095.5,128.21517322459192,23,155,167.24573160119996,241,3.909,405,10.13,1.27,680,1720,0,85.1,156.3,112,1103.9,4076.2,1,1,1,1,128,3,23.0,3.894991041520605,378.543522,695.256786,401,4095.5,3.8949910415206044
263,1549481216.8143024,0,3,263,1113.97,4115.6,128.38335096836352,24,155,167.75967459159995,242,3.913,407,10.13,1.3,700,1720,0,86.1,159.2,112,1108.84,4095.5,1,1,1,1,128,3,24.0,3.898939488459139,382.991742,708.1566240000001,403,4115.6,3.898939488459139
264,1549481222.8726325,0,3,264,1120.04,4139.4,128.43209159190067,23,155,166.9891542004,244,3.907,409,9.99,1.27,670,1690,0,87.4,154.5,112,1113.97,4115.6,1,1,1,1,128,3,23.0,3.892565200467108,388.77442800000006,687.24999,406,4139.4,3.892565200467108
265,1549481224.9116225,0,3,265,1122.06,4147.3,128.24564539460332,23,155,166.9891542004,244,3.907,410,10.05,1.3,690,1690,0,86.3,151.7,112,1120.04,4139.4,1,1,1,1,128,3,23.0,3.892565200467108,383.88138599999996,674.7949739999998,406,4147.3,3.892565200467108
266,1549481229.8050525,0,3,266,1126.96,4166.4,128.13866975843163,23,155,169.17844446719997,245,3.924,412,10.56,1.27,680,1840,0,84.8,154.7,112,1122.06,4147.3,1,1,1,1,128,3,23.0,3.909304143862392,377.20905600000003,688.139634,408,4166.4,3.9093041438623923
267,1549481232.951363,0,3,267,1130.12,4178.6,128.81191402210283,22,155,165.45519865,246,3.895,413,10.27,1.27,690,1790,0,77.2,136.7,112,1126.96,4166.4,1,1,1,1,128,3,22.0,3.8807823657249303,343.402584,608.0716739999998,410,4178.6,3.88078236572493
268,1549481235.981153,0,3,268,1133.14,4190.1,130.95827269263074,22,155,159.04065963519997,246,3.844,414,10.06,1.3,710,1750,0,82.8,148.2,112,1130.12,4178.6,1,1,1,1,128,3,22.0,3.829950210647261,368.312616,659.2262039999998,411,4190.1,3.829950210647261
269,1549481237.9910626,0,3,269,1135.16,4197.8,131.5697928730458,23,155,151.58877912359998,247,3.783,415,10.13,1.33,720,1730,0,83.3,146.4,112,1133.14,4190.1,1,1,1,1,128,3,23.0,3.769886149438287,370.536726,651.219408,411,4197.8,3.769886149438287
270,1549481242.9432135,0,3,270,1140.1,4216.9,130.45699271843944,23,155,161.9125630164,248,3.867,417,10.06,1.33,710,1690,0,85.0,149.7,112,1135.16,4197.8,1,1,1,1,128,3,23.0,3.85297064036372,378.0987,665.8985339999998,413,4216.9,3.8529706403637203
271,1549481249.0911837,0,3,271,1146.23,4240.9,129.08847490452655,23,155,165.0731832064,250,3.892,419,10.21,1.27,680,1760,0,86.3,147.4,112,1140.1,4216.9,1,1,1,1,128,3,23.0,3.877171215880893,383.88138599999996,655.667628,416,4240.9,3.877171215880893
272,1549481251.1011634,0,3,272,1148.25,4248.8,128.4308452280449,23,155,165.0731832064,250,3.892,420,9.99,1.3,690,1680,0,89.6,155.5,112,1146.23,4240.9,1,1,1,1,128,3,23.0,3.877171215880893,398.560512,691.69821,416,4248.8,3.877171215880893
273,1549481255.9055336,0,3,273,1153.06,4267.7,127.34847885992437,23,155,172.30166069759997,251,3.948,422,10.35,1.3,690,1760,0,90.3,167.3,112,1148.25,4248.8,1,1,1,1,128,3,23.0,3.9326726443290867,401.674266,744.1872060000002,418,4267.7,3.932672644329086
274,1549481261.125164,0,3,274,1158.27,4288.1,126.86169781681578,23,155,172.82590474239998,253,3.952,424,10.13,1.27,680,1720,0,84.0,154.0,112,1153.06,4267.7,1,1,1,1,128,3,23.0,3.9370078740157477,373.65047999999996,685.02588,420,4288.1,3.937007874015748
275,1549481270.240084,0,3,275,1166.78,4316.6,129.61604388053607,23,155,162.6673989276,254,3.873,425,10.27,1.3,700,1760,0,83.3,151.0,112,1158.27,4288.1,1,1,1,0,128,3,23.0,3.8586201574317016,370.536726,671.68122,424,4316.6,3.858620157431702
1 index TimeStamp (sec) activityIdx lapIdx pointIdx ElapsedTime (sec) Horizontal (meters) Stroke500mPace (sec/500m) Cadence (strokes/min) HRCur (bpm) Power (watts) Calories (kCal) Speed (m/sec) StrokeCount StrokeDistance (meters) DriveLength (meters) DriveTime (ms) StrokeRecoveryTime (ms) WorkPerStroke (joules) AverageDriveForce (lbs) PeakDriveForce (lbs) DragFactor ElapsedTimeAtDrive (sec) HorizontalAtDrive (meters) WorkoutType IntervalType WorkoutState RowingState WorkoutDurationType WorkoutIntervalCount Cadence (stokes/min) AverageBoatSpeed (m/s) AverageDriveForce (N) PeakDriveForce (N) Stroke Number cum_dist originalvelo
2 0 1549480074.0 0 0 0 2.16 3.3 322.21017252631356 0 163 10.008764889199998 0 1.529 1 1.83 0.74 0 0 0 0.0 0.0 0 0.0 0.0 1 1 1 1 128 20 0.0 1.5274637991079612 0.0 0.0 0 3.3 1.5274637991079612
3 1 1549480077.0290694 0 0 1 5.21 8.5 349.6038194685721 0 160 10.008764889199998 0 1.529 2 5.82 1.09 1530 1850 0 24.0 36.3 112 2.16 3.3 1 1 1 1 128 0 0.0 1.5274637991079612 106.75728 161.47038600000002 0 8.5 1.5274637991079612
4 2 1549480081.04905 0 0 2 9.27 16.5 244.89195926599695 17 158 19.1748919572 0 1.899 3 6.58 1.09 1260 2080 0 26.8 38.4 107 5.21 8.5 1 1 1 1 128 0 17.0 1.8958064760749225 119.212296 170.811648 1 16.5 1.8958064760749223
5 3 1549480090.138511 0 0 3 18.34 40.9 191.64775276357562 20 152 64.0699240132 1 2.839 6 8.43 1.27 970 1810 0 46.0 72.7 113 9.27 16.5 1 1 1 1 128 0 20.0 2.8315777551251555 204.61812 323.38559399999997 4 40.9 2.8315777551251555
6 4 1549480092.659471 0 0 4 20.36 47.0 170.23120773429352 20 150 64.0699240132 1 2.839 7 8.57 1.24 900 1790 0 53.8 84.3 112 18.34 40.9 1 1 1 1 128 0 20.0 2.8315777551251555 239.314236 374.984946 5 47.0 2.8315777551251555
7 5 1549480095.3897312 0 0 5 23.39 56.7 168.48717586235105 21 148 75.44890077760002 2 2.998 8 8.92 1.3 860 1780 0 61.7 102.7 112 20.36 47.0 1 1 1 1 128 0 21.0 2.989894157746816 274.455174 456.832194 5 56.7 2.989894157746816
8 6 1549480098.359191 0 0 6 26.42 67.0 154.94223257896957 21 145 89.87102810559999 2 3.178 9 9.5 1.33 840 1820 0 68.8 119.3 112 23.39 56.7 1 1 1 1 128 0 21.0 3.1685678073510766 306.037536 530.672646 7 67.0 3.168567807351077
9 7 1549480112.4274712 0 0 7 40.37 115.7 146.39751472623868 20 140 120.15292940280003 5 3.5010000000000003 14 9.92 1.18 770 1950 0 47.0 75.3 112 26.42 67.0 1 1 1 1 128 0 20.0 3.489914148111956 209.06634 334.950966 11 115.7 3.489914148111956
10 8 1549480115.5184207 0 0 8 43.54 125.9 145.93465198341596 21 140 110.53743434999997 5 3.405 15 8.99 1.21 850 1780 0 41.1 65.5 112 40.37 115.7 1 1 1 1 128 0 21.0 3.394433129667345 182.821842 291.35841 12 125.9 3.394433129667345
11 9 1549480118.5786006 0 0 9 46.55 135.2 159.16525599045562 21 140 91.92253954239999 6 3.202 16 8.41 1.15 820 1740 0 49.1 80.2 112 43.54 125.9 1 1 1 1 128 0 21.0 3.1924403013663643 218.407602 356.74724399999997 13 135.2 3.1924403013663643
12 10 1549480130.1267705 0 0 10 57.65 167.8 171.65571397230448 21 139 63.52982213480002 8 2.8310000000000004 20 8.27 1.12 890 1850 0 29.8 43.4 112 46.55 135.2 1 1 1 1 128 0 21.0 2.8237420229287853 132.556956 193.052748 17 167.8 2.8237420229287853
13 11 1549480132.557391 0 0 11 60.67 175.9 181.23696322233977 21 139 63.52982213480002 8 2.8310000000000004 21 8.06 1.09 930 1870 0 31.3 45.7 112 57.65 167.8 1 1 1 1 128 0 21.0 2.8237420229287853 139.229286 203.283654 18 175.9 2.8237420229287853
14 12 1549480135.7676506 0 0 12 63.69 184.1 184.62753148327025 20 138 54.80678664999999 8 2.695 22 7.98 1.24 1010 1800 0 38.1 56.0 112 60.67 175.9 1 1 1 1 128 0 20.0 2.688750268875027 169.477182 249.10032 19 184.1 2.688750268875027
15 13 1549480138.4981205 0 0 13 66.71 192.6 186.1563855186528 20 137 53.836419949199986 9 2.679 23 8.34 1.24 950 1830 0 47.2 76.3 112 63.69 184.1 1 1 1 1 128 0 20.0 2.672510556416698 209.95598400000003 339.399186 20 192.6 2.672510556416698
16 14 1549480141.5278008 0 0 14 69.74 201.6 178.61103294714712 20 136 62.1265148 9 2.81 24 8.56 1.18 870 1850 0 49.8 82.2 112 66.71 192.6 1 1 1 1 128 0 20.0 2.8023764152000896 221.521356 365.643684 21 201.6 2.80237641520009
17 15 1549480144.556841 0 0 15 72.75 210.8 170.04002037467947 21 136 72.39557218039998 10 2.957 25 8.93 1.18 860 1920 0 47.2 76.7 112 69.74 201.6 1 1 1 1 128 0 21.0 2.949330501976052 209.95598400000003 341.178474 22 210.8 2.9493305019760516
18 16 1549480147.5570009 0 0 16 75.79 220.0 165.66904878825562 20 135 77.7366182656 10 3.028 26 8.92 1.21 890 1890 0 45.0 71.7 112 72.75 210.8 1 1 1 1 128 0 20.0 3.0193236714975846 200.1699 318.9373740000001 23 220.0 3.0193236714975846
19 17 1549480150.5869613 0 0 17 78.8 228.9 165.58476172807488 20 134 77.89075559999998 11 3.03 27 9.07 1.15 860 2010 0 41.3 64.7 112 75.79 220.0 1 1 1 1 128 0 20.0 3.0215131737974383 183.711486 287.7998340000001 24 228.9 3.021513173797438
20 18 1549480153.6174812 0 0 18 81.83 237.9 168.23156301411422 20 133 74.6964239616 11 2.988 28 8.92 1.24 910 1940 0 49.0 78.4 112 78.8 228.9 1 1 1 1 128 0 20.0 2.9797377830750893 217.96277999999998 348.740448 25 237.9 2.9797377830750893
21 19 1549480156.6476512 0 0 19 84.86 247.2 168.55327212518216 20 132 71.7365470976 12 2.948 29 9.14 1.27 910 1920 0 51.7 89.4 112 81.83 237.9 1 1 1 1 128 0 20.0 2.940138774550159 229.972974 397.670868 26 247.2 2.940138774550159
22 20 1549480159.6473813 0 0 20 87.87 256.6 165.16136258644548 20 131 79.20915750440001 12 3.047 30 9.0 1.18 840 1890 0 48.3 77.7 113 84.86 247.2 1 1 1 1 128 0 20.0 3.0380362133916634 214.849026 345.6266940000001 27 256.6 3.0380362133916634
23 21 1549480162.677582 0 0 21 90.9 265.9 155.08711083218813 21 130 84.3059185668 13 3.111 31 9.29 1.21 860 1980 0 51.1 76.1 112 87.87 256.6 1 1 1 1 128 0 21.0 3.102121851346321 227.30404199999998 338.5095419999999 28 265.9 3.102121851346321
24 22 1549480171.767792 0 0 22 99.19 288.4 185.66032846073944 20 128 83.01183065000002 14 3.095 32 9.13 1.15 820 1970 0 48.6 75.9 112 90.9 265.9 1 1 1 0 128 0 20.0 3.0858482996975867 216.183492 337.6198980000001 31 288.4 3.0858482996975867
25 23 1549480202.9954321 0 0 23 106.13 298.3 269.0121118543087 -1 114 9.891399467599998 14 1.523 33 1.36 1.8 890 1970 0 25.3 43.8 112 99.19 288.4 1 1 1 0 128 0 -1.0 1.5208200261581046 112.53996599999999 194.83203600000002 31 298.3 1.5208200261581046
26 24 1549480211.0651026 0 0 24 108.24 302.0 317.1983813830841 -1 113 9.891399467599998 15 1.523 34 2.16 0.25 1320 1970 0 38.0 57.2 112 106.13 298.3 1 1 1 1 128 0 -1.0 1.5208200261581046 169.03236 254.43818399999998 31 302.0 1.5208200261581046
27 25 1549480218.1149125 0 0 25 115.32 317.3 250.6365922062007 23 112 32.449775251599995 15 2.263 36 5.93 1.3 1090 1380 0 73.1 127.9 112 108.24 302.0 1 1 1 1 128 0 23.0 2.2582539180705483 325.164882 568.9273380000002 33 317.3 2.258253918070548
28 26 1549480220.124742 0 0 26 117.34 323.8 199.77329516269438 23 111 32.449775251599995 15 2.263 37 8.62 1.3 850 1730 0 71.0 119.7 113 115.32 317.3 1 1 1 1 128 0 23.0 2.2582539180705483 315.82362 532.4519339999999 34 323.8 2.258253918070548
29 27 1549480223.1545124 0 0 27 120.37 334.4 166.05402545938176 22 110 85.61338627239998 16 3.127 38 9.16 1.27 780 1680 0 72.8 124.1 113 117.34 323.8 1 1 1 1 128 0 22.0 3.1181789834736517 323.830416 552.024102 35 334.4 3.1181789834736513
30 28 1549480228.0477624 0 0 28 125.26 352.0 140.10661688984806 22 111 129.9847040352 17 3.594 40 9.87 1.24 740 1760 0 65.0 108.9 113 120.37 334.4 1 1 1 1 128 0 22.0 3.5819184755354967 289.1343 484.41115800000006 37 352.0 3.5819184755354967
31 29 1549480231.2244227 0 0 29 128.43 363.3 138.54184206886646 22 112 136.8285083648 17 3.656 41 9.72 1.27 790 1770 0 54.4 91.0 112 125.26 352.0 1 1 1 1 128 0 22.0 3.6429872495446265 241.983168 404.78802 38 363.3 3.6429872495446265
32 30 1549480236.1770928 0 0 30 133.4 380.7 141.97882290387201 23 114 115.98086079999997 18 3.46 43 9.71 1.3 780 1760 0 71.0 128.2 112 128.43 363.3 1 1 1 1 128 0 23.0 3.448989446092295 315.82362 570.261804 40 380.7 3.448989446092295
33 31 1549480239.264373 0 0 31 136.5 392.1 141.91003254461944 22 115 125.90509012480001 19 3.556 44 9.57 1.27 730 1730 0 76.4 130.6 112 133.4 380.7 1 1 1 1 128 0 22.0 3.5438372669926994 339.8440080000001 580.937532 41 392.1 3.5438372669926994
34 32 1549480244.3356926 0 0 32 141.53 410.3 138.25668376561978 22 118 134.5952256768 20 3.636 46 9.85 1.27 750 1770 0 68.8 120.3 112 136.5 392.1 1 1 1 1 128 0 22.0 3.623713581678504 306.037536 535.120866 43 410.3 3.6237135816785044
35 33 1549480247.3333328 0 0 33 144.56 421.3 138.30928189871386 22 119 134.5952256768 20 3.636 47 9.7 1.27 750 1750 0 71.3 123.5 112 141.53 410.3 1 1 1 1 128 0 22.0 3.623713581678504 317.158086 549.35517 44 421.3 3.6237135816785044
36 34 1549480252.404413 0 0 34 149.59 439.3 139.94479513259344 22 121 128.0414435328 22 3.576 49 9.57 1.24 740 1740 0 67.7 118.1 112 144.56 421.3 1 1 1 1 128 0 22.0 3.5635378804076687 301.144494 525.334782 46 439.3 3.5635378804076687
37 35 1549480255.4028525 0 0 35 152.63 450.2 139.7857458294814 22 122 128.0414435328 22 3.576 50 9.56 1.27 760 1730 0 68.3 118.0 112 149.59 439.3 1 1 1 1 128 0 22.0 3.5635378804076687 303.813426 524.88996 47 450.2 3.5635378804076687
38 36 1549480261.4625926 0 0 36 158.67 472.3 138.5286030208388 22 123 135.93225461760002 24 3.648 52 9.99 1.27 720 1810 0 76.9 128.1 112 152.63 450.2 1 1 1 1 128 0 22.0 3.635570420999055 342.068118 569.8169819999998 49 472.3 3.6355704209990547
39 37 1549480263.4721828 0 0 37 160.67 479.6 136.4775833464411 22 124 135.93225461760002 24 3.648 53 9.92 1.33 760 1740 0 70.7 128.0 112 158.67 472.3 1 1 1 1 128 0 22.0 3.635570420999055 314.4891540000001 569.37216 50 479.6 3.6355704209990547
40 38 1549480271.3356824 0 0 38 168.55 508.9 134.9929107751404 22 126 146.24328116159998 25 3.738 56 10.07 1.3 730 1760 0 79.1 152.4 112 160.67 479.6 1 1 1 1 128 0 22.0 3.7252272388615695 351.854202 677.908728 53 508.9 3.7252272388615704
41 39 1549480274.5419126 0 0 39 171.76 521.1 133.41049791038697 22 127 148.0109085756 26 3.753 57 10.21 1.33 740 1780 0 78.0 142.3 112 168.55 508.9 1 1 1 1 128 0 22.0 3.7391564463057136 346.96116 632.9817059999999 54 521.1 3.7391564463057136
42 40 1549480279.495213 0 0 40 176.72 539.8 132.93287479952812 22 128 150.50943270719998 27 3.774 59 10.42 1.3 720 1840 0 80.4 142.2 112 171.76 521.1 1 1 1 1 128 0 22.0 3.7608123354644607 357.63688800000006 632.536884 56 539.8 3.7608123354644607
43 41 1549480282.612123 0 0 41 179.83 551.6 132.75510635360996 22 130 151.9497046368 28 3.786 60 10.13 1.3 720 1770 0 78.7 142.7 112 176.72 539.8 1 1 1 1 128 0 22.0 3.772446054021428 350.0749140000001 634.7609940000001 57 551.6 3.7724460540214277
44 42 1549480287.564983 0 0 42 184.77 570.1 133.00616841600598 22 133 149.31618168319997 29 3.764 62 9.99 1.3 720 1740 0 79.1 137.8 112 179.83 551.6 1 1 1 1 128 0 22.0 3.750656364863851 351.854202 612.9647160000002 59 570.1 3.750656364863851
45 43 1549480290.681243 0 0 43 187.89 581.9 133.82249645530413 23 134 148.4846694604 29 3.757 63 10.07 1.24 690 1800 0 76.4 128.5 112 184.77 570.1 1 1 1 1 128 0 23.0 3.7433555439095607 339.8440080000001 571.59627 60 581.9 3.7433555439095607
46 44 1549480295.603473 0 0 44 192.81 599.9 135.2035879464936 22 136 143.09712040679997 31 3.711 65 9.77 1.21 710 1760 0 69.9 122.2 112 187.89 581.9 1 1 1 1 128 0 22.0 3.698498409645684 310.93057799999997 543.572484 62 599.9 3.698498409645684
47 45 1549480298.7510426 0 0 45 195.96 611.4 136.99885087184128 22 137 137.16561650119996 31 3.659 66 9.84 1.24 730 1810 0 74.5 126.5 112 192.81 599.9 1 1 1 1 128 0 22.0 3.646441073512252 331.39239 562.69983 63 611.4 3.646441073512252
48 46 1549480304.780513 0 0 46 201.99 633.3 138.23345786430957 22 139 134.3732434912 33 3.634 68 9.77 1.3 750 1760 0 72.6 131.6 112 195.96 611.4 1 1 1 1 128 0 22.0 3.621876131836291 322.94077200000004 585.3857519999999 65 633.3 3.621876131836291
49 47 1549480306.7904928 0 0 47 204.02 640.7 137.45936098029367 22 139 134.3732434912 33 3.634 69 9.98 1.33 760 1770 0 74.0 135.1 112 201.99 633.3 1 1 1 1 128 0 22.0 3.621876131836291 329.16828 600.954522 66 640.7 3.621876131836291
50 48 1549480314.682763 0 0 48 211.89 669.9 135.61826637357387 22 141 143.3286066716 34 3.713 72 10.13 1.27 710 1800 0 74.9 137.4 112 204.02 640.7 1 1 1 1 128 0 22.0 3.699593044765076 333.1716780000001 611.185428 69 669.9 3.6995930447650758
51 49 1549480317.8899336 0 0 49 215.1 681.9 134.1872503785136 22 141 146.47814720000002 35 3.74 73 10.05 1.33 740 1760 0 77.9 142.8 111 211.89 669.9 1 1 1 1 128 0 22.0 3.726615487813968 346.51633799999996 635.205816 70 681.9 3.7266154878139677
52 50 1549480322.8131335 0 0 50 220.03 700.2 134.42170873653785 22 142 146.1259423484 36 3.737 75 10.21 1.33 740 1800 0 80.2 142.7 112 215.1 681.9 1 1 1 1 128 0 22.0 3.723562704795949 356.74724399999997 634.7609940000001 72 700.2 3.7235627047959485
53 51 1549480325.9596837 0 0 51 223.16 712.1 133.90814899304564 22 143 145.30632759999997 37 3.73 76 10.27 1.33 740 1790 0 80.1 147.1 112 220.03 700.2 1 1 1 1 128 0 22.0 3.7166431279268566 356.30242200000004 654.333162 73 712.1 3.7166431279268566
54 52 1549480331.003654 0 0 52 228.2 731.1 132.91870234892065 22 143 152.55251947879998 39 3.791 78 10.13 1.3 720 1760 0 74.7 135.3 111 223.16 712.1 1 1 1 1 128 0 22.0 3.777861730260673 332.282034 601.8441660000002 75 731.1 3.7778617302606725
55 53 1549480333.9989738 0 0 53 231.22 742.4 132.18436882158576 22 143 152.55251947879998 39 3.791 79 10.19 1.3 720 1810 0 80.0 146.0 112 228.2 731.1 1 1 1 1 128 0 22.0 3.777861730260673 355.8576 649.44012 76 742.4 3.7778617302606725
56 54 1549480340.0588837 0 0 54 237.26 765.4 132.35762279109358 22 144 152.4318292 40 3.79 81 10.28 1.27 700 1820 0 82.6 145.5 112 231.22 742.4 1 1 1 1 128 0 22.0 3.77586467301012 367.422972 647.21601 78 765.4 3.7758646730101195
57 55 1549480342.0682535 0 0 55 239.28 773.0 132.55934089986368 22 144 152.4318292 40 3.79 82 10.06 1.27 700 1760 0 79.8 139.9 112 237.26 765.4 1 1 1 1 128 0 22.0 3.77586467301012 354.967956 622.305978 79 773.0 3.7758646730101195
58 56 1549480348.128433 0 0 56 245.33 795.8 132.8419471022511 22 145 150.62910624999998 42 3.775 84 10.2 1.3 710 1800 0 83.8 148.6 111 239.28 773.0 1 1 1 1 128 0 22.0 3.761095230931247 372.760836 661.005492 81 795.8 3.761095230931247
59 57 1549480350.1383328 0 0 57 247.34 803.4 132.87557288724682 22 145 150.62910624999998 42 3.775 85 10.34 1.3 720 1820 0 81.6 148.8 112 245.33 795.8 1 1 1 1 128 0 22.0 3.761095230931247 362.974752 661.8951360000002 82 803.4 3.761095230931247
60 58 1549480353.1974928 0 0 58 250.37 814.9 132.66304442527036 22 145 152.07014032839996 43 3.787 86 10.35 1.33 730 1800 0 79.8 146.1 112 247.34 803.4 1 1 1 1 128 0 22.0 3.773015393902807 354.967956 649.884942 83 814.9 3.773015393902807
61 59 1549480358.0319328 0 0 59 255.25 833.3 132.41177946379648 22 144 151.9497046368 44 3.786 88 10.19 1.27 690 1800 0 86.7 154.6 111 250.37 814.9 1 1 1 1 128 0 22.0 3.7727307024824572 385.660674 687.694812 85 833.3 3.772730702482457
62 60 1549480361.2074125 0 0 60 258.43 845.6 132.11734422868764 22 144 153.2779992044 45 3.797 89 10.27 1.27 690 1800 0 83.1 145.5 112 255.25 833.3 1 1 1 1 128 0 22.0 3.7835792659856224 369.647082 647.21601 86 845.6 3.7835792659856224
63 61 1549480366.1932025 0 0 61 263.4 864.3 132.23963108598585 22 144 154.00577535559998 46 3.803 91 10.34 1.3 720 1820 0 79.7 134.4 112 258.43 845.6 1 1 1 1 128 0 22.0 3.7896013339396695 354.52313399999997 597.840768 88 864.3 3.7896013339396695
64 62 1549480369.2787328 0 0 62 266.49 876.0 132.43246830675903 22 144 150.9885074656 46 3.778 92 10.49 1.3 720 1880 0 81.8 143.8 112 263.4 864.3 1 1 1 1 128 0 22.0 3.7639265281541694 363.864396 639.654036 89 876.0 3.7639265281541703
65 63 1549480377.2027328 0 0 63 274.42 906.0 132.49243533198995 22 145 152.7940911196 48 3.793 95 10.49 1.27 700 1880 0 83.2 142.3 112 266.49 876.0 1 1 1 1 128 0 22.0 3.779860901118839 370.091904 632.9817059999999 92 906.0 3.779860901118839
66 64 1549480380.379173 0 0 64 277.59 918.0 132.54079925750744 22 145 152.3112025932 49 3.789 96 10.35 1.3 720 1820 0 80.4 139.7 112 274.42 906.0 1 1 1 1 128 0 22.0 3.7755795514611488 357.63688800000006 621.416334 93 918.0 3.775579551461149
67 65 1549480385.3907232 0 0 65 282.6 936.9 132.69401891658038 22 146 150.50943270719998 50 3.774 98 10.21 1.27 700 1800 0 81.9 146.2 112 277.59 918.0 1 1 1 1 128 0 22.0 3.7599639043465194 364.309218 650.329764 95 936.9 3.7599639043465185
68 66 1549480388.4191332 0 0 66 285.63 948.5 132.4416709148496 22 146 152.67327344639995 51 3.792 99 10.14 1.3 710 1770 0 85.1 153.0 112 282.6 936.9 1 1 1 1 128 0 22.0 3.7787182587666255 378.543522 680.5776599999999 96 948.5 3.7787182587666264
69 67 1549480396.342954 0 0 67 293.53 978.5 132.22695071890425 22 147 153.2779992044 52 3.797 102 10.49 1.3 720 1870 0 82.8 152.8 112 285.63 948.5 1 1 1 1 128 0 22.0 3.7830067337519866 368.312616 679.6880160000002 99 978.5 3.7830067337519866
70 68 1549480399.5196738 0 0 68 296.72 990.6 132.91714119459002 22 148 150.9885074656 53 3.778 103 10.13 1.27 700 1780 0 76.7 130.3 112 293.53 978.5 1 1 1 1 128 0 22.0 3.764493299201928 341.178474 579.603066 100 990.6 3.7644932992019275
71 69 1549480402.910564 0 1 69 300.08 1003.2 133.7052470125031 22 148 147.30215842439998 54 3.747 104 10.06 1.3 720 1770 0 78.8 135.7 112 296.72 990.6 1 1 1 1 128 0 22.0 3.7338510940183705 350.519736 603.6234539999998 101 1003.2 3.7338510940183705
72 70 1549480404.559314 0 1 70 301.77 1009.5 133.94237803704698 22 148 147.30215842439998 54 3.747 105 9.84 1.24 690 1740 0 77.2 137.0 112 300.08 1003.2 1 1 1 1 128 1 22.0 3.7338510940183705 343.402584 609.40614 102 1009.5 3.7338510940183705
73 71 1549480410.5894938 0 1 71 307.81 1032.2 133.80332389066382 22 148 148.1292541792 56 3.754 107 10.06 1.27 700 1780 0 82.9 142.3 112 301.77 1009.5 1 1 1 1 128 1 22.0 3.7405550983766 368.757438 632.9817059999999 104 1032.2 3.7405550983765994
74 72 1549480412.6286938 0 1 72 309.83 1039.8 133.43511680245388 22 148 148.1292541792 56 3.754 108 10.13 1.3 710 1770 0 82.2 142.9 111 307.81 1032.2 1 1 1 1 128 1 22.0 3.7405550983766 365.643684 635.6506380000002 105 1039.8 3.7405550983765994
75 73 1549480418.6586733 0 1 73 315.86 1062.7 133.02328741183936 22 149 150.8686436124 58 3.777 110 10.21 1.33 730 1770 0 80.9 141.9 112 309.83 1039.8 1 1 1 1 128 1 22.0 3.7639265281541694 359.86099800000005 631.2024180000002 107 1062.7 3.7639265281541703
76 74 1549480420.6686034 0 1 74 317.89 1070.3 132.79039387977997 22 149 150.8686436124 58 3.777 111 10.21 1.3 720 1780 0 78.7 133.8 112 315.86 1062.7 1 1 1 1 128 1 22.0 3.7639265281541694 350.0749140000001 595.1718360000001 108 1070.3 3.7639265281541703
77 75 1549480428.5328429 0 1 75 325.74 1099.8 133.4024724319576 22 149 149.79272232959997 60 3.768 114 10.2 1.27 710 1820 0 83.2 144.0 112 317.89 1070.3 1 1 1 1 128 1 22.0 3.754317465084848 370.091904 640.54368 111 1099.8 3.7543174650848474
78 76 1549480431.768223 0 1 76 328.98 1112.1 133.45478745301213 22 149 147.1842538208 60 3.746 115 10.49 1.33 740 1850 0 78.5 142.2 112 325.74 1099.8 1 1 1 1 128 1 22.0 3.73245744998507 349.18527 632.536884 112 1112.1 3.73245744998507
79 77 1549480437.7995832 0 1 77 335.01 1134.9 133.0450024365526 22 149 151.4685977504 62 3.782 117 10.49 1.3 720 1860 0 81.6 141.4 112 328.98 1112.1 1 1 1 1 128 1 22.0 3.768749528906308 362.974752 628.9783080000002 114 1134.9 3.768749528906309
80 78 1549480439.8383632 0 1 78 337.04 1142.5 132.74559670727098 22 149 151.4685977504 62 3.782 118 10.57 1.33 730 1870 0 83.9 144.0 112 335.01 1134.9 1 1 1 1 128 1 22.0 3.768749528906308 373.205658 640.54368 115 1142.5 3.768749528906309
81 79 1549480442.8391232 0 1 79 340.06 1154.0 132.57269814075858 21 148 150.74884321279998 63 3.776 119 10.64 1.3 710 1900 0 84.4 149.5 112 337.04 1142.5 1 1 1 1 128 1 21.0 3.7619441727484766 375.429768 665.0088900000002 116 1154.0 3.7619441727484766
82 80 1549480450.7011936 0 1 80 347.91 1184.0 131.46662541796974 22 148 155.71287063640003 65 3.817 122 10.57 1.3 700 1850 0 87.1 152.2 112 340.06 1154.0 1 1 1 1 128 1 22.0 3.8028597505324 387.43996200000004 677.0190839999998 119 1184.0 3.8028597505324004
83 81 1549480453.9378335 0 1 81 351.13 1196.5 130.90421093160626 22 149 159.53766133759999 65 3.848 123 10.56 1.3 710 1850 0 82.6 148.1 112 347.91 1184.0 1 1 1 1 128 1 22.0 3.8343558282208585 367.422972 658.781382 120 1196.5 3.8343558282208585
84 82 1549480458.9820035 0 1 82 356.19 1215.6 131.41586033989825 22 148 154.7358515612 67 3.809 125 10.57 1.3 710 1870 0 83.6 149.4 112 351.13 1196.5 1 1 1 1 128 1 22.0 3.79477838494232 371.871192 664.564068 122 1215.6 3.79477838494232
85 83 1549480462.0075836 0 1 83 359.21 1227.2 131.44296239278682 22 148 154.7358515612 67 3.809 126 10.35 1.27 690 1830 0 83.8 147.7 112 356.19 1215.6 1 1 1 1 128 1 22.0 3.79477838494232 372.760836 657.0020939999998 123 1227.2 3.79477838494232
86 84 1549480469.9875338 0 1 84 367.18 1257.5 131.27749227384868 22 148 158.9165706996 69 3.843 129 10.64 1.3 710 1890 0 84.4 146.3 112 359.21 1227.2 1 1 1 1 128 1 22.0 3.8290703017307393 375.429768 650.7745860000001 126 1257.5 3.8290703017307393
87 85 1549480473.076864 0 1 85 370.29 1269.5 131.45964159923068 21 148 153.5203359172 70 3.799 130 10.63 1.3 710 1890 0 85.9 151.9 112 367.18 1257.5 1 1 1 1 128 1 21.0 3.785584494245912 382.102098 675.684618 127 1269.5 3.7855844942459114
88 86 1549480476.106764 0 1 86 373.31 1281.0 132.31198212453012 21 148 154.00577535559998 70 3.803 131 10.56 1.27 700 1890 0 82.7 145.8 112 370.29 1269.5 1 1 1 1 128 1 21.0 3.7896013339396695 367.867794 648.550476 128 1281.0 3.7896013339396695
89 87 1549480481.0605335 0 1 87 378.26 1299.5 133.0674836706866 22 148 150.27027581439995 71 3.772 133 10.35 1.33 740 1830 0 82.5 146.7 112 373.31 1281.0 1 1 1 1 128 1 22.0 3.757985719654265 366.97815 652.5538740000001 130 1299.5 3.757985719654265
90 88 1549480484.1765134 0 1 88 381.37 1311.3 133.36749419884825 22 149 147.06641215000002 72 3.745 134 10.51 1.27 710 1890 0 80.8 140.3 112 378.26 1299.5 1 1 1 1 128 1 22.0 3.7319002836244217 359.41617599999995 624.085266 131 1311.3 3.7319002836244217
91 89 1549480487.2061238 0 1 89 384.39 1322.6 134.00553661357927 22 149 150.27027581439995 73 3.772 135 10.29 1.27 710 1840 0 78.3 134.6 112 381.37 1311.3 1 1 1 1 128 1 22.0 3.75826819001804 348.295626 598.730412 132 1322.6 3.75826819001804
92 90 1549480492.1299846 0 1 90 389.33 1340.6 135.089596346954 21 149 141.48369164439998 74 3.697 137 10.07 1.27 720 1820 0 77.9 134.1 112 384.39 1322.6 1 1 1 1 128 1 21.0 3.684055408193339 346.51633799999996 596.506302 134 1340.6 3.6840554081933394
93 91 1549480495.2758446 0 1 91 392.46 1352.3 136.1896361065424 22 149 140.11044354999999 74 3.685 138 9.99 1.24 700 1810 0 77.9 139.4 112 389.33 1340.6 1 1 1 1 128 1 22.0 3.672150411280846 346.51633799999996 620.081868 135 1352.3 3.672150411280846
94 92 1549480503.405515 0 1 92 400.33 1381.3 135.83154355273666 22 148 141.59853229759997 76 3.698 141 10.36 1.27 710 1890 0 83.1 141.9 112 392.46 1352.3 1 1 1 1 128 1 22.0 3.68486992409168 369.647082 631.2024180000002 138 1381.3 3.6848699240916796
95 93 1549480506.5858748 0 1 93 403.53 1393.4 135.1703552792469 21 148 142.6348958804 77 3.707 142 10.22 1.27 710 1830 0 80.0 145.0 112 400.33 1381.3 1 1 1 1 128 1 21.0 3.6938534278959807 355.8576 644.9919 139 1393.4 3.6938534278959807
96 94 1549480511.6248052 0 1 94 408.49 1411.7 134.988945577869 22 147 145.1894905692 78 3.729 144 10.07 1.27 710 1800 0 79.7 142.8 112 403.53 1393.4 1 1 1 1 128 1 22.0 3.7155383815114815 354.52313399999997 635.205816 141 1411.7 3.715538381511481
97 95 1549480514.5956855 0 1 95 411.61 1423.5 134.27414581618805 22 147 144.0245630852 79 3.719 145 10.22 1.24 690 1860 0 84.7 148.0 112 408.49 1411.7 1 1 1 1 128 1 22.0 3.705899792469612 376.764234 658.33656 142 1423.5 3.7058997924696118
98 96 1549480522.5443654 0 1 96 419.48 1453.0 133.724417646103 22 147 149.9120157052 80 3.769 148 10.36 1.3 720 1840 0 81.0 142.6 112 411.61 1423.5 1 1 1 1 128 1 22.0 3.7554453958239447 360.30582000000004 634.3161719999998 145 1453.0 3.755445395823945
99 97 1549480525.8747456 0 1 97 422.69 1465.2 133.15765675699885 22 147 148.84065279999996 81 3.76 149 10.44 1.3 720 1860 0 82.6 148.2 113 419.48 1453.0 1 1 1 1 128 1 22.0 3.74672161858374 367.422972 659.2262039999998 146 1465.2 3.7467216185837398
100 98 1549480533.5535154 0 1 98 430.55 1494.7 133.31576273973818 21 147 149.67349225639998 83 3.767 152 10.37 1.27 700 1860 0 86.1 157.7 113 422.69 1465.2 1 1 1 1 128 1 21.0 3.7537537537537538 382.991742 701.4842940000001 149 1494.7 3.753753753753754
101 99 1549480536.644306 0 1 99 433.77 1507.0 133.06618459949783 22 147 149.79272232959997 84 3.768 153 10.37 1.27 700 1840 0 81.1 148.0 113 430.55 1494.7 1 1 1 1 128 1 22.0 3.754599384245701 360.750642 658.33656 150 1507.0 3.7545993842457013
102 100 1549480541.623356 0 1 100 438.75 1525.8 132.9720280471956 22 147 151.10843478919998 85 3.779 155 10.37 1.3 720 1830 0 82.5 142.7 112 433.77 1507.0 1 1 1 1 128 1 22.0 3.7653437758867385 366.97815 634.7609940000001 152 1525.8 3.7653437758867385
103 101 1549480544.7736356 0 1 101 441.84 1537.6 132.3618296172319 22 147 151.4685977504 85 3.782 156 10.37 1.3 720 1830 0 84.1 148.2 113 438.75 1525.8 1 1 1 1 128 1 22.0 3.7678975131876418 374.095302 659.2262039999998 153 1537.6 3.7678975131876418
104 102 1549480550.6834354 0 1 102 447.87 1560.6 131.8011892501163 22 148 155.8352864096 87 3.818 158 10.37 1.27 690 1830 0 87.8 148.4 113 441.84 1537.6 1 1 1 1 128 1 22.0 3.80430647492962 390.553716 660.115848 155 1560.6 3.80430647492962
105 103 1549480552.6934354 0 1 103 449.9 1568.3 131.05333355623756 22 148 155.8352864096 87 3.818 159 10.44 1.3 710 1820 0 83.7 152.7 112 447.87 1560.6 1 1 1 1 128 1 22.0 3.80430647492962 372.316014 679.2431939999999 156 1568.3 3.80430647492962
106 104 1549480555.7233655 0 1 104 452.92 1579.9 130.91530937069135 22 148 158.17339230840003 88 3.837 160 10.51 1.3 710 1850 0 83.3 145.7 112 449.9 1568.3 1 1 1 1 128 1 22.0 3.8226299694189603 370.536726 648.105654 157 1579.9 3.82262996941896
107 105 1549480560.6723056 0 1 105 457.85 1598.3 132.78903865025367 22 148 153.64159999999998 89 3.8 162 10.07 1.24 730 1780 0 63.6 110.7 112 452.92 1579.9 1 1 1 1 128 1 22.0 3.7864445285876562 282.906792 492.417954 159 1598.3 3.786444528587656
108 106 1549480566.8226056 0 1 106 464.0 1620.9 135.5266167902113 22 149 138.97288124999997 91 3.675 164 9.86 1.27 720 1760 0 75.8 131.1 112 457.85 1598.3 1 1 1 1 128 1 22.0 3.662198784150004 337.175076 583.161642 161 1620.9 3.6621987841500037
109 107 1549480568.832716 0 1 107 466.01 1628.3 136.92626205120862 22 149 138.97288124999997 91 3.675 165 9.93 1.3 730 1760 0 78.9 142.9 112 464.0 1620.9 1 1 1 1 128 1 22.0 3.662198784150004 350.964558 635.6506380000002 162 1628.3 3.6621987841500037
110 108 1549480571.862656 0 1 108 469.04 1639.7 135.4615506513375 22 149 141.36891310080003 91 3.696 166 10.14 1.3 730 1790 0 79.8 140.0 112 466.01 1628.3 1 1 1 1 128 1 22.0 3.682427456179113 354.967956 622.7508 163 1639.7 3.6824274561791133
111 109 1549480576.8114953 0 1 109 474.0 1658.2 133.89644874909146 22 149 148.36613460479998 93 3.756 168 10.36 1.3 720 1830 0 80.5 141.8 112 469.04 1639.7 1 1 1 1 128 1 22.0 3.74251497005988 358.08171 630.757596 165 1658.2 3.7425149700598803
112 110 1549480579.9017956 0 1 110 477.1 1670.0 132.99614241019543 22 149 150.62910624999998 93 3.775 169 10.43 1.33 740 1840 0 80.4 141.9 112 474.0 1658.2 1 1 1 1 128 1 22.0 3.761095230931247 357.63688800000006 631.2024180000002 166 1670.0 3.761095230931247
113 111 1549480585.961556 0 1 111 483.15 1692.9 133.26770251916716 22 149 149.67349225639998 95 3.767 171 10.21 1.3 720 1790 0 80.2 147.2 112 477.1 1670.0 1 1 1 1 128 1 22.0 3.7534719615644465 356.74724399999997 654.777984 168 1692.9 3.753471961564447
114 112 1549480587.971566 0 1 112 485.18 1700.5 132.6839714220122 22 149 149.67349225639998 95 3.767 172 10.07 1.3 720 1750 0 78.5 138.4 112 483.15 1692.9 1 1 1 1 128 1 22.0 3.7534719615644465 349.18527 615.633648 169 1700.5 3.753471961564447
115 113 1549480594.0314858 0 1 113 491.22 1723.6 131.64827350052832 22 148 157.06297474559997 97 3.828 174 10.36 1.27 690 1830 0 86.9 148.0 112 485.18 1700.5 1 1 1 1 128 1 22.0 3.8138825324180017 386.550318 658.33656 171 1723.6 3.8138825324180017
116 114 1549480596.040206 0 1 114 493.23 1731.2 130.73280955025766 22 148 157.06297474559997 97 3.828 175 10.51 1.3 710 1840 0 83.0 146.4 112 491.22 1723.6 1 1 1 1 128 1 22.0 3.8138825324180017 369.20226 651.219408 172 1731.2 3.8138825324180017
117 115 1549480599.0701356 0 1 115 496.25 1742.8 131.45944423645574 22 149 157.55584983039998 98 3.832 176 10.43 1.3 710 1830 0 83.5 147.7 112 493.23 1731.2 1 1 1 1 128 1 22.0 3.817959682345754 371.42637 657.0020939999998 173 1742.8 3.8179596823457542
118 116 1549480605.0997756 0 1 116 502.3 1765.7 132.27372282078724 21 149 151.10843478919998 99 3.779 178 10.58 1.3 720 1890 0 81.8 145.1 112 496.25 1742.8 1 1 1 1 128 1 21.0 3.765627353517096 363.864396 645.4367219999999 175 1765.7 3.765627353517096
119 117 1549480607.1095455 0 1 117 504.32 1773.3 132.98730618424062 21 149 151.10843478919998 99 3.779 179 10.36 1.3 720 1830 0 80.1 141.3 112 502.3 1765.7 1 1 1 1 128 1 21.0 3.765627353517096 356.30242200000004 628.533486 176 1773.3 3.765627353517096
120 118 1549480610.1401553 0 1 118 507.33 1784.6 132.99134867609376 22 148 150.27027581439995 100 3.772 180 10.36 1.3 720 1840 0 81.8 141.2 112 504.32 1773.3 1 1 1 1 128 1 22.0 3.758550702848981 363.864396 628.088664 177 1784.6 3.7585507028489813
121 119 1549480615.153185 0 1 119 512.34 1803.3 133.26391070887527 22 148 149.67349225639998 101 3.767 182 10.35 1.27 700 1860 0 83.1 149.7 112 507.33 1784.6 1 1 1 1 128 1 22.0 3.7534719615644465 369.647082 665.8985339999998 179 1803.3 3.753471961564447
122 120 1549480618.2092052 0 1 120 515.4 1815.0 133.35224558961045 22 148 148.84065279999996 102 3.76 183 10.28 1.3 720 1810 0 80.0 141.1 112 512.34 1803.3 1 1 1 1 128 1 22.0 3.74672161858374 355.8576 627.643842 180 1815.0 3.7467216185837398
123 121 1549480624.2393448 0 1 121 521.44 1837.8 133.26390993276257 22 148 149.5543254688 104 3.766 185 10.27 1.27 700 1840 0 83.5 151.2 112 515.4 1815.0 1 1 1 1 128 1 22.0 3.75234521575985 371.42637 672.5708639999998 182 1837.8 3.75234521575985
124 122 1549480626.2785847 0 1 122 523.46 1845.3 133.4070370315267 22 148 149.5543254688 104 3.766 186 10.21 1.27 700 1810 0 81.3 142.7 112 521.44 1837.8 1 1 1 1 128 1 22.0 3.75234521575985 361.640286 634.7609940000001 183 1845.3 3.75234521575985
125 123 1549480632.3094745 0 1 123 529.51 1868.1 133.7596127348976 22 148 147.30215842439998 106 3.747 188 10.14 1.27 710 1800 0 80.1 142.9 112 523.46 1845.3 1 1 1 1 128 1 22.0 3.733293511535877 356.30242200000004 635.6506380000002 185 1868.1 3.733293511535877
126 124 1549480634.3188744 0 1 124 531.52 1875.6 133.97316157606315 22 148 147.30215842439998 106 3.747 189 9.92 1.24 690 1760 0 79.3 136.0 112 529.51 1868.1 1 1 1 1 128 1 22.0 3.733293511535877 352.743846 604.9579200000002 186 1875.6 3.733293511535877
127 125 1549480640.3778744 0 1 125 537.58 1898.3 133.84272954737165 22 148 147.42012597760004 107 3.748 191 10.21 1.27 710 1820 0 73.1 133.1 112 531.52 1875.6 1 1 1 1 128 1 22.0 3.734966758795847 325.164882 592.058082 188 1898.3 3.7349667587958466
128 126 1549480642.3878243 0 1 126 539.59 1905.7 133.99306548136502 22 148 147.42012597760004 107 3.748 192 9.71 1.24 700 1730 0 78.9 137.7 112 537.58 1898.3 1 1 1 1 128 1 22.0 3.734966758795847 350.964558 612.5198939999998 189 1905.7 3.7349667587958466
129 127 1549480648.4475145 0 1 127 545.63 1928.2 134.41498212851633 22 148 145.7743025312 109 3.734 194 10.08 1.27 710 1800 0 80.0 138.9 112 539.59 1905.7 1 1 1 1 128 1 22.0 3.7210686909280346 355.8576 617.857758 191 1928.2 3.7210686909280346
130 128 1549480650.4573545 0 1 128 547.65 1935.8 133.89266281368728 22 148 145.7743025312 109 3.734 195 10.0 1.3 720 1750 0 78.9 138.5 112 545.63 1928.2 1 1 1 1 128 1 22.0 3.7210686909280346 350.964558 616.07847 192 1935.8 3.7210686909280346
131 129 1549480656.4877748 0 1 129 553.69 1958.6 132.90976429156115 22 148 152.55251947879998 111 3.791 197 10.29 1.27 690 1830 0 83.5 143.4 112 547.65 1935.8 1 1 1 1 128 1 22.0 3.7772909269471935 371.42637 637.8747480000002 194 1958.6 3.7772909269471935
132 130 1549480658.5269349 0 1 130 555.7 1966.2 132.10881551387368 22 148 152.55251947879998 111 3.791 198 10.29 1.27 700 1830 0 84.7 152.5 112 553.69 1958.6 1 1 1 1 128 1 22.0 3.7772909269471935 376.764234 678.35355 195 1966.2 3.7772909269471935
133 131 1549480664.5566852 0 1 131 561.75 1989.3 132.13164977636524 22 148 153.76292792280003 113 3.801 200 10.21 1.27 690 1800 0 85.7 155.4 112 555.7 1966.2 1 1 1 1 128 1 22.0 3.7875918491023417 381.212454 691.2533880000002 197 1989.3 3.787591849102341
134 132 1549480666.5673854 0 1 132 563.77 1996.9 131.8916785944947 22 148 153.76292792280003 113 3.801 201 10.07 1.24 680 1760 0 82.4 142.7 112 561.75 1989.3 1 1 1 1 128 1 22.0 3.7875918491023417 366.533328 634.7609940000001 198 1996.9 3.787591849102341
135 133 1549480672.6262755 0 1 133 569.81 2019.9 131.5437306800994 22 148 154.9797220468 115 3.811 203 10.22 1.3 720 1770 0 74.3 132.6 112 563.77 1996.9 1 1 1 1 128 1 22.0 3.7973722184248495 330.502746 589.833972 200 2019.9 3.7973722184248504
136 134 1549480674.6367257 0 1 134 571.84 2027.5 132.2845691342075 22 148 154.9797220468 115 3.811 204 9.85 1.3 720 1700 0 78.6 134.7 112 569.81 2019.9 1 1 1 1 128 1 22.0 3.7973722184248495 349.630092 599.1752339999998 200 2027.5 3.7973722184248504
137 135 1549480680.6961858 0 1 135 577.87 2050.1 133.3953202389299 22 148 146.36068277319998 116 3.739 206 10.07 1.27 710 1780 0 74.3 134.5 112 571.84 2027.5 1 1 1 1 128 1 22.0 3.7255048059012 330.502746 598.2855900000001 203 2050.1 3.7255048059011995
138 136 1549480682.706616 0 1 136 579.9 2057.6 134.8971528653361 22 148 146.36068277319998 116 3.739 207 9.92 1.3 730 1750 0 76.4 136.3 112 577.87 2050.1 1 1 1 1 128 1 22.0 3.7255048059012 339.8440080000001 606.2923860000002 203 2057.6 3.7255048059011995
139 137 1549480688.7383962 0 1 137 585.93 2079.9 135.7109977243735 22 148 140.5672009532 118 3.689 209 10.0 1.27 720 1790 0 75.1 129.9 112 579.9 2057.6 1 1 1 1 128 1 22.0 3.6756597809306766 334.061322 577.8237780000002 206 2079.9 3.675659780930677
140 138 1549480690.7778757 0 1 138 587.96 2087.3 135.7250177553377 22 148 140.5672009532 118 3.689 210 9.85 1.27 720 1760 0 73.1 126.6 112 585.93 2079.9 1 1 1 1 128 1 22.0 3.6756597809306766 325.164882 563.144652 206 2087.3 3.675659780930677
141 139 1549480696.8080962 0 1 139 594.0 2109.8 134.8316288705538 22 147 146.24328116159998 120 3.738 212 10.28 1.3 720 1830 0 80.5 141.1 112 587.96 2087.3 1 1 1 1 128 1 22.0 3.7243947858473 358.08171 627.643842 209 2109.8 3.7243947858473
142 140 1549480698.8192658 0 1 140 596.01 2117.4 133.79375515073147 22 147 146.24328116159998 120 3.738 213 10.21 1.3 710 1800 0 83.4 157.4 112 594.0 2109.8 1 1 1 1 128 1 22.0 3.7243947858473 370.981548 700.1498280000002 209 2117.4 3.7243947858473
143 141 1549480702.844046 0 2 141 600.01 2132.4 132.93405990576792 22 147 151.10843478919998 121 3.779 214 10.5 1.33 740 1850 0 79.0 144.2 112 596.01 2117.4 1 1 1 1 128 1 22.0 3.765627353517096 351.40938 641.433324 211 2132.4 3.765627353517096
144 142 1549480706.9193661 0 2 142 604.09 2147.9 132.0803034996086 22 146 154.12729489919997 122 3.804 216 10.43 1.33 730 1820 0 84.7 150.4 112 600.01 2132.4 1 1 1 1 128 2 22.0 3.789888577275828 376.764234 669.012288 212 2147.9 3.789888577275828
145 143 1549480709.9185164 0 2 143 607.1 2159.5 131.63516626324042 22 146 154.12729489919997 122 3.804 217 10.64 1.3 710 1880 0 82.9 143.8 112 604.09 2147.9 1 1 1 1 128 2 22.0 3.789888577275828 368.757438 639.654036 213 2159.5 3.789888577275828
146 144 1549480712.9483266 0 2 144 610.13 2171.1 131.6015485163609 22 146 156.3255910944 123 3.822 218 10.51 1.3 710 1860 0 85.1 153.9 112 607.1 2159.5 1 1 1 1 128 2 22.0 3.8086532602071914 378.543522 684.581058 215 2171.1 3.8086532602071905
147 145 1549480717.9629865 0 2 145 615.14 2190.0 131.68554917395522 22 146 154.12729489919997 124 3.804 220 10.42 1.3 720 1830 0 81.3 141.5 112 610.13 2171.1 1 1 1 1 128 2 22.0 3.790175864160097 361.640286 629.42313 216 2190.0 3.7901758641600973
148 146 1549480720.9888568 0 2 146 618.19 2201.6 131.74240268462907 22 146 153.76292792280003 125 3.801 221 10.21 1.27 700 1800 0 77.5 132.1 112 615.14 2190.0 1 1 1 1 128 2 22.0 3.787018101946528 344.73705 587.609862 217 2201.6 3.7870181019465274
149 147 1549480724.0178366 0 2 147 621.21 2212.9 133.79552239917936 22 146 152.07014032839996 126 3.787 222 10.28 1.33 750 1810 0 76.2 132.9 112 618.19 2201.6 1 1 1 1 128 2 22.0 3.773015393902807 338.954364 591.168438 219 2212.9 3.773015393902807
150 148 1549480728.912697 0 2 148 626.08 2230.3 136.17388145695134 20 147 134.81745220159996 127 3.638 224 9.13 1.3 750 1610 0 76.1 137.4 112 621.21 2212.9 1 1 1 1 128 2 20.0 3.6255528968167647 338.5095419999999 611.185428 220 2230.3 3.6255528968167647
151 149 1549480736.9823565 0 2 149 634.15 2259.7 138.95726674677647 23 146 136.60407673919997 129 3.654 227 9.93 1.27 760 1820 0 71.0 128.7 112 626.08 2230.3 1 1 1 1 128 2 23.0 3.6416605972323377 315.82362 572.485914 223 2259.7 3.6416605972323377
152 150 1549480740.1576867 0 2 150 637.34 2271.4 137.79569957749598 22 146 129.6594713988 129 3.591 228 9.86 1.3 740 1790 0 80.0 140.2 113 634.15 2259.7 1 1 1 1 128 2 22.0 3.579098067287044 355.8576 623.640444 224 2271.4 3.579098067287044
153 151 1549480745.0821168 0 2 151 642.25 2289.6 136.2486848779255 22 145 143.56034244999998 130 3.715 230 10.0 1.3 730 1760 0 76.7 134.8 112 637.34 2271.4 1 1 1 1 128 2 22.0 3.7023324694557567 341.178474 599.6200560000002 226 2289.6 3.7023324694557567
154 152 1549480748.2271068 0 2 152 645.4 2301.3 135.28453724852207 22 145 143.21283235840002 131 3.712 231 10.22 1.3 740 1820 0 72.1 129.4 112 642.25 2289.6 1 1 1 1 128 2 22.0 3.698772007693445 320.716662 575.5996680000002 227 2301.3 3.6987720076934454
155 153 1549480756.1515667 0 2 153 653.35 2330.2 137.77470758136582 22 144 136.0440716572 133 3.649 234 10.14 1.33 770 1840 0 72.6 129.7 112 645.4 2301.3 1 1 1 1 128 2 22.0 3.635834787667248 322.94077200000004 576.934134 230 2330.2 3.6358347876672483
156 154 1549480759.296537 0 2 154 656.49 2341.9 136.40307215687224 21 144 133.5982280724 133 3.627 235 10.14 1.36 760 1800 0 88.5 158.2 112 653.35 2330.2 1 1 1 1 128 2 21.0 3.614283648980772 393.66747000000004 703.708404 231 2341.9 3.6142836489807717
157 155 1549480764.3665168 0 2 155 661.53 2361.1 133.01493796889523 22 144 156.9399167924 135 3.827 237 10.43 1.3 710 1830 0 87.0 153.6 112 656.49 2341.9 1 1 1 1 128 2 22.0 3.813300793166565 386.99514 683.246592 233 2361.1 3.813300793166565
158 156 1549480767.3659177 0 2 156 664.54 2372.8 130.44518002599548 22 144 156.9399167924 135 3.827 238 10.64 1.3 700 1870 0 85.8 153.7 112 661.53 2361.1 1 1 1 1 128 2 22.0 3.813300793166565 381.657276 683.691414 234 2372.8 3.813300793166565
159 157 1549480770.3961074 0 2 157 667.57 2384.5 130.6067098203641 22 144 158.7925463264 136 3.842 239 10.63 1.3 700 1880 0 90.1 155.7 112 664.54 2372.8 1 1 1 1 128 2 22.0 3.8284839203675354 400.784622 692.587854 235 2384.5 3.8284839203675345
160 158 1549480775.439548 0 2 158 672.6 2403.8 130.24066831879938 22 144 160.6596986204 138 3.857 241 10.5 1.3 700 1830 0 88.4 162.3 112 667.57 2384.5 1 1 1 1 128 2 22.0 3.842902159711013 393.22264800000005 721.9461060000001 237 2403.8 3.8429021597110133
161 159 1549480778.435838 0 2 159 675.63 2415.6 129.86803583561448 22 144 160.6596986204 138 3.857 242 10.57 1.3 700 1840 0 85.2 142.7 112 672.6 2403.8 1 1 1 1 128 2 22.0 3.842902159711013 378.988344 634.7609940000001 238 2415.6 3.8429021597110133
162 160 1549480781.466008 0 2 160 678.65 2427.3 129.78848272987855 22 144 162.7934325472 138 3.874 243 10.63 1.3 700 1870 0 88.1 153.2 112 675.63 2415.6 1 1 1 1 128 2 22.0 3.85981164119191 391.888182 681.467304 240 2427.3 3.85981164119191
163 161 1549480786.4808686 0 2 161 683.64 2446.3 130.21710366600337 22 145 160.53476884479997 140 3.856 245 10.7 1.33 720 1880 0 84.9 155.5 112 678.65 2427.3 1 1 1 1 128 2 22.0 3.8414259373079287 377.65387799999996 691.69821 241 2446.3 3.8414259373079287
164 162 1549480789.5361178 0 2 162 686.71 2458.3 130.424167640322 21 145 158.04975495679997 140 3.836 246 10.56 1.33 720 1830 0 87.6 156.5 112 683.64 2446.3 1 1 1 1 128 2 21.0 3.8217534204693107 389.66407200000003 696.14643 242 2458.3 3.821753420469311
165 163 1549480794.581518 0 2 163 691.76 2477.7 129.43811498277435 22 146 162.16391494520002 142 3.869 248 10.41 1.3 700 1800 0 84.8 152.3 112 686.71 2458.3 1 1 1 1 128 2 22.0 3.854455750847981 377.20905600000003 677.4639060000002 244 2477.7 3.8544557508479804
166 164 1549480797.6060874 0 2 164 694.77 2489.4 131.51698135424215 22 146 162.16391494520002 142 3.869 249 10.56 1.3 710 1850 0 81.9 141.7 112 691.76 2477.7 1 1 1 1 128 2 22.0 3.854455750847981 364.309218 630.312774 245 2489.4 3.8544557508479804
167 165 1549480803.6353376 0 2 165 700.81 2511.6 135.0525492482918 22 147 136.26788966279997 144 3.651 251 9.84 1.24 740 1760 0 64.7 104.9 112 694.77 2489.4 1 1 1 1 128 2 22.0 3.638745360599666 287.7998340000001 466.618278 248 2511.6 3.6387453605996654
168 166 1549480805.647028 0 2 166 702.84 2518.9 139.15617278707796 22 148 136.26788966279997 144 3.651 252 9.34 1.24 740 1680 0 65.8 113.3 112 700.81 2511.6 1 1 1 1 128 2 22.0 3.638745360599666 292.69287599999996 503.983326 248 2518.9 3.6387453605996654
169 167 1549480810.6589177 0 2 167 707.82 2536.7 140.1804104160722 22 148 126.01133914039998 145 3.557 254 9.48 1.3 750 1710 0 77.5 133.0 112 702.84 2518.9 1 1 1 1 128 2 22.0 3.5448422545196734 344.73705 591.61326 250 2536.7 3.5448422545196734
170 168 1549480813.716397 0 2 168 710.9 2548.2 139.1199035527561 23 148 129.76782192640002 146 3.592 255 9.91 1.33 750 1730 0 75.9 135.7 112 707.82 2536.7 1 1 1 1 128 2 23.0 3.5801231562365747 337.6198980000001 603.6234539999998 251 2548.2 3.5801231562365747
171 169 1549480818.6686268 0 2 169 715.85 2566.6 135.65754602753807 23 148 144.6062447872 147 3.724 257 10.07 1.3 720 1760 0 78.6 139.2 112 710.9 2548.2 1 1 1 1 128 2 23.0 3.7111259556149334 349.630092 619.192224 253 2566.6 3.711125955614934
172 170 1549480821.7854176 0 2 170 718.95 2578.4 133.22545985967756 22 148 148.36613460479998 147 3.756 258 10.07 1.3 720 1760 0 82.1 148.9 112 715.85 2566.6 1 1 1 1 128 2 22.0 3.74223486265998 365.198862 662.339958 254 2578.4 3.74223486265998
173 171 1549480826.7983773 0 2 171 723.98 2597.4 132.69226472120872 22 148 152.07014032839996 149 3.787 260 10.35 1.33 730 1800 0 83.2 152.7 112 718.95 2578.4 1 1 1 1 128 2 22.0 3.7738697260170575 370.091904 679.2431939999999 256 2597.4 3.7738697260170575
174 172 1549480829.8549168 0 2 172 727.03 2609.1 132.06279817863 22 148 152.9149725152 149 3.794 261 10.56 1.3 710 1870 0 89.1 159.5 112 723.98 2597.4 1 1 1 1 128 2 22.0 3.780432481475881 396.336402 709.49109 257 2609.1 3.780432481475881
175 173 1549480832.855417 0 2 173 730.05 2620.7 131.31149790543736 22 148 155.71287063640003 150 3.817 262 10.7 1.3 710 1890 0 83.5 145.6 112 727.03 2609.1 1 1 1 1 128 2 22.0 3.80343830823064 371.42637 647.660832 258 2620.7 3.8034383082306404
176 174 1549480837.8048873 0 2 174 734.96 2639.2 131.24291797281884 22 148 157.67922950360003 151 3.833 264 10.35 1.21 710 1850 0 62.6 105.9 112 730.05 2620.7 1 1 1 1 128 2 22.0 3.81854284405071 278.458572 471.066498 260 2639.2 3.81854284405071
177 175 1549480840.9243472 0 2 175 738.11 2650.7 134.5282763632405 22 148 149.43522195 152 3.765 265 9.48 1.24 730 1720 0 74.5 134.9 111 734.96 2639.2 1 1 1 1 128 2 22.0 3.7512191462225215 331.39239 600.064878 261 2650.7 3.7512191462225224
178 176 1549480845.8447168 0 2 176 743.01 2668.7 134.3366262591648 22 148 135.26263880639996 153 3.642 267 9.91 1.36 760 1720 0 83.6 148.0 111 738.11 2650.7 1 1 1 1 128 2 22.0 3.629764065335753 371.871192 658.33656 263 2668.7 3.629764065335753
179 177 1549480853.8581874 0 2 177 751.03 2699.7 131.32604231835836 23 147 166.09319999999997 155 3.9 270 10.57 1.33 720 1810 0 83.0 150.3 112 743.01 2668.7 1 1 1 1 128 2 23.0 3.88530577356438 369.20226 668.5674660000002 266 2699.7 3.8853057735643795
180 178 1549480857.0635574 0 2 178 754.23 2712.2 128.49024660496568 22 147 164.56474460159998 155 3.888 271 10.28 1.27 680 1790 0 88.0 160.2 112 751.03 2699.7 1 1 1 1 128 2 22.0 3.8729666924864445 391.44336 712.6048440000001 267 2712.2 3.872966692486445
181 179 1549480861.9237976 0 2 179 759.08 2730.9 129.30646841701946 22 147 162.54143037439997 157 3.872 273 10.35 1.33 710 1760 0 87.2 159.3 112 754.23 2712.2 1 1 1 1 128 2 22.0 3.8577270272355526 387.88478399999997 708.601446 269 2730.9 3.8577270272355526
182 180 1549480869.9377873 0 2 180 767.12 2762.4 128.60522498172443 23 147 166.73283934999995 159 3.905 276 10.56 1.33 710 1790 0 87.1 157.6 112 759.08 2730.9 1 1 1 1 128 2 23.0 3.890142379211079 387.43996200000004 701.0394719999998 272 2762.4 3.890142379211079
183 181 1549480873.1726873 0 2 181 770.35 2775.2 127.86287778004346 22 147 169.9556796 159 3.93 277 10.56 1.3 690 1820 0 90.4 163.3 112 767.12 2762.4 1 1 1 1 128 2 22.0 3.9151201941899623 402.119088 726.3943260000002 274 2775.2 3.915120194189962
184 182 1549480878.0937376 0 2 182 775.26 2794.2 128.1758578312693 22 148 168.5325615652 161 3.919 279 10.55 1.3 690 1830 0 90.4 157.4 112 770.35 2775.2 1 1 1 1 128 2 22.0 3.9041149371437496 402.119088 700.1498280000002 275 2794.2 3.9041149371437496
185 183 1549480881.2423074 0 2 183 778.41 2806.7 128.33424306107744 22 148 165.8378030176 161 3.898 280 10.7 1.33 710 1840 0 90.3 160.6 112 775.26 2794.2 1 1 1 1 128 2 22.0 3.8831935383659526 401.674266 714.384132 276 2806.7 3.8831935383659526
186 184 1549480886.2885776 0 2 184 783.45 2826.4 127.98551694255715 22 149 170.0854497748 163 3.931 282 10.77 1.3 690 1860 0 87.5 154.9 112 778.41 2806.7 1 1 1 1 128 2 22.0 3.916040100250626 389.21925 689.0292780000002 278 2826.4 3.916040100250626
187 185 1549480889.3120973 0 2 185 786.48 2838.4 127.7096190111219 22 149 170.0854497748 163 3.931 283 10.49 1.33 710 1790 0 88.1 157.0 112 783.45 2826.4 1 1 1 1 128 2 22.0 3.916040100250626 391.888182 698.37054 279 2838.4 3.916040100250626
188 186 1549480894.3263874 0 2 186 791.5 2858.0 127.71550772657464 22 149 168.66160639999998 165 3.92 285 10.57 1.33 710 1790 0 85.6 152.7 112 786.48 2838.4 1 1 1 1 128 2 22.0 3.905639743790033 380.767632 679.2431939999999 281 2858.0 3.9056397437900325
189 187 1549480897.352278 0 2 187 794.53 2869.9 128.17788646804337 22 149 170.34518826359997 165 3.933 286 10.34 1.27 680 1780 0 84.9 151.5 112 791.5 2858.0 1 1 1 1 128 2 22.0 3.917881209841717 377.65387799999996 673.9053299999999 282 2869.9 3.9178812098417173
190 188 1549480902.246558 0 2 188 799.42 2889.0 128.32611201482194 23 150 165.0731832064 166 3.892 288 10.35 1.3 690 1750 0 86.3 154.6 112 794.53 2869.9 1 1 1 1 128 2 23.0 3.877171215880893 383.88138599999996 687.694812 284 2889.0 3.877171215880893
191 189 1549480908.8112679 0 2 189 805.63 2913.4 128.26758633113474 23 151 168.91989365440003 168 3.922 290 10.2 1.24 660 1750 0 87.9 158.7 111 799.42 2889.0 1 1 1 1 128 2 23.0 3.9068604469448354 390.99853800000005 705.932514 287 2913.4 3.906860446944835
192 190 1549480910.701628 0 2 190 807.64 2921.2 128.02936046337376 23 151 168.91989365440003 168 3.922 291 10.34 1.3 700 1770 0 84.0 151.6 112 805.63 2913.4 1 1 1 1 128 2 23.0 3.9068604469448354 373.65047999999996 674.350152 288 2921.2 3.906860446944835
193 191 1549480915.560958 0 2 191 812.54 2940.3 128.95757219903962 23 152 165.32779475520002 170 3.894 293 10.13 1.27 680 1720 0 82.5 143.5 112 807.64 2921.2 1 1 1 1 128 2 23.0 3.8792769027853216 366.97815 638.31957 289 2940.3 3.879276902785321
194 192 1549480921.5916178 0 2 192 818.72 2964.2 129.92817531734354 23 152 160.7846931936 171 3.858 295 10.19 1.3 700 1750 0 84.1 155.6 111 812.54 2940.3 1 1 1 1 128 2 23.0 3.8437884378843785 374.095302 692.1430320000001 292 2964.2 3.8437884378843785
195 193 1549480923.9305182 0 2 193 820.74 2972.1 129.93618053441557 23 153 160.7846931936 171 3.858 296 10.19 1.3 690 1750 0 87.7 154.4 111 818.72 2964.2 1 1 1 1 128 2 23.0 3.8437884378843785 390.108894 686.805168 293 2972.1 3.8437884378843785
196 194 1549480928.8196988 0 2 194 825.65 2991.0 129.46666794373772 23 153 164.18410154999995 173 3.885 298 9.98 1.24 660 1730 0 89.1 152.8 111 820.74 2972.1 1 1 1 1 128 2 23.0 3.870268596640607 396.336402 679.6880160000002 294 2991.0 3.870268596640607
197 195 1549480934.910449 0 2 195 831.82 3015.0 129.25862781402685 23 153 163.4245772292 175 3.879 300 10.13 1.3 700 1720 0 83.9 147.5 112 825.65 2991.0 1 1 1 1 128 2 23.0 3.8645849435770603 373.205658 656.11245 297 3015.0 3.86458494357706
198 196 1549480936.9205186 0 2 196 833.83 3022.9 129.42476629379104 23 153 163.4245772292 175 3.879 301 10.05 1.3 700 1700 0 85.4 157.6 111 831.82 3015.0 1 1 1 1 128 2 23.0 3.8645849435770603 379.877988 701.0394719999998 298 3022.9 3.86458494357706
199 197 1549480939.8604188 0 2 197 836.86 3034.6 129.2058926156105 23 154 163.55100159999998 175 3.88 302 10.05 1.27 680 1710 0 83.7 148.6 111 833.83 3022.9 1 1 1 1 128 2 23.0 3.8657801144270914 372.316014 661.005492 299 3034.6 3.8657801144270914
200 198 1549480941.7202687 0 2 198 838.88 3042.5 129.12548666155683 23 154 165.32779475520002 176 3.894 303 10.05 1.3 690 1700 0 86.7 159.2 112 836.86 3034.6 1 1 1 1 128 2 23.0 3.8792769027853216 385.660674 708.1566240000001 299 3042.5 3.879276902785321
201 199 1549480944.809809 0 2 199 841.91 3054.3 128.92842847077557 23 154 164.0573510912 176 3.884 304 10.13 1.27 680 1730 0 85.2 153.2 112 838.88 3042.5 1 1 1 1 128 2 23.0 3.869370066553165 378.988344 681.467304 301 3054.3 3.869370066553165
202 200 1549480949.7894988 0 2 200 846.95 3073.9 129.1433180799442 23 154 165.71020276439995 178 3.897 306 10.49 1.3 700 1800 0 83.2 149.8 112 841.91 3054.3 1 1 1 1 128 2 23.0 3.8828919779451736 370.091904 666.3433560000002 302 3073.9 3.882891977945173
203 201 1549480954.6186085 0 2 201 851.77 3092.7 128.96491675523194 22 154 163.4245772292 179 3.879 308 10.27 1.27 670 1750 0 86.9 160.2 112 846.95 3073.9 1 1 1 1 128 2 22.0 3.8645849435770603 386.550318 712.6048440000001 304 3092.7 3.86458494357706
204 202 1549480960.8590186 0 2 202 858.03 3117.3 128.81938055086385 23 154 166.73283934999995 181 3.905 310 10.35 1.3 690 1770 0 88.2 154.7 112 851.77 3092.7 1 1 1 1 128 2 23.0 3.890142379211079 392.333004 688.139634 307 3117.3 3.890142379211079
205 203 1549480962.8688989 0 2 203 860.04 3125.1 128.4208764625921 23 154 166.73283934999995 181 3.905 311 10.49 1.33 710 1780 0 86.8 162.4 112 858.03 3117.3 1 1 1 1 128 2 23.0 3.890142379211079 386.105496 722.390928 307 3125.1 3.890142379211079
206 204 1549480970.757779 0 2 204 867.9 3155.8 128.20248742999257 22 154 167.63109027839997 183 3.912 314 10.63 1.3 690 1840 0 90.0 162.7 112 860.04 3125.1 1 1 1 1 128 2 22.0 3.8971161340607945 400.3398 723.7253939999998 310 3155.8 3.8971161340607945
207 205 1549480973.968549 0 2 205 871.14 3168.6 128.29254445457372 22 154 168.66160639999998 183 3.92 315 10.56 1.3 690 1820 0 87.0 156.5 112 867.9 3155.8 1 1 1 1 128 2 22.0 3.9050296782255542 386.99514 696.14643 312 3168.6 3.9050296782255547
208 206 1549480978.917489 0 2 206 876.05 3187.5 129.01329597240576 22 154 164.56474460159998 185 3.888 317 10.56 1.33 720 1830 0 86.8 156.4 112 871.14 3168.6 1 1 1 1 128 2 22.0 3.873266713145867 386.105496 695.7016080000002 313 3187.5 3.873266713145867
209 207 1549480982.007969 0 2 207 879.2 3199.8 129.7090911965934 22 155 161.66147095000002 185 3.865 318 10.34 1.27 680 1790 0 88.3 160.3 112 876.05 3187.5 1 1 1 1 128 2 22.0 3.850893407270487 392.777826 713.0496660000001 314 3199.8 3.850893407270487
210 208 1549480986.927029 0 2 208 884.07 3218.5 129.52146685185204 22 156 162.91953124999998 187 3.875 320 10.28 1.3 710 1770 0 81.0 150.5 112 879.2 3199.8 1 1 1 1 128 2 22.0 3.86010962711341 360.30582000000004 669.4571100000002 316 3218.5 3.86010962711341
211 209 1549480992.2061994 0 2 209 889.27 3238.7 129.0537247666397 24 154 165.0731832064 189 3.892 322 9.92 1.24 660 1700 0 88.6 155.1 112 884.07 3218.5 1 1 1 1 128 2 24.0 3.877772607414301 394.112292 689.918922 318 3238.7 3.8777726074143013
212 210 1549480995.1172194 0 2 210 892.29 3250.5 128.8500376929084 24 154 165.0731832064 189 3.892 323 10.13 1.27 680 1730 0 86.8 156.8 112 889.27 3238.7 1 1 1 1 128 2 24.0 3.877772607414301 386.105496 697.480896 320 3250.5 3.8777726074143013
213 211 1549481000.03634 0 2 211 897.17 3269.4 129.25648590324747 23 154 164.56474460159998 190 3.888 325 10.21 1.3 700 1740 0 82.7 143.8 112 892.29 3250.5 1 1 1 1 128 2 23.0 3.873866893933525 367.867794 639.654036 321 3269.4 3.8738668939335246
214 212 1549481006.2159994 0 3 212 903.36 3293.4 129.78437641933454 23 154 161.2853197984 192 3.862 327 10.06 1.27 680 1730 0 84.4 143.4 112 897.17 3269.4 1 1 1 1 128 3 23.0 3.848225967828831 375.429768 637.8747480000002 324 3293.4 3.8482259678288306
215 213 1549481008.2255394 0 3 213 905.39 3301.2 129.80774217653638 23 154 161.2853197984 192 3.862 328 10.35 1.3 700 1800 0 84.4 151.1 112 903.36 3293.4 1 1 1 1 128 3 23.0 3.848225967828831 375.429768 672.126042 325 3301.2 3.8482259678288306
216 214 1549481013.2956998 0 3 214 910.42 3320.6 129.32347705722123 22 154 164.18410154999995 194 3.885 330 10.5 1.3 690 1820 0 92.2 171.3 112 905.39 3301.2 1 1 1 1 128 3 22.0 3.8708678485716494 410.125884 761.980086 326 3320.6 3.8708678485716503
217 215 1549481016.2950704 0 3 215 913.45 3332.5 129.28216973611998 22 153 164.18410154999995 194 3.885 331 10.58 1.3 700 1820 0 84.8 156.3 112 910.42 3320.6 1 1 1 1 128 3 22.0 3.8708678485716494 377.20905600000003 695.256786 328 3332.5 3.8708678485716503
218 216 1549481024.16019 0 3 216 921.33 3363.0 129.4194029301186 22 152 162.4155268708 196 3.871 334 10.63 1.3 690 1850 0 91.1 161.0 112 913.45 3332.5 1 1 1 1 128 3 22.0 3.8565368299267258 405.232842 716.16342 330 3363.0 3.8565368299267258
219 217 1549481027.3646007 0 3 217 924.53 3375.7 129.0359800454542 22 151 164.8188332 196 3.89 335 10.63 1.3 690 1840 0 89.0 162.8 112 921.33 3363.0 1 1 1 1 128 3 22.0 3.8753681599751975 395.89158 724.1702160000001 332 3375.7 3.8753681599751975
220 218 1549481032.2276304 0 3 218 929.39 3394.5 128.52760918021062 22 150 167.24573160119996 197 3.909 337 10.42 1.3 700 1790 0 88.4 162.2 112 924.53 3375.7 1 1 1 1 128 3 22.0 3.894687646050787 393.22264800000005 721.5012839999998 333 3394.5 3.894687646050787
221 219 1549481035.4340804 0 3 219 932.6 3407.2 128.62061537189027 22 150 166.3488590624 198 3.902 338 10.64 1.3 700 1840 0 87.0 154.9 112 929.39 3394.5 1 1 1 1 128 3 22.0 3.887420307883688 386.99514 689.0292780000002 335 3407.2 3.8874203078836884
222 220 1549481040.4183402 0 3 220 937.59 3426.5 128.71338754215014 22 150 165.20045627959996 199 3.893 340 10.64 1.3 700 1840 0 86.2 156.3 112 932.6 3407.2 1 1 1 1 128 3 22.0 3.8786750446047633 383.436564 695.256786 336 3426.5 3.8786750446047633
223 221 1549481043.5035105 0 3 221 940.66 3438.5 128.22125632405053 22 150 167.11741007359998 200 3.908 341 10.56 1.3 700 1840 0 87.8 156.3 112 937.59 3426.5 1 1 1 1 128 3 22.0 3.89377774316642 390.553716 695.256786 337 3438.5 3.89377774316642
224 222 1549481048.36807 0 3 222 945.53 3457.3 130.04767949196003 23 150 166.60478033919998 201 3.904 343 10.06 1.27 690 1720 0 80.6 145.5 112 940.66 3438.5 1 1 1 1 128 3 23.0 3.8889320992455474 358.526532 647.21601 339 3457.3 3.8889320992455474
225 223 1549481054.5740602 0 3 223 951.74 3481.0 130.76756417530004 23 151 149.67349225639998 203 3.767 345 9.63 1.3 710 1650 0 82.7 148.1 112 945.53 3457.3 1 1 1 1 128 3 23.0 3.7534719615644465 367.867794 658.781382 342 3481.0 3.753471961564447
226 224 1549481059.61258 0 3 224 956.78 3500.6 129.99480862994758 23 152 166.9891542004 204 3.907 347 9.99 1.3 700 1670 0 84.7 152.2 112 951.74 3481.0 1 1 1 1 128 3 23.0 3.8922621827806316 376.764234 677.0190839999998 344 3500.6 3.892262182780632
227 225 1549481061.62301 0 3 225 958.79 3508.5 128.12209659787166 23 152 166.9891542004 204 3.907 348 10.13 1.3 700 1710 0 84.4 151.0 112 956.78 3500.6 1 1 1 1 128 3 23.0 3.8922621827806316 375.429768 671.68122 344 3508.5 3.892262182780632
228 226 1549481066.57704 0 3 226 963.75 3527.6 129.08579658359088 23 152 164.9459755188 206 3.891 350 10.13 1.27 690 1750 0 82.5 148.9 112 958.79 3508.5 1 1 1 1 128 3 23.0 3.876570010854396 366.97815 662.339958 346 3527.6 3.876570010854396
229 227 1549481072.72524 0 3 227 969.87 3551.3 129.59063994581268 23 152 161.41063861159998 208 3.863 352 9.91 1.24 670 1710 0 83.7 143.4 112 963.75 3527.6 1 1 1 1 128 3 23.0 3.848522167487685 372.316014 637.8747480000002 349 3551.3 3.848522167487685
230 228 1549481074.73514 0 3 228 971.9 3559.0 130.5273553285036 23 152 161.41063861159998 208 3.863 353 10.28 1.3 710 1780 0 79.8 141.1 112 969.87 3551.3 1 1 1 1 128 3 23.0 3.848522167487685 354.967956 627.643842 349 3559.0 3.848522167487685
231 229 1549481079.6565702 0 3 229 976.83 3577.7 130.68866655071486 23 152 155.71287063640003 209 3.817 355 9.91 1.33 720 1680 0 83.4 157.4 112 971.9 3559.0 1 1 1 1 128 3 23.0 3.8028597505324 370.981548 700.1498280000002 351 3577.7 3.8028597505324004
232 230 1549481085.8354502 0 3 230 982.99 3601.7 130.67490428144757 22 153 161.1600658668 211 3.861 357 10.35 1.33 720 1770 0 84.4 154.1 112 976.83 3577.7 1 1 1 1 128 3 22.0 3.846745653177412 375.429768 685.470702 354 3601.7 3.846745653177412
233 231 1549481087.84558 0 3 231 985.0 3609.4 129.32329444259872 22 153 161.1600658668 211 3.861 358 10.2 1.3 700 1740 0 86.1 160.5 112 982.99 3601.7 1 1 1 1 128 3 22.0 3.846745653177412 382.991742 713.93931 354 3609.4 3.846745653177412
234 232 1549481093.8756404 0 3 232 991.05 3633.2 128.3464781030196 23 153 169.0491361076 213 3.923 360 10.42 1.3 690 1780 0 89.6 151.6 112 985.0 3609.4 1 1 1 1 128 3 23.0 3.908081913396905 398.560512 674.350152 357 3633.2 3.908081913396905
235 233 1549481095.9155304 0 3 233 993.06 3641.0 128.10153384499833 23 153 169.0491361076 213 3.923 361 10.78 1.33 710 1860 0 88.2 159.2 112 991.05 3633.2 1 1 1 1 128 3 23.0 3.908081913396905 392.333004 708.1566240000001 357 3641.0 3.908081913396905
236 234 1549481101.9453206 0 3 234 999.1 3664.5 128.8630626474042 23 152 163.9306658836 214 3.883 363 10.27 1.27 690 1770 0 79.3 136.9 112 993.06 3641.0 1 1 1 1 128 3 23.0 3.8684719535783367 352.743846 608.961318 360 3664.5 3.8684719535783367
237 235 1549481103.9553704 0 3 235 1001.13 3672.3 129.5959634504511 23 152 163.9306658836 214 3.883 364 10.06 1.27 690 1750 0 87.7 152.5 112 999.1 3664.5 1 1 1 1 128 3 23.0 3.8684719535783367 390.108894 678.35355 361 3672.3 3.8684719535783367
238 236 1549481108.9699204 0 3 236 1006.11 3691.5 129.41877601039016 22 152 161.7869845088 216 3.866 366 10.42 1.3 690 1790 0 88.3 158.0 112 1001.13 3672.3 1 1 1 1 128 3 22.0 3.8517833757029503 392.777826 702.81876 362 3691.5 3.8517833757029503
239 237 1549481112.02515 0 3 237 1009.19 3703.7 129.03403344964568 22 152 165.71020276439995 216 3.897 367 10.63 1.33 710 1830 0 88.8 152.2 112 1006.11 3691.5 1 1 1 1 128 3 22.0 3.8825904643578193 395.001936 677.0190839999998 363 3703.7 3.8825904643578193
240 238 1549481117.0951505 0 3 238 1014.23 3723.2 128.58519092835343 22 152 166.60478033919998 218 3.904 369 10.49 1.3 690 1810 0 89.7 158.0 112 1009.19 3703.7 1 1 1 1 128 3 22.0 3.889234598630989 399.005334 702.81876 365 3723.2 3.8892345986309893
241 239 1549481120.0949008 0 3 239 1017.25 3735.2 128.37345392458022 22 151 166.60478033919998 218 3.904 370 10.56 1.33 710 1800 0 89.0 156.7 112 1014.23 3723.2 1 1 1 1 128 3 22.0 3.889234598630989 395.89158 697.036074 366 3735.2 3.8892345986309893
242 240 1549481126.124721 0 3 240 1023.3 3759.0 127.98623279765863 22 151 169.17844446719997 220 3.924 372 10.71 1.33 710 1830 0 84.8 153.9 112 1017.25 3735.2 1 1 1 1 128 3 22.0 3.908998514580565 377.20905600000003 684.581058 369 3759.0 3.9089985145805644
243 241 1549481128.164641 0 3 241 1025.3 3766.7 128.16176822290126 22 151 169.17844446719997 220 3.924 373 10.64 1.33 710 1830 0 87.7 154.5 112 1023.3 3759.0 1 1 1 1 128 3 22.0 3.908998514580565 390.108894 687.24999 369 3766.7 3.9089985145805644
244 242 1549481131.1643608 0 3 242 1028.32 3778.5 128.59396363321468 22 152 164.9459755188 221 3.891 374 10.85 1.3 700 1910 0 91.5 164.8 112 1025.3 3766.7 1 1 1 1 128 3 22.0 3.8768705900597036 407.01212999999996 733.0666560000002 371 3778.5 3.876870590059704
245 243 1549481136.1489105 0 3 243 1033.3 3797.8 128.8086578541281 22 152 166.60478033919998 222 3.904 376 10.7 1.3 690 1860 0 91.5 164.9 112 1028.32 3778.5 1 1 1 1 128 3 22.0 3.88983973860277 407.01212999999996 733.511478 372 3797.8 3.88983973860277
246 244 1549481139.2342305 0 3 244 1036.4 3810.1 128.12883503258112 22 153 166.9891542004 223 3.907 377 10.49 1.27 670 1810 0 92.4 169.5 112 1033.3 3797.8 1 1 1 1 128 3 22.0 3.892868265337901 411.01552799999996 753.97329 373 3810.1 3.892868265337901
247 245 1549481144.1267507 0 3 245 1041.28 3829.2 127.70458638571242 23 154 171.25635519999997 224 3.94 379 10.42 1.27 670 1800 0 92.5 164.8 112 1036.4 3810.1 1 1 1 1 128 3 23.0 3.9255711706053233 411.46035 733.0666560000002 375 3829.2 3.925571170605323
248 246 1549481150.3334107 0 3 246 1047.47 3853.7 127.5273989544621 23 154 170.2152859904 226 3.932 381 10.2 1.27 670 1740 0 90.8 169.4 112 1041.28 3829.2 1 1 1 1 128 3 23.0 3.9172673143215286 403.898376 753.5284680000002 378 3853.7 3.917267314321529
249 247 1549481152.3434608 0 3 247 1049.49 3861.7 127.37321336796244 23 154 170.2152859904 226 3.932 382 10.13 1.27 670 1710 0 89.3 159.9 112 1047.47 3853.7 1 1 1 1 128 3 23.0 3.9172673143215286 397.226046 711.270378 378 3861.7 3.917267314321529
250 248 1549481157.2080812 0 3 248 1054.35 3880.8 127.65987825483285 23 153 172.4326221772 227 3.949 384 10.27 1.3 680 1720 0 92.5 163.2 112 1049.49 3861.7 1 1 1 1 128 3 23.0 3.9345294302801386 411.46035 725.9495039999998 380 3880.8 3.9345294302801386
251 249 1549481163.4129214 0 3 249 1060.57 3905.4 128.50642111969682 23 153 165.71020276439995 229 3.897 386 10.34 1.33 710 1760 0 88.8 163.6 112 1054.35 3880.8 1 1 1 1 128 3 23.0 3.8822889975929815 395.001936 727.728792 383 3905.4 3.882288997592981
252 250 1549481165.4535215 0 3 250 1062.59 3913.3 128.30881633122797 23 153 165.71020276439995 229 3.897 387 10.42 1.33 710 1750 0 88.2 158.6 112 1060.57 3905.4 1 1 1 1 128 3 23.0 3.8822889975929815 392.333004 705.487692 384 3913.3 3.882288997592981
253 251 1549481170.4998214 0 3 251 1067.64 3933.2 126.95913789259652 23 153 175.33058931079998 231 3.971 389 10.42 1.27 670 1770 0 90.9 165.9 112 1062.59 3913.3 1 1 1 1 128 3 23.0 3.9563222028802025 404.343198 737.959698 385 3933.2 3.9563222028802025
254 252 1549481173.493992 0 3 252 1070.65 3945.2 126.16537536431962 23 153 175.33058931079998 231 3.971 390 10.27 1.27 670 1740 0 85.6 148.9 112 1067.64 3933.2 1 1 1 1 128 3 23.0 3.9563222028802025 380.767632 662.339958 387 3945.2 3.9563222028802025
255 253 1549481176.5235114 0 3 253 1073.68 3957.1 127.05051729432739 23 153 173.8775808 232 3.96 391 10.2 1.3 690 1730 0 88.2 160.7 112 1070.65 3945.2 1 1 1 1 128 3 23.0 3.9447731755424074 392.333004 714.828954 388 3957.1 3.9447731755424065
256 254 1549481178.534272 0 3 254 1075.7 3965.1 127.38376485816288 23 153 168.66160639999998 233 3.92 392 10.2 1.3 680 1720 0 89.6 154.6 112 1073.68 3957.1 1 1 1 1 128 3 23.0 3.905639743790033 398.560512 687.694812 389 3965.1 3.9056397437900325
257 255 1549481183.457712 0 3 255 1080.6 3984.2 127.99441707666843 23 154 172.1707655444 234 3.947 394 10.05 1.27 680 1700 0 85.5 148.0 112 1075.7 3965.1 1 1 1 1 128 3 23.0 3.931744908390344 380.32281 658.33656 390 3984.2 3.9317449083903435
258 256 1549481188.702922 0 3 256 1085.72 4004.3 127.77497106090735 23 155 166.4767869156 235 3.903 396 9.92 1.27 670 1670 0 88.7 154.8 112 1080.6 3984.2 1 1 1 1 128 3 23.0 3.888327241620655 394.557114 688.5844559999999 392 4004.3 3.888327241620655
259 257 1549481193.6522524 0 3 257 1090.79 4024.4 127.46277291991824 24 155 172.6947441828 236 3.951 398 9.99 1.24 640 1680 0 91.9 156.2 112 1085.72 4004.3 1 1 1 1 128 3 24.0 3.9360780917893416 408.791418 694.811964 394 4024.4 3.936078091789341
260 258 1549481199.7129226 0 3 258 1096.85 4048.6 126.6293223595496 23 155 174.0093395068 238 3.961 400 10.27 1.3 690 1720 0 87.1 158.8 112 1090.79 4024.4 1 1 1 1 128 3 23.0 3.9463299131807417 387.43996200000004 706.377336 397 4048.6 3.9463299131807417
261 259 1549481201.7227526 0 3 259 1098.88 4056.6 126.68084862742255 23 155 174.0093395068 238 3.961 401 10.13 1.27 670 1710 0 86.6 153.7 112 1096.85 4048.6 1 1 1 1 128 3 23.0 3.9463299131807417 385.215852 683.691414 397 4056.6 3.9463299131807417
262 260 1549481204.7528427 0 3 260 1101.89 4068.4 127.04226291382075 23 155 172.82590474239998 239 3.952 402 10.06 1.3 690 1680 0 85.8 151.9 111 1098.88 4056.6 1 1 1 1 128 3 23.0 3.93762797290912 381.657276 675.684618 399 4068.4 3.9376279729091195
263 261 1549481206.7627225 0 3 261 1103.9 4076.2 127.73027840190568 23 155 169.9556796 240 3.93 403 10.19 1.3 690 1720 0 84.5 153.9 112 1101.89 4068.4 1 1 1 1 128 3 23.0 3.9148136548700285 375.87459 684.581058 399 4076.2 3.914813654870028
264 262 1549481211.6860025 0 3 262 1108.84 4095.5 128.21517322459192 23 155 167.24573160119996 241 3.909 405 10.13 1.27 680 1720 0 85.1 156.3 112 1103.9 4076.2 1 1 1 1 128 3 23.0 3.894991041520605 378.543522 695.256786 401 4095.5 3.8949910415206044
265 263 1549481216.8143024 0 3 263 1113.97 4115.6 128.38335096836352 24 155 167.75967459159995 242 3.913 407 10.13 1.3 700 1720 0 86.1 159.2 112 1108.84 4095.5 1 1 1 1 128 3 24.0 3.898939488459139 382.991742 708.1566240000001 403 4115.6 3.898939488459139
266 264 1549481222.8726325 0 3 264 1120.04 4139.4 128.43209159190067 23 155 166.9891542004 244 3.907 409 9.99 1.27 670 1690 0 87.4 154.5 112 1113.97 4115.6 1 1 1 1 128 3 23.0 3.892565200467108 388.77442800000006 687.24999 406 4139.4 3.892565200467108
267 265 1549481224.9116225 0 3 265 1122.06 4147.3 128.24564539460332 23 155 166.9891542004 244 3.907 410 10.05 1.3 690 1690 0 86.3 151.7 112 1120.04 4139.4 1 1 1 1 128 3 23.0 3.892565200467108 383.88138599999996 674.7949739999998 406 4147.3 3.892565200467108
268 266 1549481229.8050525 0 3 266 1126.96 4166.4 128.13866975843163 23 155 169.17844446719997 245 3.924 412 10.56 1.27 680 1840 0 84.8 154.7 112 1122.06 4147.3 1 1 1 1 128 3 23.0 3.909304143862392 377.20905600000003 688.139634 408 4166.4 3.9093041438623923
269 267 1549481232.951363 0 3 267 1130.12 4178.6 128.81191402210283 22 155 165.45519865 246 3.895 413 10.27 1.27 690 1790 0 77.2 136.7 112 1126.96 4166.4 1 1 1 1 128 3 22.0 3.8807823657249303 343.402584 608.0716739999998 410 4178.6 3.88078236572493
270 268 1549481235.981153 0 3 268 1133.14 4190.1 130.95827269263074 22 155 159.04065963519997 246 3.844 414 10.06 1.3 710 1750 0 82.8 148.2 112 1130.12 4178.6 1 1 1 1 128 3 22.0 3.829950210647261 368.312616 659.2262039999998 411 4190.1 3.829950210647261
271 269 1549481237.9910626 0 3 269 1135.16 4197.8 131.5697928730458 23 155 151.58877912359998 247 3.783 415 10.13 1.33 720 1730 0 83.3 146.4 112 1133.14 4190.1 1 1 1 1 128 3 23.0 3.769886149438287 370.536726 651.219408 411 4197.8 3.769886149438287
272 270 1549481242.9432135 0 3 270 1140.1 4216.9 130.45699271843944 23 155 161.9125630164 248 3.867 417 10.06 1.33 710 1690 0 85.0 149.7 112 1135.16 4197.8 1 1 1 1 128 3 23.0 3.85297064036372 378.0987 665.8985339999998 413 4216.9 3.8529706403637203
273 271 1549481249.0911837 0 3 271 1146.23 4240.9 129.08847490452655 23 155 165.0731832064 250 3.892 419 10.21 1.27 680 1760 0 86.3 147.4 112 1140.1 4216.9 1 1 1 1 128 3 23.0 3.877171215880893 383.88138599999996 655.667628 416 4240.9 3.877171215880893
274 272 1549481251.1011634 0 3 272 1148.25 4248.8 128.4308452280449 23 155 165.0731832064 250 3.892 420 9.99 1.3 690 1680 0 89.6 155.5 112 1146.23 4240.9 1 1 1 1 128 3 23.0 3.877171215880893 398.560512 691.69821 416 4248.8 3.877171215880893
275 273 1549481255.9055336 0 3 273 1153.06 4267.7 127.34847885992437 23 155 172.30166069759997 251 3.948 422 10.35 1.3 690 1760 0 90.3 167.3 112 1148.25 4248.8 1 1 1 1 128 3 23.0 3.9326726443290867 401.674266 744.1872060000002 418 4267.7 3.932672644329086
276 274 1549481261.125164 0 3 274 1158.27 4288.1 126.86169781681578 23 155 172.82590474239998 253 3.952 424 10.13 1.27 680 1720 0 84.0 154.0 112 1153.06 4267.7 1 1 1 1 128 3 23.0 3.9370078740157477 373.65047999999996 685.02588 420 4288.1 3.937007874015748
277 275 1549481270.240084 0 3 275 1166.78 4316.6 129.61604388053607 23 155 162.6673989276 254 3.873 425 10.27 1.3 700 1760 0 83.3 151.0 112 1158.27 4288.1 1 1 1 0 128 3 23.0 3.8586201574317016 370.536726 671.68122 424 4316.6 3.858620157431702

98
rowers/tests/testdata/onwater.csv vendored Normal file
View File

@@ -0,0 +1,98 @@
,index, lapIdx,TimeStamp (sec), Horizontal (meters),GPS Split,GPS Speed, Cadence (stokes/min), HRCur (bpm),Stroke Count,cum_dist, Stroke500mPace (sec/500m), ElapsedTime (sec), Power (watts), DriveLength (meters), StrokeDistance (meters), DriveTime (ms), DragFactor, StrokeRecoveryTime (ms), AverageDriveForce (lbs), AverageBoatSpeed (m/s), PeakDriveForce (lbs), AverageDriveForce (N), PeakDriveForce (N), 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,1469705701.0,3.2,0.0,0.74,35.5,112,1,3.2,695.931477516,0.0,0,0,0,0,0,0,0,0.74,0,0.0,0.0,4,0,0.74,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.3,169.5,203.4,237.3,271.2
1,1,0.0,1469705702.6,8.6,0.0,2.07,38.5,113,2,8.6,228.8,1.59999990463,0,0,0,0,0,0,0,2.07,0,0.0,0.0,4,1,2.07,113.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.3,169.5,203.4,237.3,271.2
2,2,0.0,1469705704.5,15.1,0.0,3.36,38.5,115,3,15.1,153.336955279,3.5,0,0,0,0,0,0,0,3.36,0,0.0,0.0,4,3,3.35999999999,115.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.3,169.5,203.4,237.3,271.2
3,3,0.0,1469705705.6,21.4,0.0,4.09,39.0,115,4,21.4,124.977058407,4.59999990463,0,0,0,0,0,0,0,4.09,0,0.0,0.0,4,3,4.09,115.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.3,169.5,203.4,237.3,271.2
4,4,0.0,1469705707.5,28.8,0.0,4.43,38.5,118,5,28.8,112.083019815,6.5,0,0,0,0,0,0,0,4.43,0,0.0,0.0,4,5,4.42999999999,118.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.3,169.5,203.4,237.3,271.2
5,5,0.0,1469705708.8,36.2,0.0,4.64,37.5,125,6,36.2,106.442632632,7.79999995232,0,0,0,0,0,0,0,4.64,0,0.0,0.0,4,5,4.63999999999,125.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.3,169.5,203.4,237.3,271.2
6,6,0.0,1469705710.5,43.1,0.0,4.66,36.0,130,7,43.1,104.628021775,9.5,0,0,0,0,0,0,0,4.66,0,0.0,0.0,4,6,4.66,130.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.3,169.5,203.4,237.3,271.2
7,7,0.0,1469705712.2,52.0,0.0,4.76,34.0,135,8,52.0,106.01911804,11.2000000477,0,0,0,0,0,0,0,4.76,0,0.0,0.0,4,7,4.75999999999,135.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.3,169.5,203.4,237.3,271.2
8,8,0.0,1469705714.0,60.1,0.0,4.71,34.5,142,9,60.1,107.565165936,13.0,0,0,0,0,0,0,0,4.71,0,0.0,0.0,4,8,4.70999999998,142.0,0.0,0.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.3,169.5,203.4,237.3,271.2
9,9,0.0,1469705715.8,68.1,0.0,4.53,33.5,148,10,68.1,108.679681206,14.7999999523,0,0,0,0,0,0,0,4.53,0,0.0,0.0,4,9,4.53000000001,0.0,0.0,148.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.3,169.5,203.4,237.3,271.2
10,10,0.0,1469705717.6,76.3,0.0,4.44,32.5,154,11,76.3,109.466700689,16.5999999046,0,0,0,0,0,0,0,4.44,0,0.0,0.0,4,10,4.43999999998,0.0,0.0,154.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.3,169.5,203.4,237.3,271.2
11,11,0.0,1469705719.5,83.8,0.0,4.44,33.0,156,12,83.8,109.893487851,18.5,0,0,0,0,0,0,0,4.44,0,0.0,0.0,4,11,4.43999999998,0.0,0.0,156.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.3,169.5,203.4,237.3,271.2
12,12,0.0,1469705721.2,92.5,0.0,4.62,33.5,159,13,92.5,110.627456239,20.2000000477,0,0,0,0,0,0,0,4.62,0,0.0,0.0,4,12,4.62,0.0,0.0,159.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.3,169.5,203.4,237.3,271.2
13,13,0.0,1469705723.0,100.8,0.0,4.64,33.5,163,14,100.8,110.362782274,22.0,0,0,0,0,0,0,0,4.64,0,0.0,0.0,4,13,4.63999999999,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.3,169.5,203.4,237.3,271.2
14,14,0.0,1469705724.8,109.1,0.0,4.59,32.0,166,15,109.1,109.351182981,23.7999999523,0,0,0,0,0,0,0,4.59,0,0.0,0.0,4,14,4.58999999998,0.0,0.0,0.0,166.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.3,169.5,203.4,237.3,271.2
15,15,0.0,1469705726.8,118.1,0.0,4.52,32.5,168,16,118.1,108.636197885,25.7999999523,0,0,0,0,0,0,0,4.52,0,0.0,0.0,4,15,4.51999999998,0.0,0.0,0.0,0.0,168.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.3,169.5,203.4,237.3,271.2
16,16,0.0,1469705728.5,125.1,0.0,4.5,33.0,169,17,125.1,108.494979894,27.5,0,0,0,0,0,0,0,4.5,0,0.0,0.0,4,16,4.5,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.3,169.5,203.4,237.3,271.2
17,17,0.0,1469705730.4,134.7,0.0,4.66,33.5,171,18,134.7,109.232014911,29.4000000954,0,0,0,0,0,0,0,4.66,0,0.0,0.0,4,17,4.66,0.0,0.0,0.0,0.0,171.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.3,169.5,203.4,237.3,271.2
18,18,0.0,1469705732.2,143.0,0.0,4.66,32.5,172,19,143.0,109.4493854,31.2000000477,0,0,0,0,0,0,0,4.66,0,0.0,0.0,4,18,4.66,0.0,0.0,0.0,0.0,172.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.3,169.5,203.4,237.3,271.2
19,19,0.0,1469705734.0,151.2,0.0,4.58,33.0,172,20,151.2,109.222559423,33.0,0,0,0,0,0,0,0,4.58,0,0.0,0.0,4,19,4.57999999999,0.0,0.0,0.0,0.0,172.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.3,169.5,203.4,237.3,271.2
20,20,0.0,1469705735.8,159.4,0.0,4.52,33.0,173,21,159.4,109.097567302,34.7999999523,0,0,0,0,0,0,0,4.52,0,0.0,0.0,4,20,4.51999999998,0.0,0.0,0.0,0.0,173.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.3,169.5,203.4,237.3,271.2
21,21,0.0,1469705737.5,166.1,0.0,4.47,33.5,175,22,166.1,109.622785185,36.5,0,0,0,0,0,0,0,4.47,0,0.0,0.0,4,21,4.47000000001,0.0,0.0,0.0,0.0,175.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.3,169.5,203.4,237.3,271.2
22,22,0.0,1469705739.4,175.7,0.0,4.58,33.5,175,23,175.7,110.908884086,38.4000000954,0,0,0,0,0,0,0,4.58,0,0.0,0.0,4,22,4.57999999999,0.0,0.0,0.0,0.0,175.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.3,169.5,203.4,237.3,271.2
23,23,0.0,1469705741.2,183.8,0.0,4.57,32.5,175,24,183.8,111.571150665,40.2000000477,0,0,0,0,0,0,0,4.57,0,0.0,0.0,4,23,4.57,0.0,0.0,0.0,0.0,175.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.3,169.5,203.4,237.3,271.2
24,24,0.0,1469705743.0,191.8,0.0,4.47,33.0,175,25,191.8,111.781044645,42.0,0,0,0,0,0,0,0,4.47,0,0.0,0.0,4,24,4.47000000001,0.0,0.0,0.0,0.0,175.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.3,169.5,203.4,237.3,271.2
25,25,0.0,1469705744.8,199.8,0.0,4.39,32.0,176,26,199.8,111.973606594,43.7999999523,0,0,0,0,0,0,0,4.39,0,0.0,0.0,4,25,4.39,0.0,0.0,0.0,0.0,176.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.3,169.5,203.4,237.3,271.2
26,26,0.0,1469705746.7,207.8,0.0,4.39,32.5,176,27,207.8,112.082434148,45.7000000477,0,0,0,0,0,0,0,4.39,0,0.0,0.0,4,26,4.39,0.0,0.0,0.0,0.0,176.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.3,169.5,203.4,237.3,271.2
27,27,0.0,1469705748.6,216.7,0.0,4.49,33.0,174,28,216.7,112.462053887,47.5999999046,0,0,0,0,0,0,0,4.49,0,0.0,0.0,4,27,4.49000000001,0.0,0.0,0.0,0.0,174.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.3,169.5,203.4,237.3,271.2
28,28,0.0,1469705750.4,224.8,0.0,4.49,32.0,174,29,224.8,110.702820986,49.4000000954,0,0,0,0,0,0,0,4.49,0,0.0,0.0,4,28,4.49000000001,0.0,0.0,0.0,0.0,174.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.3,169.5,203.4,237.3,271.2
29,29,0.0,1469705752.5,232.9,0.0,4.47,33.0,174,30,232.9,111.287510895,51.5,0,0,0,0,0,0,0,4.47,0,0.0,0.0,4,30,4.47000000001,0.0,0.0,0.0,0.0,174.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.3,169.5,203.4,237.3,271.2
30,30,0.0,1469705754.0,240.9,0.0,4.48,32.0,175,31,240.9,113.880099386,53.0,0,0,0,0,0,0,0,4.48,0,0.0,0.0,4,30,4.48000000001,0.0,0.0,0.0,0.0,175.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.3,169.5,203.4,237.3,271.2
31,31,0.0,1469705755.8,248.9,0.0,4.43,32.0,175,32,248.9,117.397229535,54.7999999523,0,0,0,0,0,0,0,4.43,0,0.0,0.0,4,31,4.42999999999,0.0,0.0,0.0,0.0,175.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.3,169.5,203.4,237.3,271.2
32,32,0.0,1469705756.2,250.4,0.0,4.43,32.0,175,32,250.4,120.181532945,55.2000000477,0,0,0,0,0,0,0,4.43,0,0.0,0.0,4,32,4.42999999999,0.0,0.0,0.0,0.0,175.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.3,169.5,203.4,237.3,271.2
33,33,1.0,1469705757.6,5.7,0.0,3.62,30.5,160,1,256.1,121.464367621,56.5999999046,0,0,0,0,0,0,0,3.62,0,0.0,0.0,4,32,3.62000000001,0.0,0.0,160.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.3,169.5,203.4,237.3,271.2
34,34,1.0,1469705759.4,13.4,0.0,3.85,33.5,161,2,263.8,121.497391629,58.4000000954,0,0,0,0,0,0,0,3.85,0,0.0,0.0,4,33,3.85,0.0,0.0,0.0,161.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.3,169.5,203.4,237.3,271.2
35,35,1.0,1469705761.2,20.7,0.0,4.2,33.5,162,3,271.1,120.37982782,60.2000000477,0,0,0,0,0,0,0,4.2,0,0.0,0.0,4,34,4.19999999999,0.0,0.0,0.0,162.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.3,169.5,203.4,237.3,271.2
36,36,1.0,1469705763.0,29.2,0.0,4.47,33.5,162,4,279.6,118.387283716,62.0,0,0,0,0,0,0,0,4.47,0,0.0,0.0,4,35,4.47000000001,0.0,0.0,0.0,162.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.3,169.5,203.4,237.3,271.2
37,37,1.0,1469705764.8,37.3,0.0,4.47,33.0,164,5,287.7,115.233986774,63.7999999523,0,0,0,0,0,0,0,4.47,0,0.0,0.0,4,36,4.47000000001,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.3,169.5,203.4,237.3,271.2
38,38,1.0,1469705766.6,45.3,0.0,4.44,33.5,165,6,295.7,111.287510895,65.5999999046,0,0,0,0,0,0,0,4.44,0,0.0,0.0,4,37,4.43999999998,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.3,169.5,203.4,237.3,271.2
39,39,1.0,1469705768.5,53.5,0.0,4.42,33.5,165,7,303.9,111.718168135,67.5,0,0,0,0,0,0,0,4.42,0,0.0,0.0,4,38,4.41999999999,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.3,169.5,203.4,237.3,271.2
40,40,1.0,1469705770.2,60.7,0.0,4.38,32.0,167,8,311.1,113.471050335,69.2000000477,0,0,0,0,0,0,0,4.38,0,0.0,0.0,4,39,4.37999999998,0.0,0.0,0.0,167.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.3,169.5,203.4,237.3,271.2
41,41,1.0,1469705772.2,70.1,0.0,4.44,32.0,171,9,320.5,115.140584238,71.2000000477,0,0,0,0,0,0,0,4.44,0,0.0,0.0,4,40,4.43999999998,0.0,0.0,0.0,0.0,171.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.3,169.5,203.4,237.3,271.2
42,42,1.0,1469705774.1,77.8,0.0,4.3,32.0,172,10,328.2,116.273396972,73.0999999046,0,0,0,0,0,0,0,4.3,0,0.0,0.0,4,41,4.30000000002,0.0,0.0,0.0,0.0,172.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.3,169.5,203.4,237.3,271.2
43,43,1.0,1469705776.1,85.2,0.0,4.12,31.0,174,11,335.6,117.556791714,75.0999999046,0,0,0,0,0,0,0,4.12,0,0.0,0.0,4,42,4.12,0.0,0.0,0.0,0.0,174.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.3,169.5,203.4,237.3,271.2
44,44,1.0,1469705777.9,93.4,0.0,4.2,31.5,174,12,343.8,119.395508057,76.9000000954,0,0,0,0,0,0,0,4.2,0,0.0,0.0,4,43,4.19999999999,0.0,0.0,0.0,0.0,174.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.3,169.5,203.4,237.3,271.2
45,45,1.0,1469705779.9,101.5,0.0,4.21,32.0,176,13,351.9,121.165219651,78.9000000954,0,0,0,0,0,0,0,4.21,0,0.0,0.0,4,44,4.20999999999,0.0,0.0,0.0,0.0,176.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.3,169.5,203.4,237.3,271.2
46,46,1.0,1469705781.6,108.9,0.0,4.11,30.5,176,14,359.3,122.757318225,80.5999999046,0,0,0,0,0,0,0,4.11,0,0.0,0.0,4,45,4.10999999998,0.0,0.0,0.0,0.0,176.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.3,169.5,203.4,237.3,271.2
47,47,1.0,1469705783.6,116.9,0.0,4.02,32.0,175,15,367.3,123.722400388,82.5999999046,0,0,0,0,0,0,0,4.02,0,0.0,0.0,4,46,4.01999999999,0.0,0.0,0.0,0.0,175.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.3,169.5,203.4,237.3,271.2
48,48,1.0,1469705785.5,124.1,0.0,3.96,30.5,177,16,374.5,123.80237793,84.5,0,0,0,0,0,0,0,3.96,0,0.0,0.0,4,47,3.95999999999,0.0,0.0,0.0,0.0,177.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.3,169.5,203.4,237.3,271.2
49,49,1.0,1469705787.5,132.1,0.0,4.04,32.0,177,17,382.5,123.700282002,86.5,0,0,0,0,0,0,0,4.04,0,0.0,0.0,4,48,4.03999999999,0.0,0.0,0.0,0.0,177.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.3,169.5,203.4,237.3,271.2
50,50,1.0,1469705789.2,139.7,0.0,4.06,32.0,178,18,390.1,122.672370408,88.2000000477,0,0,0,0,0,0,0,4.06,0,0.0,0.0,4,49,4.05999999999,0.0,0.0,0.0,0.0,178.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.3,169.5,203.4,237.3,271.2
51,51,1.0,1469705791.1,146.7,0.0,4.09,33.0,178,19,397.1,121.011418513,90.0999999046,0,0,0,0,0,0,0,4.09,0,0.0,0.0,4,50,4.09,0.0,0.0,0.0,0.0,178.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.3,169.5,203.4,237.3,271.2
52,52,1.0,1469705793.1,155.4,0.0,4.27,31.0,177,20,405.8,119.62256154,92.0999999046,0,0,0,0,0,0,0,4.27,0,0.0,0.0,4,51,4.27000000001,0.0,0.0,0.0,0.0,177.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.3,169.5,203.4,237.3,271.2
53,53,1.0,1469705794.9,163.1,0.0,4.27,32.0,177,21,413.5,118.342215896,93.9000000954,0,0,0,0,0,0,0,4.27,0,0.0,0.0,4,52,4.27000000001,0.0,0.0,0.0,0.0,177.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.3,169.5,203.4,237.3,271.2
54,54,1.0,1469705797.1,171.6,0.0,4.24,31.5,178,22,422.0,117.740696015,96.0999999046,0,0,0,0,0,0,0,4.24,0,0.0,0.0,4,53,4.24,0.0,0.0,0.0,0.0,178.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.3,169.5,203.4,237.3,271.2
55,55,1.0,1469705798.6,179.3,0.0,4.22,32.0,179,23,429.7,117.599973684,97.5999999046,0,0,0,0,0,0,0,4.22,0,0.0,0.0,4,54,4.22000000001,0.0,0.0,0.0,0.0,179.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.3,169.5,203.4,237.3,271.2
56,56,1.0,1469705800.7,187.9,0.0,4.21,30.5,179,24,438.3,117.565167825,99.7000000477,0,0,0,0,0,0,0,4.21,0,0.0,0.0,4,55,4.20999999999,0.0,0.0,0.0,0.0,179.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.3,169.5,203.4,237.3,271.2
57,57,1.0,1469705802.5,195.8,0.0,4.28,30.5,180,25,446.2,117.967332124,101.5,0,0,0,0,0,0,0,4.28,0,0.0,0.0,4,56,4.27999999998,0.0,0.0,0.0,0.0,180.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.3,169.5,203.4,237.3,271.2
58,58,1.0,1469705804.5,204.3,0.0,4.22,30.5,180,26,454.7,118.489957355,103.5,0,0,0,0,0,0,0,4.22,0,0.0,0.0,4,57,4.22000000001,0.0,0.0,0.0,0.0,180.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.3,169.5,203.4,237.3,271.2
59,59,1.0,1469705806.4,212.2,0.0,4.2,30.5,180,27,462.6,118.763530461,105.400000095,0,0,0,0,0,0,0,4.2,0,0.0,0.0,4,58,4.19999999999,0.0,0.0,0.0,0.0,180.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.3,169.5,203.4,237.3,271.2
60,60,1.0,1469705808.5,221.4,0.0,4.26,29.5,180,28,471.8,117.583212735,107.5,0,0,0,0,0,0,0,4.26,0,0.0,0.0,4,59,4.25999999999,0.0,0.0,0.0,0.0,180.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.3,169.5,203.4,237.3,271.2
61,61,1.0,1469705810.4,229.8,0.0,4.17,30.5,180,29,480.2,119.140852815,109.400000095,0,0,0,0,0,0,0,4.17,0,0.0,0.0,4,60,4.16999999999,0.0,0.0,0.0,0.0,180.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.3,169.5,203.4,237.3,271.2
62,62,1.0,1469705812.3,236.6,0.0,4.11,33.5,181,30,487.0,121.480877381,111.299999952,0,0,0,0,0,0,0,4.11,0,0.0,0.0,4,61,4.10999999998,0.0,0.0,0.0,0.0,0.0,181.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.3,169.5,203.4,237.3,271.2
63,63,1.0,1469705814.0,244.8,0.0,4.24,33.5,181,31,495.2,122.38470448,113.0,0,0,0,0,0,0,0,4.24,0,0.0,0.0,4,62,4.24,0.0,0.0,0.0,0.0,0.0,181.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.3,169.5,203.4,237.3,271.2
64,64,1.0,1469705815.4,250.9,0.0,4.24,33.5,181,31,501.3,122.183234979,114.400000095,0,0,0,0,0,0,0,4.24,0,0.0,0.0,4,63,4.24,0.0,0.0,0.0,0.0,0.0,181.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.3,169.5,203.4,237.3,271.2
65,65,2.0,1469705816.3,0.9,0.0,3.66,28.0,158,1,502.2,121.2563172,115.299999952,0,0,0,0,0,0,0,3.66,0,0.0,0.0,4,63,3.66,0.0,0.0,158.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.3,169.5,203.4,237.3,271.2
66,66,2.0,1469705817.8,9.8,0.0,4.12,33.5,160,2,511.1,119.786227655,116.799999952,0,0,0,0,0,0,0,4.12,0,0.0,0.0,4,64,4.12,0.0,0.0,160.0,0.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.3,169.5,203.4,237.3,271.2
67,67,2.0,1469705819.6,18.0,0.0,4.44,32.5,162,3,519.3,117.678039467,118.599999905,0,0,0,0,0,0,0,4.44,0,0.0,0.0,4,65,4.43999999998,0.0,0.0,0.0,162.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.3,169.5,203.4,237.3,271.2
68,68,2.0,1469705821.5,26.1,0.0,4.47,33.0,161,4,527.4,115.319480659,120.5,0,0,0,0,0,0,0,4.47,0,0.0,0.0,4,66,4.47000000001,0.0,0.0,0.0,161.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.3,169.5,203.4,237.3,271.2
69,69,2.0,1469705823.4,35.0,0.0,4.43,32.0,164,5,536.3,112.531083761,122.400000095,0,0,0,0,0,0,0,4.43,0,0.0,0.0,4,67,4.42999999999,0.0,0.0,0.0,164.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.3,169.5,203.4,237.3,271.2
70,70,2.0,1469705825.1,41.9,0.0,4.43,33.0,165,6,543.2,109.693981917,124.099999905,0,0,0,0,0,0,0,4.43,0,0.0,0.0,4,68,4.42999999999,0.0,0.0,0.0,165.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.3,169.5,203.4,237.3,271.2
71,71,2.0,1469705827.1,51.5,0.0,4.6,33.5,166,7,552.8,110.111805834,126.099999905,0,0,0,0,0,0,0,4.6,0,0.0,0.0,4,69,4.6,0.0,0.0,0.0,166.0,0.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.3,169.5,203.4,237.3,271.2
72,72,2.0,1469705828.9,59.7,0.0,4.59,33.5,168,8,561.0,110.235734879,127.900000095,0,0,0,0,0,0,0,4.59,0,0.0,0.0,4,70,4.58999999998,0.0,0.0,0.0,0.0,168.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.3,169.5,203.4,237.3,271.2
73,73,2.0,1469705830.7,68.1,0.0,4.53,32.0,171,9,569.4,109.674351541,129.700000048,0,0,0,0,0,0,0,4.53,0,0.0,0.0,4,71,4.53000000001,0.0,0.0,0.0,0.0,171.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.3,169.5,203.4,237.3,271.2
74,74,2.0,1469705832.4,76.4,0.0,4.55,33.0,172,10,577.7,109.081478016,131.400000095,0,0,0,0,0,0,0,4.55,0,0.0,0.0,4,72,4.55,0.0,0.0,0.0,0.0,172.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.3,169.5,203.4,237.3,271.2
75,75,2.0,1469705834.3,84.0,0.0,4.54,32.5,173,11,585.3,108.95736186,133.299999952,0,0,0,0,0,0,0,4.54,0,0.0,0.0,4,73,4.54000000001,0.0,0.0,0.0,0.0,173.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.3,169.5,203.4,237.3,271.2
76,76,2.0,1469705836.0,92.9,0.0,4.63,33.0,174,12,594.2,109.581343074,135.0,0,0,0,0,0,0,0,4.63,0,0.0,0.0,4,74,4.63000000001,0.0,0.0,0.0,0.0,174.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.3,169.5,203.4,237.3,271.2
77,77,2.0,1469705837.9,101.3,0.0,4.61,33.5,176,13,602.6,109.437100452,136.900000095,0,0,0,0,0,0,0,4.61,0,0.0,0.0,4,75,4.61000000001,0.0,0.0,0.0,0.0,176.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.3,169.5,203.4,237.3,271.2
78,78,2.0,1469705839.7,109.6,0.0,4.58,33.5,177,14,610.9,108.898173861,138.700000048,0,0,0,0,0,0,0,4.58,0,0.0,0.0,4,76,4.57999999999,0.0,0.0,0.0,0.0,177.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.3,169.5,203.4,237.3,271.2
79,79,2.0,1469705841.5,118.0,0.0,4.54,33.5,178,15,619.3,108.514739286,140.5,0,0,0,0,0,0,0,4.54,0,0.0,0.0,4,77,4.54000000001,0.0,0.0,0.0,0.0,178.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.3,169.5,203.4,237.3,271.2
80,80,2.0,1469705843.1,125.0,0.0,4.54,34.0,178,16,626.3,108.408891045,142.099999905,0,0,0,0,0,0,0,4.54,0,0.0,0.0,4,78,4.54000000001,0.0,0.0,0.0,0.0,178.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.3,169.5,203.4,237.3,271.2
81,81,2.0,1469705845.1,134.8,0.0,4.69,34.5,179,17,636.1,108.970092917,144.099999905,0,0,0,0,0,0,0,4.69,0,0.0,0.0,4,79,4.69000000002,0.0,0.0,0.0,0.0,179.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.3,169.5,203.4,237.3,271.2
82,82,2.0,1469705846.7,142.2,0.0,4.67,34.0,180,18,643.5,108.943527129,145.700000048,0,0,0,0,0,0,0,4.67,0,0.0,0.0,4,80,4.67000000001,0.0,0.0,0.0,0.0,180.0,0.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.3,169.5,203.4,237.3,271.2
83,83,2.0,1469705848.5,150.6,0.0,4.59,34.5,181,19,651.9,108.491687362,147.5,0,0,0,0,0,0,0,4.59,0,0.0,0.0,4,81,4.58999999998,0.0,0.0,0.0,0.0,0.0,181.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.3,169.5,203.4,237.3,271.2
84,84,2.0,1469705850.3,158.8,0.0,4.52,33.5,181,20,660.1,108.195629805,149.299999952,0,0,0,0,0,0,0,4.52,0,0.0,0.0,4,82,4.51999999998,0.0,0.0,0.0,0.0,0.0,181.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.3,169.5,203.4,237.3,271.2
85,85,2.0,1469705852.1,166.4,0.0,4.52,33.5,181,21,667.7,108.474130564,151.099999905,0,0,0,0,0,0,0,4.52,0,0.0,0.0,4,83,4.51999999998,0.0,0.0,0.0,0.0,0.0,181.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.3,169.5,203.4,237.3,271.2
86,86,2.0,1469705853.9,175.2,0.0,4.68,33.5,182,22,676.5,109.550561798,152.900000095,0,0,0,0,0,0,0,4.68,0,0.0,0.0,4,84,4.67999999998,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,0.0,124.3,169.5,203.4,237.3,271.2
87,87,2.0,1469705855.7,183.2,0.0,4.65,32.0,182,23,684.5,110.12141592,154.700000048,0,0,0,0,0,0,0,4.65,0,0.0,0.0,4,85,4.65000000002,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,0.0,124.3,169.5,203.4,237.3,271.2
88,88,2.0,1469705857.5,191.2,0.0,4.51,33.0,182,24,692.5,110.388908617,156.5,0,0,0,0,0,0,0,4.51,0,0.0,0.0,4,86,4.51,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,0.0,124.3,169.5,203.4,237.3,271.2
89,89,2.0,1469705859.4,200.1,0.0,4.42,32.0,183,25,701.4,111.075438088,158.400000095,0,0,0,0,0,0,0,4.42,0,0.0,0.0,4,87,4.41999999999,0.0,0.0,0.0,0.0,0.0,183.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.3,169.5,203.4,237.3,271.2
90,90,2.0,1469705861.2,207.4,0.0,4.38,32.0,183,26,708.7,112.186192469,160.200000048,0,0,0,0,0,0,0,4.38,0,0.0,0.0,4,88,4.37999999998,0.0,0.0,0.0,0.0,0.0,183.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.3,169.5,203.4,237.3,271.2
91,91,2.0,1469705863.0,216.1,0.0,4.47,32.0,183,27,717.4,113.541324808,162.0,0,0,0,0,0,0,0,4.47,0,0.0,0.0,4,89,4.47000000001,0.0,0.0,0.0,0.0,0.0,183.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.3,169.5,203.4,237.3,271.2
92,92,2.0,1469705865.0,224.7,0.0,4.44,32.5,183,28,726.0,113.933934253,164.0,0,0,0,0,0,0,0,4.44,0,0.0,0.0,4,90,4.43999999998,0.0,0.0,0.0,0.0,0.0,183.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.3,169.5,203.4,237.3,271.2
93,93,2.0,1469705867.1,232.4,0.0,4.34,33.0,184,29,733.7,114.217860585,166.099999905,0,0,0,0,0,0,0,4.34,0,0.0,0.0,4,91,4.34,0.0,0.0,0.0,0.0,0.0,184.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.3,169.5,203.4,237.3,271.2
94,94,2.0,1469705868.6,240.6,0.0,4.35,32.0,184,30,741.9,114.508095643,167.599999905,0,0,0,0,0,0,0,4.35,0,0.0,0.0,4,92,4.34999999999,0.0,0.0,0.0,0.0,0.0,184.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.3,169.5,203.4,237.3,271.2
95,95,2.0,1469705870.7,249.0,0.0,4.34,30.5,184,31,750.3,114.922206507,169.700000048,0,0,0,0,0,0,0,4.34,0,0.0,0.0,4,93,4.34,0.0,0.0,0.0,0.0,0.0,184.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.3,169.5,203.4,237.3,271.2
96,96,2.0,1469705871.0,250.4,0.0,4.34,30.5,184,31,751.7,115.581707376,170.0,0,0,0,0,0,0,0,4.34,0,0.0,0.0,4,93,4.34,0.0,0.0,0.0,0.0,0.0,184.0,142,146,160,167,180,192,0.0,0.0,0.0,0.0,0.0,0.0,124.3,169.5,203.4,237.3,271.2
1 index lapIdx TimeStamp (sec) Horizontal (meters) GPS Split GPS Speed Cadence (stokes/min) HRCur (bpm) Stroke Count cum_dist Stroke500mPace (sec/500m) ElapsedTime (sec) Power (watts) DriveLength (meters) StrokeDistance (meters) DriveTime (ms) DragFactor StrokeRecoveryTime (ms) AverageDriveForce (lbs) AverageBoatSpeed (m/s) PeakDriveForce (lbs) AverageDriveForce (N) PeakDriveForce (N) 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
2 0 0 0.0 1469705701.0 3.2 0.0 0.74 35.5 112 1 3.2 695.931477516 0.0 0 0 0 0 0 0 0 0.74 0 0.0 0.0 4 0 0.74 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.3 169.5 203.4 237.3 271.2
3 1 1 0.0 1469705702.6 8.6 0.0 2.07 38.5 113 2 8.6 228.8 1.59999990463 0 0 0 0 0 0 0 2.07 0 0.0 0.0 4 1 2.07 113.0 0.0 0.0 0.0 0.0 0.0 142 146 160 167 180 192 0.0 0.0 0.0 0.0 0.0 0.0 124.3 169.5 203.4 237.3 271.2
4 2 2 0.0 1469705704.5 15.1 0.0 3.36 38.5 115 3 15.1 153.336955279 3.5 0 0 0 0 0 0 0 3.36 0 0.0 0.0 4 3 3.35999999999 115.0 0.0 0.0 0.0 0.0 0.0 142 146 160 167 180 192 0.0 0.0 0.0 0.0 0.0 0.0 124.3 169.5 203.4 237.3 271.2
5 3 3 0.0 1469705705.6 21.4 0.0 4.09 39.0 115 4 21.4 124.977058407 4.59999990463 0 0 0 0 0 0 0 4.09 0 0.0 0.0 4 3 4.09 115.0 0.0 0.0 0.0 0.0 0.0 142 146 160 167 180 192 0.0 0.0 0.0 0.0 0.0 0.0 124.3 169.5 203.4 237.3 271.2
6 4 4 0.0 1469705707.5 28.8 0.0 4.43 38.5 118 5 28.8 112.083019815 6.5 0 0 0 0 0 0 0 4.43 0 0.0 0.0 4 5 4.42999999999 118.0 0.0 0.0 0.0 0.0 0.0 142 146 160 167 180 192 0.0 0.0 0.0 0.0 0.0 0.0 124.3 169.5 203.4 237.3 271.2
7 5 5 0.0 1469705708.8 36.2 0.0 4.64 37.5 125 6 36.2 106.442632632 7.79999995232 0 0 0 0 0 0 0 4.64 0 0.0 0.0 4 5 4.63999999999 125.0 0.0 0.0 0.0 0.0 0.0 142 146 160 167 180 192 0.0 0.0 0.0 0.0 0.0 0.0 124.3 169.5 203.4 237.3 271.2
8 6 6 0.0 1469705710.5 43.1 0.0 4.66 36.0 130 7 43.1 104.628021775 9.5 0 0 0 0 0 0 0 4.66 0 0.0 0.0 4 6 4.66 130.0 0.0 0.0 0.0 0.0 0.0 142 146 160 167 180 192 0.0 0.0 0.0 0.0 0.0 0.0 124.3 169.5 203.4 237.3 271.2
9 7 7 0.0 1469705712.2 52.0 0.0 4.76 34.0 135 8 52.0 106.01911804 11.2000000477 0 0 0 0 0 0 0 4.76 0 0.0 0.0 4 7 4.75999999999 135.0 0.0 0.0 0.0 0.0 0.0 142 146 160 167 180 192 0.0 0.0 0.0 0.0 0.0 0.0 124.3 169.5 203.4 237.3 271.2
10 8 8 0.0 1469705714.0 60.1 0.0 4.71 34.5 142 9 60.1 107.565165936 13.0 0 0 0 0 0 0 0 4.71 0 0.0 0.0 4 8 4.70999999998 142.0 0.0 0.0 0.0 0.0 0.0 142 146 160 167 180 192 0.0 0.0 0.0 0.0 0.0 0.0 124.3 169.5 203.4 237.3 271.2
11 9 9 0.0 1469705715.8 68.1 0.0 4.53 33.5 148 10 68.1 108.679681206 14.7999999523 0 0 0 0 0 0 0 4.53 0 0.0 0.0 4 9 4.53000000001 0.0 0.0 148.0 0.0 0.0 0.0 142 146 160 167 180 192 0.0 0.0 0.0 0.0 0.0 0.0 124.3 169.5 203.4 237.3 271.2
12 10 10 0.0 1469705717.6 76.3 0.0 4.44 32.5 154 11 76.3 109.466700689 16.5999999046 0 0 0 0 0 0 0 4.44 0 0.0 0.0 4 10 4.43999999998 0.0 0.0 154.0 0.0 0.0 0.0 142 146 160 167 180 192 0.0 0.0 0.0 0.0 0.0 0.0 124.3 169.5 203.4 237.3 271.2
13 11 11 0.0 1469705719.5 83.8 0.0 4.44 33.0 156 12 83.8 109.893487851 18.5 0 0 0 0 0 0 0 4.44 0 0.0 0.0 4 11 4.43999999998 0.0 0.0 156.0 0.0 0.0 0.0 142 146 160 167 180 192 0.0 0.0 0.0 0.0 0.0 0.0 124.3 169.5 203.4 237.3 271.2
14 12 12 0.0 1469705721.2 92.5 0.0 4.62 33.5 159 13 92.5 110.627456239 20.2000000477 0 0 0 0 0 0 0 4.62 0 0.0 0.0 4 12 4.62 0.0 0.0 159.0 0.0 0.0 0.0 142 146 160 167 180 192 0.0 0.0 0.0 0.0 0.0 0.0 124.3 169.5 203.4 237.3 271.2
15 13 13 0.0 1469705723.0 100.8 0.0 4.64 33.5 163 14 100.8 110.362782274 22.0 0 0 0 0 0 0 0 4.64 0 0.0 0.0 4 13 4.63999999999 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.3 169.5 203.4 237.3 271.2
16 14 14 0.0 1469705724.8 109.1 0.0 4.59 32.0 166 15 109.1 109.351182981 23.7999999523 0 0 0 0 0 0 0 4.59 0 0.0 0.0 4 14 4.58999999998 0.0 0.0 0.0 166.0 0.0 0.0 142 146 160 167 180 192 0.0 0.0 0.0 0.0 0.0 0.0 124.3 169.5 203.4 237.3 271.2
17 15 15 0.0 1469705726.8 118.1 0.0 4.52 32.5 168 16 118.1 108.636197885 25.7999999523 0 0 0 0 0 0 0 4.52 0 0.0 0.0 4 15 4.51999999998 0.0 0.0 0.0 0.0 168.0 0.0 142 146 160 167 180 192 0.0 0.0 0.0 0.0 0.0 0.0 124.3 169.5 203.4 237.3 271.2
18 16 16 0.0 1469705728.5 125.1 0.0 4.5 33.0 169 17 125.1 108.494979894 27.5 0 0 0 0 0 0 0 4.5 0 0.0 0.0 4 16 4.5 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.3 169.5 203.4 237.3 271.2
19 17 17 0.0 1469705730.4 134.7 0.0 4.66 33.5 171 18 134.7 109.232014911 29.4000000954 0 0 0 0 0 0 0 4.66 0 0.0 0.0 4 17 4.66 0.0 0.0 0.0 0.0 171.0 0.0 142 146 160 167 180 192 0.0 0.0 0.0 0.0 0.0 0.0 124.3 169.5 203.4 237.3 271.2
20 18 18 0.0 1469705732.2 143.0 0.0 4.66 32.5 172 19 143.0 109.4493854 31.2000000477 0 0 0 0 0 0 0 4.66 0 0.0 0.0 4 18 4.66 0.0 0.0 0.0 0.0 172.0 0.0 142 146 160 167 180 192 0.0 0.0 0.0 0.0 0.0 0.0 124.3 169.5 203.4 237.3 271.2
21 19 19 0.0 1469705734.0 151.2 0.0 4.58 33.0 172 20 151.2 109.222559423 33.0 0 0 0 0 0 0 0 4.58 0 0.0 0.0 4 19 4.57999999999 0.0 0.0 0.0 0.0 172.0 0.0 142 146 160 167 180 192 0.0 0.0 0.0 0.0 0.0 0.0 124.3 169.5 203.4 237.3 271.2
22 20 20 0.0 1469705735.8 159.4 0.0 4.52 33.0 173 21 159.4 109.097567302 34.7999999523 0 0 0 0 0 0 0 4.52 0 0.0 0.0 4 20 4.51999999998 0.0 0.0 0.0 0.0 173.0 0.0 142 146 160 167 180 192 0.0 0.0 0.0 0.0 0.0 0.0 124.3 169.5 203.4 237.3 271.2
23 21 21 0.0 1469705737.5 166.1 0.0 4.47 33.5 175 22 166.1 109.622785185 36.5 0 0 0 0 0 0 0 4.47 0 0.0 0.0 4 21 4.47000000001 0.0 0.0 0.0 0.0 175.0 0.0 142 146 160 167 180 192 0.0 0.0 0.0 0.0 0.0 0.0 124.3 169.5 203.4 237.3 271.2
24 22 22 0.0 1469705739.4 175.7 0.0 4.58 33.5 175 23 175.7 110.908884086 38.4000000954 0 0 0 0 0 0 0 4.58 0 0.0 0.0 4 22 4.57999999999 0.0 0.0 0.0 0.0 175.0 0.0 142 146 160 167 180 192 0.0 0.0 0.0 0.0 0.0 0.0 124.3 169.5 203.4 237.3 271.2
25 23 23 0.0 1469705741.2 183.8 0.0 4.57 32.5 175 24 183.8 111.571150665 40.2000000477 0 0 0 0 0 0 0 4.57 0 0.0 0.0 4 23 4.57 0.0 0.0 0.0 0.0 175.0 0.0 142 146 160 167 180 192 0.0 0.0 0.0 0.0 0.0 0.0 124.3 169.5 203.4 237.3 271.2
26 24 24 0.0 1469705743.0 191.8 0.0 4.47 33.0 175 25 191.8 111.781044645 42.0 0 0 0 0 0 0 0 4.47 0 0.0 0.0 4 24 4.47000000001 0.0 0.0 0.0 0.0 175.0 0.0 142 146 160 167 180 192 0.0 0.0 0.0 0.0 0.0 0.0 124.3 169.5 203.4 237.3 271.2
27 25 25 0.0 1469705744.8 199.8 0.0 4.39 32.0 176 26 199.8 111.973606594 43.7999999523 0 0 0 0 0 0 0 4.39 0 0.0 0.0 4 25 4.39 0.0 0.0 0.0 0.0 176.0 0.0 142 146 160 167 180 192 0.0 0.0 0.0 0.0 0.0 0.0 124.3 169.5 203.4 237.3 271.2
28 26 26 0.0 1469705746.7 207.8 0.0 4.39 32.5 176 27 207.8 112.082434148 45.7000000477 0 0 0 0 0 0 0 4.39 0 0.0 0.0 4 26 4.39 0.0 0.0 0.0 0.0 176.0 0.0 142 146 160 167 180 192 0.0 0.0 0.0 0.0 0.0 0.0 124.3 169.5 203.4 237.3 271.2
29 27 27 0.0 1469705748.6 216.7 0.0 4.49 33.0 174 28 216.7 112.462053887 47.5999999046 0 0 0 0 0 0 0 4.49 0 0.0 0.0 4 27 4.49000000001 0.0 0.0 0.0 0.0 174.0 0.0 142 146 160 167 180 192 0.0 0.0 0.0 0.0 0.0 0.0 124.3 169.5 203.4 237.3 271.2
30 28 28 0.0 1469705750.4 224.8 0.0 4.49 32.0 174 29 224.8 110.702820986 49.4000000954 0 0 0 0 0 0 0 4.49 0 0.0 0.0 4 28 4.49000000001 0.0 0.0 0.0 0.0 174.0 0.0 142 146 160 167 180 192 0.0 0.0 0.0 0.0 0.0 0.0 124.3 169.5 203.4 237.3 271.2
31 29 29 0.0 1469705752.5 232.9 0.0 4.47 33.0 174 30 232.9 111.287510895 51.5 0 0 0 0 0 0 0 4.47 0 0.0 0.0 4 30 4.47000000001 0.0 0.0 0.0 0.0 174.0 0.0 142 146 160 167 180 192 0.0 0.0 0.0 0.0 0.0 0.0 124.3 169.5 203.4 237.3 271.2
32 30 30 0.0 1469705754.0 240.9 0.0 4.48 32.0 175 31 240.9 113.880099386 53.0 0 0 0 0 0 0 0 4.48 0 0.0 0.0 4 30 4.48000000001 0.0 0.0 0.0 0.0 175.0 0.0 142 146 160 167 180 192 0.0 0.0 0.0 0.0 0.0 0.0 124.3 169.5 203.4 237.3 271.2
33 31 31 0.0 1469705755.8 248.9 0.0 4.43 32.0 175 32 248.9 117.397229535 54.7999999523 0 0 0 0 0 0 0 4.43 0 0.0 0.0 4 31 4.42999999999 0.0 0.0 0.0 0.0 175.0 0.0 142 146 160 167 180 192 0.0 0.0 0.0 0.0 0.0 0.0 124.3 169.5 203.4 237.3 271.2
34 32 32 0.0 1469705756.2 250.4 0.0 4.43 32.0 175 32 250.4 120.181532945 55.2000000477 0 0 0 0 0 0 0 4.43 0 0.0 0.0 4 32 4.42999999999 0.0 0.0 0.0 0.0 175.0 0.0 142 146 160 167 180 192 0.0 0.0 0.0 0.0 0.0 0.0 124.3 169.5 203.4 237.3 271.2
35 33 33 1.0 1469705757.6 5.7 0.0 3.62 30.5 160 1 256.1 121.464367621 56.5999999046 0 0 0 0 0 0 0 3.62 0 0.0 0.0 4 32 3.62000000001 0.0 0.0 160.0 0.0 0.0 0.0 142 146 160 167 180 192 0.0 0.0 0.0 0.0 0.0 0.0 124.3 169.5 203.4 237.3 271.2
36 34 34 1.0 1469705759.4 13.4 0.0 3.85 33.5 161 2 263.8 121.497391629 58.4000000954 0 0 0 0 0 0 0 3.85 0 0.0 0.0 4 33 3.85 0.0 0.0 0.0 161.0 0.0 0.0 142 146 160 167 180 192 0.0 0.0 0.0 0.0 0.0 0.0 124.3 169.5 203.4 237.3 271.2
37 35 35 1.0 1469705761.2 20.7 0.0 4.2 33.5 162 3 271.1 120.37982782 60.2000000477 0 0 0 0 0 0 0 4.2 0 0.0 0.0 4 34 4.19999999999 0.0 0.0 0.0 162.0 0.0 0.0 142 146 160 167 180 192 0.0 0.0 0.0 0.0 0.0 0.0 124.3 169.5 203.4 237.3 271.2
38 36 36 1.0 1469705763.0 29.2 0.0 4.47 33.5 162 4 279.6 118.387283716 62.0 0 0 0 0 0 0 0 4.47 0 0.0 0.0 4 35 4.47000000001 0.0 0.0 0.0 162.0 0.0 0.0 142 146 160 167 180 192 0.0 0.0 0.0 0.0 0.0 0.0 124.3 169.5 203.4 237.3 271.2
39 37 37 1.0 1469705764.8 37.3 0.0 4.47 33.0 164 5 287.7 115.233986774 63.7999999523 0 0 0 0 0 0 0 4.47 0 0.0 0.0 4 36 4.47000000001 0.0 0.0 0.0 164.0 0.0 0.0 142 146 160 167 180 192 0.0 0.0 0.0 0.0 0.0 0.0 124.3 169.5 203.4 237.3 271.2
40 38 38 1.0 1469705766.6 45.3 0.0 4.44 33.5 165 6 295.7 111.287510895 65.5999999046 0 0 0 0 0 0 0 4.44 0 0.0 0.0 4 37 4.43999999998 0.0 0.0 0.0 165.0 0.0 0.0 142 146 160 167 180 192 0.0 0.0 0.0 0.0 0.0 0.0 124.3 169.5 203.4 237.3 271.2
41 39 39 1.0 1469705768.5 53.5 0.0 4.42 33.5 165 7 303.9 111.718168135 67.5 0 0 0 0 0 0 0 4.42 0 0.0 0.0 4 38 4.41999999999 0.0 0.0 0.0 165.0 0.0 0.0 142 146 160 167 180 192 0.0 0.0 0.0 0.0 0.0 0.0 124.3 169.5 203.4 237.3 271.2
42 40 40 1.0 1469705770.2 60.7 0.0 4.38 32.0 167 8 311.1 113.471050335 69.2000000477 0 0 0 0 0 0 0 4.38 0 0.0 0.0 4 39 4.37999999998 0.0 0.0 0.0 167.0 0.0 0.0 142 146 160 167 180 192 0.0 0.0 0.0 0.0 0.0 0.0 124.3 169.5 203.4 237.3 271.2
43 41 41 1.0 1469705772.2 70.1 0.0 4.44 32.0 171 9 320.5 115.140584238 71.2000000477 0 0 0 0 0 0 0 4.44 0 0.0 0.0 4 40 4.43999999998 0.0 0.0 0.0 0.0 171.0 0.0 142 146 160 167 180 192 0.0 0.0 0.0 0.0 0.0 0.0 124.3 169.5 203.4 237.3 271.2
44 42 42 1.0 1469705774.1 77.8 0.0 4.3 32.0 172 10 328.2 116.273396972 73.0999999046 0 0 0 0 0 0 0 4.3 0 0.0 0.0 4 41 4.30000000002 0.0 0.0 0.0 0.0 172.0 0.0 142 146 160 167 180 192 0.0 0.0 0.0 0.0 0.0 0.0 124.3 169.5 203.4 237.3 271.2
45 43 43 1.0 1469705776.1 85.2 0.0 4.12 31.0 174 11 335.6 117.556791714 75.0999999046 0 0 0 0 0 0 0 4.12 0 0.0 0.0 4 42 4.12 0.0 0.0 0.0 0.0 174.0 0.0 142 146 160 167 180 192 0.0 0.0 0.0 0.0 0.0 0.0 124.3 169.5 203.4 237.3 271.2
46 44 44 1.0 1469705777.9 93.4 0.0 4.2 31.5 174 12 343.8 119.395508057 76.9000000954 0 0 0 0 0 0 0 4.2 0 0.0 0.0 4 43 4.19999999999 0.0 0.0 0.0 0.0 174.0 0.0 142 146 160 167 180 192 0.0 0.0 0.0 0.0 0.0 0.0 124.3 169.5 203.4 237.3 271.2
47 45 45 1.0 1469705779.9 101.5 0.0 4.21 32.0 176 13 351.9 121.165219651 78.9000000954 0 0 0 0 0 0 0 4.21 0 0.0 0.0 4 44 4.20999999999 0.0 0.0 0.0 0.0 176.0 0.0 142 146 160 167 180 192 0.0 0.0 0.0 0.0 0.0 0.0 124.3 169.5 203.4 237.3 271.2
48 46 46 1.0 1469705781.6 108.9 0.0 4.11 30.5 176 14 359.3 122.757318225 80.5999999046 0 0 0 0 0 0 0 4.11 0 0.0 0.0 4 45 4.10999999998 0.0 0.0 0.0 0.0 176.0 0.0 142 146 160 167 180 192 0.0 0.0 0.0 0.0 0.0 0.0 124.3 169.5 203.4 237.3 271.2
49 47 47 1.0 1469705783.6 116.9 0.0 4.02 32.0 175 15 367.3 123.722400388 82.5999999046 0 0 0 0 0 0 0 4.02 0 0.0 0.0 4 46 4.01999999999 0.0 0.0 0.0 0.0 175.0 0.0 142 146 160 167 180 192 0.0 0.0 0.0 0.0 0.0 0.0 124.3 169.5 203.4 237.3 271.2
50 48 48 1.0 1469705785.5 124.1 0.0 3.96 30.5 177 16 374.5 123.80237793 84.5 0 0 0 0 0 0 0 3.96 0 0.0 0.0 4 47 3.95999999999 0.0 0.0 0.0 0.0 177.0 0.0 142 146 160 167 180 192 0.0 0.0 0.0 0.0 0.0 0.0 124.3 169.5 203.4 237.3 271.2
51 49 49 1.0 1469705787.5 132.1 0.0 4.04 32.0 177 17 382.5 123.700282002 86.5 0 0 0 0 0 0 0 4.04 0 0.0 0.0 4 48 4.03999999999 0.0 0.0 0.0 0.0 177.0 0.0 142 146 160 167 180 192 0.0 0.0 0.0 0.0 0.0 0.0 124.3 169.5 203.4 237.3 271.2
52 50 50 1.0 1469705789.2 139.7 0.0 4.06 32.0 178 18 390.1 122.672370408 88.2000000477 0 0 0 0 0 0 0 4.06 0 0.0 0.0 4 49 4.05999999999 0.0 0.0 0.0 0.0 178.0 0.0 142 146 160 167 180 192 0.0 0.0 0.0 0.0 0.0 0.0 124.3 169.5 203.4 237.3 271.2
53 51 51 1.0 1469705791.1 146.7 0.0 4.09 33.0 178 19 397.1 121.011418513 90.0999999046 0 0 0 0 0 0 0 4.09 0 0.0 0.0 4 50 4.09 0.0 0.0 0.0 0.0 178.0 0.0 142 146 160 167 180 192 0.0 0.0 0.0 0.0 0.0 0.0 124.3 169.5 203.4 237.3 271.2
54 52 52 1.0 1469705793.1 155.4 0.0 4.27 31.0 177 20 405.8 119.62256154 92.0999999046 0 0 0 0 0 0 0 4.27 0 0.0 0.0 4 51 4.27000000001 0.0 0.0 0.0 0.0 177.0 0.0 142 146 160 167 180 192 0.0 0.0 0.0 0.0 0.0 0.0 124.3 169.5 203.4 237.3 271.2
55 53 53 1.0 1469705794.9 163.1 0.0 4.27 32.0 177 21 413.5 118.342215896 93.9000000954 0 0 0 0 0 0 0 4.27 0 0.0 0.0 4 52 4.27000000001 0.0 0.0 0.0 0.0 177.0 0.0 142 146 160 167 180 192 0.0 0.0 0.0 0.0 0.0 0.0 124.3 169.5 203.4 237.3 271.2
56 54 54 1.0 1469705797.1 171.6 0.0 4.24 31.5 178 22 422.0 117.740696015 96.0999999046 0 0 0 0 0 0 0 4.24 0 0.0 0.0 4 53 4.24 0.0 0.0 0.0 0.0 178.0 0.0 142 146 160 167 180 192 0.0 0.0 0.0 0.0 0.0 0.0 124.3 169.5 203.4 237.3 271.2
57 55 55 1.0 1469705798.6 179.3 0.0 4.22 32.0 179 23 429.7 117.599973684 97.5999999046 0 0 0 0 0 0 0 4.22 0 0.0 0.0 4 54 4.22000000001 0.0 0.0 0.0 0.0 179.0 0.0 142 146 160 167 180 192 0.0 0.0 0.0 0.0 0.0 0.0 124.3 169.5 203.4 237.3 271.2
58 56 56 1.0 1469705800.7 187.9 0.0 4.21 30.5 179 24 438.3 117.565167825 99.7000000477 0 0 0 0 0 0 0 4.21 0 0.0 0.0 4 55 4.20999999999 0.0 0.0 0.0 0.0 179.0 0.0 142 146 160 167 180 192 0.0 0.0 0.0 0.0 0.0 0.0 124.3 169.5 203.4 237.3 271.2
59 57 57 1.0 1469705802.5 195.8 0.0 4.28 30.5 180 25 446.2 117.967332124 101.5 0 0 0 0 0 0 0 4.28 0 0.0 0.0 4 56 4.27999999998 0.0 0.0 0.0 0.0 180.0 0.0 142 146 160 167 180 192 0.0 0.0 0.0 0.0 0.0 0.0 124.3 169.5 203.4 237.3 271.2
60 58 58 1.0 1469705804.5 204.3 0.0 4.22 30.5 180 26 454.7 118.489957355 103.5 0 0 0 0 0 0 0 4.22 0 0.0 0.0 4 57 4.22000000001 0.0 0.0 0.0 0.0 180.0 0.0 142 146 160 167 180 192 0.0 0.0 0.0 0.0 0.0 0.0 124.3 169.5 203.4 237.3 271.2
61 59 59 1.0 1469705806.4 212.2 0.0 4.2 30.5 180 27 462.6 118.763530461 105.400000095 0 0 0 0 0 0 0 4.2 0 0.0 0.0 4 58 4.19999999999 0.0 0.0 0.0 0.0 180.0 0.0 142 146 160 167 180 192 0.0 0.0 0.0 0.0 0.0 0.0 124.3 169.5 203.4 237.3 271.2
62 60 60 1.0 1469705808.5 221.4 0.0 4.26 29.5 180 28 471.8 117.583212735 107.5 0 0 0 0 0 0 0 4.26 0 0.0 0.0 4 59 4.25999999999 0.0 0.0 0.0 0.0 180.0 0.0 142 146 160 167 180 192 0.0 0.0 0.0 0.0 0.0 0.0 124.3 169.5 203.4 237.3 271.2
63 61 61 1.0 1469705810.4 229.8 0.0 4.17 30.5 180 29 480.2 119.140852815 109.400000095 0 0 0 0 0 0 0 4.17 0 0.0 0.0 4 60 4.16999999999 0.0 0.0 0.0 0.0 180.0 0.0 142 146 160 167 180 192 0.0 0.0 0.0 0.0 0.0 0.0 124.3 169.5 203.4 237.3 271.2
64 62 62 1.0 1469705812.3 236.6 0.0 4.11 33.5 181 30 487.0 121.480877381 111.299999952 0 0 0 0 0 0 0 4.11 0 0.0 0.0 4 61 4.10999999998 0.0 0.0 0.0 0.0 0.0 181.0 142 146 160 167 180 192 0.0 0.0 0.0 0.0 0.0 0.0 124.3 169.5 203.4 237.3 271.2
65 63 63 1.0 1469705814.0 244.8 0.0 4.24 33.5 181 31 495.2 122.38470448 113.0 0 0 0 0 0 0 0 4.24 0 0.0 0.0 4 62 4.24 0.0 0.0 0.0 0.0 0.0 181.0 142 146 160 167 180 192 0.0 0.0 0.0 0.0 0.0 0.0 124.3 169.5 203.4 237.3 271.2
66 64 64 1.0 1469705815.4 250.9 0.0 4.24 33.5 181 31 501.3 122.183234979 114.400000095 0 0 0 0 0 0 0 4.24 0 0.0 0.0 4 63 4.24 0.0 0.0 0.0 0.0 0.0 181.0 142 146 160 167 180 192 0.0 0.0 0.0 0.0 0.0 0.0 124.3 169.5 203.4 237.3 271.2
67 65 65 2.0 1469705816.3 0.9 0.0 3.66 28.0 158 1 502.2 121.2563172 115.299999952 0 0 0 0 0 0 0 3.66 0 0.0 0.0 4 63 3.66 0.0 0.0 158.0 0.0 0.0 0.0 142 146 160 167 180 192 0.0 0.0 0.0 0.0 0.0 0.0 124.3 169.5 203.4 237.3 271.2
68 66 66 2.0 1469705817.8 9.8 0.0 4.12 33.5 160 2 511.1 119.786227655 116.799999952 0 0 0 0 0 0 0 4.12 0 0.0 0.0 4 64 4.12 0.0 0.0 160.0 0.0 0.0 0.0 142 146 160 167 180 192 0.0 0.0 0.0 0.0 0.0 0.0 124.3 169.5 203.4 237.3 271.2
69 67 67 2.0 1469705819.6 18.0 0.0 4.44 32.5 162 3 519.3 117.678039467 118.599999905 0 0 0 0 0 0 0 4.44 0 0.0 0.0 4 65 4.43999999998 0.0 0.0 0.0 162.0 0.0 0.0 142 146 160 167 180 192 0.0 0.0 0.0 0.0 0.0 0.0 124.3 169.5 203.4 237.3 271.2
70 68 68 2.0 1469705821.5 26.1 0.0 4.47 33.0 161 4 527.4 115.319480659 120.5 0 0 0 0 0 0 0 4.47 0 0.0 0.0 4 66 4.47000000001 0.0 0.0 0.0 161.0 0.0 0.0 142 146 160 167 180 192 0.0 0.0 0.0 0.0 0.0 0.0 124.3 169.5 203.4 237.3 271.2
71 69 69 2.0 1469705823.4 35.0 0.0 4.43 32.0 164 5 536.3 112.531083761 122.400000095 0 0 0 0 0 0 0 4.43 0 0.0 0.0 4 67 4.42999999999 0.0 0.0 0.0 164.0 0.0 0.0 142 146 160 167 180 192 0.0 0.0 0.0 0.0 0.0 0.0 124.3 169.5 203.4 237.3 271.2
72 70 70 2.0 1469705825.1 41.9 0.0 4.43 33.0 165 6 543.2 109.693981917 124.099999905 0 0 0 0 0 0 0 4.43 0 0.0 0.0 4 68 4.42999999999 0.0 0.0 0.0 165.0 0.0 0.0 142 146 160 167 180 192 0.0 0.0 0.0 0.0 0.0 0.0 124.3 169.5 203.4 237.3 271.2
73 71 71 2.0 1469705827.1 51.5 0.0 4.6 33.5 166 7 552.8 110.111805834 126.099999905 0 0 0 0 0 0 0 4.6 0 0.0 0.0 4 69 4.6 0.0 0.0 0.0 166.0 0.0 0.0 142 146 160 167 180 192 0.0 0.0 0.0 0.0 0.0 0.0 124.3 169.5 203.4 237.3 271.2
74 72 72 2.0 1469705828.9 59.7 0.0 4.59 33.5 168 8 561.0 110.235734879 127.900000095 0 0 0 0 0 0 0 4.59 0 0.0 0.0 4 70 4.58999999998 0.0 0.0 0.0 0.0 168.0 0.0 142 146 160 167 180 192 0.0 0.0 0.0 0.0 0.0 0.0 124.3 169.5 203.4 237.3 271.2
75 73 73 2.0 1469705830.7 68.1 0.0 4.53 32.0 171 9 569.4 109.674351541 129.700000048 0 0 0 0 0 0 0 4.53 0 0.0 0.0 4 71 4.53000000001 0.0 0.0 0.0 0.0 171.0 0.0 142 146 160 167 180 192 0.0 0.0 0.0 0.0 0.0 0.0 124.3 169.5 203.4 237.3 271.2
76 74 74 2.0 1469705832.4 76.4 0.0 4.55 33.0 172 10 577.7 109.081478016 131.400000095 0 0 0 0 0 0 0 4.55 0 0.0 0.0 4 72 4.55 0.0 0.0 0.0 0.0 172.0 0.0 142 146 160 167 180 192 0.0 0.0 0.0 0.0 0.0 0.0 124.3 169.5 203.4 237.3 271.2
77 75 75 2.0 1469705834.3 84.0 0.0 4.54 32.5 173 11 585.3 108.95736186 133.299999952 0 0 0 0 0 0 0 4.54 0 0.0 0.0 4 73 4.54000000001 0.0 0.0 0.0 0.0 173.0 0.0 142 146 160 167 180 192 0.0 0.0 0.0 0.0 0.0 0.0 124.3 169.5 203.4 237.3 271.2
78 76 76 2.0 1469705836.0 92.9 0.0 4.63 33.0 174 12 594.2 109.581343074 135.0 0 0 0 0 0 0 0 4.63 0 0.0 0.0 4 74 4.63000000001 0.0 0.0 0.0 0.0 174.0 0.0 142 146 160 167 180 192 0.0 0.0 0.0 0.0 0.0 0.0 124.3 169.5 203.4 237.3 271.2
79 77 77 2.0 1469705837.9 101.3 0.0 4.61 33.5 176 13 602.6 109.437100452 136.900000095 0 0 0 0 0 0 0 4.61 0 0.0 0.0 4 75 4.61000000001 0.0 0.0 0.0 0.0 176.0 0.0 142 146 160 167 180 192 0.0 0.0 0.0 0.0 0.0 0.0 124.3 169.5 203.4 237.3 271.2
80 78 78 2.0 1469705839.7 109.6 0.0 4.58 33.5 177 14 610.9 108.898173861 138.700000048 0 0 0 0 0 0 0 4.58 0 0.0 0.0 4 76 4.57999999999 0.0 0.0 0.0 0.0 177.0 0.0 142 146 160 167 180 192 0.0 0.0 0.0 0.0 0.0 0.0 124.3 169.5 203.4 237.3 271.2
81 79 79 2.0 1469705841.5 118.0 0.0 4.54 33.5 178 15 619.3 108.514739286 140.5 0 0 0 0 0 0 0 4.54 0 0.0 0.0 4 77 4.54000000001 0.0 0.0 0.0 0.0 178.0 0.0 142 146 160 167 180 192 0.0 0.0 0.0 0.0 0.0 0.0 124.3 169.5 203.4 237.3 271.2
82 80 80 2.0 1469705843.1 125.0 0.0 4.54 34.0 178 16 626.3 108.408891045 142.099999905 0 0 0 0 0 0 0 4.54 0 0.0 0.0 4 78 4.54000000001 0.0 0.0 0.0 0.0 178.0 0.0 142 146 160 167 180 192 0.0 0.0 0.0 0.0 0.0 0.0 124.3 169.5 203.4 237.3 271.2
83 81 81 2.0 1469705845.1 134.8 0.0 4.69 34.5 179 17 636.1 108.970092917 144.099999905 0 0 0 0 0 0 0 4.69 0 0.0 0.0 4 79 4.69000000002 0.0 0.0 0.0 0.0 179.0 0.0 142 146 160 167 180 192 0.0 0.0 0.0 0.0 0.0 0.0 124.3 169.5 203.4 237.3 271.2
84 82 82 2.0 1469705846.7 142.2 0.0 4.67 34.0 180 18 643.5 108.943527129 145.700000048 0 0 0 0 0 0 0 4.67 0 0.0 0.0 4 80 4.67000000001 0.0 0.0 0.0 0.0 180.0 0.0 142 146 160 167 180 192 0.0 0.0 0.0 0.0 0.0 0.0 124.3 169.5 203.4 237.3 271.2
85 83 83 2.0 1469705848.5 150.6 0.0 4.59 34.5 181 19 651.9 108.491687362 147.5 0 0 0 0 0 0 0 4.59 0 0.0 0.0 4 81 4.58999999998 0.0 0.0 0.0 0.0 0.0 181.0 142 146 160 167 180 192 0.0 0.0 0.0 0.0 0.0 0.0 124.3 169.5 203.4 237.3 271.2
86 84 84 2.0 1469705850.3 158.8 0.0 4.52 33.5 181 20 660.1 108.195629805 149.299999952 0 0 0 0 0 0 0 4.52 0 0.0 0.0 4 82 4.51999999998 0.0 0.0 0.0 0.0 0.0 181.0 142 146 160 167 180 192 0.0 0.0 0.0 0.0 0.0 0.0 124.3 169.5 203.4 237.3 271.2
87 85 85 2.0 1469705852.1 166.4 0.0 4.52 33.5 181 21 667.7 108.474130564 151.099999905 0 0 0 0 0 0 0 4.52 0 0.0 0.0 4 83 4.51999999998 0.0 0.0 0.0 0.0 0.0 181.0 142 146 160 167 180 192 0.0 0.0 0.0 0.0 0.0 0.0 124.3 169.5 203.4 237.3 271.2
88 86 86 2.0 1469705853.9 175.2 0.0 4.68 33.5 182 22 676.5 109.550561798 152.900000095 0 0 0 0 0 0 0 4.68 0 0.0 0.0 4 84 4.67999999998 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 0.0 124.3 169.5 203.4 237.3 271.2
89 87 87 2.0 1469705855.7 183.2 0.0 4.65 32.0 182 23 684.5 110.12141592 154.700000048 0 0 0 0 0 0 0 4.65 0 0.0 0.0 4 85 4.65000000002 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 0.0 124.3 169.5 203.4 237.3 271.2
90 88 88 2.0 1469705857.5 191.2 0.0 4.51 33.0 182 24 692.5 110.388908617 156.5 0 0 0 0 0 0 0 4.51 0 0.0 0.0 4 86 4.51 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 0.0 124.3 169.5 203.4 237.3 271.2
91 89 89 2.0 1469705859.4 200.1 0.0 4.42 32.0 183 25 701.4 111.075438088 158.400000095 0 0 0 0 0 0 0 4.42 0 0.0 0.0 4 87 4.41999999999 0.0 0.0 0.0 0.0 0.0 183.0 142 146 160 167 180 192 0.0 0.0 0.0 0.0 0.0 0.0 124.3 169.5 203.4 237.3 271.2
92 90 90 2.0 1469705861.2 207.4 0.0 4.38 32.0 183 26 708.7 112.186192469 160.200000048 0 0 0 0 0 0 0 4.38 0 0.0 0.0 4 88 4.37999999998 0.0 0.0 0.0 0.0 0.0 183.0 142 146 160 167 180 192 0.0 0.0 0.0 0.0 0.0 0.0 124.3 169.5 203.4 237.3 271.2
93 91 91 2.0 1469705863.0 216.1 0.0 4.47 32.0 183 27 717.4 113.541324808 162.0 0 0 0 0 0 0 0 4.47 0 0.0 0.0 4 89 4.47000000001 0.0 0.0 0.0 0.0 0.0 183.0 142 146 160 167 180 192 0.0 0.0 0.0 0.0 0.0 0.0 124.3 169.5 203.4 237.3 271.2
94 92 92 2.0 1469705865.0 224.7 0.0 4.44 32.5 183 28 726.0 113.933934253 164.0 0 0 0 0 0 0 0 4.44 0 0.0 0.0 4 90 4.43999999998 0.0 0.0 0.0 0.0 0.0 183.0 142 146 160 167 180 192 0.0 0.0 0.0 0.0 0.0 0.0 124.3 169.5 203.4 237.3 271.2
95 93 93 2.0 1469705867.1 232.4 0.0 4.34 33.0 184 29 733.7 114.217860585 166.099999905 0 0 0 0 0 0 0 4.34 0 0.0 0.0 4 91 4.34 0.0 0.0 0.0 0.0 0.0 184.0 142 146 160 167 180 192 0.0 0.0 0.0 0.0 0.0 0.0 124.3 169.5 203.4 237.3 271.2
96 94 94 2.0 1469705868.6 240.6 0.0 4.35 32.0 184 30 741.9 114.508095643 167.599999905 0 0 0 0 0 0 0 4.35 0 0.0 0.0 4 92 4.34999999999 0.0 0.0 0.0 0.0 0.0 184.0 142 146 160 167 180 192 0.0 0.0 0.0 0.0 0.0 0.0 124.3 169.5 203.4 237.3 271.2
97 95 95 2.0 1469705870.7 249.0 0.0 4.34 30.5 184 31 750.3 114.922206507 169.700000048 0 0 0 0 0 0 0 4.34 0 0.0 0.0 4 93 4.34 0.0 0.0 0.0 0.0 0.0 184.0 142 146 160 167 180 192 0.0 0.0 0.0 0.0 0.0 0.0 124.3 169.5 203.4 237.3 271.2
98 96 96 2.0 1469705871.0 250.4 0.0 4.34 30.5 184 31 751.7 115.581707376 170.0 0 0 0 0 0 0 0 4.34 0 0.0 0.0 4 93 4.34 0.0 0.0 0.0 0.0 0.0 184.0 142 146 160 167 180 192 0.0 0.0 0.0 0.0 0.0 0.0 124.3 169.5 203.4 237.3 271.2

File diff suppressed because one or more lines are too long

Binary file not shown.

View File

@@ -59,7 +59,7 @@ def matchsource(line):
tester = re.compile(testert)
if tester.match(line.lower()):
return group(1)
return tester.match(line.lower()).group(1)
# currently only matches one chart
def matchchart(line):

View File

@@ -7,7 +7,7 @@ from models import Workout,Rower,StrokeData,FavoriteChart
from rest_framework import routers, serializers, viewsets,permissions
from rest_framework.urlpatterns import format_suffix_patterns
from rest_framework.permissions import *
from . import views
from rowers import views
from django.contrib.auth import views as auth_views
from django.views.generic.base import TemplateView
from django.conf.urls import (
@@ -108,198 +108,207 @@ urlpatterns = [
url(r'^o/authorize/$', base.AuthorizationView.as_view(), name="authorize"),
url(r'^o/token/$', base.TokenView.as_view(), name="token"),
url(r'^', include(router.urls)),
url(r'^api-docs/$', views.schema_view),
url(r'^api-docs/$', views.schema_view,name='schema_view'),
url(r'^api-auth/', include('rest_framework.urls', namespace='rest_framework')),
url(r'^api/workouts/(?P<id>\d+)/strokedata/$',views.strokedatajson),
url(r'^500v/$',views.error500_view),
url(r'^api/workouts/(?P<id>\d+)/strokedata/$',views.strokedatajson,name='strokedatajson'),
url(r'^500v/$',views.error500_view,name='error500_view'),
url(r'^502/$', TemplateView.as_view(template_name='502.html'),name='502'),
url(r'^500/$', TemplateView.as_view(template_name='500.html'),name='500'),
url(r'^404/$', TemplateView.as_view(template_name='404.html'),name='404'),
url(r'^400/$', TemplateView.as_view(template_name='400.html'),name='400'),
url(r'^403/$', TemplateView.as_view(template_name='403.html'),name='403'),
# url(r'^imports/$', views.imports_view),
url(r'^exportallworkouts/?/$',views.workouts_summaries_email_view),
url(r'^update_empower/$',views.rower_update_empower_view),
url(r'^agegroupcp/(?P<age>\d+)/$',views.agegroupcpview),
url(r'^agegroupcp/(?P<age>\d+)/(?P<normalize>\d+)/$',views.agegroupcpview),
url(r'^exportallworkouts/?/$',views.workouts_summaries_email_view,name='workouts_summaries_email_view'),
url(r'^update_empower/$',views.rower_update_empower_view,name='rower_update_empower_view'),
url(r'^agegroupcp/(?P<age>\d+)/$',views.agegroupcpview,name='agegroupcpview'),
url(r'^agegroupcp/(?P<age>\d+)/(?P<normalize>\d+)/$',views.agegroupcpview,name='agegroupcpview'),
url(r'^ajax_agegroup/(?P<age>\d+)/(?P<weightcategory>\w+.*)/(?P<sex>\w+.*)/(?P<userid>\d+)/$',
views.ajax_agegrouprecords),
url(r'^updatefitness/(?P<mode>\w+.*)/(?P<days>\d+)/$',views.fitness_metric_view),
url(r'^updatefitness/(?P<mode>\w+.*)/$',views.fitness_metric_view),
url(r'^updatefitness/$',views.fitness_metric_view),
views.ajax_agegrouprecords,name='ajax_agegrouprecords'),
url(r'^updatefitness/(?P<mode>\w+.*)/(?P<days>\d+)/$',views.fitness_metric_view,name='fitness_metric_view'),
url(r'^updatefitness/(?P<mode>\w+.*)/$',views.fitness_metric_view,name='fitness_metric_view'),
url(r'^updatefitness/$',views.fitness_metric_view,name='fitness_metric_view'),
url(r'^agegrouprecords/(?P<sex>\w+.*)/(?P<weightcategory>\w+.*)/(?P<distance>\d+)m/$',
views.agegrouprecordview),
views.agegrouprecordview,name='agegrouprecordview'),
url(r'^agegrouprecords/(?P<sex>\w+.*)/(?P<weightcategory>\w+.*)/(?P<duration>\d+)min/$',
views.agegrouprecordview),
views.agegrouprecordview,name='agegrouprecordview'),
url(r'^agegrouprecords/(?P<sex>\w+.*)/(?P<weightcategory>\w+.*)/$',
views.agegrouprecordview),
url(r'^list-workouts/ranking/$',views.workouts_view,{'rankingonly':True}),
url(r'^list-workouts/team/(?P<teamid>\d+)/(?P<startdatestring>\d+-\d+-\d+)/(?P<enddatestring>\d+-\d+-\d+)/$',views.workouts_view),
url(r'^list-workouts/team/(?P<teamid>\d+)/$',views.workouts_view),
url(r'^(?P<rowerid>\d+)/list-workouts/$',views.workouts_view),
url(r'^(?P<rowerid>\d+)/list-workouts/(?P<startdatestring>\d+-\d+-\d+)/(?P<enddatestring>\d+-\d+-\d+)/$',views.workouts_view),
url(r'^list-workouts/user/(?P<userid>\d+)/$',views.workouts_view),
url(r'^list-workouts/(?P<startdatestring>\d+-\d+-\d+)/(?P<enddatestring>\d+-\d+-\d+)/user/(?P<userid>\d+)/$',views.workouts_view),
url(r'^list-workouts/(?P<startdatestring>\d+-\d+-\d+)/(?P<enddatestring>\d+-\d+-\d+)/$',views.workouts_view),
url(r'^virtualevents/$',views.virtualevents_view),
url(r'^virtualevent/create/$',views.virtualevent_create_view),
url(r'^virtualevent/createindoor/$',views.indoorvirtualevent_create_view),
views.agegrouprecordview,name='agegrouprecordview'),
url(r'^list-workouts/ranking/$',views.workouts_view,{'rankingonly':True},
name='workouts_view'),
url(r'^list-workouts/team/(?P<teamid>\d+)/(?P<startdatestring>\d+-\d+-\d+)/(?P<enddatestring>\d+-\d+-\d+)/$',views.workouts_view,
name='workouts_view'),
url(r'^list-workouts/team/(?P<teamid>\d+)/$',views.workouts_view,
name='workouts_view'),
url(r'^(?P<rowerid>\d+)/list-workouts/$',views.workouts_view,
name='workouts_view'),
url(r'^(?P<rowerid>\d+)/list-workouts/(?P<startdatestring>\d+-\d+-\d+)/(?P<enddatestring>\d+-\d+-\d+)/$',views.workouts_view,
name='workouts_view'),
url(r'^list-workouts/user/(?P<userid>\d+)/$',views.workouts_view,
name='workouts_view'),
url(r'^list-workouts/(?P<startdatestring>\d+-\d+-\d+)/(?P<enddatestring>\d+-\d+-\d+)/user/(?P<userid>\d+)/$',views.workouts_view,
name='workouts_view'),
url(r'^list-workouts/(?P<startdatestring>\d+-\d+-\d+)/(?P<enddatestring>\d+-\d+-\d+)/$',views.workouts_view,
name='workouts_view'),
url(r'^virtualevents/$',views.virtualevents_view,name='virtualevents_view'),
url(r'^virtualevent/create/$',views.virtualevent_create_view,name='virtualevent_create_view'),
url(r'^virtualevent/createindoor/$',views.indoorvirtualevent_create_view,name='indoorvirtualevent_create_view'),
url(r'^raceregistration/togglenotification/(?P<id>\d+)/$',
views.virtualevent_toggle_email_view),
views.virtualevent_toggle_email_view,name='virtualevent_toggle_email_view'),
url(r'^indoorraceregistration/togglenotification/(?P<id>\d+)/$',
views.indoorvirtualevent_toggle_email_view),
url(r'^virtualevent/(?P<id>\d+)/$',views.virtualevent_view),
url(r'^virtualevent/(?P<id>\d+)/ranking$',views.virtualevent_ranking_view),
url(r'^virtualevent/(?P<id>\d+)/edit/$',views.virtualevent_edit_view),
url(r'^virtualevent/(?P<id>\d+)/editindoor/$',views.indoorvirtualevent_edit_view),
url(r'^virtualevent/(?P<id>\d+)/register/$',views.virtualevent_register_view),
url(r'^virtualevent/(?P<id>\d+)/registerindoor/$',views.indoorvirtualevent_register_view),
url(r'^virtualevent/(?P<id>\d+)/adddiscipline/$',views.virtualevent_addboat_view),
url(r'^virtualevent/(?P<id>\d+)/withdraw/(?P<recordid>\d+)/$',views.virtualevent_withdraw_view),
url(r'^virtualevent/(?P<id>\d+)/withdraw/$',views.virtualevent_withdraw_view),
views.indoorvirtualevent_toggle_email_view,name='indoorvirtualevent_toggle_email_view'),
url(r'^virtualevent/(?P<id>\d+)/$',views.virtualevent_view,name='virtualevent_view'),
url(r'^virtualevent/(?P<id>\d+)/ranking$',views.virtualevent_ranking_view,name='virtualevent_ranking_view'),
url(r'^virtualevent/(?P<id>\d+)/edit/$',views.virtualevent_edit_view,name='virtualevent_edit_view'),
url(r'^virtualevent/(?P<id>\d+)/editindoor/$',views.indoorvirtualevent_edit_view,name='indoorvirtualevent_edit_view'),
url(r'^virtualevent/(?P<id>\d+)/register/$',views.virtualevent_register_view,name='virtualevent_register_view'),
url(r'^virtualevent/(?P<id>\d+)/registerindoor/$',views.indoorvirtualevent_register_view,name='indoorvirtualevent_register_view'),
url(r'^virtualevent/(?P<id>\d+)/adddiscipline/$',views.virtualevent_addboat_view,name='virtualevent_addboat_view'),
url(r'^virtualevent/(?P<id>\d+)/withdraw/(?P<recordid>\d+)/$',views.virtualevent_withdraw_view,name='virtualevent_withdraw_view'),
url(r'^virtualevent/(?P<id>\d+)/withdraw/$',views.virtualevent_withdraw_view,name='virtualevent_withdraw_view'),
url(r'^virtualevent/(?P<id>\d+)/submit/$',
views.virtualevent_submit_result_view),
views.virtualevent_submit_result_view,name='virtualevent_submit_result_view'),
url(r'^virtualevent/(?P<id>\d+)/submit/(?P<workoutid>\d+)/$',
views.virtualevent_submit_result_view),
views.virtualevent_submit_result_view,name='virtualevent_submit_result_view'),
url(r'^virtualevent/(?P<raceid>\d+)/disqualify/(?P<recordid>\d+)/',
views.virtualevent_disqualify_view),
url(r'^list-workouts/$',views.workouts_view),
url(r'^list-courses/$',views.courses_view),
url(r'^courses/upload/$',views.course_upload_view),
url(r'^workout/addmanual/$',views.addmanual_view),
url(r'^team-compare-select/workout/(?P<id>\d+)/team/(?P<teamid>\d+)/user/(?P<userid>\d+)/$',views.team_comparison_select),
url(r'^team-compare-select/team/(?P<teamid>\d+)/(?P<startdatestring>\d+-\d+-\d+)/(?P<enddatestring>\d+-\d+-\d+)/user/(?P<userid>\d+)/$',views.team_comparison_select),
url(r'^team-compare-select/team/(?P<teamid>\d+)/(?P<startdatestring>\d+-\d+-\d+)/(?P<enddatestring>\d+-\d+-\d+)/$',views.team_comparison_select),
url(r'^team-compare-select/workout/(?P<id>\d+)/team/(?P<teamid>\d+)/$',views.team_comparison_select),
url(r'^team-compare-select/team/(?P<teamid>\d+)/(?P<startdatestring>\d+-\d+-\d+)/(?P<enddatestring>\d+-\d+-\d+)/$',views.team_comparison_select),
url(r'^team-compare-select/team/(?P<teamid>\d+)/(?P<startdatestring>\d+-\d+-\d+)/(?P<enddatestring>\d+-\d+-\d+)/user/(?P<userid>\d+)/$',views.team_comparison_select),
url(r'^team-compare-select/workout/(?P<id>\d+)/team/(?P<teamid>\d+)/$',views.team_comparison_select),
url(r'^team-compare-select/workout/(?P<id>\d+)/team/(?P<teamid>\d+)/user/(?P<userid>\d+)/$',views.team_comparison_select),
url(r'^team-compare-select/workout/(?P<id>\d+)/(?P<startdatestring>\d+-\d+-\d+)/(?P<enddatestring>\d+-\d+-\d+)/$',views.team_comparison_select),
url(r'^team-compare-select/workout/(?P<id>\d+)/(?P<startdatestring>\d+-\d+-\d+)/(?P<enddatestring>\d+-\d+-\d+)/user/(?P<userid>\d+)/$',views.team_comparison_select),
url(r'^team-compare-select/(?P<startdatestring>\d+-\d+-\d+)/(?P<enddatestring>\d+-\d+-\d+)/user/(?P<userid>\d+)/$',views.team_comparison_select),
url(r'^team-compare-select/(?P<startdatestring>\d+-\d+-\d+)/(?P<enddatestring>\d+-\d+-\d+)/$',views.team_comparison_select),
url(r'^team-compare-select/workout/(?P<id>\d+)/user/(?P<userid>\d+)/$',views.team_comparison_select),
url(r'^team-compare-select/team/(?P<teamid>\d+)/user/(?P<userid>\d+)/$',views.team_comparison_select),
url(r'^team-compare-select/workout/(?P<id>\d+)/$',views.team_comparison_select),
url(r'^team-compare-select/team/(?P<teamid>\d+)/$',views.team_comparison_select),
url(r'^team-compare-select/user/(?P<userid>\d+)/$',views.team_comparison_select),
url(r'^team-compare-select/$',views.team_comparison_select),
url(r'^workouts-join-select/team/(?P<teamid>\d+)/(?P<startdatestring>\d+-\d+-\d+)/(?P<enddatestring>\d+-\d+-\d+)/$',views.workouts_join_select),
url(r'^workouts-join/$',views.workouts_join_view),
url(r'^workouts-join-select/team/(?P<teamid>\d+)/$',views.workouts_join_select),
url(r'^workouts-join-select/(?P<startdatestring>\d+-\d+-\d+)/(?P<enddatestring>\d+-\d+-\d+)/$',views.workouts_join_select),
url(r'^workouts-join-select/$',views.workouts_join_select),
url(r'^user-boxplot-select/user/(?P<userid>\d+)/$',views.user_boxplot_select),
url(r'^user-boxplot-select/$',views.user_boxplot_select),
url(r'^user-multiflex-select/user/(?P<userid>\d+)/(?P<startdatestring>\d+-\d+-\d+)/(?P<enddatestring>\d+-\d+-\d+)/$',views.user_multiflex_select),
url(r'^user-multiflex-select/user/(?P<userid>\d+)/$',views.user_multiflex_select),
url(r'^user-multiflex-select/(?P<startdatestring>\d+-\d+-\d+)/(?P<enddatestring>\d+-\d+-\d+)/$',views.user_multiflex_select),
url(r'^user-multiflex-select/$',views.user_multiflex_select),
url(r'^list-jobs/$',views.session_jobs_view),
url(r'^jobs-status/$',views.session_jobs_status),
views.virtualevent_disqualify_view,name='virtualevent_submit_disqualify_view'),
url(r'^list-workouts/$',views.workouts_view,
name='workouts_view'),
url(r'^list-courses/$',views.courses_view,name='courses_view'),
url(r'^courses/upload/$',views.course_upload_view,name='course_upload_view'),
url(r'^workout/addmanual/$',views.addmanual_view,name='addmanual_view'),
url(r'^team-compare-select/workout/(?P<id>\d+)/team/(?P<teamid>\d+)/user/(?P<userid>\d+)/$',views.team_comparison_select,name='team_comparison_select'),
url(r'^team-compare-select/team/(?P<teamid>\d+)/(?P<startdatestring>\d+-\d+-\d+)/(?P<enddatestring>\d+-\d+-\d+)/user/(?P<userid>\d+)/$',views.team_comparison_select,name='team_comparison_select'),
url(r'^team-compare-select/team/(?P<teamid>\d+)/(?P<startdatestring>\d+-\d+-\d+)/(?P<enddatestring>\d+-\d+-\d+)/$',views.team_comparison_select,name='team_comparison_select'),
url(r'^team-compare-select/workout/(?P<id>\d+)/team/(?P<teamid>\d+)/$',views.team_comparison_select,name='team_comparison_select'),
url(r'^team-compare-select/team/(?P<teamid>\d+)/(?P<startdatestring>\d+-\d+-\d+)/(?P<enddatestring>\d+-\d+-\d+)/$',views.team_comparison_select,name='team_comparison_select'),
url(r'^team-compare-select/team/(?P<teamid>\d+)/(?P<startdatestring>\d+-\d+-\d+)/(?P<enddatestring>\d+-\d+-\d+)/user/(?P<userid>\d+)/$',views.team_comparison_select,name='team_comparison_select'),
url(r'^team-compare-select/workout/(?P<id>\d+)/team/(?P<teamid>\d+)/$',views.team_comparison_select,name='team_comparison_select'),
url(r'^team-compare-select/workout/(?P<id>\d+)/team/(?P<teamid>\d+)/user/(?P<userid>\d+)/$',views.team_comparison_select,name='team_comparison_select'),
url(r'^team-compare-select/workout/(?P<id>\d+)/(?P<startdatestring>\d+-\d+-\d+)/(?P<enddatestring>\d+-\d+-\d+)/$',views.team_comparison_select,name='team_comparison_select'),
url(r'^team-compare-select/workout/(?P<id>\d+)/(?P<startdatestring>\d+-\d+-\d+)/(?P<enddatestring>\d+-\d+-\d+)/user/(?P<userid>\d+)/$',views.team_comparison_select,name='team_comparison_select'),
url(r'^team-compare-select/(?P<startdatestring>\d+-\d+-\d+)/(?P<enddatestring>\d+-\d+-\d+)/user/(?P<userid>\d+)/$',views.team_comparison_select,name='team_comparison_select'),
url(r'^team-compare-select/(?P<startdatestring>\d+-\d+-\d+)/(?P<enddatestring>\d+-\d+-\d+)/$',views.team_comparison_select,name='team_comparison_select'),
url(r'^team-compare-select/workout/(?P<id>\d+)/user/(?P<userid>\d+)/$',views.team_comparison_select,name='team_comparison_select'),
url(r'^team-compare-select/team/(?P<teamid>\d+)/user/(?P<userid>\d+)/$',views.team_comparison_select,name='team_comparison_select'),
url(r'^team-compare-select/workout/(?P<id>\d+)/$',views.team_comparison_select,name='team_comparison_select'),
url(r'^team-compare-select/team/(?P<teamid>\d+)/$',views.team_comparison_select,name='team_comparison_select'),
url(r'^team-compare-select/user/(?P<userid>\d+)/$',views.team_comparison_select,name='team_comparison_select'),
url(r'^team-compare-select/$',views.team_comparison_select,name='team_comparison_select'),
url(r'^workouts-join-select/team/(?P<teamid>\d+)/(?P<startdatestring>\d+-\d+-\d+)/(?P<enddatestring>\d+-\d+-\d+)/$',views.workouts_join_select,name='workouts_join_select'),
url(r'^workouts-join/$',views.workouts_join_view,name='workouts_join_view'),
url(r'^workouts-join-select/team/(?P<teamid>\d+)/$',views.workouts_join_select,name='workouts_join_select'),
url(r'^workouts-join-select/(?P<startdatestring>\d+-\d+-\d+)/(?P<enddatestring>\d+-\d+-\d+)/$',views.workouts_join_select,name='workouts_join_select'),
url(r'^workouts-join-select/$',views.workouts_join_select,name='workouts_join_select'),
url(r'^user-boxplot-select/user/(?P<userid>\d+)/$',views.user_boxplot_select,name='user_boxplot_select'),
url(r'^user-boxplot-select/$',views.user_boxplot_select,name='user_boxplot_select'),
url(r'^user-multiflex-select/user/(?P<userid>\d+)/(?P<startdatestring>\d+-\d+-\d+)/(?P<enddatestring>\d+-\d+-\d+)/$',views.user_multiflex_select,name='user_multiflex_select'),
url(r'^user-multiflex-select/user/(?P<userid>\d+)/$',views.user_multiflex_select,name='user_multiflex_select'),
url(r'^user-multiflex-select/(?P<startdatestring>\d+-\d+-\d+)/(?P<enddatestring>\d+-\d+-\d+)/$',views.user_multiflex_select,name='user_multiflex_select'),
url(r'^user-multiflex-select/$',views.user_multiflex_select,name='user_multiflex_select'),
url(r'^list-jobs/$',views.session_jobs_view,name='session_jobs_view'),
url(r'^jobs-status/$',views.session_jobs_status,name='session_jobs_status'),
url(r'^job-kill/(?P<id>.*)/$',views.kill_async_job),
url(r'^test-job/(?P<aantal>\d+)/$',views.test_job_view),
url(r'^test-job2/(?P<aantal>\d+)/$',views.test_job_view2),
url(r'^record-progress/(?P<value>\d+)/(?P<id>.*)/$',views.post_progress),
url(r'^record-progress/(?P<value>\d+)/(?P<id>.*)/$',views.post_progress,name='post_progress'),
url(r'^record-progress/(?P<id>.*)/$',views.post_progress),
url(r'^record-progress/$',views.post_progress),
url(r'^list-graphs/$',views.graphs_view),
url(r'^fitness-progress/$',views.fitnessmetric_view),
url(r'^fitness-progress/user/(?P<id>\d+)/$',views.fitnessmetric_view),
url(r'^fitness-progress/user/(?P<id>\d+)/(?P<mode>\w+.*)/$',views.fitnessmetric_view),
url(r'^ote-bests/user/(?P<theuser>\d+)/(?P<startdatestring>\d+-\d+-\d+)/(?P<enddatestring>\d+-\d+-\d+)/$',views.rankings_view),
url(r'^ote-bests/user/(?P<theuser>\d+)/$',views.rankings_view),
url(r'^ote-bests/(?P<startdatestring>\d+-\d+-\d+)/(?P<enddatestring>\d+-\d+-\d+)/$',views.rankings_view),
url(r'^ote-bests/$',views.rankings_view),
url(r'^(?P<theuser>\d+)/ote-bests/$',views.rankings_view),
url(r'^(?P<theuser>\d+)/ote-bests2/(?P<startdatestring>\d+-\d+-\d+)/(?P<enddatestring>\d+-\d+-\d+)/$',views.rankings_view2),
url(r'^ote-bests2/user/(?P<theuser>\d+)/$',views.rankings_view2),
url(r'^ote-bests2/(?P<startdatestring>\d+-\d+-\d+)/(?P<enddatestring>\d+-\d+-\d+)/$',views.rankings_view2),
url(r'^ote-bests2/$',views.rankings_view2),
url(r'^otw-bests/user/(?P<theuser>\d+)/(?P<startdatestring>\d+-\d+-\d+)/(?P<enddatestring>\d+-\d+-\d+)/$',views.otwrankings_view),
url(r'^otw-bests/(?P<startdatestring>\d+-\d+-\d+)/(?P<enddatestring>\d+-\d+-\d+)/$',views.otwrankings_view),
url(r'^otw-bests/user/(?P<theuser>\d+)/$',views.otwrankings_view),
url(r'^otw-bests/$',views.otwrankings_view),
url(r'^ote-ranking/user/(?P<theuser>\d+)/(?P<startdatestring>\d+-\d+-\d+)/(?P<enddatestring>\d+-\d+-\d+)/$',views.oterankings_view),
url(r'^ote-ranking/(?P<startdatestring>\d+-\d+-\d+)/(?P<enddatestring>\d+-\d+-\d+)/$',views.oterankings_view),
url(r'^ote-ranking/$',views.oterankings_view),
url(r'^ote-ranking/user/(?P<theuser>\d+)/$',views.oterankings_view),
url(r'^flexall/(?P<xparam>\w+.*)/(?P<yparam1>\w+.*)/(?P<yparam2>\w+.*)/(?P<startdatestring>\d+-\d+-\d+)/(?P<enddatestring>\d+-\d+-\d+)/user/(?P<theuser>\d+)/$',views.cum_flex),
url(r'^flexall/(?P<xparam>\w+.*)/(?P<yparam1>\w+.*)/(?P<yparam2>\w+.*)/(?P<startdatestring>\d+-\d+-\d+)/(?P<enddatestring>\d+-\d+-\d+)/$',views.cum_flex),
url(r'^flexall/(?P<xparam>\w+.*)/(?P<yparam1>\w+.*)/(?P<yparam2>\w+.*)/$',views.cum_flex),
url(r'^flexall/user/(?P<theuser>\d+)/$',views.cum_flex),
url(r'^flexall/$',views.cum_flex),
url(r'^flexalldata/$',views.cum_flex_data),
url(r'^histo/user/(?P<theuser>\d+)/$',views.histo),
url(r'^histodata/$',views.histo_data),
url(r'^histo/user/(?P<theuser>\d+)/(?P<startdatestring>\d+-\d+-\d+)/(?P<enddatestring>\d+-\d+-\d+)/$',views.histo),
url(r'^histo/$',views.histo),
url(r'^cumstats/user/(?P<theuser>\d+)/$',views.cumstats),
url(r'^cumstats/(?P<startdatestring>\d+-\d+-\d+)/(?P<enddatestring>\d+-\d+-\d+)/$',views.cumstats),
url(r'^cumstats/user/(?P<theuser>\d+)/(?P<startdatestring>\d+-\d+-\d+)/(?P<enddatestring>\d+-\d+-\d+)/$',views.cumstats),
url(r'^cumstats/(?P<startdatestring>\d+-\d+-\d+)/(?P<enddatestring>\d+-\d+-\d+)/$',views.cumstats),
url(r'^cumstats/$',views.cumstats),
url(r'^graph/(?P<id>\d+)/$',views.graph_show_view),
url(r'^list-graphs/$',views.graphs_view,name='graphs_view'),
url(r'^fitness-progress/$',views.fitnessmetric_view,name='fitnessmetric_view'),
url(r'^fitness-progress/user/(?P<id>\d+)/$',views.fitnessmetric_view,name='fitnessmetric_view'),
url(r'^fitness-progress/user/(?P<id>\d+)/(?P<mode>\w+.*)/$',views.fitnessmetric_view,name='fitnessmetric_view'),
url(r'^ote-bests/user/(?P<theuser>\d+)/(?P<startdatestring>\d+-\d+-\d+)/(?P<enddatestring>\d+-\d+-\d+)/$',views.rankings_view,name='rankings_view'),
url(r'^ote-bests/user/(?P<theuser>\d+)/$',views.rankings_view,name='rankings_view'),
url(r'^ote-bests/(?P<startdatestring>\d+-\d+-\d+)/(?P<enddatestring>\d+-\d+-\d+)/$',views.rankings_view,name='rankings_view'),
url(r'^ote-bests/$',views.rankings_view,name='rankings_view'),
url(r'^(?P<theuser>\d+)/ote-bests/$',views.rankings_view,name='rankings_view'),
url(r'^(?P<theuser>\d+)/ote-bests2/(?P<startdatestring>\d+-\d+-\d+)/(?P<enddatestring>\d+-\d+-\d+)/$',views.rankings_view2,name='rankings_view2'),
url(r'^ote-bests2/user/(?P<theuser>\d+)/$',views.rankings_view2,name='rankings_view2'),
url(r'^ote-bests2/(?P<startdatestring>\d+-\d+-\d+)/(?P<enddatestring>\d+-\d+-\d+)/$',views.rankings_view2,name='rankings_view2'),
url(r'^ote-bests2/$',views.rankings_view2,name='rankings_view2'),
url(r'^otw-bests/user/(?P<theuser>\d+)/(?P<startdatestring>\d+-\d+-\d+)/(?P<enddatestring>\d+-\d+-\d+)/$',views.otwrankings_view,name='otwrankings_view'),
url(r'^otw-bests/(?P<startdatestring>\d+-\d+-\d+)/(?P<enddatestring>\d+-\d+-\d+)/$',views.otwrankings_view,name='otwrankings_view'),
url(r'^otw-bests/user/(?P<theuser>\d+)/$',views.otwrankings_view,name='otwrankings_view'),
url(r'^otw-bests/$',views.otwrankings_view,name='otwrankings_view'),
url(r'^ote-ranking/user/(?P<theuser>\d+)/(?P<startdatestring>\d+-\d+-\d+)/(?P<enddatestring>\d+-\d+-\d+)/$',views.oterankings_view,name='oterankings_view'),
url(r'^ote-ranking/(?P<startdatestring>\d+-\d+-\d+)/(?P<enddatestring>\d+-\d+-\d+)/$',views.oterankings_view,name='oterankings_view'),
url(r'^ote-ranking/$',views.oterankings_view,name='oterankings_view'),
url(r'^ote-ranking/user/(?P<theuser>\d+)/$',views.oterankings_view,name='oterankings_view'),
url(r'^flexall/(?P<xparam>\w+.*)/(?P<yparam1>\w+.*)/(?P<yparam2>\w+.*)/(?P<startdatestring>\d+-\d+-\d+)/(?P<enddatestring>\d+-\d+-\d+)/user/(?P<theuser>\d+)/$',views.cum_flex,name='cum_flex'),
url(r'^flexall/(?P<xparam>\w+.*)/(?P<yparam1>\w+.*)/(?P<yparam2>\w+.*)/(?P<startdatestring>\d+-\d+-\d+)/(?P<enddatestring>\d+-\d+-\d+)/$',views.cum_flex,name='cum_flex'),
url(r'^flexall/(?P<xparam>\w+.*)/(?P<yparam1>\w+.*)/(?P<yparam2>\w+.*)/$',views.cum_flex,name='cum_flex'),
url(r'^flexall/user/(?P<theuser>\d+)/$',views.cum_flex,name='cum_flex'),
url(r'^flexall/$',views.cum_flex,name='cum_flex'),
url(r'^flexalldata/$',views.cum_flex_data,name='cum_flex_data'),
url(r'^histo/user/(?P<theuser>\d+)/$',views.histo,name='histo'),
url(r'^histodata/$',views.histo_data,name='histo_data'),
url(r'^histo/user/(?P<theuser>\d+)/(?P<startdatestring>\d+-\d+-\d+)/(?P<enddatestring>\d+-\d+-\d+)/$',views.histo,name='histo'),
url(r'^histo/$',views.histo,name='histo'),
url(r'^cumstats/user/(?P<theuser>\d+)/$',views.cumstats,name='cumstats'),
url(r'^cumstats/(?P<startdatestring>\d+-\d+-\d+)/(?P<enddatestring>\d+-\d+-\d+)/$',views.cumstats,name='cumstats'),
url(r'^cumstats/user/(?P<theuser>\d+)/(?P<startdatestring>\d+-\d+-\d+)/(?P<enddatestring>\d+-\d+-\d+)/$',views.cumstats,name='cumstats'),
url(r'^cumstats/(?P<startdatestring>\d+-\d+-\d+)/(?P<enddatestring>\d+-\d+-\d+)/$',views.cumstats,name='cumstats'),
url(r'^cumstats/$',views.cumstats,name='cumstats'),
url(r'^graph/(?P<id>\d+)/$',views.graph_show_view,name='graph_show_view'),
url(r'^graph/(?P<pk>\d+)/delete/$',views.GraphDelete.as_view(),name='graph_delete'),
url(r'^workout/(?P<id>\d+)/get-thumbnails/$',views.get_thumbnails),
url(r'^workout/(?P<id>\d+)/toggle-ranking/$',views.workout_toggle_ranking),
url(r'^workout/(?P<id>\d+)/get-thumbnails/$',views.get_thumbnails,name='get_thumbnails'),
url(r'^workout/(?P<id>\d+)/toggle-ranking/$',views.workout_toggle_ranking,name='workout_toggle_ranking'),
url(r'^workout/(?P<id>\d+)/get-testscript/$',views.get_testscript),
url(r'^workout/upload/team/$',views.team_workout_upload_view),
url(r'^workout/upload/team/$',views.team_workout_upload_view,name='team_workout_upload_view'),
url(r'^workout/upload/$',views.workout_upload_view,name='workout_upload_view'),
url(r'^workout/(?P<id>\d+)/histo/$',views.workout_histo_view),
url(r'^workout/(?P<id>\d+)/histo/$',views.workout_histo_view,name='workout_histo_view'),
url(r'^workout/(?P<id>\d+)/task/$',views.workout_test_task_view),
url(r'^workout/(?P<id>\d+)/forcecurve/$',views.workout_forcecurve_view),
url(r'^workout/(?P<id>\d+)/unsubscribe/$',views.workout_unsubscribe_view),
url(r'^workout/(?P<id>\d+)/forcecurve/$',views.workout_forcecurve_view,name='workout_forcecurve_view'),
url(r'^workout/(?P<id>\d+)/unsubscribe/$',views.workout_unsubscribe_view,name='workout_unsubscribe_view'),
# url(r'^workout/(?P<id>\d+)/export/$',views.workout_export_view),
url(r'^workout/(?P<id>\d+)/comment/$',views.workout_comment_view),
url(r'^workout/(?P<id>\d+)/emailtcx/$',views.workout_tcxemail_view),
url(r'^workout/(?P<id>\d+)/emailgpx/$',views.workout_gpxemail_view),
url(r'^workout/(?P<id>\d+)/emailcsv/$',views.workout_csvemail_view),
url(r'^workout/(?P<id>\d+)/csvtoadmin/$',views.workout_csvtoadmin_view),
url(r'^ergcpdatatoadmin/(?P<theuser>\d+)/(?P<startdatestring>\d+-\d+-\d+)/(?P<enddatestring>\d+-\d+-\d+)/$',views.otecp_toadmin_view),
url(r'^otwcpdatatoadmin/(?P<theuser>\d+)/(?P<startdatestring>\d+-\d+-\d+)/(?P<enddatestring>\d+-\d+-\d+)/$',views.otwcp_toadmin_view),
url(r'^workout/(?P<id>\d+)/comment/$',views.workout_comment_view,name='workout_comment_view'),
url(r'^workout/(?P<id>\d+)/emailtcx/$',views.workout_tcxemail_view,name='workout_tcxemail_view'),
url(r'^workout/(?P<id>\d+)/emailgpx/$',views.workout_gpxemail_view,name='workout_gpxemail_view'),
url(r'^workout/(?P<id>\d+)/emailcsv/$',views.workout_csvemail_view,name='workout_csvemail_view'),
url(r'^workout/(?P<id>\d+)/csvtoadmin/$',views.workout_csvtoadmin_view,name='workout_csvtoadmin_view'),
url(r'^ergcpdatatoadmin/(?P<theuser>\d+)/(?P<startdatestring>\d+-\d+-\d+)/(?P<enddatestring>\d+-\d+-\d+)/$',views.otecp_toadmin_view,name='otecp_toadmin_view'),
url(r'^otwcpdatatoadmin/(?P<theuser>\d+)/(?P<startdatestring>\d+-\d+-\d+)/(?P<enddatestring>\d+-\d+-\d+)/$',views.otwcp_toadmin_view,name='otwcp_toadmin_view'),
# url(r'^workout/compare/(?P<id>\d+)/$',views.workout_comparison_list),
# url(r'^workout/compare2/(?P<id1>\d+)/(?P<id2>\d+)/(?P<xparam>\w+.*)/(?P<yparam>\w+.*)/$',views.workout_comparison_view),
# url(r'^workout/compare/(?P<id>\d+)/(?P<startdatestring>\d+-\d+-\d+)/(?P<enddatestring>\d+-\d+-\d+)/$',views.workout_comparison_list),
url(r'^workout/(?P<id>\d+)/edit/$',views.workout_edit_view,
name='workout_edit_view'),
url(r'^workout/(?P<id>\d+)/map/$',views.workout_map_view),
url(r'^workout/(?P<id>\d+)/map/$',views.workout_map_view,name='workout_map_view'),
# url(r'^workout/(?P<id>\d+)/setprivate/$',views.workout_setprivate_view),
url(r'^workout/(?P<id>\d+)/updatecp/$',views.workout_update_cp_view),
url(r'^workout/(?P<id>\d+)/updatecp/$',views.workout_update_cp_view,name='workout_update_cp_view'),
# url(r'^workout/(?P<id>\d+)/makepublic/$',views.workout_makepublic_view),
# url(r'^workout/(?P<id>\d+)/geeky/$',views.workout_geeky_view),
# url(r'^workout/(?P<id>\d+)/advanced/$',views.workout_advanced_view),
url(r'^workout/(?P<id>\d+)/instroke/(?P<metric>\w+.*)/$',views.instroke_chart),
url(r'^workout/(?P<id>\d+)/instroke/$',views.instroke_view),
url(r'^workout/(?P<id>\d+)/instroke/(?P<metric>\w+.*)/$',views.instroke_chart,name='instroke_chart'),
url(r'^workout/(?P<id>\d+)/instroke/$',views.instroke_view,name='instroke_view'),
url(r'^workout/(?P<id>\d+)/stats/$',views.workout_stats_view,name='workout_stats_view'),
url(r'^workout/(?P<id>\d+)/data/$',views.workout_data_view,
name='workout_data_view'),
url(r'^workout/(?P<id>\d+)/otwsetpower/$',views.workout_otwsetpower_view),
url(r'^workout/(?P<id>\d+)/interactiveotwplot/$',views.workout_otwpowerplot_view),
url(r'^workout/(?P<id>\d+)/wind/$',views.workout_wind_view),
url(r'^workout/(?P<id>\d+)/image/$',views.workout_uploadimage_view),
url(r'^virtualevent/(?P<id>\d+)/compare/$',views.virtualevent_compare_view),
url(r'^workout/(?P<id>\d+)/otwsetpower/$',views.workout_otwsetpower_view,name='workout_otwsetpower_view'),
url(r'^workout/(?P<id>\d+)/interactiveotwplot/$',views.workout_otwpowerplot_view,name='workout_otwpowerplot_view'),
url(r'^workout/(?P<id>\d+)/wind/$',views.workout_wind_view,name='workout_wind_view'),
url(r'^workout/(?P<id>\d+)/image/$',views.workout_uploadimage_view,name='workout_uploadimage_view'),
url(r'^virtualevent/(?P<id>\d+)/compare/$',views.virtualevent_compare_view,name='virtualevent_compare_view'),
url(r'^virtualevent/(?P<id>\d+)/image/$',
views.virtualevent_uploadimage_view),
views.virtualevent_uploadimage_view,name='virtualevent_uploadimage_view'),
url(r'^virtualevent/(?P<id>\d+)/setimage/(?P<logoid>\d+)/$',
views.virtualevent_setlogo_view),
views.virtualevent_setlogo_view,name='virtualevent_setlog_view'),
url(r'^logo/(?P<id>\d+)/delete/$',
views.logo_delete_view),
url(r'^workout/(?P<id>\d+)/darkskywind/$',views.workout_downloadwind_view),
url(r'^workout/(?P<id>\d+)/metar/(?P<airportcode>\w+)/$',views.workout_downloadmetar_view),
url(r'^workout/(?P<id>\d+)/stream/$',views.workout_stream_view),
views.logo_delete_view,name='logo_delete_view'),
url(r'^workout/(?P<id>\d+)/darkskywind/$',views.workout_downloadwind_view,name='workout_downloadwind_view'),
url(r'^workout/(?P<id>\d+)/metar/(?P<airportcode>\w+)/$',views.workout_downloadmetar_view,name='workout_downloadmetar_view'),
url(r'^workout/(?P<id>\d+)/stream/$',views.workout_stream_view,name='workout_stream_view'),
# url(r'^workout/(?P<id>\d+)/crewnerdsummary/$',views.workout_crewnerd_summary_view),
url(r'^workout/(?P<id>\d+)/editintervals/$',views.workout_summary_edit_view,
name='workout_summary_edit_view'),
url(r'^workout/(?P<id>\d+)/restore/$',views.workout_summary_restore_view),
url(r'^workout/(?P<id>\d+)/split/$',views.workout_split_view),
url(r'^workout/(?P<id>\d+)/restore/$',views.workout_summary_restore_view,name='workout_summary_restore_view'),
url(r'^workout/(?P<id>\d+)/split/$',views.workout_split_view,name='workout_split_view'),
# url(r'^workout/(?P<id>\d+)/interactiveplot/$',views.workout_biginteractive_view),
url(r'^workout/(?P<id>\d+)/view/$',views.workout_view),
url(r'^workout/(?P<id>\d+)/$',views.workout_view),
url(r'^workout/fusion/(?P<id1>\d+)/(?P<id2>\d+)/$',views.workout_fusion_view),
url(r'^workout/fusion/(?P<id>\d+)/$',views.workout_fusion_list),
url(r'^workout/fusion/(?P<id>\d+)/(?P<startdatestring>\d+-\d+-\d+)/(?P<enddatestring>\d+-\d+-\d+)/$',views.workout_fusion_list),
url(r'^workout/(?P<id>\d+)/view/$',views.workout_view,name='workout_view'),
url(r'^workout/(?P<id>\d+)/$',views.workout_view,name='workout_view'),
url(r'^workout/fusion/(?P<id1>\d+)/(?P<id2>\d+)/$',views.workout_fusion_view,name='workout_fusion_view'),
url(r'^workout/fusion/(?P<id>\d+)/$',views.workout_fusion_list,name='workout_fusion_list'),
url(r'^workout/fusion/(?P<id>\d+)/(?P<startdatestring>\d+-\d+-\d+)/(?P<enddatestring>\d+-\d+-\d+)/$',views.workout_fusion_list,name='workout_fusion_list'),
url(r'^help/$',TemplateView.as_view(
template_name='help.html'),name='help'
),
@@ -308,125 +317,126 @@ urlpatterns = [
# keeping the old URLs for retrofit
url(r'^workout/(?P<id>\d+)/addtimeplot/$',
views.workout_add_chart_view,
{'plotnr':'1'}),
{'plotnr':'1'},name='workout_add_chart_view'),
url(r'^workout/(?P<id>\d+)/adddistanceplot/$',
views.workout_add_chart_view,
{'plotnr':'2'}),
{'plotnr':'2'},name='workout_add_chart_view'),
url(r'^workout/(?P<id>\d+)/addpiechart/$',
views.workout_add_chart_view,
{'plotnr':'3'}),
{'plotnr':'3'},name='workout_add_chart_view'),
url(r'^workout/(?P<id>\d+)/adddistanceplot2/$',
views.workout_add_chart_view,
{'plotnr':'7'}),
{'plotnr':'7'},name='workout_add_chart_view'),
url(r'^workout/(?P<id>\d+)/addtimeplot2/$',
views.workout_add_chart_view,
{'plotnr':'8'}),
{'plotnr':'8'},name='workout_add_chart_view'),
url(r'^workout/(?P<id>\d+)/addotwpowerplot/$',
views.workout_add_chart_view,
{'plotnr':'9'}),
{'plotnr':'9'},name='workout_add_chart_view'),
url(r'^workout/(?P<id>\d+)/addpowerpiechart/$',
views.workout_add_chart_view,
{'plotnr':'13'}),
{'plotnr':'13'},name='workout_add_chart_view'),
# addstatic is the new URL -> need to update in templates
url(r'^workout/(?P<id>\d+)/addstatic/(?P<plotnr>\d+)/$',
views.workout_add_chart_view),
url(r'^workout/(?P<id>\d+)/addstatic/$',views.workout_add_chart_view),
views.workout_add_chart_view,name='workout_add_chart_view'),
url(r'^workout/(?P<id>\d+)/addstatic/$',views.workout_add_chart_view,name='workout_add_chart_view'),
url(r'^workout/(?P<pk>\d+)/delete/$',login_required(
views.WorkoutDelete.as_view()),
name='workout_delete'),
url(r'^workout/(?P<id>\d+)/smoothenpace/$',views.workout_smoothenpace_view),
url(r'^workout/(?P<id>\d+)/undosmoothenpace/$',views.workout_undo_smoothenpace_view),
url(r'^workout/c2import/$',views.workout_c2import_view),
url(r'^workout/c2list/$',views.workout_c2import_view),
url(r'^workout/c2list/(?P<page>\d+)/$',views.workout_c2import_view),
url(r'^workout/c2list/user/(?P<userid>\d+)/$',views.workout_c2import_view),
url(r'^workout/c2list/(?P<page>\d+)/user/(?P<userid>\d+)/$',views.workout_c2import_view),
url(r'^workout/stravaimport/$',views.workout_stravaimport_view),
url(r'^workout/stravaimport/user/(?P<userid>\d+)/$',views.workout_stravaimport_view),
url(r'^workout/c2import/all/$',views.workout_getc2workout_all),
url(r'^workout/c2import/all/(?P<page>\d+)/$',views.workout_getc2workout_all),
url(r'^workout/(?P<source>\w+.*)import/(?P<externalid>\d+)/$',views.workout_getimportview),
url(r'^workout/stravaimport/all/$',views.workout_getstravaworkout_all),
url(r'^workout/stravaimport/next/$',views.workout_getstravaworkout_next),
url(r'^workout/sporttracksimport/$',views.workout_sporttracksimport_view),
url(r'^workout/sporttracksimport/user/(?P<userid>\d+)/$',views.workout_sporttracksimport_view),
url(r'^workout/sporttracksimport/all/$',views.workout_getsporttracksworkout_all),
url(r'^workout/polarimport/$',views.workout_polarimport_view),
url(r'^workout/polarimport/user/(?P<userid>\d+)/',views.workout_polarimport_view),
url(r'^workout/runkeeperimport/$',views.workout_runkeeperimport_view),
url(r'^workout/runkeeperimport/user/(?P<userid>\d+)/$',views.workout_runkeeperimport_view),
url(r'^workout/underarmourimport/$',views.workout_underarmourimport_view),
url(r'^workout/(?P<id>\d+)/smoothenpace/$',views.workout_smoothenpace_view,name='workout_smoothenpace_view'),
url(r'^workout/(?P<id>\d+)/undosmoothenpace/$',views.workout_undo_smoothenpace_view,name='workout_undo_smoothenpace_view'),
url(r'^workout/c2import/$',views.workout_c2import_view,name='workout_c2import_view'),
url(r'^workout/c2list/$',views.workout_c2import_view,name='workout_c2import_view'),
url(r'^workout/c2list/(?P<page>\d+)/$',views.workout_c2import_view,name='workout_c2import_view'),
url(r'^workout/c2list/user/(?P<userid>\d+)/$',views.workout_c2import_view,name='workout_c2import_view'),
url(r'^workout/c2list/(?P<page>\d+)/user/(?P<userid>\d+)/$',views.workout_c2import_view,name='workout_c2import_view'),
url(r'^workout/stravaimport/$',views.workout_stravaimport_view,name='workout_stravaimport_view'),
url(r'^workout/stravaimport/user/(?P<userid>\d+)/$',views.workout_stravaimport_view,name='workout_stravaimport_view'),
url(r'^workout/c2import/all/$',views.workout_getc2workout_all,name='workout_getc2workout_all'),
url(r'^workout/c2import/all/(?P<page>\d+)/$',views.workout_getc2workout_all,name='workout_getc2workout_all'),
url(r'^workout/(?P<source>\w+.*)import/(?P<externalid>\d+)/$',views.workout_getimportview,name='workout_getimportview'),
url(r'^workout/stravaimport/all/$',views.workout_getstravaworkout_all,name='workout_getstravaworkout_all'),
url(r'^workout/stravaimport/next/$',views.workout_getstravaworkout_next,name='workout_getstravaworkout_next'),
url(r'^workout/sporttracksimport/$',views.workout_sporttracksimport_view,name='workout_sporttracksimport_view'),
url(r'^workout/sporttracksimport/user/(?P<userid>\d+)/$',views.workout_sporttracksimport_view,name='workout_sporttracksimport_view'),
url(r'^workout/sporttracksimport/all/$',views.workout_getsporttracksworkout_all,name='workout_getsporttracksworkout_all'),
url(r'^workout/polarimport/$',views.workout_polarimport_view,name='workout_polarimport_view'),
url(r'^workout/polarimport/user/(?P<userid>\d+)/',views.workout_polarimport_view,name='workout_polarimport_view'),
url(r'^workout/runkeeperimport/$',views.workout_runkeeperimport_view,name='workout_runkeeperimport_view'),
url(r'^workout/runkeeperimport/user/(?P<userid>\d+)/$',views.workout_runkeeperimport_view,name='workout_runkeeperimport_view'),
url(r'^workout/underarmourimport/$',views.workout_underarmourimport_view,name='workout_underarmourimport_view'),
# url(r'^workout/(?P<id>\d+)/deleteconfirm/$',views.workout_delete_confirm_view),
url(r'^workout/(?P<id>\d+)/c2uploadw/$',views.workout_c2_upload_view),
url(r'^workout/(?P<id>\d+)/stravauploadw/$',views.workout_strava_upload_view),
url(r'^workout/(?P<id>\d+)/recalcsummary/$',views.workout_recalcsummary_view),
url(r'^workout/(?P<id>\d+)/sporttracksuploadw/$',views.workout_sporttracks_upload_view),
url(r'^workout/(?P<id>\d+)/runkeeperuploadw/$',views.workout_runkeeper_upload_view),
url(r'^workout/(?P<id>\d+)/underarmouruploadw/$',views.workout_underarmour_upload_view),
url(r'^workout/(?P<id>\d+)/tpuploadw/$',views.workout_tp_upload_view),
url(r'^multi-compare/workout/(?P<id>\d+)/user/(?P<userid>\d+)/$',views.multi_compare_view),
url(r'^multi-compare/workout/(?P<id>\d+)/$',views.multi_compare_view),
url(r'^multi-compare/$',views.multi_compare_view),
url(r'^user-boxplot/user/(?P<userid>\d+)/$',views.boxplot_view),
url(r'^user-boxplot/$',views.boxplot_view),
url(r'^user-boxplot-data/$',views.boxplot_view_data),
url(r'^user-multiflex/user/(?P<userid>\d+)/$',views.multiflex_view),
url(r'^user-multiflex/$',views.multiflex_view),
url(r'^user-multiflex-data/$',views.multiflex_data),
url(r'^me/deactivate/$',views.deactivate_user),
url(r'^me/delete/$',views.remove_user),
url(r'^me/gdpr-optin-confirm/?/$',views.user_gdpr_confirm),
url(r'^me/gdpr-optin-confirm/$',views.user_gdpr_confirm),
url(r'^me/gdpr-optin/?/$',views.user_gdpr_optin),
url(r'^me/gdpr-optin/$',views.user_gdpr_optin),
url(r'^me/teams/$',views.rower_teams_view),
url(r'^me/calcdps/$',views.rower_calcdps_view),
url(r'^me/exportsettings/$',views.rower_exportsettings_view),
url(r'^me/exportsettings/user/(?P<userid>\d+)/$',views.rower_exportsettings_view),
url(r'^team/(?P<id>\d+)/$',views.team_view),
url(r'^team/(?P<id>\d+)/memberstats/$',views.team_members_stats_view),
url(r'^team/(?P<id>\d+)/edit/$',views.team_edit_view),
url(r'^team/(?P<id>\d+)/leaveconfirm/$',views.team_leaveconfirm_view),
url(r'^team/(?P<id>\d+)/leave/$',views.team_leave_view),
url(r'^team/(?P<id>\d+)/deleteconfirm/$',views.team_deleteconfirm_view),
url(r'^team/(?P<teamid>\d+)/requestmembership/(?P<userid>\d+)/$',views.team_requestmembership_view),
url(r'^team/(?P<id>\d+)/delete/$',views.team_delete_view),
url(r'^team/create/$',views.team_create_view),
url(r'^me/team/(?P<teamid>\d+)/drop/(?P<userid>\d+)/$',views.manager_member_drop_view),
url(r'^me/invitation/(?P<id>\d+)/reject/$',views.invitation_reject_view),
url(r'^me/invitation/(?P<id>\d+)/revoke/$',views.invitation_revoke_view),
url(r'^me/invitation/$',views.rower_invitations_view),
url(r'^me/raise500/$',views.raise_500),
url(r'^me/invitation/(\w+.*)/$',views.rower_invitations_view),
url(r'^me/request/(?P<id>\d+)/revoke/$',views.request_revoke_view),
url(r'^me/request/(?P<id>\d+)/reject/$',views.request_reject_view),
url(r'^me/request/(\w+.*)/$',views.manager_requests_view),
url(r'^me/request/$',views.manager_requests_view),
url(r'^me/edit/$',views.rower_edit_view),
url(r'^me/edit/user/(?P<userid>\d+)/$',views.rower_edit_view),
url(r'^me/preferences/$',views.rower_prefs_view),
url(r'^me/transactions/$',views.transactions_view),
url(r'^me/preferences/user/(?P<userid>\d+)/$',views.rower_prefs_view),
url(r'^me/edit/(.+.*)/$',views.rower_edit_view),
url(r'^me/c2authorize/$',views.rower_c2_authorize),
url(r'^me/polarauthorize/$',views.rower_polar_authorize),
url(r'^me/revokeapp/(?P<id>\d+)/$',views.rower_revokeapp_view),
url(r'^me/stravaauthorize/$',views.rower_strava_authorize),
url(r'^me/sporttracksauthorize/$',views.rower_sporttracks_authorize),
url(r'^me/underarmourauthorize/$',views.rower_underarmour_authorize),
url(r'^me/tpauthorize/$',views.rower_tp_authorize),
url(r'^me/runkeeperauthorize/$',views.rower_runkeeper_authorize),
url(r'^me/sporttracksrefresh/$',views.rower_sporttracks_token_refresh),
url(r'^me/underarmourrefresh/$',views.rower_underarmour_token_refresh),
url(r'^me/tprefresh/$',views.rower_tp_token_refresh),
url(r'^me/c2refresh/$',views.rower_c2_token_refresh),
url(r'^me/favoritecharts/$',views.rower_favoritecharts_view),
url(r'^me/favoritecharts/user/(?P<userid>\d+)/$',views.rower_favoritecharts_view),
url(r'^workout/(?P<id>\d+)/c2uploadw/$',views.workout_c2_upload_view,name='workout_c2_upload_view'),
url(r'^workout/(?P<id>\d+)/stravauploadw/$',views.workout_strava_upload_view,name='workout_strava_upload_view'),
url(r'^workout/(?P<id>\d+)/recalcsummary/$',views.workout_recalcsummary_view,name='workout_recalcsummary_view'),
url(r'^workout/(?P<id>\d+)/sporttracksuploadw/$',views.workout_sporttracks_upload_view,name='workout_sporttracks_upload_view'),
url(r'^workout/(?P<id>\d+)/runkeeperuploadw/$',views.workout_runkeeper_upload_view,name='workout_runkeeper_upload_view'),
url(r'^workout/(?P<id>\d+)/underarmouruploadw/$',views.workout_underarmour_upload_view,name='workout_underarmour_upload_view'),
url(r'^workout/(?P<id>\d+)/tpuploadw/$',views.workout_tp_upload_view,name='workout_tp_upload_view'),
url(r'^multi-compare/workout/(?P<id>\d+)/user/(?P<userid>\d+)/$',views.multi_compare_view,
name='multi_compare_view'),
url(r'^multi-compare/workout/(?P<id>\d+)/$',views.multi_compare_view,name='multi_compare_view'),
url(r'^multi-compare/$',views.multi_compare_view,name='multi_compare_view'),
url(r'^user-boxplot/user/(?P<userid>\d+)/$',views.boxplot_view,name='boxplot_view'),
url(r'^user-boxplot/$',views.boxplot_view,name='boxplot_view'),
url(r'^user-boxplot-data/$',views.boxplot_view_data,name='boxplot_view_data'),
url(r'^user-multiflex/user/(?P<userid>\d+)/$',views.multiflex_view,name='multiflex_view'),
url(r'^user-multiflex/$',views.multiflex_view,name='multiflex_view'),
url(r'^user-multiflex-data/$',views.multiflex_data,name='multiflex_data'),
url(r'^me/deactivate/$',views.deactivate_user,name='deactivate_user'),
url(r'^me/delete/$',views.remove_user,name='remove_user'),
url(r'^me/gdpr-optin-confirm/?/$',views.user_gdpr_confirm,name='user_gdpr_confirm'),
url(r'^me/gdpr-optin-confirm/$',views.user_gdpr_confirm,name='user_gdpr_confirm'),
url(r'^me/gdpr-optin/?/$',views.user_gdpr_optin,name='user_gdpr_optin'),
url(r'^me/gdpr-optin/$',views.user_gdpr_optin,name='user_gdpr_optin'),
url(r'^me/teams/$',views.rower_teams_view,name='rower_teams_view'),
url(r'^me/calcdps/$',views.rower_calcdps_view,name='rower_calcdps_view'),
url(r'^me/exportsettings/$',views.rower_exportsettings_view,name='rower_exportsettings_view'),
url(r'^me/exportsettings/user/(?P<userid>\d+)/$',views.rower_exportsettings_view,name='rower_exportsettings_view'),
url(r'^team/(?P<id>\d+)/$',views.team_view,name='team_view'),
url(r'^team/(?P<id>\d+)/memberstats/$',views.team_members_stats_view,name='team_members_stats_view'),
url(r'^team/(?P<id>\d+)/edit/$',views.team_edit_view,name='team_edit_view'),
url(r'^team/(?P<id>\d+)/leaveconfirm/$',views.team_leaveconfirm_view,name='team_leaveconfirm_view'),
url(r'^team/(?P<id>\d+)/leave/$',views.team_leave_view,name='team_leave_view'),
url(r'^team/(?P<id>\d+)/deleteconfirm/$',views.team_deleteconfirm_view,name='team_deleteconfirm_view'),
url(r'^team/(?P<teamid>\d+)/requestmembership/(?P<userid>\d+)/$',views.team_requestmembership_view,name='team_requestmembership_view'),
url(r'^team/(?P<id>\d+)/delete/$',views.team_delete_view,name='team_delete_view'),
url(r'^team/create/$',views.team_create_view,name='team_create_view'),
url(r'^me/team/(?P<teamid>\d+)/drop/(?P<userid>\d+)/$',views.manager_member_drop_view,name='manager_member_drop_view'),
url(r'^me/invitation/(?P<id>\d+)/reject/$',views.invitation_reject_view,name='invitation_reject_view'),
url(r'^me/invitation/(?P<id>\d+)/revoke/$',views.invitation_revoke_view,name='invitation_revoke_view'),
url(r'^me/invitation/$',views.rower_invitations_view,name='rower_invitations_view'),
url(r'^me/raise500/$',views.raise_500,name='raise_500'),
url(r'^me/invitation/(\w+.*)/$',views.rower_invitations_view,name='rower_invitations_view'),
url(r'^me/request/(?P<id>\d+)/revoke/$',views.request_revoke_view,name='request_revoke_view'),
url(r'^me/request/(?P<id>\d+)/reject/$',views.request_reject_view,name='request_reject_view'),
url(r'^me/request/(\w+.*)/$',views.manager_requests_view,name='manager_requests_view'),
url(r'^me/request/$',views.manager_requests_view,name='manager_requests_view'),
url(r'^me/edit/$',views.rower_edit_view,name='rower_edit_view'),
url(r'^me/edit/user/(?P<userid>\d+)/$',views.rower_edit_view,name='rower_edit_view'),
url(r'^me/preferences/$',views.rower_prefs_view,name='rower_prefs_view'),
url(r'^me/transactions/$',views.transactions_view,name='transactions_view'),
url(r'^me/preferences/user/(?P<userid>\d+)/$',views.rower_prefs_view,name='rower_prefs_view'),
url(r'^me/edit/(.+.*)/$',views.rower_edit_view,name='rower_edit_view'),
url(r'^me/c2authorize/$',views.rower_c2_authorize,name='rower_c2_authorize'),
url(r'^me/polarauthorize/$',views.rower_polar_authorize,name='rower_polar_authorize'),
url(r'^me/revokeapp/(?P<id>\d+)/$',views.rower_revokeapp_view,name='rower_revokeapp_view'),
url(r'^me/stravaauthorize/$',views.rower_strava_authorize,name='rower_strava_authorize'),
url(r'^me/sporttracksauthorize/$',views.rower_sporttracks_authorize,name='rower_sporttracks_authorize'),
url(r'^me/underarmourauthorize/$',views.rower_underarmour_authorize,name='rower_underarmour_authorize'),
url(r'^me/tpauthorize/$',views.rower_tp_authorize,name='rower_tp_authorize'),
url(r'^me/runkeeperauthorize/$',views.rower_runkeeper_authorize,name='rower_runkeeper_authorize'),
url(r'^me/sporttracksrefresh/$',views.rower_sporttracks_token_refresh,name='rower_sporttracks_token_refresh'),
url(r'^me/underarmourrefresh/$',views.rower_underarmour_token_refresh,name='rower_underarmoud_token_refresh'),
url(r'^me/tprefresh/$',views.rower_tp_token_refresh,name='rower_tp_token_refresh'),
url(r'^me/c2refresh/$',views.rower_c2_token_refresh,name='rower_c2_token_refresh'),
url(r'^me/favoritecharts/$',views.rower_favoritecharts_view,name='rower_favoritecharts_view'),
url(r'^me/favoritecharts/user/(?P<userid>\d+)/$',views.rower_favoritecharts_view,name='rower_favoritecharts_view'),
# url(r'^me/workflowconfig/$',views.workout_workflow_config_view),
url(r'^me/workflowconfig2/$',views.workout_workflow_config2_view),
url(r'^me/workflowconfig2/user/(?P<userid>\d+)/$',views.workout_workflow_config2_view),
url(r'^me/workflowdefault/$',views.workflow_default_view),
url(r'^email/send/$', views.sendmail),
url(r'^me/workflowconfig2/$',views.workout_workflow_config2_view,name='workout_workflow_config2_view'),
url(r'^me/workflowconfig2/user/(?P<userid>\d+)/$',views.workout_workflow_config2_view,name='workout_workflow_config2_view'),
url(r'^me/workflowdefault/$',views.workflow_default_view,name='workflow_default_view'),
url(r'^email/send/$', views.sendmail,name='sendmail'),
url(r'^email/thankyou/$', TemplateView.as_view(template_name='thankyou.html'), name='thankyou'),
url(r'^email/$', TemplateView.as_view(template_name='email.html'), name='email'),
url(r'^about', TemplateView.as_view(template_name='about_us.html'),name='about'),
@@ -440,39 +450,39 @@ urlpatterns = [
url(r'^analysis/$', views.analysis_view,name='analysis'),
url(r'^laboratory/$', views.laboratory_view,name='laboratory'),
url(r'^promembership', TemplateView.as_view(template_name='promembership.html'),name='promembership'),
url(r'^checkout/(?P<planid>\d+)/$',views.payment_confirm_view),
url(r'^upgradecheckout/(?P<planid>\d+)/$',views.upgrade_confirm_view),
url(r'^downgradecheckout/(?P<planid>\d+)/$',views.downgrade_confirm_view),
url(r'^checkout/(?P<planid>\d+)/$',views.payment_confirm_view,name='payment_confirm_view'),
url(r'^upgradecheckout/(?P<planid>\d+)/$',views.upgrade_confirm_view,name='upgrade_confirm_view'),
url(r'^downgradecheckout/(?P<planid>\d+)/$',views.downgrade_confirm_view,name='downgrade_confirm_view'),
url(r'^billing/$',views.billing_view,name='billing'),
url(r'^upgrade/$',views.upgrade_view,name='upgrade'),
url(r'^downgrade/$',views.downgrade_view,name='downgrade'),
url(r'^paymentcompleted/$',views.payment_completed_view),
url(r'^downgradecompleted/$',views.downgrade_completed_view),
url(r'^paymentcompleted/$',views.payment_completed_view,name='payment_completed_view'),
url(r'^downgradecompleted/$',views.downgrade_completed_view,name='downgrade_completed_view'),
url(r'^paidplans/$',views.paidplans_view,name='paidplans'),
url(r'^me/cancelsubscriptions/$',views.plan_stop_view),
url(r'^me/cancelsubscription/(?P<id>[\w\ ]+.*)/$',views.plan_tobasic_view),
url(r'^me/cancelsubscriptions/$',views.plan_stop_view,name='plan_stop_view'),
url(r'^me/cancelsubscription/(?P<id>[\w\ ]+.*)/$',views.plan_tobasic_view,name='plan_tobasic_view'),
url(r'^checkouts/$',views.checkouts_view,name='checkouts'),
url(r'^upgradecheckouts/$',views.upgrade_checkouts_view,name='upgrade_checkouts'),
url(r'^downgradecheckouts/$',views.downgrade_checkouts_view,name='downgrade_checkouts'),
url(r'^planrequired/',views.planrequired_view),
url(r'^starttrial/$',views.start_trial_view),
url(r'^startplantrial/$',views.start_plantrial_view),
url(r'^planrequired/',views.planrequired_view,name='planrequired_view'),
url(r'^starttrial/$',views.start_trial_view,name='start_trial_view'),
url(r'^startplantrial/$',views.start_plantrial_view,name='start_plantrial_view'),
# url(r'^planmembership', TemplateView.as_view(template_name='planmembership.html'),name='planmembership'),
# url(r'^paypaltest', TemplateView.as_view(template_name='paypaltest.html'),name='paypaltest'),
url(r'^legal', TemplateView.as_view(template_name='legal.html'),name='legal'),
url(r'^register/$',views.rower_register_view),
url(r'^register/$',views.rower_register_view,name='rower_register_view'),
url(r'^register/thankyou/$', TemplateView.as_view(template_name='registerthankyou.html'), name='registerthankyou'),
url(r'^workout/(?P<id>\d+)/workflow/$',views.workout_workflow_view,
name='workout_workflow_view'),
url(r'^workout/(?P<id>\d+)/flexchart/(?P<xparam>[\w\ ]+.*)/(?P<yparam1>[\w\ ]+.*)/(?P<yparam2>[\w\ ]+.*)/(?P<plottype>\w+)/$',views.workout_flexchart3_view),
url(r'^workout/(?P<id>\d+)/flexchart/(?P<xparam>\w+.*)/(?P<yparam1>[\w\ ]+.*)/(?P<yparam2>[\w\ ]+.*)/(?P<plottype>\w+.*)/$',views.workout_flexchart3_view),
url(r'^workout/(?P<id>\d+)/flexchart/(?P<xparam>\w+.*)/(?P<yparam1>[\w\ ]+.*)/(?P<yparam2>[\w\ ]+.*)/$',views.workout_flexchart3_view),
url(r'^workout/(?P<id>\d+)/flexchart/$',views.workout_flexchart3_view),
url(r'^workout/(?P<id>\d+)/flexchart/(?P<xparam>[\w\ ]+.*)/(?P<yparam1>[\w\ ]+.*)/(?P<yparam2>[\w\ ]+.*)/(?P<plottype>\w+)/$',views.workout_flexchart3_view,name='workout_flexchart3_view'),
url(r'^workout/(?P<id>\d+)/flexchart/(?P<xparam>\w+.*)/(?P<yparam1>[\w\ ]+.*)/(?P<yparam2>[\w\ ]+.*)/(?P<plottype>\w+.*)/$',views.workout_flexchart3_view,name='workout_flexchart3_view'),
url(r'^workout/(?P<id>\d+)/flexchart/(?P<xparam>\w+.*)/(?P<yparam1>[\w\ ]+.*)/(?P<yparam2>[\w\ ]+.*)/$',views.workout_flexchart3_view,name='workout_flexchart3_view'),
url(r'^workout/(?P<id>\d+)/flexchart/$',views.workout_flexchart3_view,name='workout_flexchart3_view'),
# url(r'^workout/compare/(?P<id1>\d+)/(?P<id2>\d+)/(?P<xparam>\w+.*)/(?P<yparam>[\w\ ]+.*)/(?P<plottype>[\w\ ]+.*)/$',views.workout_comparison_view2),
# url(r'^workout/compare/(?P<id1>\d+)/(?P<id2>\d+)/(?P<xparam>\w+.*)/(?P<yparam>[\w\ ]+.*)/$',views.workout_comparison_view2),
url(r'^test\_callback',views.rower_process_testcallback),
url(r'^createplan/$',views.rower_create_trainingplan),
url(r'^createplan/user/(?P<userid>\d+)/$',views.rower_create_trainingplan),
url(r'^test\_callback',views.rower_process_testcallback,name='rower_process_testcallback'),
url(r'^createplan/$',views.rower_create_trainingplan,name='rower_create_trainingplan'),
url(r'^createplan/user/(?P<userid>\d+)/$',views.rower_create_trainingplan,name='rower_create_trainingplan'),
url(r'^deleteplan/(?P<pk>\d+)/$',login_required(
views.TrainingPlanDelete.as_view())),
url(r'^deletemicrocycle/(?P<pk>\d+)/$',login_required(
@@ -536,8 +546,12 @@ urlpatterns = [
url(r'^sessions/multicreate/user/(?P<userid>\d+)/$',
views.plannedsession_multicreate_view),
url(r'^sessions/(?P<id>\d+)/edit/$',views.plannedsession_edit_view),
url(r'^sessions/(?P<id>\d+)/compare/$',views.plannedsession_compare_view),
url(r'^sessions/(?P<id>\d+)/compare/user/(?P<userid>\d+)/$',views.plannedsession_compare_view),
url(r'^sessions/(?P<id>\d+)/compare/$',
views.plannedsession_compare_view,
name='plannedsession_compare_view'),
url(r'^sessions/(?P<id>\d+)/compare/user/(?P<userid>\d+)/$',
views.plannedsession_compare_view,
name='plannedsession_compare_view'),
url(r'^sessions/(?P<id>\d+)/edit/user/(?P<userid>\d+)/$',views.plannedsession_edit_view),
url(r'^sessions/(?P<id>\d+)/clone/user/(?P<userid>\d+)/$',views.plannedsession_clone_view),
url(r'^sessions/(?P<id>\d+)/clone/$',views.plannedsession_clone_view),

View File

@@ -468,3 +468,17 @@ def get_strava_stream(r,metric,stravaid,series_type='time',fetchresolution='high
s = requests.get(url,headers=headers)
return s
def allmonths(startdate,enddate):
d = startdate
while d<enddate:
yield d
d = datetime.date(d.year+(d.month / 12),((d.month % 12) + 1),1)
def allsundays(startdate,enddate):
d = startdate
d += datetime.timedelta(days = 6 - d.weekday()) # first Sunday
while d<=enddate:
yield d
d += datetime.timedelta(days=7)

12
rowers/views/__init__.py Normal file
View File

@@ -0,0 +1,12 @@
from .analysisviews import *
from .apiviews import *
from .errorviews import *
from .exportviews import *
from .importviews import *
from .otherviews import *
from .paymentviews import *
from .planviews import *
from .racesviews import *
from .teamviews import *
from .userviews import *
from .workoutviews import *

File diff suppressed because it is too large Load Diff

182
rowers/views/apiviews.py Normal file
View File

@@ -0,0 +1,182 @@
from statements import *
# Stroke data form to test API upload
@login_required()
def strokedataform(request,id=0):
try:
id=int(id)
except ValueError:
id = 0
try:
w = Workout.objects.get(id=id)
except Workout.DoesNotExist:
raise Http404("Workout doesn't exist")
if request.method == 'GET':
form = StrokeDataForm()
return render(request, 'strokedata_form.html',
{
'form':form,
'teams':get_my_teams(request.user),
'id':id,
'workout':w,
})
elif request.method == 'POST':
form = StrokeDataForm()
return render(request, 'strokedata_form.html',
{
'form':form,
'teams':get_my_teams(request.user),
'id':id,
'workout':w,
})
# Process the POSTed stroke data according to the API definition
# Return the GET stroke data according to the API definition
from rest_framework_swagger.renderers import OpenAPIRenderer, SwaggerUIRenderer
@csrf_exempt
@login_required()
@api_view(['GET','POST'])
def strokedatajson(request,id):
"""
POST: Add Stroke data to workout
GET: Get stroke data of workout
"""
row = get_workout_permitted(request.user,id)
try:
id = int(id)
except ValueError:
return HttpResponse("Not a valid workout number",status=400)
if request.method == 'GET':
# currently only returns a subset.
columns = ['spm','time','hr','pace','power','distance']
datadf = dataprep.getsmallrowdata_db(columns,ids=[id])
with open('media/apilog.log','a') as logfile:
logfile.write(str(timezone.now())+": ")
logfile.write(request.user.username+"(GET) \n")
return JSONResponse(datadf)
if request.method == 'POST':
checkdata,r = dataprep.getrowdata_db(id=row.id)
if not checkdata.empty:
return HttpResponse("Duplicate Error",409)
# strokedata = request.POST['strokedata']
# checking/validating and cleaning
try:
strokedata = json.loads(request.POST['strokedata'])
except:
return HttpResponse("No JSON object could be decoded",400)
df = pd.DataFrame(strokedata)
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:
return HttpResponse("There must be time values",status=400)
aantal = len(time)
pace = df['pace']/1.e3
if len(pace) != aantal:
return HttpResponse("Pace array has incorrect length",status=400)
distance = df['distance']
if len(distance) != aantal:
return HttpResponse("Distance array has incorrect length",status=400)
spm = df['spm']
if len(spm) != aantal:
return HttpResponse("SPM array has incorrect length",status=400)
res = dataprep.testdata(time,distance,pace,spm)
if not res:
return HttpResponse("Data are not numerical",status=400)
power = trydf(df,aantal,'power')
drivelength = trydf(df,aantal,'drivelength')
drivespeed = trydf(df,aantal,'drivespeed')
dragfactor = trydf(df,aantal,'dragfactor')
drivetime = trydf(df,aantal,'drivetime')
strokerecoverytime = trydf(df,aantal,'strokerecoverytime')
averagedriveforce = trydf(df,aantal,'averagedriveforce')
peakdriveforce = trydf(df,aantal,'peakdriveforce')
wash = trydf(df,aantal,'wash')
catch = trydf(df,aantal,'catch')
finish = trydf(df,aantal,'finish')
peakforceangle = trydf(df,aantal,'peakforceangle')
driveenergy = trydf(df,aantal,'driveenergy')
slip = trydf(df,aantal,'slip')
lapidx = trydf(df,aantal,'lapidx')
hr = trydf(df,aantal,'hr')
starttime = totimestamp(row.startdatetime)+time[0]
unixtime = starttime+time
with open('media/apilog.log','a') as logfile:
logfile.write(str(starttime)+": ")
logfile.write(request.user.username+"(POST) \r\n")
data = pd.DataFrame({'TimeStamp (sec)':unixtime,
' Horizontal (meters)': distance,
' Cadence (stokes/min)':spm,
' HRCur (bpm)':hr,
' DragFactor':dragfactor,
' Stroke500mPace (sec/500m)':pace,
' Power (watts)':power,
' DriveLength (meters)':drivelength,
' DriveTime (ms)':drivetime,
' StrokeRecoveryTime (ms)':strokerecoverytime,
' AverageDriveForce (lbs)':averagedriveforce,
' PeakDriveForce (lbs)':peakdriveforce,
' lapIdx':lapidx,
' ElapsedTime (sec)':time,
'catch':catch,
'slip':slip,
'finish':finish,
'wash':wash,
'driveenergy':driveenergy,
'peakforceangle':peakforceangle,
})
# Following part should be replaced with dataprep.new_workout_from_df
r = getrower(request.user)
timestr = row.startdatetime.strftime("%Y%m%d-%H%M%S")
csvfilename ='media/Import_'+timestr+'.csv'
res = data.to_csv(csvfilename+'.gz',index_label='index',
compression='gzip')
row.csvfilename = csvfilename
row.save()
powerperc = 100*np.array([r.pw_ut2,
r.pw_ut1,
r.pw_at,
r.pw_tr,r.pw_an])/r.ftp
ftp = float(r.ftp)
if row.workouttype in mytypes.otwtypes:
ftp = ftp*(100.-r.otwslack)/100.
rr = rrower(hrmax=r.max,hrut2=r.ut2,
hrut1=r.ut1,hrat=r.at,
hrtr=r.tr,hran=r.an,ftp=ftp,
powerperc=powerperc,powerzones=r.powerzones)
rowdata = rdata(row.csvfilename,rower=rr).df
datadf = dataprep.dataprep(rowdata,id=row.id,bands=True,barchart=True,otwpower=True,empower=True)
# mangling
#
return HttpResponse(row.id,status=201)
#Method not supported
return HttpResponseNotAllowed("Method not supported")

View File

@@ -0,0 +1,30 @@
from statements import *
# Custom error pages with Rowsandall headers
def error500_view(request):
response = render_to_response('500.html', {},
context_instance = RequestContext(request))
response.status_code = 500
return response
def error404_view(request):
response = render_to_response('404.html', {},
context_instance = RequestContext(request))
response.status_code = 404
return response
def error400_view(request):
response = render_to_response('400.html', {},
context_instance = RequestContext(request))
response.status_code = 400
return response
def error403_view(request):
response = render_to_response('403.html', {},
context_instance = RequestContext(request))
response.status_code = 403
return response

220
rowers/views/exportviews.py Normal file
View File

@@ -0,0 +1,220 @@
from statements import *
# Export workout to TCX and send to user's email address
@login_required()
def workout_tcxemail_view(request,id=0):
r = getrower(request.user)
w = get_workout(id)
if not checkworkoutuser(request.user,w):
raise PermissionDenied("Access denied")
row = rdata(w.csvfilename)
code = str(uuid4())
tcxfilename = code+'.tcx'
row.exporttotcx(tcxfilename)
with open(tcxfilename,'r') as f:
response = HttpResponse(f)
response['Content-Disposition'] = 'attachment; filename="%s"' % tcxfilename
response['Content-Type'] = 'application/octet-stream'
os.remove(tcxfilename)
return response
@login_required()
def plannedsessions_icsemail_view(request,userid=0):
r = getrequestrower(request,userid=userid)
startdate,enddate = get_dates_timeperiod(request)
sps = get_sessions(r,startdate=startdate,enddate=enddate)
cal = Calendar()
cal.add('prodid','rowsandall')
cal.add('version','1.0')
for ps in sps:
event = Event()
comment = '{d} {u} {c}'.format(
d=ps.sessionvalue,
u = ps.sessionunit,
c = ps.criterium)
event.add('summary',ps.name)
event.add('dtstart',ps.preferreddate)
event.add('dtend',ps.preferreddate)
event['uid'] = 'plannedsession_'+str(ps.id)
event.add('description',ps.comment)
event.add('comment',comment)
cal.add_component(event)
response = HttpResponse(cal.to_ical())
response['Content-Disposition'] = 'attachment; filename="training_plan_{u}_{d1}_{d2}.ics"'.format(
u = request.user.username,
d1 = startdate.strftime("%Y%m%d"),
d2 = enddate.strftime("%Y%m%d"),
)
response['Content-Type'] = 'application/octet-stream'
return response
@login_required()
def course_kmldownload_view(request,id=0):
r = getrower(request.user)
if r.emailbounced:
message = "Please check your email address first. Email to this address bounced."
messages.error(request,message)
return HttpResponseRedirect(
reverse(course_view,
kwargs = {
'id':str(id),
})
)
course = GeoCourse.objects.get(id=id)
kmlstring = courses.coursetokml(course)
kmlfilename = 'course_{id}.kml'.format(id=id)
response = HttpResponse(kmlstring)
response['Content-Disposition'] = 'attachment; filename="{filename}"'.format(filename=kmlfilename)
response['Content-Type'] = 'application/octet-stream'
return response
# Export workout to GPX and send to user's email address
@login_required()
def workout_gpxemail_view(request,id=0):
r = getrower(request.user)
w = get_workout(id)
if not checkworkoutuser(request.user,w):
raise PermissionDenied("Access denied")
row = rdata(w.csvfilename)
code = str(uuid4())
gpxfilename = code+'.gpx'
row.exporttogpx(gpxfilename)
with open(gpxfilename,'r') as f:
response = HttpResponse(f)
response['Content-Disposition'] = 'attachment; filename="%s"' % gpxfilename
response['Content-Type'] = 'application/octet-stream'
os.remove(gpxfilename)
return response
# Get Workout summary CSV file
@login_required()
def workouts_summaries_email_view(request):
r = getrower(request.user)
if r.emailbounced:
message = "Please check your email address first. Email to this address bounced."
messages.error(request, message)
return HttpResponseRedirect(
reverse(r.defaultlandingpage,
kwargs = {
'id':str(w.id),
})
)
if request.method == 'POST':
form = DateRangeForm(request.POST)
if form.is_valid():
startdate = form.cleaned_data['startdate']
enddate = form.cleaned_data['enddate']
filename = 'rowsandall_workouts_{first}_{last}.csv'.format(
first=startdate,
last=enddate
)
df = dataprep.workout_summary_to_df(r,startdate=startdate,enddate=enddate)
df.to_csv(filename,encoding='utf-8')
res = myqueue(queuehigh,handle_sendemailsummary,
r.user.first_name,
r.user.last_name,
r.user.email,
filename,
emailbounced = r.emailbounced
)
messages.info(request,'The summary CSV file was sent to you per email')
else:
form = DateRangeForm()
return render(request,"export_workouts.html",
{
'form':form
})
# Get Workout CSV file and send it to user's email address
@login_required()
def workout_csvemail_view(request,id=0):
r = getrower(request.user)
w = get_workout(id)
if not checkworkoutuser(request.user,w):
raise PermissionDenied("Access denied")
rowdata = rdata(w.csvfilename)
code = str(uuid4())
filename = code+'.csv'
rowdate = rowdata.rowdatetime
starttimeunix = arrow.get(rowdate).timestamp
df = rowdata.df
df[' ElapsedTime (sec)'] = df['TimeStamp (sec)']
df['TimeStamp (sec)'] = df['TimeStamp (sec)'] + starttimeunix
response = HttpResponse(df.to_csv())
response['Content-Disposition'] = 'attachment; filename="%s"' % filename
response['Content-Type'] = 'application/octet-stream'
return response
# Get Workout CSV file and send it to user's email address
@login_required()
def workout_csvtoadmin_view(request,id=0):
message = ""
r = getrower(request.user)
w = get_workout(id)
csvfile = w.csvfilename
res = myqueue(queuehigh,
handle_sendemailcsv,
'Sander',
'Roosendaal',
'roosendaalsander@gmail.com',
csvfile)
successmessage = "The CSV file was sent to the site admin per email"
messages.info(request,successmessage)
url = reverse(workout_view,
kwargs = {
'id':str(w.id),
})
response = HttpResponseRedirect(url)
return response

1604
rowers/views/importviews.py Normal file

File diff suppressed because it is too large Load Diff

142
rowers/views/otherviews.py Normal file
View File

@@ -0,0 +1,142 @@
from statements import *
@login_required()
def deactivate_user(request):
pk = request.user.id
user = User.objects.get(pk=pk)
user_form = DeactivateUserForm(instance=user)
if request.user.is_authenticated() and request.user.id == user.id:
if request.method == "POST":
user_form = DeactivateUserForm(request.POST, instance=user)
if user_form.is_valid():
if not user_form.cleaned_data['is_active']:
r = Rower.objects.get(user=user)
if r.paidplan is not None and r.paidplan.paymentprocessor == 'braintree':
try:
subscriptions = braintreestuff.find_subscriptions(r)
for subscription in subscriptions:
success, themessages,errormessages = braintreestuff.cancel_subscription(r,id)
for message in themessages:
messages.info(request,message)
except ProcessorCustomerError:
pass
r.paidplan = None
r.teamplanexpires = timezone.now()
r.planexpires = timezone.now()
r.clubsize = 0
r.rowerplan = 'basic'
r.save()
deactivate_user = user_form.save(commit=False)
user.is_active = False
user.save()
deactivate_user.save()
# url = reverse(auth_views.logout_then_login)
url = '/logout/?next=/login'
return HttpResponseRedirect(url)
return render(request, "userprofile_deactivate.html", {
"user_form": user_form,
})
else:
raise PermissionDenied
@login_required()
def user_gdpr_optin(request):
r = getrower(request.user)
r.gdproptin = False
r.gdproptindate = None
r.save()
nexturl = request.GET.get('next','/rowers/list-workouts/')
if r.gdproptin:
return HttpResponseRedirect(nexturl)
return render(request,'gdpr_optin.html',{
"next": nexturl
})
@login_required()
def user_gdpr_confirm(request):
r = getrower(request.user)
r.gdproptin = True
r.gdproptindate = timezone.now()
r.save()
nexturl = request.GET.get('next','/rowers/list-workouts/')
return HttpResponseRedirect(nexturl)
@login_required()
def remove_user(request):
pk = request.user.id
user = User.objects.get(pk=pk)
user_form = DeleteUserForm(instance=user)
if request.user.is_authenticated() and request.user.id == user.id:
if request.method == "POST":
user_form = DeleteUserForm(request.POST,instance=user)
if user_form.is_valid():
cd = user_form.cleaned_data
name = user.first_name+' '+user.last_name
email = user.email
r = Rower.objects.get(user=user)
if r.paidplan is not None and r.paidplan.paymentprocessor == 'braintree':
try:
subscriptions = braintreestuff.find_subscriptions(r)
for subscription in subscriptions:
success, themessages,errormessages = braintreestuff.cancel_subscription(r,id)
for message in themessages:
messages.info(request,message)
except ProcessorCustomerError:
pass
if cd['delete_user']:
user.delete()
res = myqueue(queuehigh,
handle_sendemail_userdeleted,
name, email)
url = '/logout/?next=/login'
# url = reverse(auth_views.logout_then_login)
return HttpResponseRedirect(url)
return render(request, "userprofile_delete.html", {
"user_form": user_form,
})
else:
raise PermissionDenied
# Shows analysis page
@login_required()
def analysis_view(request,userid=0):
r = getrequestrower(request,userid=userid)
return render(request,
"analysis.html",
{
'active':'nav-analysis',
'rower':r,
}
)
# Shows laboratory page
@login_required()
def laboratory_view(request,userid=0):
r = getrequestrower(request,userid=userid)
return render(request,
"laboratory.html",
{
'active':'nav-analysis',
'rower':r,
}
)

View File

@@ -0,0 +1,590 @@
from statements import *
def paidplans_view(request):
if not request.user.is_anonymous():
r = getrequestrower(request)
if r.paymentprocessor != 'braintree' and r.paymenttype == 'recurring':
messages.error(request,'Automated payment processing is currently only available through BrainTree (by PayPal). You are currently on a recurring payment plan with PayPal. Contact the site administrator at support@rowsandall.com before you proceed')
else:
r = None
return render(request,
'paidplans.html',
{'rower':r})
@login_required()
def billing_view(request):
if not PAYMENT_PROCESSING_ON:
url = reverse('promembership')
return HttpResponseRedirect(url)
r = getrequestrower(request)
if r.paymentprocessor != 'braintree' and r.paymenttype == 'recurring':
messages.error(request,'Automated payment processing is currently only available through BrainTree (by PayPal). You are currently on a recurring payment plan with PayPal. Contact the site administrator at support@rowsandall.com before you proceed')
if payments.is_existing_customer(r):
url = reverse(upgrade_view)
return HttpResponseRedirect(url)
if request.method == 'POST':
billingaddressform = RowerBillingAddressForm(request.POST)
planselectform = PlanSelectForm(request.POST,paymentprocessor='braintree')
if billingaddressform.is_valid():
cd = billingaddressform.cleaned_data
for attr, value in cd.items():
setattr(r, attr, value)
r.save()
if billingaddressform.is_valid():
if planselectform.is_valid():
plan = planselectform.cleaned_data['plan']
try:
customer_id = braintreestuff.create_customer(r)
except ProcessorCustomerError:
messages.error(request,"Something went wrong registering you as a customer.")
url = reverse(billing_view)
return HttpResponseRedirect(url)
url = reverse(payment_confirm_view,
kwargs={
'planid':plan.id
})
return HttpResponseRedirect(url)
else:
billingaddressform = RowerBillingAddressForm(instance=r)
planselectform = PlanSelectForm(paymentprocessor='braintree')
return render(request,
'billing.html',
{'rower':r,
'billingaddressform':billingaddressform,
'planselectform':planselectform,
})
@login_required()
def upgrade_view(request):
if not PAYMENT_PROCESSING_ON:
url = reverse('promembership')
return HttpResponseRedirect(url)
r = getrequestrower(request)
if r.paymentprocessor != 'braintree' and r.paymenttype == 'recurring':
messages.error(request,'Automated payment processing is currently only available through BrainTree (by PayPal). You are currently on a recurring payment plan with PayPal. Contact the site administrator at support@rowsandall.com before you proceed')
if r.subscription_id is None or r.subscription_id == '':
url = reverse(billing_view)
return HttpResponseRedirect(url)
if request.method == 'POST':
billingaddressform = RowerBillingAddressForm(request.POST)
planselectform = PlanSelectForm(request.POST,paymentprocessor='braintree')
if billingaddressform.is_valid():
cd = billingaddressform.cleaned_data
for attr, value in cd.items():
setattr(r, attr, value)
r.save()
if planselectform.is_valid():
plan = planselectform.cleaned_data['plan']
if billingaddressform.is_valid():
url = reverse(upgrade_confirm_view,
kwargs={
'planid':plan.id
})
return HttpResponseRedirect(url)
else:
billingaddressform = RowerBillingAddressForm(instance=r)
planselectform = PlanSelectForm(paymentprocessor='braintree',
rower=r)
return render(request,
'upgrade.html',
{'rower':r,
'billingaddressform':billingaddressform,
'planselectform':planselectform,
})
@login_required()
def downgrade_view(request):
if not PAYMENT_PROCESSING_ON:
url = reverse('promembership')
return HttpResponseRedirect(url)
r = getrequestrower(request)
if r.paymentprocessor != 'braintree' and r.paymenttype == 'recurring':
messages.error(request,'Automated payment processing is currently only available through BrainTree (by PayPal). You are currently on a recurring payment plan with PayPal. Contact the site administrator at support@rowsandall.com before you proceed')
if r.subscription_id is None or r.subscription_id == '':
url = reverse(billing_view)
return HttpResponseRedirect(url)
if request.method == 'POST':
billingaddressform = RowerBillingAddressForm(request.POST)
planselectform = PlanSelectForm(request.POST,paymentprocessor='braintree')
if billingaddressform.is_valid():
cd = billingaddressform.cleaned_data
for attr, value in cd.items():
setattr(r, attr, value)
r.save()
if planselectform.is_valid():
plan = planselectform.cleaned_data['plan']
if plan.price > r.paidplan.price:
nextview = upgrade_confirm_view
elif plan.price == r.paidplan.price:
messages.info(request,'You did not select a new plan')
url = reverse(downgrade_view)
return HttpResponseRedirect(url)
else:
nextview = downgrade_confirm_view
if billingaddressform.is_valid():
url = reverse(nextview,
kwargs={
'planid':plan.id
})
return HttpResponseRedirect(url)
else:
billingaddressform = RowerBillingAddressForm(instance=r)
planselectform = PlanSelectForm(paymentprocessor='braintree',
rower=r,includeall=True, initial={'plan':r.paidplan})
return render(request,
'downgrade.html',
{'rower':r,
'billingaddressform':billingaddressform,
'planselectform':planselectform,
})
@login_required()
def plan_stop_view(request):
if not PAYMENT_PROCESSING_ON:
url = reverse('promembership')
return HttpResponseRedirect(url)
r = getrequestrower(request)
subscriptions = []
if r.paymentprocessor != 'braintree' and r.paymenttype == 'recurring':
messages.error(request,'Automated payment processing is currently only available through BrainTree (by PayPal). You are currently on a recurring payment plan with PayPal. Contact the site administrator at support@rowsandall.com before you proceed')
if r.paidplan is not None and r.paidplan.paymentprocessor == 'braintree':
try:
subscriptions = braintreestuff.find_subscriptions(r)
except ProcessorCustomerError:
r.paymentprocessor = None
r.save()
return render(request,
'subscriptions_cancel.html',
{'rower':r,
'subscriptions':subscriptions
})
@login_required()
def plan_tobasic_view(request,id=0):
if not PAYMENT_PROCESSING_ON:
url = reverse('promembership')
return HttpResponseRedirect(url)
r = getrequestrower(request)
if r.paidplan.paymentprocessor == 'braintree':
success, themessages,errormessages = braintreestuff.cancel_subscription(r,id)
for message in themessages:
messages.info(request,message)
for message in errormessages:
messages.error(request,message)
url = reverse(plan_stop_view)
return HttpResponseRedirect(url)
@login_required()
def upgrade_confirm_view(request,planid = 0):
if not PAYMENT_PROCESSING_ON:
url = reverse('promembership')
return HttpResponseRedirect(url)
try:
plan = PaidPlan.objects.get(id=planid)
except PaidPlan.DoesNotExist:
messages.error(request,"Something went wrong. Please try again.")
url = reverse(billing_view)
return HttpResponseRedirect(url)
r = getrequestrower(request)
if r.paymentprocessor != 'braintree' and r.paymenttype == 'recurring':
messages.error(request,'Automated payment processing is currently only available through BrainTree (by PayPal). You are currently on a recurring payment plan with PayPal. Contact the site administrator at support@rowsandall.com before you proceed')
client_token = braintreestuff.get_client_token(r)
return render(request,
"upgradeconfirm.html",
{
'plan':plan,
'client_token':client_token,
'rower':r,
})
@login_required()
def downgrade_confirm_view(request,planid = 0):
if not PAYMENT_PROCESSING_ON:
url = reverse('promembership')
return HttpResponseRedirect(url)
try:
plan = PaidPlan.objects.get(id=planid)
except PaidPlan.DoesNotExist:
messages.error(request,"Something went wrong. Please try again.")
url = reverse(billing_view)
return HttpResponseRedirect(url)
r = getrequestrower(request)
client_token = braintreestuff.get_client_token(r)
return render(request,
"downgradeconfirm.html",
{
'plan':plan,
'client_token':client_token,
'rower':r,
})
@login_required()
def payment_confirm_view(request,planid = 0):
if not PAYMENT_PROCESSING_ON:
url = reverse('promembership')
return HttpResponseRedirect(url)
try:
plan = PaidPlan.objects.get(id=planid)
except PaidPlan.DoesNotExist:
messages.error(request,"Something went wrong. Please try again.")
url = reverse(billing_view)
return HttpResponseRedirect(url)
r = getrequestrower(request)
if r.paymentprocessor != 'braintree' and r.paymenttype == 'recurring':
messages.error(request,'Automated payment processing is currently only available through BrainTree (by PayPal). You are currently on a recurring payment plan with PayPal. Contact the site administrator at support@rowsandall.com before you proceed')
client_token = braintreestuff.get_client_token(r)
return render(request,
"paymentconfirm.html",
{
'plan':plan,
'client_token':client_token,
'rower':r,
})
@login_required()
def checkouts_view(request):
if not PAYMENT_PROCESSING_ON:
url = reverse('promembership')
return HttpResponseRedirect(url)
r = getrequestrower(request)
if r.paymentprocessor != 'braintree' and r.paymenttype == 'recurring':
messages.error(request,'Automated payment processing is currently only available through BrainTree (by PayPal). You are currently on a recurring payment plan with PayPal. Contact the site administrator at support@rowsandall.com before you proceed')
if request.method != 'POST':
url = reverse(paidplans_view)
return HttpResponseRedirect(url)
form = BillingForm(request.POST)
if form.is_valid():
data = form.cleaned_data
success,amount = braintreestuff.create_subscription(r,data)
if success:
messages.info(request,"Your payment has succeeded and your plan has been updated")
url = "{baseurl}?amount={amount:.2f}".format(
baseurl = reverse(payment_completed_view),
amount = amount)
return HttpResponseRedirect(url)
else:
messages.error(request,"There was a problem with your payment")
url = reverse(billing_view)
return HttpResponseRedirect(url)
elif 'tac' not in request.POST:
try:
planid = int(request.POST['plan'])
url = reverse('payment_confirm_view',kwargs={'planid':planid})
messages.error(request,"You must review and acknowledge the terms and conditions")
return HttpResponseRedirect(url)
except IndexError:
messages.error(request,"There was an error in the payment form")
url = reverse('billing_view')
return HttpResponseRedirect(url)
else:
messages.error(request,"There was an error in the payment form")
url = reverse(billing_view)
return HttpResponseRedirect(url)
url = reverse(paidplans_view)
return HttpResponseRedirect(url)
@login_required()
def upgrade_checkouts_view(request):
if not PAYMENT_PROCESSING_ON:
url = reverse('promembership')
return HttpResponseRedirect(url)
r = getrequestrower(request)
if request.method != 'POST':
url = reverse(paidplans_view)
return HttpResponseRedirect(url)
form = BillingForm(request.POST)
if form.is_valid():
data = form.cleaned_data
success,amount = braintreestuff.update_subscription(r,data)
if success:
messages.info(request,"Your payment has succeeded and your plan has been updated")
url = "{baseurl}?amount={amount:.2f}".format(
baseurl = reverse(payment_completed_view),
amount = amount)
return HttpResponseRedirect(url)
else:
messages.error(request,"There was a problem with your payment")
url = reverse(upgrade_view)
return HttpResponseRedirect(url)
elif 'tac' not in request.POST:
try:
planid = int(request.POST['plan'])
url = reverse('upgrade_confirm_view',kwargs={'planid':planid})
messages.error(request,"You must review and acknowledge the terms and conditions")
return HttpResponseRedirect(url)
except IndexError:
messages.error(request,"There was an error in the payment form")
url = reverse('billing_view')
return HttpResponseRedirect(url)
else:
messages.error(request,"There was an error in the payment form")
url = reverse(upgrade_view)
return HttpResponseRedirect(url)
url = reverse(paidplans_view)
return HttpResponseRedirect(url)
@login_required()
def downgrade_checkouts_view(request):
if not PAYMENT_PROCESSING_ON:
url = reverse('promembership')
return HttpResponseRedirect(url)
r = getrequestrower(request)
if request.method != 'POST':
url = reverse(paidplans_view)
return HttpResponseRedirect(url)
form = BillingForm(request.POST)
if form.is_valid():
data = form.cleaned_data
success = braintreestuff.update_subscription(r,data,method='down')
if success:
messages.info(request,"Your plan has been updated")
url = reverse(downgrade_completed_view)
return HttpResponseRedirect(url)
else:
messages.error(request,"There was a problem with your transaction")
url = reverse(upgrade_view)
return HttpResponseRedirect(url)
elif 'tac' not in request.POST:
try:
planid = int(request.POST['plan'])
url = reverse('downgrade_confirm_view',kwargs={'planid':planid})
messages.error(request,"You must review and acknowledge the terms and conditions")
return HttpResponseRedirect(url)
except IndexError:
messages.error(request,"There was an error in the payment form")
url = reverse('billing_view')
return HttpResponseRedirect(url)
else:
messages.error(request,"There was an error in the payment form")
url = reverse(upgrade_view)
return HttpResponseRedirect(url)
url = reverse(paidplans_view)
return HttpResponseRedirect(url)
@login_required()
def payment_completed_view(request):
if not PAYMENT_PROCESSING_ON:
url = reverse('promembership')
return HttpResponseRedirect(url)
amount = request.GET.get('amount',0)
r = getrequestrower(request)
return render(request,
"payment_completed.html",
{
'rower':r,
'amount':amount,
})
@login_required()
def downgrade_completed_view(request):
if not PAYMENT_PROCESSING_ON:
url = reverse('promembership')
return HttpResponseRedirect(url)
r = getrequestrower(request)
return render(request,
"downgrade_completed.html",
{
'rower':r
})
# User registration
def rower_register_view(request):
nextpage = request.GET.get('next','/rowers/list-workouts/')
if nextpage == '':
nextpage = '/rowers/list-workouts/'
if request.method == 'POST':
#form = RegistrationFormUniqueEmail(request.POST)
form = RegistrationFormSex(request.POST)
if form.is_valid():
first_name = form.cleaned_data['first_name']
last_name = form.cleaned_data['last_name']
email = form.cleaned_data['email']
password = form.cleaned_data['password1']
username = form.cleaned_data['username']
sex = form.cleaned_data['sex']
birthdate = form.cleaned_data['birthdate']
weightcategory = form.cleaned_data['weightcategory']
adaptiveclass = form.cleaned_data['adaptiveclass']
nextpage = request.POST['next']
theuser = User.objects.create_user(username,password=password)
theuser.first_name = first_name
theuser.last_name = last_name
theuser.email = email
theuser.save()
birthdate = birthdate.replace(tzinfo=None)
therower = Rower(user=theuser,sex=sex,birthdate=birthdate,
weightcategory=weightcategory,
adaptiveclass=adaptiveclass)
therower.save()
# create default favorite charts
add_defaultfavorites(therower)
# Create Sample workout
f = 'media/testdata.csv.gz'
timestr = strftime("%Y%m%d-%H%M%S")
f2 = f[:-7]+timestr+'.csv.gz'
copyfile(f,f2)
response = dataprep.new_workout_from_file(therower,f2,
title='New User Sample Data',
notes='This is an example workout to get you started')
newworkoutid = response[0]
w = Workout.objects.get(id=newworkoutid)
w.startdatetime = timezone.now()
w.save()
# Create and send email
fullemail = first_name + " " + last_name + " " + "<" + email + ">"
subject = "Thank you for registering on rowsandall.com"
from_address = 'Sander Roosendaal <info@rowsandall.com>'
d = {'first_name':theuser.first_name}
send_template_email(from_address,[fullemail],
subject,'registeremail.html',d)
subject2 = "New User"
message2 = "New user registered.\n"
message2 += fullemail + "\n"
message2 += "User name: "+username
send_mail(subject2, message2,
'Rowsandall Server <info@rowsandall.com>',
['roosendaalsander@gmail.com'])
theuser = authenticate(username=username,password=password)
login(request,theuser)
return HttpResponseRedirect(nextpage)
# '/rowers/register/thankyou/')
else:
return render(request,
"registration_form.html",
{'form':form,
'next':nextpage,})
else:
form = RegistrationFormSex()
return render(request,
"registration_form.html",
{'form':form,
'next':nextpage,})
@login_required()
def transactions_view(request):
if not request.user.is_staff:
raise PermissionDenied("Not Allowed")
if request.method == 'POST':
dateform = DateRangeForm(request.POST)
if dateform.is_valid():
startdate = dateform.cleaned_data['startdate']
enddate = dateform.cleaned_data['enddate']
df = braintreestuff.get_transactions(startdate,enddate)
filename="transactions_{s}_{e}.csv".format(s = startdate, e = enddate)
response = HttpResponse(df.to_csv())
response['Content-Disposition'] = 'attachment; filename="%s"' % filename
response['Content-Type'] = 'application/octet-stream'
return response
else:
dateform = DateRangeForm()
return render(request,
'transactions.html',
{
'dateform':dateform
})

2577
rowers/views/planviews.py Normal file

File diff suppressed because it is too large Load Diff

2305
rowers/views/racesviews.py Normal file

File diff suppressed because it is too large Load Diff

1184
rowers/views/statements.py Normal file

File diff suppressed because it is too large Load Diff

536
rowers/views/teamviews.py Normal file
View File

@@ -0,0 +1,536 @@
from statements import *
@login_required()
def team_view(request,id=0,userid=0):
ismember = 0
hasrequested = 0
r = getrequestrower(request,userid=userid)
myteams, memberteams, otherteams = get_teams(request)
teams.remove_expired_invites()
try:
t = Team.objects.get(id=id)
except Team.DoesNotExist:
raise Http404("Team doesn't exist")
if request.method == 'POST' and request.user == t.manager:
inviteform = TeamInviteForm(request.POST)
inviteform.fields['user'].queryset = User.objects.filter(rower__isnull=False,rower__team__in=myteams).distinct().exclude(rower__team__name=t.name)
if inviteform.is_valid():
cd = inviteform.cleaned_data
newmember = cd['user']
email = cd['email']
inviteid,text = teams.create_invite(t,t.manager,
user=newmember,
email=email)
if inviteid:
teams.send_invite_email(inviteid)
successmessage = text
messages.info(request,successmessage)
else:
message = text
messages.error(request,message)
elif request.user == t.manager:
inviteform = TeamInviteForm()
inviteform.fields['user'].queryset = User.objects.filter(rower__isnull=False,rower__team__in=myteams).distinct().exclude(rower__team__name=t.name)
else:
inviteform = ''
members = Rower.objects.filter(team=t).order_by('user__last_name','user__first_name')
thisteammyrequests = TeamRequest.objects.filter(team=t,user=request.user)
if len(thisteammyrequests):
hasrequested = 1
if r in members:
ismember = 1
breadcrumbs = [
{
'url':reverse(rower_teams_view),
'name': 'Teams'
},
{
'url':reverse(team_view,kwargs={'id':id}),
'name': t.name
}
]
return render(request, 'team.html',
{
'team':t,
'teams':get_my_teams(request.user),
'myteams':myteams,
'memberteams':memberteams,
'members':members,
'breadcrumbs':breadcrumbs,
'active':'nav-teams',
'inviteform':inviteform,
'ismember':ismember,
'hasrequested':hasrequested,
})
@login_required()
def team_leaveconfirm_view(request,id=0):
try:
t = Team.objects.get(id=id)
except Team.DoesNotExist:
raise Http404("Team doesn't exist")
myteams, memberteams, otherteams = get_teams(request)
breadcrumbs = [
{
'url':reverse(rower_teams_view),
'name': 'Teams'
},
{
'url':reverse(team_view,kwargs={'id':id}),
'name': t.name
},
{
'url':reverse(team_leaveconfirm_view,kwargs={'id':id}),
'name': 'Leave'
}
]
return render(request,'teamleaveconfirm.html',
{
'team':t,
'teams':get_my_teams(request.user),
'myteams':myteams,
'memberteams':memberteams,
'otherteams':otherteams,
'active':'nav-teams',
'breadcrumbs':breadcrumbs,
})
@login_required()
def rower_calcdps_view(request):
r = getrower(request.user)
ws = [(w.id,w.csvfilename) for w in Workout.objects.filter(user=r)]
res = myqueue(queue,handle_updatedps,r.user.email,ws,debug=False,
emailbounced=r.emailbounced)
messages.info(request,"Your workouts are being updated in the background. You will receive email when this is done.")
url = reverse('workouts_view')
return HttpResponseRedirect(url)
@login_required()
def team_leave_view(request,id=0):
r = getrower(request.user)
teams.remove_member(id,r)
url = reverse(rower_teams_view)
response = HttpResponseRedirect(url)
return response
from rowers.forms import TeamInviteCodeForm
def get_teams(request):
r = Rower.objects.get(user=request.user)
myteams = Team.objects.filter(
manager=request.user).order_by('name')
memberteams = Team.objects.filter(
rower=r).exclude(manager=request.user).order_by('name')
otherteams = Team.objects.filter(
private='open').exclude(
rower=r).exclude(manager=request.user).order_by('name')
return myteams, memberteams, otherteams
@login_required()
def rower_teams_view(request,message='',successmessage=''):
if request.method == 'POST':
form = TeamInviteCodeForm(request.POST)
if form.is_valid():
code = form.cleaned_data['code']
res,text = teams.process_invite_code(request.user,code)
if res:
successmessage = text
else:
message = text
else:
form = TeamInviteCodeForm()
r = getrower(request.user)
ts = Team.objects.filter(rower=r)
myteams, memberteams, otherteams = get_teams(request)
teams.remove_expired_invites()
invites = TeamInvite.objects.filter(user=request.user)
requests = TeamRequest.objects.filter(user=request.user)
myrequests = TeamRequest.objects.filter(team__in=myteams)
myinvites = TeamInvite.objects.filter(team__in=myteams)
clubsize = teams.count_invites(request.user)+teams.count_club_members(request.user)
max_clubsize = r.clubsize
messages.info(request,successmessage)
messages.error(request,message)
breadcrumbs = [
{
'url':reverse(rower_teams_view),
'name': 'Teams'
}
]
return render(request, 'teams.html',
{
'teams':ts,
'active':'nav-teams',
'breadcrumbs':breadcrumbs,
'clubsize':clubsize,
'max_clubsize':max_clubsize,
'myteams':myteams,
'memberteams':memberteams,
'invites':invites,
'otherteams':otherteams,
'requests':requests,
'myrequests':myrequests,
'form':form,
'myinvites':myinvites,
})
@user_passes_test(iscoachmember,login_url="/rowers/paidplans",redirect_field_name=None)
def invitation_revoke_view(request,id):
res,text = teams.revoke_invite(request.user,id)
if res:
messages.info(request,text)
successmessage = text
else:
message = text
messages.error(request,text)
url = reverse(rower_teams_view)
return HttpResponseRedirect(url)
@user_passes_test(iscoachmember,login_url="/rowers/paidplans",redirect_field_name=None)
def manager_member_drop_view(request,teamid,userid,
message='',successmessage=''):
rower = Rower.objects.get(user__id=userid)
res, text = teams.mgr_remove_member(teamid,request.user,rower)
if res:
messages.info(request,text)
else:
messages.error(request,text)
url = reverse(rower_teams_view)
return HttpResponseRedirect(url)
@user_passes_test(iscoachmember,login_url="/rowers/paidplans",redirect_field_name=None)
def manager_requests_view(request,code=None,message='',successmessage=''):
if code:
res,text = teams.process_request_code(request.user,code)
if res:
successmessage = text
message = ''
else:
message = text
successmessage = ''
messages.info(request,successmessage)
messages.error(request,message)
url = reverse(rower_teams_view,kwargs={
})
return HttpResponseRedirect(url)
@login_required()
def team_requestmembership_view(request,teamid,userid):
try:
t = Team.objects.get(id=teamid)
except Team.DoesNotExist:
raise Http404("Team doesn't exist")
res,text = teams.create_request(t,userid)
if res:
messages.info(request,text)
else:
messages.error(request,text)
url = reverse(team_view,kwargs={
'id':int(teamid),
})
return HttpResponseRedirect(url)
@login_required()
def request_revoke_view(request,id=0):
res,text = teams.revoke_request(request.user,id)
if res:
messages.info(request,text)
else:
messages.error(request,text)
url = reverse(rower_teams_view)
return HttpResponseRedirect(url)
@user_passes_test(iscoachmember,login_url="/rowers/paidplans",redirect_field_name=None)
def request_reject_view(request,id=0):
res,text = teams.reject_request(request.user,id)
if res:
messages.info(request,text)
else:
messages.error(request,text)
url = reverse(rower_teams_view)
return HttpResponseRedirect(url)
@user_passes_test(iscoachmember,login_url="/rowers/paidplans",redirect_field_name=None)
def invitation_reject_view(request,id=0):
res,text = teams.reject_invitation(request.user,id)
if res:
messages.info(request,text)
else:
messages.error(request,text)
url = reverse(rower_teams_view)
return HttpResponseRedirect(url)
@login_required()
def rower_invitations_view(request,code=None,message='',successmessage=''):
if code:
teams.remove_expired_invites()
res,text = teams.process_invite_code(request.user,code)
if res:
messages.info(request,text)
teamid=res
url = reverse(team_view,kwargs={
'id':teamid,
})
else:
messages.error(request,text)
url = reverse(rower_teams_view)
return HttpResponseRedirect(url)
url = reverse(rower_teams_view,kwargs={
})
return HttpResponseRedirect(url)
@user_passes_test(iscoachmember,login_url="/rowers/paidplans",redirect_field_name=None)
def team_edit_view(request,id=0):
try:
t = Team.objects.get(id=id)
except Team.DoesNotExist:
raise Http404("Team does not exist")
if request.method == 'POST':
teamcreateform = TeamForm(request.POST,instance=t)
if teamcreateform.is_valid():
cd = teamcreateform.cleaned_data
name = cd['name']
notes = cd['notes']
manager = request.user
private = cd['private']
viewing = cd['viewing']
res,message=teams.update_team(t,name,manager,private,notes,
viewing)
if res:
messages.info(request,message)
else:
messages.error(request,message)
url = reverse(team_view,
kwargs={
'id':int(id),
}
)
response = HttpResponseRedirect(url)
return response
else:
teamcreateform = TeamForm(instance=t)
myteams, memberteams, otherteams = get_teams(request)
breadcrumbs = [
{
'url':reverse(rower_teams_view),
'name': 'Teams'
},
{
'url':reverse(team_view,kwargs={'id':id}),
'name': t.name
},
{
'url':reverse(team_edit_view,kwargs={'id':id}),
'name': 'Edit'
}
]
return render(request,'teamedit.html',
{
'form':teamcreateform,
'teams':get_my_teams(request.user),
'myteams':myteams,
'memberteams':memberteams,
'otherteams':otherteams,
'active':'nav-teams',
'breadcrumbs':breadcrumbs,
'team':t,
})
@user_passes_test(iscoachmember,login_url="/rowers/paidplans",redirect_field_name=None)
def team_create_view(request):
if request.method == 'POST':
teamcreateform = TeamForm(request.POST)
if teamcreateform.is_valid():
cd = teamcreateform.cleaned_data
name = cd['name']
notes = cd['notes']
manager = request.user
private = cd['private']
viewing = cd['viewing']
res,message=teams.create_team(name,manager,private,notes,
viewing)
url = reverse(rower_teams_view)
response = HttpResponseRedirect(url)
return response
else:
teamcreateform = TeamForm()
myteams, memberteams, otherteams = get_teams(request)
breadcrumbs = [
{
'url':reverse(rower_teams_view),
'name': 'Teams'
},
{
'url':reverse(team_create_view),
'name': "New Team"
},
]
return render(request,'teamcreate.html',
{
'teams':get_my_teams(request.user),
'form':teamcreateform,
'myteams':myteams,
'memberteams':memberteams,
'otherteams':otherteams,
'active':'nav-teams',
'breadcrumbs':breadcrumbs,
})
@user_passes_test(iscoachmember,login_url="/rowers/paidplans",redirect_field_name=None)
def team_deleteconfirm_view(request,id):
r = getrower(request.user)
try:
t = Team.objects.get(id=id)
except Team.DoesNotExist:
raise Http404("This team doesn't exist")
if t.manager != request.user:
raise PermissionDenied("You are not allowed to delete this team")
myteams, memberteams, otherteams = get_teams(request)
breadcrumbs = [
{
'url':reverse(rower_teams_view),
'name': 'Teams'
},
{
'url':reverse(team_view,kwargs={'id':id}),
'name': t.name
},
{
'url':reverse(team_deleteconfirm_view,kwargs={'id':id}),
'name': 'Leave'
}
]
return render(request,'teamdeleteconfirm.html',
{
'teams':get_my_teams(request.user),
'team':t,
'myteams':myteams,
'memberteams':memberteams,
'otherteams':otherteams,
'active':'nav-teams',
})
@user_passes_test(iscoachmember,login_url="/rowers/paidplans",redirect_field_name=None)
def team_delete_view(request,id):
r = getrower(request.user)
try:
t = Team.objects.get(id=id)
except Team.DoesNotExist:
raise Http404("This team doesn't exist")
if t.manager != request.user:
raise PermissionDenied("You are not allowed to delete this team")
teams.remove_team(t.id)
url = reverse(rower_teams_view)
response = HttpResponseRedirect(url)
return response
@user_passes_test(iscoachmember,login_url="/rowers/paidplans",redirect_field_name=None)
def team_members_stats_view(request,id):
r = getrower(request.user)
try:
t = Team.objects.get(id=id)
except Team.DoesNotExist:
raise Http404("This team doesn't exist")
if t.manager != request.user:
raise PermissionDenied("You are not allowed to see this page")
members = Rower.objects.filter(team=t).order_by("user__last_name","user__first_name")
theusers = [member.user for member in members]
myteams, memberteams, otherteams = get_teams(request)
breadcrumbs = [
{
'url':reverse(rower_teams_view),
'name': 'Teams'
},
{
'url':reverse(team_view,kwargs={'id':id}),
'name': t.name
},
{
'url':reverse(team_members_stats_view,kwargs={'id':id}),
'name': 'Members Stats'
}
]
response = render(request,'teamstats.html',
{
'teams':get_my_teams(request.user),
'myteams':myteams,
'memberteams':memberteams,
'otherteams':otherteams,
'active':'nav-teams',
'breadcrumbs':breadcrumbs,
'team':t,
'theusers':theusers,
})
return response

485
rowers/views/userviews.py Normal file
View File

@@ -0,0 +1,485 @@
from statements import *
@login_required()
def start_trial_view(request):
r = getrower(request.user)
if r.protrialexpires is not None:
messages.error(request,'You do not qualify for a trial')
url = '/rowers/paidplans'
return HttpResponseRedirect(url)
r.protrialexpires = datetime.date.today()+datetime.timedelta(13)
r.save()
url = reverse(workouts_view)
messages.info(request,'We have started your 14 day trial period')
subject2 = "User started Pro Trial"
message2 = "User Started Pro Trial.\n"
message2 += request.user.email + "\n"
message2 += "User name: "+request.user.username
send_mail(subject2, message2,
'Rowsandall Server <info@rowsandall.com>',
['roosendaalsander@gmail.com'])
return HttpResponseRedirect(url)
@login_required()
def start_plantrial_view(request):
r = getrower(request.user)
if r.plantrialexpires is not None:
messages.error(request,'You do not qualify for a trial')
url = '/rowers/paidplans'
return HttpResponseRedirect(url)
r.plantrialexpires = datetime.date.today()+datetime.timedelta(13)
r.protrialexpires = datetime.date.today()+datetime.timedelta(13)
r.save()
url = reverse(workouts_view)
messages.info(request,'We have started your 14 day trial period')
subject2 = "User started Plan Trial"
message2 = "User Started Plan Trial.\n"
message2 += request.user.email + "\n"
message2 += "User name: "+request.user.username
send_mail(subject2, message2,
'Rowsandall Server <info@rowsandall.com>',
['roosendaalsander@gmail.com'])
return HttpResponseRedirect(url)
# Page where user can manage his favorite charts
@login_required()
def rower_favoritecharts_view(request,userid=0):
message = ''
successmessage = ''
r = getrequestrower(request,userid=userid,notpermanent=True)
favorites = FavoriteChart.objects.filter(user=r).order_by('id')
aantal = len(favorites)
favorites_data = [{'yparam1':f.yparam1,
'yparam2':f.yparam2,
'xparam':f.xparam,
'plottype':f.plottype,
'workouttype':f.workouttype,
'reststrokes':f.reststrokes,
'notes':f.notes,}
for f in favorites]
FavoriteChartFormSet = formset_factory(FavoriteForm,formset=BaseFavoriteFormSet,extra=0)
if aantal==0:
FavoriteChartFormSet = formset_factory(FavoriteForm,formset=BaseFavoriteFormSet,extra=1)
if request.method == 'POST':
favorites_formset = FavoriteChartFormSet(request.POST)
if favorites_formset.is_valid():
new_instances = []
for favorites_form in favorites_formset:
yparam1 = favorites_form.cleaned_data.get('yparam1')
yparam2 = favorites_form.cleaned_data.get('yparam2')
xparam = favorites_form.cleaned_data.get('xparam')
plottype = favorites_form.cleaned_data.get('plottype')
workouttype = favorites_form.cleaned_data.get('workouttype')
reststrokes = favorites_form.cleaned_data.get('reststrokes')
notes = favorites_form.cleaned_data.get('notes')
new_instances.append(FavoriteChart(user=r,
yparam1=yparam1,
yparam2=yparam2,
xparam=xparam,
plottype=plottype,
notes=notes,
workouttype=workouttype,
reststrokes=reststrokes))
try:
with transaction.atomic():
FavoriteChart.objects.filter(user=r).delete()
FavoriteChart.objects.bulk_create(new_instances)
successmessage = "You have updated your favorites"
messages.info(request,message)
if len(new_instances)==0:
FavoriteChartFormSet=formset_factory(FavoriteForm,formset=BaseFavoriteFormSet,extra=1)
favorites_formset = FavoriteChartFormSet()
except IntegrityError:
message = "something went wrong"
messages.error(request,message)
else:
favorites_formset = FavoriteChartFormSet(initial=favorites_data)
context = {
'favorites_formset':favorites_formset,
'teams':get_my_teams(request.user),
'rower':r,
}
return render(request,'favoritecharts.html',context)
# page where user sets his export settings
@login_required()
def rower_exportsettings_view(request,userid=0):
r = getrequestrower(request,userid=userid)
if request.method == 'POST':
form = RowerExportForm(request.POST)
if form.is_valid():
cd = form.cleaned_data
for attr, value in cd.items():
setattr(r, attr, value)
r.save()
messages.info(request,'Settings saved')
else:
form = RowerExportForm(instance=r)
breadcrumbs = [
{
'url':'/rowers/me/edit/',
'name': 'Profile'
},
{
'url': reverse(rower_exportsettings_view),
'name': 'Export Settings'
}
]
return render(request, 'rower_exportsettings.html',
{'form':form,
'rower':r,
'breadcrumbs': breadcrumbs,
})
# Page where user can set his details
# Add email address to form so user can change his email address
@login_required()
def rower_edit_view(request,rowerid=0,userid=0,message=""):
r = getrequestrower(request,rowerid=rowerid,userid=userid,notpermanent=True)
rowerid = r.id
breadcrumbs = [
{
'url':'/rowers/me/edit/',
'name': 'Profile'
},
{
'url': reverse(rower_edit_view),
'name': 'Account Settings'
}
]
if request.method == 'POST':
accountform = AccountRowerForm(request.POST)
userform = UserForm(request.POST,instance=r.user)
if accountform.is_valid() and userform.is_valid():
# process
cd = accountform.cleaned_data
ucd = userform.cleaned_data
first_name = ucd['first_name']
last_name = ucd['last_name']
email = ucd['email']
sex = cd['sex']
adaptiveclass = cd['adaptiveclass']
defaultlandingpage = cd['defaultlandingpage']
weightcategory = cd['weightcategory']
birthdate = cd['birthdate']
showfavoritechartnotes = cd['showfavoritechartnotes']
getemailnotifications = cd['getemailnotifications']
getimportantemails = cd['getimportantemails']
defaulttimezone=cd['defaulttimezone']
u = r.user
if u.email != email and len(email):
resetbounce = True
else:
resetbounce = False
if len(first_name):
u.first_name = first_name
u.last_name = last_name
if len(email): ## and check_email_freeforuse(u,email):
u.email = email
resetbounce = True
u.save()
r.defaulttimezone=defaulttimezone
r.weightcategory = weightcategory
r.adaptiveclass = adaptiveclass
r.getemailnotifications = getemailnotifications
r.getimportantemails = getimportantemails
r.defaultlandingpage = defaultlandingpage
r.showfavoritechartnotes = showfavoritechartnotes
r.sex = sex
r.birthdate = birthdate
if resetbounce and r.emailbounced:
r.emailbounced = False
r.save()
accountform = AccountRowerForm(instance=r)
userform = UserForm(instance=u)
successmessage = 'Account Information changed'
messages.info(request,successmessage)
else:
accountform = AccountRowerForm(instance=r)
userform = UserForm(instance=r.user)
grants = AccessToken.objects.filter(user=request.user)
return render(request, 'rower_form.html',
{
'teams':get_my_teams(request.user),
'breadcrumbs':breadcrumbs,
'grants':grants,
'userform':userform,
'accountform':accountform,
'rower':r,
})
# Page where user can set his details
# Add email address to form so user can change his email address
@login_required()
def rower_prefs_view(request,userid=0,message=""):
r = getrequestrower(request,userid=userid,notpermanent=True)
rowerid = r.id
breadcrumbs = [
{
'url':'/rowers/me/edit/',
'name': 'Profile'
},
{
'url': reverse(rower_prefs_view),
'name': 'Zones'
}
]
form = RowerForm(instance=r)
powerform = RowerPowerForm(instance=r)
powerzonesform = RowerPowerZonesForm(instance=r)
if request.method == 'POST' and "ut2" in request.POST:
form = RowerForm(request.POST)
if form.is_valid():
# something
cd = form.cleaned_data
hrmax = cd['max']
ut2 = cd['ut2']
ut1 = cd['ut1']
at = cd['at']
tr = cd['tr']
an = cd['an']
rest = cd['rest']
r.max = max(min(hrmax,250),10)
r.ut2 = max(min(ut2,250),10)
r.ut1 = max(min(ut1,250),10)
r.at = max(min(at,250),10)
r.tr = max(min(tr,250),10)
r.an = max(min(an,250),10)
r.rest = max(min(rest,250),10)
r.save()
successmessage = "Your Heart Rate data were changed"
messages.info(request,successmessage)
elif request.method == 'POST' and "ftp" in request.POST:
powerform = RowerPowerForm(request.POST)
if powerform.is_valid():
cd = powerform.cleaned_data
hrftp = cd['hrftp']
if hrftp == 0:
hrftp = int((r.an+r.tr)/2.)
ftp = cd['ftp']
otwslack = cd['otwslack']
powerfrac = 100*np.array([r.pw_ut2,
r.pw_ut1,
r.pw_at,
r.pw_tr,r.pw_an])/r.ftp
r.ftp = max(min(ftp,650),50)
r.otwslack = max(min(otwslack,50),0)
ut2,ut1,at,tr,an = (r.ftp*powerfrac/100.).astype(int)
r.pw_ut2 = ut2
r.pw_ut1 = ut1
r.pw_at = at
r.pw_tr = tr
r.pw_an = an
r.hrftp = hrftp
r.save()
message = "FTP and/or OTW slack values changed."
messages.info(request,message)
elif request.method == 'POST' and "ut3name" in request.POST:
powerzonesform = RowerPowerZonesForm(request.POST)
if powerzonesform.is_valid():
cd = powerzonesform.cleaned_data
pw_ut2 = cd['pw_ut2']
pw_ut1 = cd['pw_ut1']
pw_at = cd['pw_at']
pw_tr = cd['pw_tr']
pw_an = cd['pw_an']
ut3name = cd['ut3name']
ut2name = cd['ut2name']
ut1name = cd['ut1name']
atname = cd['atname']
trname = cd['trname']
anname = cd['anname']
powerzones = [ut3name,ut2name,ut1name,atname,trname,anname]
r.pw_ut2 = pw_ut2
r.pw_ut1 = pw_ut1
r.pw_at = pw_at
r.pw_tr = pw_tr
r.pw_an = pw_an
r.powerzones = powerzones
r.save()
successmessage = "Your Power Zone data were changed"
messages.info(request,successmessage)
return render(request, 'rower_preferences.html',
{
'form':form,
'teams':get_my_teams(request.user),
'powerform':powerform,
'powerzonesform':powerzonesform,
'breadcrumbs':breadcrumbs,
'rower':r,
})
# Revoke an app that you granted access through the API.
# this views is called when you press a button on the User edit page
# the button is only there when you have granted access to an app
@login_required()
def rower_revokeapp_view(request,id=0):
try:
tokens = AccessToken.objects.filter(user=request.user,application=id)
refreshtokens = AccessToken.objects.filter(user=request.user,application=id)
for token in tokens:
token.revoke()
for token in refreshtokens:
token.revoke()
r = getrower(request.user)
form = RowerForm(instance=r)
powerform = RowerPowerForm(instance=r)
grants = AccessToken.objects.filter(user=request.user)
url = reverse(rower_edit_view)
return HttpResponseRedirect(url)
except AccessToken.DoesNotExist:
raise Http404("Access token doesn't exist")
@login_required()
def rower_update_empower_view(
request,
startdate=timezone.now()-datetime.timedelta(days=365),
enddate=timezone.now()
):
try:
r = getrower(request.user)
except Rower.DoesNotExist:
raise Http404("Rower doesn't exist")
if request.method == 'POST' and 'daterange' in request.POST:
dateform = DateRangeForm(request.POST)
if dateform.is_valid():
startdate = dateform.cleaned_data['startdate']
enddate = dateform.cleaned_data['enddate']
startdatestring = startdate.strftime('%Y-%m-%d')
enddatestring = enddate.strftime('%Y-%m-%d')
request.session['startdate'] = startdatestring
request.session['enddate'] = enddatestring
else:
dateform = DateRangeForm(initial={
'startdate':startdate,
'enddate':enddate,
})
if request.method == 'POST' and 'workouts' in request.POST:
form = WorkoutMultipleCompareForm(request.POST)
if form.is_valid():
cd = form.cleaned_data
workouts = cd['workouts']
workoutdicts = []
for w in workouts:
if w.user != r:
message = "You can only alter your own workouts"
messages.error(request,message)
if 'x' in w.boattype and w.oarlength is not None and w.oarlength > 3.30:
message = "Oarlength and boat type mismatch for workout "+str(w.id)+". Skipping workout"
messages.error(request,message)
elif 'x' not in w.boattype and w.oarlength is not None and w.oarlength <= 3.30:
message = "Oarlength and boat type mismatch for workout "+str(w.id)+". Skipping workout"
messages.error(request,message)
elif w.oarlength is None:
message = "Incorrect oarlength in workout "+str(w.id)+". Skipping workout"
messages.error(request,message)
else:
workoutdict = {
'id':w.id,
'boattype':w.boattype,
'filename':w.csvfilename,
'inboard':w.inboard,
'oarlength':w.oarlength
}
workoutdicts.append(workoutdict)
w.workoutsource = 'speedcoach2corrected'
w.save()
job = myqueue(queuelow,handle_update_empower,
request.user.email,workoutdicts,
debug=False,
emailbounced=r.emailbounced)
try:
request.session['async_tasks'] += [(job.id,'update_empower')]
except KeyError:
request.session['async_tasks'] = [(job.id,'update_empower')]
successmessage = 'Your workouts are being updated in the background. You will receive email when this is done. You can check the status of your calculations <a href="/rowers/jobs-status" target="_blank">here</a>'
messages.info(request,successmessage)
url = reverse(workouts_view)
return HttpResponseRedirect(url)
else:
workouts = Workout.objects.filter(
startdatetime__gte=startdate,
startdatetime__lte=enddate,
workoutsource='speedcoach2',
user=r,
).order_by("-date","-starttime")
form = WorkoutMultipleCompareForm()
form.fields["workouts"].queryset = workouts
# GET request = prepare form
return render(request, 'empower_fix.html',
{'workouts':workouts,
'active': 'nav-workouts',
'dateform':dateform,
'form':form,
'rower':r
})

5205
rowers/views/workoutviews.py Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -1757,35 +1757,35 @@ def add_workout_from_strokedata(user,importid,data,strokedata,
unixtime = cum_time+starttimeunix
# unixtime[0] = starttimeunix
seconds = 0.1*strokedata.ix[:,'t']
seconds = 0.1*strokedata.loc[:,'t']
nr_rows = len(unixtime)
try:
latcoord = strokedata.ix[:,'lat']
loncoord = strokedata.ix[:,'lon']
latcoord = strokedata.loc[:,'lat']
loncoord = strokedata.loc[:,'lon']
except:
latcoord = np.zeros(nr_rows)
loncoord = np.zeros(nr_rows)
try:
strokelength = strokedata.ix[:,'strokelength']
strokelength = strokedata.loc[:,'strokelength']
except:
strokelength = np.zeros(nr_rows)
dist2 = 0.1*strokedata.ix[:,'d']
dist2 = 0.1*strokedata.loc[:,'d']
try:
spm = strokedata.ix[:,'spm']
spm = strokedata.loc[:,'spm']
except KeyError:
spm = 0*dist2
try:
hr = strokedata.ix[:,'hr']
hr = strokedata.loc[:,'hr']
except KeyError:
hr = 0*spm
pace = strokedata.ix[:,'p']/10.
pace = strokedata.loc[:,'p']/10.
pace = np.clip(pace,0,1e4)
pace = pace.replace(0,300)
@@ -7967,7 +7967,7 @@ def workout_downloadwind_view(request,id=0,
return HttpResponse("Error: CSV Data File Not Found")
try:
bearing = rowdata.df.ix[:,'bearing'].values
bearing = rowdata.df.loc[:,'bearing'].values
except KeyError:
rowdata.add_bearing()
rowdata.write_csv(f1,gzip=True)
@@ -7976,7 +7976,7 @@ def workout_downloadwind_view(request,id=0,
try:
avglat = rowdata.df[' latitude'].mean()
avglon = rowdata.df[' longitude'].mean()
avgtime = int(rowdata.df['TimeStamp (sec)'].mean()-rowdata.df.ix[0,'TimeStamp (sec)'])
avgtime = int(rowdata.df['TimeStamp (sec)'].mean()-rowdata.df.loc[:,'TimeStamp (sec)'].iloc[0])
startdatetime = dateutil.parser.parse("{}, {}".format(row.date,
row.starttime))
@@ -8033,7 +8033,7 @@ def workout_downloadmetar_view(request,id=0,
return HttpResponse("Error: CSV Data File Not Found")
try:
bearing = rowdata.df.ix[:,'bearing'].values
bearing = rowdata.df.loc[:,'bearing'].values
except KeyError:
rowdata.add_bearing()
rowdata.write_csv(f1,gzip=True)
@@ -8043,7 +8043,7 @@ def workout_downloadmetar_view(request,id=0,
avglat = rowdata.df[' latitude'].mean()
avglon = rowdata.df[' longitude'].mean()
airportcode = get_airport_code(avglat,avglon)[0]
avgtime = int(rowdata.df['TimeStamp (sec)'].mean()-rowdata.df.ix[0,'TimeStamp (sec)'])
avgtime = int(rowdata.df['TimeStamp (sec)'].mean()-rowdata.df.loc[:,'TimeStamp (sec)'].iloc[0])
startdatetime = dateutil.parser.parse("{}, {}".format(row.date,
row.starttime))
@@ -8121,7 +8121,7 @@ def workout_wind_view(request,id=0,message="",successmessage=""):
hascoordinates = 1
try:
latitude = rowdata.df.ix[:,' latitude']
latitude = rowdata.df.loc[:,' latitude']
except KeyError:
hascoordinates = 0
@@ -8129,7 +8129,7 @@ def workout_wind_view(request,id=0,message="",successmessage=""):
hascoordinates = 0
try:
bearing = rowdata.df.ix[:,'bearing'].values
bearing = rowdata.df.loc[:,'bearing'].values
except KeyError:
rowdata.add_bearing()
rowdata.write_csv(f1,gzip=True)
@@ -8811,7 +8811,7 @@ def cumstats(request,theuser=0,
thedict = {}
for field2,verbosename in fielddict.iteritems():
try:
thedict[field2] = cor.ix[field1,field2]
thedict[field2] = cor.loc[field1,field2]
except KeyError:
thedict[field2] = 0
@@ -9030,7 +9030,7 @@ def workout_stats_view(request,id=0,message="",successmessage=""):
thedict = {}
for field2,verbosename in fielddict.iteritems():
try:
thedict[field2] = cor.ix[field1,field2]
thedict[field2] = cor.loc[field1,field2]
except KeyError:
thedict[field2] = 0
@@ -14167,6 +14167,7 @@ def plannedsession_create_view(request,
enddatestring=enddatestring)
if request.method == 'POST':
sessioncreateform = PlannedSessionForm(request.POST)
if sessioncreateform.is_valid():
@@ -14439,7 +14440,8 @@ def plannedsession_teamcreate_view(request,
sessioncreateform = PlannedSessionForm(request.POST)
sessionteamselectform = PlannedSessionTeamForm(
request.user,request.POST
)
)
if sessioncreateform.is_valid() and sessionteamselectform.is_valid():
cd = sessioncreateform.cleaned_data
startdate = cd['startdate']
@@ -18412,12 +18414,7 @@ class TrainingTargetUpdate(UpdateView):
return obj
def allsundays(startdate,enddate):
d = startdate
d += timedelta(days = 6 - d.weekday()) # first Sunday
while d<=enddate:
yield d
d += timedelta(days=7)
from rowers.utils import allsundays
@user_passes_test(hasplannedsessions,login_url="/rowers/paidplans",
message="This functionality requires a Coach or Self-Coach plan",
@@ -18472,12 +18469,7 @@ def planmesocyclebyweek(request,id=0,userid=0):
return HttpResponseRedirect(url)
def allmonths(startdate,enddate):
d = startdate
while d<enddate:
yield d
d = datetime.date(d.year+(d.month / 12),((d.month % 12) + 1),1)
from rowers.utils import allmonths
@user_passes_test(hasplannedsessions,login_url="/rowers/paidplans",
message="This functionality requires a Coach or Self-Coach plan",