Private
Public Access
1
0

done multiflex and cumflex

This commit is contained in:
Sander Roosendaal
2019-01-14 15:13:28 +01:00
parent 7e977ab659
commit 700c84332a
8 changed files with 988 additions and 9 deletions

2
rowers/.coveragerc Normal file
View File

@@ -0,0 +1,2 @@
[run]
omit = *migrations*

View File

@@ -146,6 +146,12 @@ def mocked_read_df_cols_sql_multi(ids, columns, convertnewtons=True):
return df, extracols
def mocked_read_df_cols_sql_multiflex(ids, columns, convertnewtons=True):
df = pd.read_csv('rowers/tests/testdata/multiflexdata.csv')
extracols = []
return df, extracols
def mocked_stravaexport(f2,workoutname,stravatoken,description='',
activity_type='Rowing'):
print "this is mocked strava export"

View File

@@ -126,40 +126,52 @@ class InteractiveChartTest(TestCase):
@patch('rowers.dataprep.create_engine')
@patch('rowers.dataprep.read_df_sql')
def test_interactive_chart7(self, mocked_sqlalchemy,mocked_read_df_sql):
@patch('rowers.dataprep.getsmallrowdata_db',side_effect=mocked_getsmallrowdata_db)
def test_interactive_chart7(self, mocked_sqlalchemy,mocked_read_df_sql,
mocked_getsmallrowdata_db):
res = iplots.interactive_flex_chart2(self.wote.id,promember=0,
xparam='time',
yparam1='pace',yparam2='spm')
@patch('rowers.dataprep.create_engine')
@patch('rowers.dataprep.read_df_sql')
def test_interactive_chart8(self, mocked_sqlalchemy,mocked_read_df_sql):
@patch('rowers.dataprep.getsmallrowdata_db',side_effect=mocked_getsmallrowdata_db)
def test_interactive_chart8(self, mocked_sqlalchemy,mocked_read_df_sql,
mocked_getsmallrowdata_db):
res = iplots.interactive_flex_chart2(self.wote.id,
promember=0,xparam='distance',
yparam1='pace',yparam2='spm')
@patch('rowers.dataprep.create_engine')
@patch('rowers.dataprep.read_df_sql')
def test_interactive_chart9(self, mocked_sqlalchemy,mocked_read_df_sql):
@patch('rowers.dataprep.getsmallrowdata_db',side_effect=mocked_getsmallrowdata_db)
def test_interactive_chart9(self, mocked_sqlalchemy,mocked_read_df_sql,
mocked_getsmallrowdata_db):
res = iplots.interactive_flex_chart2(self.wote.id,
promember=1,xparam='time',
yparam1='pace',yparam2='hr')
@patch('rowers.dataprep.create_engine')
@patch('rowers.dataprep.read_df_sql')
def test_interactive_chart10(self, mocked_sqlalchemy,mocked_read_df_sql):
@patch('rowers.dataprep.getsmallrowdata_db',side_effect=mocked_getsmallrowdata_db)
def test_interactive_chart10(self, mocked_sqlalchemy,mocked_read_df_sql,
mocked_getsmallrowdata_db):
res = iplots.interactive_flex_chart2(self.wote.id,
promember=1,xparam='distance',
yparam1='pace',yparam2='hr')
@patch('rowers.dataprep.create_engine')
@patch('rowers.dataprep.read_df_sql')
def test_interactive_chart11(self, mocked_sqlalchemy,mocked_read_df_sql):
@patch('rowers.dataprep.getsmallrowdata_db',side_effect=mocked_getsmallrowdata_db)
def test_interactive_chart11(self, mocked_sqlalchemy,mocked_read_df_sql,
mocked_getsmallrowdata_db):
res = iplots.interactive_flex_chart2(self.wote.id,
promember=1,xparam='time',
yparam1='pace',yparam2='spm')
@patch('rowers.dataprep.create_engine')
@patch('rowers.dataprep.read_df_sql')
def test_interactive_chart12(self, mocked_sqlalchemy,mocked_read_df_sql):
@patch('rowers.dataprep.getsmallrowdata_db',side_effect=mocked_getsmallrowdata_db)
def test_interactive_chart12(self, mocked_sqlalchemy,mocked_read_df_sql,
mocked_getsmallrowdata_db):
res = iplots.interactive_flex_chart2(self.wote.id,promember=1,
xparam='distance',
yparam1='pace',yparam2='spm')

View File

