From e153e6348127827917adea448b50becdd5a98b3f Mon Sep 17 00:00:00 2001 From: Sander Roosendaal Date: Mon, 11 Jan 2021 17:43:18 +0100 Subject: [PATCH] more unit tests --- rowers/dataprep.py | 2 +- rowers/interactiveplots.py | 2 + rowers/tests/test_analysis.py | 3 + rowers/tests/test_unit_tests.py | 41 + rowers/tests/testdata/otwcp.csv | 36 + rowers/tests/testdata/videodata.csv | 1194 +++++++++++++++++++++++++++ rowers/tests/viewnames.csv | 1 + 7 files changed, 1278 insertions(+), 1 deletion(-) create mode 100644 rowers/tests/testdata/otwcp.csv create mode 100644 rowers/tests/testdata/videodata.csv diff --git a/rowers/dataprep.py b/rowers/dataprep.py index f12241b8..f09aff2f 100644 --- a/rowers/dataprep.py +++ b/rowers/dataprep.py @@ -236,7 +236,7 @@ def get_video_data(w,groups=['basic'],mode='water'): metrics = collections.OrderedDict(sorted(metrics.items())) maxtime = coordinates['time'].max() - + return data, metrics, maxtime diff --git a/rowers/interactiveplots.py b/rowers/interactiveplots.py index fe956508..51fbd38c 100644 --- a/rowers/interactiveplots.py +++ b/rowers/interactiveplots.py @@ -3476,6 +3476,7 @@ def interactive_agegroupcpchart(age,normalized=False): def interactive_otwcpchart(powerdf,promember=0,rowername="",r=None,cpfit='data', title='',type='water'): + powerdf = powerdf[~(powerdf == 0).any(axis=1)] # plot tools if (promember==1): @@ -4136,6 +4137,7 @@ def interactive_streamchart(id=0,promember=0): return [script,div] def interactive_chart(id=0,promember=0,intervaldata = {}): + # Add hover to this comma-separated string and see what changes if (promember==1): TOOLS = 'save,pan,box_zoom,wheel_zoom,reset,tap,hover,crosshair' diff --git a/rowers/tests/test_analysis.py b/rowers/tests/test_analysis.py index eb4ed3da..a4527159 100644 --- a/rowers/tests/test_analysis.py +++ b/rowers/tests/test_analysis.py @@ -1000,6 +1000,9 @@ class GoldMedalScores(TestCase): self.c = Client() self.user_workouts = WorkoutFactory.create_batch(20, user=self.r) + ws = Workout.objects.all().order_by('date') + ws[0].rankingpiece = True + ws[0].save() self.factory = RequestFactory() self.password = faker.word() self.u.set_password(self.password) diff --git a/rowers/tests/test_unit_tests.py b/rowers/tests/test_unit_tests.py index 810bd625..8b5db9f6 100644 --- a/rowers/tests/test_unit_tests.py +++ b/rowers/tests/test_unit_tests.py @@ -4,6 +4,7 @@ from __future__ import print_function from __future__ import unicode_literals from .statements import * +from rowers.mytypes import rowtypes nu = datetime.datetime.now() @@ -58,3 +59,43 @@ class InteractivePlotTests(TestCase): script, div = interactiveplots.interactive_activitychart(workouts,startdate,enddate) self.assertFalse(len(script)==0) self.assertFalse(len(div)==0) + + def test_interactive_otwcpchart(self): + df = pd.read_csv('rowers/tests/testdata/otwcp.csv') + + script, div, p1, ratio, message = interactiveplots.interactive_otwcpchart(df,r=self.r,cpfit='data') + self.assertFalse(len(script)==0) + self.assertFalse(len(div)==0) + + script, div, p1, ratio, message = interactiveplots.interactive_otwcpchart(df,r=self.r,cpfit='automatic') + self.assertFalse(len(script)==0) + self.assertFalse(len(div)==0) + + def test_interactive_chart(self): + workout = Workout.objects.filter(user=self.r,workouttype__in=mytypes.rowtypes)[0] + id = workout.id + + script, div = interactiveplots.interactive_chart(id=id) + self.assertFalse(len(script)==0) + self.assertFalse(len(div)==0) + + intervaldata = { + 'itime': [0.0, 234.0, 61.2, 59.7, 60.5, 61.0, 44.2, 74.7, 44.8, 75.1, 43.4, 78.0, 40.1, 79.4, 42.4, 76.1, 45.4, 75.2, 43.2, 255.0, 60.0, 60.6, 60.7, 60.7, 55.3, 65.4, 58.2, 60.2, 59.7, 62.0, 44.7, 72.5, 43.2, 78.5, 56.4, 889.5], + 'idist': [0, 700, 257, 179, 254, 197, 185, 246, 190, 240, 181, 240, 169, 241, 179, 215, 180, 223, 179, 302, 247, 190, 246, 180, 229, 197, 242, 179, 245, 189, 175, 208, 166, 218, 224, 2399], + 'itype': [4, 3, 4.0, 3, 4.0, 3, 4.0, 3, 4.0, 3, 4.0, 3, 4.0, 3, 4.0, 3, 4.0, 3, 4.0, 3, 4.0, 3, 4.0, 3, 4.0, 3, 4.0, 3, 4.0, 3, 4.0, 3, 4.0, 3, 4.0, 3], + 'selector': 'power', + 'normp': 203, + 'normv': 3.557050625695544 + } + + script, div = interactiveplots.interactive_chart(id=id,intervaldata=intervaldata) + self.assertFalse(len(script)==0) + self.assertFalse(len(div)==0) + + def test_interactive_chart_video(self): + datadf = pd.read_csv('rowers/tests/testdata/videodata.csv') + data = datadf.to_dict() + + script, div = interactiveplots.interactive_chart_video(data) + self.assertFalse(len(script)==0) + self.assertFalse(len(div)==0) diff --git a/rowers/tests/testdata/otwcp.csv b/rowers/tests/testdata/otwcp.csv new file mode 100644 index 00000000..e877c090 --- /dev/null +++ b/rowers/tests/testdata/otwcp.csv @@ -0,0 +1,36 @@ +,Delta,CP,workout,url +0,6.0,340.1333334878639,2020-12-31 Sprintervals 10106m 00:54:42 water 1x Sander Roosendaal,http://localhost:8000/rowers/workout/4df830f9/ +1,7.0,338.96666679029113,2020-12-31 Sprintervals 10106m 00:54:42 water 1x Sander Roosendaal,http://localhost:8000/rowers/workout/4df830f9/ +2,8.0,338.71428568590255,2020-12-31 Sprintervals 10106m 00:54:42 water 1x Sander Roosendaal,http://localhost:8000/rowers/workout/4df830f9/ +3,10.0,339.43571423334737,2020-12-31 Sprintervals 10106m 00:54:42 water 1x Sander Roosendaal,http://localhost:8000/rowers/workout/4df830f9/ +4,11.0,339.80178561827967,2020-12-31 Sprintervals 10106m 00:54:42 water 1x Sander Roosendaal,http://localhost:8000/rowers/workout/4df830f9/ +5,12.0,339.2885803634247,2020-12-31 Sprintervals 10106m 00:54:42 water 1x Sander Roosendaal,http://localhost:8000/rowers/workout/4df830f9/ +6,15.0,338.8528139864973,2020-12-31 Sprintervals 10106m 00:54:42 water 1x Sander Roosendaal,http://localhost:8000/rowers/workout/4df830f9/ +7,17.0,337.4631313049432,2020-12-31 Sprintervals 10106m 00:54:42 water 1x Sander Roosendaal,http://localhost:8000/rowers/workout/4df830f9/ +8,20.0,337.8169515282718,2020-12-31 Sprintervals 10106m 00:54:42 water 1x Sander Roosendaal,http://localhost:8000/rowers/workout/4df830f9/ +9,24.0,335.4814812361949,2020-12-31 Sprintervals 10106m 00:54:42 water 1x Sander Roosendaal,http://localhost:8000/rowers/workout/4df830f9/ +10,30.0,330.284275590586,2020-12-31 Sprintervals 10106m 00:54:42 water 1x Sander Roosendaal,http://localhost:8000/rowers/workout/4df830f9/ +11,36.0,326.1298700713836,2020-12-31 Sprintervals 10106m 00:54:42 water 1x Sander Roosendaal,http://localhost:8000/rowers/workout/4df830f9/ +12,44.0,306.14423090749636,2020-12-31 Sprintervals 10106m 00:54:42 water 1x Sander Roosendaal,http://localhost:8000/rowers/workout/4df830f9/ +13,55.0,297.21960064902305,2020-12-31 Sprintervals 10106m 00:54:42 water 1x Sander Roosendaal,http://localhost:8000/rowers/workout/4df830f9/ +14,68.0,279.2818076545548,2020-12-31 Sprintervals 10106m 00:54:42 water 1x Sander Roosendaal,http://localhost:8000/rowers/workout/4df830f9/ +15,84.0,261.9537069142544,2020-12-31 Sprintervals 10106m 00:54:42 water 1x Sander Roosendaal,http://localhost:8000/rowers/workout/4df830f9/ +16,105.0,245.38402312135386,2020-12-31 Sprintervals 10106m 00:54:42 water 1x Sander Roosendaal,http://localhost:8000/rowers/workout/4df830f9/ +17,130.0,236.2756178973642,2020-12-31 Sprintervals 10106m 00:54:42 water 1x Sander Roosendaal,http://localhost:8000/rowers/workout/4df830f9/ +18,163.0,249.37083678010336,2020-12-31 Sprintervals 10106m 00:54:42 water 1x Sander Roosendaal,http://localhost:8000/rowers/workout/4df830f9/ +19,204.0,240.90711703539813,2020-12-31 Sprintervals 10106m 00:54:42 water 1x Sander Roosendaal,http://localhost:8000/rowers/workout/4df830f9/ +20,256.0,229.8622390192616,2020-12-31 Sprintervals 10106m 00:54:42 water 1x Sander Roosendaal,http://localhost:8000/rowers/workout/4df830f9/ +21,321.0,227.8746514703743,2020-12-31 Sprintervals 10106m 00:54:42 water 1x Sander Roosendaal,http://localhost:8000/rowers/workout/4df830f9/ +22,403.0,225.8329855924891,2020-12-31 Sprintervals 10106m 00:54:42 water 1x Sander Roosendaal,http://localhost:8000/rowers/workout/4df830f9/ +23,506.0,221.91079812206573,2020-12-31 Sprintervals 10106m 00:54:42 water 1x Sander Roosendaal,http://localhost:8000/rowers/workout/4df830f9/ +24,635.0,220.762340476955,2020-12-31 Sprintervals 10106m 00:54:42 water 1x Sander Roosendaal,http://localhost:8000/rowers/workout/4df830f9/ +25,799.0,212.73512266030042,2020-12-31 Sprintervals 10106m 00:54:42 water 1x Sander Roosendaal,http://localhost:8000/rowers/workout/4df830f9/ +26,1005.0,212.8565037482774,2020-12-31 Sprintervals 10106m 00:54:42 water 1x Sander Roosendaal,http://localhost:8000/rowers/workout/4df830f9/ +27,1263.0,139.9511726253205,2020-12-11 C2 Import Workout from 2020-12-11 10:06:06+00:00 11427m 01:00:08 water 1x Sander Roosendaal,http://localhost:8000/rowers/workout/db9b0a94/ +28,1589.0,138.8309130746855,2020-11-23 Morning water 20314m 01:49:33 water 1x Sander Roosendaal,http://localhost:8000/rowers/workout/16ffc190/ +30,2000.0,137.5323799240252,2020-11-23 Morning water 20314m 01:49:33 water 1x Sander Roosendaal,http://localhost:8000/rowers/workout/16ffc190/ +32,2516.0,135.5675172186318,2020-11-23 Morning water 20314m 01:49:33 water 1x Sander Roosendaal,http://localhost:8000/rowers/workout/16ffc190/ +34,3167.0,134.68660138671376,2020-11-23 Morning water 20314m 01:49:33 water 1x Sander Roosendaal,http://localhost:8000/rowers/workout/16ffc190/ +36,3986.0,134.2073467308539,2020-11-23 Morning water 20314m 01:49:33 water 1x Sander Roosendaal,http://localhost:8000/rowers/workout/16ffc190/ +38,5016.0,133.822526821714,2020-11-23 Morning water 20314m 01:49:33 water 1x Sander Roosendaal,http://localhost:8000/rowers/workout/16ffc190/ +40,6314.0,133.7172039237248,2020-11-23 Morning water 20314m 01:49:33 water 1x Sander Roosendaal,http://localhost:8000/rowers/workout/16ffc190/ diff --git a/rowers/tests/testdata/videodata.csv b/rowers/tests/testdata/videodata.csv new file mode 100644 index 00000000..bf6cec2f --- /dev/null +++ b/rowers/tests/testdata/videodata.csv @@ -0,0 +1,1194 @@ +,boatspeed,latitude,longitude,distanceperstroke,distance,pace,spm,cumdist,velo +0,3.83,0.0,0.0,12.7,29.0,02:10.6,18.0,29.0,3.8 +1,3.83,0.0,0.0,12.7,29.0,02:10.6,18.0,29.0,3.8 +2,3.83,0.0,0.0,12.7,29.0,02:10.6,18.0,29.0,3.8 +3,3.83,0.0,0.0,12.7,29.0,02:10.6,18.0,29.0,3.8 +4,3.83,0.0,0.0,12.7,29.0,02:10.6,18.0,29.0,3.8 +5,3.83,0.0,0.0,12.7,29.0,02:10.6,18.0,29.0,3.8 +6,3.83,0.0,0.0,12.7,29.0,02:10.6,18.0,29.0,3.8 +7,3.77,0.0,0.0,13.3,56.0,02:12.5,17.0,56.0,3.7 +8,3.77,0.0,0.0,13.3,56.0,02:12.5,17.0,56.0,3.7 +9,3.77,0.0,0.0,13.3,56.0,02:12.5,17.0,56.0,3.7 +10,3.77,0.0,0.0,13.3,56.0,02:12.5,17.0,56.0,3.7 +11,3.77,0.0,0.0,13.3,56.0,02:12.5,17.0,56.0,3.7 +12,3.77,0.0,0.0,13.3,56.0,02:12.5,17.0,56.0,3.7 +13,3.77,0.0,0.0,13.3,56.0,02:12.5,17.0,56.0,3.7 +14,3.83,0.0,0.0,13.5,83.0,02:10.4,17.0,83.0,3.8 +15,3.83,0.0,0.0,13.5,83.0,02:10.4,17.0,83.0,3.8 +16,3.83,0.0,0.0,13.5,83.0,02:10.4,17.0,83.0,3.8 +17,3.83,0.0,0.0,13.5,83.0,02:10.4,17.0,83.0,3.8 +18,3.82,0.0,0.0,13.6,99.0,02:10.9,16.7,99.0,3.8 +19,3.82,0.0,0.0,13.6,99.0,02:10.9,16.7,99.0,3.8 +20,3.82,0.0,0.0,13.6,99.0,02:10.9,16.7,99.0,3.8 +21,3.82,0.0,0.0,13.6,99.0,02:10.9,16.7,99.0,3.8 +22,3.82,0.0,0.0,13.6,99.0,02:10.9,16.7,99.0,3.8 +23,3.82,0.0,0.0,13.6,99.0,02:10.9,16.7,99.0,3.8 +24,3.82,0.0,0.0,13.6,99.0,02:10.9,16.7,99.0,3.8 +25,3.8,0.0,0.0,14.0,125.0,02:11.5,16.2,125.0,3.8 +26,3.8,0.0,0.0,14.0,125.0,02:11.5,16.2,125.0,3.8 +27,3.8,0.0,0.0,14.0,125.0,02:11.5,16.2,125.0,3.8 +28,3.8,0.0,0.0,14.0,125.0,02:11.5,16.2,125.0,3.8 +29,3.78,0.0,0.0,14.2,140.0,02:12.4,15.9,140.0,3.7 +30,3.78,0.0,0.0,14.2,140.0,02:12.4,15.9,140.0,3.7 +31,3.78,0.0,0.0,14.2,140.0,02:12.4,15.9,140.0,3.7 +32,3.78,0.0,0.0,14.2,140.0,02:12.4,15.9,140.0,3.7 +33,3.79,0.0,0.0,14.2,156.0,02:11.8,16.0,156.0,3.7 +34,3.79,0.0,0.0,14.2,156.0,02:11.8,16.0,156.0,3.7 +35,3.79,0.0,0.0,14.2,156.0,02:11.8,16.0,156.0,3.7 +36,3.79,0.0,0.0,14.2,156.0,02:11.8,16.0,156.0,3.7 +37,3.79,0.0,0.0,14.2,156.0,02:11.8,16.0,156.0,3.7 +38,3.79,0.0,0.0,14.2,156.0,02:11.8,16.0,156.0,3.7 +39,3.79,0.0,0.0,14.2,156.0,02:11.8,16.0,156.0,3.7 +40,3.77,0.0,0.0,14.1,182.0,02:12.7,16.0,182.0,3.7 +41,3.77,0.0,0.0,14.1,182.0,02:12.7,16.0,182.0,3.7 +42,3.77,0.0,0.0,14.1,182.0,02:12.7,16.0,182.0,3.7 +43,3.77,0.0,0.0,14.1,182.0,02:12.7,16.0,182.0,3.7 +44,3.72,0.0,0.0,13.9,197.0,02:14.2,16.0,197.0,3.7 +45,3.72,0.0,0.0,13.9,197.0,02:14.2,16.0,197.0,3.7 +46,3.72,0.0,0.0,13.9,197.0,02:14.2,16.0,197.0,3.7 +47,3.72,0.0,0.0,13.9,197.0,02:14.2,16.0,197.0,3.7 +48,3.74,0.0,0.0,14.0,212.0,02:13.7,16.0,212.0,3.7 +49,3.74,0.0,0.0,14.0,212.0,02:13.7,16.0,212.0,3.7 +50,3.74,0.0,0.0,14.0,212.0,02:13.7,16.0,212.0,3.7 +51,3.74,0.0,0.0,14.0,212.0,02:13.7,16.0,212.0,3.7 +52,3.74,0.0,0.0,14.0,212.0,02:13.7,16.0,212.0,3.7 +53,3.74,0.0,0.0,14.0,212.0,02:13.7,16.0,212.0,3.7 +54,3.74,0.0,0.0,14.0,212.0,02:13.7,16.0,212.0,3.7 +55,3.76,0.0,0.0,14.0,238.0,02:13.0,16.0,238.0,3.7 +56,3.76,0.0,0.0,14.0,238.0,02:13.0,16.0,238.0,3.7 +57,3.76,0.0,0.0,14.0,238.0,02:13.0,16.0,238.0,3.7 +58,3.76,0.0,0.0,14.0,238.0,02:13.0,16.0,238.0,3.7 +59,3.77,0.0,0.0,14.1,254.0,02:12.6,16.0,254.0,3.7 +60,3.77,0.0,0.0,14.1,254.0,02:12.6,16.0,254.0,3.7 +61,3.77,0.0,0.0,14.1,254.0,02:12.6,16.0,254.0,3.7 +62,3.77,0.0,0.0,14.1,254.0,02:12.6,16.0,254.0,3.7 +63,3.77,0.0,0.0,14.1,269.0,02:12.5,16.0,269.0,3.7 +64,3.77,0.0,0.0,14.1,269.0,02:12.5,16.0,269.0,3.7 +65,3.77,0.0,0.0,14.1,269.0,02:12.5,16.0,269.0,3.7 +66,3.77,0.0,0.0,14.1,269.0,02:12.5,16.0,269.0,3.7 +67,3.77,0.0,0.0,14.1,269.0,02:12.5,16.0,269.0,3.7 +68,3.77,0.0,0.0,14.1,269.0,02:12.5,16.0,269.0,3.7 +69,3.77,0.0,0.0,14.1,269.0,02:12.5,16.0,269.0,3.7 +70,3.77,0.0,0.0,14.1,269.0,02:12.5,16.0,269.0,3.7 +71,3.81,0.0,0.0,14.2,300.0,02:11.2,16.0,300.0,3.8 +72,3.81,0.0,0.0,14.2,300.0,02:11.2,16.0,300.0,3.8 +73,3.81,0.0,0.0,14.2,300.0,02:11.2,16.0,300.0,3.8 +74,3.81,0.0,0.0,14.2,311.0,02:11.2,16.0,311.0,3.8 +75,3.81,0.0,0.0,14.2,311.0,02:11.2,16.0,311.0,3.8 +76,3.81,0.0,0.0,14.2,311.0,02:11.2,16.0,311.0,3.8 +77,3.81,0.0,0.0,14.2,311.0,02:11.2,16.0,311.0,3.8 +78,3.78,0.0,0.0,14.1,326.0,02:12.2,16.0,326.0,3.7 +79,3.78,0.0,0.0,14.1,326.0,02:12.2,16.0,326.0,3.7 +80,3.78,0.0,0.0,14.1,326.0,02:12.2,16.0,326.0,3.7 +81,3.78,0.0,0.0,14.1,326.0,02:12.2,16.0,326.0,3.7 +82,3.78,0.0,0.0,14.1,326.0,02:12.2,16.0,326.0,3.7 +83,3.78,0.0,0.0,14.1,326.0,02:12.2,16.0,326.0,3.7 +84,3.78,0.0,0.0,14.1,326.0,02:12.2,16.0,326.0,3.7 +85,3.79,0.0,0.0,14.2,352.0,02:11.9,16.0,352.0,3.7 +86,3.79,0.0,0.0,14.2,352.0,02:11.9,16.0,352.0,3.7 +87,3.79,0.0,0.0,14.2,352.0,02:11.9,16.0,352.0,3.7 +88,3.79,0.0,0.0,14.2,352.0,02:11.9,16.0,352.0,3.7 +89,3.77,0.0,0.0,14.1,368.0,02:12.5,16.0,368.0,3.7 +90,3.77,0.0,0.0,14.1,368.0,02:12.5,16.0,368.0,3.7 +91,3.77,0.0,0.0,14.1,368.0,02:12.5,16.0,368.0,3.7 +92,3.77,0.0,0.0,14.1,368.0,02:12.5,16.0,368.0,3.7 +93,3.77,0.0,0.0,14.1,368.0,02:12.5,16.0,368.0,3.7 +94,3.77,0.0,0.0,14.1,368.0,02:12.5,16.0,368.0,3.7 +95,3.77,0.0,0.0,14.1,368.0,02:12.5,16.0,368.0,3.7 +96,3.8,0.0,0.0,14.2,394.0,02:11.4,16.0,394.0,3.8 +97,3.8,0.0,0.0,14.2,394.0,02:11.4,16.0,394.0,3.8 +98,3.8,0.0,0.0,14.2,394.0,02:11.4,16.0,394.0,3.8 +99,3.8,0.0,0.0,14.2,394.0,02:11.4,16.0,394.0,3.8 +100,3.8,0.0,0.0,14.2,410.0,02:11.4,16.0,410.0,3.8 +101,3.8,0.0,0.0,14.2,410.0,02:11.4,16.0,410.0,3.8 +102,3.8,0.0,0.0,14.2,410.0,02:11.4,16.0,410.0,3.8 +103,3.8,0.0,0.0,14.2,410.0,02:11.4,16.0,410.0,3.8 +104,3.81,0.0,0.0,14.3,425.0,02:11.3,15.9,425.0,3.8 +105,3.81,0.0,0.0,14.3,425.0,02:11.3,15.9,425.0,3.8 +106,3.81,0.0,0.0,14.3,425.0,02:11.3,15.9,425.0,3.8 +107,3.81,0.0,0.0,14.3,425.0,02:11.3,15.9,425.0,3.8 +108,3.81,0.0,0.0,14.3,425.0,02:11.3,15.9,425.0,3.8 +109,3.81,0.0,0.0,14.3,425.0,02:11.3,15.9,425.0,3.8 +110,3.81,0.0,0.0,14.3,425.0,02:11.3,15.9,425.0,3.8 +111,3.81,0.0,0.0,14.3,425.0,02:11.3,15.9,425.0,3.8 +112,3.8,0.0,0.0,14.1,456.0,02:11.4,16.1,456.0,3.8 +113,3.8,0.0,0.0,14.1,456.0,02:11.4,16.1,456.0,3.8 +114,3.8,0.0,0.0,14.1,456.0,02:11.4,16.1,456.0,3.8 +115,3.8,0.0,0.0,14.1,456.0,02:11.4,16.1,456.0,3.8 +116,3.8,0.0,0.0,14.1,456.0,02:11.4,16.1,456.0,3.8 +117,3.8,0.0,0.0,14.1,456.0,02:11.4,16.1,456.0,3.8 +118,3.84,0.0,0.0,13.5,479.0,02:10.2,17.0,479.0,3.8 +119,3.84,0.0,0.0,13.5,479.0,02:10.2,17.0,479.0,3.8 +120,3.84,0.0,0.0,13.5,479.0,02:10.2,17.0,479.0,3.8 +121,3.84,0.0,0.0,13.5,479.0,02:10.2,17.0,479.0,3.8 +122,3.94,0.0,0.0,13.2,495.0,02:06.8,17.8,495.0,3.9 +123,3.94,0.0,0.0,13.2,495.0,02:06.8,17.8,495.0,3.9 +124,3.94,0.0,0.0,13.2,495.0,02:06.8,17.8,495.0,3.9 +125,3.94,0.0,0.0,13.2,495.0,02:06.8,17.8,495.0,3.9 +126,3.94,0.0,0.0,13.2,495.0,02:06.8,17.8,495.0,3.9 +127,3.94,0.0,0.0,13.2,495.0,02:06.8,17.8,495.0,3.9 +128,3.94,0.0,0.0,13.2,495.0,02:06.8,17.8,495.0,3.9 +129,3.92,0.0,0.0,13.0,523.0,02:07.4,18.0,523.0,3.9 +130,3.92,0.0,0.0,13.0,523.0,02:07.4,18.0,523.0,3.9 +131,3.92,0.0,0.0,13.0,523.0,02:07.4,18.0,523.0,3.9 +132,3.92,0.0,0.0,13.0,523.0,02:07.4,18.0,523.0,3.9 +133,3.92,0.0,0.0,13.0,523.0,02:07.4,18.0,523.0,3.9 +134,3.92,0.0,0.0,13.0,523.0,02:07.4,18.0,523.0,3.9 +135,3.92,0.0,0.0,13.0,545.0,02:07.6,18.0,545.0,3.9 +136,3.92,0.0,0.0,13.0,545.0,02:07.6,18.0,545.0,3.9 +137,3.92,0.0,0.0,13.0,545.0,02:07.6,18.0,545.0,3.9 +138,3.92,0.0,0.0,13.0,545.0,02:07.6,18.0,545.0,3.9 +139,3.94,0.0,0.0,13.1,562.0,02:06.8,18.0,562.0,3.9 +140,3.94,0.0,0.0,13.1,562.0,02:06.8,18.0,562.0,3.9 +141,3.94,0.0,0.0,13.1,562.0,02:06.8,18.0,562.0,3.9 +142,3.94,0.0,0.0,13.1,562.0,02:06.8,18.0,562.0,3.9 +143,3.94,0.0,0.0,13.1,562.0,02:06.8,18.0,562.0,3.9 +144,3.94,0.0,0.0,13.1,562.0,02:06.8,18.0,562.0,3.9 +145,3.92,0.0,0.0,13.0,585.0,02:07.4,18.0,585.0,3.9 +146,3.92,0.0,0.0,13.0,585.0,02:07.4,18.0,585.0,3.9 +147,3.92,0.0,0.0,13.0,585.0,02:07.4,18.0,585.0,3.9 +148,3.92,0.0,0.0,13.0,585.0,02:07.4,18.0,585.0,3.9 +149,3.92,0.0,0.0,13.0,585.0,02:07.4,18.0,585.0,3.9 +150,3.92,0.0,0.0,13.0,585.0,02:07.4,18.0,585.0,3.9 +151,3.92,0.0,0.0,13.0,585.0,02:07.4,18.0,585.0,3.9 +152,3.91,0.0,0.0,13.3,612.0,02:07.7,17.6,612.0,3.9 +153,3.91,0.0,0.0,13.3,612.0,02:07.7,17.6,612.0,3.9 +154,3.91,0.0,0.0,13.3,612.0,02:07.7,17.6,612.0,3.9 +155,3.91,0.0,0.0,13.3,612.0,02:07.7,17.6,612.0,3.9 +156,3.93,0.0,0.0,13.4,629.0,02:07.1,17.5,629.0,3.9 +157,3.93,0.0,0.0,13.4,629.0,02:07.1,17.5,629.0,3.9 +158,3.93,0.0,0.0,13.4,629.0,02:07.1,17.5,629.0,3.9 +159,3.93,0.0,0.0,13.4,629.0,02:07.1,17.5,629.0,3.9 +160,3.93,0.0,0.0,13.4,629.0,02:07.1,17.5,629.0,3.9 +161,3.93,0.0,0.0,13.4,629.0,02:07.1,17.5,629.0,3.9 +162,3.93,0.0,0.0,13.3,652.0,02:07.1,17.6,652.0,3.9 +163,3.93,0.0,0.0,13.3,652.0,02:07.1,17.6,652.0,3.9 +164,3.93,0.0,0.0,13.3,652.0,02:07.1,17.6,652.0,3.9 +165,3.93,0.0,0.0,13.3,652.0,02:07.1,17.6,652.0,3.9 +166,3.96,0.0,0.0,13.1,669.0,02:06.1,18.0,669.0,3.9 +167,3.96,0.0,0.0,13.1,669.0,02:06.1,18.0,669.0,3.9 +168,3.96,0.0,0.0,13.1,669.0,02:06.1,18.0,669.0,3.9 +169,3.96,0.0,0.0,13.1,669.0,02:06.1,18.0,669.0,3.9 +170,3.96,0.0,0.0,13.1,669.0,02:06.1,18.0,669.0,3.9 +171,3.96,0.0,0.0,13.1,669.0,02:06.1,18.0,669.0,3.9 +172,3.97,0.0,0.0,13.2,692.0,02:06.1,18.0,692.0,3.9 +173,3.97,0.0,0.0,13.2,692.0,02:06.1,18.0,692.0,3.9 +174,3.97,0.0,0.0,13.2,692.0,02:06.1,18.0,692.0,3.9 +175,3.97,0.0,0.0,13.2,692.0,02:06.1,18.0,692.0,3.9 +176,3.97,0.0,0.0,13.2,708.0,02:06.1,18.0,708.0,3.9 +177,3.97,0.0,0.0,13.2,708.0,02:06.1,18.0,708.0,3.9 +178,3.97,0.0,0.0,13.2,708.0,02:06.1,18.0,708.0,3.9 +179,3.97,0.0,0.0,13.2,708.0,02:06.1,18.0,708.0,3.9 +180,3.97,0.0,0.0,13.2,708.0,02:06.1,18.0,708.0,3.9 +181,3.97,0.0,0.0,13.2,708.0,02:06.1,18.0,708.0,3.9 +182,3.95,0.0,0.0,13.1,731.0,02:06.5,18.0,731.0,3.9 +183,3.95,0.0,0.0,13.1,731.0,02:06.5,18.0,731.0,3.9 +184,3.95,0.0,0.0,13.1,731.0,02:06.5,18.0,731.0,3.9 +185,3.95,0.0,0.0,13.1,731.0,02:06.5,18.0,731.0,3.9 +186,3.91,0.0,0.0,13.0,748.0,02:07.8,18.0,748.0,3.9 +187,3.91,0.0,0.0,13.0,748.0,02:07.8,18.0,748.0,3.9 +188,3.91,0.0,0.0,13.0,748.0,02:07.8,18.0,748.0,3.9 +189,3.91,0.0,0.0,13.0,748.0,02:07.8,18.0,748.0,3.9 +190,3.91,0.0,0.0,13.0,748.0,02:07.8,18.0,748.0,3.9 +191,3.91,0.0,0.0,13.0,748.0,02:07.8,18.0,748.0,3.9 +192,3.91,0.0,0.0,13.0,770.0,02:08.0,18.0,770.0,3.9 +193,3.91,0.0,0.0,13.0,770.0,02:08.0,18.0,770.0,3.9 +194,3.91,0.0,0.0,13.0,770.0,02:08.0,18.0,770.0,3.9 +195,3.91,0.0,0.0,13.0,770.0,02:08.0,18.0,770.0,3.9 +196,3.95,0.0,0.0,13.1,787.0,02:06.5,18.0,787.0,3.9 +197,3.95,0.0,0.0,13.1,787.0,02:06.5,18.0,787.0,3.9 +198,3.95,0.0,0.0,13.1,787.0,02:06.5,18.0,787.0,3.9 +199,3.95,0.0,0.0,13.1,787.0,02:06.5,18.0,787.0,3.9 +200,3.95,0.0,0.0,13.1,787.0,02:06.5,18.0,787.0,3.9 +201,3.95,0.0,0.0,13.1,787.0,02:06.5,18.0,787.0,3.9 +202,3.92,0.0,0.0,13.0,810.0,02:07.5,18.0,810.0,3.9 +203,3.92,0.0,0.0,13.0,810.0,02:07.5,18.0,810.0,3.9 +204,3.92,0.0,0.0,13.0,810.0,02:07.5,18.0,810.0,3.9 +205,3.92,0.0,0.0,13.0,810.0,02:07.5,18.0,810.0,3.9 +206,3.89,0.0,0.0,12.9,826.0,02:08.4,18.0,826.0,3.8 +207,3.89,0.0,0.0,12.9,826.0,02:08.4,18.0,826.0,3.8 +208,3.89,0.0,0.0,12.9,826.0,02:08.4,18.0,826.0,3.8 +209,3.89,0.0,0.0,12.9,826.0,02:08.4,18.0,826.0,3.8 +210,3.89,0.0,0.0,12.9,826.0,02:08.4,18.0,826.0,3.8 +211,3.89,0.0,0.0,12.9,826.0,02:08.4,18.0,826.0,3.8 +212,3.89,0.0,0.0,12.9,826.0,02:08.4,18.0,826.0,3.8 +213,3.89,0.0,0.0,12.9,826.0,02:08.4,18.0,826.0,3.8 +214,3.89,0.0,0.0,12.9,826.0,02:08.4,18.0,826.0,3.8 +215,3.89,0.0,0.0,12.9,826.0,02:08.4,18.0,826.0,3.8 +216,3.95,0.0,0.0,13.1,866.0,02:06.4,18.0,866.0,3.9 +217,3.95,0.0,0.0,13.1,866.0,02:06.4,18.0,866.0,3.9 +218,3.95,0.0,0.0,13.1,866.0,02:06.4,18.0,866.0,3.9 +219,3.95,0.0,0.0,13.1,878.0,02:06.4,18.0,878.0,3.9 +220,3.95,0.0,0.0,13.1,878.0,02:06.4,18.0,878.0,3.9 +221,3.95,0.0,0.0,13.1,878.0,02:06.4,18.0,878.0,3.9 +222,3.95,0.0,0.0,13.1,878.0,02:06.4,18.0,878.0,3.9 +223,3.95,0.0,0.0,13.1,878.0,02:06.4,18.0,878.0,3.9 +224,3.95,0.0,0.0,13.1,878.0,02:06.4,18.0,878.0,3.9 +225,3.95,0.0,0.0,13.1,878.0,02:06.4,18.0,878.0,3.9 +226,3.95,0.0,0.0,13.1,878.0,02:06.4,18.0,878.0,3.9 +227,3.95,0.0,0.0,13.1,878.0,02:06.4,18.0,878.0,3.9 +228,3.93,0.0,0.0,13.2,908.0,02:07.2,17.7,908.0,3.9 +229,3.93,0.0,0.0,13.2,908.0,02:07.2,17.7,908.0,3.9 +230,3.93,0.0,0.0,13.2,908.0,02:07.2,17.7,908.0,3.9 +231,3.93,0.0,0.0,13.2,908.0,02:07.2,17.7,908.0,3.9 +232,3.78,0.0,0.0,13.0,924.0,02:12.2,17.3,924.0,3.7 +233,3.78,0.0,0.0,13.0,924.0,02:12.2,17.3,924.0,3.7 +234,3.78,0.0,0.0,13.0,924.0,02:12.2,17.3,924.0,3.7 +235,3.78,0.0,0.0,13.0,924.0,02:12.2,17.3,924.0,3.7 +236,3.78,0.0,0.0,13.6,940.0,02:12.2,16.6,940.0,3.7 +237,3.78,0.0,0.0,13.6,940.0,02:12.2,16.6,940.0,3.7 +238,3.78,0.0,0.0,13.6,940.0,02:12.2,16.6,940.0,3.7 +239,3.78,0.0,0.0,13.6,940.0,02:12.2,16.6,940.0,3.7 +240,3.78,0.0,0.0,13.6,940.0,02:12.2,16.6,940.0,3.7 +241,3.78,0.0,0.0,13.6,940.0,02:12.2,16.6,940.0,3.7 +242,3.78,0.0,0.0,13.6,940.0,02:12.2,16.6,940.0,3.7 +243,3.88,0.0,0.0,14.3,966.0,02:09.0,16.1,966.0,3.8 +244,3.88,0.0,0.0,14.3,966.0,02:09.0,16.1,966.0,3.8 +245,3.88,0.0,0.0,14.3,966.0,02:09.0,16.1,966.0,3.8 +246,3.88,0.0,0.0,14.3,966.0,02:09.0,16.1,966.0,3.8 +247,3.81,0.0,0.0,14.0,982.0,02:11.1,16.2,982.0,3.8 +248,3.81,0.0,0.0,14.0,982.0,02:11.1,16.2,982.0,3.8 +249,3.81,0.0,0.0,14.0,982.0,02:11.1,16.2,982.0,3.8 +250,3.81,0.0,0.0,14.0,982.0,02:11.1,16.2,982.0,3.8 +251,3.81,0.0,0.0,14.0,982.0,02:11.1,16.2,982.0,3.8 +252,3.81,0.0,0.0,14.0,982.0,02:11.1,16.2,982.0,3.8 +253,3.81,0.0,0.0,14.0,982.0,02:11.1,16.2,982.0,3.8 +254,3.83,0.0,0.0,14.0,1008.0,02:10.6,16.4,1008.0,3.8 +255,3.83,0.0,0.0,14.0,1008.0,02:10.6,16.4,1008.0,3.8 +256,3.83,0.0,0.0,14.0,1008.0,02:10.6,16.4,1008.0,3.8 +257,3.83,0.0,0.0,14.0,1008.0,02:10.6,16.4,1008.0,3.8 +258,3.8,0.0,0.0,13.6,1024.0,02:11.5,16.6,1024.0,3.8 +259,3.8,0.0,0.0,13.6,1024.0,02:11.5,16.6,1024.0,3.8 +260,3.8,0.0,0.0,13.6,1024.0,02:11.5,16.6,1024.0,3.8 +261,3.8,0.0,0.0,13.6,1024.0,02:11.5,16.6,1024.0,3.8 +262,3.8,0.0,0.0,13.6,1024.0,02:11.5,16.6,1024.0,3.8 +263,3.8,0.0,0.0,13.6,1024.0,02:11.5,16.6,1024.0,3.8 +264,3.8,0.0,0.0,13.6,1024.0,02:11.5,16.6,1024.0,3.8 +265,3.8,0.0,0.0,13.9,1050.0,02:11.5,16.4,1050.0,3.8 +266,3.8,0.0,0.0,13.9,1050.0,02:11.5,16.4,1050.0,3.8 +267,3.8,0.0,0.0,13.9,1050.0,02:11.5,16.4,1050.0,3.8 +268,3.8,0.0,0.0,13.9,1050.0,02:11.5,16.4,1050.0,3.8 +269,3.78,0.0,0.0,13.8,1066.0,02:12.3,16.3,1066.0,3.7 +270,3.78,0.0,0.0,13.8,1066.0,02:12.3,16.3,1066.0,3.7 +271,3.78,0.0,0.0,13.8,1066.0,02:12.3,16.3,1066.0,3.7 +272,3.78,0.0,0.0,13.8,1066.0,02:12.3,16.3,1066.0,3.7 +273,3.78,0.0,0.0,13.8,1066.0,02:12.3,16.3,1066.0,3.7 +274,3.78,0.0,0.0,13.8,1066.0,02:12.3,16.3,1066.0,3.7 +275,3.78,0.0,0.0,13.8,1066.0,02:12.3,16.3,1066.0,3.7 +276,3.78,0.0,0.0,13.8,1066.0,02:12.3,16.3,1066.0,3.7 +277,3.78,0.0,0.0,13.8,1066.0,02:12.3,16.3,1066.0,3.7 +278,3.78,0.0,0.0,13.8,1066.0,02:12.3,16.3,1066.0,3.7 +279,3.78,0.0,0.0,13.8,1066.0,02:12.3,16.3,1066.0,3.7 +280,3.75,0.0,0.0,14.1,1106.0,02:13.2,15.9,1106.0,3.7 +281,3.75,0.0,0.0,14.1,1106.0,02:13.2,15.9,1106.0,3.7 +282,3.75,0.0,0.0,14.1,1106.0,02:13.2,15.9,1106.0,3.7 +283,3.75,0.0,0.0,14.1,1106.0,02:13.2,15.9,1106.0,3.7 +284,3.76,0.0,0.0,14.1,1122.0,02:12.8,16.0,1122.0,3.7 +285,3.76,0.0,0.0,14.1,1122.0,02:12.8,16.0,1122.0,3.7 +286,3.76,0.0,0.0,14.1,1122.0,02:12.8,16.0,1122.0,3.7 +287,3.76,0.0,0.0,14.1,1122.0,02:12.8,16.0,1122.0,3.7 +288,3.76,0.0,0.0,14.1,1122.0,02:12.8,16.0,1122.0,3.7 +289,3.76,0.0,0.0,14.1,1122.0,02:12.8,16.0,1122.0,3.7 +290,3.76,0.0,0.0,14.1,1122.0,02:12.8,16.0,1122.0,3.7 +291,3.75,0.0,0.0,14.1,1148.0,02:13.1,15.9,1148.0,3.7 +292,3.75,0.0,0.0,14.1,1148.0,02:13.1,15.9,1148.0,3.7 +293,3.75,0.0,0.0,14.1,1148.0,02:13.1,15.9,1148.0,3.7 +294,3.75,0.0,0.0,14.1,1148.0,02:13.1,15.9,1148.0,3.7 +295,3.74,0.0,0.0,13.7,1164.0,02:13.5,16.3,1164.0,3.7 +296,3.74,0.0,0.0,13.7,1164.0,02:13.5,16.3,1164.0,3.7 +297,3.74,0.0,0.0,13.7,1164.0,02:13.5,16.3,1164.0,3.7 +298,3.74,0.0,0.0,13.7,1164.0,02:13.5,16.3,1164.0,3.7 +299,3.77,0.0,0.0,13.7,1179.0,02:12.7,16.4,1179.0,3.7 +300,3.77,0.0,0.0,13.7,1179.0,02:12.7,16.4,1179.0,3.7 +301,3.77,0.0,0.0,13.7,1179.0,02:12.7,16.4,1179.0,3.7 +302,3.77,0.0,0.0,13.7,1179.0,02:12.7,16.4,1179.0,3.7 +303,3.77,0.0,0.0,13.7,1179.0,02:12.7,16.4,1179.0,3.7 +304,3.77,0.0,0.0,13.7,1179.0,02:12.7,16.4,1179.0,3.7 +305,3.77,0.0,0.0,13.7,1179.0,02:12.7,16.4,1179.0,3.7 +306,3.73,0.0,0.0,13.7,1205.0,02:14.0,16.3,1205.0,3.7 +307,3.73,0.0,0.0,13.7,1205.0,02:14.0,16.3,1205.0,3.7 +308,3.73,0.0,0.0,13.7,1205.0,02:14.0,16.3,1205.0,3.7 +309,3.73,0.0,0.0,13.7,1205.0,02:14.0,16.3,1205.0,3.7 +310,3.73,0.0,0.0,13.7,1205.0,02:14.0,16.3,1205.0,3.7 +311,3.73,0.0,0.0,13.7,1205.0,02:14.0,16.3,1205.0,3.7 +312,3.73,0.0,0.0,13.7,1205.0,02:14.0,16.3,1205.0,3.7 +313,3.73,0.0,0.0,13.7,1205.0,02:14.0,16.3,1205.0,3.7 +314,3.73,0.0,0.0,13.7,1205.0,02:14.0,16.3,1205.0,3.7 +315,3.73,0.0,0.0,13.7,1205.0,02:14.0,16.3,1205.0,3.7 +316,3.73,0.0,0.0,13.7,1205.0,02:14.0,16.3,1205.0,3.7 +317,3.75,0.0,0.0,14.1,1245.0,02:13.2,15.9,1245.0,3.7 +318,3.75,0.0,0.0,14.1,1245.0,02:13.2,15.9,1245.0,3.7 +319,3.75,0.0,0.0,14.1,1245.0,02:13.2,15.9,1245.0,3.7 +320,3.75,0.0,0.0,14.1,1245.0,02:13.2,15.9,1245.0,3.7 +321,3.72,0.0,0.0,13.9,1261.0,02:14.3,16.0,1261.0,3.7 +322,3.72,0.0,0.0,13.9,1261.0,02:14.3,16.0,1261.0,3.7 +323,3.72,0.0,0.0,13.9,1261.0,02:14.3,16.0,1261.0,3.7 +324,3.72,0.0,0.0,13.9,1261.0,02:14.3,16.0,1261.0,3.7 +325,3.72,0.0,0.0,13.9,1261.0,02:14.3,16.0,1261.0,3.7 +326,3.72,0.0,0.0,13.9,1261.0,02:14.3,16.0,1261.0,3.7 +327,3.72,0.0,0.0,13.9,1261.0,02:14.3,16.0,1261.0,3.7 +328,3.69,0.0,0.0,13.8,1287.0,02:15.6,16.0,1287.0,3.6 +329,3.69,0.0,0.0,13.8,1287.0,02:15.6,16.0,1287.0,3.6 +330,3.69,0.0,0.0,13.8,1287.0,02:15.6,16.0,1287.0,3.6 +331,3.69,0.0,0.0,13.8,1287.0,02:15.6,16.0,1287.0,3.6 +332,3.69,0.0,0.0,13.8,1302.0,02:15.6,16.0,1302.0,3.6 +333,3.69,0.0,0.0,13.8,1302.0,02:15.6,16.0,1302.0,3.6 +334,3.69,0.0,0.0,13.8,1302.0,02:15.6,16.0,1302.0,3.6 +335,3.69,0.0,0.0,13.8,1302.0,02:15.6,16.0,1302.0,3.6 +336,3.72,0.0,0.0,13.9,1317.0,02:14.2,16.0,1317.0,3.7 +337,3.72,0.0,0.0,13.9,1317.0,02:14.2,16.0,1317.0,3.7 +338,3.72,0.0,0.0,13.9,1317.0,02:14.2,16.0,1317.0,3.7 +339,3.72,0.0,0.0,13.9,1317.0,02:14.2,16.0,1317.0,3.7 +340,3.72,0.0,0.0,13.9,1317.0,02:14.2,16.0,1317.0,3.7 +341,3.72,0.0,0.0,13.9,1317.0,02:14.2,16.0,1317.0,3.7 +342,3.72,0.0,0.0,13.9,1317.0,02:14.2,16.0,1317.0,3.7 +343,3.72,0.0,0.0,13.9,1343.0,02:14.4,16.0,1343.0,3.7 +344,3.72,0.0,0.0,13.9,1343.0,02:14.4,16.0,1343.0,3.7 +345,3.72,0.0,0.0,13.9,1343.0,02:14.4,16.0,1343.0,3.7 +346,3.72,0.0,0.0,13.9,1343.0,02:14.4,16.0,1343.0,3.7 +347,3.74,0.0,0.0,14.0,1358.0,02:13.7,16.0,1358.0,3.7 +348,3.74,0.0,0.0,14.0,1358.0,02:13.7,16.0,1358.0,3.7 +349,3.74,0.0,0.0,14.0,1358.0,02:13.7,16.0,1358.0,3.7 +350,3.74,0.0,0.0,14.0,1358.0,02:13.7,16.0,1358.0,3.7 +351,3.73,0.0,0.0,14.1,1373.0,02:14.0,15.8,1373.0,3.7 +352,3.73,0.0,0.0,14.1,1373.0,02:14.0,15.8,1373.0,3.7 +353,3.73,0.0,0.0,14.1,1373.0,02:14.0,15.8,1373.0,3.7 +354,3.71,0.0,0.0,13.4,1385.0,02:14.7,16.6,1385.0,3.7 +355,3.71,0.0,0.0,13.4,1385.0,02:14.7,16.6,1385.0,3.7 +356,3.71,0.0,0.0,13.4,1385.0,02:14.7,16.6,1385.0,3.7 +357,3.71,0.0,0.0,13.4,1385.0,02:14.7,16.6,1385.0,3.7 +358,3.84,0.0,0.0,13.4,1401.0,02:10.0,17.1,1401.0,3.8 +359,3.84,0.0,0.0,13.4,1401.0,02:10.0,17.1,1401.0,3.8 +360,3.84,0.0,0.0,13.4,1401.0,02:10.0,17.1,1401.0,3.8 +361,3.84,0.0,0.0,13.4,1401.0,02:10.0,17.1,1401.0,3.8 +362,3.84,0.0,0.0,13.4,1401.0,02:10.0,17.1,1401.0,3.8 +363,3.84,0.0,0.0,13.4,1401.0,02:10.0,17.1,1401.0,3.8 +364,3.86,0.0,0.0,13.1,1423.0,02:09.3,17.6,1423.0,3.8 +365,3.86,0.0,0.0,13.1,1423.0,02:09.3,17.6,1423.0,3.8 +366,3.86,0.0,0.0,13.1,1423.0,02:09.3,17.6,1423.0,3.8 +367,3.86,0.0,0.0,13.1,1423.0,02:09.3,17.6,1423.0,3.8 +368,3.87,0.0,0.0,13.1,1440.0,02:09.1,17.6,1440.0,3.8 +369,3.87,0.0,0.0,13.1,1440.0,02:09.1,17.6,1440.0,3.8 +370,3.87,0.0,0.0,13.1,1440.0,02:09.1,17.6,1440.0,3.8 +371,3.87,0.0,0.0,13.1,1440.0,02:09.1,17.6,1440.0,3.8 +372,3.87,0.0,0.0,13.1,1440.0,02:09.1,17.6,1440.0,3.8 +373,3.87,0.0,0.0,13.1,1440.0,02:09.1,17.6,1440.0,3.8 +374,3.87,0.0,0.0,13.1,1440.0,02:09.1,17.6,1440.0,3.8 +375,3.88,0.0,0.0,12.8,1467.0,02:08.9,18.0,1467.0,3.8 +376,3.88,0.0,0.0,12.8,1467.0,02:08.9,18.0,1467.0,3.8 +377,3.88,0.0,0.0,12.8,1467.0,02:08.9,18.0,1467.0,3.8 +378,3.88,0.0,0.0,12.8,1467.0,02:08.9,18.0,1467.0,3.8 +379,3.88,0.0,0.0,12.8,1467.0,02:08.9,18.0,1467.0,3.8 +380,3.88,0.0,0.0,12.8,1467.0,02:08.9,18.0,1467.0,3.8 +381,3.85,0.0,0.0,12.7,1489.0,02:09.7,18.0,1489.0,3.8 +382,3.85,0.0,0.0,12.7,1489.0,02:09.7,18.0,1489.0,3.8 +383,3.85,0.0,0.0,12.7,1489.0,02:09.7,18.0,1489.0,3.8 +384,3.85,0.0,0.0,12.7,1489.0,02:09.7,18.0,1489.0,3.8 +385,3.89,0.0,0.0,13.2,1506.0,02:08.4,17.6,1506.0,3.8 +386,3.89,0.0,0.0,13.2,1506.0,02:08.4,17.6,1506.0,3.8 +387,3.89,0.0,0.0,13.2,1506.0,02:08.4,17.6,1506.0,3.8 +388,3.88,0.0,0.0,13.2,1517.0,02:09.0,17.6,1517.0,3.8 +389,3.88,0.0,0.0,13.2,1517.0,02:09.0,17.6,1517.0,3.8 +390,3.88,0.0,0.0,13.2,1517.0,02:09.0,17.6,1517.0,3.8 +391,3.88,0.0,0.0,13.2,1517.0,02:09.0,17.6,1517.0,3.8 +392,3.87,0.0,0.0,13.4,1533.0,02:09.3,17.3,1533.0,3.8 +393,3.87,0.0,0.0,13.4,1533.0,02:09.3,17.3,1533.0,3.8 +394,3.87,0.0,0.0,13.4,1533.0,02:09.3,17.3,1533.0,3.8 +395,3.86,0.0,0.0,13.1,1545.0,02:09.3,17.6,1545.0,3.8 +396,3.86,0.0,0.0,13.1,1545.0,02:09.3,17.6,1545.0,3.8 +397,3.86,0.0,0.0,13.1,1545.0,02:09.3,17.6,1545.0,3.8 +398,3.86,0.0,0.0,13.1,1545.0,02:09.3,17.6,1545.0,3.8 +399,3.86,0.0,0.0,13.1,1545.0,02:09.3,17.6,1545.0,3.8 +400,3.86,0.0,0.0,13.1,1545.0,02:09.3,17.6,1545.0,3.8 +401,3.86,0.0,0.0,13.1,1545.0,02:09.3,17.6,1545.0,3.8 +402,3.89,0.0,0.0,13.2,1572.0,02:08.3,17.6,1572.0,3.8 +403,3.89,0.0,0.0,13.2,1572.0,02:08.3,17.6,1572.0,3.8 +404,3.89,0.0,0.0,13.2,1572.0,02:08.3,17.6,1572.0,3.8 +405,3.89,0.0,0.0,13.2,1572.0,02:08.3,17.6,1572.0,3.8 +406,3.89,0.0,0.0,13.2,1572.0,02:08.3,17.6,1572.0,3.8 +407,3.89,0.0,0.0,13.2,1572.0,02:08.3,17.6,1572.0,3.8 +408,3.9,0.0,0.0,12.8,1595.0,02:08.1,18.1,1595.0,3.9 +409,3.9,0.0,0.0,12.8,1595.0,02:08.1,18.1,1595.0,3.9 +410,3.9,0.0,0.0,12.8,1595.0,02:08.1,18.1,1595.0,3.9 +411,3.9,0.0,0.0,12.8,1595.0,02:08.1,18.1,1595.0,3.9 +412,3.9,0.0,0.0,12.8,1595.0,02:08.1,18.1,1595.0,3.9 +413,3.9,0.0,0.0,12.8,1595.0,02:08.1,18.1,1595.0,3.9 +414,3.9,0.0,0.0,12.8,1595.0,02:08.1,18.1,1595.0,3.9 +415,3.88,0.0,0.0,13.1,1621.0,02:08.8,17.6,1621.0,3.8 +416,3.88,0.0,0.0,13.1,1621.0,02:08.8,17.6,1621.0,3.8 +417,3.88,0.0,0.0,13.1,1621.0,02:08.8,17.6,1621.0,3.8 +418,3.88,0.0,0.0,13.1,1621.0,02:08.8,17.6,1621.0,3.8 +419,3.87,0.0,0.0,13.1,1638.0,02:09.3,17.6,1638.0,3.8 +420,3.87,0.0,0.0,13.1,1638.0,02:09.3,17.6,1638.0,3.8 +421,3.87,0.0,0.0,13.1,1638.0,02:09.3,17.6,1638.0,3.8 +422,3.87,0.0,0.0,13.1,1638.0,02:09.3,17.6,1638.0,3.8 +423,3.87,0.0,0.0,13.1,1638.0,02:09.3,17.6,1638.0,3.8 +424,3.87,0.0,0.0,13.1,1638.0,02:09.3,17.6,1638.0,3.8 +425,3.88,0.0,0.0,13.3,1661.0,02:08.9,17.4,1661.0,3.8 +426,3.88,0.0,0.0,13.3,1661.0,02:08.9,17.4,1661.0,3.8 +427,3.88,0.0,0.0,13.3,1661.0,02:08.9,17.4,1661.0,3.8 +428,3.88,0.0,0.0,13.3,1661.0,02:08.9,17.4,1661.0,3.8 +429,3.86,0.0,0.0,13.4,1677.0,02:09.5,17.2,1677.0,3.8 +430,3.86,0.0,0.0,13.4,1677.0,02:09.5,17.2,1677.0,3.8 +431,3.86,0.0,0.0,13.4,1677.0,02:09.5,17.2,1677.0,3.8 +432,3.86,0.0,0.0,13.4,1677.0,02:09.5,17.2,1677.0,3.8 +433,3.86,0.0,0.0,13.4,1677.0,02:09.5,17.2,1677.0,3.8 +434,3.86,0.0,0.0,13.4,1677.0,02:09.5,17.2,1677.0,3.8 +435,3.86,0.0,0.0,13.4,1677.0,02:09.5,17.2,1677.0,3.8 +436,3.85,0.0,0.0,13.4,1704.0,02:09.7,17.1,1704.0,3.8 +437,3.85,0.0,0.0,13.4,1704.0,02:09.7,17.1,1704.0,3.8 +438,3.85,0.0,0.0,13.4,1704.0,02:09.7,17.1,1704.0,3.8 +439,3.85,0.0,0.0,13.4,1704.0,02:09.7,17.1,1704.0,3.8 +440,3.85,0.0,0.0,13.4,1704.0,02:09.7,17.1,1704.0,3.8 +441,3.85,0.0,0.0,13.4,1704.0,02:09.7,17.1,1704.0,3.8 +442,3.88,0.0,0.0,13.0,1727.0,02:09.0,17.8,1727.0,3.8 +443,3.88,0.0,0.0,13.0,1727.0,02:09.0,17.8,1727.0,3.8 +444,3.88,0.0,0.0,13.0,1727.0,02:09.0,17.8,1727.0,3.8 +445,3.88,0.0,0.0,13.0,1727.0,02:09.0,17.8,1727.0,3.8 +446,3.88,0.0,0.0,13.0,1727.0,02:09.0,17.8,1727.0,3.8 +447,3.88,0.0,0.0,13.0,1727.0,02:09.0,17.8,1727.0,3.8 +448,3.88,0.0,0.0,13.0,1727.0,02:09.0,17.8,1727.0,3.8 +449,3.88,0.0,0.0,13.1,1754.0,02:08.9,17.7,1754.0,3.8 +450,3.88,0.0,0.0,13.1,1754.0,02:08.9,17.7,1754.0,3.8 +451,3.88,0.0,0.0,13.1,1754.0,02:08.9,17.7,1754.0,3.8 +452,3.88,0.0,0.0,13.1,1754.0,02:08.9,17.7,1754.0,3.8 +453,3.87,0.0,0.0,13.2,1770.0,02:09.2,17.5,1770.0,3.8 +454,3.87,0.0,0.0,13.2,1770.0,02:09.2,17.5,1770.0,3.8 +455,3.87,0.0,0.0,13.2,1770.0,02:09.2,17.5,1770.0,3.8 +456,3.87,0.0,0.0,13.2,1770.0,02:09.2,17.5,1770.0,3.8 +457,3.87,0.0,0.0,13.2,1770.0,02:09.2,17.5,1770.0,3.8 +458,3.87,0.0,0.0,13.2,1770.0,02:09.2,17.5,1770.0,3.8 +459,3.87,0.0,0.0,13.2,1770.0,02:09.2,17.5,1770.0,3.8 +460,3.88,0.0,0.0,13.1,1798.0,02:08.9,17.6,1798.0,3.8 +461,3.88,0.0,0.0,13.1,1798.0,02:08.9,17.6,1798.0,3.8 +462,3.88,0.0,0.0,13.1,1798.0,02:08.9,17.6,1798.0,3.8 +463,3.88,0.0,0.0,12.8,1809.0,02:08.9,18.0,1809.0,3.8 +464,3.88,0.0,0.0,12.8,1809.0,02:08.9,18.0,1809.0,3.8 +465,3.88,0.0,0.0,12.8,1809.0,02:08.9,18.0,1809.0,3.8 +466,3.88,0.0,0.0,12.8,1809.0,02:08.9,18.0,1809.0,3.8 +467,3.88,0.0,0.0,12.8,1809.0,02:08.9,18.0,1809.0,3.8 +468,3.88,0.0,0.0,12.8,1809.0,02:08.9,18.0,1809.0,3.8 +469,3.94,0.0,0.0,13.0,1833.0,02:06.9,18.1,1833.0,3.9 +470,3.94,0.0,0.0,13.0,1833.0,02:06.9,18.1,1833.0,3.9 +471,3.94,0.0,0.0,13.0,1833.0,02:06.9,18.1,1833.0,3.9 +472,3.94,0.0,0.0,13.0,1833.0,02:06.9,18.1,1833.0,3.9 +473,3.94,0.0,0.0,13.0,1833.0,02:06.9,18.1,1833.0,3.9 +474,3.94,0.0,0.0,13.0,1833.0,02:06.9,18.1,1833.0,3.9 +475,3.94,0.0,0.0,13.0,1833.0,02:06.9,18.1,1833.0,3.9 +476,3.92,0.0,0.0,13.4,1860.0,02:07.7,17.4,1860.0,3.9 +477,3.92,0.0,0.0,13.4,1860.0,02:07.7,17.4,1860.0,3.9 +478,3.92,0.0,0.0,13.4,1860.0,02:07.7,17.4,1860.0,3.9 +479,3.92,0.0,0.0,13.4,1860.0,02:07.7,17.4,1860.0,3.9 +480,3.84,0.0,0.0,13.9,1876.0,02:10.1,16.5,1876.0,3.8 +481,3.84,0.0,0.0,13.9,1876.0,02:10.1,16.5,1876.0,3.8 +482,3.84,0.0,0.0,13.9,1876.0,02:10.1,16.5,1876.0,3.8 +483,3.84,0.0,0.0,13.9,1876.0,02:10.1,16.5,1876.0,3.8 +484,3.84,0.0,0.0,13.9,1876.0,02:10.1,16.5,1876.0,3.8 +485,3.84,0.0,0.0,13.9,1876.0,02:10.1,16.5,1876.0,3.8 +486,3.84,0.0,0.0,13.9,1876.0,02:10.1,16.5,1876.0,3.8 +487,3.84,0.0,0.0,13.9,1876.0,02:10.1,16.5,1876.0,3.8 +488,3.77,0.0,0.0,14.2,1906.0,02:12.7,15.8,1906.0,3.7 +489,3.77,0.0,0.0,14.2,1906.0,02:12.7,15.8,1906.0,3.7 +490,3.77,0.0,0.0,14.2,1906.0,02:12.7,15.8,1906.0,3.7 +491,3.77,0.0,0.0,14.1,1917.0,02:12.7,16.0,1917.0,3.7 +492,3.77,0.0,0.0,14.1,1917.0,02:12.7,16.0,1917.0,3.7 +493,3.77,0.0,0.0,14.1,1917.0,02:12.7,16.0,1917.0,3.7 +494,3.77,0.0,0.0,14.1,1917.0,02:12.7,16.0,1917.0,3.7 +495,3.73,0.0,0.0,14.0,1932.0,02:13.9,16.0,1932.0,3.7 +496,3.73,0.0,0.0,14.0,1932.0,02:13.9,16.0,1932.0,3.7 +497,3.73,0.0,0.0,14.0,1932.0,02:13.9,16.0,1932.0,3.7 +498,3.73,0.0,0.0,14.0,1932.0,02:13.9,16.0,1932.0,3.7 +499,3.73,0.0,0.0,14.0,1932.0,02:13.9,16.0,1932.0,3.7 +500,3.73,0.0,0.0,14.0,1932.0,02:13.9,16.0,1932.0,3.7 +501,3.73,0.0,0.0,14.0,1932.0,02:13.9,16.0,1932.0,3.7 +502,3.73,0.0,0.0,14.0,1932.0,02:13.9,16.0,1932.0,3.7 +503,3.72,0.0,0.0,14.0,1962.0,02:14.5,15.9,1962.0,3.7 +504,3.72,0.0,0.0,14.0,1962.0,02:14.5,15.9,1962.0,3.7 +505,3.72,0.0,0.0,14.0,1962.0,02:14.5,15.9,1962.0,3.7 +506,3.72,0.0,0.0,13.7,1973.0,02:14.5,16.2,1973.0,3.7 +507,3.72,0.0,0.0,13.7,1973.0,02:14.5,16.2,1973.0,3.7 +508,3.72,0.0,0.0,13.7,1973.0,02:14.5,16.2,1973.0,3.7 +509,3.72,0.0,0.0,13.7,1973.0,02:14.5,16.2,1973.0,3.7 +510,3.72,0.0,0.0,13.7,1973.0,02:14.5,16.2,1973.0,3.7 +511,3.72,0.0,0.0,13.7,1973.0,02:14.5,16.2,1973.0,3.7 +512,3.72,0.0,0.0,13.7,1973.0,02:14.5,16.2,1973.0,3.7 +513,3.72,0.0,0.0,13.2,2000.0,02:14.4,16.8,2000.0,3.7 +514,3.72,0.0,0.0,13.2,2000.0,02:14.4,16.8,2000.0,3.7 +515,3.72,0.0,0.0,13.2,2000.0,02:14.4,16.8,2000.0,3.7 +516,3.72,0.0,0.0,13.2,2000.0,02:14.4,16.8,2000.0,3.7 +517,3.72,0.0,0.0,13.2,2015.0,02:14.4,16.8,2015.0,3.7 +518,3.72,0.0,0.0,13.2,2015.0,02:14.4,16.8,2015.0,3.7 +519,3.72,0.0,0.0,13.2,2015.0,02:14.4,16.8,2015.0,3.7 +520,3.72,0.0,0.0,13.2,2015.0,02:14.4,16.8,2015.0,3.7 +521,3.72,0.0,0.0,13.2,2015.0,02:14.4,16.8,2015.0,3.7 +522,3.72,0.0,0.0,13.2,2015.0,02:14.4,16.8,2015.0,3.7 +523,3.72,0.0,0.0,13.2,2015.0,02:14.4,16.8,2015.0,3.7 +524,3.72,0.0,0.0,13.2,2015.0,02:14.4,16.8,2015.0,3.7 +525,3.72,0.0,0.0,13.2,2015.0,02:14.4,16.8,2015.0,3.7 +526,3.72,0.0,0.0,13.2,2015.0,02:14.4,16.8,2015.0,3.7 +527,3.72,0.0,0.0,13.2,2015.0,02:14.4,16.8,2015.0,3.7 +528,3.72,0.0,0.0,13.7,2055.0,02:14.4,16.2,2055.0,3.7 +529,3.72,0.0,0.0,13.7,2055.0,02:14.4,16.2,2055.0,3.7 +530,3.72,0.0,0.0,13.7,2055.0,02:14.4,16.2,2055.0,3.7 +531,3.72,0.0,0.0,13.7,2055.0,02:14.4,16.2,2055.0,3.7 +532,3.73,0.0,0.0,14.0,2071.0,02:13.9,16.0,2071.0,3.7 +533,3.73,0.0,0.0,14.0,2071.0,02:13.9,16.0,2071.0,3.7 +534,3.73,0.0,0.0,14.0,2071.0,02:13.9,16.0,2071.0,3.7 +535,3.73,0.0,0.0,14.0,2071.0,02:13.9,16.0,2071.0,3.7 +536,3.73,0.0,0.0,14.0,2071.0,02:13.9,16.0,2071.0,3.7 +537,3.73,0.0,0.0,14.0,2071.0,02:13.9,16.0,2071.0,3.7 +538,3.73,0.0,0.0,14.0,2071.0,02:13.9,16.0,2071.0,3.7 +539,3.73,0.0,0.0,14.0,2071.0,02:13.9,16.0,2071.0,3.7 +540,3.73,0.0,0.0,14.0,2071.0,02:13.9,16.0,2071.0,3.7 +541,3.73,0.0,0.0,14.0,2071.0,02:13.9,16.0,2071.0,3.7 +542,3.73,0.0,0.0,14.0,2071.0,02:13.9,16.0,2071.0,3.7 +543,3.73,0.0,0.0,14.0,2071.0,02:13.9,16.0,2071.0,3.7 +544,3.73,0.0,0.0,14.0,2071.0,02:13.9,16.0,2071.0,3.7 +545,3.73,0.0,0.0,14.0,2071.0,02:13.9,16.0,2071.0,3.7 +546,3.73,0.0,0.0,14.0,2071.0,02:13.9,16.0,2071.0,3.7 +547,3.74,0.0,0.0,14.4,2127.0,02:13.6,15.5,2127.0,3.7 +548,3.74,0.0,0.0,14.4,2127.0,02:13.6,15.5,2127.0,3.7 +549,3.74,0.0,0.0,14.4,2127.0,02:13.6,15.5,2127.0,3.7 +550,3.74,0.0,0.0,14.4,2127.0,02:13.6,15.5,2127.0,3.7 +551,3.72,0.0,0.0,14.1,2142.0,02:14.5,15.7,2142.0,3.7 +552,3.72,0.0,0.0,14.1,2142.0,02:14.5,15.7,2142.0,3.7 +553,3.72,0.0,0.0,14.1,2142.0,02:14.5,15.7,2142.0,3.7 +554,3.72,0.0,0.0,14.1,2142.0,02:14.5,15.7,2142.0,3.7 +555,3.72,0.0,0.0,14.1,2142.0,02:14.5,15.7,2142.0,3.7 +556,3.72,0.0,0.0,14.1,2142.0,02:14.5,15.7,2142.0,3.7 +557,3.72,0.0,0.0,14.1,2142.0,02:14.5,15.7,2142.0,3.7 +558,3.74,0.0,0.0,13.6,2168.0,02:13.5,16.4,2168.0,3.7 +559,3.74,0.0,0.0,13.6,2168.0,02:13.5,16.4,2168.0,3.7 +560,3.74,0.0,0.0,13.6,2168.0,02:13.5,16.4,2168.0,3.7 +561,3.74,0.0,0.0,13.6,2168.0,02:13.5,16.4,2168.0,3.7 +562,3.74,0.0,0.0,13.2,2183.0,02:13.5,16.9,2183.0,3.7 +563,3.74,0.0,0.0,13.2,2183.0,02:13.5,16.9,2183.0,3.7 +564,3.74,0.0,0.0,13.2,2183.0,02:13.5,16.9,2183.0,3.7 +565,3.74,0.0,0.0,13.2,2183.0,02:13.5,16.9,2183.0,3.7 +566,3.74,0.0,0.0,13.2,2183.0,02:13.5,16.9,2183.0,3.7 +567,3.74,0.0,0.0,13.2,2183.0,02:13.5,16.9,2183.0,3.7 +568,3.74,0.0,0.0,13.2,2183.0,02:13.5,16.9,2183.0,3.7 +569,3.74,0.0,0.0,13.2,2183.0,02:13.5,16.9,2183.0,3.7 +570,3.7,0.0,0.0,13.7,2214.0,02:15.0,16.1,2214.0,3.7 +571,3.7,0.0,0.0,13.7,2214.0,02:15.0,16.1,2214.0,3.7 +572,3.7,0.0,0.0,13.7,2214.0,02:15.0,16.1,2214.0,3.7 +573,3.7,0.0,0.0,13.6,2225.0,02:15.0,16.2,2225.0,3.7 +574,3.7,0.0,0.0,13.6,2225.0,02:15.0,16.2,2225.0,3.7 +575,3.7,0.0,0.0,13.6,2225.0,02:15.0,16.2,2225.0,3.7 +576,3.7,0.0,0.0,13.6,2225.0,02:15.0,16.2,2225.0,3.7 +577,3.69,0.0,0.0,13.5,2240.0,02:15.6,16.3,2240.0,3.6 +578,3.69,0.0,0.0,13.5,2240.0,02:15.6,16.3,2240.0,3.6 +579,3.69,0.0,0.0,13.5,2240.0,02:15.6,16.3,2240.0,3.6 +580,3.69,0.0,0.0,13.5,2240.0,02:15.6,16.3,2240.0,3.6 +581,3.69,0.0,0.0,13.5,2240.0,02:15.6,16.3,2240.0,3.6 +582,3.69,0.0,0.0,13.5,2240.0,02:15.6,16.3,2240.0,3.6 +583,3.69,0.0,0.0,13.5,2240.0,02:15.6,16.3,2240.0,3.6 +584,3.69,0.0,0.0,13.5,2240.0,02:15.6,16.3,2240.0,3.6 +585,3.69,0.0,0.0,13.5,2240.0,02:15.6,16.3,2240.0,3.6 +586,3.69,0.0,0.0,13.5,2240.0,02:15.6,16.3,2240.0,3.6 +587,3.69,0.0,0.0,13.5,2240.0,02:15.6,16.3,2240.0,3.6 +588,3.69,0.0,0.0,13.1,2280.0,02:15.4,16.8,2280.0,3.6 +589,3.69,0.0,0.0,13.1,2280.0,02:15.4,16.8,2280.0,3.6 +590,3.69,0.0,0.0,13.1,2280.0,02:15.4,16.8,2280.0,3.6 +591,3.69,0.0,0.0,13.1,2280.0,02:15.4,16.8,2280.0,3.6 +592,3.69,0.0,0.0,13.1,2280.0,02:15.4,16.8,2280.0,3.6 +593,3.69,0.0,0.0,13.1,2280.0,02:15.4,16.8,2280.0,3.6 +594,3.69,0.0,0.0,13.1,2280.0,02:15.4,16.8,2280.0,3.6 +595,3.83,0.0,0.0,13.2,2307.0,02:10.4,17.4,2307.0,3.8 +596,3.83,0.0,0.0,13.2,2307.0,02:10.4,17.4,2307.0,3.8 +597,3.83,0.0,0.0,13.2,2307.0,02:10.4,17.4,2307.0,3.8 +598,3.83,0.0,0.0,13.2,2307.0,02:10.4,17.4,2307.0,3.8 +599,3.83,0.0,0.0,13.2,2307.0,02:10.4,17.4,2307.0,3.8 +600,3.83,0.0,0.0,13.2,2307.0,02:10.4,17.4,2307.0,3.8 +601,3.83,0.0,0.0,13.2,2307.0,02:10.4,17.4,2307.0,3.8 +602,3.83,0.0,0.0,13.2,2307.0,02:10.4,17.4,2307.0,3.8 +603,3.83,0.0,0.0,13.2,2307.0,02:10.4,17.4,2307.0,3.8 +604,3.83,0.0,0.0,13.2,2307.0,02:10.4,17.4,2307.0,3.8 +605,3.83,0.0,0.0,13.2,2307.0,02:10.4,17.4,2307.0,3.8 +606,3.89,0.0,0.0,12.8,2350.0,02:08.6,18.1,2350.0,3.8 +607,3.89,0.0,0.0,12.8,2350.0,02:08.6,18.1,2350.0,3.8 +608,3.89,0.0,0.0,12.8,2350.0,02:08.6,18.1,2350.0,3.8 +609,3.89,0.0,0.0,12.8,2350.0,02:08.6,18.1,2350.0,3.8 +610,3.89,0.0,0.0,12.8,2350.0,02:08.6,18.1,2350.0,3.8 +611,3.89,0.0,0.0,12.8,2350.0,02:08.6,18.1,2350.0,3.8 +612,3.9,0.0,0.0,13.0,2372.0,02:08.2,18.0,2372.0,3.9 +613,3.9,0.0,0.0,13.0,2372.0,02:08.2,18.0,2372.0,3.9 +614,3.9,0.0,0.0,13.0,2372.0,02:08.2,18.0,2372.0,3.9 +615,3.9,0.0,0.0,13.0,2372.0,02:08.2,18.0,2372.0,3.9 +616,3.89,0.0,0.0,12.9,2389.0,02:08.6,18.0,2389.0,3.8 +617,3.89,0.0,0.0,12.9,2389.0,02:08.6,18.0,2389.0,3.8 +618,3.89,0.0,0.0,12.9,2389.0,02:08.6,18.0,2389.0,3.8 +619,3.89,0.0,0.0,12.9,2389.0,02:08.6,18.0,2389.0,3.8 +620,3.89,0.0,0.0,12.9,2389.0,02:08.6,18.0,2389.0,3.8 +621,3.89,0.0,0.0,12.9,2389.0,02:08.6,18.0,2389.0,3.8 +622,3.89,0.0,0.0,12.9,2389.0,02:08.6,18.0,2389.0,3.8 +623,3.89,0.0,0.0,12.9,2389.0,02:08.6,18.0,2389.0,3.8 +624,3.89,0.0,0.0,12.9,2389.0,02:08.6,18.0,2389.0,3.8 +625,3.89,0.0,0.0,12.9,2389.0,02:08.6,18.0,2389.0,3.8 +626,3.91,0.0,0.0,12.9,2428.0,02:07.8,18.0,2428.0,3.9 +627,3.91,0.0,0.0,12.9,2428.0,02:07.8,18.0,2428.0,3.9 +628,3.91,0.0,0.0,12.9,2428.0,02:07.8,18.0,2428.0,3.9 +629,3.91,0.0,0.0,12.9,2428.0,02:07.8,18.0,2428.0,3.9 +630,3.91,0.0,0.0,12.9,2428.0,02:07.8,18.0,2428.0,3.9 +631,3.91,0.0,0.0,12.9,2428.0,02:07.8,18.0,2428.0,3.9 +632,3.91,0.0,0.0,13.2,2451.0,02:07.9,17.6,2451.0,3.9 +633,3.91,0.0,0.0,13.2,2451.0,02:07.9,17.6,2451.0,3.9 +634,3.91,0.0,0.0,13.2,2451.0,02:07.9,17.6,2451.0,3.9 +635,3.91,0.0,0.0,13.2,2451.0,02:07.9,17.6,2451.0,3.9 +636,3.88,0.0,0.0,13.2,2467.0,02:08.9,17.6,2467.0,3.8 +637,3.88,0.0,0.0,13.2,2467.0,02:08.9,17.6,2467.0,3.8 +638,3.88,0.0,0.0,13.2,2467.0,02:08.9,17.6,2467.0,3.8 +639,3.88,0.0,0.0,13.2,2467.0,02:08.9,17.6,2467.0,3.8 +640,3.88,0.0,0.0,13.2,2467.0,02:08.9,17.6,2467.0,3.8 +641,3.88,0.0,0.0,13.2,2467.0,02:08.9,17.6,2467.0,3.8 +642,3.88,0.0,0.0,13.2,2467.0,02:08.9,17.6,2467.0,3.8 +643,3.89,0.0,0.0,13.4,2494.0,02:08.5,17.3,2494.0,3.8 +644,3.89,0.0,0.0,13.4,2494.0,02:08.5,17.3,2494.0,3.8 +645,3.89,0.0,0.0,13.4,2494.0,02:08.5,17.3,2494.0,3.8 +646,3.89,0.0,0.0,13.4,2494.0,02:08.5,17.3,2494.0,3.8 +647,3.89,0.0,0.0,13.4,2494.0,02:08.5,17.3,2494.0,3.8 +648,3.89,0.0,0.0,13.4,2494.0,02:08.5,17.3,2494.0,3.8 +649,3.9,0.0,0.0,13.3,2517.0,02:08.0,17.6,2517.0,3.9 +650,3.9,0.0,0.0,13.3,2517.0,02:08.0,17.6,2517.0,3.9 +651,3.9,0.0,0.0,13.3,2517.0,02:08.0,17.6,2517.0,3.9 +652,3.9,0.0,0.0,13.3,2517.0,02:08.0,17.6,2517.0,3.9 +653,3.91,0.0,0.0,13.2,2534.0,02:07.9,17.7,2534.0,3.9 +654,3.91,0.0,0.0,13.2,2534.0,02:07.9,17.7,2534.0,3.9 +655,3.91,0.0,0.0,13.2,2534.0,02:07.9,17.7,2534.0,3.9 +656,3.91,0.0,0.0,13.2,2534.0,02:07.9,17.7,2534.0,3.9 +657,3.91,0.0,0.0,13.2,2534.0,02:07.9,17.7,2534.0,3.9 +658,3.91,0.0,0.0,13.2,2534.0,02:07.9,17.7,2534.0,3.9 +659,3.91,0.0,0.0,13.2,2534.0,02:07.9,17.7,2534.0,3.9 +660,3.87,0.0,0.0,13.0,2561.0,02:09.0,17.8,2561.0,3.8 +661,3.87,0.0,0.0,13.0,2561.0,02:09.0,17.8,2561.0,3.8 +662,3.87,0.0,0.0,13.0,2561.0,02:09.0,17.8,2561.0,3.8 +663,3.87,0.0,0.0,13.0,2561.0,02:09.0,17.8,2561.0,3.8 +664,3.87,0.0,0.0,13.0,2561.0,02:09.0,17.8,2561.0,3.8 +665,3.87,0.0,0.0,13.0,2561.0,02:09.0,17.8,2561.0,3.8 +666,3.85,0.0,0.0,13.4,2584.0,02:09.9,17.1,2584.0,3.8 +667,3.85,0.0,0.0,13.4,2584.0,02:09.9,17.1,2584.0,3.8 +668,3.85,0.0,0.0,13.4,2584.0,02:09.9,17.1,2584.0,3.8 +669,3.85,0.0,0.0,13.4,2584.0,02:09.9,17.1,2584.0,3.8 +670,3.85,0.0,0.0,13.4,2600.0,02:09.9,17.1,2600.0,3.8 +671,3.85,0.0,0.0,13.4,2600.0,02:09.9,17.1,2600.0,3.8 +672,3.85,0.0,0.0,13.4,2600.0,02:09.9,17.1,2600.0,3.8 +673,3.85,0.0,0.0,13.0,2611.0,02:09.7,17.7,2611.0,3.8 +674,3.85,0.0,0.0,13.0,2611.0,02:09.7,17.7,2611.0,3.8 +675,3.85,0.0,0.0,13.0,2611.0,02:09.7,17.7,2611.0,3.8 +676,3.85,0.0,0.0,13.0,2611.0,02:09.7,17.7,2611.0,3.8 +677,3.85,0.0,0.0,13.0,2611.0,02:09.7,17.7,2611.0,3.8 +678,3.85,0.0,0.0,13.0,2611.0,02:09.7,17.7,2611.0,3.8 +679,3.85,0.0,0.0,13.0,2611.0,02:09.7,17.7,2611.0,3.8 +680,3.88,0.0,0.0,12.9,2639.0,02:09.0,18.0,2639.0,3.8 +681,3.88,0.0,0.0,12.9,2639.0,02:09.0,18.0,2639.0,3.8 +682,3.88,0.0,0.0,12.9,2639.0,02:09.0,18.0,2639.0,3.8 +683,3.88,0.0,0.0,12.9,2639.0,02:09.0,18.0,2639.0,3.8 +684,3.88,0.0,0.0,12.9,2639.0,02:09.0,18.0,2639.0,3.8 +685,3.88,0.0,0.0,12.9,2639.0,02:09.0,18.0,2639.0,3.8 +686,3.87,0.0,0.0,12.6,2661.0,02:09.2,18.3,2661.0,3.8 +687,3.87,0.0,0.0,12.6,2661.0,02:09.2,18.3,2661.0,3.8 +688,3.87,0.0,0.0,12.6,2661.0,02:09.2,18.3,2661.0,3.8 +689,3.87,0.0,0.0,12.6,2661.0,02:09.2,18.3,2661.0,3.8 +690,3.9,0.0,0.0,12.6,2677.0,02:08.1,18.4,2677.0,3.9 +691,3.9,0.0,0.0,12.6,2677.0,02:08.1,18.4,2677.0,3.9 +692,3.9,0.0,0.0,12.6,2677.0,02:08.1,18.4,2677.0,3.9 +693,3.88,0.0,0.0,12.6,2689.0,02:08.9,18.3,2689.0,3.8 +694,3.88,0.0,0.0,12.6,2689.0,02:08.9,18.3,2689.0,3.8 +695,3.88,0.0,0.0,12.6,2689.0,02:08.9,18.3,2689.0,3.8 +696,3.88,0.0,0.0,12.6,2689.0,02:08.9,18.3,2689.0,3.8 +697,3.88,0.0,0.0,12.6,2689.0,02:08.9,18.3,2689.0,3.8 +698,3.88,0.0,0.0,12.6,2689.0,02:08.9,18.3,2689.0,3.8 +699,3.88,0.0,0.0,12.6,2689.0,02:08.9,18.3,2689.0,3.8 +700,3.9,0.0,0.0,13.0,2717.0,02:08.2,17.9,2717.0,3.9 +701,3.9,0.0,0.0,13.0,2717.0,02:08.2,17.9,2717.0,3.9 +702,3.9,0.0,0.0,13.0,2717.0,02:08.2,17.9,2717.0,3.9 +703,3.9,0.0,0.0,12.8,2728.0,02:08.2,18.1,2728.0,3.9 +704,3.9,0.0,0.0,12.8,2728.0,02:08.2,18.1,2728.0,3.9 +705,3.9,0.0,0.0,12.8,2728.0,02:08.2,18.1,2728.0,3.9 +706,3.9,0.0,0.0,12.8,2728.0,02:08.2,18.1,2728.0,3.9 +707,3.9,0.0,0.0,12.8,2728.0,02:08.2,18.1,2728.0,3.9 +708,3.9,0.0,0.0,12.8,2728.0,02:08.2,18.1,2728.0,3.9 +709,3.91,0.0,0.0,13.4,2751.0,02:07.8,17.4,2751.0,3.9 +710,3.91,0.0,0.0,13.4,2751.0,02:07.8,17.4,2751.0,3.9 +711,3.91,0.0,0.0,13.4,2751.0,02:07.8,17.4,2751.0,3.9 +712,3.91,0.0,0.0,13.4,2751.0,02:07.8,17.4,2751.0,3.9 +713,3.91,0.0,0.0,13.4,2751.0,02:07.8,17.4,2751.0,3.9 +714,3.91,0.0,0.0,13.4,2751.0,02:07.8,17.4,2751.0,3.9 +715,3.91,0.0,0.0,13.4,2751.0,02:07.8,17.4,2751.0,3.9 +716,3.91,0.0,0.0,13.4,2751.0,02:07.8,17.4,2751.0,3.9 +717,3.91,0.0,0.0,13.4,2751.0,02:07.8,17.4,2751.0,3.9 +718,3.91,0.0,0.0,13.4,2751.0,02:07.8,17.4,2751.0,3.9 +719,3.91,0.0,0.0,13.4,2751.0,02:07.8,17.4,2751.0,3.9 +720,3.8,0.0,0.0,13.8,2793.0,02:11.4,16.5,2793.0,3.8 +721,3.8,0.0,0.0,13.8,2793.0,02:11.4,16.5,2793.0,3.8 +722,3.8,0.0,0.0,13.8,2793.0,02:11.4,16.5,2793.0,3.8 +723,3.8,0.0,0.0,13.8,2793.0,02:11.4,16.5,2793.0,3.8 +724,3.8,0.0,0.0,13.8,2793.0,02:11.4,16.5,2793.0,3.8 +725,3.77,0.0,0.0,14.3,2809.0,02:12.5,15.8,2809.0,3.7 +726,3.77,0.0,0.0,14.3,2809.0,02:12.5,15.8,2809.0,3.7 +727,3.77,0.0,0.0,14.3,2809.0,02:12.5,15.8,2809.0,3.7 +728,3.77,0.0,0.0,14.3,2809.0,02:12.5,15.8,2809.0,3.7 +729,3.77,0.0,0.0,14.3,2809.0,02:12.5,15.8,2809.0,3.7 +730,3.77,0.0,0.0,14.3,2809.0,02:12.5,15.8,2809.0,3.7 +731,3.77,0.0,0.0,14.3,2809.0,02:12.5,15.8,2809.0,3.7 +732,3.76,0.0,0.0,14.0,2835.0,02:13.1,16.0,2835.0,3.7 +733,3.76,0.0,0.0,14.0,2835.0,02:13.1,16.0,2835.0,3.7 +734,3.76,0.0,0.0,14.0,2835.0,02:13.1,16.0,2835.0,3.7 +735,3.76,0.0,0.0,14.0,2835.0,02:13.1,16.0,2835.0,3.7 +736,3.76,0.0,0.0,14.0,2851.0,02:13.1,16.0,2851.0,3.7 +737,3.76,0.0,0.0,14.0,2851.0,02:13.1,16.0,2851.0,3.7 +738,3.76,0.0,0.0,14.0,2851.0,02:13.1,16.0,2851.0,3.7 +739,3.76,0.0,0.0,14.0,2851.0,02:13.1,16.0,2851.0,3.7 +740,3.76,0.0,0.0,14.0,2851.0,02:13.1,16.0,2851.0,3.7 +741,3.76,0.0,0.0,14.0,2851.0,02:13.1,16.0,2851.0,3.7 +742,3.76,0.0,0.0,14.0,2851.0,02:13.1,16.0,2851.0,3.7 +743,3.76,0.0,0.0,14.0,2851.0,02:13.1,16.0,2851.0,3.7 +744,3.74,0.0,0.0,14.0,2881.0,02:13.5,16.0,2881.0,3.7 +745,3.74,0.0,0.0,14.0,2881.0,02:13.5,16.0,2881.0,3.7 +746,3.74,0.0,0.0,14.0,2881.0,02:13.5,16.0,2881.0,3.7 +747,3.74,0.0,0.0,14.0,2892.0,02:13.5,16.0,2892.0,3.7 +748,3.74,0.0,0.0,14.0,2892.0,02:13.5,16.0,2892.0,3.7 +749,3.74,0.0,0.0,14.0,2892.0,02:13.5,16.0,2892.0,3.7 +750,3.74,0.0,0.0,14.0,2892.0,02:13.5,16.0,2892.0,3.7 +751,3.73,0.0,0.0,14.0,2907.0,02:13.9,16.0,2907.0,3.7 +752,3.73,0.0,0.0,14.0,2907.0,02:13.9,16.0,2907.0,3.7 +753,3.73,0.0,0.0,14.0,2907.0,02:13.9,16.0,2907.0,3.7 +754,3.73,0.0,0.0,14.0,2907.0,02:13.9,16.0,2907.0,3.7 +755,3.73,0.0,0.0,14.0,2907.0,02:13.9,16.0,2907.0,3.7 +756,3.73,0.0,0.0,14.0,2907.0,02:13.9,16.0,2907.0,3.7 +757,3.73,0.0,0.0,14.0,2907.0,02:13.9,16.0,2907.0,3.7 +758,3.73,0.0,0.0,14.0,2907.0,02:13.9,16.0,2907.0,3.7 +759,3.73,0.0,0.0,14.0,2907.0,02:13.9,16.0,2907.0,3.7 +760,3.73,0.0,0.0,14.0,2907.0,02:13.9,16.0,2907.0,3.7 +761,3.74,0.0,0.0,14.0,2947.0,02:13.8,16.0,2947.0,3.7 +762,3.74,0.0,0.0,14.0,2947.0,02:13.8,16.0,2947.0,3.7 +763,3.74,0.0,0.0,14.0,2947.0,02:13.8,16.0,2947.0,3.7 +764,3.74,0.0,0.0,14.0,2947.0,02:13.8,16.0,2947.0,3.7 +765,3.74,0.0,0.0,14.0,2947.0,02:13.8,16.0,2947.0,3.7 +766,3.72,0.0,0.0,13.9,2963.0,02:14.2,16.0,2963.0,3.7 +767,3.72,0.0,0.0,13.9,2963.0,02:14.2,16.0,2963.0,3.7 +768,3.72,0.0,0.0,13.9,2963.0,02:14.2,16.0,2963.0,3.7 +769,3.72,0.0,0.0,13.9,2963.0,02:14.2,16.0,2963.0,3.7 +770,3.72,0.0,0.0,13.9,2963.0,02:14.2,16.0,2963.0,3.7 +771,3.72,0.0,0.0,13.9,2963.0,02:14.2,16.0,2963.0,3.7 +772,3.72,0.0,0.0,13.9,2963.0,02:14.2,16.0,2963.0,3.7 +773,3.72,0.0,0.0,13.9,2963.0,02:14.2,16.0,2963.0,3.7 +774,3.72,0.0,0.0,13.9,2963.0,02:14.2,16.0,2963.0,3.7 +775,3.72,0.0,0.0,13.9,2963.0,02:14.2,16.0,2963.0,3.7 +776,3.74,0.0,0.0,14.0,3003.0,02:13.6,16.0,3003.0,3.7 +777,3.74,0.0,0.0,14.0,3003.0,02:13.6,16.0,3003.0,3.7 +778,3.74,0.0,0.0,14.0,3003.0,02:13.6,16.0,3003.0,3.7 +779,3.74,0.0,0.0,14.0,3003.0,02:13.6,16.0,3003.0,3.7 +780,3.74,0.0,0.0,14.0,3003.0,02:13.6,16.0,3003.0,3.7 +781,3.71,0.0,0.0,13.9,3019.0,02:14.7,16.0,3019.0,3.7 +782,3.71,0.0,0.0,13.9,3019.0,02:14.7,16.0,3019.0,3.7 +783,3.71,0.0,0.0,13.9,3019.0,02:14.7,16.0,3019.0,3.7 +784,3.71,0.0,0.0,13.9,3019.0,02:14.7,16.0,3019.0,3.7 +785,3.71,0.0,0.0,13.9,3019.0,02:14.7,16.0,3019.0,3.7 +786,3.71,0.0,0.0,13.9,3019.0,02:14.7,16.0,3019.0,3.7 +787,3.71,0.0,0.0,13.9,3019.0,02:14.7,16.0,3019.0,3.7 +788,3.71,0.0,0.0,13.9,3019.0,02:14.7,16.0,3019.0,3.7 +789,3.71,0.0,0.0,13.9,3019.0,02:14.7,16.0,3019.0,3.7 +790,3.71,0.0,0.0,13.9,3019.0,02:14.7,16.0,3019.0,3.7 +791,3.73,0.0,0.0,14.0,3059.0,02:13.9,16.0,3059.0,3.7 +792,3.73,0.0,0.0,14.0,3059.0,02:13.9,16.0,3059.0,3.7 +793,3.73,0.0,0.0,14.0,3059.0,02:13.9,16.0,3059.0,3.7 +794,3.73,0.0,0.0,14.0,3059.0,02:13.9,16.0,3059.0,3.7 +795,3.73,0.0,0.0,14.0,3059.0,02:13.9,16.0,3059.0,3.7 +796,3.73,0.0,0.0,13.9,3075.0,02:14.0,16.0,3075.0,3.7 +797,3.73,0.0,0.0,13.9,3075.0,02:14.0,16.0,3075.0,3.7 +798,3.73,0.0,0.0,13.9,3075.0,02:14.0,16.0,3075.0,3.7 +799,3.73,0.0,0.0,13.9,3075.0,02:14.0,16.0,3075.0,3.7 +800,3.69,0.0,0.0,13.7,3090.0,02:15.5,16.0,3090.0,3.6 +801,3.69,0.0,0.0,13.7,3090.0,02:15.5,16.0,3090.0,3.6 +802,3.69,0.0,0.0,13.7,3090.0,02:15.5,16.0,3090.0,3.6 +803,3.69,0.0,0.0,13.7,3090.0,02:15.5,16.0,3090.0,3.6 +804,3.71,0.0,0.0,14.2,3105.0,02:14.9,15.6,3105.0,3.7 +805,3.71,0.0,0.0,14.2,3105.0,02:14.9,15.6,3105.0,3.7 +806,3.71,0.0,0.0,14.2,3105.0,02:14.9,15.6,3105.0,3.7 +807,3.71,0.0,0.0,14.2,3105.0,02:14.9,15.6,3105.0,3.7 +808,3.69,0.0,0.0,14.2,3119.0,02:15.6,15.5,3119.0,3.6 +809,3.69,0.0,0.0,14.2,3119.0,02:15.6,15.5,3119.0,3.6 +810,3.69,0.0,0.0,14.2,3119.0,02:15.6,15.5,3119.0,3.6 +811,3.69,0.0,0.0,14.2,3119.0,02:15.6,15.5,3119.0,3.6 +812,3.69,0.0,0.0,14.2,3119.0,02:15.6,15.5,3119.0,3.6 +813,3.69,0.0,0.0,14.2,3119.0,02:15.6,15.5,3119.0,3.6 +814,3.69,0.0,0.0,14.2,3119.0,02:15.6,15.5,3119.0,3.6 +815,3.7,0.0,0.0,14.1,3145.0,02:15.2,15.6,3145.0,3.7 +816,3.7,0.0,0.0,14.1,3145.0,02:15.2,15.6,3145.0,3.7 +817,3.7,0.0,0.0,14.1,3145.0,02:15.2,15.6,3145.0,3.7 +818,3.7,0.0,0.0,14.1,3145.0,02:15.2,15.6,3145.0,3.7 +819,3.71,0.0,0.0,13.8,3160.0,02:14.6,16.0,3160.0,3.7 +820,3.71,0.0,0.0,13.8,3160.0,02:14.6,16.0,3160.0,3.7 +821,3.71,0.0,0.0,13.8,3160.0,02:14.6,16.0,3160.0,3.7 +822,3.71,0.0,0.0,13.8,3160.0,02:14.6,16.0,3160.0,3.7 +823,3.74,0.0,0.0,14.0,3176.0,02:13.6,16.0,3176.0,3.7 +824,3.74,0.0,0.0,14.0,3176.0,02:13.6,16.0,3176.0,3.7 +825,3.74,0.0,0.0,14.0,3176.0,02:13.6,16.0,3176.0,3.7 +826,3.74,0.0,0.0,14.0,3176.0,02:13.6,16.0,3176.0,3.7 +827,3.74,0.0,0.0,14.0,3176.0,02:13.6,16.0,3176.0,3.7 +828,3.74,0.0,0.0,14.0,3176.0,02:13.6,16.0,3176.0,3.7 +829,3.74,0.0,0.0,14.0,3176.0,02:13.6,16.0,3176.0,3.7 +830,3.71,0.0,0.0,14.1,3201.0,02:14.6,15.7,3201.0,3.7 +831,3.71,0.0,0.0,14.1,3201.0,02:14.6,15.7,3201.0,3.7 +832,3.71,0.0,0.0,14.1,3201.0,02:14.6,15.7,3201.0,3.7 +833,3.71,0.0,0.0,14.1,3201.0,02:14.6,15.7,3201.0,3.7 +834,3.71,0.0,0.0,14.1,3201.0,02:14.6,15.7,3201.0,3.7 +835,3.71,0.0,0.0,14.1,3201.0,02:14.6,15.7,3201.0,3.7 +836,3.76,0.0,0.0,13.3,3228.0,02:13.0,16.8,3228.0,3.7 +837,3.76,0.0,0.0,13.3,3228.0,02:13.0,16.8,3228.0,3.7 +838,3.76,0.0,0.0,13.3,3228.0,02:13.0,16.8,3228.0,3.7 +839,3.76,0.0,0.0,13.3,3228.0,02:13.0,16.8,3228.0,3.7 +840,3.76,0.0,0.0,13.3,3228.0,02:13.0,16.8,3228.0,3.7 +841,3.92,0.0,0.0,13.0,3244.0,02:07.5,17.9,3244.0,3.9 +842,3.92,0.0,0.0,13.0,3244.0,02:07.5,17.9,3244.0,3.9 +843,3.92,0.0,0.0,13.0,3244.0,02:07.5,17.9,3244.0,3.9 +844,3.92,0.0,0.0,12.6,3256.0,02:07.6,18.5,3256.0,3.9 +845,3.92,0.0,0.0,12.6,3256.0,02:07.6,18.5,3256.0,3.9 +846,3.92,0.0,0.0,12.6,3256.0,02:07.6,18.5,3256.0,3.9 +847,3.92,0.0,0.0,12.6,3256.0,02:07.6,18.5,3256.0,3.9 +848,3.92,0.0,0.0,12.6,3256.0,02:07.6,18.5,3256.0,3.9 +849,3.92,0.0,0.0,12.6,3256.0,02:07.6,18.5,3256.0,3.9 +850,3.92,0.0,0.0,12.6,3256.0,02:07.6,18.5,3256.0,3.9 +851,3.9,0.0,0.0,13.1,3284.0,02:08.3,17.8,3284.0,3.9 +852,3.9,0.0,0.0,13.1,3284.0,02:08.3,17.8,3284.0,3.9 +853,3.9,0.0,0.0,13.1,3284.0,02:08.3,17.8,3284.0,3.9 +854,3.9,0.0,0.0,12.7,3295.0,02:08.3,18.3,3295.0,3.9 +855,3.9,0.0,0.0,12.7,3295.0,02:08.3,18.3,3295.0,3.9 +856,3.9,0.0,0.0,12.7,3295.0,02:08.3,18.3,3295.0,3.9 +857,3.9,0.0,0.0,12.7,3295.0,02:08.3,18.3,3295.0,3.9 +858,3.9,0.0,0.0,12.7,3295.0,02:08.3,18.3,3295.0,3.9 +859,3.9,0.0,0.0,12.7,3295.0,02:08.3,18.3,3295.0,3.9 +860,3.9,0.0,0.0,12.6,3319.0,02:08.2,18.4,3319.0,3.9 +861,3.9,0.0,0.0,12.6,3319.0,02:08.2,18.4,3319.0,3.9 +862,3.9,0.0,0.0,12.6,3319.0,02:08.2,18.4,3319.0,3.9 +863,3.9,0.0,0.0,12.6,3319.0,02:08.2,18.4,3319.0,3.9 +864,3.92,0.0,0.0,12.8,3335.0,02:07.5,18.3,3335.0,3.9 +865,3.92,0.0,0.0,12.8,3335.0,02:07.5,18.3,3335.0,3.9 +866,3.92,0.0,0.0,12.8,3335.0,02:07.5,18.3,3335.0,3.9 +867,3.92,0.0,0.0,12.8,3335.0,02:07.5,18.3,3335.0,3.9 +868,3.92,0.0,0.0,12.8,3335.0,02:07.5,18.3,3335.0,3.9 +869,3.92,0.0,0.0,12.8,3335.0,02:07.5,18.3,3335.0,3.9 +870,3.92,0.0,0.0,12.8,3335.0,02:07.5,18.3,3335.0,3.9 +871,3.92,0.0,0.0,12.8,3335.0,02:07.5,18.3,3335.0,3.9 +872,3.92,0.0,0.0,12.8,3335.0,02:07.5,18.3,3335.0,3.9 +873,3.92,0.0,0.0,12.8,3335.0,02:07.5,18.3,3335.0,3.9 +874,3.89,0.0,0.0,13.1,3374.0,02:08.3,17.8,3374.0,3.8 +875,3.89,0.0,0.0,13.1,3374.0,02:08.3,17.8,3374.0,3.8 +876,3.89,0.0,0.0,13.1,3374.0,02:08.3,17.8,3374.0,3.8 +877,3.89,0.0,0.0,12.7,3386.0,02:08.3,18.3,3386.0,3.8 +878,3.89,0.0,0.0,12.7,3386.0,02:08.3,18.3,3386.0,3.8 +879,3.89,0.0,0.0,12.7,3386.0,02:08.3,18.3,3386.0,3.8 +880,3.89,0.0,0.0,12.7,3386.0,02:08.3,18.3,3386.0,3.8 +881,3.89,0.0,0.0,12.7,3386.0,02:08.3,18.3,3386.0,3.8 +882,3.89,0.0,0.0,12.7,3386.0,02:08.3,18.3,3386.0,3.8 +883,3.89,0.0,0.0,12.6,3409.0,02:08.6,18.4,3409.0,3.8 +884,3.89,0.0,0.0,12.6,3409.0,02:08.6,18.4,3409.0,3.8 +885,3.89,0.0,0.0,12.6,3409.0,02:08.6,18.4,3409.0,3.8 +886,3.89,0.0,0.0,12.6,3409.0,02:08.6,18.4,3409.0,3.8 +887,3.9,0.0,0.0,12.7,3425.0,02:08.3,18.3,3425.0,3.9 +888,3.9,0.0,0.0,12.7,3425.0,02:08.3,18.3,3425.0,3.9 +889,3.9,0.0,0.0,12.7,3425.0,02:08.3,18.3,3425.0,3.9 +890,3.92,0.0,0.0,13.1,3437.0,02:07.6,17.9,3437.0,3.9 +891,3.92,0.0,0.0,13.1,3437.0,02:07.6,17.9,3437.0,3.9 +892,3.92,0.0,0.0,13.1,3437.0,02:07.6,17.9,3437.0,3.9 +893,3.92,0.0,0.0,13.1,3437.0,02:07.6,17.9,3437.0,3.9 +894,3.92,0.0,0.0,13.1,3437.0,02:07.6,17.9,3437.0,3.9 +895,3.92,0.0,0.0,13.1,3437.0,02:07.6,17.9,3437.0,3.9 +896,3.92,0.0,0.0,13.1,3437.0,02:07.6,17.9,3437.0,3.9 +897,3.92,0.0,0.0,13.1,3464.0,02:07.7,17.9,3464.0,3.9 +898,3.92,0.0,0.0,13.1,3464.0,02:07.7,17.9,3464.0,3.9 +899,3.92,0.0,0.0,13.1,3464.0,02:07.7,17.9,3464.0,3.9 +900,3.92,0.0,0.0,12.8,3476.0,02:07.7,18.2,3476.0,3.9 +901,3.92,0.0,0.0,12.8,3476.0,02:07.7,18.2,3476.0,3.9 +902,3.92,0.0,0.0,12.8,3476.0,02:07.7,18.2,3476.0,3.9 +903,3.92,0.0,0.0,12.8,3476.0,02:07.7,18.2,3476.0,3.9 +904,3.92,0.0,0.0,12.8,3476.0,02:07.7,18.2,3476.0,3.9 +905,3.92,0.0,0.0,12.8,3476.0,02:07.7,18.2,3476.0,3.9 +906,3.92,0.0,0.0,12.8,3476.0,02:07.7,18.2,3476.0,3.9 +907,3.92,0.0,0.0,12.8,3476.0,02:07.7,18.2,3476.0,3.9 +908,3.92,0.0,0.0,12.8,3476.0,02:07.7,18.2,3476.0,3.9 +909,3.92,0.0,0.0,12.8,3476.0,02:07.7,18.2,3476.0,3.9 +910,3.9,0.0,0.0,12.4,3515.0,02:08.1,18.8,3515.0,3.9 +911,3.9,0.0,0.0,12.4,3515.0,02:08.1,18.8,3515.0,3.9 +912,3.9,0.0,0.0,12.4,3515.0,02:08.1,18.8,3515.0,3.9 +913,3.9,0.0,0.0,12.4,3527.0,02:08.1,18.8,3527.0,3.9 +914,3.9,0.0,0.0,12.4,3527.0,02:08.1,18.8,3527.0,3.9 +915,3.9,0.0,0.0,12.4,3527.0,02:08.1,18.8,3527.0,3.9 +916,3.9,0.0,0.0,12.4,3527.0,02:08.1,18.8,3527.0,3.9 +917,3.9,0.0,0.0,12.4,3527.0,02:08.1,18.8,3527.0,3.9 +918,3.9,0.0,0.0,12.4,3527.0,02:08.1,18.8,3527.0,3.9 +919,3.9,0.0,0.0,12.4,3527.0,02:08.1,18.8,3527.0,3.9 +920,3.87,0.0,0.0,12.7,3554.0,02:09.1,18.2,3554.0,3.8 +921,3.87,0.0,0.0,12.7,3554.0,02:09.1,18.2,3554.0,3.8 +922,3.87,0.0,0.0,12.7,3554.0,02:09.1,18.2,3554.0,3.8 +923,3.87,0.0,0.0,12.9,3566.0,02:09.1,17.9,3566.0,3.8 +924,3.87,0.0,0.0,12.9,3566.0,02:09.1,17.9,3566.0,3.8 +925,3.87,0.0,0.0,12.9,3566.0,02:09.1,17.9,3566.0,3.8 +926,3.87,0.0,0.0,12.9,3566.0,02:09.1,17.9,3566.0,3.8 +927,3.87,0.0,0.0,12.9,3566.0,02:09.1,17.9,3566.0,3.8 +928,3.87,0.0,0.0,12.9,3566.0,02:09.1,17.9,3566.0,3.8 +929,3.87,0.0,0.0,12.9,3566.0,02:09.1,17.9,3566.0,3.8 +930,3.86,0.0,0.0,12.9,3593.0,02:09.6,17.9,3593.0,3.8 +931,3.86,0.0,0.0,12.9,3593.0,02:09.6,17.9,3593.0,3.8 +932,3.86,0.0,0.0,12.9,3593.0,02:09.6,17.9,3593.0,3.8 +933,3.86,0.0,0.0,12.6,3605.0,02:09.6,18.3,3605.0,3.8 +934,3.86,0.0,0.0,12.6,3605.0,02:09.6,18.3,3605.0,3.8 +935,3.86,0.0,0.0,12.6,3605.0,02:09.6,18.3,3605.0,3.8 +936,3.86,0.0,0.0,12.6,3605.0,02:09.6,18.3,3605.0,3.8 +937,3.86,0.0,0.0,12.6,3605.0,02:09.6,18.3,3605.0,3.8 +938,3.86,0.0,0.0,12.6,3605.0,02:09.6,18.3,3605.0,3.8 +939,3.88,0.0,0.0,12.6,3628.0,02:08.7,18.4,3628.0,3.8 +940,3.88,0.0,0.0,12.6,3628.0,02:08.7,18.4,3628.0,3.8 +941,3.88,0.0,0.0,12.6,3628.0,02:08.7,18.4,3628.0,3.8 +942,3.88,0.0,0.0,12.6,3628.0,02:08.7,18.4,3628.0,3.8 +943,3.88,0.0,0.0,12.6,3644.0,02:08.9,18.3,3644.0,3.8 +944,3.88,0.0,0.0,12.6,3644.0,02:08.9,18.3,3644.0,3.8 +945,3.88,0.0,0.0,12.6,3644.0,02:08.9,18.3,3644.0,3.8 +946,3.88,0.0,0.0,12.6,3644.0,02:08.9,18.3,3644.0,3.8 +947,3.88,0.0,0.0,12.6,3644.0,02:08.9,18.3,3644.0,3.8 +948,3.88,0.0,0.0,12.6,3644.0,02:08.9,18.3,3644.0,3.8 +949,3.88,0.0,0.0,12.6,3644.0,02:08.9,18.3,3644.0,3.8 +950,3.88,0.0,0.0,12.6,3644.0,02:08.9,18.3,3644.0,3.8 +951,3.88,0.0,0.0,12.6,3644.0,02:08.9,18.3,3644.0,3.8 +952,3.89,0.0,0.0,12.9,3680.0,02:08.4,18.0,3680.0,3.8 +953,3.89,0.0,0.0,12.9,3680.0,02:08.4,18.0,3680.0,3.8 +954,3.89,0.0,0.0,12.9,3680.0,02:08.4,18.0,3680.0,3.8 +955,3.89,0.0,0.0,12.9,3680.0,02:08.4,18.0,3680.0,3.8 +956,3.89,0.0,0.0,13.3,3694.0,02:08.4,17.4,3694.0,3.8 +957,3.89,0.0,0.0,13.3,3694.0,02:08.4,17.4,3694.0,3.8 +958,3.89,0.0,0.0,13.3,3694.0,02:08.4,17.4,3694.0,3.8 +959,3.89,0.0,0.0,13.3,3694.0,02:08.4,17.4,3694.0,3.8 +960,3.82,0.0,0.0,13.8,3709.0,02:10.9,16.5,3709.0,3.8 +961,3.82,0.0,0.0,13.8,3709.0,02:10.9,16.5,3709.0,3.8 +962,3.82,0.0,0.0,13.8,3709.0,02:10.9,16.5,3709.0,3.8 +963,3.82,0.0,0.0,13.8,3709.0,02:10.9,16.5,3709.0,3.8 +964,3.82,0.0,0.0,13.8,3709.0,02:10.9,16.5,3709.0,3.8 +965,3.82,0.0,0.0,13.8,3709.0,02:10.9,16.5,3709.0,3.8 +966,3.82,0.0,0.0,13.8,3709.0,02:10.9,16.5,3709.0,3.8 +967,3.82,0.0,0.0,13.8,3709.0,02:10.9,16.5,3709.0,3.8 +968,3.73,0.0,0.0,14.1,3740.0,02:14.1,15.8,3740.0,3.7 +969,3.73,0.0,0.0,14.1,3740.0,02:14.1,15.8,3740.0,3.7 +970,3.73,0.0,0.0,14.1,3740.0,02:14.1,15.8,3740.0,3.7 +971,3.73,0.0,0.0,13.9,3751.0,02:14.1,16.0,3751.0,3.7 +972,3.73,0.0,0.0,13.9,3751.0,02:14.1,16.0,3751.0,3.7 +973,3.73,0.0,0.0,13.9,3751.0,02:14.1,16.0,3751.0,3.7 +974,3.73,0.0,0.0,13.9,3751.0,02:14.1,16.0,3751.0,3.7 +975,3.73,0.0,0.0,13.9,3751.0,02:14.1,16.0,3751.0,3.7 +976,3.73,0.0,0.0,13.9,3751.0,02:14.1,16.0,3751.0,3.7 +977,3.73,0.0,0.0,13.9,3751.0,02:14.1,16.0,3751.0,3.7 +978,3.73,0.0,0.0,13.9,3751.0,02:14.1,16.0,3751.0,3.7 +979,3.73,0.0,0.0,13.9,3751.0,02:14.1,16.0,3751.0,3.7 +980,3.73,0.0,0.0,13.9,3751.0,02:14.1,16.0,3751.0,3.7 +981,3.73,0.0,0.0,13.9,3751.0,02:14.1,16.0,3751.0,3.7 +982,3.71,0.0,0.0,13.9,3791.0,02:14.6,16.0,3791.0,3.7 +983,3.71,0.0,0.0,13.9,3791.0,02:14.6,16.0,3791.0,3.7 +984,3.71,0.0,0.0,13.9,3791.0,02:14.6,16.0,3791.0,3.7 +985,3.71,0.0,0.0,13.9,3791.0,02:14.6,16.0,3791.0,3.7 +986,3.69,0.0,0.0,13.8,3807.0,02:15.4,16.0,3807.0,3.6 +987,3.69,0.0,0.0,13.8,3807.0,02:15.4,16.0,3807.0,3.6 +988,3.69,0.0,0.0,13.8,3807.0,02:15.4,16.0,3807.0,3.6 +989,3.69,0.0,0.0,13.8,3807.0,02:15.4,16.0,3807.0,3.6 +990,3.69,0.0,0.0,13.8,3807.0,02:15.4,16.0,3807.0,3.6 +991,3.69,0.0,0.0,13.8,3807.0,02:15.4,16.0,3807.0,3.6 +992,3.69,0.0,0.0,13.8,3807.0,02:15.4,16.0,3807.0,3.6 +993,3.69,0.0,0.0,13.8,3807.0,02:15.4,16.0,3807.0,3.6 +994,3.69,0.0,0.0,13.8,3807.0,02:15.4,16.0,3807.0,3.6 +995,3.69,0.0,0.0,13.8,3807.0,02:15.4,16.0,3807.0,3.6 +996,3.69,0.0,0.0,13.8,3807.0,02:15.4,16.0,3807.0,3.6 +997,3.7,0.0,0.0,13.8,3847.0,02:15.0,16.0,3847.0,3.7 +998,3.7,0.0,0.0,13.8,3847.0,02:15.0,16.0,3847.0,3.7 +999,3.7,0.0,0.0,13.8,3847.0,02:15.0,16.0,3847.0,3.7 +1000,3.7,0.0,0.0,13.8,3847.0,02:15.0,16.0,3847.0,3.7 +1001,3.71,0.0,0.0,13.9,3863.0,02:14.8,16.0,3863.0,3.7 +1002,3.71,0.0,0.0,13.9,3863.0,02:14.8,16.0,3863.0,3.7 +1003,3.71,0.0,0.0,13.9,3863.0,02:14.8,16.0,3863.0,3.7 +1004,3.71,0.0,0.0,13.9,3863.0,02:14.8,16.0,3863.0,3.7 +1005,3.71,0.0,0.0,13.9,3863.0,02:14.8,16.0,3863.0,3.7 +1006,3.71,0.0,0.0,13.9,3863.0,02:14.8,16.0,3863.0,3.7 +1007,3.71,0.0,0.0,13.9,3863.0,02:14.8,16.0,3863.0,3.7 +1008,3.71,0.0,0.0,13.9,3863.0,02:14.8,16.0,3863.0,3.7 +1009,3.71,0.0,0.0,13.9,3863.0,02:14.8,16.0,3863.0,3.7 +1010,3.71,0.0,0.0,13.9,3863.0,02:14.8,16.0,3863.0,3.7 +1011,3.71,0.0,0.0,13.9,3863.0,02:14.8,16.0,3863.0,3.7 +1012,3.71,0.0,0.0,13.9,3903.0,02:14.6,16.0,3903.0,3.7 +1013,3.71,0.0,0.0,13.9,3903.0,02:14.6,16.0,3903.0,3.7 +1014,3.71,0.0,0.0,13.9,3903.0,02:14.6,16.0,3903.0,3.7 +1015,3.71,0.0,0.0,13.9,3903.0,02:14.6,16.0,3903.0,3.7 +1016,3.69,0.0,0.0,13.8,3918.0,02:15.6,16.0,3918.0,3.6 +1017,3.69,0.0,0.0,13.8,3918.0,02:15.6,16.0,3918.0,3.6 +1018,3.69,0.0,0.0,13.8,3918.0,02:15.6,16.0,3918.0,3.6 +1019,3.69,0.0,0.0,13.8,3918.0,02:15.6,16.0,3918.0,3.6 +1020,3.7,0.0,0.0,13.8,3933.0,02:15.2,16.0,3933.0,3.7 +1021,3.7,0.0,0.0,13.8,3933.0,02:15.2,16.0,3933.0,3.7 +1022,3.7,0.0,0.0,13.8,3933.0,02:15.2,16.0,3933.0,3.7 +1023,3.7,0.0,0.0,13.8,3933.0,02:15.2,16.0,3933.0,3.7 +1024,3.7,0.0,0.0,13.8,3933.0,02:15.2,16.0,3933.0,3.7 +1025,3.7,0.0,0.0,13.8,3933.0,02:15.2,16.0,3933.0,3.7 +1026,3.7,0.0,0.0,13.8,3933.0,02:15.2,16.0,3933.0,3.7 +1027,3.71,0.0,0.0,13.9,3959.0,02:14.8,16.0,3959.0,3.7 +1028,3.71,0.0,0.0,13.9,3959.0,02:14.8,16.0,3959.0,3.7 +1029,3.71,0.0,0.0,13.9,3959.0,02:14.8,16.0,3959.0,3.7 +1030,3.71,0.0,0.0,13.9,3959.0,02:14.8,16.0,3959.0,3.7 +1031,3.72,0.0,0.0,13.9,3974.0,02:14.3,16.0,3974.0,3.7 +1032,3.72,0.0,0.0,13.9,3974.0,02:14.3,16.0,3974.0,3.7 +1033,3.72,0.0,0.0,13.9,3974.0,02:14.3,16.0,3974.0,3.7 +1034,3.72,0.0,0.0,13.9,3974.0,02:14.3,16.0,3974.0,3.7 +1035,3.72,0.0,0.0,13.9,3989.0,02:14.4,16.0,3989.0,3.7 +1036,3.72,0.0,0.0,13.9,3989.0,02:14.4,16.0,3989.0,3.7 +1037,3.72,0.0,0.0,13.9,3989.0,02:14.4,16.0,3989.0,3.7 +1038,3.72,0.0,0.0,13.9,3989.0,02:14.4,16.0,3989.0,3.7 +1039,3.73,0.0,0.0,13.9,4005.0,02:14.0,16.0,4005.0,3.7 +1040,3.73,0.0,0.0,13.9,4005.0,02:14.0,16.0,4005.0,3.7 +1041,3.73,0.0,0.0,13.9,4005.0,02:14.0,16.0,4005.0,3.7 +1042,3.73,0.0,0.0,13.9,4005.0,02:14.0,16.0,4005.0,3.7 +1043,3.73,0.0,0.0,13.9,4005.0,02:14.0,16.0,4005.0,3.7 +1044,3.73,0.0,0.0,13.9,4005.0,02:14.0,16.0,4005.0,3.7 +1045,3.73,0.0,0.0,13.9,4005.0,02:14.0,16.0,4005.0,3.7 +1046,3.73,0.0,0.0,13.9,4005.0,02:14.0,16.0,4005.0,3.7 +1047,3.73,0.0,0.0,13.9,4005.0,02:14.0,16.0,4005.0,3.7 +1048,3.73,0.0,0.0,13.9,4005.0,02:14.0,16.0,4005.0,3.7 +1049,3.73,0.0,0.0,13.9,4005.0,02:14.0,16.0,4005.0,3.7 +1050,3.73,0.0,0.0,13.9,4045.0,02:14.2,16.0,4045.0,3.7 +1051,3.73,0.0,0.0,13.9,4045.0,02:14.2,16.0,4045.0,3.7 +1052,3.73,0.0,0.0,13.9,4045.0,02:14.2,16.0,4045.0,3.7 +1053,3.73,0.0,0.0,13.9,4045.0,02:14.2,16.0,4045.0,3.7 +1054,3.73,0.0,0.0,13.9,4045.0,02:14.2,16.0,4045.0,3.7 +1055,3.73,0.0,0.0,13.9,4045.0,02:14.2,16.0,4045.0,3.7 +1056,3.73,0.0,0.0,13.9,4045.0,02:14.2,16.0,4045.0,3.7 +1057,3.73,0.0,0.0,13.9,4045.0,02:14.2,16.0,4045.0,3.7 +1058,3.78,0.0,0.0,14.2,4076.0,02:12.3,15.9,4076.0,3.7 +1059,3.78,0.0,0.0,14.2,4076.0,02:12.3,15.9,4076.0,3.7 +1060,3.78,0.0,0.0,14.2,4076.0,02:12.3,15.9,4076.0,3.7 +1061,3.78,0.0,0.0,13.9,4087.0,02:12.3,16.2,4087.0,3.7 +1062,3.78,0.0,0.0,13.9,4087.0,02:12.3,16.2,4087.0,3.7 +1063,3.78,0.0,0.0,13.9,4087.0,02:12.3,16.2,4087.0,3.7 +1064,3.78,0.0,0.0,13.9,4087.0,02:12.3,16.2,4087.0,3.7 +1065,3.78,0.0,0.0,13.9,4087.0,02:12.3,16.2,4087.0,3.7 +1066,3.78,0.0,0.0,13.9,4087.0,02:12.3,16.2,4087.0,3.7 +1067,3.78,0.0,0.0,13.9,4087.0,02:12.3,16.2,4087.0,3.7 +1068,3.77,0.0,0.0,13.3,4113.0,02:12.6,16.9,4113.0,3.7 +1069,3.77,0.0,0.0,13.3,4113.0,02:12.6,16.9,4113.0,3.7 +1070,3.77,0.0,0.0,13.3,4113.0,02:12.6,16.9,4113.0,3.7 +1071,3.77,0.0,0.0,13.3,4113.0,02:12.6,16.9,4113.0,3.7 +1072,3.79,0.0,0.0,13.8,4129.0,02:12.0,16.4,4129.0,3.7 +1073,3.79,0.0,0.0,13.8,4129.0,02:12.0,16.4,4129.0,3.7 +1074,3.79,0.0,0.0,13.8,4129.0,02:12.0,16.4,4129.0,3.7 +1075,3.79,0.0,0.0,13.8,4129.0,02:12.0,16.4,4129.0,3.7 +1076,3.7,0.0,0.0,13.9,4144.0,02:15.0,15.9,4144.0,3.7 +1077,3.7,0.0,0.0,13.9,4144.0,02:15.0,15.9,4144.0,3.7 +1078,3.7,0.0,0.0,13.9,4144.0,02:15.0,15.9,4144.0,3.7 +1079,3.84,0.0,0.0,13.9,4156.0,02:10.2,16.5,4156.0,3.8 +1080,3.84,0.0,0.0,13.9,4156.0,02:10.2,16.5,4156.0,3.8 +1081,3.84,0.0,0.0,13.9,4156.0,02:10.2,16.5,4156.0,3.8 +1082,3.84,0.0,0.0,13.9,4156.0,02:10.2,16.5,4156.0,3.8 +1083,3.84,0.0,0.0,13.9,4156.0,02:10.2,16.5,4156.0,3.8 +1084,3.84,0.0,0.0,13.9,4156.0,02:10.2,16.5,4156.0,3.8 +1085,3.93,0.0,0.0,13.1,4180.0,02:07.0,17.9,4180.0,3.9 +1086,3.93,0.0,0.0,13.1,4180.0,02:07.0,17.9,4180.0,3.9 +1087,3.93,0.0,0.0,13.1,4180.0,02:07.0,17.9,4180.0,3.9 +1088,3.93,0.0,0.0,13.1,4180.0,02:07.0,17.9,4180.0,3.9 +1089,3.93,0.0,0.0,13.0,4196.0,02:07.0,18.0,4196.0,3.9 +1090,3.93,0.0,0.0,13.0,4196.0,02:07.0,18.0,4196.0,3.9 +1091,3.93,0.0,0.0,13.0,4196.0,02:07.0,18.0,4196.0,3.9 +1092,3.93,0.0,0.0,13.0,4196.0,02:07.0,18.0,4196.0,3.9 +1093,3.93,0.0,0.0,13.0,4196.0,02:07.0,18.0,4196.0,3.9 +1094,3.93,0.0,0.0,13.0,4196.0,02:07.0,18.0,4196.0,3.9 +1095,3.93,0.0,0.0,13.0,4196.0,02:07.0,18.0,4196.0,3.9 +1096,3.93,0.0,0.0,13.0,4196.0,02:07.0,18.0,4196.0,3.9 +1097,3.93,0.0,0.0,13.0,4196.0,02:07.0,18.0,4196.0,3.9 +1098,3.93,0.0,0.0,13.0,4196.0,02:07.0,18.0,4196.0,3.9 +1099,3.92,0.0,0.0,13.0,4235.0,02:07.4,18.0,4235.0,3.9 +1100,3.92,0.0,0.0,13.0,4235.0,02:07.4,18.0,4235.0,3.9 +1101,3.92,0.0,0.0,13.0,4235.0,02:07.4,18.0,4235.0,3.9 +1102,3.92,0.0,0.0,13.0,4247.0,02:07.4,18.0,4247.0,3.9 +1103,3.92,0.0,0.0,13.0,4247.0,02:07.4,18.0,4247.0,3.9 +1104,3.92,0.0,0.0,13.0,4247.0,02:07.4,18.0,4247.0,3.9 +1105,3.92,0.0,0.0,13.0,4247.0,02:07.4,18.0,4247.0,3.9 +1106,3.92,0.0,0.0,13.0,4247.0,02:07.4,18.0,4247.0,3.9 +1107,3.92,0.0,0.0,13.0,4247.0,02:07.4,18.0,4247.0,3.9 +1108,3.92,0.0,0.0,13.0,4270.0,02:07.5,18.0,4270.0,3.9 +1109,3.92,0.0,0.0,13.0,4270.0,02:07.5,18.0,4270.0,3.9 +1110,3.92,0.0,0.0,13.0,4270.0,02:07.5,18.0,4270.0,3.9 +1111,3.92,0.0,0.0,13.0,4270.0,02:07.5,18.0,4270.0,3.9 +1112,3.91,0.0,0.0,13.0,4286.0,02:07.7,18.0,4286.0,3.9 +1113,3.91,0.0,0.0,13.0,4286.0,02:07.7,18.0,4286.0,3.9 +1114,3.91,0.0,0.0,13.0,4286.0,02:07.7,18.0,4286.0,3.9 +1115,3.91,0.0,0.0,13.0,4286.0,02:07.7,18.0,4286.0,3.9 +1116,3.91,0.0,0.0,13.0,4286.0,02:07.7,18.0,4286.0,3.9 +1117,3.91,0.0,0.0,13.0,4286.0,02:07.7,18.0,4286.0,3.9 +1118,3.92,0.0,0.0,13.0,4309.0,02:07.4,18.0,4309.0,3.9 +1119,3.92,0.0,0.0,13.0,4309.0,02:07.4,18.0,4309.0,3.9 +1120,3.92,0.0,0.0,13.0,4309.0,02:07.4,18.0,4309.0,3.9 +1121,3.92,0.0,0.0,13.0,4309.0,02:07.4,18.0,4309.0,3.9 +1122,3.91,0.0,0.0,13.0,4325.0,02:07.8,18.0,4325.0,3.9 +1123,3.91,0.0,0.0,13.0,4325.0,02:07.8,18.0,4325.0,3.9 +1124,3.91,0.0,0.0,13.0,4325.0,02:07.8,18.0,4325.0,3.9 +1125,3.91,0.0,0.0,13.0,4325.0,02:07.8,18.0,4325.0,3.9 +1126,3.91,0.0,0.0,13.0,4325.0,02:07.8,18.0,4325.0,3.9 +1127,3.91,0.0,0.0,13.0,4325.0,02:07.8,18.0,4325.0,3.9 +1128,3.91,0.0,0.0,13.0,4348.0,02:07.8,18.0,4348.0,3.9 +1129,3.91,0.0,0.0,13.0,4348.0,02:07.8,18.0,4348.0,3.9 +1130,3.91,0.0,0.0,13.0,4348.0,02:07.8,18.0,4348.0,3.9 +1131,3.91,0.0,0.0,13.0,4348.0,02:07.8,18.0,4348.0,3.9 +1132,3.9,0.0,0.0,13.0,4365.0,02:08.2,18.0,4365.0,3.9 +1133,3.9,0.0,0.0,13.0,4365.0,02:08.2,18.0,4365.0,3.9 +1134,3.9,0.0,0.0,13.0,4365.0,02:08.2,18.0,4365.0,3.9 +1135,3.9,0.0,0.0,13.0,4365.0,02:08.2,18.0,4365.0,3.9 +1136,3.9,0.0,0.0,13.0,4365.0,02:08.2,18.0,4365.0,3.9 +1137,3.9,0.0,0.0,13.0,4365.0,02:08.2,18.0,4365.0,3.9 +1138,3.88,0.0,0.0,12.9,4387.0,02:08.7,18.0,4387.0,3.8 +1139,3.88,0.0,0.0,12.9,4387.0,02:08.7,18.0,4387.0,3.8 +1140,3.88,0.0,0.0,12.9,4387.0,02:08.7,18.0,4387.0,3.8 +1141,3.88,0.0,0.0,12.9,4387.0,02:08.7,18.0,4387.0,3.8 +1142,3.9,0.0,0.0,12.9,4404.0,02:08.1,18.0,4404.0,3.9 +1143,3.9,0.0,0.0,12.9,4404.0,02:08.1,18.0,4404.0,3.9 +1144,3.9,0.0,0.0,12.9,4404.0,02:08.1,18.0,4404.0,3.9 +1145,3.9,0.0,0.0,12.9,4404.0,02:08.1,18.0,4404.0,3.9 +1146,3.9,0.0,0.0,12.9,4404.0,02:08.1,18.0,4404.0,3.9 +1147,3.9,0.0,0.0,12.9,4404.0,02:08.1,18.0,4404.0,3.9 +1148,3.9,0.0,0.0,12.9,4404.0,02:08.1,18.0,4404.0,3.9 +1149,3.87,0.0,0.0,13.1,4431.0,02:09.1,17.6,4431.0,3.8 +1150,3.87,0.0,0.0,13.1,4431.0,02:09.1,17.6,4431.0,3.8 +1151,3.87,0.0,0.0,13.1,4431.0,02:09.1,17.6,4431.0,3.8 +1152,3.87,0.0,0.0,13.1,4431.0,02:09.1,17.6,4431.0,3.8 +1153,3.87,0.0,0.0,13.1,4431.0,02:09.1,17.6,4431.0,3.8 +1154,3.87,0.0,0.0,13.1,4431.0,02:09.1,17.6,4431.0,3.8 +1155,3.85,0.0,0.0,13.1,4454.0,02:09.8,17.6,4454.0,3.8 +1156,3.85,0.0,0.0,13.1,4454.0,02:09.8,17.6,4454.0,3.8 +1157,3.85,0.0,0.0,13.1,4454.0,02:09.8,17.6,4454.0,3.8 +1158,3.85,0.0,0.0,13.1,4454.0,02:09.8,17.6,4454.0,3.8 +1159,3.85,0.0,0.0,13.1,4454.0,02:09.8,17.6,4454.0,3.8 +1160,3.85,0.0,0.0,13.1,4454.0,02:09.8,17.6,4454.0,3.8 +1161,3.85,0.0,0.0,13.1,4454.0,02:09.8,17.6,4454.0,3.8 +1162,3.89,0.0,0.0,13.4,4480.0,02:08.6,17.4,4480.0,3.8 +1163,3.89,0.0,0.0,13.4,4480.0,02:08.6,17.4,4480.0,3.8 +1164,3.89,0.0,0.0,13.4,4480.0,02:08.6,17.4,4480.0,3.8 +1165,3.89,0.0,0.0,13.4,4480.0,02:08.6,17.4,4480.0,3.8 +1166,3.89,0.0,0.0,13.4,4480.0,02:08.6,17.4,4480.0,3.8 +1167,3.89,0.0,0.0,13.4,4480.0,02:08.6,17.4,4480.0,3.8 +1168,3.89,0.0,0.0,13.4,4480.0,02:08.6,17.4,4480.0,3.8 +1169,3.86,0.0,0.0,13.4,4507.0,02:09.4,17.2,4507.0,3.8 +1170,3.86,0.0,0.0,13.4,4507.0,02:09.4,17.2,4507.0,3.8 +1171,3.86,0.0,0.0,13.4,4507.0,02:09.4,17.2,4507.0,3.8 +1172,3.86,0.0,0.0,13.4,4507.0,02:09.4,17.2,4507.0,3.8 +1173,3.86,0.0,0.0,13.4,4524.0,02:09.6,17.1,4524.0,3.8 +1174,3.86,0.0,0.0,13.4,4524.0,02:09.6,17.1,4524.0,3.8 +1175,3.86,0.0,0.0,13.4,4524.0,02:09.6,17.1,4524.0,3.8 +1176,3.86,0.0,0.0,13.4,4524.0,02:09.6,17.1,4524.0,3.8 +1177,3.86,0.0,0.0,13.4,4524.0,02:09.6,17.1,4524.0,3.8 +1178,3.86,0.0,0.0,13.4,4524.0,02:09.6,17.1,4524.0,3.8 +1179,3.9,0.0,0.0,13.1,4547.0,02:08.3,17.7,4547.0,3.9 +1180,3.9,0.0,0.0,13.1,4547.0,02:08.3,17.7,4547.0,3.9 +1181,3.9,0.0,0.0,13.1,4547.0,02:08.3,17.7,4547.0,3.9 +1182,3.9,0.0,0.0,13.1,4547.0,02:08.3,17.7,4547.0,3.9 +1183,3.92,0.0,0.0,12.9,4564.0,02:07.6,18.1,4564.0,3.9 +1184,3.92,0.0,0.0,12.9,4564.0,02:07.6,18.1,4564.0,3.9 +1185,3.92,0.0,0.0,12.9,4564.0,02:07.6,18.1,4564.0,3.9 +1186,3.92,0.0,0.0,12.9,4564.0,02:07.6,18.1,4564.0,3.9 +1187,3.92,0.0,0.0,12.9,4564.0,02:07.6,18.1,4564.0,3.9 +1188,3.92,0.0,0.0,12.9,4564.0,02:07.6,18.1,4564.0,3.9 +1189,3.92,0.0,0.0,12.9,4564.0,02:07.6,18.1,4564.0,3.9 +1190,3.92,0.0,0.0,12.9,4564.0,02:07.6,18.1,4564.0,3.9 +1191,3.92,0.0,0.0,12.9,4564.0,02:07.6,18.1,4564.0,3.9 +1192,3.88,0.0,0.0,12.9,4598.0,02:08.8,17.9,4598.0,3.8 diff --git a/rowers/tests/viewnames.csv b/rowers/tests/viewnames.csv index 51d4ab66..b7fbf9d7 100644 --- a/rowers/tests/viewnames.csv +++ b/rowers/tests/viewnames.csv @@ -309,3 +309,4 @@ 309,604,failed_queue_empty,Other Apps views,TRUE,200,basic,200,302,basic,200,302,coach,200,302,FALSE,FALSE,FALSE,FALSE,FALSE, 310,605,failed_job_view,Other Apps views,TRUE,200,basic,200,302,basic,200,302,coach,200,302,FALSE,FALSE,TRUE,FALSE,FALSE, 311,49,performancemanager_view,Performance Manager,TRUE,302,pro,200,302,pro,200,302,coach,200,302,FALSE,FALSE,FALSE,TRUE,TRUE, +312,606,workout_flexchart_stacked_view,flex chart,TRUE,302,basic,200,403,basic,200,200,coach,200,200,FALSE,FALSE,TRUE,TRUE,TRUE,