@@ -84,7 +84,7 @@ class WorkoutCompareTest(TestCase):
self.assertEqual(response.status_code,200)
@patch('rowers.dataprep.create_engine')
@patch('rowers.dataprep.getsmallrowdata_db')
@patch('rowers.dataprep.getsmallrowdata_db', side_effect=mocked_getsmallrowdata_db)
def test_workouts_compare_submit(self, mocked_sqlalchemy,
mocked_getsmallrowdata_db):
@@ -313,6 +313,195 @@ class ForcecurveTest(TestCase):
response = self.c.get(url)
self.assertEqual(response.status_code,200)
class CumFlexTest(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()
@patch('rowers.dataprep.read_cols_df_sql', side_effect = mocked_read_df_cols_sql_multiflex)
def test_cumflex(self, mocked_df):
login = self.c.login(username=self.u.username, password=self.password)
self.assertTrue(login)
startdate = (self.user_workouts[0].startdatetime-datetime.timedelta(days=3)).date()
enddate = (self.user_workouts[0].startdatetime+datetime.timedelta(days=3)).date()
waterboattype = [u'1x',
u'2x',
u'2x+',
u'2-',
u'2+',
u'3x+',
u'3x-',
u'4x',
u'4x+',
u'4-',
u'4+',
u'8+',
u'8x+']
form_data = {
'startdate':startdate,
'enddate':enddate,
'modality':u'all',
'waterboattype': waterboattype,
'xaxis':'spm',
'yaxis1':'driveenergy',
'yaxis2':'power',
}
form = TrendFlexModalForm(form_data)
self.assertTrue(form.is_valid)
self.factory.user = self.u
form = FlexAxesForm(self.factory,form_data)
url = '/rowers/flexall/'
response = self.c.get(url)
self.assertEqual(response.status_code,200)
response = self.c.post(url, form_data)
self.assertEqual(response.status_code,200)
options = {'enddatestring': '2019-01-14',
'includereststrokes': False,
'modality': u'water',
'rankingonly': False,
'startdatestring': '2018-12-15',
'theuser': 2,
'waterboattype': [u'1x',
u'2x',
u'2x+',
u'2-',
u'2+',
u'3x+',
u'3x-',
u'4x',
u'4x+',
u'4-',
u'4+',
u'8+',
u'8x+'],
'xparam': u'spm',
'yparam1': u'driveenergy',
'yparam2': u'power'}
self.c.session['options'] = options
self.c.session.save()
url = '/rowers/flexalldata/'
response = self.c.get(url)
self.assertEqual(response.status_code, 200)
class MultiFlexTest(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()
@patch('rowers.dataprep.read_cols_df_sql', side_effect = mocked_read_df_cols_sql_multiflex)
def test_multiflex(self, mocked_df):
login = self.c.login(username=self.u.username, password=self.password)
self.assertTrue(login)
startdate = (self.user_workouts[0].startdatetime-datetime.timedelta(days=3)).date()
enddate = (self.user_workouts[0].startdatetime+datetime.timedelta(days=3)).date()
waterboattype = [u'1x',
u'2x',
u'2x+',
u'2-',
u'2+',
u'3x+',
u'3x-',
u'4x',
u'4x+',
u'4-',
u'4+',
u'8+',
u'8x+']
form_data = {
'startdate':startdate,
'enddate':enddate,
'modality':u'all',
'waterboattype': waterboattype,
'binsize':u'1',
'palette':u'monochrome_blue',
'spmmax':55,
'spmmin':15,
'workmax':1500,
'workmin':0,
'workouts':[1,2,3,4,5],
'workoutselectform':'Create Chart',
'xparam':'spm',
'yparam':'power',
'groupby':'driveenergy',
}
form = MultiFlexChoiceForm(form_data)
self.assertTrue(form.is_valid)
url = '/rowers/user-multiflex-select/'
response = self.c.get(url)
self.assertEqual(response.status_code,200)
url = '/rowers/user-multiflex/user/1/'
reponse = self.c.post(url, form_data,follow=True)
self.assertEqual(response.status_code, 200)
options={
'includereststrokes':False,
'ploterrorbars':True,
'userid':0,
'palette': 'monochrome_blue',
'groupby': 'driveenergy',
'binsize': 1,
'xparam': 'spm',
'yparam': 'power',
'spmmin': 15,
'spmmax': 55,
'workmin': 400,
'workmax': 1500,
'ids': [1,2,3,4,5],
'ploterrorbars':False,
}
self.c.session['options'] = options
self.c.session.save()
url = '/rowers/user-multiflex-data/'
response = self.c.get(url)
self.assertEqual(response.status_code, 200)
class HistoTest(TestCase):
def setUp(self):
self.u = UserFactory()

View File

@@ -37,7 +37,10 @@ import json
import numpy as np
from rowers import urls
from rowers.views import error500_view,error404_view,error400_view,error403_view
from rowers.views import (
error500_view,error404_view,error400_view,error403_view,
add_defaultfavorites
)
from rowers.dataprep import delete_strokedata
@@ -59,6 +62,9 @@ class ViewTest(TestCase):
gdproptindate=timezone.now(),
rowerplan='coach',
)
add_defaultfavorites(self.r)
self.nu = datetime.datetime.now()
def test_upload_view_notloggedin(self):
@@ -113,6 +119,9 @@ class ViewTest(TestCase):
response = self.c.get('/rowers/workout/1/workflow/',
follow=True)
response = self.c.get('/rowers/workout/1/get-thumbnails/',
follow=True)
self.assertEqual(response.status_code, 200)
form_data = {

761
rowers/tests/testdata/multiflexdata.csv vendored Normal file
View File

@@ -0,0 +1,761 @@
,distance,power,workoutid,workoutstate,spm,driveenergy
0,0,612.1160502,1,4,36.14457831,1016.112643
1,11.11111111,612.1160502,1,4,36.14457831,1016.112643
2,22.22222222,612.1160502,1,4,36.14457831,1016.112643
3,33.33333333,612.1160502,1,4,36.14457831,1016.112643
4,44.44444444,612.1160502,1,4,36.14457831,1016.112643
5,55.55555556,612.1160502,1,4,36.14457831,1016.112643
6,66.66666667,612.1160502,1,4,36.14457831,1016.112643
7,77.77777778,612.1160502,1,4,36.14457831,1016.112643
8,88.88888889,612.1160502,1,4,36.14457831,1016.112643
9,100,612.1160502,1,4,36.14457831,1016.112643
10,0,345.8333773,2,4,29.88047809,694.4334217
11,10.20408163,345.8333773,2,4,29.88047809,694.4334217
12,20.40816327,345.8333773,2,4,29.88047809,694.4334217
13,30.6122449,345.8333773,2,4,29.88047809,694.4334217
14,40.81632653,345.8333773,2,4,29.88047809,694.4334217
15,51.02040816,345.8333773,2,4,29.88047809,694.4334217
16,61.2244898,345.8333773,2,4,29.88047809,694.4334217
17,71.42857143,345.8333773,2,4,29.88047809,694.4334217
18,81.63265306,345.8333773,2,4,29.88047809,694.4334217
19,91.83673469,345.8333773,2,4,29.88047809,694.4334217
20,102.0408163,345.8333773,2,4,29.88047809,694.4334217
21,112.244898,345.8333773,2,4,29.88047809,694.4334217
22,122.4489796,345.8333773,2,4,29.88047809,694.4334217
23,132.6530612,345.8333773,2,4,29.88047809,694.4334217
24,142.8571429,345.8333773,2,4,29.88047809,694.4334217
25,153.0612245,345.8333773,2,4,29.88047809,694.4334217
26,163.2653061,345.8333773,2,4,29.88047809,694.4334217
27,173.4693878,345.8333773,2,4,29.88047809,694.4334217
28,183.6734694,345.8333773,2,4,29.88047809,694.4334217
29,193.877551,345.8333773,2,4,29.88047809,694.4334217
30,204.0816327,345.8333773,2,4,29.88047809,694.4334217
31,214.2857143,345.8333773,2,4,29.88047809,694.4334217
32,224.4897959,345.8333773,2,4,29.88047809,694.4334217
33,234.6938776,345.8333773,2,4,29.88047809,694.4334217
34,244.8979592,345.8333773,2,4,29.88047809,694.4334217
35,255.1020408,345.8333773,2,4,29.88047809,694.4334217
36,265.3061224,345.8333773,2,4,29.88047809,694.4334217
37,275.5102041,345.8333773,2,4,29.88047809,694.4334217
38,285.7142857,345.8333773,2,4,29.88047809,694.4334217
39,295.9183673,345.8333773,2,4,29.88047809,694.4334217
40,306.122449,345.8333773,2,4,29.88047809,694.4334217
41,316.3265306,345.8333773,2,4,29.88047809,694.4334217
42,326.5306122,345.8333773,2,4,29.88047809,694.4334217
43,336.7346939,345.8333773,2,4,29.88047809,694.4334217
44,346.9387755,345.8333773,2,4,29.88047809,694.4334217
45,357.1428571,345.8333773,2,4,29.88047809,694.4334217
46,367.3469388,345.8333773,2,4,29.88047809,694.4334217
47,377.5510204,345.8333773,2,4,29.88047809,694.4334217
48,387.755102,345.8333773,2,4,29.88047809,694.4334217
49,397.9591837,345.8333773,2,4,29.88047809,694.4334217
50,408.1632653,345.8333773,2,4,29.88047809,694.4334217
51,418.3673469,345.8333773,2,4,29.88047809,694.4334217
52,428.5714286,345.8333773,2,4,29.88047809,694.4334217
53,438.7755102,345.8333773,2,4,29.88047809,694.4334217
54,448.9795918,345.8333773,2,4,29.88047809,694.4334217
55,459.1836735,345.8333773,2,4,29.88047809,694.4334217
56,469.3877551,345.8333773,2,4,29.88047809,694.4334217
57,479.5918367,345.8333773,2,4,29.88047809,694.4334217
58,489.7959184,345.8333773,2,4,29.88047809,694.4334217
59,500,345.8333773,2,4,29.88047809,694.4334217
60,0,272.1323973,3,4,27.5862069,591.8879641
61,10.1010101,272.1323973,3,4,27.5862069,591.8879641
62,20.2020202,272.1323973,3,4,27.5862069,591.8879641
63,30.3030303,272.1323973,3,4,27.5862069,591.8879641
64,40.4040404,272.1323973,3,4,27.5862069,591.8879641
65,50.50505051,272.1323973,3,4,27.5862069,591.8879641
66,60.60606061,272.1323973,3,4,27.5862069,591.8879641
67,70.70707071,272.1323973,3,4,27.5862069,591.8879641
68,80.80808081,272.1323973,3,4,27.5862069,591.8879641
69,90.90909091,272.1323973,3,4,27.5862069,591.8879641
70,101.010101,272.1323973,3,4,27.5862069,591.8879641
71,111.1111111,272.1323973,3,4,27.5862069,591.8879641
72,121.2121212,272.1323973,3,4,27.5862069,591.8879641
73,131.3131313,272.1323973,3,4,27.5862069,591.8879641
74,141.4141414,272.1323973,3,4,27.5862069,591.8879641
75,151.5151515,272.1323973,3,4,27.5862069,591.8879641
76,161.6161616,272.1323973,3,4,27.5862069,591.8879641
77,171.7171717,272.1323973,3,4,27.5862069,591.8879641
78,181.8181818,272.1323973,3,4,27.5862069,591.8879641
79,191.9191919,272.1323973,3,4,27.5862069,591.8879641
80,202.020202,272.1323973,3,4,27.5862069,591.8879641
81,212.1212121,272.1323973,3,4,27.5862069,591.8879641
82,222.2222222,272.1323973,3,4,27.5862069,591.8879641
83,232.3232323,272.1323973,3,4,27.5862069,591.8879641
84,242.4242424,272.1323973,3,4,27.5862069,591.8879641
85,252.5252525,272.1323973,3,4,27.5862069,591.8879641
86,262.6262626,272.1323973,3,4,27.5862069,591.8879641
87,272.7272727,272.1323973,3,4,27.5862069,591.8879641
88,282.8282828,272.1323973,3,4,27.5862069,591.8879641
89,292.9292929,272.1323973,3,4,27.5862069,591.8879641
90,303.030303,272.1323973,3,4,27.5862069,591.8879641
91,313.1313131,272.1323973,3,4,27.5862069,591.8879641
92,323.2323232,272.1323973,3,4,27.5862069,591.8879641
93,333.3333333,272.1323973,3,4,27.5862069,591.8879641
94,343.4343434,272.1323973,3,4,27.5862069,591.8879641
95,353.5353535,272.1323973,3,4,27.5862069,591.8879641
96,363.6363636,272.1323973,3,4,27.5862069,591.8879641
97,373.7373737,272.1323973,3,4,27.5862069,591.8879641
98,383.8383838,272.1323973,3,4,27.5862069,591.8879641
99,393.9393939,272.1323973,3,4,27.5862069,591.8879641
100,404.040404,272.1323973,3,4,27.5862069,591.8879641
101,414.1414141,272.1323973,3,4,27.5862069,591.8879641
102,424.2424242,272.1323973,3,4,27.5862069,591.8879641
103,434.3434343,272.1323973,3,4,27.5862069,591.8879641
104,444.4444444,272.1323973,3,4,27.5862069,591.8879641
105,454.5454545,272.1323973,3,4,27.5862069,591.8879641
106,464.6464646,272.1323973,3,4,27.5862069,591.8879641
107,474.7474747,272.1323973,3,4,27.5862069,591.8879641
108,484.8484848,272.1323973,3,4,27.5862069,591.8879641
109,494.9494949,272.1323973,3,4,27.5862069,591.8879641
110,505.0505051,272.1323973,3,4,27.5862069,591.8879641
111,515.1515152,272.1323973,3,4,27.5862069,591.8879641
112,525.2525253,272.1323973,3,4,27.5862069,591.8879641
113,535.3535354,272.1323973,3,4,27.5862069,591.8879641
114,545.4545455,272.1323973,3,4,27.5862069,591.8879641
115,555.5555556,272.1323973,3,4,27.5862069,591.8879641
116,565.6565657,272.1323973,3,4,27.5862069,591.8879641
117,575.7575758,272.1323973,3,4,27.5862069,591.8879641
118,585.8585859,272.1323973,3,4,27.5862069,591.8879641
119,595.959596,272.1323973,3,4,27.5862069,591.8879641
120,606.0606061,272.1323973,3,4,27.5862069,591.8879641
121,616.1616162,272.1323973,3,4,27.5862069,591.8879641
122,626.2626263,272.1323973,3,4,27.5862069,591.8879641
123,636.3636364,272.1323973,3,4,27.5862069,591.8879641
124,646.4646465,272.1323973,3,4,27.5862069,591.8879641
125,656.5656566,272.1323973,3,4,27.5862069,591.8879641
126,666.6666667,272.1323973,3,4,27.5862069,591.8879641
127,676.7676768,272.1323973,3,4,27.5862069,591.8879641
128,686.8686869,272.1323973,3,4,27.5862069,591.8879641
129,696.969697,272.1323973,3,4,27.5862069,591.8879641
130,707.0707071,272.1323973,3,4,27.5862069,591.8879641
131,717.1717172,272.1323973,3,4,27.5862069,591.8879641
132,727.2727273,272.1323973,3,4,27.5862069,591.8879641
133,737.3737374,272.1323973,3,4,27.5862069,591.8879641
134,747.4747475,272.1323973,3,4,27.5862069,591.8879641
135,757.5757576,272.1323973,3,4,27.5862069,591.8879641
136,767.6767677,272.1323973,3,4,27.5862069,591.8879641
137,777.7777778,272.1323973,3,4,27.5862069,591.8879641
138,787.8787879,272.1323973,3,4,27.5862069,591.8879641
139,797.979798,272.1323973,3,4,27.5862069,591.8879641
140,808.0808081,272.1323973,3,4,27.5862069,591.8879641
141,818.1818182,272.1323973,3,4,27.5862069,591.8879641
142,828.2828283,272.1323973,3,4,27.5862069,591.8879641
143,838.3838384,272.1323973,3,4,27.5862069,591.8879641
144,848.4848485,272.1323973,3,4,27.5862069,591.8879641
145,858.5858586,272.1323973,3,4,27.5862069,591.8879641
146,868.6868687,272.1323973,3,4,27.5862069,591.8879641
147,878.7878788,272.1323973,3,4,27.5862069,591.8879641
148,888.8888889,272.1323973,3,4,27.5862069,591.8879641
149,898.989899,272.1323973,3,4,27.5862069,591.8879641
150,909.0909091,272.1323973,3,4,27.5862069,591.8879641
151,919.1919192,272.1323973,3,4,27.5862069,591.8879641
152,929.2929293,272.1323973,3,4,27.5862069,591.8879641
153,939.3939394,272.1323973,3,4,27.5862069,591.8879641
154,949.4949495,272.1323973,3,4,27.5862069,591.8879641
155,959.5959596,272.1323973,3,4,27.5862069,591.8879641
156,969.6969697,272.1323973,3,4,27.5862069,591.8879641
157,979.7979798,272.1323973,3,4,27.5862069,591.8879641
158,989.8989899,272.1323973,3,4,27.5862069,591.8879641
159,1000,272.1323973,3,4,27.5862069,591.8879641
160,0,180.0629199,4,4,24.03846154,449.437048
161,10.02004008,180.0629199,4,4,24.03846154,449.437048
162,20.04008016,180.0629199,4,4,24.03846154,449.437048
163,30.06012024,180.0629199,4,4,24.03846154,449.437048
164,40.08016032,180.0629199,4,4,24.03846154,449.437048
165,50.1002004,180.0629199,4,4,24.03846154,449.437048
166,60.12024048,180.0629199,4,4,24.03846154,449.437048
167,70.14028056,180.0629199,4,4,24.03846154,449.437048
168,80.16032064,180.0629199,4,4,24.03846154,449.437048
169,90.18036072,180.0629199,4,4,24.03846154,449.437048
170,100.2004008,180.0629199,4,4,24.03846154,449.437048
171,110.2204409,180.0629199,4,4,24.03846154,449.437048
172,120.240481,180.0629199,4,4,24.03846154,449.437048
173,130.260521,180.0629199,4,4,24.03846154,449.437048
174,140.2805611,180.0629199,4,4,24.03846154,449.437048
175,150.3006012,180.0629199,4,4,24.03846154,449.437048
176,160.3206413,180.0629199,4,4,24.03846154,449.437048
177,170.3406814,180.0629199,4,4,24.03846154,449.437048
178,180.3607214,180.0629199,4,4,24.03846154,449.437048
179,190.3807615,180.0629199,4,4,24.03846154,449.437048
180,200.4008016,180.0629199,4,4,24.03846154,449.437048
181,210.4208417,180.0629199,4,4,24.03846154,449.437048
182,220.4408818,180.0629199,4,4,24.03846154,449.437048
183,230.4609218,180.0629199,4,4,24.03846154,449.437048
184,240.4809619,180.0629199,4,4,24.03846154,449.437048
185,250.501002,180.0629199,4,4,24.03846154,449.437048
186,260.5210421,180.0629199,4,4,24.03846154,449.437048
187,270.5410822,180.0629199,4,4,24.03846154,449.437048
188,280.5611222,180.0629199,4,4,24.03846154,449.437048
189,290.5811623,180.0629199,4,4,24.03846154,449.437048
190,300.6012024,180.0629199,4,4,24.03846154,449.437048
191,310.6212425,180.0629199,4,4,24.03846154,449.437048
192,320.6412826,180.0629199,4,4,24.03846154,449.437048
193,330.6613226,180.0629199,4,4,24.03846154,449.437048
194,340.6813627,180.0629199,4,4,24.03846154,449.437048
195,350.7014028,180.0629199,4,4,24.03846154,449.437048
196,360.7214429,180.0629199,4,4,24.03846154,449.437048
197,370.741483,180.0629199,4,4,24.03846154,449.437048
198,380.761523,180.0629199,4,4,24.03846154,449.437048
199,390.7815631,180.0629199,4,4,24.03846154,449.437048
200,400.8016032,180.0629199,4,4,24.03846154,449.437048
201,410.8216433,180.0629199,4,4,24.03846154,449.437048
202,420.8416834,180.0629199,4,4,24.03846154,449.437048
203,430.8617234,180.0629199,4,4,24.03846154,449.437048
204,440.8817635,180.0629199,4,4,24.03846154,449.437048
205,450.9018036,180.0629199,4,4,24.03846154,449.437048
206,460.9218437,180.0629199,4,4,24.03846154,449.437048
207,470.9418838,180.0629199,4,4,24.03846154,449.437048
208,480.9619238,180.0629199,4,4,24.03846154,449.437048
209,490.9819639,180.0629199,4,4,24.03846154,449.437048
210,501.002004,180.0629199,4,4,24.03846154,449.437048
211,511.0220441,180.0629199,4,4,24.03846154,449.437048
212,521.0420842,180.0629199,4,4,24.03846154,449.437048
213,531.0621242,180.0629199,4,4,24.03846154,449.437048
214,541.0821643,180.0629199,4,4,24.03846154,449.437048
215,551.1022044,180.0629199,4,4,24.03846154,449.437048
216,561.1222445,180.0629199,4,4,24.03846154,449.437048
217,571.1422846,180.0629199,4,4,24.03846154,449.437048
218,581.1623246,180.0629199,4,4,24.03846154,449.437048
219,591.1823647,180.0629199,4,4,24.03846154,449.437048
220,601.2024048,180.0629199,4,4,24.03846154,449.437048
221,611.2224449,180.0629199,4,4,24.03846154,449.437048
222,621.242485,180.0629199,4,4,24.03846154,449.437048
223,631.2625251,180.0629199,4,4,24.03846154,449.437048
224,641.2825651,180.0629199,4,4,24.03846154,449.437048
225,651.3026052,180.0629199,4,4,24.03846154,449.437048
226,661.3226453,180.0629199,4,4,24.03846154,449.437048
227,671.3426854,180.0629199,4,4,24.03846154,449.437048
228,681.3627255,180.0629199,4,4,24.03846154,449.437048
229,691.3827655,180.0629199,4,4,24.03846154,449.437048
230,701.4028056,180.0629199,4,4,24.03846154,449.437048
231,711.4228457,180.0629199,4,4,24.03846154,449.437048
232,721.4428858,180.0629199,4,4,24.03846154,449.437048
233,731.4629259,180.0629199,4,4,24.03846154,449.437048
234,741.4829659,180.0629199,4,4,24.03846154,449.437048
235,751.503006,180.0629199,4,4,24.03846154,449.437048
236,761.5230461,180.0629199,4,4,24.03846154,449.437048
237,771.5430862,180.0629199,4,4,24.03846154,449.437048
238,781.5631263,180.0629199,4,4,24.03846154,449.437048
239,791.5831663,180.0629199,4,4,24.03846154,449.437048
240,801.6032064,180.0629199,4,4,24.03846154,449.437048
241,811.6232465,180.0629199,4,4,24.03846154,449.437048
242,821.6432866,180.0629199,4,4,24.03846154,449.437048
243,831.6633267,180.0629199,4,4,24.03846154,449.437048
244,841.6833667,180.0629199,4,4,24.03846154,449.437048
245,851.7034068,180.0629199,4,4,24.03846154,449.437048
246,861.7234469,180.0629199,4,4,24.03846154,449.437048
247,871.743487,180.0629199,4,4,24.03846154,449.437048
248,881.7635271,180.0629199,4,4,24.03846154,449.437048
249,891.7835671,180.0629199,4,4,24.03846154,449.437048
250,901.8036072,180.0629199,4,4,24.03846154,449.437048
251,911.8236473,180.0629199,4,4,24.03846154,449.437048
252,921.8436874,180.0629199,4,4,24.03846154,449.437048
253,931.8637275,180.0629199,4,4,24.03846154,449.437048
254,941.8837675,180.0629199,4,4,24.03846154,449.437048
255,951.9038076,180.0629199,4,4,24.03846154,449.437048
256,961.9238477,180.0629199,4,4,24.03846154,449.437048
257,971.9438878,180.0629199,4,4,24.03846154,449.437048
258,981.9639279,180.0629199,4,4,24.03846154,449.437048
259,991.9839679,180.0629199,4,4,24.03846154,449.437048
260,1002.004008,180.0629199,4,4,24.03846154,449.437048
261,1012.024048,180.0629199,4,4,24.03846154,449.437048
262,1022.044088,180.0629199,4,4,24.03846154,449.437048
263,1032.064128,180.0629199,4,4,24.03846154,449.437048
264,1042.084168,180.0629199,4,4,24.03846154,449.437048
265,1052.104208,180.0629199,4,4,24.03846154,449.437048
266,1062.124249,180.0629199,4,4,24.03846154,449.437048
267,1072.144289,180.0629199,4,4,24.03846154,449.437048
268,1082.164329,180.0629199,4,4,24.03846154,449.437048
269,1092.184369,180.0629199,4,4,24.03846154,449.437048
270,1102.204409,180.0629199,4,4,24.03846154,449.437048
271,1112.224449,180.0629199,4,4,24.03846154,449.437048
272,1122.244489,180.0629199,4,4,24.03846154,449.437048
273,1132.264529,180.0629199,4,4,24.03846154,449.437048
274,1142.284569,180.0629199,4,4,24.03846154,449.437048
275,1152.304609,180.0629199,4,4,24.03846154,449.437048
276,1162.324649,180.0629199,4,4,24.03846154,449.437048
277,1172.344689,180.0629199,4,4,24.03846154,449.437048
278,1182.364729,180.0629199,4,4,24.03846154,449.437048
279,1192.38477,180.0629199,4,4,24.03846154,449.437048
280,1202.40481,180.0629199,4,4,24.03846154,449.437048
281,1212.42485,180.0629199,4,4,24.03846154,449.437048
282,1222.44489,180.0629199,4,4,24.03846154,449.437048
283,1232.46493,180.0629199,4,4,24.03846154,449.437048
284,1242.48497,180.0629199,4,4,24.03846154,449.437048
285,1252.50501,180.0629199,4,4,24.03846154,449.437048
286,1262.52505,180.0629199,4,4,24.03846154,449.437048
287,1272.54509,180.0629199,4,4,24.03846154,449.437048
288,1282.56513,180.0629199,4,4,24.03846154,449.437048
289,1292.58517,180.0629199,4,4,24.03846154,449.437048
290,1302.60521,180.0629199,4,4,24.03846154,449.437048
291,1312.625251,180.0629199,4,4,24.03846154,449.437048
292,1322.645291,180.0629199,4,4,24.03846154,449.437048
293,1332.665331,180.0629199,4,4,24.03846154,449.437048
294,1342.685371,180.0629199,4,4,24.03846154,449.437048
295,1352.705411,180.0629199,4,4,24.03846154,449.437048
296,1362.725451,180.0629199,4,4,24.03846154,449.437048
297,1372.745491,180.0629199,4,4,24.03846154,449.437048
298,1382.765531,180.0629199,4,4,24.03846154,449.437048
299,1392.785571,180.0629199,4,4,24.03846154,449.437048
300,1402.805611,180.0629199,4,4,24.03846154,449.437048
301,1412.825651,180.0629199,4,4,24.03846154,449.437048
302,1422.845691,180.0629199,4,4,24.03846154,449.437048
303,1432.865731,180.0629199,4,4,24.03846154,449.437048
304,1442.885772,180.0629199,4,4,24.03846154,449.437048
305,1452.905812,180.0629199,4,4,24.03846154,449.437048
306,1462.925852,180.0629199,4,4,24.03846154,449.437048
307,1472.945892,180.0629199,4,4,24.03846154,449.437048
308,1482.965932,180.0629199,4,4,24.03846154,449.437048
309,1492.985972,180.0629199,4,4,24.03846154,449.437048
310,1503.006012,180.0629199,4,4,24.03846154,449.437048
311,1513.026052,180.0629199,4,4,24.03846154,449.437048
312,1523.046092,180.0629199,4,4,24.03846154,449.437048
313,1533.066132,180.0629199,4,4,24.03846154,449.437048
314,1543.086172,180.0629199,4,4,24.03846154,449.437048
315,1553.106212,180.0629199,4,4,24.03846154,449.437048
316,1563.126253,180.0629199,4,4,24.03846154,449.437048
317,1573.146293,180.0629199,4,4,24.03846154,449.437048
318,1583.166333,180.0629199,4,4,24.03846154,449.437048
319,1593.186373,180.0629199,4,4,24.03846154,449.437048
320,1603.206413,180.0629199,4,4,24.03846154,449.437048
321,1613.226453,180.0629199,4,4,24.03846154,449.437048
322,1623.246493,180.0629199,4,4,24.03846154,449.437048
323,1633.266533,180.0629199,4,4,24.03846154,449.437048
324,1643.286573,180.0629199,4,4,24.03846154,449.437048
325,1653.306613,180.0629199,4,4,24.03846154,449.437048
326,1663.326653,180.0629199,4,4,24.03846154,449.437048
327,1673.346693,180.0629199,4,4,24.03846154,449.437048
328,1683.366733,180.0629199,4,4,24.03846154,449.437048
329,1693.386774,180.0629199,4,4,24.03846154,449.437048
330,1703.406814,180.0629199,4,4,24.03846154,449.437048
331,1713.426854,180.0629199,4,4,24.03846154,449.437048
332,1723.446894,180.0629199,4,4,24.03846154,449.437048
333,1733.466934,180.0629199,4,4,24.03846154,449.437048
334,1743.486974,180.0629199,4,4,24.03846154,449.437048
335,1753.507014,180.0629199,4,4,24.03846154,449.437048
336,1763.527054,180.0629199,4,4,24.03846154,449.437048
337,1773.547094,180.0629199,4,4,24.03846154,449.437048
338,1783.567134,180.0629199,4,4,24.03846154,449.437048
339,1793.587174,180.0629199,4,4,24.03846154,449.437048
340,1803.607214,180.0629199,4,4,24.03846154,449.437048
341,1813.627255,180.0629199,4,4,24.03846154,449.437048
342,1823.647295,180.0629199,4,4,24.03846154,449.437048
343,1833.667335,180.0629199,4,4,24.03846154,449.437048
344,1843.687375,180.0629199,4,4,24.03846154,449.437048
345,1853.707415,180.0629199,4,4,24.03846154,449.437048
346,1863.727455,180.0629199,4,4,24.03846154,449.437048
347,1873.747495,180.0629199,4,4,24.03846154,449.437048
348,1883.767535,180.0629199,4,4,24.03846154,449.437048
349,1893.787575,180.0629199,4,4,24.03846154,449.437048
350,1903.807615,180.0629199,4,4,24.03846154,449.437048
351,1913.827655,180.0629199,4,4,24.03846154,449.437048
352,1923.847695,180.0629199,4,4,24.03846154,449.437048
353,1933.867735,180.0629199,4,4,24.03846154,449.437048
354,1943.887776,180.0629199,4,4,24.03846154,449.437048
355,1953.907816,180.0629199,4,4,24.03846154,449.437048
356,1963.927856,180.0629199,4,4,24.03846154,449.437048
357,1973.947896,180.0629199,4,4,24.03846154,449.437048
358,1983.967936,180.0629199,4,4,24.03846154,449.437048
359,1993.987976,180.0629199,4,4,24.03846154,449.437048
360,2004.008016,180.0629199,4,4,24.03846154,449.437048
361,2014.028056,180.0629199,4,4,24.03846154,449.437048
362,2024.048096,180.0629199,4,4,24.03846154,449.437048
363,2034.068136,180.0629199,4,4,24.03846154,449.437048
364,2044.088176,180.0629199,4,4,24.03846154,449.437048
365,2054.108216,180.0629199,4,4,24.03846154,449.437048
366,2064.128257,180.0629199,4,4,24.03846154,449.437048
367,2074.148297,180.0629199,4,4,24.03846154,449.437048
368,2084.168337,180.0629199,4,4,24.03846154,449.437048
369,2094.188377,180.0629199,4,4,24.03846154,449.437048
370,2104.208417,180.0629199,4,4,24.03846154,449.437048
371,2114.228457,180.0629199,4,4,24.03846154,449.437048
372,2124.248497,180.0629199,4,4,24.03846154,449.437048
373,2134.268537,180.0629199,4,4,24.03846154,449.437048
374,2144.288577,180.0629199,4,4,24.03846154,449.437048
375,2154.308617,180.0629199,4,4,24.03846154,449.437048
376,2164.328657,180.0629199,4,4,24.03846154,449.437048
377,2174.348697,180.0629199,4,4,24.03846154,449.437048
378,2184.368737,180.0629199,4,4,24.03846154,449.437048
379,2194.388778,180.0629199,4,4,24.03846154,449.437048
380,2204.408818,180.0629199,4,4,24.03846154,449.437048
381,2214.428858,180.0629199,4,4,24.03846154,449.437048
382,2224.448898,180.0629199,4,4,24.03846154,449.437048
383,2234.468938,180.0629199,4,4,24.03846154,449.437048
384,2244.488978,180.0629199,4,4,24.03846154,449.437048
385,2254.509018,180.0629199,4,4,24.03846154,449.437048
386,2264.529058,180.0629199,4,4,24.03846154,449.437048
387,2274.549098,180.0629199,4,4,24.03846154,449.437048
388,2284.569138,180.0629199,4,4,24.03846154,449.437048
389,2294.589178,180.0629199,4,4,24.03846154,449.437048
390,2304.609218,180.0629199,4,4,24.03846154,449.437048
391,2314.629259,180.0629199,4,4,24.03846154,449.437048
392,2324.649299,180.0629199,4,4,24.03846154,449.437048
393,2334.669339,180.0629199,4,4,24.03846154,449.437048
394,2344.689379,180.0629199,4,4,24.03846154,449.437048
395,2354.709419,180.0629199,4,4,24.03846154,449.437048
396,2364.729459,180.0629199,4,4,24.03846154,449.437048
397,2374.749499,180.0629199,4,4,24.03846154,449.437048
398,2384.769539,180.0629199,4,4,24.03846154,449.437048
399,2394.789579,180.0629199,4,4,24.03846154,449.437048
400,2404.809619,180.0629199,4,4,24.03846154,449.437048
401,2414.829659,180.0629199,4,4,24.03846154,449.437048
402,2424.849699,180.0629199,4,4,24.03846154,449.437048
403,2434.869739,180.0629199,4,4,24.03846154,449.437048
404,2444.88978,180.0629199,4,4,24.03846154,449.437048
405,2454.90982,180.0629199,4,4,24.03846154,449.437048
406,2464.92986,180.0629199,4,4,24.03846154,449.437048
407,2474.9499,180.0629199,4,4,24.03846154,449.437048
408,2484.96994,180.0629199,4,4,24.03846154,449.437048
409,2494.98998,180.0629199,4,4,24.03846154,449.437048
410,2505.01002,180.0629199,4,4,24.03846154,449.437048
411,2515.03006,180.0629199,4,4,24.03846154,449.437048
412,2525.0501,180.0629199,4,4,24.03846154,449.437048
413,2535.07014,180.0629199,4,4,24.03846154,449.437048
414,2545.09018,180.0629199,4,4,24.03846154,449.437048
415,2555.11022,180.0629199,4,4,24.03846154,449.437048
416,2565.130261,180.0629199,4,4,24.03846154,449.437048
417,2575.150301,180.0629199,4,4,24.03846154,449.437048
418,2585.170341,180.0629199,4,4,24.03846154,449.437048
419,2595.190381,180.0629199,4,4,24.03846154,449.437048
420,2605.210421,180.0629199,4,4,24.03846154,449.437048
421,2615.230461,180.0629199,4,4,24.03846154,449.437048
422,2625.250501,180.0629199,4,4,24.03846154,449.437048
423,2635.270541,180.0629199,4,4,24.03846154,449.437048
424,2645.290581,180.0629199,4,4,24.03846154,449.437048
425,2655.310621,180.0629199,4,4,24.03846154,449.437048
426,2665.330661,180.0629199,4,4,24.03846154,449.437048
427,2675.350701,180.0629199,4,4,24.03846154,449.437048
428,2685.370741,180.0629199,4,4,24.03846154,449.437048
429,2695.390782,180.0629199,4,4,24.03846154,449.437048
430,2705.410822,180.0629199,4,4,24.03846154,449.437048
431,2715.430862,180.0629199,4,4,24.03846154,449.437048
432,2725.450902,180.0629199,4,4,24.03846154,449.437048
433,2735.470942,180.0629199,4,4,24.03846154,449.437048
434,2745.490982,180.0629199,4,4,24.03846154,449.437048
435,2755.511022,180.0629199,4,4,24.03846154,449.437048
436,2765.531062,180.0629199,4,4,24.03846154,449.437048
437,2775.551102,180.0629199,4,4,24.03846154,449.437048
438,2785.571142,180.0629199,4,4,24.03846154,449.437048
439,2795.591182,180.0629199,4,4,24.03846154,449.437048
440,2805.611222,180.0629199,4,4,24.03846154,449.437048
441,2815.631263,180.0629199,4,4,24.03846154,449.437048
442,2825.651303,180.0629199,4,4,24.03846154,449.437048
443,2835.671343,180.0629199,4,4,24.03846154,449.437048
444,2845.691383,180.0629199,4,4,24.03846154,449.437048
445,2855.711423,180.0629199,4,4,24.03846154,449.437048
446,2865.731463,180.0629199,4,4,24.03846154,449.437048
447,2875.751503,180.0629199,4,4,24.03846154,449.437048
448,2885.771543,180.0629199,4,4,24.03846154,449.437048
449,2895.791583,180.0629199,4,4,24.03846154,449.437048
450,2905.811623,180.0629199,4,4,24.03846154,449.437048
451,2915.831663,180.0629199,4,4,24.03846154,449.437048
452,2925.851703,180.0629199,4,4,24.03846154,449.437048
453,2935.871743,180.0629199,4,4,24.03846154,449.437048
454,2945.891784,180.0629199,4,4,24.03846154,449.437048
455,2955.911824,180.0629199,4,4,24.03846154,449.437048
456,2965.931864,180.0629199,4,4,24.03846154,449.437048
457,2975.951904,180.0629199,4,4,24.03846154,449.437048
458,2985.971944,180.0629199,4,4,24.03846154,449.437048
459,2995.991984,180.0629199,4,4,24.03846154,449.437048
460,3006.012024,180.0629199,4,4,24.03846154,449.437048
461,3016.032064,180.0629199,4,4,24.03846154,449.437048
462,3026.052104,180.0629199,4,4,24.03846154,449.437048
463,3036.072144,180.0629199,4,4,24.03846154,449.437048
464,3046.092184,180.0629199,4,4,24.03846154,449.437048
465,3056.112224,180.0629199,4,4,24.03846154,449.437048
466,3066.132265,180.0629199,4,4,24.03846154,449.437048
467,3076.152305,180.0629199,4,4,24.03846154,449.437048
468,3086.172345,180.0629199,4,4,24.03846154,449.437048
469,3096.192385,180.0629199,4,4,24.03846154,449.437048
470,3106.212425,180.0629199,4,4,24.03846154,449.437048
471,3116.232465,180.0629199,4,4,24.03846154,449.437048
472,3126.252505,180.0629199,4,4,24.03846154,449.437048
473,3136.272545,180.0629199,4,4,24.03846154,449.437048
474,3146.292585,180.0629199,4,4,24.03846154,449.437048
475,3156.312625,180.0629199,4,4,24.03846154,449.437048
476,3166.332665,180.0629199,4,4,24.03846154,449.437048
477,3176.352705,180.0629199,4,4,24.03846154,449.437048
478,3186.372745,180.0629199,4,4,24.03846154,449.437048
479,3196.392786,180.0629199,4,4,24.03846154,449.437048
480,3206.412826,180.0629199,4,4,24.03846154,449.437048
481,3216.432866,180.0629199,4,4,24.03846154,449.437048
482,3226.452906,180.0629199,4,4,24.03846154,449.437048
483,3236.472946,180.0629199,4,4,24.03846154,449.437048
484,3246.492986,180.0629199,4,4,24.03846154,449.437048
485,3256.513026,180.0629199,4,4,24.03846154,449.437048
486,3266.533066,180.0629199,4,4,24.03846154,449.437048
487,3276.553106,180.0629199,4,4,24.03846154,449.437048
488,3286.573146,180.0629199,4,4,24.03846154,449.437048
489,3296.593186,180.0629199,4,4,24.03846154,449.437048
490,3306.613226,180.0629199,4,4,24.03846154,449.437048
491,3316.633267,180.0629199,4,4,24.03846154,449.437048
492,3326.653307,180.0629199,4,4,24.03846154,449.437048
493,3336.673347,180.0629199,4,4,24.03846154,449.437048
494,3346.693387,180.0629199,4,4,24.03846154,449.437048
495,3356.713427,180.0629199,4,4,24.03846154,449.437048
496,3366.733467,180.0629199,4,4,24.03846154,449.437048
497,3376.753507,180.0629199,4,4,24.03846154,449.437048
498,3386.773547,180.0629199,4,4,24.03846154,449.437048
499,3396.793587,180.0629199,4,4,24.03846154,449.437048
500,3406.813627,180.0629199,4,4,24.03846154,449.437048
501,3416.833667,180.0629199,4,4,24.03846154,449.437048
502,3426.853707,180.0629199,4,4,24.03846154,449.437048
503,3436.873747,180.0629199,4,4,24.03846154,449.437048
504,3446.893788,180.0629199,4,4,24.03846154,449.437048
505,3456.913828,180.0629199,4,4,24.03846154,449.437048
506,3466.933868,180.0629199,4,4,24.03846154,449.437048
507,3476.953908,180.0629199,4,4,24.03846154,449.437048
508,3486.973948,180.0629199,4,4,24.03846154,449.437048
509,3496.993988,180.0629199,4,4,24.03846154,449.437048
510,3507.014028,180.0629199,4,4,24.03846154,449.437048
511,3517.034068,180.0629199,4,4,24.03846154,449.437048
512,3527.054108,180.0629199,4,4,24.03846154,449.437048
513,3537.074148,180.0629199,4,4,24.03846154,449.437048
514,3547.094188,180.0629199,4,4,24.03846154,449.437048
515,3557.114228,180.0629199,4,4,24.03846154,449.437048
516,3567.134269,180.0629199,4,4,24.03846154,449.437048
517,3577.154309,180.0629199,4,4,24.03846154,449.437048
518,3587.174349,180.0629199,4,4,24.03846154,449.437048
519,3597.194389,180.0629199,4,4,24.03846154,449.437048
520,3607.214429,180.0629199,4,4,24.03846154,449.437048
521,3617.234469,180.0629199,4,4,24.03846154,449.437048
522,3627.254509,180.0629199,4,4,24.03846154,449.437048
523,3637.274549,180.0629199,4,4,24.03846154,449.437048
524,3647.294589,180.0629199,4,4,24.03846154,449.437048
525,3657.314629,180.0629199,4,4,24.03846154,449.437048
526,3667.334669,180.0629199,4,4,24.03846154,449.437048
527,3677.354709,180.0629199,4,4,24.03846154,449.437048
528,3687.37475,180.0629199,4,4,24.03846154,449.437048
529,3697.39479,180.0629199,4,4,24.03846154,449.437048
530,3707.41483,180.0629199,4,4,24.03846154,449.437048
531,3717.43487,180.0629199,4,4,24.03846154,449.437048
532,3727.45491,180.0629199,4,4,24.03846154,449.437048
533,3737.47495,180.0629199,4,4,24.03846154,449.437048
534,3747.49499,180.0629199,4,4,24.03846154,449.437048
535,3757.51503,180.0629199,4,4,24.03846154,449.437048
536,3767.53507,180.0629199,4,4,24.03846154,449.437048
537,3777.55511,180.0629199,4,4,24.03846154,449.437048
538,3787.57515,180.0629199,4,4,24.03846154,449.437048
539,3797.59519,180.0629199,4,4,24.03846154,449.437048
540,3807.61523,180.0629199,4,4,24.03846154,449.437048
541,3817.635271,180.0629199,4,4,24.03846154,449.437048
542,3827.655311,180.0629199,4,4,24.03846154,449.437048
543,3837.675351,180.0629199,4,4,24.03846154,449.437048
544,3847.695391,180.0629199,4,4,24.03846154,449.437048
545,3857.715431,180.0629199,4,4,24.03846154,449.437048
546,3867.735471,180.0629199,4,4,24.03846154,449.437048
547,3877.755511,180.0629199,4,4,24.03846154,449.437048
548,3887.775551,180.0629199,4,4,24.03846154,449.437048
549,3897.795591,180.0629199,4,4,24.03846154,449.437048
550,3907.815631,180.0629199,4,4,24.03846154,449.437048
551,3917.835671,180.0629199,4,4,24.03846154,449.437048
552,3927.855711,180.0629199,4,4,24.03846154,449.437048
553,3937.875752,180.0629199,4,4,24.03846154,449.437048
554,3947.895792,180.0629199,4,4,24.03846154,449.437048
555,3957.915832,180.0629199,4,4,24.03846154,449.437048
556,3967.935872,180.0629199,4,4,24.03846154,449.437048
557,3977.955912,180.0629199,4,4,24.03846154,449.437048
558,3987.975952,180.0629199,4,4,24.03846154,449.437048
559,3997.995992,180.0629199,4,4,24.03846154,449.437048
560,4008.016032,180.0629199,4,4,24.03846154,449.437048
561,4018.036072,180.0629199,4,4,24.03846154,449.437048
562,4028.056112,180.0629199,4,4,24.03846154,449.437048
563,4038.076152,180.0629199,4,4,24.03846154,449.437048
564,4048.096192,180.0629199,4,4,24.03846154,449.437048
565,4058.116232,180.0629199,4,4,24.03846154,449.437048
566,4068.136273,180.0629199,4,4,24.03846154,449.437048
567,4078.156313,180.0629199,4,4,24.03846154,449.437048
568,4088.176353,180.0629199,4,4,24.03846154,449.437048
569,4098.196393,180.0629199,4,4,24.03846154,449.437048
570,4108.216433,180.0629199,4,4,24.03846154,449.437048
571,4118.236473,180.0629199,4,4,24.03846154,449.437048
572,4128.256513,180.0629199,4,4,24.03846154,449.437048
573,4138.276553,180.0629199,4,4,24.03846154,449.437048
574,4148.296593,180.0629199,4,4,24.03846154,449.437048
575,4158.316633,180.0629199,4,4,24.03846154,449.437048
576,4168.336673,180.0629199,4,4,24.03846154,449.437048
577,4178.356713,180.0629199,4,4,24.03846154,449.437048
578,4188.376754,180.0629199,4,4,24.03846154,449.437048
579,4198.396794,180.0629199,4,4,24.03846154,449.437048
580,4208.416834,180.0629199,4,4,24.03846154,449.437048
581,4218.436874,180.0629199,4,4,24.03846154,449.437048
582,4228.456914,180.0629199,4,4,24.03846154,449.437048
583,4238.476954,180.0629199,4,4,24.03846154,449.437048
584,4248.496994,180.0629199,4,4,24.03846154,449.437048
585,4258.517034,180.0629199,4,4,24.03846154,449.437048
586,4268.537074,180.0629199,4,4,24.03846154,449.437048
587,4278.557114,180.0629199,4,4,24.03846154,449.437048
588,4288.577154,180.0629199,4,4,24.03846154,449.437048
589,4298.597194,180.0629199,4,4,24.03846154,449.437048
590,4308.617234,180.0629199,4,4,24.03846154,449.437048
591,4318.637275,180.0629199,4,4,24.03846154,449.437048
592,4328.657315,180.0629199,4,4,24.03846154,449.437048
593,4338.677355,180.0629199,4,4,24.03846154,449.437048
594,4348.697395,180.0629199,4,4,24.03846154,449.437048
595,4358.717435,180.0629199,4,4,24.03846154,449.437048
596,4368.737475,180.0629199,4,4,24.03846154,449.437048
597,4378.757515,180.0629199,4,4,24.03846154,449.437048
598,4388.777555,180.0629199,4,4,24.03846154,449.437048
599,4398.797595,180.0629199,4,4,24.03846154,449.437048
600,4408.817635,180.0629199,4,4,24.03846154,449.437048
601,4418.837675,180.0629199,4,4,24.03846154,449.437048
602,4428.857715,180.0629199,4,4,24.03846154,449.437048
603,4438.877756,180.0629199,4,4,24.03846154,449.437048
604,4448.897796,180.0629199,4,4,24.03846154,449.437048
605,4458.917836,180.0629199,4,4,24.03846154,449.437048
606,4468.937876,180.0629199,4,4,24.03846154,449.437048
607,4478.957916,180.0629199,4,4,24.03846154,449.437048
608,4488.977956,180.0629199,4,4,24.03846154,449.437048
609,4498.997996,180.0629199,4,4,24.03846154,449.437048
610,4509.018036,180.0629199,4,4,24.03846154,449.437048
611,4519.038076,180.0629199,4,4,24.03846154,449.437048
612,4529.058116,180.0629199,4,4,24.03846154,449.437048
613,4539.078156,180.0629199,4,4,24.03846154,449.437048
614,4549.098196,180.0629199,4,4,24.03846154,449.437048
615,4559.118236,180.0629199,4,4,24.03846154,449.437048
616,4569.138277,180.0629199,4,4,24.03846154,449.437048
617,4579.158317,180.0629199,4,4,24.03846154,449.437048
618,4589.178357,180.0629199,4,4,24.03846154,449.437048
619,4599.198397,180.0629199,4,4,24.03846154,449.437048
620,4609.218437,180.0629199,4,4,24.03846154,449.437048
621,4619.238477,180.0629199,4,4,24.03846154,449.437048
622,4629.258517,180.0629199,4,4,24.03846154,449.437048
623,4639.278557,180.0629199,4,4,24.03846154,449.437048
624,4649.298597,180.0629199,4,4,24.03846154,449.437048
625,4659.318637,180.0629199,4,4,24.03846154,449.437048
626,4669.338677,180.0629199,4,4,24.03846154,449.437048
627,4679.358717,180.0629199,4,4,24.03846154,449.437048
628,4689.378758,180.0629199,4,4,24.03846154,449.437048
629,4699.398798,180.0629199,4,4,24.03846154,449.437048
630,4709.418838,180.0629199,4,4,24.03846154,449.437048
631,4719.438878,180.0629199,4,4,24.03846154,449.437048
632,4729.458918,180.0629199,4,4,24.03846154,449.437048
633,4739.478958,180.0629199,4,4,24.03846154,449.437048
634,4749.498998,180.0629199,4,4,24.03846154,449.437048
635,4759.519038,180.0629199,4,4,24.03846154,449.437048
636,4769.539078,180.0629199,4,4,24.03846154,449.437048
637,4779.559118,180.0629199,4,4,24.03846154,449.437048
638,4789.579158,180.0629199,4,4,24.03846154,449.437048
639,4799.599198,180.0629199,4,4,24.03846154,449.437048
640,4809.619238,180.0629199,4,4,24.03846154,449.437048
641,4819.639279,180.0629199,4,4,24.03846154,449.437048
642,4829.659319,180.0629199,4,4,24.03846154,449.437048
643,4839.679359,180.0629199,4,4,24.03846154,449.437048
644,4849.699399,180.0629199,4,4,24.03846154,449.437048
645,4859.719439,180.0629199,4,4,24.03846154,449.437048
646,4869.739479,180.0629199,4,4,24.03846154,449.437048
647,4879.759519,180.0629199,4,4,24.03846154,449.437048
648,4889.779559,180.0629199,4,4,24.03846154,449.437048
649,4899.799599,180.0629199,4,4,24.03846154,449.437048
650,4909.819639,180.0629199,4,4,24.03846154,449.437048
651,4919.839679,180.0629199,4,4,24.03846154,449.437048
652,4929.859719,180.0629199,4,4,24.03846154,449.437048
653,4939.87976,180.0629199,4,4,24.03846154,449.437048
654,4949.8998,180.0629199,4,4,24.03846154,449.437048
655,4959.91984,180.0629199,4,4,24.03846154,449.437048
656,4969.93988,180.0629199,4,4,24.03846154,449.437048
657,4979.95992,180.0629199,4,4,24.03846154,449.437048
658,4989.97996,180.0629199,4,4,24.03846154,449.437048
659,5000,180.0629199,4,4,24.03846154,449.437048
660,0,365.1214097,5,4,32,684.6026432
661,10.1010101,365.1214097,5,4,32,684.6026432
662,20.2020202,365.1214097,5,4,32,684.6026432
663,30.3030303,365.1214097,5,4,32,684.6026432
664,40.4040404,365.1214097,5,4,32,684.6026432
665,50.50505051,365.1214097,5,4,32,684.6026432
666,60.60606061,365.1214097,5,4,32,684.6026432
667,70.70707071,365.1214097,5,4,32,684.6026432
668,80.80808081,365.1214097,5,4,32,684.6026432
669,90.90909091,365.1214097,5,4,32,684.6026432
670,101.010101,365.1214097,5,4,32,684.6026432
671,111.1111111,365.1214097,5,4,32,684.6026432
672,121.2121212,365.1214097,5,4,32,684.6026432
673,131.3131313,365.1214097,5,4,32,684.6026432
674,141.4141414,365.1214097,5,4,32,684.6026432
675,151.5151515,365.1214097,5,4,32,684.6026432
676,161.6161616,365.1214097,5,4,32,684.6026432
677,171.7171717,365.1214097,5,4,32,684.6026432
678,181.8181818,365.1214097,5,4,32,684.6026432
679,191.9191919,365.1214097,5,4,32,684.6026432
680,202.020202,365.1214097,5,4,32,684.6026432
681,212.1212121,365.1214097,5,4,32,684.6026432
682,222.2222222,365.1214097,5,4,32,684.6026432
683,232.3232323,365.1214097,5,4,32,684.6026432
684,242.4242424,365.1214097,5,4,32,684.6026432
685,252.5252525,365.1214097,5,4,32,684.6026432
686,262.6262626,365.1214097,5,4,32,684.6026432
687,272.7272727,365.1214097,5,4,32,684.6026432
688,282.8282828,365.1214097,5,4,32,684.6026432
689,292.9292929,365.1214097,5,4,32,684.6026432
690,303.030303,365.1214097,5,4,32,684.6026432
691,313.1313131,365.1214097,5,4,32,684.6026432
692,323.2323232,365.1214097,5,4,32,684.6026432
693,333.3333333,365.1214097,5,4,32,684.6026432
694,343.4343434,365.1214097,5,4,32,684.6026432
695,353.5353535,365.1214097,5,4,32,684.6026432
696,363.6363636,365.1214097,5,4,32,684.6026432
697,373.7373737,365.1214097,5,4,32,684.6026432
698,383.8383838,365.1214097,5,4,32,684.6026432
699,393.9393939,365.1214097,5,4,32,684.6026432
700,404.040404,365.1214097,5,4,32,684.6026432
701,414.1414141,365.1214097,5,4,32,684.6026432
702,424.2424242,365.1214097,5,4,32,684.6026432
703,434.3434343,365.1214097,5,4,32,684.6026432
704,444.4444444,365.1214097,5,4,32,684.6026432
705,454.5454545,365.1214097,5,4,32,684.6026432
706,464.6464646,365.1214097,5,4,32,684.6026432
707,474.7474747,365.1214097,5,4,32,684.6026432
708,484.8484848,365.1214097,5,4,32,684.6026432
709,494.9494949,365.1214097,5,4,32,684.6026432
710,505.0505051,365.1214097,5,4,32,684.6026432
711,515.1515152,365.1214097,5,4,32,684.6026432
712,525.2525253,365.1214097,5,4,32,684.6026432
713,535.3535354,365.1214097,5,4,32,684.6026432
714,545.4545455,365.1214097,5,4,32,684.6026432
715,555.5555556,365.1214097,5,4,32,684.6026432
716,565.6565657,365.1214097,5,4,32,684.6026432
717,575.7575758,365.1214097,5,4,32,684.6026432
718,585.8585859,365.1214097,5,4,32,684.6026432
719,595.959596,365.1214097,5,4,32,684.6026432
720,606.0606061,365.1214097,5,4,32,684.6026432
721,616.1616162,365.1214097,5,4,32,684.6026432
722,626.2626263,365.1214097,5,4,32,684.6026432
723,636.3636364,365.1214097,5,4,32,684.6026432
724,646.4646465,365.1214097,5,4,32,684.6026432
725,656.5656566,365.1214097,5,4,32,684.6026432
726,666.6666667,365.1214097,5,4,32,684.6026432
727,676.7676768,365.1214097,5,4,32,684.6026432
728,686.8686869,365.1214097,5,4,32,684.6026432
729,696.969697,365.1214097,5,4,32,684.6026432
730,707.0707071,365.1214097,5,4,32,684.6026432
731,717.1717172,365.1214097,5,4,32,684.6026432
732,727.2727273,365.1214097,5,4,32,684.6026432
733,737.3737374,365.1214097,5,4,32,684.6026432
734,747.4747475,365.1214097,5,4,32,684.6026432
735,757.5757576,365.1214097,5,4,32,684.6026432
736,767.6767677,365.1214097,5,4,32,684.6026432
737,777.7777778,365.1214097,5,4,32,684.6026432
738,787.8787879,365.1214097,5,4,32,684.6026432
739,797.979798,365.1214097,5,4,32,684.6026432
740,808.0808081,365.1214097,5,4,32,684.6026432
741,818.1818182,365.1214097,5,4,32,684.6026432
742,828.2828283,365.1214097,5,4,32,684.6026432
743,838.3838384,365.1214097,5,4,32,684.6026432
744,848.4848485,365.1214097,5,4,32,684.6026432
745,858.5858586,365.1214097,5,4,32,684.6026432
746,868.6868687,365.1214097,5,4,32,684.6026432
747,878.7878788,365.1214097,5,4,32,684.6026432
748,888.8888889,365.1214097,5,4,32,684.6026432
749,898.989899,365.1214097,5,4,32,684.6026432
750,909.0909091,365.1214097,5,4,32,684.6026432
751,919.1919192,365.1214097,5,4,32,684.6026432
752,929.2929293,365.1214097,5,4,32,684.6026432
753,939.3939394,365.1214097,5,4,32,684.6026432
754,949.4949495,365.1214097,5,4,32,684.6026432
755,959.5959596,365.1214097,5,4,32,684.6026432
756,969.6969697,365.1214097,5,4,32,684.6026432
757,979.7979798,365.1214097,5,4,32,684.6026432
758,989.8989899,365.1214097,5,4,32,684.6026432
759,1000,365.1214097,5,4,32,684.6026432
1 distance power workoutid workoutstate spm driveenergy
2 0 0 612.1160502 1 4 36.14457831 1016.112643
3 1 11.11111111 612.1160502 1 4 36.14457831 1016.112643
4 2 22.22222222 612.1160502 1 4 36.14457831 1016.112643
5 3 33.33333333 612.1160502 1 4 36.14457831 1016.112643
6 4 44.44444444 612.1160502 1 4 36.14457831 1016.112643
7 5 55.55555556 612.1160502 1 4 36.14457831 1016.112643
8 6 66.66666667 612.1160502 1 4 36.14457831 1016.112643
9 7 77.77777778 612.1160502 1 4 36.14457831 1016.112643
10 8 88.88888889 612.1160502 1 4 36.14457831 1016.112643
11 9 100 612.1160502 1 4 36.14457831 1016.112643
12 10 0 345.8333773 2 4 29.88047809 694.4334217
13 11 10.20408163 345.8333773 2 4 29.88047809 694.4334217
14 12 20.40816327 345.8333773 2 4 29.88047809 694.4334217
15 13 30.6122449 345.8333773 2 4 29.88047809 694.4334217
16 14 40.81632653 345.8333773 2 4 29.88047809 694.4334217
17 15 51.02040816 345.8333773 2 4 29.88047809 694.4334217
18 16 61.2244898 345.8333773 2 4 29.88047809 694.4334217
19 17 71.42857143 345.8333773 2 4 29.88047809 694.4334217
20 18 81.63265306 345.8333773 2 4 29.88047809 694.4334217
21 19 91.83673469 345.8333773 2 4 29.88047809 694.4334217
22 20 102.0408163 345.8333773 2 4 29.88047809 694.4334217
23 21 112.244898 345.8333773 2 4 29.88047809 694.4334217
24 22 122.4489796 345.8333773 2 4 29.88047809 694.4334217
25 23 132.6530612 345.8333773 2 4 29.88047809 694.4334217
26 24 142.8571429 345.8333773 2 4 29.88047809 694.4334217
27 25 153.0612245 345.8333773 2 4 29.88047809 694.4334217
28 26 163.2653061 345.8333773 2 4 29.88047809 694.4334217
29 27 173.4693878 345.8333773 2 4 29.88047809 694.4334217
30 28 183.6734694 345.8333773 2 4 29.88047809 694.4334217
31 29 193.877551 345.8333773 2 4 29.88047809 694.4334217
32 30 204.0816327 345.8333773 2 4 29.88047809 694.4334217
33 31 214.2857143 345.8333773 2 4 29.88047809 694.4334217
34 32 224.4897959 345.8333773 2 4 29.88047809 694.4334217
35 33 234.6938776 345.8333773 2 4 29.88047809 694.4334217
36 34 244.8979592 345.8333773 2 4 29.88047809 694.4334217
37 35 255.1020408 345.8333773 2 4 29.88047809 694.4334217
38 36 265.3061224 345.8333773 2 4 29.88047809 694.4334217
39 37 275.5102041 345.8333773 2 4 29.88047809 694.4334217
40 38 285.7142857 345.8333773 2 4 29.88047809 694.4334217
41 39 295.9183673 345.8333773 2 4 29.88047809 694.4334217
42 40 306.122449 345.8333773 2 4 29.88047809 694.4334217
43 41 316.3265306 345.8333773 2 4 29.88047809 694.4334217
44 42 326.5306122 345.8333773 2 4 29.88047809 694.4334217
45 43 336.7346939 345.8333773 2 4 29.88047809 694.4334217
46 44 346.9387755 345.8333773 2 4 29.88047809 694.4334217
47 45 357.1428571 345.8333773 2 4 29.88047809 694.4334217
48 46 367.3469388 345.8333773 2 4 29.88047809 694.4334217
49 47 377.5510204 345.8333773 2 4 29.88047809 694.4334217
50 48 387.755102 345.8333773 2 4 29.88047809 694.4334217
51 49 397.9591837 345.8333773 2 4 29.88047809 694.4334217
52 50 408.1632653 345.8333773 2 4 29.88047809 694.4334217
53 51 418.3673469 345.8333773 2 4 29.88047809 694.4334217
54 52 428.5714286 345.8333773 2 4 29.88047809 694.4334217
55 53 438.7755102 345.8333773 2 4 29.88047809 694.4334217
56 54 448.9795918 345.8333773 2 4 29.88047809 694.4334217
57 55 459.1836735 345.8333773 2 4 29.88047809 694.4334217
58 56 469.3877551 345.8333773 2 4 29.88047809 694.4334217
59 57 479.5918367 345.8333773 2 4 29.88047809 694.4334217
60 58 489.7959184 345.8333773 2 4 29.88047809 694.4334217
61 59 500 345.8333773 2 4 29.88047809 694.4334217
62 60 0 272.1323973 3 4 27.5862069 591.8879641
63 61 10.1010101 272.1323973 3 4 27.5862069 591.8879641
64 62 20.2020202 272.1323973 3 4 27.5862069 591.8879641
65 63 30.3030303 272.1323973 3 4 27.5862069 591.8879641
66 64 40.4040404 272.1323973 3 4 27.5862069 591.8879641
67 65 50.50505051 272.1323973 3 4 27.5862069 591.8879641
68 66 60.60606061 272.1323973 3 4 27.5862069 591.8879641
69 67 70.70707071 272.1323973 3 4 27.5862069 591.8879641
70 68 80.80808081 272.1323973 3 4 27.5862069 591.8879641
71 69 90.90909091 272.1323973 3 4 27.5862069 591.8879641
72 70 101.010101 272.1323973 3 4 27.5862069 591.8879641
73 71 111.1111111 272.1323973 3 4 27.5862069 591.8879641
74 72 121.2121212 272.1323973 3 4 27.5862069 591.8879641
75 73 131.3131313 272.1323973 3 4 27.5862069 591.8879641
76 74 141.4141414 272.1323973 3 4 27.5862069 591.8879641
77 75 151.5151515 272.1323973 3 4 27.5862069 591.8879641
78 76 161.6161616 272.1323973 3 4 27.5862069 591.8879641
79 77 171.7171717 272.1323973 3 4 27.5862069 591.8879641
80 78 181.8181818 272.1323973 3 4 27.5862069 591.8879641
81 79 191.9191919 272.1323973 3 4 27.5862069 591.8879641
82 80 202.020202 272.1323973 3 4 27.5862069 591.8879641
83 81 212.1212121 272.1323973 3 4 27.5862069 591.8879641
84 82 222.2222222 272.1323973 3 4 27.5862069 591.8879641
85 83 232.3232323 272.1323973 3 4 27.5862069 591.8879641
86 84 242.4242424 272.1323973 3 4 27.5862069 591.8879641
87 85 252.5252525 272.1323973 3 4 27.5862069 591.8879641
88 86 262.6262626 272.1323973 3 4 27.5862069 591.8879641
89 87 272.7272727 272.1323973 3 4 27.5862069 591.8879641
90 88 282.8282828 272.1323973 3 4 27.5862069 591.8879641
91 89 292.9292929 272.1323973 3 4 27.5862069 591.8879641
92 90 303.030303 272.1323973 3 4 27.5862069 591.8879641
93 91 313.1313131 272.1323973 3 4 27.5862069 591.8879641
94 92 323.2323232 272.1323973 3 4 27.5862069 591.8879641
95 93 333.3333333 272.1323973 3 4 27.5862069 591.8879641
96 94 343.4343434 272.1323973 3 4 27.5862069 591.8879641
97 95 353.5353535 272.1323973 3 4 27.5862069 591.8879641
98 96 363.6363636 272.1323973 3 4 27.5862069 591.8879641
99 97 373.7373737 272.1323973 3 4 27.5862069 591.8879641
100 98 383.8383838 272.1323973 3 4 27.5862069 591.8879641
101 99 393.9393939 272.1323973 3 4 27.5862069 591.8879641
102 100 404.040404 272.1323973 3 4 27.5862069 591.8879641
103 101 414.1414141 272.1323973 3 4 27.5862069 591.8879641
104 102 424.2424242 272.1323973 3 4 27.5862069 591.8879641
105 103 434.3434343 272.1323973 3 4 27.5862069 591.8879641
106 104 444.4444444 272.1323973 3 4 27.5862069 591.8879641
107 105 454.5454545 272.1323973 3 4 27.5862069 591.8879641
108 106 464.6464646 272.1323973 3 4 27.5862069 591.8879641
109 107 474.7474747 272.1323973 3 4 27.5862069 591.8879641
110 108 484.8484848 272.1323973 3 4 27.5862069 591.8879641
111 109 494.9494949 272.1323973 3 4 27.5862069 591.8879641
112 110 505.0505051 272.1323973 3 4 27.5862069 591.8879641
113 111 515.1515152 272.1323973 3 4 27.5862069 591.8879641
114 112 525.2525253 272.1323973 3 4 27.5862069 591.8879641
115 113 535.3535354 272.1323973 3 4 27.5862069 591.8879641
116 114 545.4545455 272.1323973 3 4 27.5862069 591.8879641
117 115 555.5555556 272.1323973 3 4 27.5862069 591.8879641
118 116 565.6565657 272.1323973 3 4 27.5862069 591.8879641
119 117 575.7575758 272.1323973 3 4 27.5862069 591.8879641
120 118 585.8585859 272.1323973 3 4 27.5862069 591.8879641
121 119 595.959596 272.1323973 3 4 27.5862069 591.8879641
122 120 606.0606061 272.1323973 3 4 27.5862069 591.8879641
123 121 616.1616162 272.1323973 3 4 27.5862069 591.8879641
124 122 626.2626263 272.1323973 3 4 27.5862069 591.8879641
125 123 636.3636364 272.1323973 3 4 27.5862069 591.8879641
126 124 646.4646465 272.1323973 3 4 27.5862069 591.8879641
127 125 656.5656566 272.1323973 3 4 27.5862069 591.8879641
128 126 666.6666667 272.1323973 3 4 27.5862069 591.8879641
129 127 676.7676768 272.1323973 3 4 27.5862069 591.8879641
130 128 686.8686869 272.1323973 3 4 27.5862069 591.8879641
131 129 696.969697 272.1323973 3 4 27.5862069 591.8879641
132 130 707.0707071 272.1323973 3 4 27.5862069 591.8879641
133 131 717.1717172 272.1323973 3 4 27.5862069 591.8879641
134 132 727.2727273 272.1323973 3 4 27.5862069 591.8879641
135 133 737.3737374 272.1323973 3 4 27.5862069 591.8879641
136 134 747.4747475 272.1323973 3 4 27.5862069 591.8879641
137 135 757.5757576 272.1323973 3 4 27.5862069 591.8879641
138 136 767.6767677 272.1323973 3 4 27.5862069 591.8879641
139 137 777.7777778 272.1323973 3 4 27.5862069 591.8879641
140 138 787.8787879 272.1323973 3 4 27.5862069 591.8879641
141 139 797.979798 272.1323973 3 4 27.5862069 591.8879641
142 140 808.0808081 272.1323973 3 4 27.5862069 591.8879641
143 141 818.1818182 272.1323973 3 4 27.5862069 591.8879641
144 142 828.2828283 272.1323973 3 4 27.5862069 591.8879641
145 143 838.3838384 272.1323973 3 4 27.5862069 591.8879641
146 144 848.4848485 272.1323973 3 4 27.5862069 591.8879641
147 145 858.5858586 272.1323973 3 4 27.5862069 591.8879641
148 146 868.6868687 272.1323973 3 4 27.5862069 591.8879641
149 147 878.7878788 272.1323973 3 4 27.5862069 591.8879641
150 148 888.8888889 272.1323973 3 4 27.5862069 591.8879641
151 149 898.989899 272.1323973 3 4 27.5862069 591.8879641
152 150 909.0909091 272.1323973 3 4 27.5862069 591.8879641
153 151 919.1919192 272.1323973 3 4 27.5862069 591.8879641
154 152 929.2929293 272.1323973 3 4 27.5862069 591.8879641
155 153 939.3939394 272.1323973 3 4 27.5862069 591.8879641
156 154 949.4949495 272.1323973 3 4 27.5862069 591.8879641
157 155 959.5959596 272.1323973 3 4 27.5862069 591.8879641
158 156 969.6969697 272.1323973 3 4 27.5862069 591.8879641
159 157 979.7979798 272.1323973 3 4 27.5862069 591.8879641
160 158 989.8989899 272.1323973 3 4 27.5862069 591.8879641
161 159 1000 272.1323973 3 4 27.5862069 591.8879641
162 160 0 180.0629199 4 4 24.03846154 449.437048
163 161 10.02004008 180.0629199 4 4 24.03846154 449.437048
164 162 20.04008016 180.0629199 4 4 24.03846154 449.437048
165 163 30.06012024 180.0629199 4 4 24.03846154 449.437048
166 164 40.08016032 180.0629199 4 4 24.03846154 449.437048
167 165 50.1002004 180.0629199 4 4 24.03846154 449.437048
168 166 60.12024048 180.0629199 4 4 24.03846154 449.437048
169 167 70.14028056 180.0629199 4 4 24.03846154 449.437048
170 168 80.16032064 180.0629199 4 4 24.03846154 449.437048
171 169 90.18036072 180.0629199 4 4 24.03846154 449.437048
172 170 100.2004008 180.0629199 4 4 24.03846154 449.437048
173 171 110.2204409 180.0629199 4 4 24.03846154 449.437048
174 172 120.240481 180.0629199 4 4 24.03846154 449.437048
175 173 130.260521 180.0629199 4 4 24.03846154 449.437048
176 174 140.2805611 180.0629199 4 4 24.03846154 449.437048
177 175 150.3006012 180.0629199 4 4 24.03846154 449.437048
178 176 160.3206413 180.0629199 4 4 24.03846154 449.437048
179 177 170.3406814 180.0629199 4 4 24.03846154 449.437048
180 178 180.3607214 180.0629199 4 4 24.03846154 449.437048
181 179 190.3807615 180.0629199 4 4 24.03846154 449.437048
182 180 200.4008016 180.0629199 4 4 24.03846154 449.437048
183 181 210.4208417 180.0629199 4 4 24.03846154 449.437048
184 182 220.4408818 180.0629199 4 4 24.03846154 449.437048
185 183 230.4609218 180.0629199 4 4 24.03846154 449.437048
186 184 240.4809619 180.0629199 4 4 24.03846154 449.437048
187 185 250.501002 180.0629199 4 4 24.03846154 449.437048
188 186 260.5210421 180.0629199 4 4 24.03846154 449.437048
189 187 270.5410822 180.0629199 4 4 24.03846154 449.437048
190 188 280.5611222 180.0629199 4 4 24.03846154 449.437048
191 189 290.5811623 180.0629199 4 4 24.03846154 449.437048
192 190 300.6012024 180.0629199 4 4 24.03846154 449.437048
193 191 310.6212425 180.0629199 4 4 24.03846154 449.437048
194 192 320.6412826 180.0629199 4 4 24.03846154 449.437048
195 193 330.6613226 180.0629199 4 4 24.03846154 449.437048
196 194 340.6813627 180.0629199 4 4 24.03846154 449.437048
197 195 350.7014028 180.0629199 4 4 24.03846154 449.437048
198 196 360.7214429 180.0629199 4 4 24.03846154 449.437048
199 197 370.741483 180.0629199 4 4 24.03846154 449.437048
200 198 380.761523 180.0629199 4 4 24.03846154 449.437048
201 199 390.7815631 180.0629199 4 4 24.03846154 449.437048
202 200 400.8016032 180.0629199 4 4 24.03846154 449.437048
203 201 410.8216433 180.0629199 4 4 24.03846154 449.437048
204 202 420.8416834 180.0629199 4 4 24.03846154 449.437048
205 203 430.8617234 180.0629199 4 4 24.03846154 449.437048
206 204 440.8817635 180.0629199 4 4 24.03846154 449.437048
207 205 450.9018036 180.0629199 4 4 24.03846154 449.437048
208 206 460.9218437 180.0629199 4 4 24.03846154 449.437048
209 207 470.9418838 180.0629199 4 4 24.03846154 449.437048
210 208 480.9619238 180.0629199 4 4 24.03846154 449.437048
211 209 490.9819639 180.0629199 4 4 24.03846154 449.437048
212 210 501.002004 180.0629199 4 4 24.03846154 449.437048
213 211 511.0220441 180.0629199 4 4 24.03846154 449.437048
214 212 521.0420842 180.0629199 4 4 24.03846154 449.437048
215 213 531.0621242 180.0629199 4 4 24.03846154 449.437048
216 214 541.0821643 180.0629199 4 4 24.03846154 449.437048
217 215 551.1022044 180.0629199 4 4 24.03846154 449.437048
218 216 561.1222445 180.0629199 4 4 24.03846154 449.437048
219 217 571.1422846 180.0629199 4 4 24.03846154 449.437048
220 218 581.1623246 180.0629199 4 4 24.03846154 449.437048
221 219 591.1823647 180.0629199 4 4 24.03846154 449.437048
222 220 601.2024048 180.0629199 4 4 24.03846154 449.437048
223 221 611.2224449 180.0629199 4 4 24.03846154 449.437048
224 222 621.242485 180.0629199 4 4 24.03846154 449.437048
225 223 631.2625251 180.0629199 4 4 24.03846154 449.437048
226 224 641.2825651 180.0629199 4 4 24.03846154 449.437048
227 225 651.3026052 180.0629199 4 4 24.03846154 449.437048
228 226 661.3226453 180.0629199 4 4 24.03846154 449.437048
229 227 671.3426854 180.0629199 4 4 24.03846154 449.437048
230 228 681.3627255 180.0629199 4 4 24.03846154 449.437048
231 229 691.3827655 180.0629199 4 4 24.03846154 449.437048
232 230 701.4028056 180.0629199 4 4 24.03846154 449.437048
233 231 711.4228457 180.0629199 4 4 24.03846154 449.437048
234 232 721.4428858 180.0629199 4 4 24.03846154 449.437048
235 233 731.4629259 180.0629199 4 4 24.03846154 449.437048
236 234 741.4829659 180.0629199 4 4 24.03846154 449.437048
237 235 751.503006 180.0629199 4 4 24.03846154 449.437048
238 236 761.5230461 180.0629199 4 4 24.03846154 449.437048
239 237 771.5430862 180.0629199 4 4 24.03846154 449.437048
240 238 781.5631263 180.0629199 4 4 24.03846154 449.437048
241 239 791.5831663 180.0629199 4 4 24.03846154 449.437048
242 240 801.6032064 180.0629199 4 4 24.03846154 449.437048
243 241 811.6232465 180.0629199 4 4 24.03846154 449.437048
244 242 821.6432866 180.0629199 4 4 24.03846154 449.437048
245 243 831.6633267 180.0629199 4 4 24.03846154 449.437048
246 244 841.6833667 180.0629199 4 4 24.03846154 449.437048
247 245 851.7034068 180.0629199 4 4 24.03846154 449.437048
248 246 861.7234469 180.0629199 4 4 24.03846154 449.437048
249 247 871.743487 180.0629199 4 4 24.03846154 449.437048
250 248 881.7635271 180.0629199 4 4 24.03846154 449.437048
251 249 891.7835671 180.0629199 4 4 24.03846154 449.437048
252 250 901.8036072 180.0629199 4 4 24.03846154 449.437048
253 251 911.8236473 180.0629199 4 4 24.03846154 449.437048
254 252 921.8436874 180.0629199 4 4 24.03846154 449.437048
255 253 931.8637275 180.0629199 4 4 24.03846154 449.437048
256 254 941.8837675 180.0629199 4 4 24.03846154 449.437048
257 255 951.9038076 180.0629199 4 4 24.03846154 449.437048
258 256 961.9238477 180.0629199 4 4 24.03846154 449.437048
259 257 971.9438878 180.0629199 4 4 24.03846154 449.437048
260 258 981.9639279 180.0629199 4 4 24.03846154 449.437048
261 259 991.9839679 180.0629199 4 4 24.03846154 449.437048
262 260 1002.004008 180.0629199 4 4 24.03846154 449.437048
263 261 1012.024048 180.0629199 4 4 24.03846154 449.437048
264 262 1022.044088 180.0629199 4 4 24.03846154 449.437048
265 263 1032.064128 180.0629199 4 4 24.03846154 449.437048
266 264 1042.084168 180.0629199 4 4 24.03846154 449.437048
267 265 1052.104208 180.0629199 4 4 24.03846154 449.437048
268 266 1062.124249 180.0629199 4 4 24.03846154 449.437048
269 267 1072.144289 180.0629199 4 4 24.03846154 449.437048
270 268 1082.164329 180.0629199 4 4 24.03846154 449.437048
271 269 1092.184369 180.0629199 4 4 24.03846154 449.437048
272 270 1102.204409 180.0629199 4 4 24.03846154 449.437048
273 271 1112.224449 180.0629199 4 4 24.03846154 449.437048
274 272 1122.244489 180.0629199 4 4 24.03846154 449.437048
275 273 1132.264529 180.0629199 4 4 24.03846154 449.437048
276 274 1142.284569 180.0629199 4 4 24.03846154 449.437048
277 275 1152.304609 180.0629199 4 4 24.03846154 449.437048
278 276 1162.324649 180.0629199 4 4 24.03846154 449.437048
279 277 1172.344689 180.0629199 4 4 24.03846154 449.437048
280 278 1182.364729 180.0629199 4 4 24.03846154 449.437048
281 279 1192.38477 180.0629199 4 4 24.03846154 449.437048
282 280 1202.40481 180.0629199 4 4 24.03846154 449.437048
283 281 1212.42485 180.0629199 4 4 24.03846154 449.437048
284 282 1222.44489 180.0629199 4 4 24.03846154 449.437048
285 283 1232.46493 180.0629199 4 4 24.03846154 449.437048
286 284 1242.48497 180.0629199 4 4 24.03846154 449.437048
287 285 1252.50501 180.0629199 4 4 24.03846154 449.437048
288 286 1262.52505 180.0629199 4 4 24.03846154 449.437048
289 287 1272.54509 180.0629199 4 4 24.03846154 449.437048
290 288 1282.56513 180.0629199 4 4 24.03846154 449.437048
291 289 1292.58517 180.0629199 4 4 24.03846154 449.437048
292 290 1302.60521 180.0629199 4 4 24.03846154 449.437048
293 291 1312.625251 180.0629199 4 4 24.03846154 449.437048
294 292 1322.645291 180.0629199 4 4 24.03846154 449.437048
295 293 1332.665331 180.0629199 4 4 24.03846154 449.437048
296 294 1342.685371 180.0629199 4 4 24.03846154 449.437048
297 295 1352.705411 180.0629199 4 4 24.03846154 449.437048
298 296 1362.725451 180.0629199 4 4 24.03846154 449.437048
299 297 1372.745491 180.0629199 4 4 24.03846154 449.437048
300 298 1382.765531 180.0629199 4 4 24.03846154 449.437048
301 299 1392.785571 180.0629199 4 4 24.03846154 449.437048
302 300 1402.805611 180.0629199 4 4 24.03846154 449.437048
303 301 1412.825651 180.0629199 4 4 24.03846154 449.437048
304 302 1422.845691 180.0629199 4 4 24.03846154 449.437048
305 303 1432.865731 180.0629199 4 4 24.03846154 449.437048
306 304 1442.885772 180.0629199 4 4 24.03846154 449.437048
307 305 1452.905812 180.0629199 4 4 24.03846154 449.437048
308 306 1462.925852 180.0629199 4 4 24.03846154 449.437048
309 307 1472.945892 180.0629199 4 4 24.03846154 449.437048
310 308 1482.965932 180.0629199 4 4 24.03846154 449.437048
311 309 1492.985972 180.0629199 4 4 24.03846154 449.437048
312 310 1503.006012 180.0629199 4 4 24.03846154 449.437048
313 311 1513.026052 180.0629199 4 4 24.03846154 449.437048
314 312 1523.046092 180.0629199 4 4 24.03846154 449.437048
315 313 1533.066132 180.0629199 4 4 24.03846154 449.437048
316 314 1543.086172 180.0629199 4 4 24.03846154 449.437048
317 315 1553.106212 180.0629199 4 4 24.03846154 449.437048
318 316 1563.126253 180.0629199 4 4 24.03846154 449.437048
319 317 1573.146293 180.0629199 4 4 24.03846154 449.437048
320 318 1583.166333 180.0629199 4 4 24.03846154 449.437048
321 319 1593.186373 180.0629199 4 4 24.03846154 449.437048
322 320 1603.206413 180.0629199 4 4 24.03846154 449.437048
323 321 1613.226453 180.0629199 4 4 24.03846154 449.437048
324 322 1623.246493 180.0629199 4 4 24.03846154 449.437048
325 323 1633.266533 180.0629199 4 4 24.03846154 449.437048
326 324 1643.286573 180.0629199 4 4 24.03846154 449.437048
327 325 1653.306613 180.0629199 4 4 24.03846154 449.437048
328 326 1663.326653 180.0629199 4 4 24.03846154 449.437048
329 327 1673.346693 180.0629199 4 4 24.03846154 449.437048
330 328 1683.366733 180.0629199 4 4 24.03846154 449.437048
331 329 1693.386774 180.0629199 4 4 24.03846154 449.437048
332 330 1703.406814 180.0629199 4 4 24.03846154 449.437048
333 331 1713.426854 180.0629199 4 4 24.03846154 449.437048
334 332 1723.446894 180.0629199 4 4 24.03846154 449.437048
335 333 1733.466934 180.0629199 4 4 24.03846154 449.437048
336 334 1743.486974 180.0629199 4 4 24.03846154 449.437048
337 335 1753.507014 180.0629199 4 4 24.03846154 449.437048
338 336 1763.527054 180.0629199 4 4 24.03846154 449.437048
339 337 1773.547094 180.0629199 4 4 24.03846154 449.437048
340 338 1783.567134 180.0629199 4 4 24.03846154 449.437048
341 339 1793.587174 180.0629199 4 4 24.03846154 449.437048
342 340 1803.607214 180.0629199 4 4 24.03846154 449.437048
343 341 1813.627255 180.0629199 4 4 24.03846154 449.437048
344 342 1823.647295 180.0629199 4 4 24.03846154 449.437048
345 343 1833.667335 180.0629199 4 4 24.03846154 449.437048
346 344 1843.687375 180.0629199 4 4 24.03846154 449.437048
347 345 1853.707415 180.0629199 4 4 24.03846154 449.437048
348 346 1863.727455 180.0629199 4 4 24.03846154 449.437048
349 347 1873.747495 180.0629199 4 4 24.03846154 449.437048
350 348 1883.767535 180.0629199 4 4 24.03846154 449.437048
351 349 1893.787575 180.0629199 4 4 24.03846154 449.437048
352 350 1903.807615 180.0629199 4 4 24.03846154 449.437048
353 351 1913.827655 180.0629199 4 4 24.03846154 449.437048
354 352 1923.847695 180.0629199 4 4 24.03846154 449.437048
355 353 1933.867735 180.0629199 4 4 24.03846154 449.437048
356 354 1943.887776 180.0629199 4 4 24.03846154 449.437048
357 355 1953.907816 180.0629199 4 4 24.03846154 449.437048
358 356 1963.927856 180.0629199 4 4 24.03846154 449.437048
359 357 1973.947896 180.0629199 4 4 24.03846154 449.437048
360 358 1983.967936 180.0629199 4 4 24.03846154 449.437048
361 359 1993.987976 180.0629199 4 4 24.03846154 449.437048
362 360 2004.008016 180.0629199 4 4 24.03846154 449.437048
363 361 2014.028056 180.0629199 4 4 24.03846154 449.437048
364 362 2024.048096 180.0629199 4 4 24.03846154 449.437048
365 363 2034.068136 180.0629199 4 4 24.03846154 449.437048
366 364 2044.088176 180.0629199 4 4 24.03846154 449.437048
367 365 2054.108216 180.0629199 4 4 24.03846154 449.437048
368 366 2064.128257 180.0629199 4 4 24.03846154 449.437048
369 367 2074.148297 180.0629199 4 4 24.03846154 449.437048
370 368 2084.168337 180.0629199 4 4 24.03846154 449.437048
371 369 2094.188377 180.0629199 4 4 24.03846154 449.437048
372 370 2104.208417 180.0629199 4 4 24.03846154 449.437048
373 371 2114.228457 180.0629199 4 4 24.03846154 449.437048
374 372 2124.248497 180.0629199 4 4 24.03846154 449.437048
375 373 2134.268537 180.0629199 4 4 24.03846154 449.437048
376 374 2144.288577 180.0629199 4 4 24.03846154 449.437048
377 375 2154.308617 180.0629199 4 4 24.03846154 449.437048
378 376 2164.328657 180.0629199 4 4 24.03846154 449.437048
379 377 2174.348697 180.0629199 4 4 24.03846154 449.437048
380 378 2184.368737 180.0629199 4 4 24.03846154 449.437048
381 379 2194.388778 180.0629199 4 4 24.03846154 449.437048
382 380 2204.408818 180.0629199 4 4 24.03846154 449.437048
383 381 2214.428858 180.0629199 4 4 24.03846154 449.437048
384 382 2224.448898 180.0629199 4 4 24.03846154 449.437048
385 383 2234.468938 180.0629199 4 4 24.03846154 449.437048
386 384 2244.488978 180.0629199 4 4 24.03846154 449.437048
387 385 2254.509018 180.0629199 4 4 24.03846154 449.437048
388 386 2264.529058 180.0629199 4 4 24.03846154 449.437048
389 387 2274.549098 180.0629199 4 4 24.03846154 449.437048
390 388 2284.569138 180.0629199 4 4 24.03846154 449.437048
391 389 2294.589178 180.0629199 4 4 24.03846154 449.437048
392 390 2304.609218 180.0629199 4 4 24.03846154 449.437048
393 391 2314.629259 180.0629199 4 4 24.03846154 449.437048
394 392 2324.649299 180.0629199 4 4 24.03846154 449.437048
395 393 2334.669339 180.0629199 4 4 24.03846154 449.437048
396 394 2344.689379 180.0629199 4 4 24.03846154 449.437048
397 395 2354.709419 180.0629199 4 4 24.03846154 449.437048
398 396 2364.729459 180.0629199 4 4 24.03846154 449.437048
399 397 2374.749499 180.0629199 4 4 24.03846154 449.437048
400 398 2384.769539 180.0629199 4 4 24.03846154 449.437048
401 399 2394.789579 180.0629199 4 4 24.03846154 449.437048
402 400 2404.809619 180.0629199 4 4 24.03846154 449.437048
403 401 2414.829659 180.0629199 4 4 24.03846154 449.437048
404 402 2424.849699 180.0629199 4 4 24.03846154 449.437048
405 403 2434.869739 180.0629199 4 4 24.03846154 449.437048
406 404 2444.88978 180.0629199 4 4 24.03846154 449.437048
407 405 2454.90982 180.0629199 4 4 24.03846154 449.437048
408 406 2464.92986 180.0629199 4 4 24.03846154 449.437048
409 407 2474.9499 180.0629199 4 4 24.03846154 449.437048
410 408 2484.96994 180.0629199 4 4 24.03846154 449.437048
411 409 2494.98998 180.0629199 4 4 24.03846154 449.437048
412 410 2505.01002 180.0629199 4 4 24.03846154 449.437048
413 411 2515.03006 180.0629199 4 4 24.03846154 449.437048
414 412 2525.0501 180.0629199 4 4 24.03846154 449.437048
415 413 2535.07014 180.0629199 4 4 24.03846154 449.437048
416 414 2545.09018 180.0629199 4 4 24.03846154 449.437048
417 415 2555.11022 180.0629199 4 4 24.03846154 449.437048
418 416 2565.130261 180.0629199 4 4 24.03846154 449.437048
419 417 2575.150301 180.0629199 4 4 24.03846154 449.437048
420 418 2585.170341 180.0629199 4 4 24.03846154 449.437048
421 419 2595.190381 180.0629199 4 4 24.03846154 449.437048
422 420 2605.210421 180.0629199 4 4 24.03846154 449.437048
423 421 2615.230461 180.0629199 4 4 24.03846154 449.437048
424 422 2625.250501 180.0629199 4 4 24.03846154 449.437048
425 423 2635.270541 180.0629199 4 4 24.03846154 449.437048
426 424 2645.290581 180.0629199 4 4 24.03846154 449.437048
427 425 2655.310621 180.0629199 4 4 24.03846154 449.437048
428 426 2665.330661 180.0629199 4 4 24.03846154 449.437048
429 427 2675.350701 180.0629199 4 4 24.03846154 449.437048
430 428 2685.370741 180.0629199 4 4 24.03846154 449.437048
431 429 2695.390782 180.0629199 4 4 24.03846154 449.437048
432 430 2705.410822 180.0629199 4 4 24.03846154 449.437048
433 431 2715.430862 180.0629199 4 4 24.03846154 449.437048
434 432 2725.450902 180.0629199 4 4 24.03846154 449.437048
435 433 2735.470942 180.0629199 4 4 24.03846154 449.437048
436 434 2745.490982 180.0629199 4 4 24.03846154 449.437048
437 435 2755.511022 180.0629199 4 4 24.03846154 449.437048
438 436 2765.531062 180.0629199 4 4 24.03846154 449.437048
439 437 2775.551102 180.0629199 4 4 24.03846154 449.437048
440 438 2785.571142 180.0629199 4 4 24.03846154 449.437048
441 439 2795.591182 180.0629199 4 4 24.03846154 449.437048
442 440 2805.611222 180.0629199 4 4 24.03846154 449.437048
443 441 2815.631263 180.0629199 4 4 24.03846154 449.437048
444 442 2825.651303 180.0629199 4 4 24.03846154 449.437048
445 443 2835.671343 180.0629199 4 4 24.03846154 449.437048
446 444 2845.691383 180.0629199 4 4 24.03846154 449.437048
447 445 2855.711423 180.0629199 4 4 24.03846154 449.437048
448 446 2865.731463 180.0629199 4 4 24.03846154 449.437048
449 447 2875.751503 180.0629199 4 4 24.03846154 449.437048
450 448 2885.771543 180.0629199 4 4 24.03846154 449.437048
451 449 2895.791583 180.0629199 4 4 24.03846154 449.437048
452 450 2905.811623 180.0629199 4 4 24.03846154 449.437048
453 451 2915.831663 180.0629199 4 4 24.03846154 449.437048
454 452 2925.851703 180.0629199 4 4 24.03846154 449.437048
455 453 2935.871743 180.0629199 4 4 24.03846154 449.437048
456 454 2945.891784 180.0629199 4 4 24.03846154 449.437048
457 455 2955.911824 180.0629199 4 4 24.03846154 449.437048
458 456 2965.931864 180.0629199 4 4 24.03846154 449.437048
459 457 2975.951904 180.0629199 4 4 24.03846154 449.437048
460 458 2985.971944 180.0629199 4 4 24.03846154 449.437048
461 459 2995.991984 180.0629199 4 4 24.03846154 449.437048
462 460 3006.012024 180.0629199 4 4 24.03846154 449.437048
463 461 3016.032064 180.0629199 4 4 24.03846154 449.437048
464 462 3026.052104 180.0629199 4 4 24.03846154 449.437048
465 463 3036.072144 180.0629199 4 4 24.03846154 449.437048
466 464 3046.092184 180.0629199 4 4 24.03846154 449.437048
467 465 3056.112224 180.0629199 4 4 24.03846154 449.437048
468 466 3066.132265 180.0629199 4 4 24.03846154 449.437048
469 467 3076.152305 180.0629199 4 4 24.03846154 449.437048
470 468 3086.172345 180.0629199 4 4 24.03846154 449.437048
471 469 3096.192385 180.0629199 4 4 24.03846154 449.437048
472 470 3106.212425 180.0629199 4 4 24.03846154 449.437048
473 471 3116.232465 180.0629199 4 4 24.03846154 449.437048
474 472 3126.252505 180.0629199 4 4 24.03846154 449.437048
475 473 3136.272545 180.0629199 4 4 24.03846154 449.437048
476 474 3146.292585 180.0629199 4 4 24.03846154 449.437048
477 475 3156.312625 180.0629199 4 4 24.03846154 449.437048
478 476 3166.332665 180.0629199 4 4 24.03846154 449.437048
479 477 3176.352705 180.0629199 4 4 24.03846154 449.437048
480 478 3186.372745 180.0629199 4 4 24.03846154 449.437048
481 479 3196.392786 180.0629199 4 4 24.03846154 449.437048
482 480 3206.412826 180.0629199 4 4 24.03846154 449.437048
483 481 3216.432866 180.0629199 4 4 24.03846154 449.437048
484 482 3226.452906 180.0629199 4 4 24.03846154 449.437048
485 483 3236.472946 180.0629199 4 4 24.03846154 449.437048
486 484 3246.492986 180.0629199 4 4 24.03846154 449.437048
487 485 3256.513026 180.0629199 4 4 24.03846154 449.437048
488 486 3266.533066 180.0629199 4 4 24.03846154 449.437048
489 487 3276.553106 180.0629199 4 4 24.03846154 449.437048
490 488 3286.573146 180.0629199 4 4 24.03846154 449.437048
491 489 3296.593186 180.0629199 4 4 24.03846154 449.437048
492 490 3306.613226 180.0629199 4 4 24.03846154 449.437048
493 491 3316.633267 180.0629199 4 4 24.03846154 449.437048
494 492 3326.653307 180.0629199 4 4 24.03846154 449.437048
495 493 3336.673347 180.0629199 4 4 24.03846154 449.437048
496 494 3346.693387 180.0629199 4 4 24.03846154 449.437048
497 495 3356.713427 180.0629199 4 4 24.03846154 449.437048
498 496 3366.733467 180.0629199 4 4 24.03846154 449.437048
499 497 3376.753507 180.0629199 4 4 24.03846154 449.437048
500 498 3386.773547 180.0629199 4 4 24.03846154 449.437048
501 499 3396.793587 180.0629199 4 4 24.03846154 449.437048
502 500 3406.813627 180.0629199 4 4 24.03846154 449.437048
503 501 3416.833667 180.0629199 4 4 24.03846154 449.437048
504 502 3426.853707 180.0629199 4 4 24.03846154 449.437048
505 503 3436.873747 180.0629199 4 4 24.03846154 449.437048
506 504 3446.893788 180.0629199 4 4 24.03846154 449.437048
507 505 3456.913828 180.0629199 4 4 24.03846154 449.437048
508 506 3466.933868 180.0629199 4 4 24.03846154 449.437048
509 507 3476.953908 180.0629199 4 4 24.03846154 449.437048
510 508 3486.973948 180.0629199 4 4 24.03846154 449.437048
511 509 3496.993988 180.0629199 4 4 24.03846154 449.437048
512 510 3507.014028 180.0629199 4 4 24.03846154 449.437048
513 511 3517.034068 180.0629199 4 4 24.03846154 449.437048
514 512 3527.054108 180.0629199 4 4 24.03846154 449.437048
515 513 3537.074148 180.0629199 4 4 24.03846154 449.437048
516 514 3547.094188 180.0629199 4 4 24.03846154 449.437048
517 515 3557.114228 180.0629199 4 4 24.03846154 449.437048
518 516 3567.134269 180.0629199 4 4 24.03846154 449.437048
519 517 3577.154309 180.0629199 4 4 24.03846154 449.437048
520 518 3587.174349 180.0629199 4 4 24.03846154 449.437048
521 519 3597.194389 180.0629199 4 4 24.03846154 449.437048
522 520 3607.214429 180.0629199 4 4 24.03846154 449.437048
523 521 3617.234469 180.0629199 4 4 24.03846154 449.437048
524 522 3627.254509 180.0629199 4 4 24.03846154 449.437048
525 523 3637.274549 180.0629199 4 4 24.03846154 449.437048
526 524 3647.294589 180.0629199 4 4 24.03846154 449.437048
527 525 3657.314629 180.0629199 4 4 24.03846154 449.437048
528 526 3667.334669 180.0629199 4 4 24.03846154 449.437048
529 527 3677.354709 180.0629199 4 4 24.03846154 449.437048
530 528 3687.37475 180.0629199 4 4 24.03846154 449.437048
531 529 3697.39479 180.0629199 4 4 24.03846154 449.437048
532 530 3707.41483 180.0629199 4 4 24.03846154 449.437048
533 531 3717.43487 180.0629199 4 4 24.03846154 449.437048
534 532 3727.45491 180.0629199 4 4 24.03846154 449.437048
535 533 3737.47495 180.0629199 4 4 24.03846154 449.437048
536 534 3747.49499 180.0629199 4 4 24.03846154 449.437048
537 535 3757.51503 180.0629199 4 4 24.03846154 449.437048
538 536 3767.53507 180.0629199 4 4 24.03846154 449.437048
539 537 3777.55511 180.0629199 4 4 24.03846154 449.437048
540 538 3787.57515 180.0629199 4 4 24.03846154 449.437048
541 539 3797.59519 180.0629199 4 4 24.03846154 449.437048
542 540 3807.61523 180.0629199 4 4 24.03846154 449.437048
543 541 3817.635271 180.0629199 4 4 24.03846154 449.437048
544 542 3827.655311 180.0629199 4 4 24.03846154 449.437048
545 543 3837.675351 180.0629199 4 4 24.03846154 449.437048
546 544 3847.695391 180.0629199 4 4 24.03846154 449.437048
547 545 3857.715431 180.0629199 4 4 24.03846154 449.437048
548 546 3867.735471 180.0629199 4 4 24.03846154 449.437048
549 547 3877.755511 180.0629199 4 4 24.03846154 449.437048
550 548 3887.775551 180.0629199 4 4 24.03846154 449.437048
551 549 3897.795591 180.0629199 4 4 24.03846154 449.437048
552 550 3907.815631 180.0629199 4 4 24.03846154 449.437048
553 551 3917.835671 180.0629199 4 4 24.03846154 449.437048
554 552 3927.855711 180.0629199 4 4 24.03846154 449.437048
555 553 3937.875752 180.0629199 4 4 24.03846154 449.437048
556 554 3947.895792 180.0629199 4 4 24.03846154 449.437048
557 555 3957.915832 180.0629199 4 4 24.03846154 449.437048
558 556 3967.935872 180.0629199 4 4 24.03846154 449.437048
559 557 3977.955912 180.0629199 4 4 24.03846154 449.437048
560 558 3987.975952 180.0629199 4 4 24.03846154 449.437048
561 559 3997.995992 180.0629199 4 4 24.03846154 449.437048
562 560 4008.016032 180.0629199 4 4 24.03846154 449.437048
563 561 4018.036072 180.0629199 4 4 24.03846154 449.437048
564 562 4028.056112 180.0629199 4 4 24.03846154 449.437048
565 563 4038.076152 180.0629199 4 4 24.03846154 449.437048
566 564 4048.096192 180.0629199 4 4 24.03846154 449.437048
567 565 4058.116232 180.0629199 4 4 24.03846154 449.437048
568 566 4068.136273 180.0629199 4 4 24.03846154 449.437048
569 567 4078.156313 180.0629199 4 4 24.03846154 449.437048
570 568 4088.176353 180.0629199 4 4 24.03846154 449.437048
571 569 4098.196393 180.0629199 4 4 24.03846154 449.437048
572 570 4108.216433 180.0629199 4 4 24.03846154 449.437048
573 571 4118.236473 180.0629199 4 4 24.03846154 449.437048
574 572 4128.256513 180.0629199 4 4 24.03846154 449.437048
575 573 4138.276553 180.0629199 4 4 24.03846154 449.437048
576 574 4148.296593 180.0629199 4 4 24.03846154 449.437048
577 575 4158.316633 180.0629199 4 4 24.03846154 449.437048
578 576 4168.336673 180.0629199 4 4 24.03846154 449.437048
579 577 4178.356713 180.0629199 4 4 24.03846154 449.437048
580 578 4188.376754 180.0629199 4 4 24.03846154 449.437048
581 579 4198.396794 180.0629199 4 4 24.03846154 449.437048
582 580 4208.416834 180.0629199 4 4 24.03846154 449.437048
583 581 4218.436874 180.0629199 4 4 24.03846154 449.437048
584 582 4228.456914 180.0629199 4 4 24.03846154 449.437048
585 583 4238.476954 180.0629199 4 4 24.03846154 449.437048
586 584 4248.496994 180.0629199 4 4 24.03846154 449.437048
587 585 4258.517034 180.0629199 4 4 24.03846154 449.437048
588 586 4268.537074 180.0629199 4 4 24.03846154 449.437048
589 587 4278.557114 180.0629199 4 4 24.03846154 449.437048
590 588 4288.577154 180.0629199 4 4 24.03846154 449.437048
591 589 4298.597194 180.0629199 4 4 24.03846154 449.437048
592 590 4308.617234 180.0629199 4 4 24.03846154 449.437048
593 591 4318.637275 180.0629199 4 4 24.03846154 449.437048
594 592 4328.657315 180.0629199 4 4 24.03846154 449.437048
595 593 4338.677355 180.0629199 4 4 24.03846154 449.437048
596 594 4348.697395 180.0629199 4 4 24.03846154 449.437048
597 595 4358.717435 180.0629199 4 4 24.03846154 449.437048
598 596 4368.737475 180.0629199 4 4 24.03846154 449.437048
599 597 4378.757515 180.0629199 4 4 24.03846154 449.437048
600 598 4388.777555 180.0629199 4 4 24.03846154 449.437048
601 599 4398.797595 180.0629199 4 4 24.03846154 449.437048
602 600 4408.817635 180.0629199 4 4 24.03846154 449.437048
603 601 4418.837675 180.0629199 4 4 24.03846154 449.437048
604 602 4428.857715 180.0629199 4 4 24.03846154 449.437048
605 603 4438.877756 180.0629199 4 4 24.03846154 449.437048
606 604 4448.897796 180.0629199 4 4 24.03846154 449.437048
607 605 4458.917836 180.0629199 4 4 24.03846154 449.437048
608 606 4468.937876 180.0629199 4 4 24.03846154 449.437048
609 607 4478.957916 180.0629199 4 4 24.03846154 449.437048
610 608 4488.977956 180.0629199 4 4 24.03846154 449.437048
611 609 4498.997996 180.0629199 4 4 24.03846154 449.437048
612 610 4509.018036 180.0629199 4 4 24.03846154 449.437048
613 611 4519.038076 180.0629199 4 4 24.03846154 449.437048
614 612 4529.058116 180.0629199 4 4 24.03846154 449.437048
615 613 4539.078156 180.0629199 4 4 24.03846154 449.437048
616 614 4549.098196 180.0629199 4 4 24.03846154 449.437048
617 615 4559.118236 180.0629199 4 4 24.03846154 449.437048
618 616 4569.138277 180.0629199 4 4 24.03846154 449.437048
619 617 4579.158317 180.0629199 4 4 24.03846154 449.437048
620 618 4589.178357 180.0629199 4 4 24.03846154 449.437048
621 619 4599.198397 180.0629199 4 4 24.03846154 449.437048
622 620 4609.218437 180.0629199 4 4 24.03846154 449.437048
623 621 4619.238477 180.0629199 4 4 24.03846154 449.437048
624 622 4629.258517 180.0629199 4 4 24.03846154 449.437048
625 623 4639.278557 180.0629199 4 4 24.03846154 449.437048
626 624 4649.298597 180.0629199 4 4 24.03846154 449.437048
627 625 4659.318637 180.0629199 4 4 24.03846154 449.437048
628 626 4669.338677 180.0629199 4 4 24.03846154 449.437048
629 627 4679.358717 180.0629199 4 4 24.03846154 449.437048
630 628 4689.378758 180.0629199 4 4 24.03846154 449.437048
631 629 4699.398798 180.0629199 4 4 24.03846154 449.437048
632 630 4709.418838 180.0629199 4 4 24.03846154 449.437048
633 631 4719.438878 180.0629199 4 4 24.03846154 449.437048
634 632 4729.458918 180.0629199 4 4 24.03846154 449.437048
635 633 4739.478958 180.0629199 4 4 24.03846154 449.437048
636 634 4749.498998 180.0629199 4 4 24.03846154 449.437048
637 635 4759.519038 180.0629199 4 4 24.03846154 449.437048
638 636 4769.539078 180.0629199 4 4 24.03846154 449.437048
639 637 4779.559118 180.0629199 4 4 24.03846154 449.437048
640 638 4789.579158 180.0629199 4 4 24.03846154 449.437048
641 639 4799.599198 180.0629199 4 4 24.03846154 449.437048
642 640 4809.619238 180.0629199 4 4 24.03846154 449.437048
643 641 4819.639279 180.0629199 4 4 24.03846154 449.437048
644 642 4829.659319 180.0629199 4 4 24.03846154 449.437048
645 643 4839.679359 180.0629199 4 4 24.03846154 449.437048
646 644 4849.699399 180.0629199 4 4 24.03846154 449.437048
647 645 4859.719439 180.0629199 4 4 24.03846154 449.437048
648 646 4869.739479 180.0629199 4 4 24.03846154 449.437048
649 647 4879.759519 180.0629199 4 4 24.03846154 449.437048
650 648 4889.779559 180.0629199 4 4 24.03846154 449.437048
651 649 4899.799599 180.0629199 4 4 24.03846154 449.437048
652 650 4909.819639 180.0629199 4 4 24.03846154 449.437048
653 651 4919.839679 180.0629199 4 4 24.03846154 449.437048
654 652 4929.859719 180.0629199 4 4 24.03846154 449.437048
655 653 4939.87976 180.0629199 4 4 24.03846154 449.437048
656 654 4949.8998 180.0629199 4 4 24.03846154 449.437048
657 655 4959.91984 180.0629199 4 4 24.03846154 449.437048
658 656 4969.93988 180.0629199 4 4 24.03846154 449.437048
659 657 4979.95992 180.0629199 4 4 24.03846154 449.437048
660 658 4989.97996 180.0629199 4 4 24.03846154 449.437048
661 659 5000 180.0629199 4 4 24.03846154 449.437048
662 660 0 365.1214097 5 4 32 684.6026432
663 661 10.1010101 365.1214097 5 4 32 684.6026432
664 662 20.2020202 365.1214097 5 4 32 684.6026432
665 663 30.3030303 365.1214097 5 4 32 684.6026432
666 664 40.4040404 365.1214097 5 4 32 684.6026432
667 665 50.50505051 365.1214097 5 4 32 684.6026432
668 666 60.60606061 365.1214097 5 4 32 684.6026432
669 667 70.70707071 365.1214097 5 4 32 684.6026432
670 668 80.80808081 365.1214097 5 4 32 684.6026432
671 669 90.90909091 365.1214097 5 4 32 684.6026432
672 670 101.010101 365.1214097 5 4 32 684.6026432
673 671 111.1111111 365.1214097 5 4 32 684.6026432
674 672 121.2121212 365.1214097 5 4 32 684.6026432
675 673 131.3131313 365.1214097 5 4 32 684.6026432
676 674 141.4141414 365.1214097 5 4 32 684.6026432
677 675 151.5151515 365.1214097 5 4 32 684.6026432
678 676 161.6161616 365.1214097 5 4 32 684.6026432
679 677 171.7171717 365.1214097 5 4 32 684.6026432
680 678 181.8181818 365.1214097 5 4 32 684.6026432
681 679 191.9191919 365.1214097 5 4 32 684.6026432
682 680 202.020202 365.1214097 5 4 32 684.6026432
683 681 212.1212121 365.1214097 5 4 32 684.6026432
684 682 222.2222222 365.1214097 5 4 32 684.6026432
685 683 232.3232323 365.1214097 5 4 32 684.6026432
686 684 242.4242424 365.1214097 5 4 32 684.6026432
687 685 252.5252525 365.1214097 5 4 32 684.6026432
688 686 262.6262626 365.1214097 5 4 32 684.6026432
689 687 272.7272727 365.1214097 5 4 32 684.6026432
690 688 282.8282828 365.1214097 5 4 32 684.6026432
691 689 292.9292929 365.1214097 5 4 32 684.6026432
692 690 303.030303 365.1214097 5 4 32 684.6026432
693 691 313.1313131 365.1214097 5 4 32 684.6026432
694 692 323.2323232 365.1214097 5 4 32 684.6026432
695 693 333.3333333 365.1214097 5 4 32 684.6026432
696 694 343.4343434 365.1214097 5 4 32 684.6026432
697 695 353.5353535 365.1214097 5 4 32 684.6026432
698 696 363.6363636 365.1214097 5 4 32 684.6026432
699 697 373.7373737 365.1214097 5 4 32 684.6026432
700 698 383.8383838 365.1214097 5 4 32 684.6026432
701 699 393.9393939 365.1214097 5 4 32 684.6026432
702 700 404.040404 365.1214097 5 4 32 684.6026432
703 701 414.1414141 365.1214097 5 4 32 684.6026432
704 702 424.2424242 365.1214097 5 4 32 684.6026432
705 703 434.3434343 365.1214097 5 4 32 684.6026432
706 704 444.4444444 365.1214097 5 4 32 684.6026432
707 705 454.5454545 365.1214097 5 4 32 684.6026432
708 706 464.6464646 365.1214097 5 4 32 684.6026432
709 707 474.7474747 365.1214097 5 4 32 684.6026432
710 708 484.8484848 365.1214097 5 4 32 684.6026432
711 709 494.9494949 365.1214097 5 4 32 684.6026432
712 710 505.0505051 365.1214097 5 4 32 684.6026432
713 711 515.1515152 365.1214097 5 4 32 684.6026432
714 712 525.2525253 365.1214097 5 4 32 684.6026432
715 713 535.3535354 365.1214097 5 4 32 684.6026432
716 714 545.4545455 365.1214097 5 4 32 684.6026432
717 715 555.5555556 365.1214097 5 4 32 684.6026432
718 716 565.6565657 365.1214097 5 4 32 684.6026432
719 717 575.7575758 365.1214097 5 4 32 684.6026432
720 718 585.8585859 365.1214097 5 4 32 684.6026432
721 719 595.959596 365.1214097 5 4 32 684.6026432
722 720 606.0606061 365.1214097 5 4 32 684.6026432
723 721 616.1616162 365.1214097 5 4 32 684.6026432
724 722 626.2626263 365.1214097 5 4 32 684.6026432
725 723 636.3636364 365.1214097 5 4 32 684.6026432
726 724 646.4646465 365.1214097 5 4 32 684.6026432
727 725 656.5656566 365.1214097 5 4 32 684.6026432
728 726 666.6666667 365.1214097 5 4 32 684.6026432
729 727 676.7676768 365.1214097 5 4 32 684.6026432
730 728 686.8686869 365.1214097 5 4 32 684.6026432
731 729 696.969697 365.1214097 5 4 32 684.6026432
732 730 707.0707071 365.1214097 5 4 32 684.6026432
733 731 717.1717172 365.1214097 5 4 32 684.6026432
734 732 727.2727273 365.1214097 5 4 32 684.6026432
735 733 737.3737374 365.1214097 5 4 32 684.6026432
736 734 747.4747475 365.1214097 5 4 32 684.6026432
737 735 757.5757576 365.1214097 5 4 32 684.6026432
738 736 767.6767677 365.1214097 5 4 32 684.6026432
739 737 777.7777778 365.1214097 5 4 32 684.6026432
740 738 787.8787879 365.1214097 5 4 32 684.6026432
741 739 797.979798 365.1214097 5 4 32 684.6026432
742 740 808.0808081 365.1214097 5 4 32 684.6026432
743 741 818.1818182 365.1214097 5 4 32 684.6026432
744 742 828.2828283 365.1214097 5 4 32 684.6026432
745 743 838.3838384 365.1214097 5 4 32 684.6026432
746 744 848.4848485 365.1214097 5 4 32 684.6026432
747 745 858.5858586 365.1214097 5 4 32 684.6026432
748 746 868.6868687 365.1214097 5 4 32 684.6026432
749 747 878.7878788 365.1214097 5 4 32 684.6026432
750 748 888.8888889 365.1214097 5 4 32 684.6026432
751 749 898.989899 365.1214097 5 4 32 684.6026432
752 750 909.0909091 365.1214097 5 4 32 684.6026432
753 751 919.1919192 365.1214097 5 4 32 684.6026432
754 752 929.2929293 365.1214097 5 4 32 684.6026432
755 753 939.3939394 365.1214097 5 4 32 684.6026432
756 754 949.4949495 365.1214097 5 4 32 684.6026432
757 755 959.5959596 365.1214097 5 4 32 684.6026432
758 756 969.6969697 365.1214097 5 4 32 684.6026432
759 757 979.7979798 365.1214097 5 4 32 684.6026432
760 758 989.8989899 365.1214097 5 4 32 684.6026432
761 759 1000 365.1214097 5 4 32 684.6026432

Binary file not shown.

View File

@@ -2502,7 +2502,7 @@
</Trackpoint>
</Track>
</Lap>
<Notes>&lt;Element 'Notes' at 0x13f289b0&gt;</Notes>
<Notes>&lt;Element 'Notes' at 0x13694ac8&gt;</Notes>
</Activity>
</Activities>
<Creator>